@charset "UTF-8";

/* ========================================================
ベース設定
=========================================================*/
:root {
	/* カラー */
	--Text: #2A2A2A;
	--Text_blue: #1A0DAB;
	--Main: #ef40a4;
	--Sub: #77cadd;
	--Accent: #D40000;
	--Back: #F6F6F6;
	--Back_strong: #E7F1F7;
	/* 文字サイズ */
	--FontSizeSP: 10px;
	/* 375px 〜 768px */
	--FontSizeSP2: 4.2666666667vw;
	/* 〜　374px */
}

@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;
}

@font-face {
	font-family: "Zen Maru";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/Zen_Maru_Medium.woff") format("woff");
	font-display: swap;
}

@font-face {
	font-family: "Zen Maru";
	font-style: bold;
	font-weight: 700;
	src: url("../fonts/Zen_Maru_Bold.woff") format("woff");
	font-display: swap;
}

html {
	font-family: "Noto Sans JP";
	line-height: 1.5;
	color: var(--Text);
	font-size: var(--FontSizeSP);
}

body {
	font-family: "Noto Sans JP";
	font-size: 1.5rem;
	background-color: #fff;
	color: var(--Text);
	padding: 0;
	margin: 0;
	line-height: 1.5;
	box-sizing: border-box;
	word-break: break-word;
	/* break-wordは非推奨のため、word-breakを使用 */
	font-feature-settings: "palt";
}

.forPC {
	display: none;
}

.forPC-inline {
	display: none;
}

.forSP {
	display: block;
}

a {
	font-weight: bold;
	text-decoration: underline;
	color: var(--Text_blue);
	transition: all ease 0.3s;
}

a:hover {
	opacity: 0.6;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

/* ========================================================
共通
=========================================================*/

.orange {
    color: #CC2D2C;}

.bold {
	font-weight: bold;
}

.line-through {
	text-decoration: line-through;
}

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

.header {
	width: 100%;
	position: relative;
}
.header__logo{
	height: 20px;
	width: auto !important;
	padding: 0 10px;
	margin: 2px 0;
}

.slider.clinicLogo{
	display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    background: #fff;
	margin-top: 8px;
	height: 20px;
}
.slick-slide{
	width: auto !important;
}

/* ========================================================
SECTION CAUTION
=========================================================*/
.caution{
	background-color: #fff;
	margin-top: 8px;
}
.caution__txt{
	font-size: 14px;
    line-height: 1.7;
    padding: 0 14px;
    margin-top: 12px;
}

.caution__txt:not(:first-of-type){
	margin-top: 14px;
}

/* ========================================================
SECTION MAP
=========================================================*/
.map{
    padding-top: 30px;
	background-color: #fff;
}
.map__txt{
	font-size: 14px;
    line-height: 1.7;
    padding: 0 14px;
    margin-top: 4px;
}
.map__txt:not(:first-of-type){
	margin-top: 14px;
}


/* ========================================================
SECTION TYPE
=========================================================*/

.type {
	background-color: #fff;
}

.type_bnr {
	background-color: #fff;
	padding-top: 20px;
}

.gairai .type_bnr{
	padding-top: 0px;
}
.type.chiryo .type_bnr{
	padding-top: 10px;
}


.type.chiryo{
	padding-top: 24px;
}
.type-wrap {
	padding: 10px;
	display: grid;
	justify-content: center;
    grid-template-columns: 1.3fr 1fr 1fr;
	gap: 6px;
}

.type.chiryo .type-wrap {
	padding: 10px 14px 10px;
	display: grid;
	justify-content: center;
	grid-template-rows: repeat(3, 1fr);
	grid-template-columns: 1fr;
	gap: 6px;
	margin-top: 14px;
}

.type__box {
	background-color: #eceef0;
	padding: 8px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: solid 1px #CCCCCC;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 5;
	position: relative;
}

.type__box:first-of-type {
    border: solid 1px #20a3af;
	background-color: #fff8d9;
}
.type.chiryo .type__box{
	display: unset;
	padding: 16px 0;
	background-color: #fff;
	position: relative;
}
.type.chiryo .type__box:not(:first-of-type){
	margin-top: 32px;
}

.type.chiryo .type__box::before{
    position: absolute;
    content: "";
    width: 70px;
    height: 5px;
    background-color: #fff;
    right: 50%;
    top: -5px;
    transform: translateX(50%);
}
.type__crown{
    width: 40px;
    height: auto;
    display: block;
    margin: auto auto 0;
}

.type.chiryo .type__box:nth-of-type(1):after{
    position: absolute;
    content: "";
    right: 50%;
    transform: translateX(50%);
	top: -7%;
    background: url(../img/rank01.png) no-repeat;
    background-size: 100%;
    width: 65px;
    height: 46px;
}
.type.chiryo .type__box:nth-of-type(2):after{
    position: absolute;
    content: "";
    right: 50%;
    transform: translateX(50%);
    top: -7%;
    background: url(../img/rank02.png) no-repeat;
    background-size: 100%;
    width: 65px;
    height: 46px;
}
.type.chiryo .type__box:nth-of-type(3):after{
    position: absolute;
    content: "";
    right: 50%;
    transform: translateX(50%);
    top: -7%;
    background: url(../img/rank03.png) no-repeat;
    background-size: 100%;
    width: 65px;
    height: 46px;
}

.type__box:not(:first-of-type) .type__crown{
	width: 33px;
}

.type.chiryo .type__box:not(:first-of-type) .type__crown{
    width: 71px;
}

.type.chiryo .type__box__name{
	text-align: center;
	width: 100%;
    display: inline-block;
	font-size: 18px;
}

.type__box__head-wrap{
	background-color: #CCCCCC;
	padding: 6px 0;
	border-radius: 7px 7px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.type__box:first-of-type .type__box__head-wrap{
	background-color: #77CADD;
	border-radius: unset;
}

.type.chiryo .type__box:first-of-type{
	background-color: #fff8d9;
}

.type__box__head{
	position: relative;
}

.type__box__head-txt{
	font-weight: bold;
	text-align: center;
	font-size: 12px;
	padding-left: 11%;
	white-space: nowrap;
}

.type__logo-wrap{
	display: flex;
	justify-content: center;
	align-items: center;
}

.type__logo {
	margin: 0px auto;
	width: calc(100% - 20px);
}

.type.chiryo .type__logo{
	width: 100%;
	height: auto;
}

.type__bnr {
	margin-top: 0px;
	padding: 0 1px;
	background-color: var(--Back_strong);
}

.type__box .type__bnr {
	width: calc(100% - 28px);
	padding: 0;
    margin: 4px auto 0;
}

.type.chiryo .type__box .type__bnr{
    margin: 8px auto 0;
}

.type__box:not(:first-of-type)>a{
	display: flex;
}

.type__txt-wrap {
	display: flex;
	justify-content: center;
	align-items: baseline;
	align-items: center;
}

.type.chiryo .type__txt-wrap{
	margin-top: 10px;
}

.type__txt-wrap p {
	font-size: 12px;
	line-height: 1.3;
	text-align: center;
	position: relative;
}

.type.chiryo .type__txt-wrap p{
	padding: 0 16px;
}

.type.chiryo .type__txt-wrap p::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 82%;
    background-color: #000;
    transform: rotate(-31deg);
    bottom: 0;
    left: 0;
}
.type.chiryo .type__txt-wrap p::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 82%;
    background-color: #000;
    transform: rotate(31deg);
    bottom: 0;
    right: 0;
}

.cta-btn {
	background-color: #e67940;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	display: block;
	transition: all .3s;
}

.cta-btn:hover {
	opacity: .6;
	transition: all .3s;
}

.type.cta-btn {
	border-radius: 4px;
	margin: 0px 8px 0;
	padding: 8px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	position: relative;
}
.type.cta-btn::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 7%;
    transform: rotate(-45deg);
    top: 15px;
}

.type.chiryo .type.cta-btn{
	display: block;
	text-align: center;
	line-height: 1.3;
	margin-top: 4px;
	font-size: 16px;
}

.type.chiryo .type.cta-btn::before{
	position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 4%;
    transform: rotate(-45deg) translateY(-50%);
    top: 48%;
}

.ico-arrow {
	width: 14px;
	height: 14px;
}
.type.chiryo .type__inside__table-wrap{
	margin-top: 14px;
}
.type.chiryo .type__inside__table{
	border-collapse: collapse;
	width: 100%;
}
.type.chiryo .type__inside__table th{
	border-top: solid 1px #CCCCCC;
	background-color: #D6EDED;
	font-size: 12px;
	width: calc(100% / 3);
	padding: 2px 0;
}
.type.chiryo .type__inside__table th:not(:last-of-type),
.type.chiryo .type__inside__table td:not(:last-of-type){
	border-right: solid 1px #CCCCCC;
}
.type.chiryo .type__inside__table td{
	border-bottom: solid 1px #CCCCCC;
	text-align: center;
	font-size: 12px;
	line-height: 1.4;
	padding: 6px 0;
	vertical-align: top;
	text-align: center;
}
.type.chiryo .type__box:first-of-type .type__inside__table td,
.type.chiryo .type__box:first-of-type .type__inside__table th:not(:last-of-type), 
.type.chiryo .type__box:first-of-type .type__inside__table td:not(:last-of-type),
.type.chiryo .type__box:first-of-type .type__inside__table th{
	border-color: #20a3af;
}
.type.chiryo .type__inside__icon{
	width: 45px;
	display: block;
	margin-inline: auto;
}

.type.chiryo .type__inside__txt{
	margin-top: 4px;
}

/* ========================================================
SECTION TREATMENT
=========================================================*/
.treatment{
	background-color: #fff;
	margin-top: 30px;
}

/* ========================================================
SECTION FORM
=========================================================*/
.Refine_Search_Box_Ttl {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
    text-align: center;
    font-weight: bold;
	margin-top: 26px;
}

.Refine_Search_Box_Input {
	padding: 0px 20px 20px;
}

.Refine_Search_conditions_Area:not(:first-of-type) {
	margin-top: 26px;
}

.condition_ttl {
	font-size: 14px;
	font-weight: bold;
}

.multi-available {
	font-size: 12px;
	font-weight: bold;
	color: #000;
	border: solid 1px #000;
	padding: 4px 10px;
	border-radius: 80px;
	margin-left: 8px;
	background-color: #ecfcff;
}

.nayami__list,
.way__list,
.price__list,
.kodawari__list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 8px;
}

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

.radiobtn_text,
.checkbox_text {
	font-size: 14px;
	font-weight: bold;
	border-radius: 8px;
    border: solid 1px #20a3af;
	background-color: #fff;
	width: calc((100% - 9px)/2);
	display: flex;
	align-items: center;
	padding: 12px 12px 12px 16px;
	position: relative;
}

.price__list .checkbox_text {
	width: calc((100% - 9px)/2);
	padding: 12px 12px 12px 16px;
	display: flex;
}

.multi-item {
	width: calc((100% - 9px)/2);
	margin: 0;
}

.radiobtn_text.on,
.radiobtn_text.on01,
.checkbox_text.selected {
    border-bottom: solid 4px #6cc4cd;
	background-color: #ecfcff;
	position: relative;
}

.radiobtn_text.on,
.radiobtn_text.on01 {
	width: calc((100% - 11px)/2);
}

.checkbox {
	border-radius: 6px;
}

.price__list .radiobtn_text.on01 .radiobox::before {
	position: absolute;
	content: "";
	background: url(../img/checkbox.png)no-repeat center center;
	background-size: 34px;
	width: 34px;
	height: 34px;
	left: -6px;
	top: -2.5px;
}

.frequency {
	display: flex;
	flex-wrap: wrap;
}

.checkbox_text::before {
	position: absolute;
	content: "";
	width: 24px;
	height: 24px;
	display: block;
	left: 46px;
}

.price__list .checkbox_text:nth-of-type(1)::before {
	background: url(../img/ico_capsule.png)no-repeat center;
	background-size: 24px;
}

.price__list .checkbox_text:nth-of-type(2)::before {
	background: url(../img/ico_kanpo.png)no-repeat center;
	background-size: 24px;
}

.price__list .checkbox_text:nth-of-type(3)::before {
	background: url(../img/ico_question.png)no-repeat center;
	background-size: 24px;
}

.checkbox_text.selected {
	position: relative;
}

.nayami__list .checkbox_text:nth-of-type(3).selected::after,
.nayami__list .checkbox_text:nth-of-type(4).selected::after {
	top: 57%;
}


.kodawari__list .checkbox_text:nth-of-type(1)::before {
	background: url(../img/ico_19.png)no-repeat center;
	background-size: 24px;
}

.kodawari__list .checkbox_text:nth-of-type(2)::before {
	background: url(../img/ico_calendar.png)no-repeat center;
	background-size: 24px;
}

.kodawari__list .checkbox_text:nth-of-type(3)::before {
	background: url(../img/ico_day.png)no-repeat center;
	background-size: 24px;
}

.kodawari__list .checkbox_text:nth-of-type(4)::before {
	background: url(../img/ico_phone.png)no-repeat center;
	background-size: 24px;
}

.top .Refine_Search_submit {
	padding: 0 20px;
}

.Refine_Search_cta input,
.Refine_Search_cta .noSubmit,
.Refine_Search_submit input[type="submit"] {
	display: block;
	background-color: #e67940;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	justify-content: center;
	align-items: center;
	transition: all .3s;
	width: calc(100% - 40px);
	margin: 0px auto;
	line-height: 50px;
	border: none;
	border-radius: 10px;
}

/* ========================================================
SECTION RANKING
=========================================================*/

section.ranking {
    background-color: #ecfbff;
	position: relative;
}
section.ranking::before{
	position: absolute;
    content: "";
    background: url(../img/w_base.png) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 89px;
    top: 0;
}

.ranking__wrap{
	padding: 8px 14px 30px;
	margin-top: 10px;
	background-color: #ecfbff;
}

.ranking__box {
	position: relative;
	padding-bottom: 24px;
	box-shadow: rgb(17 17 26 / 10%) 0px 1px 0px, rgb(17 17 26 / 15%) 0px 0px 8px;
	padding: 14px;
	background-color: #fff;
	border-radius: 15px;
}

.ranking__box:not(:first-of-type) {
	margin-top: 26px;
}
.ranking__ttl__bnr{
	padding: 38px 30px 0;
	z-index: 10;
	position: relative;
}

.ranking__head-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
}

.ranking__head {
	display: flex;
	flex-direction: column;
	justify-content: end;
	position: relative;
	line-height: 1.3;
}

.ranking__aco .ranking__head {
    padding-left: 40px;
}

.ranking__head-txt {
	font-size: 12px;
	font-weight: bold;
}

.ranking__head-ttl {
	font-size: 18px;
	font-weight: bold;
	color: var(--Text_blue);
}

body:not(.result_page) .ranking__box:not(:first-of-type) .ranking__head-ttl{
	color: unset;
}
a.ranking__head-ttl_02,
a.ranking__head-ttl_03,
a.ranking__head-ttl_04,
a.ranking__head-ttl_05{
	pointer-events: none;
	color:unset; /* リンクの色を変更（任意） */
	text-decoration: none; /* 下線を消*/
}
.result__official__02,
.result__official__03,
.result__official__04,
.result__official__05{
	pointer-events: none;
	color:unset; /* リンクの色を変更（任意） */
	text-decoration: none; /* 下線を消*/
}

.result__ct__02,
.result__ct__03,
.result__ct__04,
.result__ct__05{
	display: none;
}
.ranking__bnr__02,
.ranking__bnr__03,
.ranking__bnr__04,
.ranking__bnr__05{
	pointer-events: none;
	color:unset; /* リンクの色を変更（任意） */
	text-decoration: none; /* 下線を消*/
}
a.ranking__bnr{
    text-decoration: none;
    border: solid 1px #000;
    display: block;
	margin-top: 12px;
}

.ranking__bnr__txt-wrap{
	display: flex;
    justify-content: center;
}

.ranking__bnr__txt-wrap{
    background-color: #ecfcff;
	padding: 8px;
}

.ranking__bnr__txt{
    color: #4d3c34;
    font-size: 11px;
    line-height: 1.3;
}

.ranking__box__table {
	border-collapse: collapse;
	margin-top: 10px;
	width: 100%;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
}
.ranking__box-div{
	display: flex;
	align-items: center;
}
.razor_ico{
	width: 16px;
	height: 16px;
}

.ranking__box__table th,
.ranking__box__table td {
	width: calc(100% /2);
	text-align: center;
	font-size: 12px;
}

.ranking__box__table th {
	font-weight: bold;
    background-color: #f5f5f5;
	padding: 6px;
	width: 22%;
	vertical-align: middle;
	border-right: solid 1px #000;
}

.ranking__box__table tr:not(:last-of-type) th,
.ranking__box__table tr:not(:last-of-type) td	{
	border-bottom: solid 1px #000;
}

.ranking__box__table td {
	font-size: 12px;
	background-color: #fff;
	padding: 10px;
	line-height: 1.3;
	min-height: 56px;
	text-align: left;
}

.trial__accent{
	background: linear-gradient(transparent 60%, #ffffd7 60%);
	font-weight: bold;
}

.ranking__box__table td ul li:not(:first-of-type) {
	margin-top: 2px;
}

.ranking__box__table li {
	text-indent: -1em;
	padding-left: 1em;
}

.tag__lists__wrap{
	display: flex;
    flex-wrap: wrap;
    gap:4px;
	margin-top: 14px;
}

.tag__lists__wrap li{
    background-color: #ecfcff;
    color: #20a3af;
    border: solid 1px #20a3af;
    border-radius: 2px;
    padding: 4px 4px;
    font-size: 12px;
    font-weight: bold;
}
.tag__lists__wrap li.off{
	background-color: #e9e9e9;
    color: #7e7e7e;
    border: solid 1px #7e7e7e;
}

.razor__content__head{
	background: linear-gradient(to right, #20a3af, #0e87b6);
    color: #fff;
    text-align: center;
    padding: 4px 0 8px;
	position: relative;
	position: relative;
}

.razor__content__head::before{
    position: absolute;
    content: "";
    background: url(../img/rank_razor_dot.svg) no-repeat;
    background-size: 100%;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 2%;
    transform: translateY(-45%);
}
.razor__content__head::after{
    position: absolute;
    content: "";
    background: url(../img/rank_razor_dot.svg) no-repeat;
    background-size: 100%;
    width: 40px;
    height: 40px;
    top: 50%;
	right: 2%;
    transform: translateY(-45%);
}
.razor__content{
	margin-top: 10px;
	width: 100%;
	border: solid 1px #20a3af;
}

.razor__content__txt{
	display: inline-block;
}

.razor__content__txt.ttl{
	font-size: 12px;
}

.razor__content__txt.body{
	border: solid 1px #fff;
    padding: 2px 4px;
    position: relative;
    margin-top: 2px;
	font-size: 14px;
}
.razor__content__txt.body::before{
	position: absolute;
    content: "";
    height: 1px;
    width: 12%;
    background-color: #1998b2;
    top: -1px;
    left: 9%;
}
.razor__content__txt.body::after{
	position: absolute;
    content: "";
    height: 1px;
    width: 12%;
    background-color: #1592b4;
    bottom: -1px;
    right: 9%;
}
.razor__content__exp-body{
	display: flex;
    flex-direction: column;
}
.razor__content__exp{
    display: grid;
    grid-template-columns: 43% 1fr;
    gap: 10px;
	padding: 10px;
	align-items: center;
}
.razor__content__exp-ttl{
    text-align: center;
    font-size: 12px;
    border-left: solid 2px #4d3c34;
    padding: 0px 0px 0px 4px;
    text-align: left;
    font-weight: bold;
}
.razor__content__exp-txt{
	font-size: 12px;
}
.exp-price-wrap{
	display: flex;
    justify-content: left;
	margin-top: 4px;
}
body .razor__content__exp-price{
	font-size: 12px;
	text-align: right;
}

.razor__content__exp a{
	display: block;
    font-size: 12px;
	margin-top: 4px;
}

.ranking___point-wrap {
	margin-top: 16px;
}

.ranking___point-wrap dl dt {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	padding-left: 22px;
}

.ranking___point-wrap dl dd {
    font-size: 14px;
    position: relative;
    margin-top: 10px
}

.ranking___point-wrap dl dt::before {
	position: absolute;
	content: "";
	background: url(../img/check_ico.svg)no-repeat center;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
	left: 0;
	top: 5px;
}
.result_page .ranking___point-wrap05 dl dt::before {
	display: none;
}
.ranking___location{
    margin-top: 20px;
}
.ranking___location__head{
	display: flex;
    justify-content: center;
}
.ranking___location__ttl{
    color: #4c3d34;
    font-weight: bold;
    text-align: center;
    position: relative;
    display: inline;
    padding: 0 16px;
}

.ranking___location__ttl::before{
    position: absolute;
    content: "";
    background: url(../img/location_ico01.svg) no-repeat;
    background-size: 10px 26px;
    width: 10px;
    height: 26px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.ranking___location__ttl::after{
    position: absolute;
    content: "";
    background: url(../img/location_ico02.svg) no-repeat;
    background-size: 10px 26px;
    width: 10px;
    height: 26px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.ranking__price__table {
	border-collapse: collapse;
	margin-top: 24px;
	width: 100%;
}

.ranking__price__table,
.ranking__price__table th,
.ranking__price__table td {
	border: solid 1px #000;
	font-size: 12px;
}

.ranking__price__table th {
	background-color: #32939b;
	color: #fff;
	padding: 4px;
}

.ranking__price__table td {
	padding: 4px;
	text-align: center;
}

.ranking__price__table tr th:first-of-type {
	border-right: solid 1px #fff;
}


.ranking__price__table tr td:first-of-type {
	background-color: #ecfcff;
	width: 26%;
	min-width: 70px;
}

.ranking__price__table tr td.td__cut {
	background-color: #fff;
	width: unset;
}

.ranking__box__txt__area {
	margin-top: 20px;
}

.ranking__box__txt__area p {
	line-height: 1.6;
	font-size: 14px;
}

.ranking__box__txt__area p:not(:first-of-type) {
	margin-top: 14px;
}


.ranking__cta {
	margin-top: 24px;
}

.ranking__cta-wrap {
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 0 10px #00000020;
	padding: 28px 20px;
	display: flex;
	flex-direction: column;
}

.ranking__cta-logo {
	max-height: 86px;
	width: auto;
	margin: 10px auto 0;
}

.ranking__ofiicial-wrap {
	width: 100%;
	margin-top: 8px;
	font-size: 15px;
	display: flex;
	justify-content: right;
}

.ranking__cta-ttl {
	font-size: 16px;
	font-weight: bold;
	color: var(--Main);
	text-align: center;
	background-color: var(--Back_strong);
	padding: 8px 0;
}

.cta-btn.ranking {
    font-size: 16px;
    padding: 10px 0px;
    position: relative;
    width: 100%;
    line-height: 1.6;
    margin: 10px auto 0;
    text-align: center;
    border-radius: 4px;
}

.cta-btn.ranking::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 4%;
    transform: rotate(-45deg) translateY(-50%);
    top: 47%;
}
.ranking__box__imgs{
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sleep-medical-img{
}

/* ========================================================
SECTION RANKING 4位以下
=========================================================*/
.ranking__more-btn {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    border: solid 1px #000;
    padding: 32px 0;
    text-align: center;
    background-color: #fff;
    border-radius: 78px;
    margin: 26px auto 0;
    position: relative;
    width: calc(100% - 30px);
}

.ranking__more-btn::before {
	position: absolute;
	content: "4位以下をもっと見る";
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.ranking__more-btn.on::before {
	position: absolute;
	content: "4位以下を閉じる";
}

.ranking__more-btn::after {
	position: absolute;
	content: "";
	background: url(../img/ranking_aco_btn.svg)no-repeat center;
	background-size: 24px;
	width: 24px;
	height: 24px;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}

.ranking__more-btn.on::after {
	transform: rotate(180deg);
	top: 30%;
}

.ranking__aco {
	margin-top: 30px;
	display: none;
	padding: 20px 14px;
	background-color: #ecfbff;
}

/* ========================================================
SECTION HIKAKU
=========================================================*/

section.hikaku {
	margin-top: 14px;
}
/* ========================================================
SECTION SUMMARY
=========================================================*/
.summary-wrap{
	overflow-x: scroll;
	padding: 0 20px;
	margin-top: 10px;
}
.summary__table{
	border-collapse: collapse;
	border: solid 1px #000;
	width: 547px;
}
.summary__table th{
	background-color: #f5f5f5;
	padding: 6px;
}
.summary__table th:first-of-type,
.summary__table td:first-of-type{
	position: sticky;
	left: -20px;
	z-index: 10;
}
.summary__table th:not(:last-of-type),
.summary__table td:not(:last-of-type){
	border-right: solid 1px #000;
}

.summary__table td{
	background-color: #fff;
	border-top: solid 1px #000;
	text-align: center;
	padding: 6px;
}
.hikaku__bt{
	background-color: #e67940;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    display: block;
    transition: all .3s;
	font-size: 16px;
    padding: 10px 0px;
    position: relative;
    width: 100%;
    line-height: 1.2;
    margin: 4px auto 0;
    text-align: center;
    border-radius: 4px;
}
.hikaku__bt::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    right: 4%;
    transform: rotate(-45deg) translateY(-50%);
    top: 47%;
}
/* ========================================================
FOOTER
=========================================================*/

.footer {
	margin: 20px auto 0;
	width: 100%;
	padding: 20px;
    border-top: solid 1px #cfcfcf;
	background-color: #fff;
}

.txt-lg {
	font-size: 14px;
}

dl:not(:first-of-type) {
	margin-top: 24px;
}

.txt-md {
	font-size: 14px;
	font-weight: bold;
}

.txt-md li {
	margin-top: 8px;
}

.footer__bottom .footer__links {
	margin-top: 24px;
	border-top: solid 1px #fff;
	gap: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer__bottom .footer__links ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

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

.footer__bottom .footer__links a {
	font-size: 14px;
	text-decoration: none;
}

.footer__copy {
	text-align: center;
	font-size: 10px;
	margin-top: 14px;
}

/* ========================================================
コラム
=========================================================*/
/* 見出し */
.article h1 {
	margin-top: 2em;
	font-size: 1.25rem;
	line-height: var(--Lh-S);
}

.article h2 {
	margin-top: 2em;
	font-size: 1.25em;
	line-height: var(--Lh-S);
}

.article h3 {
	font-size: 1.2rem;
	margin-top: 1.5em;
	line-height: var(--Lh-M);
}

.article h4 {
	margin-top: 1.5em;
	line-height: var(--Lh-M);
	font-size: 1rem;
}

/* ========================================================
検索結果ページ
=========================================================*/
.result_page #CONTENTS {
	background-color: #fff;
}

#PANKUZU {
	padding: 13px 0;
}

.imgttl_searchresult {
	margin-top: 8px;
}

.contents.clearfix {
	margin-top: 34px;
	padding: 0 20px;
}

.searchConditions {
	border: solid 2px #2092b6;
	border-radius: 8px;
	position: relative;
	text-align: center;
}

.searchConditions__ttl {
	font-size: 16px;
	color: var(--Text);
	font-weight: bold;
	text-align: center;
	background-color: #fff;
	display: inline;
	padding: 4px 8px;
	position: absolute;
	top: -16px;
	left: 50%;
	white-space: nowrap;
	transform: translateX(-50%);
}

.searchConditions__wrap {
	border-collapse: collapse;
	margin-top: 8px;
	text-align: left;
	padding: 14px 14px 20px;
	font-size: 16px;
	font-weight: bold;
}

.searchConditions__wrap dl {
	display: flex;
	gap: 10px;
	align-items: center;
	border-bottom: dashed 1px #CCC;
	padding-bottom: 10px;
}

.searchConditions__wrap dt {
	color: #2092b6;
	text-align: center;
	position: relative;
	padding-right: 10px;
	width: 32%;
	white-space: nowrap;
}

.searchConditions__wrap dt::after {
	position: absolute;
	content: " :";
	top: 50%;
	transform: translateY(-50%);
}

.searchConditions__wrap dd {
	/* margin-top: 4px; */
	width: 68%;
}

.Refine_Result_Count {
	font-size: 16px;
	font-weight: bold;
	color: #2a2a2a;
	text-align: center;
	margin-top: 24px;
}

.result_page .ranking__wrap {
    margin-top: 44px;
}

.result__match__accent {
	color: #f75e2f;
	display: inline-block;
}

.result.ng-scope {
	margin-top: 40px;
	padding: 0 20px;
	position: relative;
}

.card__inner::after {
	position: absolute;
	content: "";
	background: url(../img/waveline.png)no-repeat center;
	background-size: 100vw 4px;
	width: 100vw;
	height: 4px;
	margin: 24px calc(50% - 50vw) 0;
	top: -44px;
	left: 0;
}

.card__rank__header p {
	font-size: 14px;
	color: #2a2a2a;
	font-weight: bold;
}

.noLink {
	display: block;
	margin-top: 8px;
}

.noLink a {
	font-size: 20px;
	font-weight: bold;
	text-decoration: underline;
}

.card__bnr-img.noLink {
	margin-top: 22px;
}

.result_page .ranking___point-wrap .result.ng-scope ::after {
	width: 0;
}

.result_page .ranking__box__table th {
	line-height: 1.4;
}

.result_page .ranking__box__table td {
	vertical-align: middle;
}

.result_page .cta-btn.ranking {
	width: auto;
	padding: 10px 45px;
}

.result_page small {
	font-size: smaller;
}

/* ========================================================
再検索フォーム
=========================================================*/
#re_form {
	margin-top: 24px;
}

.nayami_list,
.way__list,
.price__list,
.kodawari__list {
	margin-top: 10px;
}

#re_form .Refine_Search_Title {
	padding: 0 20px;
}

#re_form .Refine_Search_Title-txt {
	font-size: 20px;
	font-weight: bold;
	color: var(--Sub);
	border-bottom: dotted 3px var(--Sub);
	padding-bottom: 12px;
	text-align: center;
}

#re_form .Refine_Search_Box_Inner.Refine_Search_Box_Input {
	padding: 0;
}

#re_form .radiobtn_text {
	width: calc((100% - 64px)/2);
	padding: 12px;
}

#re_form .checkbox_text {
	width: auto;
	padding-left: 75px;
}

#re_form .checkbox_text {
	width: calc((100% - 66px)/2);
	padding: 12px;
	position: relative;
}

#re_form .checkbox_text::before {
	left: 39px;
}

#re_form .checkbox_text.selected::after {
	background-size: 26px;
	width: 26px;
	height: 26px;
	top: 28.5px;
	left: 9px;
}

#re_form .nayami__list .checkbox_text:nth-of-type(3).selected::after,
#re_form .nayami__list .checkbox_text:nth-of-type(4).selected::after {
	top: 25px;
}

#re_form .radiobox,
#re_form .checkbox {
	width: 18px;
	height: 18px;
}

#re_form .radiobox {
	width: 18px !important;
	height: 18px !important;
}


#re_form .nayami__list .radiobtn_text.on01::after,
#re_form .way__list .radiobtn_text.on::after {
	left: 16px;
}

#re_form .radiobtn_text.on01 .radiobox::before {
	background-size: 28px;
	width: 28px;
	height: 28px;
	left: -5px;
	top: -2px;
}

#re_form .radiobtn_text::before {
	left: 38px;
}

#re_form .multi-item::before {
	width: 18px !important;
	height: 18px !important;
}

#re_form .checkbox_text.selected::after {
	background-size: 28px;
	width: 28px;
	height: 28px;
	left: 8px;
}

#re_form .checkbox_icon::before {
	top: 86%;
}

#re_form .Refine_Search_submit {
	padding: 0 20px;
}

#re_form .Refine_Search_cta input {
	background-color: transparent;
	border: none;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	padding: 20px 26px;
	width: 100%;
}

#re_form .Refine_Search_cta .cta-btn {
	border-radius: 78px;
	font-size: 18px;
	/* padding: 20px 26px; */
	margin: 32px auto 0;
	position: relative;
	box-shadow: 0 6px 0px #540000;
	position: relative;
	width: 295px;
}

#re_form .Refine_Search_cta .cta-btn::after {
	background: url(../img/ico_arrow.svg)no-repeat center;
	background-size: 24px;
	position: absolute;
	content: "";
	width: 24px;
	height: 24px;
	right: 20px;
}

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

.page-lower {
	padding-top: 5rem;
	background-color: #fff;
}

.page-lower .inner {
	padding-right: 15px;
	padding-left: 15px;
}

.pankuz ul {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: scroll;
}

.pankuz li {
	font-size: 14px;
	white-space: nowrap;
}

.pankuz ul a {
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 4px;
	color: inherit;
	font-weight: normal;
}

.pankuz ul a img {
	width: 20px;
	height: 20px;
}

.page-lower .header {
	max-width: 100vw;
	margin-top: 16px;
}

.page-lower h1 {
	position: relative;
	text-align: center;
	max-width: 100vw;
	font-size: 2.5rem;
	font-weight: bold;
	padding: 0 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-lower h1::before,
.page-lower h1::after {
	content: "";
	display: block;
	background-image: url(../img/icon_dot_sp.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	width: 26.25rem;
	height: 3.625rem;
	z-index: -1;
}

.page-lower h1::before,
.page-lower h1::after {
	width: 1.875rem;
	height: 3.625rem;
	background-image: url(../img/icon_dot_sp.png);
}

.page-lower h1::before {
	left: 0.9375rem;
}

.page-lower h1::after {
	right: 0.9375rem;
}
.page-lower h2 {
    background-color: #f7f6f2;
    width: 100%;
    text-align: center;
    position: relative;
    border-right: 3px solid #1ea7af;
    border-left: 3px solid #1ea7af;
    font-weight: bold;
    font-size: 18px;
	padding: 1rem 0;
    margin-top: 5rem;
}

.page-lower .inner {
	width: 100%;
	max-width: 1010px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}

.page-lower h3 {
	border-left: 4px solid #1ea7af;
	padding-left: 0.625rem;
	margin-top: 2.5rem;
	font-size: 1.6rem;
}

.page-lower .cm__box {
	margin-top: 1.5rem;
	border: 1px solid var(--Text);
	border-radius: 6px;
	padding: 0.9375rem;
}

.page-lower p {
	font-size: 1.3rem;
	margin-top: 1rem;
}

.page-lower footer {
	margin-top: 60px;
}


/* ==========================================================================
  entry 記事ページ
  =========================================================================== */

body.entry {
	margin: 30px auto 0;
	font-size: 1.4rem;
	font-feature-settings: unset;
}

.pankuzu {
	margin: 0 auto;
	width: 100%;
	max-width: 900px;
	box-sizing: border-box;
	overflow-x: scroll;
	padding-right: 15px;
	padding-left: 15px;
}

.pankuzu ul {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pankuzu ul .pankuzu__item {
	font-size: 1.0rem;
	color: #505050;
	white-space: nowrap;
}

.pankuz ul .pankuzu__item a {
	color: inherit;
}

.pankuzu ul .pankuzu__item a img {
	width: 14px;
	height: 14px;
	margin-right: 7px;
}

.pankuzu ul li.pankuzu__item::before {
	content: "＞";
	display: inline-block;
	margin: 0 5px;
}

.pankuzu ul li.pankuzu__item.pankuzu__item-home {
	margin-left: 0 !important;
}

.pankuzu ul li.pankuzu__item.pankuzu__item-home a {
	display: flex;
}

.pankuzu ul li.pankuzu__item.pankuzu__item-home::before {
	display: none;
}

.entry__header {
	margin: 40px auto 60px;
}

.entry__header h1 {
	position: relative;
	text-align: center;
	max-width: 100vw;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 0 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	line-height: 1.5;
}

.entry__header h1::before,
.entry__header h1::after {
	content: "";
	display: block;
	background-image: url(../img/cm_icon_dot_pc.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	width: 1.875rem;
	height: 3.625rem;
	z-index: -1;
}

.entry__header h1::before,
.entry__header h1::after {
	width: 1.875rem;
	height: 3.625rem;
	background-image: url(../img/cm_icon_dot_sp.png);
}

.entry__header h1::before {
	left: 0.9375rem;
}

.entry__header h1::after {
	right: 0.9375rem;
}

.entry h2 {
	border-top: 6px solid var(--Sub);
	position: relative;
	padding: 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #505050;
	margin: 50px auto 0;
	font-size: 1.8rem;
}

.entry h2::after {
	content: "";
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	background-color: var(--Main);
	height: 6px;
	position: absolute;
	top: -6px;
	left: 50%;
}

.entry h3 {
	font-size: 1.6rem;
	font-weight: bold;
	margin: 50px auto 0;
	border-left: 3px solid var(--Main);
	padding: 5px 10px;
	line-height: 1.5;
}

.entry__inner {
	width: 100%;
	max-width: 900px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}

.entry__img {
	margin: 30px auto 0;
}

.table {
	width: 100%;
	margin: 30px auto;
	border-collapse: collapse;
	border-spacing: 0;
}

.table th,
.table td {
	padding: 15px;
	vertical-align: middle;
	border: 1px solid #505050;
	line-height: 1.5;
}

.table th {
	background-color: #F5F7F9;
	font-weight: bold;
	min-width: 60px;
	width: 26%;
}

.enrty__point {
	margin: 30px auto 0;
	border-radius: 10px;
	overflow: hidden;
}

.entry p {
	margin-top: 1rem;
	line-height: 1.5;
}

.enrty__point-ttl {
	text-align: center;
	color: #fff;
	height: 50%;
	background-image: url(../img/ct_point_bg.png);
	background-size: 30px;
	min-height: 40px;
	font-size: 2.4rem;
	padding: 14px 0;
	box-sizing: border-box;
}

.enrty__point-list {
	background-color: #F5F7F9;
	padding: 15px 15px 30px;
	box-sizing: border-box;
}

.enrty__point-listItem {
	font-size: 1.6rem;
	position: relative;
	padding-left: 25px;
	font-weight: bold;
	margin: 15px auto 0;
}

.enrty__point-listItem::before {
	content: "";
	width: 15px;
	height: 20px;
	background-image: url(../img/ct_point_ico.svg);
	display: inline-block;
	position: absolute;
	left: 0;
}

.enrty__point-listTxt {
	margin: 10px auto 0;
	line-height: 1.5;
	font-weight: normal;
	position: relative;
	left: -25px;
}


.enrty__midashi {
	margin: 20px auto 15px;
	font-weight: bold;
	font-size: 1.6rem;
	padding-left: 36px;
	position: relative;
	line-height: 1.5;
}

.enrty__midashi01,
.enrty__midashi02,
.enrty__midashi03 {
	color: #52C3F2;
	font-weight: bold;
	border-bottom: 1px solid var(--Sub);
	padding-bottom: 5px;
	position: absolute;
	left: 0;
	top: -1px;
}

.enrty__midashi01::before,
.enrty__midashi02::before,
.enrty__midashi03::before {
	display: inline-block;
	content: "0";
	color: var(--Main);
}

.underline,
.marker {
	font-weight: bold;
	display: inline;
    background: linear-gradient(transparent 60%, #ffffd7 60%);
	padding: 0;
}

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

/* ========================================================
地域版
=========================================================*/
.area__name-wrap {
    position: absolute;
    width: 25%;
    height: 30px;
	top: 60.3%;
    right: 9.1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area__name {
    font-size: 1.5rem;
    position: absolute;
    color: #4d3c34;
    letter-spacing: 3px;
    font-weight: 600;
}

/* ========================================================
SECTION SINDAN
=========================================================*/
.top section.sindan .type-wrap {
	background-color: #fff;
}

/* ========================================================
SECTION ONLINE
=========================================================*/
.top section.online .merit__container {
	background-color: #fff;
}

.area section.online {
	margin-top: 10px;
}
/* ========================================================
REASON
=========================================================*/
section.reason{
	padding-top: 22px;
	background-color: #fff;
}

.mukokyu section.reason{
	padding-top: 0px;
}

/* ========================================================
ステマ対策
=========================================================*/

.adTxt {
	text-align: right;
	max-width: 100%;
	padding: 2px 6px;
	/* 左右余白 LPに合わせて調整 */
	margin: 4px auto 6px;
	position: absolute;
	content: "";
	right: 0;
	bottom: 0;
}

.result_page .adTxt {
	padding-top: 4px;
}

.adTxt span {
	font-size: 14px;
	font-weight: bold;
	border: 1px solid var(--Text);
	/* 枠色 変数名がTextでない場合は変更 */
	padding: 2px 14px;
	background-color: #fff;
}

.txt--clinicfor {
	font-size: 12px;
	width: 100%;
	text-align: right;
}

.result_page .txt--clinicfor {
	margin-top: 20px;
}

.txt--clinicfor .notes--clinic {
	font-size: 10px;
	padding: 0 8px;
}

.entry .txt--clinicfor {
	margin-top: -50px;
}

.entry .txt--clinicfor .notes--clinic {
	padding: 0 15px;
}

.entry .adTxt {
	background: #fff;
	padding: 0 15px;
	margin-top: -40px;
}

.entry .txt--clinicfor+.adTxt {
	margin-top: 4px;
}

.entry .adTxt+.entry__inner {
	margin-top: -30px;
}

/* ========================================================
20240411 追加
=========================================================*/
/* 費用タブパーツ */
.cost {
	background: #fff;
	padding: 20px 0 24px;
	position: relative;
  }

  .mukokyu .cost{
	padding-bottom: 10px;
  }

  .chiryo .cost{
	padding-top: 4px;
  }
  .gairai .cost{
	padding-top: 4px;
  }

  .header + .cost {
	margin-top: 0;
  }
  .cost__inner {
    width: 100%;
  }
  .cost__inner > p {
    margin: 12px 0 0;
    /* padding: 0 16px; */
  }  
  .cost-table .cost__inner > p {
	line-height: 1.75;
	margin-top: 16px;
  }
  .cost__ttl {
    display: block;
    width: 100%;
    margin: 0 auto;
  }  
  .cost-table .cost__ttl {
    width: 70%;
  }  
  /* .cost::after {
	content: "";
	display: inline-block;
	border-top: 24px solid var(--Back);
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	position: absolute;
	bottom: -24px;
	left: 0;
	box-shadow: 0 -4px var(--Back);
  } */
  .cost__catch {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	margin: 0;
  }
  .cost__tab {
	padding: 0 14px;
  }
  .cost-table .cost__tab {
	margin-top: 24px;
  }
  .cost__tab-btn {
	display: flex;
	justify-content: space-between;
	gap: 2px;
	margin: 16px 20px 0;
  }
  .cost__tab-btn li {
	border-bottom: 1px solid var(--Back);
	width: calc(94% / 2);
	height: 38px;
	z-index: 1;
  }
  .cost__tab-btn li a {
    font-size: 14px;
	font-weight: bold;
	line-height: 1.14;
	color: #fff;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	display: block;
	background: #20a3af;
	border-radius: 3px 3px 0 0;
	height: 100%;
	padding-top: 10px;
  }
  .cost-table .cost__tab-btn li a {
	color: var(--Text);
	background: #fff;
	border: 1px solid var(--Text);
	border-bottom: none;
  }
  .cost__tab-btn li a:hover {
	opacity: 1;
  }
  .cost__tab-btn li.active a,
  .cost__tab-btn li.active02 a {
	color: #20a3af;
	background: #fff;
	border: 1px solid #20a3af;
	border-bottom: none;
  }
  .cost__tab-btn li.active02 a .cost__tab-btn_active {
	background: linear-gradient(transparent 70%, #fcdcbc 0%);
	display: inline;
	font-weight: bold;
  }
  .cost__tab-btn li.active,
  .cost__tab-btn li.active02 {
	position: relative;
	border-bottom: 1px solid var(--Text);
  }
  .cost__tab-btn li.active::after,
  .cost__tab-btn li.active02::after {
	content: "";
	display: inline-block;
	background: #fff;
	width: calc(100% - 2px);
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 1px;
  }
  .cost__tab-contents {
	background: #fff;
	border-top: 1px solid #20a3af;
	padding: 16px 15px 20px;
	box-shadow: 0px 3px 6px rgb(0, 0, 0, 0.16);
	display: none;
	opacity: 0;
  }
  .cost__tab-contents img {
	display: block;
	width: 100%;
	margin: 0 auto;
  }
  .cost__tab-contents.is-active,
  .cost__tab-contents.is-active02 {
	display: block;
	animation-name: displayAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
  }
  @keyframes displayAnime {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
  /* ========================================================
header ロゴ追加
=========================================================*/
.header__logo{
	height: 33px;
	width: 100%;
	background-color: #fff;
  }
  .header::before{
	position: absolute;
	content: "";
	background: url(../img/logo_medicallist_horizon.png)no-repeat center;
	background-size: 100%;
	top: 0;
	left: 0;
	width: 94px;
	height: 33px;
	background-color: #fff;
	padding: 2px 4px;
	z-index: 100;
  }