/* 
メインカラー
背景：#FAE1E3
*/

/*-----------------------------------------
レイアウト
---------------------------------------------*/
header,
#wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.header_wrap {
    max-width: 1000px;
    margin: 0 auto;
}


#all_margin {
    margin: 1rem;
}

#search_margin {
    margin: 1rem;
    margin-top: 1rem;
}

li {
    list-style: none;
}


/* 
=======================================================
General
=======================================================
*/


body {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-style: normal;
    font-size: 1rem;
    margin: auto;
}

body {
    background-color: #FAE1E3;
}

main {
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    font-size: 1.8rem;
}

p {
    line-height: 2;
}

/* under 480 */
@media screen and (max-width: 480px) {
    body {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

}

p {
    line-height: 1.7;
}

sup {
    vertical-align: text-top;
    font-size: xx-small;
    color: #000;
}

.annotation {
    margin: 1rem;
}

.annotation p {
    font-size: xx-small;
}

.note {
    padding-top: 1rem;
}

@media screen and (max-width: 480px) {
    .note {
        padding: 1rem;
    }
}

.note p {
    text-align: right;
    font-size: xx-small;
}


/* 
=======================================================
強調デザイン
=======================================================
フォントサイズ
=======================================================
*/
.larger {
    font-size: larger;
}

.large {
    font-size: large;
}

.x-large {
    font-size: x-large;
}

.largest {
    font-size: 3rem;
}

@media screen and (max-width: 480px) {
    .largest {
        font-size: 1.8rem;
    }
}

.normal {
    font-size: medium;
}

.small {
    font-size: small;
}

.smaller {
    font-size: smaller;
}

.x-small {
    font-size: x-small;
}

/* 
太さ
=======================================================
*/
.bold {
    font-weight: bold;
}

/* 
カラー
=======================================================
*/
.white {
    color: #ffffff;
}

.grey {
    color: #878787;
}

.red {
    color: #ff0000;
}

.blue {
    color: #0000ff;
}

.magenta {
    color: #e4007f;
}

/* 
下線
=======================================================
*/
.underline {
    text-decoration: underline solid;
}

.dotline {
    text-decoration: underline dotted;
}

/* 
ハイライト
=======================================================
*/
.highlight_red_50 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 40%, rgba(255, 0, 0, 0.2) 40% 90%, transparent 90%);
}

.highlight_red_100 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 10%, rgba(255, 0, 0, 0.2) 10% 90%, transparent 90%);
}

.highlight_pink_50 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 40%, rgba(255, 230, 238, 0.6) 40% 90%, transparent 90%);
}

.highlight_pink_100 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 10%, rgba(255, 230, 238, 0.6) 10% 90%, transparent 90%);
}

.highlight_yellow_50 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 40%, rgba(255, 240, 0, 0.4) 40% 90%, transparent 90%);
}

.highlight_yellow_100 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 10%, rgba(255, 240, 0, 0.4) 10% 90%, transparent 90%);
}

.highlight_white_50 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.6) 50% 90%, transparent 90%);
    padding-bottom: 0.3rem;
}

.highlight_white_100 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 10%, rgba(255, 255, 255, 0.6) 10% 90%, transparent 90%);
}

.highlight_green_50 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 40%, #b9e382 40% 90%, transparent 90%);
}

.highlight_green_100 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 10%, #b9e382 10% 90%, transparent 90%);
}

.highlight_blue_50 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 40%, #79DFFF 40% 90%, transparent 90%);
}

.highlight_blue_100 {
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(transparent 10%, #79DFFF 40% 90%, transparent 90%);
}

/* 
文字寄せ
=======================================================
*/
.right {
    text-align: right;
}

.left {
    text-align: left;
    display: inline-block;
}

.separator {
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 480px) {
    .h2_indent {
        margin-left: 1.5rem;
    }
}

.indent {
    margin-left: 3rem;
}


/* 
=======================================================
logo
=======================================================
*/

.logo {
    padding: 10px;
    width: 20%;
    max-width: 150px;
}

@media screen and (max-width: 480px) {
    .logo {
        padding: 0;
        margin: 1rem;
        margin-bottom: 0;
        width: 35%;
        max-width: 150px;
    }

}

/* 
=======================================================
First view
=======================================================
*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
        /* padding: 10px 0 10px; */
        padding-bottom: 1em;
    }
}

/* 
=======================================================
CTA 
=======================================================
*/
.btn,
a.btn {
    cursor: pointer;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 0.5rem;
}

.btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 0.5rem;
}

@media screen and (max-width: 480px) {
    .btn_wrap {
        max-width: 500px;
        margin: 1rem auto;
    }
}

a.btn-c {
    font-size: 1.7rem;
    position: relative;
    padding: 1rem 5rem;
    padding-top: 1.5rem;
    color: #fff;
    background: #e94919;
    -webkit-box-shadow: 0 5px 0 #d44114;
    box-shadow: 0 5px 0 #d44114;
}

@media screen and (max-width: 480px) {
    a.btn-c {
        font-size: 1.2em;
        padding: 1rem 1.5rem;
        padding-top: 1.5rem;
    }
}

a.btn-c::after {
    content: '»';
    display: inline-block;
    color: #fff;
    padding-left: 10px;
    font-size: 2rem;
    vertical-align: auto;
}


a.btn-c .on_the_button {
    font-size: 1.2rem;
    position: absolute;
    top: -1.25rem;
    left: calc(50% - 200px);
    display: block;
    width: 400px;
    padding: 0.2rem;
    color: #d44114;
    border: 2px solid #d44114;
    border-radius: 100vh;
    background: #fff;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 480px) {
    a.btn-c .on_the_button {
        font-size: 0.7em;
        width: 70%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
}

a.btn-c span:before,
a.btn-c span:after {
    position: absolute;
    left: calc(50% - 10px);
    content: "";
}

a.btn-c .on_the_button:before {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #d44114 transparent transparent transparent;
}

a.btn-c .on_the_button:after {
    bottom: -7px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

a.btn-c i {
    margin-right: 1rem;
}

a.btn-c:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    color: #fff;
    background: #eb5b30;
    -webkit-box-shadow: 0 2px 0 #d44114;
    box-shadow: 0 2px 0 #d44114;
}


/*-----------------------------------------
利用者数
------------------------------------------*/
.num_user_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.num_user_wrap p {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    color: #5e4604;
}

.num_user_wrap p::before {
    content: "";
    width: 55%;
    height: 80%;
    position: absolute;
    top: 40%;
    left: 10%;
    margin: 0 2rem;
    background: linear-gradient(transparent 0%, #fef49b 30% 60%, transparent 60%);
    z-index: -1;
}

.num_user_main {
    display: flex;
    align-items: center;
}

.laurel_img img {
    height: 6rem;
}

.laurel_img.left {
    margin-right: 2.5rem;
}

.laurel_img.right {
    margin-left: 2.5rem;
}

.num_user_number h2 {
    font-size: 3.3rem;
    color: transparent;
    background: linear-gradient(0deg, #B67B03 10%, #DAAF08 35%, #FEE9A0 60%, #DAAF08 75%, #B67B03 80% 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

@media screen and (max-width: 480px) {
    .num_user_wrap {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .num_user_number h2 {
        font-size: 2.3rem;
    }

    .laurel_img.left {
        margin-right: 1rem;
    }

    .laurel_img.right {
        margin-left: 1rem;
    }
}

.num_user_number .toppa {
    font-size: 2.3rem;
    margin-left: 1rem;
    color: #D6524B;
}

.num_user_number .hito {
    font-size: 1.7rem;
    font-weight: bold;
    color: #5e4604;
}

@media screen and (max-width: 480px) {
    .num_user_number .toppa {
        font-size: 1.7rem;
    }

    .num_user_number .hito {
        font-size: 1.2rem;
    }
}

/* 
=======================================================
Introduction
=======================================================
*/

/*動向囲み
---------------------------------------------*/
.intro {
    position: relative;
    margin: 2em 15px;
    padding: 1.2em;
    border: solid 3px #f8b296;
    border-radius: 8px;
    background-color: #FFF;
}

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

    /*　画面サイズが480pxまではここを読み込む　*/
    .intro {
        margin: 1rem;
        margin-bottom: 2em;
        padding: 1.2em;
        padding-top: 2rem;
    }
}

.intro::before {
    content: "";
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
    border: solid 50px #FFF;
    border-radius: 8px;
    z-index: -1;
}

.intro .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1.2;
    font-size: 19px;
    background: #FFF;
    color: #f8b296;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    .intro .text {
        margin-top: 1rem;
    }
}

.intro p {
    margin: 0;
    padding: 0;
    line-height: 1.7em;
}

@media screen and (max-width: 480px) {
    .intro .box-title {
        font-size: 17px;
    }

    .intro p {
        font-size: 14px;
    }
}

/* 
=======================================================
Form
=======================================================
*/
/*フォーム 20151028改修版
---------------------------------------------*/

.form_box {
    font-family: sans-serif;
    font-weight: 300;
    width: 100%;
    border-radius: 5px;
}

.form_title {
    margin: 0px 0 5px;
    padding: 1.3rem 1em;
    clear: both;
    color: white;
    background-color: #E274A0;
    border-radius: 5px 5px 0 0;
    position: relative;
    text-align: right;
}

.form_title::before {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    content: '';
    border: 5px dotted #FAE1E3;
}

.form_title h1 {
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
}

.emphasis_yellow {
    font-size: 2.5rem;
    color: #fff352;
    font-weight: 700;
}

/* Star Effect */
.star {
    position: absolute;
    animation: anim-star-kyupeen 1s infinite linear;
}

.star.left {
    max-width: 40px;
    left: 70px;
    top: 10px;
}

.star.right {
    max-width: 30px;
    left: 900px;
    bottom: 10px;
}

@keyframes anim-star-kyupeen {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.indention {
    display: none;
}

.form_box02 {
    font-family: sans-serif;
}

.form_box02>ul {
    display: table;
    width: 100%;
    font-size: 12px;
    margin: 0 0 5px 0;
    padding: inherit;
}

.form_box02>ul>li {
    display: table-cell;
    vertical-align: middle;
    padding: 0 0 0 10px;
    background-color: #E1F0ED;
    border: solid 1px #E1F0ED;
}

.form_box02>ul>li>ul {
    display: flex;
    flex-wrap: wrap;
    /* width: 100%; */
}

.form_box02>ul>li>ul>li {
    list-style: none;
    padding: 10px;
    padding-left: 25px;
    text-align: left;
    width: calc(100% / 2);
}

.form_box02>ul>li:first-child {
    width: 20%;
    padding: 0 5px 0 0;
    background-color: #E1F0ED;
    text-align: center;
}

.form_box02>ul>li:last-child {
    width: 80%;
    padding: 10px;
    background-color: white;
    text-align: center;

}

.form_box02 p {
    font-size: 1.3rem;
    font-weight: bolder;
    color: #40281F;
}

.form_box02 li label:hover {
    background-color: gold;
}

.form_koumoku ul {
    display: inline;
    margin: 0 auto;
}

.form_koumoku li {
    list-style: none;
    padding: 1px 5px 1px 5px;
    width: 40%;
}


.form_koumoku label {
    vertical-align: middle;
    color: black;
}

@media screen and (max-width: 480px) {
    .form_box_wrap {
        margin-top: 1rem;
    }

    .indention {
        display: block;
    }

    .form_title h1 {
        font-size: 1.3em;
    }

    .form_box02>ul {
        display: table;
        width: 100%;
        margin: 0 0 5px 0;
        border: 1px solid #d1d1d1;
    }

    .form_box02>ul>li {
        display: table-cell;
        vertical-align: middle;
        padding: 0 0 0 10px;
    }

    .form_box02>ul>li>ul {
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        margin: 0 auto;
    }

    .form_box02>ul>li>ul>li {
        list-style: none;
        padding: 10px;
        width: 50%;
    }

    .form_box02>ul>li:first-child {
        width: 30%;
        padding: 0 5px 0 0;
        text-align: center;
    }

    .form_box02>ul>li:last-child {
        width: 80%;
        padding: 5px;
        background-color: white;
        text-align: center;
        font-size: 10px;
    }

    .form_box02 p {
        font-size: small;
        font-weight: bolder;
    }

    .form_box02 li label:hover {
        background-color: gold;
    }

    .form_koumoku ul {
        display: flex;
        flex-wrap: wrap;
    }

    .form_koumoku li {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        padding: 1px 5px 1px 5px;
    }

    .form_koumoku label {
        vertical-align: middle;
        color: black;
        white-space: nowrap;
    }

    .emphasis_yellow {
        font-size: 1.8rem;
    }

    .star.left {
        max-width: 20px;
        left: 25px;
        top: 20px;
    }

    .star.right {
        max-width: 25px;
        left: 350px;
        bottom: 10px;
    }

}

#btn-click {
    width: 100%;
}

/*=========　チェックボックス　=========*/

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 5px;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: bolder;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 1rem;
}

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

    input[type="checkbox"]+label {
        display: block;
        position: relative;
        padding-left: 0;
        margin-bottom: 20px;
        cursor: pointer;
        font-weight: bolder;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;

    }

    input[type="checkbox"]+label {
        font-size: 12px;
    }
}

input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #353547;
    position: absolute;
    left: -22px;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: -20px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*=========　チェックボックスここまで　=========*/

/* 
=======================================================
button
=======================================================
*/

button {
    background-color: #FAE1E3;
}

/* solid013 */
.button_solid013 p {
    background: #E35E55;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 10px;
    padding: .9em;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 5px;
    border-bottom: 4px solid #CD443C;
    overflow: hidden;
}

@media screen and (max-width:480px) {
    .button_solid013 p {
        margin-top: 0;
        padding: .5em;
    }
}

.button_solid013 p:active {
    transform: translateY(4px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}

.button_solid013 p:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
    animation: shine 3s infinite;
}

@keyframes shine {
    33% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.button_solid013 p:after {
    content: '»';
    display: inline-block;
    color: #fff;
    padding-left: 10px;
    font-size: 20px;
}

.button_text {
    font-size: 1.5rem;
    font-weight: bolder;
}

/* 
=======================================================
Recommend Reason
=======================================================
*/
.recommend_reason_wrap {
    background-color: white;
    color: #40281F;
    border: #f8b296 solid 3px;
    border-radius: 10px;
    margin: 2em 0;
}

.recommed_reason_title {
    position: relative;
    padding: 1rem;
    margin-right: 30px;
    border-bottom: 3px solid #f8b296;
    font-weight: bold;
    font-size: 32px;
}

.recommed_reason_title::before {
    position: absolute;
    top: 73%;
    left: 100%;
    transform: translateX(-200%) skew(45deg);
    height: 20px;
    width: 10px;
    border-right: 3px solid #f8b296;
    content: "";
}


.recommed_reasons {
    display: flex;
    align-items: center;
}

.reasons_wrap {
    width: 80%;
    padding: 0.5rem;
    margin: 0 20px;
}

.reason {
    list-style: none;
    font-size: 1.5rem;
    background: url(../img/common/checkbox.webp) no-repeat 0 0;
    background-size: auto 35px;
    padding-left: 45px;
    padding-bottom: 10px;
    line-height: 2.3rem;
}

.reason:last-child {
    padding-bottom: 0;
}

.reason_img {
    width: 20%;
    position: relative;
    height: 200px;
    z-index: 2;
    top: 30px;
    right: 20px;
    transform: scale(-1, 1);
}

@media screen and (max-width: 480px) {
    .recommed_reasons {
        flex-direction: column;
        align-items: flex-end;
        padding: 0;
        margin: 0;
    }

    .recommend_reason_wrap {
        margin-bottom: 0.5rem;
        margin-top: 1rem;
    }

    .recommed_reason_title {
        font-size: 20px;
    }

    .recommed_reason_title::before {
        top: 80%;
    }

    .reasons_wrap {
        padding: 1rem 0.5rem;
        margin: 0;
        width: 100%;
    }

    .reason {
        background-size: auto 20px;
        padding-left: 25px;
        padding-bottom: 10px;
        font-size: 16px;
        line-height: 10px;
    }

    .reason_img {
        display: none;
    }
}

/* 
=======================================================
How to chose the online clinic
=======================================================
*/
.how_to_chose_wrap {
    background-color: #fef9f9;
    border-radius: 10px;
    margin-top: 1rem;
}


.how_to_chose {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.how_to_chose h2 {
    padding-top: 1.5rem;
    padding-left: 1rem;
    font-size: 1.5em;
}

.points.second .item h2 {
    padding: 1rem;
    font-size: 1.3rem;
}

.how_to_chose h2::before,
.points.second .item h2::before {
    content: attr(data-index);
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    font-weight: bolder;
    margin-right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: #D971A1;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    vertical-align: middle;
}

.how_text {
    padding: 0 1rem;
}

.how_img_wrap {
    background-color: #fff;
    border-radius: 10px;
    margin: 1rem;
    margin-top: 0;
}

.how_img_wrap.mederi {
    margin: 0;
}

.how_img_wrap .how_img {
    margin: 0 auto;
    margin-top: 1rem;
    max-height: 200px;
}

@media screen and (max-width: 480px) {
    .how_img_wrap .how_img {
        width: 70%;
    }
}

.how_img_wrap.mederi .how_img {
    margin: 0;
    margin-top: 1rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media screen and (max-width: 480px) {
    .how_to_chose_wrap {
        margin-top: 1.5rem;
    }

    .how_to_chose h2 {
        font-size: 1.3rem;
        padding-right: 1rem;
    }

    .how_img {
        max-height: 100px;
    }

    .how_img_wrap.mederi .how_img {
        width: 100%;
        object-fit: cover;
    }

}

/* 
=======================================================
気をつけるポイント
=======================================================
*/

.attention_point {
    margin: 3rem auto;
    position: relative;
    background: #fffcf2;
    border-left: 4px dotted rgba(0, 0, 0, .1);
    border-right: 4px dotted rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    padding: 1em;
    color: #65513f;
}

.masking-tape {
    position: absolute;
    top: -1em;
    left: 40%;
    width: 200px;
    height: 30px;
    background-image: linear-gradient(-45deg, rgba(227, 155, 140, .4) 25%, transparent 25%, transparent 50%, rgba(227, 155, 140, .4) 50%, rgba(227, 155, 140, .4) 75%, transparent 75%, transparent 100%);
    background-size: 20px 20px;
    border-left: 2px dotted rgba(0, 0, 0, .1);
    border-right: 2px dotted rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    padding: 0.25em 2em;
    color: #65513f;
    transform: rotate(-4deg);
}


.attention_point p {
    padding-top: 1em;
    line-height: 2;
}

blue {
    color: #5598E8;
    font-weight: bold;
}


pink {
    background-color: rgba(242, 194, 216, 50%);
}

.yellow {
    font-size: 0.8rem;
    background: linear-gradient(transparent 70%, #fef49b 30%);
}

@media screen and (max-width: 480px) {
    .attention_point {
        margin-top: 3em;
    }

    .attention_point p {
        font-size: 14px;
    }

    .masking-tape {
        width: 100px;
        left: 35%;
    }
}

/* 
=======================================================
Real time
=======================================================
*/

.realtime_rank {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    /* margin-bottom: 2rem; */
}

.realtime_rank p {
    font-size: 2rem;
    text-align: center;
    padding: 0 1rem;
    margin: 0 auto;
    background: linear-gradient(transparent 60%, #fef49b 60% 90%, transparent 90%);
}

/* 点滅 */
.strong_b2 {
    font-weight: bold;
    color: red;
    font-size: 3rem;
    text-align: right;
}

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

    .realtime_rank {
        margin-top: 1rem;
    }

    .realtime_rank p {
        font-size: 1.1rem;
    }

    /*　画面サイズが480pxまではここを読み込む　*/
    .strong_b2 {
        font-size: 1.7rem;
    }
}


/* 点滅 */
.blinking {
    -webkit-animation: blink 1.5s ease-in-out infinite alternate;
    -moz-animation: blink 1.5s ease-in-out infinite alternate;
    animation: blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 
=======================================================
Compare
=======================================================
*/

.compare_table_wrap {
    margin: 2rem auto;
    margin-bottom: 1rem;
}

@media screen and (max-width: 480px) {
    .compare_table_wrap {
        margin-top: 0;
    }
}


/* Make img centering in table */
table img {
    display: block;
    margin: 0 auto;
}

.compare_table {
    width: 100%;
    border-right: #F2C4C8 solid 2px;
    border-bottom: #F2C4C8 solid 2px;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    color: #353535;
    margin-top: 1rem;
    table-layout: fixed;
}

.compare_table th,
.compare_table td {
    border: 2px solid #F2C4C8;
    padding: 1em;
    vertical-align: middle;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
}

.compare_table th:first-child {
    width: 20%;
}

.compare_table thead th {
    background: #fef9f9;
    border-right: #F2C4C8 solid 2px;
    width: calc(100%/3);
}

.compare_table thead th:first-child {
    background: #FAE1E3;
    border-right: #F2C4C8 solid 2px;
    border: #FAE1E3;
}

.compare_table th {
    background-color: #fffcf2;
    border: #F2C4C8 solid 2px;
}

.compare_table td {
    background-color: #FFF;
    font-size: medium;
}

.compare_table td:first-child {
    background-color: #FAE1E3;
    border-top: #f67481 solid 2px;
    border-right: #f67481 solid 2px;
    border-bottom: #f67481 solid 2px;
}

.price_tag {
    font-size: x-small;
    line-height: 0.9;
}

.site_point {
    font-size: 13px;
}

.emphasis_grad {
    font-size: 2em;
    text-align: center;
    line-height: 0.95em;
    font-weight: bold;
    color: transparent;
    background: linear-gradient(90deg, #E274A0 0% 30%, #f67481 40% 60%, #f79d98 70% 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

@media screen and (max-width: 480px) {
    .emphasis_grad {
        font-size: 1.5em;
    }

}


.good_deal {
    display: inline-block;
    background-color: #3CD0BB;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 5px 20px;
    margin-top: 5px;
    border-radius: 30px;
}

.good_deal.mederi {
    font-size: 1.3rem;
    background-color: #E8849C;
}

@media screen and (max-width: 480px) {
    .good_deal {
        font-size: 0.9rem;
        padding: 10px 15px;
        border-radius: 20px;
    }
}

.emphasis_line,
.emphasis_web,
.emphasis_app {
    font-size: 1.3rem;
    font-weight: 700;
}

.emphasis_line {
    color: #06C755;
}

.emphasis_web {
    color: #5598E8;
}

.emphasis_app {
    color: #5064EB;
}

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

    .compare_table th,
    .compare_table td {
        padding: 5px;
    }

    .compare_table th:first-child {
        width: 15%;
    }
}

.button_solid011 a {
    text-decoration: none;
    background: #E8849C;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    max-width: 180px;
    padding: 20px 25px 10px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    flex-direction: column;
    border-radius: 8px;
    border-bottom: solid 5px #D0657D;
    width: 100%;
    text-align: center;
}

.button_solid011 a span {
    background: #FFE39D;
    width: 80%;
    text-align: center;
    position: absolute;
    top: -15px;
    filter: drop-shadow(0px 1px 2px #aaa);
    padding: 3px 0;
    font-size: 0.8rem;
    color: #D0657D;
    border-radius: 5px;
}

.button_solid011 a span:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top: 5px solid #FFE39D;
}

.button_solid011 a:hover {
    border-bottom: solid 2px #D0657D;
    transform: translateY(3px);
}

@media screen and (max-width: 480px) {
    .button_solid011 a {
        padding: 5px;
        top: 20px
    }

    .button_solid011 a span {
        padding: 5px;
        top: -30px;
        width: 100%;
    }
}


/* スクロール */
.scroll_x {
    overflow: auto;
    margin: 1rem auto;
    width: 100%;
}

.scroll_x.after_pill {
    overflow: clip;
}

@media screen and (max-width: 920px) {
    .scroll_x.after_pill {
        overflow: scroll;
    }
}

.scroll_x table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    color: #333333;
    table-layout: auto;
}





/*
テーブル　最初の1行を固定
-------------------------------------------------------
*/
.scroll_x table .sticky_1 {
    position: sticky;
    left: 0;
    z-index: 1;
}

.scroll_x table th,
.scroll_x table td {
    border: 2px solid #F2C4C8;
    vertical-align: middle;
    word-wrap: break-word;
    white-space: nowrap;
}

.scroll_x table th:not(.sticky_1):not(.sticky_2) {
    min-width: 250px;
}


@media screen and (max-width: 480px) {
    .scroll_x table th:not(.sticky_1):not(.sticky_2) {
        min-width: 150px;
        max-width: 200px;
    }

}


.scroll_x table td {
    min-width: 250px;
    white-space: nowrap;
    border-right: 2px solid #F2C4C8;
    border-bottom: 2px solid #F2C4C8;
    background: #FFF;
    padding: 0.5rem;
}

@media screen and (max-width: 480px) {
    .scroll_x table td {
        min-width: 150px;
        max-width: 200px;
        padding: 1rem 0.5rem;
    }

}

.scroll_x th {
    white-space: nowrap;
    padding: 1.5rem 1rem;
}

@media screen and (max-width: 480px) {
    .scroll_x th {
        padding: 0;
    }

}

.scroll_x td.evaluation img {
    object-fit: contain;
    max-width: 70%;
}

@media screen and (max-width: 480px) {
    .scroll_x td.evaluation img {
        max-width: 50%;
    }
}

.scroll_x td.tbl_able img {
    object-fit: contain;
    max-width: 60px;
}

@media screen and (max-width: 480px) {
    .scroll_x th.evaluation {
        padding: 1.5rem;
    }
}

.scroll_x table th:first-child.vertical {
    text-orientation: mixed;
    white-space: wrap;
}

.scroll_x .fields th {
    background-color: #F3B9BD;
    border: 2px solid #E8849C;
}

.scroll_x .fields img {
    height: 150px;
    width: 200px;
    object-fit: contain;
}

@media screen and (max-width: 480px) {
    .scroll_x .fields img {
        height: 80px;
        width: 150px;
    }

}

.scroll_x th.item {
    background-color: #F3B9BD;
    color: #333333;
    max-width: 90px;
}

.scroll_x.after_pill th.item {
    border: 2px solid #E8849C;
}

.scroll_x .fields th:last-child {
    border-right: 2px solid #F2C4C8;
}

.scroll_x .first_colum {
    background-color: #fef9f9;
    position: sticky;
    left: 0;
}

.scroll_x .first_colum th {
    width: 100%;
}

.button_solid015 {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 0.5rem;
}

.button_solid015 p {
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.7rem;
    color: #E8849C;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}

.button_solid015 p:before,
.button_solid015 p:after {
    display: inline-block;
    position: absolute;
    top: 55%;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: #FFE39D;
    content: "";
}

.button_solid015 p:before {
    left: -1.3rem;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.button_solid015 p:after {
    right: -1.3rem;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.button_solid015 a {
    position: relative;
    text-decoration: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 0.5rem 2rem;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #E8849C;
    filter: drop-shadow(0px 2px 2px #D0657D);
    border-radius: 50px;
}

.button_solid015 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.scroll_x td.special,
.compare_table td.special {
    background: #fef9f9;
    border: #E8849C 5px solid;
}

.scroll_x td .bg_star,
.compare_table td .bg_star {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E8849C;
}

@media screen and (max-width: 480px) {
    .scroll_x td .bg_star {
        font-size: 1.7rem;
    }
}


/* 
=======================================================
Ranking
=======================================================
*/
/* Wrapping all of ranking components */

.primary_headline {
    display: flex;
    align-items: center;
    position: relative;
    /* height: 200px; */
    /* margin-bottom: 1rem; */
}

/* .primary_headline::before {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 0px;
    right: 0px;
    background-color: #FFF;
    border: 20px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(#f79d98, #E8849C);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-radius: 8px;
    z-index: -1;
} */

.primary_img {
    width: 15%;
    left: 10px;
    position: relative;
}

.primary_text {
    width: 80%;
    font-size: 1.3rem;
    margin-left: 1em;
    text-align: center;
    color: #40281F;
    background-color: #FFF;
    border: 20px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(#f79d98, #E8849C);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-radius: 8px;
    z-index: -1;
}

.primary_text .serch_result {
    padding: 0;
}

.top3 {
    font-size: 3rem;
    color: #f8b296;
    display: inline;
    vertical-align: baseline;
}

@media screen and (max-width: 480px) {
    .primary_headline {
        padding: 0;
        justify-content: flex-start;
        /* height: 150px; */
        top: 10px;
    }

    .serch_result {
        padding: 0;
        top: 800px;
    }

    /* .primary_headline::before {
        top: 40px;
        bottom: 40px;
        left: 0px;
        right: 0px;
        border: 10px solid transparent;
    } */

    .primary_img {
        width: 100%;
        max-width: 80px;
        left: 0;
    }

    .primary_text {
        margin-left: 0.1em;
        border: 10px solid transparent;
        padding: 0.5rem;
        vertical-align: middle;
    }

    .primary_text h1 {
        font-size: 1.1rem;
        /* line-height: 0.3; */
    }

    .top3 {
        font-size: 1.3rem;
    }
}

/* Wrapping rank header, editor comment, review */
.each_rank_content {
    padding: 1em;
    border-radius: 8px;
    background-color: #fef9f9;
    margin: 1rem 0;
}

.each_rank_content:first-child {
    margin-top: 1rem;
}

/* .each_rank_content:last-child {
    margin-bottom: 0;
} */

@media screen and (max-width: 480px) {
    .each_rank_content {
        margin: 1.5rem 0;
    }

    .each_rank_content:last-child {
        margin-bottom: 0;
    }
}

/* 
Ranking Header
-------------------------------------------------------
*/
/* Wrapping rank_name, rank_header */
.rank_main {
    background-color: #fef9f9;
}

.rank_name {
    position: relative;
    padding-bottom: 10px;
    color: #402921;
    border-bottom: dotted 10px #D971A1;
}

.no1.rank_name::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 30px;
    background: url(../img/common/rank_1st.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.no2.rank_name::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 30px;
    background: url(../img/common/rank_2nd.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.no3.rank_name::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 30px;
    background: url(../img/common/rank_3rd.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

@media screen and (max-width: 480px) {
    .rank_name {
        margin-bottom: 10px;
    }

    .rank_name::before {
        width: 40px;
        height: 25px;
    }
}

/* Wrapping rank_banner, rank_discription */
.rank_header {
    display: flex;
    background-color: #fef9f9;
    padding-top: 1rem;
}

@media screen and (max-width: 480px) {
    .rank_header {
        flex-direction: column;
    }

}

.rank_banner {
    display: flex;
    height: 100%;
    width: 30%;
    margin-bottom: 1rem;
}

.rank_banner a {
    width: 100%;
}

.rank_banner img {
    width: 100%;
}

/* Wrapping recommendation bar(rating), rank_ponints */
.rank_discription {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: stretch;
    width: 60%;
    height: 100%;
}

/* rank banner, dicription become one colomn when display witdth under 480 */
@media screen and (max-width: 480px) {
    .rank_header {
        padding: 0;
    }

    .rank_banner {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 0.5rem;
    }

    .rank_discription {
        width: 100%;
        padding: 0;
    }
}

/* Recommendation bar */
.rating {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    position: relative;
    padding-left: 10px;
}

.rate_left {
    padding: 10px 20px;
    background-color: #D971A1;
    border: 3px solid #D971A1;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.rate_right {
    display: flex;
    background-color: #fff;
    padding: 10px 20px;
    border: 3px solid #D971A1;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.rate {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 30px;
    font-size: 30px;
    margin-right: 20px;
}

.rate::before,
.rate::after {
    position: absolute;
    display: inline-block;
    height: 30px;
    content: '★★★★★';
    line-height: 30px;
}

.rate::before {
    color: #c4c4c4;
}

.pillmaru_rate .rate::after {
    overflow: hidden;
    /* fomula: rating * font size */
    /* font-size = 30px*/
    /* ex: rating 5 * 30 = 150px */
    width: 150px;
    color: #ffb906;
}

.mederi_rate .rate::after {
    overflow: hidden;
    /* fomula: rating * font size */
    /* font-size = 30px*/
    /* ex: rating 5 * 30 = 150px */
    width: 150px;
    color: #ffb906;
}

.revcli_rate .rate::after {
    overflow: hidden;
    width: 130px;
    color: #ffb906;
}

.clinicfore_rate .rate::after {
    overflow: hidden;
    /* fomula: rating * font size */
    /* font-size = 30px*/
    /* ex: rating 4.5 * 30 = 135px */
    width: 120px;
    color: #ffb906;
}



.dmm_rate .rate::after {
    overflow: hidden;
    /* fomula: rating * font size */
    /* font-size = 30px*/
    /* ex: rating 4.5 * 30 = 135px */
    width: 126px;
    color: #ffb906;
}


.recotext {
    font-weight: 700;
    font-size: 18px;
}

.recommend_level {
    color: #fff;
}

.rate-wrap {
    display: flex;
    width: 330px;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border: 1.5px solid #e8d8b0;
    margin: 20px auto 0;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    .rating {
        justify-content: center;
        margin: .5rem 0;
        margin-top: 0;
        padding: 0;
    }

    .rate_left {
        border: none;
        padding: 5px 10px;
    }

    .rate_right {
        border: none;
        padding: 5px 10px;
    }

    .recotext {
        font-size: 0.9rem;
    }
}

/* Rank points */
.rank_points_wrap {
    margin: 1rem;
    padding-bottom: 10px;
    background-color: #fffcf2;
    border-radius: 10px;
}

.rank_title {
    padding: 5px;
    font-size: 20px;
    background-color: #E1F0ED;
    text-align: center;
    color: #40281F;
    font-weight: 700;
    border-bottom: #fff 3px dotted;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

ul.rank_points {
    list-style: none;
    padding: 10px;
    padding-bottom: 0;
}

.rank_points>li {
    background: url(../img/common/pill_red.webp) no-repeat 0 0;
    background-size: auto 20px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.rank_points>li:nth-child(even) {
    background: url(../img/common/pill_pink.webp) no-repeat 0 0;
    background-size: auto 20px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.rank_points>li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 480px) {
    .rank_points_wrap {
        margin: 0;
        margin-bottom: 1rem;
    }
}

/* 
Ranking Table
-------------------------------------------------------
*/
.rank_table_wrap {
    padding-bottom: 20px;
    background-color: #fef9f9;
}

.notes {
    padding-bottom: 20px;
}

.rank_table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
}

.table_img {
    width: 65%;
    height: 65%;
}

.rank_table th,
.rank_table td {
    padding: .6rem 3%;
    border: 2px solid #F2C4C8;
    vertical-align: top;
}

.rank_table td {
    background-color: #FFF;
}

.rank_table th {
    color: #402921;
    background: #FFE8EA;
}

@media screen and (max-width: 480px) {
    .rank_table_wrap {
        padding: 0;
    }

    .rank_table th,
    .rank_table td {
        display: block;
        width: auto;
        border-bottom: none;
        text-align: center;
    }

    .rank_table tr:last-child {
        border-bottom: 1px solid #F2C4C8;
    }

    .notes {
        padding-bottom: 1rem;
    }
}

/* Ranking button */
.rank_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

a.btn_design {
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    padding: 1rem 4rem;
    margin-bottom: 1.3em;
    font-weight: bold;
    color: #FFF;
    background-color: #D971A1;
    transition: 0.3s ease-in-out;
    box-shadow: 5px 5px 0 #d4508e;
    border-radius: 100vh;
    transition: 0.5s;
}

a.btn_design:hover {
    color: #fff;
    background: #d4508e;
    box-shadow: 0 0 0;
    transform: translate(5px, 5px);
}

@media screen and (max-width: 480px) {
    a.btn_design {
        font-size: 1rem;
        margin-top: 10px;
        margin-bottom: 1em;
    }
}

/* 
Ranking comment
-------------------------------------------------------
*/
/* Wrapping headline, rank_comment */
.rank_comment_wrap {
    padding: 20px 0;
}

.headline {
    color: #444;
    padding: 20px;
    margin-right: 8px;
    margin-bottom: 20px;
    background-color: #FFF;
    font-size: 1.3rem;
}

.editor.headline {
    border: 3px solid #D971A1;
    box-shadow: 8px 8px #D971A1;
}

.review.headline {
    border: 3px solid #9dcdc3;
    box-shadow: 8px 8px #9dcdc3;
}


/* Wraping admin_img, arrow_box */
.rank_comment {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.admin_img {
    background-size: 100%;
    background-repeat: no-repeat;
    width: 30%;
    max-width: 200px;
    height: auto;
    position: relative;
    bottom: 0px;
    left: 30px;
}

/* Speech bubble */
.arrow_box {
    z-index: 1;
    position: relative;
    background: #FFFFFF;
    padding: 20px;
    text-align: left;
    border: 6px solid #f5dbe7;
    color: #333333;
    width: 70%;
    font-weight: bold;
    border-radius: 22px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
}

.arrow_box:after,
.arrow_box:before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    top: 77%;
}

.arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 33px;
    border-right-width: 33px;
    margin-top: -9px;
    border-right-color: #FFFFFF;
}

.arrow_box:before {
    border-color: rgba(253, 240, 198, 0);
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 55px;
    border-right-width: 55px;
    margin-top: -15px;
    margin-right: 6px;
    border-right-color: #f5dbe7;
}

@media screen and (max-width: 480px) {
    .rank_comment_wrap {
        padding: 0;
        margin: 1rem 0;
    }

    .rank_comment {
        flex-direction: column-reverse;
        align-items: flex-end;
        padding: 0;
    }

    .admin_img {
        height: 80px;
        z-index: 2;
        top: -30px;
        left: -5px;
        transform: scale(-1, 1);
    }

    .arrow_box {
        width: 100%;
    }

    .arrow_box:after {
        content: none;
    }

    .arrow_box:before {
        content: none;
    }

}

/* 
Ranking review
-------------------------------------------------------
*/
/* Wrapping headline, review_main */
@media screen and (max-width: 480px) {

    .rank_wrap,
    .most_recommend_wrap {
        margin-bottom: 1.5rem;
    }
}

/* Wrapping review_icon, review_text */
.review_main {
    display: flex;
    background: #fff;
    border: 4px solid #E1F0ED;
    border-radius: 20px;
    padding: 1rem 1.6rem;
    line-height: 1.8rem;
    margin-bottom: 0.5rem;
}

.review_main:last-child {
    margin-bottom: 0;
}

.review_icon {
    width: 30%;
    max-width: 100px;
    margin: 20px;
    margin-right: 40px;
}

.review_title {
    padding: .3rem .7rem;
    margin-bottom: 10px;
    border-left: 5px dotted #93A686;
    font-size: 20px;
}

.review_sentence {
    padding-left: 20px;
}

.post_person {
    text-align: right;
}

@media screen and (max-width: 480px) {
    .rank_reviews_wrap {
        padding: 0;
        margin: 1rem 0;
        margin-bottom: 0;
    }

    .review_main {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .review_icon {
        width: 30%;
        padding: 0;
        margin: 0;
    }

    .review_title {
        font-size: 18px;
    }

    .review_text {
        width: 100%;
    }
}

/* 
Q & A
-------------------------------------------------------
*/

.qa_wrap {
    background-color: #fffefb;
    padding: 1.5rem 3rem;
    border-radius: 10px;
    margin: 1rem 0;
    margin-bottom: 2rem;
}

.cp_qa *:after,
.cp_qa *:before {
    font-family: 'FontAwesome', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_qa dt,
.cp_qa dd {
    position: relative;
    padding: 0.5em;
    border-radius: 10px;
}

.cp_qa dt {
    margin: 0 9rem 0.5rem 3rem;
    background: #fff;
    border: 3px solid #E1F0ED;
}

.cp_qa dd {
    margin: 0 3rem 2rem 9rem;
    background: #fff;
    border: 3px solid #f5dbe7;
}

@media screen and (max-width: 480px) {
    .qa_wrap {
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
    }

    .cp_qa dt {
        margin: 0 1rem 0.5rem 3rem;
    }

    .cp_qa dd {
        margin: 0 3rem 1.5rem 1rem;
    }

}

.cp_qa dd:last-child {
    margin-bottom: 0;
}

/* 吹き出し▶︎ */
.cp_qa dt::before,
.cp_qa dd::before {
    position: absolute;
    z-index: 99;
    top: 0.5em;
    display: inline-block;
    width: 0;
    height: 0;
    content: '';
    border-style: solid;
}

/* 質問吹き出し▶︎ */
.cp_qa dt::before {
    left: -0.5em;
    border-width: 5px 8.7px 5px 0;
    border-color: transparent #E1F0ED transparent transparent;
}

/* 答え吹き出し▶︎ */
.cp_qa dd::before {
    right: -0.5em;
    border-width: 5px 0 5px 8.7px;
    border-color: transparent transparent transparent #f5dbe7;
}

/* ?!アイコン */
.cp_qa dt::after,
.cp_qa dd::after {
    font-size: 1.8em;
    position: absolute;
    top: 0;
    color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    line-height: 1.2em;
}

/* ?アイコン */
.cp_qa dt::after {
    left: -2em;
    margin: 0 0.5em 0 0;
    padding: 0.2em 0.35em;
    content: 'Q.';
    background: #9dcdc3;
}

/* A. icon */
.cp_qa dd::after {
    right: -2em;
    margin: 0 0 0 0.5em;
    padding: 0.2em 0.4em;
    content: 'A.';
    background: #D971A1;
}


/* 
=======================================================
Search
=======================================================
*/
/* 
=======================================================
Search_result
=======================================================
*/
.search_result_wrap {
    background-color: white;
    color: #40281F;
    border: #f8b296 solid 3px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.search_result_title {
    text-align: center;
    position: relative;
    padding: 1rem;
    background: repeating-linear-gradient(to right, #FFFAEC, #FFFAEC 6px, #fff8de 6px, #fff8de 20px);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    font-size: 2rem;
}

.search_result {
    display: flex;
    align-items: center;
}

.result_text_wrap {
    width: 80%;
    padding: 0.5rem;
    margin: 0 20px;
    padding-top: 0;
}

.search_result_img {
    width: 20%;
    position: relative;
    top: 10px;
    z-index: 2;
    right: 20px;
    transform: scale(-1, 1);
}

.search_again {
    margin: 2rem 0;
    margin-top: 3rem;
}

@media screen and (max-width: 480px) {
    .search_result {
        position: relative;
        flex-direction: column;
        align-items: flex-end;
        padding: 0;
        margin: 0;
    }

    .search_result_wrap {
        margin: 0;
        margin: 1em 0;
        margin-bottom: 2.5rem;
    }

    .search_result_title {
        font-size: 1.5rem;
    }

    .search_result_title::before {
        top: 80%;
    }

    .result_text_wrap {
        padding: 1rem;
        margin: 0;
        width: 100%;
    }

    .search_result_img {
        position: absolute;
        width: 50%;
        max-width: 100px;
        top: -100px;
    }
}

.sample_box2_6 {
    position: relative;
    padding: 1em 1.5em;
    margin-bottom: 1.5em;
    margin-right: 10px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 4px;
    z-index: 1;
}

@media screen and (max-width: 480px) {
    .sample_box2_6 {
        padding: 1em;
        margin: 0;
        margin-bottom: 1.5em;
    }
}

.sample_box2_6::before,
.sample_box2_6::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.sample_box2_6::before {
    background-color: rgba(255, 255, 255, 0.9);
    left: 0;
    top: 0;
    z-index: -1;
}

.sample_box2_6::after {
    background-color: #f8b296;
    top: 5px;
    left: 5px;
    z-index: -2;
}

.sample_box2_6 p {
    margin: 0;
    padding: 0;
}


/* 
=======================================================
Footer
=======================================================
*/

footer {
    padding: 1rem;
    background-color: #fff;
}

.footer {
    /* background: #f67481; */
    text-align: center;
    padding: 30px;
    /* margin-top: 30px; */
    font-weight: bolder;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.footer a {
    color: #f67481;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .menu {
    margin: 0;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .menu li {
    margin: 0;
    padding: 0 0px;
}

.menu li::before {
    content: "｜";
    padding-right: 30px;
    padding-left: 30px;
    color: #f67481;
    position: relative;
}

.menu .after_line ::after {
    content: "｜";
    padding: 0 30px 0;
}

.footer .copyright {
    margin: auto;
    padding: 20px 0 0 0;
}

@media screen and (max-width:480px) {
    .footer {
        margin: 0;
    }

    .footer .menu {
        margin: 0;
        padding: 0;
        display: block;
    }

    .footer .menu li {
        margin: 0 0 10px 0;
        padding: 0 20px;
    }

    .menu li::before {
        content: "";
        padding: 0;
    }

    .menu .after_line ::after {
        content: "\A";
        padding: 0;
    }
}

.footer_logo img {
    width: 10%;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width:480px) {
    .footer_logo img {
        width: 60%;
        display: block;
        margin: 50px auto 0;
    }
}

.logo_footer {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.logo_footer ul {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    align-items: flex-start;
    vertical-align: middle;
    justify-items: center;
    list-style: none;
}

.logo_footer ul li {
    width: 25%;
    align-self: flex-start;
    padding-bottom: 1rem;
}

.logo_footer img {
    max-height: 50px;
    margin: auto;
}

@media screen and (max-width: 480px) {
    .logo_footer ul {
        padding: 0;
    }

    .logo_footer ul li {
        width: 50%;
        padding-bottom: 0.5rem;
    }
}

/* 
=======================================================
Generation
=======================================================
*/

/*
======================================================= 
lp 内
=======================================================
世代囲み
=======================================================
*/
.gene_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media screen and (max-width: 480px) {
    .gene_wrap {
        flex-direction: column;
        flex-wrap: nowrap;
    }
}

/* 
ピルの詳細比較
=======================================================
*/
.gene_item {
    display: flex;
    flex-direction: column;
    width: calc(50% - 0.5rem);
    margin-right: 1rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
}

@media screen and (max-width: 480px) {
    .gene_item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 8px;
    }
}

.gene_item:nth-child(2),
.gene_item:nth-child(4) {
    margin-right: 0;
}

/* 
ピルの詳細：内容
=======================================================
*/
.gene_item h2 {
    font-size: 1.3rem;
    padding-bottom: 0.3rem;
    margin-bottom: 0.5rem;
    width: fit-content;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #f79d98 0%, #E8849C 100%);
    border-image-slice: 1;
}

.gene_item p {
    display: inline-block;
    width: 100%;
}

.gene_item p:first-of-type {
    font-weight: bolder;
    font-size: large;
}

@media screen and (max-width: 480px) {
    .gene_item p:first-of-type {
        font-weight: bolder;
        font-size: medium;
    }
}

.gene_item .gene_head {
    font-weight: bolder;
    color: #3CD0BB;
}

.gene_item a {
    background: #d4508e;
    border-radius: 3px;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    margin-top: 1rem;
    max-width: 280px;
    padding: 10px 25px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.gene_item a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 1rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.gene_item a:hover {
    background-image: linear-gradient(90deg, #f79d98, #E8849C);
    color: #FFF;
}

.gene_item a:hover:after {
    right: 0.5rem;
}




/*
======================================================= 
generation 内
=======================================================
世代ごとの説明
=======================================================
*/
.gene_definition {
    background-color: #fff;
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 8px;
}

.gene_definition h2 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    width: fit-content;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #f79d98 0%, #E8849C 100%);
    border-image-slice: 1;
}

@media screen and (max-width: 480px) {
    .gene_definition h2 {
        font-size: 1.3rem;
        padding-bottom: 0.5rem;
        width: fit-content;
        border-bottom: 3px solid;
        border-image: linear-gradient(to right, #f79d98 0%, #E8849C 100%);
        border-image-slice: 1;
    }
}

.gene_definition .explain {
    margin-top: 0.5rem;
}

.gene_definition ul {
    margin: 1rem 0;
    background-color: #fffcf2;
    padding: 1rem;
    border-radius: 8px;
}

.gene_definition p {
    line-height: 1.5rem;
    padding-bottom: 0.5rem;
}

.gene_definition p:last-child {
    padding-bottom: 0;
}

/* 
ピルの詳細比較
=======================================================
*/
.pill_compare_table_wrap {
    margin-bottom: 2rem;
}

.pill_compare_table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    border-radius: 8px;
}

.pill_compare_table:last-of-type {
    margin-bottom: 0;
}

.pill_compare_table caption {
    text-align: left;
    font-size: 1.3rem;
    font-weight: bolder;
    color: #D971A1;
    background: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.4) 0%);
    width: fit-content;
    margin-bottom: 0.5rem;
    padding: 0.3rem;
}

.pill_compare_table .amount {
    font-size: 1rem;
}

.pill_compare_table tr {
    background-color: #fff;
}

.pill_compare_table tbody tr:hover,
.pill_compare_table tbody tr:active {
    background-color: #fffae9;
}

.pill_compare_table th,
.pill_compare_table td {
    padding: 0.5rem 0;
    border: 2px solid #fffcf2;
    text-align: center;
    vertical-align: middle;
}

.pill_compare_table thead tr {
    background-color: #E1F0ED;
    color: #000;
}

.pill_compare_table tbody th {
    text-align: left;
    font-size: .8em;
}

.pill_compare_table .logo {
    padding: 0.3em;
    margin: 0 auto;
    width: 100%;
}

.txt {
    text-align: left;
    font-size: 1.1rem;
}

.price {
    text-align: right;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

.price.pillmaru {
    color: #D971A1;
    font-size: larger;
    font-weight: bolder;
}

.none {
    font-size: 0.8rem;
}

@media screen and (max-width: 600px) {
    .pill_compare_table {
        width: 100%;
        margin-bottom: 1rem;
    }

    .pill_compare_table thead th {
        font-size: .75em;
    }

    .txt {
        text-align: left;
        font-size: .65em;
    }

    .price {
        text-align: right;
        color: #000;
        font-weight: bold;
    }
}

/* 
他世代への遷移ボタン
=======================================================
*/
.to_other_gene {
    margin: 2rem auto;
}

.to_other_gene ul {
    display: flex;
    list-style: none;
}

.to_other_gene ul li {
    display: flex;
    width: 25%;
    align-items: center;
    background: #d4508e;
    padding: 1rem;
    margin-left: 1rem;
    border-radius: 10px;
}

.to_other_gene ul li:first-child {
    margin-left: 0;
}

.to_other_gene ul li a {
    color: #fff;
    padding-left: 15px;
    font-size: 1.1rem;
    font-weight: bolder;
    text-decoration: none;
    position: relative;
}

.to_other_gene ul li:hover,
.to_other_gene ul li:active {
    background-image: linear-gradient(90deg, #f79d98, #E8849C);
    color: #FFF;
}

.to_other_gene ul li a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: -10px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

@media screen and (max-width: 480px) {
    .to_other_gene ul {
        flex-wrap: wrap;
    }

    .to_other_gene ul li {
        width: calc(50% - 0.5rem);
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .to_other_gene ul li:nth-child(3),
    .to_other_gene ul li:nth-child(4) {
        margin-bottom: 0;
    }

    .to_other_gene ul li:nth-child(1),
    .to_other_gene ul li:nth-child(3) {
        margin-left: 0;
    }
}

/* 
=======================================================
プライバシーポリシー
=======================================================
*/

.privacy_title {
    text-align: center;
    margin: 20px auto;
}

.privacy_wrap {
    margin: 30px auto;
}

.privacy01 {
    margin: 15px auto;
}

.privacy01 ol {
    margin: 15px auto;
    list-style-type: decimal;
    /* 数字形式（1, 2, 3, ...） */
}

.privacy01 li {
    margin: 20px 0px 10px auto;
}

.privacy01 h2 {
    margin-bottom: 10px;
}

@media screen and (max-width:480px) {
    .privacy_wrap {
        margin: 30px 20px;
    }
}

/* 
=======================================================
ランキングの根拠
=======================================================
*/

.ranking_title {
    text-align: center;
    margin: 20px auto;
}

.ranking_wrap {
    margin: 30px auto;
}

.ranking_rate h1 {
    background-color: #f67481;
    color: white;
    text-align: center;
    padding: 5px;
    border: 1px solid gray;
    border-bottom: 0px;
}

.ranking_rate table {
    border: 1px solid gray;
    width: 100%;
    border-collapse: collapse;
    font-size: 20px;
    text-align: center;
}

.ranking_rate td {
    border: 1px solid gray;
    padding: 10px;
}

.ranking_evidence h1 {
    text-align: center;
    margin: 30px 0 0px 0;
    padding: 5px;
    border: 1px solid gray;
    border-bottom: 0;
    background-color: #f67481;
    color: white;
}

.ranking_evidence p {
    border: 1px solid gray;
    padding: 10px;
}

@media screen and (max-width:480px) {
    .ranking_wrap {
        margin: 10px 15px 0px 15px;

    }

    .ranking_rate table {
        font-size: 15px;
        vertical-align: middle;
    }

    .ranking_rate td {
        vertical-align: middle;
    }

    .ranking_evidence p {
        font-size: 15px;
        margin-bottom: 20px;
    }

}

/* 
=======================================================
運営者情報
=======================================================
*/

.company_title {
    text-align: center;
    margin: 20px auto;
}

.company_wrap {
    margin: 30px auto;
}

.company_info {
    display: flex;
    justify-content: center;
    margin: 40px auto;

}

.company_text {
    text-align: left;
}

@media screen and (max-width:480px) {
    .company_info {
        padding: 15px;
        font-size: 15px;
    }
}

/*ローディング
------------------------------------------*/
#re-load {
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 50px 50px;
    background-color: white;
}

#re-load-in {
    padding: inherit;
}

#re-load-logo img {
    width: 50%;
}

#re-load-text {
    font-size: 2vmin;
}

#re-load-title {
    padding: 10px 10px;
    font-size: 3vmin;

}

#re-load-link span {
    font-size: 2vmin;
    color: blue;
    text-decoration: underline;
}

.especially {
    margin-top: 1rem;
}

@media screen and (max-width:480px) {
    .especially {
        margin-top: 1.5rem;
    }
}

.loader {
    margin: 100px auto;
    font-size: 25px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

@-webkit-keyframes load5 {

    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #53ad5c, 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.5), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.7), 1.8em -1.8em 0 0em #53ad5c, 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.5), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.7), 2.5em 0em 0 0em #53ad5c, 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.5), 2.5em 0em 0 0em rgba(83, 173, 92, 0.7), 1.75em 1.75em 0 0em #53ad5c, 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.5), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.7), 0em 2.5em 0 0em #53ad5c, -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.5), 0em 2.5em 0 0em rgba(83, 173, 92, 0.7), -1.8em 1.8em 0 0em #53ad5c, -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.5), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.7), -2.6em 0em 0 0em #53ad5c, -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.5), -2.6em 0em 0 0em rgba(83, 173, 92, 0.7), -1.8em -1.8em 0 0em #53ad5c;
    }
}

@keyframes load5 {

    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #53ad5c, 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.5), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.7), 1.8em -1.8em 0 0em #53ad5c, 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.5), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.7), 2.5em 0em 0 0em #53ad5c, 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.5), 2.5em 0em 0 0em rgba(83, 173, 92, 0.7), 1.75em 1.75em 0 0em #53ad5c, 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.5), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.7), 0em 2.5em 0 0em #53ad5c, -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.5), 0em 2.5em 0 0em rgba(83, 173, 92, 0.7), -1.8em 1.8em 0 0em #53ad5c, -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.5), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.7), -2.6em 0em 0 0em #53ad5c, -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.5), -2.6em 0em 0 0em rgba(83, 173, 92, 0.7), -1.8em -1.8em 0 0em #53ad5c;
    }
}

/* 
=======================================================
アフターピルページ
=======================================================
howtochose ポイント
-------------------------------------------------------
*/
.compare_point {
    margin: 3rem 0;
}

@media screen and (max-width: 480px) {
    .compare_point {
        margin: 1.5rem 0;
    }
}

.compare_point .points {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin-top: 2.5rem;
}

@media screen and (max-width: 480px) {
    .compare_point .points {
        flex-wrap: nowrap;
        margin-top: 2rem;
    }

    .compare_point .points.second {
        flex-direction: column;
    }
}

/* 
howtochose 各ポイント
-------------------------------------------------------
*/
.points .item {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: calc(100% / 3 - 1rem);
    background-color: #fff;
    margin-right: 1.5rem;
    border-radius: 10px;
    aspect-ratio: 1/1;
}

@media screen and (max-width: 480px) {
    .points .item {
        align-items: stretch;
        justify-content: space-between;
        margin-right: 0.5rem;
        width: 100%;
    }

    .points.second .item {
        margin-bottom: 1rem;
    }
}

.points .item:last-of-type {
    margin-right: 0;
}

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

    .points .item:last-of-type,
    .points.second .item:last-of-type {
        margin-bottom: 0;
    }
}

/* 
POINT アイコン
-------------------------------------------------------
*/

.points .item.point1,
.points .item.point2,
.points .item.point3 {
    position: relative;
}

.points .item.point1::before,
.points .item.point2::before,
.points .item.point3::before {
    position: absolute;
    height: 50px;
    width: 50px;
    object-fit: contain;
    top: -25px;
    left: -10px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

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

    .points .item.point1::before,
    .points .item.point2::before,
    .points .item.point3::before {
        height: 40px;
        width: 40px;
        top: -10px;
        left: -5px;
    }
}

.points .item.point1::before {
    content: "";
    background-image: url(/asset/img/common/point1.png);
}

.points .item.point2::before {
    content: "";
    background-image: url(/asset/img/common/point2.png);
}

.points .item.point3::before {
    content: "";
    background-image: url(/asset/img/common/point3.png);
}


/* 
howtochose サムネイル
-------------------------------------------------------
*/
.points .item .sumbnail {
    position: relative;
    width: 100%;
}

.points .item .sumbnail img {
    height: 200px;
    width: 100%;
    object-fit: contain;
    border-top-right-radius: 10px;
    padding: 1rem;
    padding-bottom: 0;
}

@media screen and (max-width: 480px) {
    .points .item .sumbnail img {
        height: 80px;
        width: 80px;
        margin: 0 auto;
        padding: 0;
        padding-top: 0.3rem;
    }
}

/* 
howtochose サムネイル
-------------------------------------------------------
*/
.points .item .explain {
    margin: 1rem;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .points .item .explain {
        margin: 0.3rem;
    }
}

.points .item .explain h2 {
    font-size: 1.3rem;
}

@media screen and (max-width: 480px) {
    .points .item .explain h2 {
        font-size: 4vw;
    }
}

@media screen and (max-width: 480px) {
    .points .item .explain p {
        font-size: smaller;
    }
}

.result .content {
    display: flex;
    width: 100%;
    background-color: var(--seashell);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media screen and (max-width: 480px) {
    .result .content {
        flex-direction: column;
        align-items: center;
    }
}

/* 
低用量ピルへの案内
-------------------------------------------------------
*/

.to_lowpill {
    margin-bottom: 2rem;
}

@media screen and (max-width: 480px) {
    .to_lowpill {
        margin-top: 2rem;
    }
}

.to_lowpill .content {
    display: flex;
    background-color: #E1F0ED;
    border-radius: 8px;
}

@media screen and (max-width: 480px) {
    .to_lowpill .content {
        flex-direction: column;
        align-items: center;
    }
}

.to_lowpill .content .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.to_lowpill .content .text a {
    width: fit-content;
    margin: 0 auto;
    margin-top: 1rem;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-size: 1.3rem;
    font-weight: 600;
    background: #FFC20A;
    overflow: hidden;
    border-radius: 8px;
    border: #fff 2px solid;
}

.to_lowpill .content .text a:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
    animation: shine 3s infinite;
}

.to_lowpill .content .text a:hover {
    background: #FFF5D6;
    color: #291F00;
}


.to_lowpill .content img {
    display: flex;
    width: 30%;
    padding: 1rem;
    padding-bottom: 0;
    object-fit: contain;
}

@media screen and (max-width: 480px) {
    .to_lowpill .content img {
        height: 100%;
        padding: 0;
    }
}

/* 
現状比較：モーダル
-------------------------------------------------------
*/
.modal {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.modal-content {
    position: fixed;
    width: 40%;
    text-align: right;
    top: 10px;
    color: #fff;
    background-color: #E274A0;
    z-index: 100;
    border-radius: 0.3rem;
}

@media screen and (max-width: 480px) {
    .modal {
        align-items: center;
        justify-content: flex-end;
    }

    .modal-content {
        width: fit-content;
    }


}

#visitorCount {
    padding: 0.25rem 0.5rem;
}

@media screen and (max-width: 480px) {
    #visitorCount {
        padding: 0.25rem 1rem;
    }
}

.progress {
    width: 100%;
}

.progress-bar {
    height: 0.1rem;
    background-color: #fff;
    width: 100%;
    transition: width 1s linear;
}