@charset "UTF-8";
/* CSS Document */

/*PC共通*/
.ov {
	background-color: #ffffff;
	display: inline-block;
}

.ov:hover img {
	filter:alpha(opacity850)!important;
	-moz-opacity: 0.8!important;
	opacity: 0.8!important;
}

.sp_cont {
	display: none !important;
}


/*header*/
header {
	width: 100%;
	min-width: 1200px;
	height: 90px;
	background: rgba(255,255,255,.8);
	
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100000;
}

header > p.logo {
	position: absolute;
	left: 35px;
	top: 21px;
}

header nav {
	position: absolute;
	right: 205px;
	top: 35px;
	width: 590px;
}

header nav > ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header nav > ul > li {
	font-size: 15px;
	line-height: 1em;
}

header nav > ul > li.sub {
	position: relative;
}

header nav > ul > li.sub::after {
	content: ">";
	font-size: 18px;
	transform: rotate(90deg) scale(0.6,1) translateY(4px);
	position: absolute;
	left: 50%;
	bottom: -20px;
}

header nav > ul > li.sub > div {
	display: none;
	z-index: -1;
}

header nav > ul > li.sub:hover > div {
	display: block;
	width: 100%;
	padding: 115px 0 0;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
}

header nav > ul > li.sub > div ul {
	width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

header nav > ul > li.sub > div ul li {
	margin-bottom: 35px;
	margin-right: 15px;
}

header nav > ul > li.sub > div ul li:nth-child(3n) {
	margin-right: 0;
}

header nav > ul > li.sub > div ul li a {
	width: 348px;
	border-radius: 0;
	text-decoration: none!important;
}

header nav > ul > li a {
	color: #5d5f68;
	text-decoration: none!important;
}

header nav > ul > li a:hover {
	text-decoration: underline!important;
}

header > ul {
	width: 180px;
	height: 90px;
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
}

header > ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	text-decoration: none!important;
}

header > ul li:first-child a {
	background-color: #96afce;
}

header > ul li:nth-child(2) a {
	background-color: #c09db0;
}

header > ul li a span:first-child {
	height: 30px;
}

header > ul li a span:nth-child(2) {
	font-size: 12px;
	color: #fcfcfc;
}

header > ul li a:hover {
	opacity: .8;
}

header > p.sp_menu {
	display: none;
}


/*footer*/
footer {
	padding: 90px 0 0;
	background-color: #7292bb;
	
	font-size: 14px;
	color: #fff;
}

footer a {
	color: #fff;
	text-decoration: none!important;
}

footer a:hover {
	text-decoration: underline!important;
}

footer .ftr01 {
	width: 1140px;
	margin: 0 auto;
	padding-bottom: 30px;
	border-bottom: 2px solid #aebfd5;
	display: flex;
	align-items: flex-end;
}

footer .ftr01 p:first-child {
	width: 360px;
}

footer .ftr01 p:nth-child(2) {
	width: calc(100% - 360px);
	line-height: 1.7em;
}

footer .ftr01 p:nth-child(2) a {
	color: #fff;
}

footer .ftr02 {
	width: 1140px;
	margin: 0 auto;
	padding: 45px 0 100px;
}

footer .ftr02 ul {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 30px;
}

footer .ftr02 ul li {
	padding-right: 15px;
	padding-left: 12px;
	padding-bottom: 15px;
	line-height: 1.7em;
	position: relative;
}

footer .ftr02 ul li::before {
	content: "▶";
	font-size: 9px;
	position: absolute;
	left: 0;
	top: 1px;
}

footer .copy {
	text-align: center;
	background-color: #5d5f68;
	font-size: 15px;
	color: #efefef;
	padding: 25px 0;
	line-height: 1.2em;
}

footer .pagetop {
	position: fixed;
	right: 20px;
	bottom: -100px;
	box-shadow: 0px 0px 8px 0px rgba(39, 39, 39, 0.3);
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
	opacity: 0;
}

footer .pagetop.fixed {
	bottom: 100px;
	opacity: 1;
}


/*SPボタン*/
div.sp_btn {
	display: none;
}


/*SPスライドメニュー*/
div.sp_nav {
	display: none;
}


/*目次*/
#page_list {
	width: 982px;
	margin: 0 auto;
}

#page_list p {
	text-align: center;
	padding: 20px 0;
	border: 1px solid #338fc8;
	font-size: 18px;
	color: #5d5f68;
	line-height: 1em;
	position: relative;
}

#page_list p::after {
	content: "＋";
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
}

#page_list p.close::after {
	content: "ー";
}

#page_list ul {
	border: 1px solid #338fc8;
	border-top: none;
	padding: 65px 90px;
	counter-reset: num 0;
}

#page_list ul li {
	line-height: 1.2em;
	padding-left: 45px;
	padding-bottom: 15px;
	position: relative;
}

#page_list ul li:last-child {
	padding-bottom: 0;
}

#page_list ul li::before {
	counter-increment: num 1;
	content: counter(num)".";
	position: absolute;
	left: 0;
	top: 0;
}

#page_list ul li a {
	color: #646770;
	text-decoration: none;
}

#page_list ul li a:hover {
	text-decoration: underline;
}


/*ボタン*/
.btn01 {
	text-align: center;
}

.btn01 a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 355px;
	height: 50px;
	margin: 0 auto;
	border: 1px solid #2487c4;
	border-radius: 25px;
	background-color: #fff;
	line-height: 1.2em;
	text-decoration: none;
	color: #2f8bc6;
	font-weight: 500;
	position: relative;
}

.btn01 a:hover {
	color: #fff;
	background-color: #2f8bc6;
}

.btn01 a::after {
	content: "";
	width: 12px;
	height: 12px;
	background-image: url("../../images/ico_btn01.webp");
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

.btn01 a:hover::after {
	background-image: url("../../images/ico_btn01_on.webp");
}


/*背景色*/
.bg01 {
	background: linear-gradient(90deg,rgba(213,221,236,1)0%,rgba(233,241,252,1)23%,rgba(237,245,255,1)47%,rgba(229,238,249,1)74%,rgba(229,238,249,1)100%);
}

.bg02 {
	background-color: #f6f6f6;
}


/*見出し前テキスト*/
.h_t01 {
	text-align: center;
	font-size: 75px;
	color: #abbdd6;
	font-weight: 700;
	line-height: 1em;
	margin-bottom: 15px;
}


/*見出し*/
h2.h01 {
	text-align: center;
	font-size: 36px;
	color: #5d5f68;
	line-height: 1.4em;
}

h2.h01 span {
	display: block;
	font-size: 24px;
}

h2.h02 {
	text-align: center;
	font-size: 32px;
	color: #5d5f68;
	line-height: 1.4em;
	position: relative;
}

h2.h02::after {
	content: "";
	width: 45px;
	height: 1px;
	border-top: 1px solid #b9bcbf;
	position: absolute;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
}

h2.h03 {
	font-size: 28px;
	color: #5d5f68;
	line-height: 1.2em;
	padding-bottom: 10px;
	border-bottom: 1px solid #9f9f9f;
}

h3.h01 {
	text-align: center;
	font-size: 32px;
	color: #5d5f68;
	line-height: 1.4em;
	position: relative;
}

h3.h01::after {
	content: "";
	width: 45px;
	height: 1px;
	border-top: 1px solid #b9bcbf;
	position: absolute;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
}

h3.h02 {
	display: flex;
	align-items: center;
	background-color: #92accc;
	height: 58px;
	padding: 0 15px;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
}

h3.h03 {
	font-size: 28px;
	color: #5d5f68;
	line-height: 1.2em;
	padding-bottom: 10px;
	border-bottom: 1px solid #9f9f9f;
}

h4.h01 {
	display: flex;
	align-items: center;
	background-color: #92accc;
	height: 58px;
	padding: 0 15px;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
}

h4.h02 {
	background-color: #eeebe5;
	padding: 15px;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 500;
}


/*わきがの治療法*/
#treatment .box01 {
	width: 1040px;
	margin: 0 auto 45px;
	background-color: #fff;
	padding: 50px 50px 60px;
	box-shadow: 0px 0px 8px 0px rgba(39, 39, 39, 0.3);
}

#treatment .box01:last-of-type {
	margin-bottom: 0;
}

#treatment .box01 .box {
	padding-bottom: 45px;
	position: relative;
}

#treatment .box01 .box p {
	display: inline-block;
	padding-right: 15px;
}

#treatment .box01 .box h3 {
	display: inline-block;
	vertical-align: bottom;
	font-size: 26px;
	color: #6d8cb7;
	line-height: 1em;
	font-weight: 500;
}

#treatment .box01 .box ul {
	display: block;
	padding-top: 25px;
}

#treatment .box01 .box ul li {
	display: inline-block;
	padding: 0 5px;
	font-size: 14px;
	color: #fff;
	line-height: 18px;
	margin-right: 10px;
}

#treatment .box01 .box ul li.c01 {
	background-color: #6d8cb7;
}

#treatment .box01 .box ul li.c02 {
	background-color: #81bb63;
}

#treatment .box01 .box ul li.c03 {
	background-color: #2487c4;
}

#treatment .box01 .box ul li.c04 {
	background-color: #cfb300;
}

#treatment .box01 .box ul li.c05 {
	background-color: #b76db3;
}

#treatment .box01 .box div {
	position: absolute;
	top: -20px;
	right: 0;
}

#treatment .box01 p.t02 {
	padding: 0 0 25px;
}

#treatment .box01 p.t02 a {
	color: #646770;
}

#treatment .box01 > ul {
	display: flex;
	justify-content: space-between;
}

#treatment .box01 > ul > li {
	width: 500px;
}

#treatment .box01 > ul > li > ul {
	padding: 20px 25px 0;
}

#treatment .box01 > ul > li > ul > li {
	padding-bottom: 15px;
	padding-left: 30px;
	position: relative;
}

#treatment .box01 > ul > li > ul > li:last-child {
	padding-bottom: 0;
}

#treatment .box01 > ul > li > ul > li::before {
	content: "●";
	position: absolute;
	left: 0;
	top: 0;
}

#treatment .box01 > ul > li > p {
	padding: 20px 0 25px;
}

#treatment .box01 > ul > li > div {
	text-align: center;
}

#treatment .box01 p.btn01 {
	padding-top: 45px;
}


/*その他のわきが治療*/
#other_odor .box01 {
	width: 1040px;
	margin: 0 auto 40px;
	background-color: #fff;
	padding: 65px 50px 85px;
	box-shadow: 0px 0px 8px 0px rgba(39, 39, 39, 0.3);
	display: flex;
	justify-content: space-between;
}

#other_odor .box01:last-of-type {
	margin-bottom: 0;
}

#other_odor .box01 div:nth-of-type(2) {
	width: 470px;
	padding-top: 10px;
}

#other_odor .box01 div:nth-of-type(2) h3 {
	font-size: 24px;
	color: #6d8cb7;
	font-weight: 500;
	line-height: 1em;
	padding-bottom: 30px;
}

#other_odor .box01 div:nth-of-type(2) p.btn01 {
	padding-top: 25px;
}


/*料金表*/
.price_box,.price_box02 {
	width: 1080px;
	margin: 0 auto 100px;
}

.price_box:last-of-type,.price_box02:last-of-type {
	margin-bottom: 0;
}

.price_box table,.price_box02 table {
	width: 100%;
	table-layout: fixed;
}

.price_box table th,.price_box table td,.price_box02 table th,.price_box02 table td {
	border: 1px solid #999999;
	font-size: 15px;
	background-color: #fff;
}

.price_box table tr:first-child th,.price_box02 table tr:first-child th {
	background-color: #e9f2fc;
	height: 88px;
	text-align: center;
	color: #373d59;
	line-height: 1.2em;
	font-weight: 500;
	font-size: 16px;
}

.price_box table tr:not(:first-child) th {
	background-color: #e9f2fc;
	color: #373d59;
	line-height: 1.2em;
	font-weight: 500;
	padding-left: 20px;
	text-align: left;
}

.price_box02 table tr:not(:first-child) th {
	color: #373d59;
	line-height: 1.2em;
	font-weight: 500;
	padding-left: 20px;
	text-align: left;
}

.price_box table tr:not(:first-child) td,.price_box02 table tr:not(:first-child) td {
	padding: 20px;
	text-align: right;
}

.price_box ul,.price_box02 ul {
	padding-top: 10px;
}

.price_box ul li,.price_box02 ul li {
	padding-left: 1.2em;
	line-height: 1.5em;
	font-size: 15px;
	position: relative;
}

.price_box ul li::before,.price_box02 ul li::before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}

.price_box ul li.red,.price_box02 ul li.red {
	color: #f00;
}


/*odor_kcc*/
#odor_kcc {
	padding: 130px 0;
}

#odor_kcc h2 {
	font-weight: 300;
}

#odor_kcc h2 span span {
	color: #2487c4;
	display: inline;
}

#odor_kcc .box {
	width: 1080px;
	margin: 0 auto;
	padding: 90px 0 0;
	display: flex;
	justify-content: space-between;
}

#odor_kcc .box p {
	width: 700px;
}

#odor_kcc p.btn01 {
	padding-top: 45px;
}


/*faq*/
#faq {
	padding: 140px 0 120px;
}

#faq dl {
	width: 1080px;
	margin: 0 auto;
	padding-top: 50px;
}

#faq dl dt {
	padding: 40px 0 30px 45px;
	color: #2487c4;
	font-weight: 500;
	line-height: 1.8em;
	position: relative;
}

#faq dl dt::before {
	content: "Q.";
	font-size: 36px;
	position: absolute;
	left: 0;
	top: 38px;
}

#faq dl dd {
	padding: 0 0 30px 85px;
	line-height: 1.8em;
	border-bottom: 2px solid #b1b5ba;
	position: relative;
}

#faq dl dd::before {
	content: "A.";
	font-size: 36px;
	position: absolute;
	left: 45px;
	top: -5px;
}

#faq dl dd a {
	color: #646770;
}

#faq p.btn01 {
	padding-top: 65px;
}


/*注意事項*/
#precautions {
	padding: 130px 0 120px;
}

#precautions > p {
	text-align: center;
	padding: 60px 0 40px;
}

#precautions .box {
	width: 1080px;
	margin: 0 auto;
}

#precautions .box p {
	padding: 35px 25px 60px;
}

#precautions .box ul {
	padding: 35px 25px 0;
}

#precautions .box ul li {
	line-height: 1.8em;
	padding-left: 1.5em;
	position: relative;
}

#precautions .box ul li::before {
	content: "■";
	position: absolute;
	left: 0;
	top: 0;
}


/*コラム*/
#column {
	padding: 130px 0 120px;
}

#column .column_list {
	padding-top: 90px;
	width: 1080px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

#column .column_list a {
	display: flex;
	flex-direction: column;
	width: 240px;
	background-color: #f9f9f9;
	margin-right: 40px;
	padding-bottom: 10px;
	text-decoration: none;
}

#column .column_list a:last-child {
	margin-right: 0;
}

#column .column_list a:hover {
	opacity: .8;
}

#column .column_list a div {
	position: relative;
}

#column .column_list a div .cat {
	background-color: #92accc;
	width: 100%;
	height: 26px;
	text-align: center;
	font-size: 14px;
	line-height: 26px;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}

#column .column_list a .tit {
	padding: 20px 15px;
	color: #646770;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
}

#column .column_list a .day {
	padding: 0 15px;
	margin-top: auto;
	font-size: 14px;
	color: #999999;
}


/*クリニック案内*/
#clinic_menu {
	padding: 130px 0 140px;
}

#clinic_menu .box {
	width: 1040px;
	margin: 0 auto;
	padding: 90px 0 0;
	display: flex;
	justify-content: space-between;
}

#clinic_menu .box div:first-of-type {
	width: 450px;
	padding-top: 15px;
}

#clinic_menu .box div:first-of-type p.t01 {
	padding: 25px 0;
	font-size: 21px;
	color: #2487c4;
	font-weight: 500;
}

#clinic_menu .box div:first-of-type p.btn01 {
	padding: 35px 0 40px;
}

#clinic_menu .box div:first-of-type p.t03 {
	padding-top: 25px;
}


/*院長紹介*/
#doctor {
	padding: 120px 0 140px;
}

#doctor .box {
	width: 1040px;
	margin: 0 auto;
	padding-top: 90px;
	display: flex;
}

#doctor .box div:first-of-type {
	width: 490px;
}

#doctor .box div:nth-of-type(2) {
	width: 550px;
}

#doctor .box div:nth-of-type(2) .name {
	font-size: 23px;
	color: #5d5f68;
	line-height: 1em;
	font-weight: 500;
	padding-bottom: 15px;
}

#doctor .box div:nth-of-type(2) h3 {
	font-size: 15px;
	color: #5d5f68;
	line-height: 1.6em;
	font-weight: 500;
}

#doctor .box div:nth-of-type(2) ul {
	padding-left: 1em;
	padding-bottom: 25px;
}

#doctor .box div:nth-of-type(2) ul li {
	font-size: 15px;
	color: #5d5f68;
	line-height: 1.6em;
}


/*無料カウンセリング予約*/
#reserve {
	padding: 140px 0;
}

#reserve p.t01 {
	width: 1080px;
	margin: 0 auto;
	padding: 90px 0 60px;
}

#reserve ul {
	width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

#reserve ul li {
	width: 450px;
	padding: 40px 30px 35px;
	text-align: center;
}

#reserve ul li:first-child {
	background-color: #96afce;
}

#reserve ul li:nth-child(2) {
	background-color: #c09db0;
}

#reserve ul li p.txt01 {
	font-size: 30px;
	color: #fff;
	padding-bottom: 20px;
}

#reserve ul li p.txt02 {
	display: inline-block;
	text-align: left;
	font-size: 15px;
	color: #fff;
	line-height: 1.6em;
}

#reserve ul li p.tel {
	font-family: 'Noto Serif JP', sans-serif;
	font-size: 36px;
	padding-top: 25px;
	line-height: 1em;
}

#reserve ul li p.tel a {
	color: #f2f2f2;
	text-decoration: none;
	padding-left: 85px;
	position: relative;
	left: -15px;
}

#reserve ul li p.tel a::before {
	content: "";
	width: 53px;
	height: 31px;
	background-image: url("../../images/ico_tel.webp");
	position: absolute;
	left: 0;
	top: 13px;
}

#reserve ul li p.tel a span {
	display: inline-block;
	transform: scale(1.2,1);
}

#reserve ul li p.btn {
	padding-top: 30px;
}

#reserve ul li p.btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	height: 70px;
	background-color: #aa668b;
	font-size: 21px;
	color: #fff;
	line-height: 1.15em;
	text-decoration: none;
}

#reserve ul li p.btn a span {
	padding-left: 70px;
	position: relative;
}

#reserve ul li p.btn a span::before {
	content: "";
	width: 48px;
	height: 45px;
	background-image: url("../../images/ico_24.webp");
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#reserve ul li p.btn a:hover {
	opacity: .8;
}


/*recommend*/
#recommend > ul {
	width: 1080px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

#recommend > ul > li {
	width: 522px;
	background-color: #fff;
	padding: 55px 0 100px;
	box-shadow: 0px 0px 8px 0px rgba(39, 39, 39, 0.3);
}

#recommend > ul > li > div {
	width: 448px;
	margin: 0 auto;
	border: 1px solid #2487c4;
	text-align: center;
	padding-top: 25px;
	padding-bottom: 65px;
	position: relative;
}

#recommend > ul > li > div p.t01 {
	font-size: 24px;
	color: #76889f;
	font-weight: 500;
	line-height: 1em;
	background-color: #fff;
	padding: 0 10px;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	top: -14px;
	transform: translateX(-50%);
}

#recommend > ul > li > div p.t01 span {
	font-size: 18px;
}

#recommend > ul > li > div p.logo {
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#recommend > ul > li > div h3 {
	padding-top: 10px;
	font-size: 32px;
	color: #2487c4;
	font-weight: 500;
}

#recommend > ul > li > div ul {
	display: inline-block;
	text-align: left;
	padding-top: 15px;
	padding-bottom: 25px;
}

#recommend > ul > li > div ul li {
	font-size: 18px;
	color: #46a6d2;
	line-height: 1.2em;
	padding-bottom: 15px;
	padding-left: 27px;
	position: relative;
}

#recommend > ul > li > div ul li:last-child {
	padding-bottom: 0;
}

#recommend > ul > li > div ul li::before {
	content: "";
	width: 19px;
	height: 19px;
	background-image: url("../../images/ico_check.webp");
	background-size: cover;
	position: absolute;
	left: 0;
	top: 2px;
}

#recommend > ul > li > div ul li span {
	color: #5d5f68;
}

#recommend > ul > li > div p.price {
	font-size: 62px;
	color: #e16484;
	font-weight: 700;
	font-family: 'Noto Serif JP', sans-serif;
	letter-spacing: -3px;
	line-height: 1em;
}

#recommend > ul > li > div p.price span.txt01 {
	font-size: 21px;
	color: #5d5f68;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
	padding-right: 15px;
	letter-spacing: 0;
}

#recommend > ul > li > div p.price > span.txt02 {
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 0;
	margin-left: 5px;
	position: relative;
}

#recommend > ul > li > div p.price > span.txt02 span {
	font-size: 12px;
	position: absolute;
	left: 50%;
	top: -27px;
	transform: translateX(-50%);
	white-space: nowrap;
}

#recommend > ul > li > div div {
	padding-top: 30px;
}

#recommend > ul > li > div p.btn01 {
	position: absolute;
	left: 50%;
	bottom: -26px;
	transform: translateX(-50%);
}