@charset "UTF-8";
/*0922*/
@media (max-width: 768px) {
    .container table {
        display: inline-table !important;
    }
}

@media (max-width: 768px) {

    .container table th,
    .container table td {
        display: table-cell !important;
    }
}

@media (max-width: 768px) {

    .container table tbody,
    .container table tr {
        display: table-row !important;
    }
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Noto Sans JP Bold.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Noto Sans JP Medium.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Noto Sans JP Regular.woff") format("woff");
    font-display: swap;
}

/* barlow-500 - latin */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/barlow-v11-latin-500.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/barlow-v11-latin-500.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/barlow-v11-latin-500.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/barlow-v11-latin-500.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/barlow-v11-latin-500.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/barlow-v11-latin-500.svg#Barlow') format('svg');
    /* Legacy iOS */
}

html {
    font-size: 62.5%;
    /* overflow: auto;
    height: 100%; */
}

body {
    font-family: "Noto Sans JP", Noto Sans JP, sans-serif;
    color: #003E6E;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

body.fixed {
    overflow-y: hidden;
    width: 100%;
    position: fixed;
}

a {
    color: inherit;
    word-wrap: break-word;
}

h1,
h2,
h3,
h4 {
    font-feature-settings: "palt" 1;
}

.forPC {
    display: inline-block;
}

.forSP {
    display: none;
}

.mt35 {
    margin-top: 35px !important;
}

.poppins {
    font-family: "Poppins";
    font-weight: bold;
}


/*===============================
            ヘッダー
================================*/

.header {
    background-color: #fff;
    z-index: 9999;
    position: relative;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.16);
}

.header__inner {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    position: relative;
}

.header__logo {
    width: 211px;
}

h1.header__logo {
    position: relative;
    top: 1.5px;
}

.header__logo img {
    vertical-align: initial;
}

.header__toggle {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 23px;
    position: absolute;
    right: 0;
    cursor: pointer;
    transition: all ease .3s;
}

.header__toggle span {
    display: inline-block;
    width: 33px;
    border-bottom: 1px solid #003E6E;
    background: #003E6E;
    position: relative;
    transition: all ease .3s;

}

.header__toggle span:nth-of-type(2) {
    top: 9px;
}

.header__toggle span:last-of-type {
    top: 19px;
}

.header__toggle.open span:first-of-type {
    display: none;
}

.header__toggle.open span:nth-of-type(2) {
    transform: rotate(45deg);
}

.header__toggle.open span:last-of-type {
    transform: rotate(-45deg);
    top: 9px;
}

.header__cont {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 80px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 9999;
}

.header__cont.open {
    display: block;
}

.header__cont-inner {
    max-width: 720px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 200px;
    padding-top: 40px;
}

.header__item {
    margin-top: 24px;
}

.header__item-ttl {
    text-align: center;
    color: #003E6E;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: bold;
    z-index: 9999;
}

.header__cont .border {
    width: 24px;
    margin: 10px auto 14px;
    display: table;
    height: 1px;
    background-color: #008BB6;
}

.header__item-ttl::first-line {
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.05em;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'Barlow Condensed', sans-serif;
}

.header__pickup li {
    border-bottom: 1px solid #2F4276;
}

.header__pickup li:first-of-type {
    border-top: 1px solid #2F4276;

}

.header__pickup li a {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__pickup li a:after {
    content: '';
    background-image: url(/male/ed-treatment/images/ico-right-arrow-bl.svg);
    width: 4px;
    height: 8px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}

.header__close {
    width: 100vw;
    background-color: #2F4276;
    text-align: center;
    color: #fff;
    position: fixed;
    position: -webkit-fixed;
    bottom: 0;
    line-height: 54px;
    height: 55px;
    cursor: pointer;
    z-index: 2;
}

.header__cont .ranking a {
    display: flex;
    gap: 14px;
}

.header__cont .ranking img {
    min-width: 84px;
    max-width: 84px;
    height: 62px;
    object-fit: cover;
}

.header__cont .ranking__item-info {
    position: relative;
    width: 100%;
}

.header__cont .ranking__item-info .ttl {
    line-height: 1.2;
}

.header__cont .ranking__item-info .cat {
    position: absolute;
    bottom: 0;
}

.header__cont .ranking__item {
    position: relative;
}

.header__cont .ranking__item+.ranking__item {
    margin-top: 16px;
}

.header__cont .ranking__item:before {
    background-size: cover;
    display: block;
    position: absolute;
    width: 30px;
    height: 34px;
    top: -12px;
    left: -6px;
    content: "";
    z-index: 2;
}

.header__cont .ranking__item:nth-child(1)::before {
    background-image: url("/male/ed-treatment/images/ranknum_01.svg");
}

.header__cont .ranking__item:nth-child(2)::before {
    background-image: url("/male/ed-treatment/images/ranknum_02.svg");
}

.header__cont .ranking__item:nth-child(3)::before {
    background-image: url("/male/ed-treatment/images/ranknum_03.svg");
}

.header__cont .ranking__item:nth-child(4)::before {
    background-image: url("/male/ed-treatment/images/ranknum_04.svg");
}

.header__cont .ranking__item:nth-child(5)::before {
    background-image: url("/male/ed-treatment/images/ranknum_05.svg");
}

.header__cont .ranking__item:nth-child(6)::before {
    background-image: url("/male/ed-treatment/images/ranknum_06.svg");
}

.header__cont .ranking__item:nth-child(7)::before {
    background-image: url("/male/ed-treatment/images/ranknum_07.svg");
}

.header__cont .ranking__item:nth-child(8)::before {
    background-image: url("/male/ed-treatment/images/ranknum_08.svg");
}

.header__cont .ranking__item:nth-child(9)::before {
    background-image: url("/male/ed-treatment/images/ranknum_09.svg");
}

.headheader__conter .ranking__item:nth:-child(10)::before {
    background-image: url("/male/ed-treatment/images/ranknum_10.svg");
}

.header__cont .header__adressttl {
    position: relative;
    padding-left: 42px;
    font-size: 15px;
}

.header__cont .header__adressttl img {
    max-width: 32px;
}

.header__cont .addresslist__ttl img {
    position: absolute;
    left: 0;
    top: -2px;
}

.header__cont .addresslist__ttl img.-wh {
    opacity: 0;
}

.header__cont .addresslist__ttl.open img.-bl {
    opacity: 0;
}

.header__cont .addresslist__ttl.open img.-wh {
    opacity: 1;
}

.header__cont .addresslist__ttl img.-bl {
    opacity: 1;
}

.header__cont .addresslist__info li {
    padding-left: 52px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.header__cont .addresslist__cont p {
    padding-right: 20px;
    line-height: 1.4;
    font-size: 13px;
}

.navmenu {
    width: 100vw;
    height: 100vh;
    background-color: rgba(110, 110, 110, 0.6);
    padding: 30px;
    display: none;
}

.navmenu_wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.navmenu a {
    color: #fff;
}

.menu_ttl {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 60px;
    margin-bottom: 20px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 300;
}

.menu_border {
    border: 2px solid #fff;
    width: 34px;
    margin: 30px auto 40px;
    display: table;
}

.navmenu.open {
    display: block;
    transition: all 0.6s;
}

.navmenu li {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.navmenu li:last-child {
    border-bottom: none;
}

#ScrollBtn {
    display: block;
    position: fixed;
    position: -webkit-fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    width: 44px;
    height: 44px;
    background-image: url(/male/ed-treatment/images/topbtn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 8px;
    background-color: #003E6E;
    opacity: 0;
    visibility: hidden;
}

#ScrollBtn.active {
    opacity: 1;
    visibility: visible;
}

.marker {
    background: linear-gradient(transparent 64%, #FFD400 0%);
    font-weight: bold;
}

.pink {
    color: #D94462;
}

.pink-b {
    color: #D94462;
    font-weight: bold;
}

.c_inner {
    max-width: 1024px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

a:hover {
    opacity: 0.6;
}

.c__en {
    font-family: 'Barlow Condensed', sans-serif;
}

/*===================================
        トップページ共通項目
=====================================*/
.TopPage {}

.TopPage h2:not(.catsearch__ttl)::first-line {
    font-size: 40px;
    letter-spacing: 0.05em;
    font-weight: bold;
    line-height: 1;
    font-family: 'Barlow Condensed', sans-serif;
}

.TopPage h2:not(.catsearch__ttl),
.Topttl:not(.catsearch__ttl) {
    text-align: center;
    color: #003E6E;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: bold;
}

.TopPage h3 {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.18rem;
    line-height: 1.5;
}

.TopPage .border,
.Topttl_border {
    width: 24px;
    margin: 10px auto 32px;
    display: table;
    height: 1px;
    background-color: #008BB6;
}

.TopPage {}

.TopContainer time {
    color: #003E6E;
    font-size: 1.2rem;
}

.TopBtn {
    max-width: 400px;
    border-radius: 23px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 100%;
    justify-content: center;
    background: transparent linear-gradient(264deg, #ec7d8a 0%, #ec9b7e 100%) 0% 0% no-repeat padding-box;
    line-height: 46px;
}

.TopBtn a {
    line-height: 27px;
    letter-spacing: 1.6px;
    color: #fff;
}

.more__btn {
    width: 176px;
    text-align: center;
    height: 54px;
    position: relative;
    border: 1px solid #003E6E;
    line-height: 53px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    z-index: 9998;
}

.more__btn:after {
    content: '';
    display: block;
    width: 11px;
    height: 5px;
    background-image: url(/male/ed-treatment/images/ico-arrow-down-blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.more__btn span {
    display: block;
    width: 100%;
    height: 100%;
    font-weight: bold;
    cursor: pointer;
}

/*===============================
        トップページ
================================*/
/*      トップの共通CSS
------------------------*/
.TopPage section+section {
    margin-top: 60px;
}

/*      スライダー
------------------------*/
.TopSlider-container.swiper-container {
    width: 100%;
    margin: 0 auto !important;
    height: auto;
    z-index: unset !important;
}

.TopSlider-container {
    padding-bottom: 54px !important;
}

.TopSlider {
    display: flex;
}

.TopSlider li {
    width: 36%;
    margin: 0 auto;
    box-shadow: 0px 3px 20px #aa8e7b40;
    cursor: pointer;
}

.TopSlider li img {
    width: 100%;
    /*     height: 500px; */
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background-color: #C2CFDA !important;
    border-radius: 0 !important;
}

.swiper-pagination-bullet-active {
    background-color: #003E6E !important;
    border: none;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 11px 3px !important;
}

/*   ABOUT
--------------------------------------*/
.TopAbout {
    /* margin-top: 60px; */
}

.TopAbout p {
    line-height: 1.7;
    text-align: center;
}

/*      ランキング
------------------------*/
.TopRanking {
    position: relative;
}

.TopRanking ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 24px;
}

.TopRanking.active .ranking__item:nth-child(n + 4) {
    display: block;
    transition: all ease .3s
}

.TopRanking .ranking__item:nth-child(n + 4) {
    display: none;
    transition: all ease .3s
}

.ranking__item {
    position: relative;
    width: 100%;
    opacity: 1;
    transition: all 0.4s ease 0s;
}

.ranking__item.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    position: absolute;
    z-index: -1;
}

.TopRanking li a {
    display: block;
}

.TopRanking li:last-child {
    margin-right: 0;
}

.TopRanking li::before {
    background-size: cover;
    display: block;
    position: absolute;
    width: 30px;
    height: 34px;
    top: -9px;
    left: -6px;
    content: "";
    z-index: 2;
}

.cat.epi {
    background-color: #F7DDEC;
    color: #DB499E;
}

.cat.mens {
    background-color: #DBEEF6;
    color: #003E6E;
}

.cat.epis {
    background-color: #f7f6d9;
    color: #eb9412;
}

.cat.self {
    color: #2EC6B3;
    background: #E2F5F3;
}

.cat.faga {
    color: #2EC6B3;
    background: #E2F5F3;
}

.cat.aga {
    background-color: #EAEAEA;
}

.cat.beauty {
    color: #A865B4;
    background: #EEDDF7;
}

.cat.pill {
    color: #03A1D7;
    background: #DBF3F6;
}

.cat.seibyo {
    color: #ff2645;
    background: #fff7fa;
}

.cat.ibiki {
    color: #6A56CF;
    background: #F7F6FC;
}

.cat.dryeye {
    color: #6A56CF;
    background: #F7F6FC;
}

.cat.humin {
    color: #6A56CF;
    background: #F7F6FC;
}

.cat.kinen {
    color: #6A56CF;
    background: #F7F6FC;
}

.cat.kafun {
    color: #6A56CF;
    background: #F7F6FC;
}

.TopRanking .ranking__item-info {
    position: relative;
}

.cat {
    font-size: 10px;
    height: 20px;
    line-height: 19px;
    text-align: center;
    display: inline-block;
    padding: 0 10px;
}

/* TOPページのみ  */

.TopPage .TopRanking figure {
    margin-top: 3px;
}

.TopPage .TopRanking time {
    font-size: 1.2rem;
    letter-spacing: 0.6px;
    line-height: 1.6;
}

.TopRanking li:nth-child(1)::before {
    background-image: url("/male/ed-treatment/images/ranknum_01.svg");
}

.TopRanking li:nth-child(2)::before {
    background-image: url("/male/ed-treatment/images/ranknum_02.svg");
}

.TopRanking li:nth-child(3)::before {
    background-image: url("/male/ed-treatment/images/ranknum_03.svg");
}

.TopRanking li:nth-child(4)::before {
    background-image: url("/male/ed-treatment/images/ranknum_04.svg");
}

.TopRanking li:nth-child(5)::before {
    background-image: url("/male/ed-treatment/images/ranknum_05.svg");
}

.TopRanking li:nth-child(6):before {
    background-image: url("/male/ed-treatment/images/ranknum_06.svg");
}

.TopRanking li:nth-child(7):before {
    background-image: url("/male/ed-treatment/images/ranknum_07.svg");
}

.TopRanking li:nth-child(8)::before {
    background-image: url("/male/ed-treatment/images/ranknum_08.svg");
}

.TopRanking li:nth-child(9)::before {
    background-image: url("/male/ed-treatment/images/ranknum_09.svg");
}

.TopRanking li:nth-child(10)::before {
    background-image: url("/male/ed-treatment/images/ranknum_10.svg");
}

.TopRanking time {
    color: #003E6E;
    position: absolute;
    bottom: 0;
}

.TopRanking img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
}

.TopRanking .ttl {
    margin-top: 15px;
    line-height: 1.6;
    letter-spacing: 0.8px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
}

/*   PICKUP
--------------------------------------*/
.TopPage .pickup__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.TopPage .pickup__item {
    width: 48%;
    border: 1px solid #003E6E;
    position: relative;
}

.TopPage .pickup__item img {
    width: 100%;
    /*     height: 302px; */
    object-fit: cover;
}

.TopPage .pickup__item a {
    display: block;
}

.TopPage .pickup__item:before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(/male/ed-treatment/images/ico-triangle.svg);
    width: 12px;
    height: 12px;
}

.TopPage .pickup__item .ttl {
    padding: 14px;
    font-weight: bold;
    background-color: #fff;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

/*      カテゴリ一覧
------------------------------*/
.TopCategory {
    position: relative;
    z-index: 2;
}

.TopCategory_inner {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 107px 0 50px;
    position: relative;
}

.TopCategory ul {
    display: grid;
    flex-wrap: wrap;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
}

.TopCategory ul li {}

.TopCategory ul li a {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    letter-spacing: 0.8px;
}

.TopCategory ul li a img {
    /* width: 36px; */
    /* margin-right: 13px; */
}

.TopCategory_btn {
    text-align: right;
}

/*      新着記事
------------------------------*/
.TopNews {
    /* margin-bottom: 120px; */
}

.TopNews_inner {
    margin: 0 auto;
    position: relative;
}

.TopNews ul {
    display: grid;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
}

.TopNews ul li {
    max-width: 322px;
    position: relative;
}

.TopNews ul li .new {
    position: relative;
}

.TopNews ul li .new:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-new.svg);
    width: 50px;
    height: 45px;
    position: absolute;
    top: -7px;
    left: -8px;
}

/* firefoxのみ */
@-moz-document url-prefix() {
    .TopNews ul li .new:before {
        top: 11px;
    }
}

.TopNews ul li figure img {
    display: block;
    /*     height: 198px; */
    width: 100%;
    object-fit: cover;
}

.TopNews .news__item a {
    display: block;
}

.TopNews .news__item-ttl {
    letter-spacing: 0.05em;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 10px;
    line-height: 1.5;
    text-align: left;
}

.TopNews .news__item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.TopNews .news__item time {
    font-size: 13px;

}

#TopNews_more {
    /* display: none; */
}

h2.catsearch__ttl {
    color: #fff !important;
    text-align: center;
    background-color: #008BB6;
    font-size: 16px !important;
    width: 335px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 8px;
    padding-bottom: 10px;
    letter-spacing: 0.02em;
    line-height: 1.8;
    position: relative;
}

h2.catsearch__ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #008BB6;
}

.catlist {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 32px;
}

.catlist_item {
    width: 48%;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #003E6E;
    padding-left: 6px;
    position: relative;
}

.catlist_item:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-arrow-down-blue.svg);
    width: 10px;
    height: 6px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.catlist_item a {
    width: 100%;
    display: block;
    padding-bottom: 16px;

}

/*===============================
            SNS
================================*/
.TopSns {
    background-image: url("/male/ed-treatment/images/sns-back.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 190px;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.TopFooter_sns .TopSns_inner {}

.TopSns_inner {
    margin: 0 auto;
    text-align: center;
    padding: 30px 0 40px;
}

.TopSns h2 {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.075em;
}

.TopSns .border {
    border: 1px solid #fff !important;
    width: 30px;
    margin: 14px auto 30px;
    display: table;
    height: 3px;
    background-color: #fff !important;
}

.TopSns ul {
    display: flex;
    justify-content: space-between;
    max-width: 160px;
    width: 100%;
    margin: 0 auto;
}

.TopSns ul li {
    text-align: center;
}

.TopSns ul li img {
    text-align: center;
    g width: 35px;
    height: 35px;
    border-radius: 100%;
}

/*===============================
            フッター
================================*/
.footer {
    margin-top: 120px;
    border-top: 1px solid #003E6E;
}

.footer_block {
    background-color: #fff;
    padding-top: 60px;
    color: #003E6E;
}

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

.footer_block .logo {
    width: 146px;
    margin: 0 auto 16px;
}

.footer_block ul {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto 24px;
    flex-wrap: wrap;
}

.footer_block ul li a {
    color: #003E6E;

    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 2.3;
}

.footer_block ul li span {
    padding-left: 15px;
    padding-right: 10px;
    color: #003E6E;
}

.copyright {
    text-align: center;
    font-size: 10px;
    padding-bottom: 3.8rem;
    letter-spacing: 0.5px;
}

/*===============================
        Archive.php
================================*/

/*===============================
        single.php
================================*/
.page-wrapper {}

.post_container {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding-top: 58px;
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
}

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

.post_single {
    max-width: 720px;
    width: 100%;
}

.post_single a {
    color: #1a0dab;
    text-decoration: underline;
}

.post_single p {
    /* margin-bottom: 20px;
    line-height: 2;
    font-weight: 300; */
}

.post_single time {
    color: #003E6E;
    font-size: 16px;
    position: relative;
    display: flex;
    gap: 2px;
    align-items: center;
    font-weight: 500;
}

.post_single time:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-modified.svg);
    width: 9px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: contain;
}

.post_single .view_count {
    font-weight: 500;
}

.post_single .eyecatch {
    margin-top: 24px;
    margin-bottom: 24px;
}

.post_single .eyecatch img {
    width: 100%;
}

.full_img {
    margin-top: 16px;
}

.full_img img {
    width: 100%;
}

.post_single .small10 {
    font-size: 10px;
}

.post_single .small12 {
    font-size: 12px;
}

.post_single .small14 {
    font-size: 14px;
}

.post_heading {
    display: flex;
    flex-direction: column;
}

.post_single-info {
    color: #003E6E;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 16px;
}

.related_post li figure {
    width: 20%;
}

.related_post li a {
    display: flex;
}

.indent-1 {
    padding-left: 0;
}

.indent-2 {
    padding-left: 10px;
}

.indent-3 {
    padding-left: 20px;
}

.indent-4 {
    padding-left: 30px;
}

.indent-5 {
    padding-left: 40px;
}

.indent-6 {
    padding-left: 50px;
}

/*===============================
        Page-expert.php
================================*/

.expert h2 {
    margin-top: 0;
}

.expert .wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap !important;
}

.expert .item {
    margin-bottom: 20px;
    border-radius: 9px;
    box-shadow: 5px 5px 15px #aa8e7b66;
    width: 21%;
    height: 190px;
    background-color: #fff;
    display: inline-block;
    padding: 25px 0 28px;
    position: relative;
}

.expert p {
    text-align: center;
    position: relative;
    margin-bottom: 0;
}

.expert .ttl {
    font-size: 1.2rem;
    color: #ec4371;
    letter-spacing: 0.6px;
    top: 22px;
    line-height: initial;
}

.expert .name {
    top: 21px;
    line-height: 19px;
    letter-spacing: 0.8px;
}

.expert figure {
    border-radius: 50%;
    width: 55%;
    height: 58%;
    margin: 0 auto;
}

.expert ul li figure img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.item.is-empty {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: none;
}

/* ****************** writer_box (この記事を監修した専門家) ***************** */
.writer_box {
    position: relative;
    margin-top: 24px;
}

.writer_box:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-profile-arrow.svg);
    width: 40px;
    height: 20px;
    background-size: cover;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -16px;
    z-index: 2;
}

.writer_box_title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    background: #fff;
    z-index: 1;
    line-height: 1.4;
    margin: 0 auto;
    color: #2a2a2a;
}

.writer_box_block {
    display: flex;
    margin: auto 0 0 0;
    align-items: center;
}

.writer_box_block .img {
    width: 54px;
    height: 54px;
    margin-right: 15px;
}

.writer_box_block .img img {
    border-radius: 100px;
}

.writer_box_content {
    width: 100%;
    padding: 20px 30px 30px 30px;
    border: 1px solid #003E6E;
    color: #003E6E;
    position: relative;
    bottom: 9px;
}

.writer_box_content p {
    font-size: 1.6rem;
    margin-top: 0 !important;
}

.writer_box_content .name {
    font-weight: bold;
}

/* .writer_box_arrow {
    text-align: center;
    color: #EC4371;
    width: 50px;
    background: #fff;
    margin: 0 auto;
    display: grid;
    z-index: 1;
    position: relative;
} */
.writer_box_block p {
    margin: 0;
}

.writer_box_block .copy {
    font-size: 12px;
    line-height: 1;
}

.writer_box_content .desc {
    margin-top: 15px;
    line-height: 2;
}

.writer_box_content a {
    text-decoration: underline;
}

/* list (箇条書きリスト) */
.check_list {
    margin-bottom: 30px;
}

.check_list li {
    position: relative;
    padding-left: 28px;
    font-weight: 500;
    line-height: 2;
}

.check_list li:before {
    content: "";
    background-image: url(/male/ed-treatment/images/check_icon.png);
    display: block;
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
    position: absolute;
    top: 2px;
    left: 0;
}

/* box (ボックス用テキスト) */
.box {
    background-color: #f2f3f4;
    padding: 25px 15px;
    margin: 20px 0;
}

/* 吹き出し */
.fukidashi_left {
    margin: 20px 0;
}

.fukidashi_left img {
    width: 55px;
    float: left;
    border-radius: 100px;
}

.fukidashi_left span {
    font-size: 10px;
    padding-left: 10px;
}

.fukidashi_left span:first-child {
    padding-left: 35px;
}

.fukidashi_left .txt {
    background: #f2f3f4;
    border: 2px solid #f2f3f4;
    border-radius: 5px;
    color: #707070;
    padding: 10px;
    position: relative;
    margin: -2px 0 20px 65px;
}

.fukidashi_left .txt:before {
    content: "";
    position: absolute;
    top: 1px;
    left: -8px;
    /* margin-top: -9px; */
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 9px 9px 9px 0;
    border-color: transparent #f2f3f4 transparent transparent;
    z-index: 1;
}

.fukidashi_left .txt:before {
    border-right: 8px solid #f2f3f4;
    left: -9px;
}

.fukidashi_left .copy {
    color: #ee3281;
}

/* ***** 口コミ ***** */
.kutikomi {
    display: flex;
    text-align: center;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.kutikomi .good:before,
.bad:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #fff;
    z-index: 2;
}

.kutikomi .good:after,
.bad:after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #ccc;
    z-index: 1;
}

.kutikomi .good,
.kutikomi .bad {
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 20px 30px;
    position: relative;
    width: 48%;
    text-align: left;
    position: relative;
    display: inline-block;
}

.kutikomi .good .ttl {
    border-bottom: 1px solid #fcd5db;
}

.kutikomi .bad .ttl {
    border-bottom: 1px solid #cae0f4;
}

.kutikomi .ttl {
    margin-bottom: 10px;
    padding-bottom: 5px;
    margin: 0 auto;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.kutikomi .ttl::before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: 18px 21px;
    width: 18px;
    height: 21px;
    position: absolute;
    top: 1px;
    left: 0;
}

.kutikomi .good .ttl::before {
    background-image: url(/male/ed-treatment/images/icon_review_good.png);
}

.kutikomi .bad .ttl::before {
    background-image: url(/male/ed-treatment/images/icon_review_bad.png);
}

.kutikomi ul {
    padding-top: 15px;
}

.kutikomi ul li {
    margin-bottom: 15px;
}

.kutikomi ul li:last-child {
    margin-bottom: 0;
}

.kutikomi li:before {
    content: "・";
}

.kutikomi .good li:before {
    color: #ee3281;
}

.kutikomi .bad li:before {
    color: #62c1c3;
}

.good_01 {
    background-image: url(/male/ed-treatment/images/good_pass_01.svg);
    right: 0;
    top: -31px;
    width: 110px;
    height: 100%;
}

.good_02 {
    background-image: url(/male/ed-treatment/images/good_pass_02.svg);
    left: -21px;
    top: 101px;
    width: 67px;
    height: 51px;
}

.good_03 {
    background-image: url(/male/ed-treatment/images/good_pass_03.svg);
    right: -9px;
    top: 50px;
    width: 35px;
    height: 31px;
}

.bad_01 {
    background-image: url(/male/ed-treatment/images/bad_pass_01.svg);
    right: -24px;
    top: 29px;
    width: 67px;
    height: 51px;
}

.bad_02 {
    background-image: url(/male/ed-treatment/images/bad_pass_02.svg);
    right: -9px;
    top: 75px;
    width: 35px;
    height: 31px;
}

.bad_03 {
    background-image: url(/male/ed-treatment/images/bad_pass_03.svg);
    left: -22px;
    bottom: -39px;
    width: 80px;
    height: 77px;
}

/******** check ********** */
.check_post {
    margin-top: 20px;
}

.check_post .ttl {
    width: 90px;
    font-size: 16px;
    margin: 0 auto;
    position: relative;
    top: 15px;
    background-color: #fff;
    text-align: center;
    color: #003E6E;
    font-family: 'Barlow', sans-serif;
    z-index: 1;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.check_post .inner {
    display: flex;
    border: 1px solid #ccc;
    padding: 22px;
    position: relative;
}

.check_post .content {
    padding-left: 20px;
    position: relative;
}

.check_post time {
    position: absolute;
    bottom: 0;
}

.check_post img {
    min-width: 84px;
    max-width: 84px;
    height: 84px;
}

.check_post .content_ttl {
    line-height: 1.5;
}

.check_post time {
    font-size: 12px;
}

.check_post a {
    display: block;
    width: 100%;
    height: 100%;
}

/* ****** orderlist ******* */
.order_list {
    background: #f3f6f7;
    padding: 23px 60px 23px 10px;
}

.order_list li {
    position: relative;
    margin-bottom: 12px;
}

.order_list .num {
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
    line-height: 23px;
}


/* ***** border_box*** */
.border_box {
    padding: 25px 30px;
    border: 1px solid #cccccc;
}

.border_box .ttl {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 20px;
    font-weight: 500;
}

/* ****** パン屑 ******* */
.breadcrumbs {
    display: flex;
}

.pankuz .bread_icon {
    margin: 0 8px;
}

.home__txt {
    opacity: 0;
    position: absolute;
}

.pankuz {
    height: 40px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 40px;
    background-color: #EEEEEE;
    color: #81A0B7;
    position: absolute;
    top: 0;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    left: 0;
}

.pankuz__inner {
    width: 720px;
    padding: 0 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    font-size: 12px;
}

.pankuz .home {
    /* opacity: 0; */
    position: relative;
    display: inline-block;
    width: 20px;
    top: 2px;
}

.pankuz .home:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-home.svg);
    width: 20px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}

/* 

.pankuz a:last-child{
    display: none;
} 
.pankuz span:nth-child(5) a {
    display: none;
}
.pankuz span:nth-child(6).bread_icon {
    display: none;
}
*/
/* ************ page-parts.php *************** */

/* *********
    BOX
************ */
.parts_box {
    max-width: 1024px;
    width: 100%;
    border: 1px solid #eee;
    margin: 0 auto 20px;
    border-top: 5px solid #f5a0b7;
    padding: 30px;
    position: relative;
}

.parts_box-upper,
.parts_box-lower {
    margin: 0 auto;
    max-width: 100%;
}

.parts_box-upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 0;
}

.thumb_swiper {
    width: 46%;
}

.parts_box-upper-block:last-of-type {
    position: relative;
    right: 8px;
    top: 15px;
    width: 300px;
    max-width: 100%;
}

.parts_box time {
    font-size: 13px;
}

.parts_box-ttl {
    font-size: 2rem;
    font-weight: 600;
}

.parts_box-price {
    font-size: 20px;
    font-weight: bold;
    margin: 0 5px;
}

.parts_box-gallery {
    margin: 40px auto 0;
}

.parts_box-thumbs {
    margin-bottom: 30px;
    border: 1px solid lightgrey;
}

.parts_box-thumbs .next-arrow {
    position: absolute !important;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin: auto;
    color: #000;
    background-color: hsla(0, 0%, 93%, 0.3);
    cursor: pointer;
    right: 0;
}

.parts_box-thumbs .prev-arrow {
    position: absolute !important;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin: auto;
    color: #000;
    background-color: hsla(0, 0%, 93%, 0.3);
    cursor: pointer;
    left: 0;
}

.parts_box .comment {
    margin-top: 0;
}

.parts_box-images {
    margin: 80px 0;
}

.parts_box-thumbs-nav li {
    opacity: 0.2;
}

.shopping {
    position: relative;
    margin-top: 30px;
}

.shopping_price {
    position: absolute;
    top: 31px;
    left: 50%;
    transform: translateX(-50%);
    height: 279px;
    flex-direction: column;
    justify-content: space-around;
    display: flex;
    font-size: 1.4rem;
}

.shopping_price li {
    text-align: center;
}

.shopping_ttl {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.shopping img {
    width: initial;
}

.shopping_lists li:first-child {
    width: 100%;
    margin-bottom: 10px;
}

.shopping_lists a {
    width: 25%;
    color: #fff;
    border-radius: 100px;
    text-align: center;
    padding: 6px;
    display: inline-block;
    margin: 0 auto;
    height: 45px;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.shopping_lists .price {
    font-size: 1.4rem;
    text-align: center;
}

.site a,
.freelink1 {
    background-color: #3a4570 !important;
}

.amazonlink {
    border: 3px solid #f29c38 !important;
    background: none !important;
}

.amazonlink a {
    color: #f29c38 !important;
}

.rakutenlink {
    border: 3px solid #b22418 !important;
    background: none !important;
}

.rakutenlink a {
    color: #b22418 !important;
}

.yahoolink {
    border: 3px solid #eb3235 !important;
    background: none !important;
}

.yahoolink a {
    color: #eb3235 !important;
}

.amazonlink {
    border-radius: 100px;
    text-align: center;
}

.amazonlink a {
    line-height: 50px;
}

.evalution {
    width: 100%;
    table-layout: fixed;
    margin: 20px 0;
}

.evaluation2 {
    margin-bottom: 20px;
    border-collapse: collapse;
}

.evaluation2 th {
    width: 35%;
    background-color: #f2f3f4;
    border: 1px solid #e0e0e0;
    padding: 5px;
    font-weight: 400;
}

.evaluation2 td {
    border: 1px solid #e0e0e0;
    text-align: center;
    border-left: 10px;
}

.evaluation3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-collapse: collapse;
}

.evaluation3 th {
    width: 100%;
    background-color: #f2f3f4;
    border: 1px solid #e0e0e0;
    padding: 5px 0;
    font-weight: 400;
}

.evaluation3 td {
    border: 1px solid #e0e0e0;
    text-align: center;
    border-left: 10px;
    padding: 0px 30px;
}

.evaluation3 tr:nth-child(odd) {
    float: left;
    width: 50%;
}

.evaluation3 tr:nth-child(even) {
    float: right;
    width: 50%;
}

.star .full {
    color: #f7c54c;
}

.star .empty {
    color: #b9b9b9;
}

.parts_box-table {
    margin-top: 30px;
    border-collapse: collapse;
    width: 100%;
}

.parts_box-table tr {
    border-top: 1px solid #ccc;
    width: 100%;
}

.parts_box-table th {
    font-weight: 500;
    text-align: left;
    padding: 15px 0;
    width: 315px;
}

.parts_box-table td {
    padding: 15px 0;
}

.product .parts_box-table tr:nth-child(3) td,
.product .parts_box-table tr:nth-child(3) th {
    padding-bottom: 0;
}

/* *********
    TABLE
************ */
.parts_table {
    width: 100%;
    max-width: 678px;
    margin: 0 auto 50px;
}

table {
    width: 100%;
}

/* 以下、スクロールバーを追加 */
.table-scroll::-webkit-scrollbar-track {
    background: #333;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: #999;
}

.table-scroll table {
    border-collapse: collapse;
    border-spacing: 0;
    border-top: #ccc solid 1px;
    border-left: #ccc solid 1px;
}

.table-scroll table th,
.table-scroll table td {
    padding: 20px 15px;
    border-right: #ccc solid 1px;
    border-bottom: #ccc solid 1px;
    font-size: 16px;
    width: 210px;
    white-space: normal;
}

.table-scroll table th {
    background-color: #eee;
    width: 134px;
    font-weight: normal;
    text-align: left;
}

.parts_table-lists {
    display: flex;
    flex-direction: column;
    position: relative;
}

.parts_table-lists {
    text-align: center;
}

.parts_table-lists li {
    margin: 0 auto;
}

.parts_table-lists li:first-child,
.parts_table-lists li:last-child {
    line-height: normal;
}

.parts_table-lists a {
    width: 170px;
    color: #fff;
    border-radius: 100px;
    text-align: center;
    padding: 6px;
    height: 48px;
    margin: 0 auto;
    font-size: 12px;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.parts_table-lists .price {
    font-size: 12px;
    text-align: center;
}

.table-scroll-img td {
    text-align: center;
}

.table-scroll-img td img {
    width: 60%;
}

.ec-link {
    padding-left: 5px;
}

.ec-link:before {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}

/* parts */
.gallery-top {
    height: auto;
    width: 100%;
}

.parts_box-gallery li {
    text-align: center;
}

.parts_box-gallery img {
    width: 296px;
    height: 296px;
}

.swiper-slide {
    text-align: center;
}

.gallery-thumbs {
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* template-parts */
/* .side_category {
    background: none;
}
.side_category ul li{
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 15px #AA8E7B66;
}   
.side_category ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7px 0 7px 22px;
    font-size: 14px;
}
.side_category ul li a img {
    width: 36px;
    margin-right: 4px;
} */

.topics {
    position: relative;
}

.topics li {
    margin-bottom: 24px;
}

.topics img {}

.topics:after {
    content: "";
    right: -4px;
    bottom: -12px;
    border-width: 28px 0 28px 28px;
    border-color: transparent transparent transparent #ec4371;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    margin: auto;
    border-style: solid;
    display: none;
}

.post_sns {
    max-width: 1024px;
    width: 100%;
    background-image: none;
}

.post_sns .TopSns_inner {
    max-width: 1024px;
    margin: 50px 0 auto 0;
    background: transparent linear-gradient(-255deg, #fedecb 0%, #ec7d8a 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 2px 15px #aa8e7b4d;
}

/* 関連記事 relate.php */
.relate_post-ttl {
    font-size: 1.8rem;
    text-align: center;
    color: #3a4570;
    line-height: 2;
    font-weight: 300;
}

.relate_post-ttl::first-line {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    letter-spacing: 5px;
    line-height: 1;
    font-weight: bold;
}

.relate_post .border {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #3a4570;
    margin: 15px auto 32px;
}

.relate_post li {
    margin-bottom: 20px;
}

.relate_post .item {
    display: flex;
}

.relate_post figure {
    width: 110px;
    height: 110px;
}

.relate_post figure img {
    height: 100%;
}

.relate_post .item_info {
    margin-left: 20px;
    position: relative;
    width: 100%;
    max-width: 560px;
}

.relate_post .item_info .ttl {
    font-size: 16px;
    color: #414042;
    font-weight: 400;
    position: relative;
    top: 5px;
    line-height: 1.5;
}

.relate_post .create_date {
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #8a898b;
}

.relate_post .view_count {
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* いいねボタン */
.iine {
    display: flex;
    align-items: center;
    float: right;
}

.iine_btn {
    width: 100px;
    background: #858dad;
    text-align: center;
    color: #fff;
    box-shadow: 1px 1px 1px #a5a5a5;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 5px;
    line-height: 28px;
    font-size: 12px;
}

.iine_count {
    width: 28px;
    text-align: center;
    background: #fff;
    border-radius: 6px;
    margin-right: 20px;
    color: #858dad;
    line-height: 28px;
    font-size: 12px;
}

/* 検索窓 */
form {
    text-align: center;
}

.search_area {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.search_area-in {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

input.search {
    height: 45px;
    border: 1px solid #003E6E;
    border-radius: 3px;
    padding-left: 15px;
    width: 100%;
    max-width: 680px;
    -webkit-appearance: none;
}

input.search::placeholder {
    color: #81A0B7;
}

input.search:focus {
    outline: 0;
}

input::placeholder {
    color: #bfbfbf;
    font-size: 14px !important;
}

.search_area button {
    width: 45px;
    height: 98%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    padding: 0;
    background: none;
    transform: translateY(0);
}

.search_area button img {
    border-radius: 0 3px 3px 0;
    height: 44px;
}

.search_area button:hover {
    opacity: 0.8;
}

.search_area button:active {
    opacity: 1;
}

.ranking_scroll {
    border-bottom: 1px solid #868686;
}

.ranking_scroll:nth-of-type(6) {
    border-bottom: none;
}

.ranking_scroll ul {
    display: flex;
    margin: 0 auto;
}

.ranking_scroll li {
    text-align: center;
    position: relative;
    width: 125px;
    height: 202px;
}

.ranking_scroll li+li {
    margin-left: 16px;
}

.ranking_scroll img {
    max-width: 100px;
    margin: 0 auto;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.ranking_scroll .tag {
    font-size: 1.2rem;
    color: #ec4371;
    line-height: 1;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.ranking_scroll .ttl {
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
    line-height: 1;
    position: absolute;
    bottom: 20px;
    line-height: 1.5;
    margin-bottom: 0;
}

.ranking_scroll .view_count {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.ranking_scroll .view_count::before {
    top: 5px;
}

.ranking_scroll li:before {
    content: "";
    background-size: cover;
    width: 32px;
    height: 32px;
    margin-top: 8px;
    display: block;
}

.ranking_scroll li:nth-child(1)::before {
    background-image: url("/male/ed-treatment/images/rank2_number-01.png");
}

.ranking_scroll li:nth-child(2)::before {
    background-image: url("/male/ed-treatment/images/rank2_number-02.png");
}

.ranking_scroll li:nth-child(3)::before {
    background-image: url("/male/ed-treatment/images/rank2_number-03.png");
}

.ranking_scroll li:nth-child(4)::before {
    background-image: url("/male/ed-treatment/images/rank2_number-04.png");
}

.ranking_scroll li:nth-child(5)::before {
    background-image: url("/male/ed-treatment/images/rank2_number-05.png");
}

.ranking_scroll-btn {
    margin-top: 30px;
    padding-bottom: 30px;
}

.category_single .pickupitems ul li::before {
    background-image: url(/male/ed-treatment/images/icon_hot.png);
}

.category_single a {
    color: inherit !important;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
}

/* Rinker  */
.yyi-rinker-contents,
.yyi-rinker-box {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.yyi-rinker-image,
.yyi-rinker-title,
.yyi-rinker-detail {
    display: none !important;
}

.yyi-rinker-info {
    width: 100% !important;
}

.yyi-rinker-links {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    margin: 0 !important;
}

.yyi-rinker-links li {
    border-radius: 100px !important;
    height: 50px !important;
    text-align: center !important;
    width: 100% !important;
    box-shadow: none !important;
}

.yyi-rinker-links li {
    display: table !important;
}

.yyi-rinker-links li a {
    display: table-cell !important;
    vertical-align: middle !important;
    font-weight: 400 !important;
}

.yyi-rinker-links li a .fa-angle-right {
    padding-left: 8px;
    position: relative;
    top: 1px;
}

/* テーブル */
.parts_table-lists .yyi-rinker-links li {
    max-width: 170px !important;
    font-size: 1.2rem !important;
}

.parts_table-lists .yyi-rinker-links li a {
    line-height: initial !important;
    font-size: 12px !important;
}

.parts_table-lists .yyi-rinker-links li a .fa-angle-right {
    right: 20px;
}

.parts_table-lists .yyi-rinker-links {
    min-width: initial;
}

/* product */
.product_box {
    padding: 20px;
    position: relative;
}

.product_price {
    margin: 0 !important;
    font-size: 13px;
}

.product_price-number {
    font-size: 2rem;
    font-weight: 500;
}

.product_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 13px;
}

.product_swiper img {
    /* border: 1px solid #ededed; */
    display: block;
}

.product_swiper img {}

.shopping_shokai {
    color: #ec4371;
    font-size: 1.4rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.product_info-02 {
    display: block;
    position: absolute;
    right: 110px;
    line-height: initial;
}

.product_ttl-02 {
    padding-bottom: 20px;
}

/* comment */
.comment {
    position: relative;
    margin-top: 42px;
}

.comment_ttl {
    font-family: "Poppins", sans-serif;
    width: 150px;
    text-align: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: #3a4570;
    font-weight: bold;
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    letter-spacing: 3.6px;
}

.comment_box {
    background: #f2f3f4;
    border-radius: 9px;
    padding: 30px;
}

.comment_box-upper {
    display: flex;
    align-items: center;
}

.comment_box-info {
    line-height: initial;
}

.commnet_box-img {
    width: 57px;
    margin-right: 17px;
}

.comment_box-info .copy {
    color: #ec4371;
    font-size: 1.2rem;
}

.comment_box p {
    margin: 0;
}

/* review */
.review {
    margin-top: 60px;
}

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

.review_rate {
    margin-left: 26px;
}

.review_info {
    display: flex;
    font-size: 1.2rem !important;
    color: #bfbfbf;
}

.review_info p {
    margin: 0;
    padding: 0 5px;
}

.review_content {
    background-color: #f2f3f4;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.review_content-ttl {
    font-weight: bold;
    font-size: 2rem;
}

.review_bottom {
    margin-top: 20px;
}

.review_bottom li {
    padding-top: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f3f4;
}

.review_bottom li .star_box {
    text-align: initial;
    font-weight: normal;
}

.dropdown {
    padding-bottom: 25px;
}

.btn-more {
    width: 200px;
    text-align: center;
    margin: 0 auto;
    color: #ec4371;
    cursor: pointer;
}

.btn-more::before {
    content: "口コミの情報を見る";
    margin-right: 10px;
}

.btn-more::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-size: 132%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 5px;
    position: relative;
    top: 2px;
    font-weight: 900;
}

.btn-more.open::before {
    content: "口コミの情報を閉じる";
    margin-right: 10px;
}

.btn-more.open::after {
    content: "\f106";
    font-family: "Font Awesome 5 Free";
}

/* ** author.php** */
.profile .writer_box_content {
    border: none;
}

.profile_box {
    border: none;
}

.profile_info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile_box .desc {
    line-height: 2;
}

.profile_box .img img {
    width: 80px;
    height: 80px;
    margin-right: 25px;
    border-radius: 100%;
}

.profile_info .txt {
    line-height: initial;
}

.profile_info .copy {
    color: #ec4371;
    font-size: 1.2rem;
}

.profile_box .desc {
    background-color: #f2f3f4;
    padding: 30px 25px;
}

.profile_links {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.profile_links a {
    display: flex;
    align-items: center;
    margin-top: 30px;
    width: 30%;
}

.cell.is-empty {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.profile_links img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.profile_posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.profile_posts li {
    width: 48%;
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
}

.profile_posts .ttl {
    line-height: 1.5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 20px 0 17px;
}

.profile_posts time {
    color: #ec4371;
}

.profile_btn {
    margin-bottom: 40px;
    display: inline-block;
}

.related_article_area {
    padding-bottom: 50px;
}

/* category.php */
.category h1 {
    /* font-size: 2.7rem;
    margin: 30px 0; */
}

.category .cat__img {
    margin-top: 21px;
}

.category .cat__img img {
    width: 100%;
}

.category_item-ttl {
    font-size: 2rem;
    padding-left: px;
    font-weight: 500;
    margin: 30px 0;
    letter-spacing: 1.3px;
    position: relative;
}

.category h2::first-line {
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.05em;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'Barlow Condensed', sans-serif;
}

.category h2 {
    text-align: center;
    color: #003E6E;
    border: none !important;
    font-size: 13px !important;
    padding: 0 !important;
}

.bloglist {
    margin-top: 22px;
}

.blog__item+.blog__item {
    margin-top: 16px;
}

.blog__item a {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: #003E6E;
}

.blog__img {
    min-width: 84px;
    max-width: 84px;
    height: 62px;
}

.blog__img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.blog__item-ttl {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.blog__info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.blog__item-cont {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.pager {
    margin-top: 47px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-numbers a {
    width: 23px;
    height: 23px;
    border: 1px solid #003E6E;
    text-align: center;
    color: #003E6E;
    line-height: 20px;
    font-size: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    display: block;
}

.page-numbers li span.current {
    color: #fff;
    background-color: #003E6E;
    height: 100%;
    width: 23px;
    height: 23px;
}

.page-numbers li+li {
    margin-left: 10px;
}

.page-numbers.prev {
    background-image: url(/male/ed-treatment/images/ico-arrow-circle-bl.svg);
    width: 17px;
    height: 17px;
    transform: rotate(180deg);
    border: none;
}

.page-numbers.next {
    background-image: url(/male/ed-treatment/images/ico-arrow-circle-bl.svg);
    width: 17px;
    height: 17px;
    border: none;

}

.category .border {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #008BB6;
    margin: 14px auto 12px;
}

.blog__item-time {
    font-size: 10px;
}

.child_list {
    background-color: #f4f6f7;
    padding: 30px 30px 15px;
    border-radius: 8px;
    position: relative;
    margin-top: 47px;
}

.child_list .ttl {
    position: absolute;
    top: -12px;
    font-size: 25px;
    color: #3a4570;
    opacity: 0.5;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 5px;
    font-weight: 600;
}

.child_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.child_list ul li {
    background-color: #fff;
    box-shadow: 5px 5px 10px #aa8e7b33;
    text-align: center;
    width: 146px;
    height: 88px;
    border-radius: 9px;
    margin-bottom: 15px;
    padding: 17px 0;
}

.child_list ul li img {
    width: 30px;
    margin: 0 auto;
}

.child_list ul li p {
    margin-bottom: 0;
    font-size: 15px;
}

.child_list ul li.is-empty {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* ********************************
検索結果ページ
***************************** */
#page-result {
    margin-top: 40px;
}

#page-result .post_container-in {
    margin-bottom: 40px;
}

/* ********************************
2021/03/04 新規パーツ
***************************** */
/* color変数 */

/*________________________________

ランキング用見出し
_________________________________
*/

/*________________________________

ランキング用見出し
_________________________________
*/
.rank {}

/*________________________________

テーブル
_________________________________
*/
table.tablearea {
    border-collapse: collapse;
    margin-top: 16px;
    text-align: left;
    table-layout: fixed;
}

.table__scroll {
    overflow-x: scroll;
}

.table__scroll table.tablearea {
    table-layout: initial;
}

.table__scroll table th,
.table__scroll table td {
    max-width: initial;
    min-width: 140px;
}

table.tablearea th,
table.tablearea td {
    padding: 16px;
    font-size: 14px;
    /* max-width: 50%; */
}

table.tablearea th:not(.heading:first-of-type) {
    width: 30%;
    min-width: 100px;
}

table.tablearea th:not(.heading) {
    background-color: #DBEEF6;
    border: 1px solid #003E6E;
    text-align: left;
    line-height: 1.5;
    max-width: 150px;
    min-width: 100px;
    font-weight: initial !important;
    /* border-right: none; */
}

table.tablearea td {
    font-weight: 300;
    line-height: 1.5;
    border: 1px solid #003E6E;

}

table.tablearea td+td {
    border-left: none;
}

table.tablearea th+td {
    border-left: none;
}

table.tablearea th.heading {
    background-color: #003E6E;
    font-weight: 300;
    color: #fff;
}

table.tablearea th.heading:first-of-type {
    max-width: 100px;
    /* border-right: 1px solid #fff; */
    border-left: 1px solid #003E6E;
    width: 30%;
}

table.tablearea th.heading:last-of-type {
    border-right: 1px solid #003E6E;
    /* max-width: 100px; */
}

table.tablearea th.heading+.heading {
    border-left: 1px solid #fff;
}

table.tablearea[data-type="center"] th,
table.tablearea[data-type="center"] td {
    text-align: center;
}

table a {
    color: #1a0dab;
    text-decoration: underline;
}

table.tablearea th.heading .caution {
    color: #fff !important;

}

/*________________________________

小見出し一覧
_________________________________
*/

.subhead[data-type="check"]::before {
    background-image: url(/male/ed-treatment/images/epi/check_mark.svg);
}

.subhead[data-type="info"]::before {
    background-image: url(/male/ed-treatment/images/epi/info_mark.svg);
}

.subhead[data-type="bookmark"]::before {
    background-image: url(/male/ed-treatment/images/epi/bm_mark.svg);
    width: 15px;
    height: 20px;
    background-size: 15px;
    margin-right: 17px;
}

.subhead[data-type="caution"]::before {
    background-image: url(/male/ed-treatment/images/caution_mark.svg);
}

/*________________________________

下つき文字
_________________________________
*/
.captionbottom {
    font-size: 12px;
}

/*________________________________

注釈
_________________________________
*/
.caption {
    font-size: 12px;
    color: #707070;
    line-height: 1.6;
    font-weight: 300;
    margin-top: 16px;
}

.caution {
    font-size: 10px;
    margin-top: 4px;
    display: inline-block;
    color: #487395;
    line-height: 1.2;
}

p .caution {
    margin-top: 0;
}

table.tablearea+.caution,
.simplebox+.caution {
    margin-top: 10px;
}

table.tablearea>.caution,
.simplebox>.caution {
    display: inline-block;
}

.caution+p {
    margin-top: 8px !important;
}

/*________________________________

引用ボックス
_________________________________
*/
.quote {
    border-left: 2px solid #003E6E;
    padding-left: 29px;
    margin-left: 0;
    position: relative;
    padding-top: 30px;
    margin-top: 24px;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.quote:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-quote.svg);
    width: 40px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
}

.quotefrom {
    color: #003E6E;
    font-size: 10px;
    line-height: 1.5 !important;
    display: block;
    text-align: right;
}

.quotefrom a {
    font-size: 10px;
    color: #1a0dab;
}

.quoteimg {
    padding-left: 22px;
    padding-top: 50px;
}

.quoteimg img {
    margin-bottom: 16px;
}

.quote>.quotefrom {
    position: relative;
    left: 20px;
}

/*________________________________

The LINK
_________________________________
*/
a[data-type="normal"] {
    /* font-size: 14px; */
    text-decoration: underline;
    color: #1a0dab;
}

/*________________________________

シンプルボックス
_________________________________
*/

.simplebox {
    border: 1px solid #003E6E;
    padding: 24px;
    margin-top: 24px;
}

#page-lower .simplebox p {
    margin-bottom: 0;
    margin-top: 0;
}

.simplebox__ttl {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.simplebox .border {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #008BB6;
    margin: 14px auto 12px;
}

.check__item {
    position: relative;
    padding-left: 22px;
}

.check__item:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-check.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 3px;
}

.check__item+.check__item {
    margin-top: 16px;
}

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

.simplebox.bg_grey {
    background-color: #f4f6f7;
}

.simplebox.bg_pink {
    background-color: #fef7f9;
}

/* 関連記事 */
.relatebox {
    margin-top: 100px;
}

.relatebox .ttl::first-line {
    font-family: "Poppins";
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.relatebox .ttl {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #003E6E;
    margin-bottom: 10px;
    line-height: 1.4;
}

.relatebox .border {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #003E6E;
    margin: 0 auto 30px;
    text-align: center;
}

.related_article_box {
    cursor: pointer;
    position: relative;
    display: flex;
    margin-bottom: 16px;
    gap: 14px;
}

.related_article_box:hover {
    opacity: 0.6;
}

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

.relatepost_img {
    max-width: 84px;
    height: 62px;
    min-width: 84px;
}

.relatepost_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.relatepost_txt {
    position: relative;
    max-width: 560px;
    width: 100%;
}

.related_article_box .title {
    font-weight: 300;
    line-height: 1.5;
}

.related_article_box .create_date {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: #8a898b;
    display: flex;
    align-items: center;
}

.related_article_box .create_date::before {
    top: unset;
}

.related_article_box .view_count {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
}

.related_article_box .view_count::before {
    top: 2px;
}

/*________________________________

ナンバリングリスト
_________________________________
*/
.numberlist {
    position: relative;
    padding-left: 25px;
}

.numberlist li {
    line-height: 1.6;
    margin-bottom: 24px;
    counter-increment: number 1;
}

.numberlist li::before {
    font-size: 18px;
    content: "";
    display: block;
    color: #ea8994;
    content: counter(number) ".";
    font-weight: bold;
    position: absolute;
    font-family: "Poppins", sans-serif;
    text-align: center;
    left: 0;
    font-weight: 600;
}

/* 投稿関連記事 */
.recommend__area {
    margin-top: 56px;
}

.recommend__ttl::first-line {
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.05em;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'Barlow Condensed', sans-serif;
}

.recommend__ttl {
    text-align: center;
    color: #003E6E;
}

.recommend__area .border {
    width: 24px;
    margin: 17px auto 24px;
    display: table;
    height: 1px;
    background-color: #008BB6;
}

.RecommendArticleListe-image {
    width: 84px;
    height: 62px;
    object-fit: cover;
    object-position: center;
    min-width: 84px;
}

.RecommendArticleListe-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.RecommendArticleList-body {
    width: 100%;
    position: relative;
}

.RecommendArticleList-item+.RecommendArticleList-item {
    margin-top: 20px;
}

.RecommendArticleList-item a {
    display: flex;
    gap: 14px;
    color: #003E6E;
    text-decoration: none;
}

.RecommendArticleList-viewDate {
    font-size: 10px;

}

.RecommendArticleList-title {
    font-size: 13px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    overflow: hidden;
    line-height: 1.3;
}

.recommend__area-info {
    display: flex;
    align-items: center;
    justify-content: right;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* パーツ置き場 */
#page-lower textarea {
    width: 100%;
    height: 200px;
}

#page-lower h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    font-feature-settings: 'palt';
    margin-bottom: 16px;
}

#page-lower h2 {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 3px solid #008BB6;
    border-bottom: 3px solid #008BB6;
    font-size: 22px;
    margin-top: 40px;
    line-height: 1.5;
}

#page-lower h2+a {
    display: block;
}

#page-lower h3 {
    font-size: 18px;
    border-bottom: 2px solid #008BB6;
    border-left: 4px solid #008BB6;
    padding-left: 12px;
    margin-top: 32px;
    line-height: 1.5;
    padding-top: 8px;
    padding-bottom: 10px;
}

#page-lower p {
    margin-top: 16px;
    line-height: 1.8;
    letter-spacing: 0.025em;
}

#page-lower .orderlist {
    position: relative;
    padding-left: 0;
    margin: 1rem 0;
}

#page-lower .orderlist li {
    counter-increment: number 1;
    padding-left: 20px;
    position: relative;
}

#page-lower .orderlist li+li {
    margin-top: 20px;
}

#page-lower .orderlist li:before {
    font-size: 14px;
    display: block;
    color: var(--jimoty-color);
    content: counter(number) ".";
    font-weight: bold;
    position: absolute;
    font-family: var(--font-family2);
    text-align: center;
    left: 0;
    font-weight: 600;
    top: 1px;
}

.n_check {
    position: relative;
    padding-left: 0;
    /* margin: 1rem 0; */
}

.n_check li {
    padding-left: 20px;
    position: relative;
}

.n_check li+li {
    margin-top: 20px;
}

.n_check li:not([class]):before {
    content: '●';
    color: #1a264b;
    position: absolute;
    left: 0;
}

.fukidashi {
    text-align: center;
    display: block;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.fukidashi:before,
.fukidashi:after {
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-image: url(/male/ed-treatment/images/line-fukidashi.svg);
    width: 10px;
    height: 20px;
}

.fukidashi:before {
    transform: rotateY(180deg);
}

.fukidashi+.c__btn {
    margin-top: 0;
    text-align: center;
}

.single-index {
    border: 1px solid #eeeeee;
    padding: 12px;
    font-size: 14px;
    margin-top: 24px;
    color: #487395;
}

.single-index.active {
    border: 1px solid #81A0B7;
    color: #003E6E;
}

.single-index-title {
    text-align: center;
    font-weight: bold;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1 !important;
    color: #487395;
    position: relative;
    cursor: pointer;
}

.single-index.active .single-index-title {
    color: #003E6E;
}

.single-index-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('/male/ed-treatment/images/ico_plus.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 2px;
    right: 16px;
}

.single-index-title.open::after {
    background-image: url('/male/ed-treatment/images/ico_minus.svg');
}

.single-indexList {
    padding-left: 0;
}

.single-index .border {
    width: 24px;
    margin: 10px auto 16px;
    display: table;
    height: 1px;
    background-color: #008BB6;
}

.single-indexList {
    /* 	padding-bottom: 20px; */
}

.single-indexList-item {
    line-height: 1.5;
}

.single-indexList-item+.single-indexList-item {
    margin-top: 16px;
}

.single-indexList-item span {
    font-weight: 500;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    padding-right: 8px;
}

.single-index.active .single-indexList-item span {
    color: #487395;
}

.single-indexList-item a {
    color: #487395 !important;
    text-decoration: none !important;
}

.single-indexList-item.index-h3 {
    padding-left: 30px;
}

/*
目次　PR文追加 2023/09/11

.single-index{
	position: relative;
	margin-top: 80px;
}
.single-index::before{
	content:"※この記事にはプロモーションが含まれています。";
	position:absolute;
	left:0;
	top:-50px;
	display:block;
	color:#003E6E;
	text-align:left;
	font-size:16px;
}

.post_single .cat_beauty .single-index::before{
	color:#46322a;	
}
*/

@media screen and (max-width: 768px) {
    .single-index::before {
        font-size: 13px;
    }
}

.b {
    font-weight: bold;
}

.caption {
    font-size: 10px;
    margin-top: 16px;
}

.right_link {
    text-align: right;
    margin-top: 12px;
    position: relative;
    color: #1A0DAB;
    display: table;
    margin-left: auto;
    padding-left: 20px;
}

.right_link:hover {
    text-decoration: underline;
}

.right_link:visited {
    color: #660099;
}

.right_link[data-type="icon"] a {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    align-items: center;
}

.right_link[data-type="icon"] a:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-link-arrow.svg);
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 8px;

}

/* ランキングパーツ */
.ranking {
    margin-top: 32px;
}

.ranking .full_img {
    margin-top: 12px;
}

.ranking a {
    display: block;
}

.ranking[data-type="banner"] {
    padding-top: 24px;
    border-top: solid #008BB6 2px;
    position: relative;
}

.ranking[data-type="banner"]:after {
    content: '';
    width: 50%;
    height: 2px;
    background-color: #DB499E;
    display: block;
    position: absolute;
    right: 0;
    top: -2px;
}

.ranking[data-type="banner"] .ranking__catch {
    color: #008BB6;
    font-size: 14px;
    margin-top: 0 !important;
}

.ranking[data-type="banner"] .ranking__ttl {
    /* color: #003E6E; */
    font-weight: bold;
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.ranking[data-type="banner"] .ranking__ttl a {
    color: #1a0dab;
    text-decoration: underline;
}

.ranking__ico .ranking__ico-heading {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.ranking__ico p.ranking__catch {
    line-height: 1.25 !important;
}

.ranking__ico .ranking__ttl {
    line-height: 1.25;
}

.ranking__ico .ranking__ico-heading::before {
    content: '';
    display: block;
    min-width: 35px;
    max-width: 35px;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    bottom: 3px;
    background-image: url(/male/ed-treatment/images/rankex.svg);
}

.ranking__ico.rank01 .ranking__ico-heading::before {
    background-image: url(/male/ed-treatment/images/rank01.svg);
}

.ranking__ico.rank02 .ranking__ico-heading::before {
    background-image: url(/male/ed-treatment/images/rank02.svg);
}

.ranking__ico.rank03 .ranking__ico-heading::before {
    background-image: url(/male/ed-treatment/images/rank03.svg);
}

.ranking__ico.rankex .ranknum {
    position: absolute;
    left: 10px;
    top: 4px;
    color: #fff;
    font-size: 18px;
    font-family: 'Barlow';
    font-weight: bold;
    width: 15px;
    display: block;
    text-align: center;
}

.ranking__ico.ranking[data-type="banner"] .ranking__ttl {
    margin-bottom: 0;
}

.ranking__ico .ranking__ico-heading+a {
    margin-top: 8px;
}

#page-lower .ranking h3 {
    border: none !important;
    margin: 0;
    font-size: 18px;
    padding: 0;
}

.subhead {
    margin-top: 30px;
    position: relative;
    font-weight: bold;
}

.subhead[data-type="normal"] {
    padding-left: 8px;
    border-left: 4px solid #008BB6;
    line-height: 1.5;
}

.subhead[data-type="title"] {
    position: relative;
    padding-left: 20px;
}

.subhead[data-type="title"]:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background-color: #BBE2F1;
    position: absolute;
    left: 0;
    top: 9px;
}

.subhead[data-type="title"]+table.tablearea {
    margin-top: 8px;
}

.subhead[data-type="title"]+.quote {
    margin-top: 8px;
}

.subhead[data-type="title"]+.simplebox {
    margin-top: 8px;
}

.subhead[data-type="title"]+.addresslist,
.subhead[data-type="title"]+.table__scroll table {
    margin-top: 8px;
}

#page-lower .subhead[data-type="title"]+p {
    margin-top: 8px;
}

.campaign__ttl {
    text-align: center;
    background-color: #D94462;
    color: #fff;
    text-align: center;
    padding: 7px 4px;
    font-weight: bold;
    position: relative;
    margin-top: 16px;
    font-size: 15px;
}

.campaign__ttl+p {}

.campaign__ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #D94462;
}

.campaign__ttl+p,
.campaign__ttl+div {
    text-align: center;
    margin-top: 14px !important;
}

.simplebox[data-type="bg"] {
    background-color: #EEEEEE;
    border: none;
}

.simplebox[data-type="bg"] .simplebox__ttl {
    margin-bottom: 20px;
    font-size: 13px;
}

.simplebox[data-type="bg"]>* {
    font-size: 12px;
}

.matome {
    border: 1px solid #003E6E;
    padding: 24px;
    margin-top: 32px;
}

.mataome .border {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #008BB6;
    margin: 14px auto 12px;
}

.matome__ttl {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 16px;
    border-bottom: 2px solid #008BB6;
    position: relative;
}

.matome__ttl:after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    right: 0;
    bottom: -2px;
    position: absolute;
    background-color: #DB499E;
}

.matome__ttl+p,
.matome__ttl+div {
    margin-top: 16px;
    /* font-size: 13px; */
}

.map {
    margin-top: 24px;
}

.map__ttl {
    text-align: center;
    color: #fff;
    background-color: #008BB6;
    font-weight: bold;
    padding: 10px;
    line-height: 1.7;
    position: relative;
}

.map__ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #008BB6;
}

.map__cont {
    margin-top: 20px;
}

.map__cont iframe {
    width: 100%;
}

.addresslist {
    margin-top: 24px;
    border-top: 1px solid #003E6E;
}

.addresslist__ttl {
    font-size: 18px;
    font-weight: bold;
    padding-left: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #003E6E;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 14px;
}

.addresslist__ttl:after {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-down-arrow-bl.svg);
    width: 10px;
    height: 6px;
    background-repeat: no-repeat;
    background-size: contain;
}

.addresslist__ttl.open {
    background-color: #003E6E;
    color: #fff;
}

.addresslist__ttl.open:after {
    background-image: url(/male/ed-treatment/images/ico-cross-wh.svg);
    width: 16px;
    height: 24px;
}

.addresslist__info a {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.addresslist__info a:after {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-right-arrow-bl.svg);
    min-width: 6px;
    max-width: 6px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.addresslist__info li {
    border-bottom: 1px solid #003E6E;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 16px;
}

.addresslist__cont {
    display: flex;
    align-items: flex-start;
    padding-top: 14px;
    padding-left: 14px;
    gap: 16px;
    border-bottom: 1px solid #003E6E;
    padding-bottom: 18px;
    padding-right: 14px;
}

.addresslist__cont-ttl {
    font-size: 16px;
    font-weight: bold;
    max-width: 80px;
    min-width: 80px;
    text-align: left;
    line-height: 1.2;
    position: relative;
    top: 4px;
}

.addresslist__cont-txt {
    width: 100%;
    word-break: break-all;
}

.faq {
    margin-top: 20px;
}

.faq p {
    margin-top: 0 !important;
    line-height: 1.5 !important;
    word-break: break-all !important;
}

.faqQ {
    background-color: #DBEEF6;
    padding: 16px 22px 16px 16px;
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
}

.faqQ:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-q.svg);
    min-width: 38px;
    max-width: 38px;
    height: 38px;
}

.faqA {
    padding: 20px 22px 16px 16px;
    position: relative;
    display: flex;
    gap: 12px;

}

.faqA:before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ico-a.svg);
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    top: 4px;
    position: relative;
    margin-right: 12px;
}

.numberinglist {
    margin-top: 24px;
}

.numberinglist .num {
    display: inline-block;
    max-width: 32px;
    height: 32px;
    min-width: 32px;
    color: #fff;
    text-align: center;
    background-color: #003E6E;
    line-height: 31px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 100px;
    margin-right: 8px;
}

.numberinglist__ttl {
    font-weight: bold;
}

p.numberlintlist__txt {
    margin-top: 12px !important;
}

.numberinglist li+li {
    margin-top: 16px;
}

.parts__list {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: 24px;
    gap: 16px 24px;
}

.parts__list li img {
    width: 100%;
}

.parts__list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
}

.plan__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.plan__list img {
    width: 100%;
}

.parts__list span {
    text-align: left;
}

.plan__item div {
    line-height: 1.5;
    margin-top: 10px;
}

.txt_img_box {
    margin-top: 20px;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.txt_img__flex {
    margin-top: 20px;
}

.left_img {
    float: left;
    margin-right: 10px;
    max-width: 48%;
}

.txt_img__flex {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.txt_img__flex p:first-of-type {
    margin-top: 0 !important;
}

/**/

.txt_img__keep {
    margin-top: 20px;
}

.txt_img__keep {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.txt_img__keep p:first-of-type {
    margin-top: 0 !important;
}

/* 404 */
.notfound {
    text-align: center;
    padding-top: 132px;
}

#page-lower.notfound h2 {
    border-top: none;
    border-bottom: none;
    font-size: 25px;
    margin-top: 0;
}

.notfound__catch {
    margin-top: 24px;
}

.return__btn {
    text-decoration: underline;
    color: #1A0DAB;
    font-weight: bold;
    margin-top: 96px;
    display: inline-block;
}

.TopRanking.-notfound {
    margin-top: 114px;
}

.TopRanking.-notfound h2::first-line {
    font-size: 40px;
    letter-spacing: 0.1em;
    font-weight: bold;
    line-height: 1;
    font-family: 'Barlow Condensed', sans-serif;
}

#page-lower .TopRanking.-notfound h2 {
    text-align: center;
    color: #003E6E;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: bold;
    padding: 0;
}

#page-lower .TopRanking.-notfound .border {
    width: 24px;
    margin: 10px auto 14px;
    display: table;
    height: 1px;
    background-color: #008BB6;
}

.TopRanking.-notfound ul {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.TopRanking.-notfound .ranking__item-info {
    text-align: left;
}

.TopRanking.-notfound li::before {
    top: -13px;

}

/* お問い合わせ */
.form {}

.form__item {
    text-align: left;
    margin-top: 16px;
}

.form__item .must {
    font-size: 12px;
    color: #DA4462;
    border: 1px solid #DA4462;
    display: inline-block;
    text-align: center;
    margin-left: 8px;
    padding: 0 4px;
    height: 20px;
    line-height: 18px;
}

.form__item input {
    width: 100%;
    height: 32px;
    padding: 2px;
    margin-top: 2px;
}

.form__item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
}

.agree__item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.agree__item .error {
    margin-top: 40px;
    position: absolute;
}

textarea {
    padding: 4px;
    margin-top: 2px;
}

.btn__send {
    width: 300px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #003E6E;
    text-align: center;
    display: block;
    height: 56px;
    line-height: 54px;
    cursor: pointer;
    margin-top: 42px;
}

input[type="submit"] {
    background: transparent;
    border: none;
    color: #003E6E;
    width: 100%;
    height: 100%;
}

.contact__done {
    margin-top: 80px;
    text-align: center;
}

/* サイトマップ */
#sitemap ul li+li {
    margin-top: 8px;
}

#sitemap ul li a {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

#sitemap ul li a:before {
    content: '';
    background-image: url(/male/ed-treatment/images/ico-arrow-right-gr.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 6px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 14px;
    position: absolute;
    top: 9px;
    left: 0;
}

#sitemap #sitemap .sitemap__cat-name {}

#sitemap a.sitemap__cat-name {
    margin-top: 24px;
    display: block;
    margin-bottom: 8px;
}

.simplebox .numberinglist__ttl .num {
    display: inline-block;
    max-width: 32px;
    height: 32px;
    min-width: 32px;
    color: #fff;
    text-align: center;
    background-color: #003E6E;
    line-height: 31px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 100px;
    margin-right: 8px;
}

.simplebox .numberinglist__ttl.simplebox__ttl {
    display: flex;
}

#page-lower .simplebox>.orderlist,
#page-lower .simplebox>.n_check {
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .TopPage {
        width: calc(100vw - 40px);
        margin-right: auto;
        margin-left: auto;
        margin-top: 55px;
    }
}


.entry_intro {
    position: relative;
    z-index: 10;
    background-color: #F4F6F8;
    padding: 24px;
    box-sizing: border-box;
    margin: 30px auto;
    margin-top: 24px;
    font-size: 13px;
    color: #003E6E;
}

.entry_intro:before {
    content: " ";
    width: 15px;
    height: 15px;
    border-left: 1px solid #003E6E;
    border-top: 1px solid #003E6E;
    position: absolute;
    left: 0;
    top: 0;
}

.entry_intro:after {
    content: " ";
    width: 15px;
    height: 15px;
    border-right: 1px solid #003E6E;
    border-top: 1px solid #003E6E;
    position: absolute;
    right: 0;
    top: 0;
}

.entry_intro .bottom:before {
    content: " ";
    width: 15px;
    height: 15px;
    border-left: 1px solid #003E6E;
    border-bottom: 1px solid #003E6E;
    position: absolute;
    left: 0;
    bottom: 0;
}

.entry_intro .bottom:after {
    content: " ";
    width: 15px;
    height: 15px;
    border-right: 1px solid #003E6E;
    border-bottom: 1px solid #003E6E;
    position: absolute;
    right: 0;
    bottom: 0;
}

.entry_intro .right_link[data-type="icon"] a:before {
    top: 5px;
}

.tab__nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    gap: 5px;
    border-bottom: 2px solid #003E6E;
    padding: 0 20px;
}

.tab {
    border-radius: 5px 5px 0 0;
    flex: auto;
    text-align: center;
    border: 2px solid #003E6E;
    border-bottom: none;
    background-color: #003E6E;
    color: #fff;
    cursor: pointer;
    width: 100%;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
}

.tab.active {
    color: #003E6E;
    background-color: #fff;
    position: relative;
}

.tab.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: -6px;
    left: 0;
    background-color: #fff;
}

.tab__item {
    padding: 0 20px;
}

.tab__cont {
    display: none;
}

.tab__cont.show {
    display: block;
}

.tabarea table.tablearea th.heading {
    background-color: #487395;
}


/* 診断 */
.shindan {
    background-color: #fbfaeb;
    margin-top: 24px;
}

.shindan .cont {
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .shindan {
        width: 100vw;
        margin-left: calc(((100vw - 100%) / 2) * -1);
        margin-right: calc(((100vw - 100%) / 2) * -1);
    }
}

.shindan .start__inner {}

.shindan_window {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #79665b;
    border-radius: 5px;
}

.shindan .start .shindan_window .btn span img {
    width: 100%;
    vertical-align: bottom;
}

.shindan .shitsumon .shindan_window .shitsumon_img {
    text-align: center;
}

.shindan .shitsumon .shindan_window .shitsumon_img img {
    width: 100%;
}

.shindan .start .shindan_window .btn span img:hover {
    cursor: pointer;
    opacity: 0.8;
}

.shindan .shitsumon .shindan_window .shitsumon_txt {
    background: none;
    padding: 0;
    margin-top: 20px;
    font-weight: bold;
}

.shindan .shitsumon .shindan_window .btn span {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    padding: 12px 24px;
    border-bottom: 5px solid #a03071;
    background-color: #db499e;
    color: #fff;
    font-weight: bold;
    line-height: 1.4;
    width: 100%;
}

.shindan .result {
    padding: 20px;
    background-color: #fff;

}

.shindan .result .title {
    position: relative;
    line-height: 1.2;
    text-align: center;
    font-weight: bold;
}

.shindan .shindan__border {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #77CADD;
    margin-right: auto;
    margin-left: auto;
    margin-top: 16px;
    margin-bottom: 18px;
}

.shindan .shitsumon .shindan_window .btn {
    text-align: center;
    display: flex;
    gap: 16px;
    margin-top: 20px;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .shindan .shitsumon .shindan_window .btn {
        flex-direction: column;
        align-items: center;
    }
}

.shindan .shitsumon .shindan_window .btn span:hover {
    cursor: pointer;
    opacity: 0.7;
}

.shindan .result {
    padding: 20px;
    border: 1px solid #79665B;
    border-radius: 5px;
    font-size: 16px;
}

.shindan .result .result_data {
    display: flex;
    flex-direction: column;
}

.shindan .result .result_data .ttl {
    position: relative;
    font-weight: bold;
    display: flex;
    gap: 7px;
    align-items: center;
    font-size: 16px;
}

.shindan .result .result_data .ttl::before {
    content: '';
    display: block;
    background-image: url(/male/ed-treatment/images/ribbon.svg);
    background-size: cover;
    width: 20px;
    height: 29px;
}

.shindan .result .result_data .img {
    margin-top: 8px;
}

.shindan .result .result_data .img img {
    width: 100%;
}

.shindan .result .result_data .txt {
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .shindan .c__btn {
        padding: 0;
        height: 52px;
    }

    .shindan .c__btn a {
        padding: 0;
    }

    .shindan .result .result_data .txt {
        font-size: 13px;
    }

    .shindan .start {
        padding: 0;
    }

    .shindan .shitsumon .shindan_window .btn span {
        font-size: 14px;
    }
}

.shindan .shitsumon .c__btn a:before {
    content: none;
}



#mokuji-h3 .single-index {
    counter-reset: number 0;
}

#mokuji-h3 .single-indexList-item {
    position: relative;
}

#mokuji-h3 .single-indexList-item::before {
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    padding-right: 8px;
}

ul.class-h2 {
    position: relative;
    counter-increment: li;
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 16px;
}

ul.class-h2::before {
    content: counter(li, decimal-leading-zero);
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    position: relative;
    top: -2px;
    padding-right: 6px;
}

ul.class-h3 {
    counter-increment: li2;
    display: flex;
    font-size: 16px;
    margin-bottom: 12px;
}

ul.class-h3:first-of-type {
    margin-top: 8px;
}

ul.class-h3::before {
    content: counter(li, decimal-leading-zero) "-" counter(li2, decimal-leading-zero);
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    position: relative;
    top: 0;
    padding-right: 6px;
}

.class-h3 {}

.img__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.img__item {
    display: flex;
    flex-direction: column;
}


/* スクロールテーブル 2022/11/12 */

table.tablearea {
    border-collapse: collapse;
    margin-top: 16px;
    text-align: left;
    table-layout: fixed;
    position: relative;
}

table.tablearea th,
table.tablearea td {}

table.tablearea th:not(.heading) {


    font-weight: bold;
    border: 1px solid #003E6E;
    text-align: left;
    line-height: 1.5;
    max-width: 150px;
    min-width: 100px;
}

table.tablearea td {
    font-weight: 300;
    line-height: 1.5;
    border: 1px solid #003E6E;
}

table.tablearea td+td {
    border-left: none;
}

table.tablearea th+td {
    border-left: none;
}

table.tablearea th.heading {
    background-color: #003E6E;
    font-weight: 300;
    color: #fff;
}

table.tablearea th.heading:first-of-type {
    max-width: 100px;
    border-left: 1px solid #003E6E;
    width: 30%;
}

table.tablearea th.heading:last-of-type {
    border-right: 1px solid #003E6E;
}

table.tablearea th.heading+.heading {
    border-left: 1px solid #fff;
}

table.tablearea[data-type="center"] th,
table.tablearea[data-type="center"] td {
    text-align: center;
}

.number li {
    padding-left: 0px !important;
}

/* 20240213 */
.lableTxt {
    display: inline-block;
    flex: 0 0 auto;
    padding: 5px 10px;
    margin-top: 16px;
    /* margin-left: 10px; */
    font-size: 12px;
    line-height: 1;
    color: #ccc;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.lableTxt.women {
    color: #77CADD;
    border: 1px solid #77CADD;
}

.lableTxt.mens {
    color: #003E6E;
    border: 1px solid #003E6E;
}

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

    table.tablearea th,
    table.tablearea td {
        font-size: 12px;
        padding: 12px;
    }
}

table.tablearea.fixed tbody tr th:nth-of-type(1) {
    z-index: 100;
    position: sticky;
    left: 0;
    border-right: none
}

div.table__scroll>table>tbody>tr:nth-child(1) th:not(:first-child):before {
    display: none;
}

table.tablearea.fixed tbody tr th:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: 100%;
    border-right: 1px solid #003E6E;
    z-index: -1;
}

.jumpLink {
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.jumpLink li a {
    display: inline-block;
    border-radius: 5px;
    line-height: 1.2;
    border: 1px solid #003E6E;
    color: #003E6E;
    width: 100%;
    padding: 12px 37px 12px 24px;
    position: relative;
    background: #f7f7f7;
    text-decoration: none;
    font-weight: bold;
}

.jumpLink li a::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(/male/ed-treatment/images/ico-down-arrow-bl.svg);
    display: inline-block;
    right: 10px;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

@media (max-width: 768px) {
    .container table tr {
        display: table-row !important;
    }
}

@media (max-width: 768px) {
    .container table tbody {
        display: table-row-group !important;
    }
}

.container h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 24px;
}

.annotation {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 16px;
    margin-bottom: 30px;
}

.annotation span {
    display: block;
}

.subhead-blue {
    font-weight: 700;
    display: table;
    background: #1A264B;
    color: #fff;
    margin: 40px 0 1em;
    padding: .3em .6em;
    line-height: 1.4em;
}

.attention {
    margin: 10px 0 40px;
    font-size: 11px;
}

@media screen and (min-width: 769px) {
    .subhead-blue {
        font-size: 18px;
    }
}

/* タブ */
.tab-area {
    margin: 30px 0;
}

.tab-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 4px;
}

.tab-list>li {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    border-top: 1px solid #003E6E;
    border-left: 1px solid #003E6E;
    border-right: 1px solid #003E6E;
    border-radius: 4px 4px 0 0;
    background: #DBEEF6;
    box-sizing: border-box;
    color: #003E6E;
}

.tab-list .activ {
    background: #fff;
}

.tab-content-wrap {
    padding: 20px;
    border-bottom: 1px solid #003E6E;
    border-left: 1px solid #003E6E;
    border-right: 1px solid #003E6E;
}

.tab-content {
    display: none;
}

.tab-content>.subhead:first-child {
    margin-top: 0;
    margin-bottom: -30px;
}

.tab-content.show {
    display: block;
}

.tab-content>table {
    margin-top: 0;
}


/* アコーディオン */
.accordionBox {
    margin: 16px auto 0;
    box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.accordionBox-ttl {
    background: #f2f2f2;
    color: #233264;
    display: block;
    margin-bottom: 1px;
    padding: 20px 56px 20px 20px;
    position: relative;
    cursor: pointer;
}

.accordionBox-ttl:hover {
    opacity: .7;
}

.accordionBox-ttl::after {
    position: absolute;
    content: "";
    background-image: url(/male/ed-treatment/images/plus.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 23px;
    height: 23px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.accordionBox-ttl.show::after {
    position: absolute;
    content: "";
    background-image: url(/male/ed-treatment/images/mines.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 23px;
    height: 23px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.accordionBox-txt {
    padding: 20px;
    display: none;
}

.accordionBox-txt.show {
    display: block;
}

.accordionBox+.accordionBox {
    margin-bottom: 40px;
}

.container ul.number-list li:before {
    top: 50%;
    transform: translateY(-50%);
}

.number-list-wrap {
    background: #F5F5F5;
    padding: 24px;
    margin: 0px 0 1em;
    overflow: auto;
    position: relative;
    height: fit-content;
}

/* 追従テーブル（縦） */

.container table.hikakutable {
    table-layout: fixed;
    width: 100%;
    height: auto;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
    margin-top: 8px;
    border-collapse: separate;
    border-spacing: 0;
    box-sizing: border-box;
}

.container table:has(+.attention) {
    margin-bottom: 0;
}

.hikakutable-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: #fff;
}

.container table.hikakutable .hikakutable-sticky>th {
    border: 1px solid #003E6E;
}

.container table.hikakutable th {
    font-weight: initial;
    background-color: #DBEEF6;
    height: auto;
}

.container table.hikakutable th,
.container table.hikakutable td {
    text-align: center;
}

.body-wrap {
    overflow: visible;
}

.table-btn {
    width: min(100%, 180px);
    margin: 0 auto;
}

.table-btn a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: #f39a00;
    aspect-ratio: 2 / 1;
    border-radius: 10px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    line-height: 1.2;
    font-weight: bold;
}

.table-btn a>.table-btn-txt {
    display: flex;
    justify-content: center;
    line-height: 1.2;
    flex-grow: 1;
}

.table-btn a>.table-btn-icon {
    position: relative;
    display: block;
    width: 18%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.table-btn a>.table-btn-icon::before {
    position: absolute;
    top: 50%;
    left: 47%;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 4px solid #f39a00;
    border-right: 4px solid #f39a00;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* 追従テーブル（横） */
.scrollX {
    overflow-x: scroll;
}

.container .scrollX>table.hikakutable {
    min-width: 110%;
    width: auto;
    margin-bottom: 8px;
    border-collapse: collapse;
}

.scrollX>.hikakutable thead tr th {
    min-width: 220px;
}

.scrollX>.hikakutable tr:not(.scrollX>.hikakutable tbody tr:last-child) {
    border-bottom: 3px solid #1a264b;
}

.scrollX .hikakutable-sticky {
    position: relative;
    position: sticky;
    left: 0;
}

.scrollX .hikakutable-sticky:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: calc(100% + 2px);
    height: 100%;
    border-left: 2px solid #1a264b;
    border-right: 2px solid #1a264b;
    z-index: -1;
    box-sizing: border-box;
}

.scrollX a:has(img)+.table-btn {
    margin-top: 8px;
}

/* ステップパーツ */

.flow {
    margin: 40px 0;
}

.flow .num {
    display: block;
    width: fit-content;
    padding: 2px 8px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    background-color: #1a264b;
    line-height: 25px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.flow .num .bg {
    font-size: 16px;
}

.flow__item+.flow__item {
    margin-top: 24px;
}

.flow__cont {
    padding-left: 16px;
    border-left: 1px solid #1a264b;
}

.flow__cont img {
    display: block;
    width: 100%;
    height: auto;
}

.flow__cont-ttl {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.flow__cont-txt {
    margin-top: 10px;
}

/* 口コミパーツ */
.reviewComment-scroll {
    width: 100%;
    padding-right: 4px;
    box-sizing: border-box;
    overflow-x: auto;
    /* white-space: nowrap; */
    margin: 20px 0;
    padding-top: 4px;
}


.reviewComment {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.reviewComment-list {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 100%;
}

.reviewComment-item {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    box-sizing: border-box;
    margin: 0 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    background: white;

    display: flex;

    flex-direction: column;
    justify-content: space-between;
}

.reviewComment-item:last-child::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    height: 1px;
    width: 10px;
    background-color: transparent;
}

.reviewComment-list:has(.reviewComment-item:nth-child(3)) {
    display: inline-flex;
}

.reviewComment-list:has(.reviewComment-item:nth-child(3)) .reviewComment-item {
    max-width: calc(47% - 16px);
    /* サイズを調整 */
}

.reviewComment>.reviewComment-item:last-child {
    margin-bottom: 0;
}

.reviewComment-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    margin-bottom: 26px;
}

.reviewComment-icon {
    width: 70px;
    height: auto;
    flex-shrink: 0;
    margin-left: 30px;
}

.reviewComment-icon>img {
    display: block;
    width: 100%;
    height: 100%;
}

.reviewComment-plan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
    gap: 4px 10px;
    width: 100%;
}

.reviewComment-plan dt {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a264b;
    color: #fff;
    font-size: 12px;
    padding: 2px 4px;
}

.reviewComment-plan dd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    line-height: 1.4;
    text-align: start;
}

.reviewComment-fukidashi {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: #fce7e9;
    text-align: left;
    max-width: 100%;
    white-space: normal;
    flex-grow: 1;
}

.reviewComment-fukidashi p {
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reviewComment-fukidashi::before {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 25px;
    height: 15px;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    content: '';
}

.reviewComment-fukidashi.reviewGood,
.reviewComment-fukidashi.reviewGood::before {
    background: #fce7e9;
}

.reviewComment-fukidashi.reviewBad,
.reviewComment-fukidashi.reviewBad::before {
    background: #f5f5f5;
}




/* メリットデメリットパーツ */
.meritdemerit {
    margin: 20px 0;
}

.meritdemerit[data-type="merit"] {
    border: 1px solid #f7869a;
    color: #f7869a;
    background-color: #fce7e9;
}

.meritdemerit[data-type="demerit"] {
    border: 1px solid #6F7070;
    color: #6F7070;
    background-color: #f5f5f5;
}

.meritdemerit__ttl {
    padding: 8px 40px 8px 20px;
    font-weight: bold;
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
}

.meritdemerit[data-type="merit"] .meritdemerit__ttl {
    background: #f7869a;
    color: #fff;
    display: block;
    position: relative;
    top: 0px;
    width: calc(100% - 30%);
    box-sizing: border-box;
    position: relative;
}

.meritdemerit[data-type="merit"] .meritdemerit__ttl::after {
    position: absolute;
    top: -1px;
    right: -1px;
    content: '';
    display: block;
    background: #fce7e9;
    width: 35px;
    height: calc(100% + 2px);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}


.meritdemerit[data-type="demerit"] .meritdemerit__ttl {
    background: #1a264b;
    color: #fff;
    display: block;
    position: relative;
    top: 0px;
    width: calc(100% - 30%);
    box-sizing: border-box;
    position: relative;
}

.meritdemerit[data-type="demerit"] .meritdemerit__ttl::after {
    position: absolute;
    top: -1px;
    right: -1px;
    content: '';
    display: block;
    background: #f5f5f5;
    width: 35px;
    height: calc(100% + 2px);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.meritdemerit>.n_check li {
    font-size: 18px;
}

.meritdemerit[data-type="merit"]>.n_check .meritdemerit__icon::before {
    background-color: transparent;
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(uploads/merit_ico.svg) center center / contain no-repeat;
    position: absolute;
    left: 0;
    top: 6px;
}

.meritdemerit[data-type="demerit"]>.n_check .meritdemerit__icon::before {
    background-color: transparent;
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(uploads/demerit_ico.svg) center center / contain no-repeat;
    position: absolute;
    left: 0;
    top: 6px;
    background-size: cover;
}


.meritdemerit>.n_check {
    padding: 14px 20px;
    margin: 0;
}

.meritdemerit>.n_check li {
    line-height: 1.5;
}

.meritdemerit>.n_check li+li {
    margin-top: 10px;
}

.quotation_link {
    text-align: right;
    font-size: 11px;
}

.detail_link {
    text-align: right;
    font-weight: bold;
}

.detail_link a {
    display: flex;
    align-items: start;
    justify-content: flex-end;
    gap: 4px;
}


.detail_link a span {
    position: relative;
    display: block;
    width: 14px;
    margin-top: 4px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #1a0dab;
    flex-shrink: 0;
}

.detail_link a span::before,
.detail_link a span::after {
    content: '';
    position: absolute;
    background: #fff;
    width: 50%;

}

.detail_link a span::before {
    top: 42%;
    right: -27%;
    height: 16%;
    transform: translate(-100%, -100%) rotate(45deg);
}

.detail_link a span::after {
    right: -27%;
    bottom: 16%;
    height: 16%;
    transform: translate(-100%, -100%) rotate(-45deg);
}

.c__btn {
    width: 100%;
    text-align: center;
    background-color: #f68699;
    position: relative;
    height: 72px;
    border-radius: 10px;
    box-shadow: 0 5px 0 #999;
    margin-top: 24px;
}

.c__btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    line-height: 1.5;
    position: relative;
    transition: all ease .3s;
    font-weight: bold;
    font-size: 16px;
    padding: 0 40px 0 20px;
    text-decoration: none !important;
    text-align: center;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
    margin: 0;
}

.c__btn a:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    right: 20PX;
    background-image: url(../uploads/ico-wh-right.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 51%;
    transform: translateY(-50%);
    background-color: transparent;
}

a.btn-new:after {
    display: none;
}

a.btn-new:hover {
    background-color: transparent;
    opacity: 1;
}