﻿/*
-------------------------------------------------------

	@@Component
	BulmaやBoostrapを参考にしています
-------------------------------------------------------
*/
/* typography */
.h2_txt--no-style{
	margin-bottom: 0;
	line-height: inherit;
	font-size: inherit;
	font-weight: inherit;
	overflow-wrap: initial;
	display: inherit;
}

/* c-grid */
.c-grid {
	display: flex;
	flex-wrap: wrap;
}

.c-grid__col {
	max-width: 100%;
	flex: 1 1 0%;
}

.c-grid--reverse {
	flex-direction: row-reverse;
}

.c-grid--nowrap {
	flex-wrap: nowrap;
}

.c-grid--left {
	justify-content: flex-start;
}

.c-grid--right {
	justify-content: flex-end;
}

.c-grid--center {
	justify-content: center;
}

.c-grid--between {
	justify-content: space-between;
}

.c-grid--around {
	justify-content: space-around;
}

.c-grid--top {
	align-items: flex-start;
}

.c-grid--bottom {
	align-items: flex-end;
}

.c-grid--middle {
	align-items: center;
}

.c-grid--baseline {
	align-items: baseline;
}

.c-grid--collapse {
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
}

.c-grid--collapse>.c-grid__col {
	padding-right: 0;
	padding-left: 0;
	margin-bottom: 0;
}

.c-grid--margin {
	margin-right: -10px;
	margin-left: -10px;
	margin-bottom: -20px;
}

.c-grid--margin>.c-grid__col {
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 20px;
}

.c-grid--margin-l {
	margin-right: -25px;
	margin-left: -25px;
	margin-bottom: -50px;
}

.c-grid--margin-l>.c-grid__col {
	padding-right: 25px;
	padding-left: 25px;
	margin-bottom: 50px;
}

.c-grid--fill>.c-grid__col {
	display: flex;
}

.c-grid--fill>.c-grid__col>* {
	flex: 0 1 100%;
	max-width: 100%;
}

@media (min-width: 768px) {
	.c-grid--pc-nowrap {
		flex-wrap: nowrap;
	}

	.c-grid--pc-left {
		justify-content: flex-start;
	}

	.c-grid--pc-right {
		justify-content: flex-end;
	}

	.c-grid--pc-center {
		justify-content: center;
	}

	.c-grid--pc-between {
		justify-content: space-between;
	}

	.c-grid--pc-around {
		justify-content: space-around;
	}

	.c-grid--pc-top {
		align-items: flex-start;
	}

	.c-grid--pc-bottom {
		align-items: flex-end;
	}

	.c-grid--pc-middle {
		align-items: center;
	}

	.c-grid--pc-baseline {
		align-items: baseline;
	}

	.c-grid--pc-collapse {
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 0;
	}

	.c-grid--pc-collapse>.c-grid__col {
		padding-right: 0;
		padding-left: 0;
		margin-bottom: 0;
	}

	.c-grid--pc-margin {
		margin-right: -10px;
		margin-left: -10px;
		margin-bottom: -20px;
	}

	.c-grid--pc-margin>.c-grid__col {
		padding-right: 10px;
		padding-left: 10px;
		margin-bottom: 20px;
	}

	.c-grid--pc-margin-l {
		margin-right: -20px;
		margin-left: -20px;
		margin-bottom: -50px;
	}

	.c-grid--pc-margin-l>.c-grid__col {
		padding-right: 20px;
		padding-left: 20px;
		margin-bottom: 50px;
	}

	.c-grid--pc-fill>.c-grid__col {
		display: flex;
	}

	.c-grid--pc-fill>.c-grid__col>* {
		flex: 0 1 100%;
		max-width: 100%;
	}
}

.c-grid__col--1-2,
.c-grid__col--2-4,
.c-grid__col--3-6,
.c-grid__col--4-8,
.c-grid__col--5-10,
.c-grid__col--6-12 {
	flex: 0 1 50%;
	max-width: 50%;
}

.c-grid__col--1-3,
.c-grid__col--2-6,
.c-grid__col--3-9,
.c-grid__col--4-12 {
	flex: 0 1 33.33333%;
	max-width: 33.33333%;
}

.c-grid__col--2-3,
.c-grid__col--4-6,
.c-grid__col--6-9,
.c-grid__col--8-12 {
	flex: 0 1 66.66667%;
	max-width: 66.66667%;
}

.c-grid__col--1-4,
.c-grid__col--2-8,
.c-grid__col--3-12 {
	flex: 0 1 25%;
	max-width: 25%;
}

.c-grid__col--3-4,
.c-grid__col--6-8,
.c-grid__col--9-12 {
	flex: 0 1 75%;
	max-width: 75%;
}

.c-grid__col--1-5,
.c-grid__col--2-10 {
	flex: 0 1 20%;
	max-width: 20%;
}

.c-grid__col--2-5,
.c-grid__col--4-10 {
	flex: 0 1 40%;
	max-width: 40%;
}

.c-grid__col--3-5,
.c-grid__col--6-10 {
	flex: 0 1 60%;
	max-width: 60%;
}

.c-grid__col--4-5,
.c-grid__col--8-10 {
	flex: 0 1 80%;
	max-width: 80%;
}

.c-grid__col--1-6,
.c-grid__col--2-12 {
	flex: 0 1 16.66667%;
	max-width: 16.66667%;
}

.c-grid__col--5-6,
.c-grid__col--10-12 {
	flex: 0 1 83.33333%;
	max-width: 83.33333%;
}

.c-grid__col--1-7 {
	flex: 0 1 14.28571%;
	max-width: 14.28571%;
}

.c-grid__col--2-7 {
	flex: 0 1 28.57143%;
	max-width: 28.57143%;
}

.c-grid__col--3-7 {
	flex: 0 1 42.85714%;
	max-width: 42.85714%;
}

.c-grid__col--4-7 {
	flex: 0 1 57.14286%;
	max-width: 57.14286%;
}

.c-grid__col--5-7 {
	flex: 0 1 71.42857%;
	max-width: 71.42857%;
}

.c-grid__col--6-7 {
	flex: 0 1 85.71429%;
	max-width: 85.71429%;
}

.c-grid__col--1-8 {
	flex: 0 1 12.5%;
	max-width: 12.5%;
}

.c-grid__col--3-8 {
	flex: 0 1 37.5%;
	max-width: 37.5%;
}

.c-grid__col--5-8 {
	flex: 0 1 62.5%;
	max-width: 62.5%;
}

.c-grid__col--7-8 {
	flex: 0 1 87.5%;
	max-width: 87.5%;
}

.c-grid__col--1-9 {
	flex: 0 1 11.11111%;
	max-width: 11.11111%;
}

.c-grid__col--2-9 {
	flex: 0 1 22.22222%;
	max-width: 22.22222%;
}

.c-grid__col--4-9 {
	flex: 0 1 44.44444%;
	max-width: 44.44444%;
}

.c-grid__col--5-9 {
	flex: 0 1 55.55556%;
	max-width: 55.55556%;
}

.c-grid__col--7-9 {
	flex: 0 1 77.77778%;
	max-width: 77.77778%;
}

.c-grid__col--8-9 {
	flex: 0 1 88.88889%;
	max-width: 88.88889%;
}

.c-grid__col--1-10 {
	flex: 0 1 10%;
	max-width: 10%;
}

.c-grid__col--3-10 {
	flex: 0 1 30%;
	max-width: 30%;
}

.c-grid__col--7-10 {
	flex: 0 1 70%;
	max-width: 70%;
}

.c-grid__col--9-10 {
	flex: 0 1 90%;
	max-width: 90%;
}

.c-grid__col--1-11 {
	flex: 0 1 9.09091%;
	max-width: 9.09091%;
}

.c-grid__col--2-11 {
	flex: 0 1 18.18182%;
	max-width: 18.18182%;
}

.c-grid__col--3-11 {
	flex: 0 1 27.27273%;
	max-width: 27.27273%;
}

.c-grid__col--4-11 {
	flex: 0 1 36.36364%;
	max-width: 36.36364%;
}

.c-grid__col--5-11 {
	flex: 0 1 45.45455%;
	max-width: 45.45455%;
}

.c-grid__col--6-11 {
	flex: 0 1 54.54545%;
	max-width: 54.54545%;
}

.c-grid__col--7-11 {
	flex: 0 1 63.63636%;
	max-width: 63.63636%;
}

.c-grid__col--8-11 {
	flex: 0 1 72.72727%;
	max-width: 72.72727%;
}

.c-grid__col--9-11 {
	flex: 0 1 81.81818%;
	max-width: 81.81818%;
}

.c-grid__col--10-11 {
	flex: 0 1 90.90909%;
	max-width: 90.90909%;
}

.c-grid__col--1-12 {
	flex: 0 1 8.33333%;
	max-width: 8.33333%;
}

.c-grid__col--5-12 {
	flex: 0 1 41.66667%;
	max-width: 41.66667%;
}

.c-grid__col--7-12 {
	flex: 0 1 58.33333%;
	max-width: 58.33333%;
}

.c-grid__col--11-12 {
	flex: 0 1 91.66667%;
	max-width: 91.66667%;
}

.c-grid__col--1-1,
.c-grid__col--2-2,
.c-grid__col--3-3,
.c-grid__col--4-4,
.c-grid__col--5-5,
.c-grid__col--6-6,
.c-grid__col--7-7,
.c-grid__col--8-8,
.c-grid__col--9-9,
.c-grid__col--10-10,
.c-grid__col--11-11,
.c-grid__col--12-12 {
	flex: 0 1 100%;
	max-width: 100%;
}

.c-grid__col--auto {
	flex: 1 1 auto;
}

.c-grid__col--justify {
	flex: 1 1 0%;
}

.c-grid__col--fit {
	flex: 0 1 auto;
}

@media (min-width: 768px) {

	.c-grid__col--pc-1-2,
	.c-grid__col--pc-2-4,
	.c-grid__col--pc-3-6,
	.c-grid__col--pc-4-8,
	.c-grid__col--pc-5-10,
	.c-grid__col--pc-6-12 {
		flex: 0 1 50%;
		max-width: 50%;
	}

	.c-grid__col--pc-1-3,
	.c-grid__col--pc-2-6,
	.c-grid__col--pc-3-9,
	.c-grid__col--pc-4-12 {
		flex: 0 1 33.33333%;
		max-width: 33.33333%;
	}

	.c-grid__col--pc-2-3,
	.c-grid__col--pc-4-6,
	.c-grid__col--pc-6-9,
	.c-grid__col--pc-8-12 {
		flex: 0 1 66.66667%;
		max-width: 66.66667%;
	}

	.c-grid__col--pc-1-4,
	.c-grid__col--pc-2-8,
	.c-grid__col--pc-3-12 {
		flex: 0 1 25%;
		max-width: 25%;
	}

	.c-grid__col--pc-3-4,
	.c-grid__col--pc-6-8,
	.c-grid__col--pc-9-12 {
		flex: 0 1 75%;
		max-width: 75%;
	}

	.c-grid__col--pc-1-5,
	.c-grid__col--pc-2-10 {
		flex: 0 1 20%;
		max-width: 20%;
	}

	.c-grid__col--pc-2-5,
	.c-grid__col--pc-4-10 {
		flex: 0 1 40%;
		max-width: 40%;
	}

	.c-grid__col--pc-3-5,
	.c-grid__col--pc-6-10 {
		flex: 0 1 60%;
		max-width: 60%;
	}

	.c-grid__col--pc-4-5,
	.c-grid__col--pc-8-10 {
		flex: 0 1 80%;
		max-width: 80%;
	}

	.c-grid__col--pc-1-6,
	.c-grid__col--pc-2-12 {
		flex: 0 1 16.66667%;
		max-width: 16.66667%;
	}

	.c-grid__col--pc-5-6,
	.c-grid__col--pc-10-12 {
		flex: 0 1 83.33333%;
		max-width: 83.33333%;
	}

	.c-grid__col--pc-1-7 {
		flex: 0 1 14.28571%;
		max-width: 14.28571%;
	}

	.c-grid__col--pc-2-7 {
		flex: 0 1 28.57143%;
		max-width: 28.57143%;
	}

	.c-grid__col--pc-3-7 {
		flex: 0 1 42.85714%;
		max-width: 42.85714%;
	}

	.c-grid__col--pc-4-7 {
		flex: 0 1 57.14286%;
		max-width: 57.14286%;
	}

	.c-grid__col--pc-5-7 {
		flex: 0 1 71.42857%;
		max-width: 71.42857%;
	}

	.c-grid__col--pc-6-7 {
		flex: 0 1 85.71429%;
		max-width: 85.71429%;
	}

	.c-grid__col--pc-1-8 {
		flex: 0 1 12.5%;
		max-width: 12.5%;
	}

	.c-grid__col--pc-3-8 {
		flex: 0 1 37.5%;
		max-width: 37.5%;
	}

	.c-grid__col--pc-5-8 {
		flex: 0 1 62.5%;
		max-width: 62.5%;
	}

	.c-grid__col--pc-7-8 {
		flex: 0 1 87.5%;
		max-width: 87.5%;
	}

	.c-grid__col--pc-1-9 {
		flex: 0 1 11.11111%;
		max-width: 11.11111%;
	}

	.c-grid__col--pc-2-9 {
		flex: 0 1 22.22222%;
		max-width: 22.22222%;
	}

	.c-grid__col--pc-4-9 {
		flex: 0 1 44.44444%;
		max-width: 44.44444%;
	}

	.c-grid__col--pc-5-9 {
		flex: 0 1 55.55556%;
		max-width: 55.55556%;
	}

	.c-grid__col--pc-7-9 {
		flex: 0 1 77.77778%;
		max-width: 77.77778%;
	}

	.c-grid__col--pc-8-9 {
		flex: 0 1 88.88889%;
		max-width: 88.88889%;
	}

	.c-grid__col--pc-1-10 {
		flex: 0 1 10%;
		max-width: 10%;
	}

	.c-grid__col--pc-3-10 {
		flex: 0 1 30%;
		max-width: 30%;
	}

	.c-grid__col--pc-7-10 {
		flex: 0 1 70%;
		max-width: 70%;
	}

	.c-grid__col--pc-9-10 {
		flex: 0 1 90%;
		max-width: 90%;
	}

	.c-grid__col--pc-1-11 {
		flex: 0 1 9.09091%;
		max-width: 9.09091%;
	}

	.c-grid__col--pc-2-11 {
		flex: 0 1 18.18182%;
		max-width: 18.18182%;
	}

	.c-grid__col--pc-3-11 {
		flex: 0 1 27.27273%;
		max-width: 27.27273%;
	}

	.c-grid__col--pc-4-11 {
		flex: 0 1 36.36364%;
		max-width: 36.36364%;
	}

	.c-grid__col--pc-5-11 {
		flex: 0 1 45.45455%;
		max-width: 45.45455%;
	}

	.c-grid__col--pc-6-11 {
		flex: 0 1 54.54545%;
		max-width: 54.54545%;
	}

	.c-grid__col--pc-7-11 {
		flex: 0 1 63.63636%;
		max-width: 63.63636%;
	}

	.c-grid__col--pc-8-11 {
		flex: 0 1 72.72727%;
		max-width: 72.72727%;
	}

	.c-grid__col--pc-9-11 {
		flex: 0 1 81.81818%;
		max-width: 81.81818%;
	}

	.c-grid__col--pc-10-11 {
		flex: 0 1 90.90909%;
		max-width: 90.90909%;
	}

	.c-grid__col--pc-1-12 {
		flex: 0 1 8.33333%;
		max-width: 8.33333%;
	}

	.c-grid__col--pc-5-12 {
		flex: 0 1 41.66667%;
		max-width: 41.66667%;
	}

	.c-grid__col--pc-7-12 {
		flex: 0 1 58.33333%;
		max-width: 58.33333%;
	}

	.c-grid__col--pc-11-12 {
		flex: 0 1 91.66667%;
		max-width: 91.66667%;
	}

	.c-grid__col--pc-1-1,
	.c-grid__col--pc-2-2,
	.c-grid__col--pc-3-3,
	.c-grid__col--pc-4-4,
	.c-grid__col--pc-5-5,
	.c-grid__col--pc-6-6,
	.c-grid__col--pc-7-7,
	.c-grid__col--pc-8-8,
	.c-grid__col--pc-9-9,
	.c-grid__col--pc-10-10,
	.c-grid__col--pc-11-11,
	.c-grid__col--pc-12-12 {
		flex: 0 1 100%;
		max-width: 100%;
	}

	.c-grid__col--pc-auto {
		flex: 1 1 auto;
	}

	.c-grid__col--pc-justify {
		flex: 1 1 0%;
	}

	.c-grid__col--pc-fit {
		flex: 0 1 auto;
	}
}

/* c-container */
.c-container {
	margin: 0 auto;
	padding: 0 30px;
}

.c-container--slim {
	max-width: 940px;
}

.c-container--extra-slim {
	max-width: 860px;
}

.font-notes {
	font-size: 12px !important;
}
@media (max-width: 767px) {
	.font-notes {
		font-size: 18px !important;
		padding: 0 30px;
	}
}

/* c-btn */
.c-btn {
	display: inline-block;
	text-align: left;
	line-height: 1;
	position: relative;
	padding: 17px 50px 17px 30px;
	border: 1px solid #0070bb;
	border-radius: 60px;
	background: url(../img/icon_link_type_01_off.png) no-repeat right 20px center #fff;
	font-weight: 700;
	font-size: 14px;
	color: #1f1f1f;
	transition: .2s;
}

.c-btn--fullwidth {
	color: #0070bb;
	width: 100%;
	text-align: center;
	margin: 3.5em auto;
	display: block;
	max-width: 720px;
}

.c-btn--fullwidth.--margin-small {
	margin: 1.5em auto;
}

.c-btn--blue {
	background: #0070bb;
	color: #fff;
}

@media (max-width: 767px) {
	.c-btn {
		padding: 23px 80px 23px 30px;
		line-height: 1.4;
		margin-right: auto;
		margin-left: auto;
		border-width: 2px;
		background: url(../img/icon_link_type_01_sp_off.png) no-repeat right 30px center #fff;
		font-size: 24px;
	}

	.c-btn--fullwidth {
		border-radius: 0.5em;
		margin: 3em auto;
		padding: 16px;
		font-size: 90%;
		background-image: none !important;
	}

	.p-column-WYSIWYG__panels .c-btn--fullwidth {
		max-width: calc(100% - 60px);
	}

	.p-column-WYSIWYG__panels .c-panel .c-btn--fullwidth {
		max-width: 100%;
	}

	.c-btn--blue {
		background: #0070bb;
		color: #fff;
	}
}

@media (min-width: 768px) {
	.c-btn--fullwidth {
		border-radius: 0.5em;
		padding: 16px;
		font-size: 100%;
		background-position: right 18px center;
		background-image: none !important;
	}

	.c-btn:hover {
		background: url(../img/icon_link_type_01_on.png) no-repeat right 20px center #0070bb;
		color: #fff;
	}

	.c-btn--blue:hover {
		background: #fff;
		color: #0070bb;
	}
}

/* c-lists */
.c-lists--annotation li {
	text-align: left;
	line-height: 1.4;
	font-size: 14px;
	padding-left: 1em;
	text-indent: -1em;
}

@media (max-width: 767px) {
	.c-lists--annotation li {
		font-size: 18px;
	}
}


/* c-checkbox, c-radio */
.c-checkbox,
.c-radio {
	cursor: pointer;
	display: inline-block;
	line-height: 1.25;
	position: relative;
}

.c-checkbox input,
.c-radio input {
	cursor: pointer;
}

.c-checkbox:hover,
.c-radio:hover {
	color: #363636;
}

.c-checkbox[disabled],
.c-radio[disabled],
fieldset[disabled] .c-checkbox,
fieldset[disabled] .c-radio,
.c-checkbox input[disabled],
.c-radio input[disabled] {
	color: #7a7a7a;
	cursor: not-allowed;
}

/* c-media */
.c-media {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.c-media+.c-media {
	margin-top: 50px;
}

.c-media-content {
	width: 100%;
}

.c-media-left,
.c-media-right {
	text-align: center;
	flex: 1;
}

.c-media-title {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.c-media>.c-media-title {
	width: 100%;
	/* media直下の場合は幅100% */
	margin-bottom: 50px;
}

.c-media-title--border-bottom {
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
}

.c-media .subtitle {
	font-size: 14px;
	font-weight: inherit;
	margin-top: 1.5em;
	margin-bottom: .5em;
}

.c-media--border {
	border: solid 1px #0070bb;
	padding: 30px;
	border-radius: 8px;
}

@media (min-width: 768px) {
	.c-media-content {
		max-width: 740px;
	}

	.c-media-content--short {
		max-width: 600px;
	}

	.c-media-content--veryshort {
		max-width: 540px;
	}
}

@media (max-width: 767px) {
	.c-media+.c-media {
		margin-top: 60px;
	}

	.c-media-right,
	.c-media-left {
		position: absolute;
		top: 0;
		width: auto;
	}

	.c-media-right {
		right: 0;
	}

	.c-media-left {
		left: 0;
	}

	.c-media-title {
		font-size: 30px;
	}

	.c-media-title--small {
		font-size: 24px;
	}

	.c-media .subtitle {
		font-size: 24px;
	}

	.c-media--sp-column {
		flex-direction: column;
	}

	.c-media--sp-column .c-media-right,
	.c-media--sp-column .c-media-left {
		position: initial;
		margin-bottom: 0.5em;
		width: 100%;
	}
	.c-media--sp-column .c-media-right.sp-mb40,
	.c-media--sp-column .c-media-left.sp-mb40 {
		margin-bottom: 40px;
	}
}

/* c-card */
.c-card {
	border: 1px solid rgb(220, 232, 241);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	line-height: 1.8;
}

.c-card__head,
.c-card__body {
	padding: 15px 20px;
}


/* c-table */
.c-table td {
	vertical-align: top;
	line-height: 1.6;
}

.c-table .c-table-head--wide-margin th {
	padding-top: 30px;
	padding-bottom: 30px;
}

.c-table--tr-match-height-4 tbody tr {
	height: calc((1em * 1.6 * 4) + (25px * 2));
}

.c-table--tr-match-height-3 tbody tr {
	height: calc((1em * 1.6 * 3) + (25px * 2));
}

.c-table.c-table--vertical-align-middle th,
.c-table.c-table--vertical-align-middle td {
	vertical-align: middle;
}

.c-table-head--dark-gray th {
	background: #798186;
	color: #fff;
}

/* c-section */
.c-section--rich {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.c-section--about {
	min-width: initial;
	margin-top: 80px;
}

.c-section--rich .c-section__head {
	margin: auto;
	padding: 0;
}

.c-section--rich .c-section__subtitle {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	line-height: 1;
}

.c-section--rich .c-section__title {
	margin-bottom: 20px;
	line-height: 1.6;
	font-size: 20px;
	font-weight: 700;
}
.c-section--rich .c-section__title.fwn {
	font-weight: 500;
}

.c-section--rich .c-section__lede {
	margin-bottom: 0.5em;
	line-height: 2.0;
	font-size: 16px;
	font-weight: 700;
}

.c-section--rich .txt {
	line-height: 2.0;
	font-size: 14px;
}

.c-section--rich .c-section__body {
	margin-top: 40px;
	text-align: left;
}

@media (max-width: 767px) {
	.c-section--rich {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.c-section--about .c-section__head {
		padding: 0;
	}

	.c-section--rich .c-section__head {
		padding: 0 30px;
	}

	.c-section--rich .c-section__subtitle {
		font-size: 22px;
	}

	.c-section--rich .c-section__title {
		margin-bottom: 30px;
		font-size: 32px;
	}
	.c-section--rich .c-section__lede {
		line-height: 2;
		font-size: 26px;
	}
	.c-section--rich .txt {
		line-height: 2;
		font-size: 24px;
	}

	.c-section--rich .c-section__body {
		margin: 50px 30px 0;
	}

	.c-section--about .c-section__body {
		margin: 50px 0 0;
	}
}

/* c-tabpanels */
.c-tabpanels input[type="radio"] {
	display: none;
}

.c-tabpanels .tab_wrap {
	text-align: left;
}

.c-tabpanels .tab_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 0 20px;
	border-bottom: 1px solid #0070bb;
}

.c-tabpanels .tab_area label {
	width: 300px;
	padding: 17px 20px;
	border: solid #d1d5d8;
	border-width: 1px 1px 0;
	background-color: #d1d5d8;
	text-align: center;
	font-size: 16px;
	color: #1f1f1f;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
}

.c-tabpanels .panel_area {
	margin-top: 40px;
	padding: 0 60px;
	line-height: 2.2;
	font-size: 14px;
}

.c-tabpanels .tab_area label,
.c-tabpanels--col1 .tab_area label {
	width: 600px;
	padding: 17px 20px;
	border: solid #d1d5d8;
	border-width: 1px 1px 0;
	background-color: #d1d5d8;
	text-align: center;
	font-size: 16px;
	color: #1f1f1f;
	cursor: pointer;
}

.c-tabpanels--col2 .tab_area label {
	width: 450px;
}
.c-tabpanels--col3 .tab_area label {
	width: 300px;
}
.c-tabpanels--col4 .tab_area label {
	width: 220px;
}

.c-tabpanels.inner_point {
	margin-top: 30px;
}
.c-tabpanels.inner_point .tab_area {
	padding: 0;
}
.c-tabpanels.inner_point .panel_area {
	padding: 0;
	margin-top: 20px;
}


@media (max-width: 767px) {
	.c-tabpanels .tab_area {
		display: flex;
		padding: 0 30px;
	}
	.c-tabpanels.inner_point .tab_area {
		padding: 0 15px;
	}

	#body .c-tabpanels .tab_area {
		justify-content: center;
	}
	
	.c-tabpanels .panel_area {
		margin-top: 30px;
		padding: 0 40px;
		line-height: 2.0;
		font-size: 24px;
	}
	.c-tabpanels.inner_point .panel_area {
		font-size: 22px;;
	}

	.c-tabpanels .tab_area label,
	.c-tabpanels--col1 .tab_area label {
		width: 100%;
		padding: 20px 10px;
		line-height: 1.4;
		font-size: 22px;
	}

	.c-tabpanels--col2 .tab_area label {
		width: 49%;
	}
	.c-tabpanels--col3 .tab_area label {
		width: 32%;
	}
	.c-tabpanels--col4 .tab_area label {
		width: 23.5%;
	}

	.c-tabpanels .tab_area label:not(:first-child) {
		margin-left: 2%;
	}
}

.c-tabpanels input[type="radio"]:nth-of-type(1):checked~.tab_area>label:nth-of-type(1),
.c-tabpanels input[type="radio"]:nth-of-type(2):checked~.tab_area>label:nth-of-type(2),
.c-tabpanels input[type="radio"]:nth-of-type(3):checked~.tab_area>label:nth-of-type(3),
.c-tabpanels input[type="radio"]:nth-of-type(4):checked~.tab_area>label:nth-of-type(4) {
	border-color: #0070bb;
	background-color: #fff;
	font-weight: 700;
	color: #0070bb;
}

.c-tabpanels .tab_panel {
	display: none;
}

.c-tabpanels input[type="radio"]:nth-of-type(1):checked~.panel_area>.tab_panel:nth-of-type(1),
.c-tabpanels input[type="radio"]:nth-of-type(2):checked~.panel_area>.tab_panel:nth-of-type(2),
.c-tabpanels input[type="radio"]:nth-of-type(3):checked~.panel_area>.tab_panel:nth-of-type(3),
.c-tabpanels input[type="radio"]:nth-of-type(4):checked~.panel_area>.tab_panel:nth-of-type(4) {
	display: block;
}

/* .c-columnbox */
/*
詳細度の解消まで行う余裕がないため、いったん#bodyで詳細度を上げて対処。
*/
#body .c-columnbox .navigation {
	margin-bottom: 40px;
}

#body .c-columnbox .navigation .catBtn ul {
	display: flex;
	flex-wrap: wrap;
	margin: -20px 0 0 -20px;
}

#body .c-columnbox .navigation .catBtn ul li {
	width: 235px;
	margin: 20px 0 0 20px;
	padding: 18px 20px;
	border: solid 1px #0070bb;
	border-radius: 100px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	background-image: url('../img/icon_arrow_down_off.png');
	background-repeat: no-repeat;
	background-position: right 20px center;
}

#body .c-columnbox .navigation .catBtn ul li:hover,
#body .c-columnbox .navigation .catBtn ul li.current-cat {
	background-color: #0070bb;
	background-image: url('../img/icon_arrow_down_on.png');
	color: #ffffff;
}

#body .c-columnbox .navigation p.right {
	font-size: 12px;
	margin-top: 20px;
	text-align: right;
}

#body .c-columnbox .detaile {
	margin-top: 60px;
	margin-bottom: 60px;
}

#body .c-columnbox__title {
	background-color: #0070bb;
	font-size: 18px;
	padding: 23px 30px;
	color: #ffffff;
	margin-bottom: 40px;
	line-height: 1;
	font-weight: bold;
}

#body .c-columnbox .detaile .qabox li {
	margin-top: 20px;
	text-align: left;
	font-size: 14px;
}

#body .c-columnbox .detaile .qabox li div.accordion_title {
	position: relative;
	padding: 25px 70px 25px 120px;
	border: 1px solid #798186;
	border-radius: 8px;
	background: url('../img/icon_faq_off.png') no-repeat right 30px center #798186;
	font-weight: 700;
	color: #fff;
	line-height: 1.8;
	cursor: pointer;
}

#body .c-columnbox .detaile .qabox li div.accordion_title span.qabox_Q {
	position: absolute;
	top: 50%;
	left: 50px;
	margin-top: -15px;
	font-size: 30px;
	line-height: 1.0;
}

#body .c-columnbox .detaile .qabox li div.accordion_title.active {
	border-color: #0070bb;
	background-color: #fff;
	background-image: url('../img/icon_faq_on.png');
	color: #1f1f1f;
}

#body .c-columnbox .detaile .qabox li div.accordion_title.active span.qabox_Q {
	color: #0070bb;
}

#body .c-columnbox .detaile .qabox li div.accordion_main {
	display: none;
	position: relative;
	padding: 30px 30px 30px 120px;
	line-height: 2.0;
}

#body .c-columnbox .detaile .qabox li div.accordion_main span.qabox_A {
	position: absolute;
	top: 30px;
	left: 52px;
	margin-top: -15px;
	font-size: 30px;
	font-weight: 700;
	color: #0070bb;
}

#body .c-columnbox .detaile .qabox li div.accordion_main a {
	color: inherit;
	text-decoration: underline;
}

#body .c-columnbox .detaile .qabox li div.accordion_main .list_number {
	padding: 0 0 0 25px;
}

#body .c-columnbox .detaile .qabox li div.accordion_main .list_number li {
	list-style: decimal;
	margin: 0 0 10px;
}

#body .c-columnbox .detaile p.right {
	font-size: 14px;
	margin-top: 20px;
	text-align: right;
}

#body .c-columnbox .detaile p.right a {
	color: inherit;
	border-bottom: solid 1px #000000;
}

@media (max-width: 767px) {
	#body .c-columnbox .navigation {
		padding: 30px;
	}

	#body .c-columnbox .navigation .box {
		font-size: 20px;
		border-radius: 0;
	}

	#body .c-columnbox .navigation p.right {
		font-size: 20px;
	}

	#body .c-columnbox .navigation .catBtn ul li {
		width: 280px;
		padding: 20px 30px;
		background-image: url('../img/icon_arrow_down_1f.png');
		background-position: right 15px center;
		font-size: 20px;
	}

	#body .c-columnbox .navigation .catBtn ul li:hover,
	#body .c-columnbox .navigation .catBtn ul li.current-cat {
		background-image: url('../img/icon_arrow_down_w.png');
	}

	#body .c-columnbox .detaile {
		margin-top: 96px;
	}

	#body .c-columnbox__title {
		font-size: 24px;
	}

	#body .c-columnbox .detaile .qabox li {
		font-size: 22px;
	}

	#body .c-columnbox .detaile .qabox li div.accordion_title {
		padding: 25px 70px 25px 80px;
		background: url('../img/icon_faq_off.png') no-repeat right 30px center #798186;
		font-size: 24px;
	}

	#body .c-columnbox .detaile .qabox li div.accordion_title span.qabox_Q {
		left: 30px;
	}

	#body .c-columnbox .detaile .qabox li div.accordion_title.active {
		background-image: url('../img/icon_faq_on.png');
	}

	#body .c-columnbox .detaile .qabox li div.accordion_main {
		padding: 30px 30px 30px 80px;
	}

	#body .c-columnbox .detaile .qabox li div.accordion_main span.qabox_A {
		left: 30px;
		margin-top: -10px;
	}

	#body .c-columnbox .detaile p.right {
		font-size: 20px;
	}
}

#body .c-news-list {
	line-height: 1;
}

#body .c-news-list:first-child {
	margin-top: 0;
}

#body .c-news-list:last-child {
	margin-bottom: -20px;
}

#body .c-news-list .column-detail {
	height: 100%;
	width: 100%;
}

#body .c-news-list a {
	text-decoration: none;
	min-height: 100%;
}



.tr_head {
	margin: auto;
	padding: 0 30px;
}
.tr_head.l-img-800 {
	width: 800px;
	position: relative;
}
.tr_head.l-img-800 img {
	position: absolute;
	bottom: 0;
	left: 0;
}

@media (min-width: 768px) {
	.tr_head {
		padding: 0;
	}
}

@media (max-width: 767px) {
	.tr_head.l-img-800 {
		width: 100%;
	}
	.tr_head.l-img-800 img {
		position: static;
		margin-bottom: 30px;
	}
}


/*
-------------------------------------------------------

	コラム人気記事

-------------------------------------------------------
*/
.c-popular-articles {
	margin-bottom: 80px;
}
.post-template-single-column .postbox .flex .left h3.c-popular-articles__ttl {
	background-color: #0070bb;
    font-size: 18px;
    padding: 23px 30px;
    color: #ffffff;
    line-height: 1;
    font-weight: bold;
	margin-bottom: 0;
}

.c-popular-articles__list {
	background: #e5f0f8;
	padding: 40px 100px;
	display: flex;
	justify-content: space-between;
}

.c-popular-articles__item {
	width: calc((100% - 200px) / 3 );
	display: flex;
	flex-direction: column;
}

.c-popular-articles__img {
	margin-bottom: 20px;
	position: relative;
}

.c-popular-articles__img::before {
	content: "";
	display: block;
	position: absolute;
	top: -5px;
	left: -5px;
	border-bottom: 50px solid transparent;
	border-left: 70px solid #cf9d01;
	z-index: 2;
}

.c-popular-articles__img::after {
	display: block;
	position: absolute;
	top: 3px;
	left: 0;
	color: #fff;
	font-weight: bold;
	z-index: 3;
}

.c-popular-articles__img--no01::after {
	content: "1位";
}

.c-popular-articles__img--no02::after {
	content: "2位";
}

.c-popular-articles__img--no03::after {
	content: "3位";
}

.c-popular-articles__img img {
	height: 120px;
	object-fit: cover;
	width: 100%;
}

.c-popular-articles__btn {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-template-single-column .postbox .flex .left h4.c-popular-articles__item-ttl {
	font-size: 16px;
    font-weight: 700;
    color: #0070bb;
	line-height: 1.3;
	margin-bottom: 15px;
}

.c-popular-articles__detail {
    display: block;
    margin: 0 auto;
    padding: 14px 22px;
    border: 1px solid #0070bb;
    border-radius: 60px;
    background: url(../img/icon_link_type_01_off.png) no-repeat right 11px center #fff;
    font-weight: 700;
    font-size: 14px;
    color: #1f1f1f;
    transition: .2s;
    width: 160px;
}

.c-popular-articles__detail:hover {
    background: url(../img/icon_link_type_01_on.png) no-repeat right 11px center #0070bb;
    color: #fff;
}

@media (max-width: 767px) {
	.c-popular-articles {
		margin-bottom: 50px;
	}

	.post-template-single-column .postbox .flex .left h3.c-popular-articles__ttl {
		font-size: 24px;
	}

	.c-popular-articles__list {
		padding: 50px 40px;
		flex-direction: column;
	}

	.c-popular-articles__item {
		width: 100%;
	}

	.c-popular-articles__item:not(:last-child) {
		margin-bottom: 50px;
	}

	.c-popular-articles__btn {
		flex-direction: row;
	}

	.c-popular-articles__img {
		margin-bottom: 0;
		width: calc(50% - 15px);
	}

	.c-popular-articles__img img {
		height: 140px;
	}

	.c-popular-articles__txt-area {
		width: calc( 50% - 15px);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.post-template-single-column .postbox .flex .left h4.c-popular-articles__item-ttl {
		font-size: 18px;
	}

	.c-popular-articles__detail {
		padding: 16px 30px;
		font-size: 16px;
		width: 180px;
	}

	.c-popular-articles__img::after {
		font-size: 20px;
	}

	.c-popular-articles__img::before {
		border-bottom: 60px solid transparent;
		border-left: 80px solid #cf9d01;
	}
}

@media (min-width: 768px) {
	.post-template-single-column .postbox .flex .left .c-popular-articles__txt-area {
		display: flex;
		flex-direction: column;
		flex: 1;
	}
	
	.post-template-single-column .postbox .flex .left h4.c-popular-articles__item-ttl {
		flex: 2;
	}
}

/*
-------------------------------------------------------

	@@Project

-------------------------------------------------------
*/

/*
-------------------------------------------------------

	固定ページ：ロゴ

-------------------------------------------------------
*/
#header figure img {
	width: 280px;
}

/*
-------------------------------------------------------

	サブビジュアル

-------------------------------------------------------
*/
.sub_main {
	width: 100%;
	min-width: 1200px;
	height: 440px;
	background-color: #edeeef;
	background-repeat: no-repeat;
	background-position: top center;
}

.sub_main .inner {
	display: table;
	height: 100%;
}

.sub_main .inner>div {
	display: table-cell;
	vertical-align: middle;
}

.sub_main .inner>div .h1_box {
	display: table;
	width: 100%;
	height: 300px;
	border-radius: 8px;
	background: #fff;
}

.sub_main .inner>div .h1_box .lead {
	color: red;
	font-weight: bold;
	font-size: 20px;
	margin-top: 20px;
	display: block;
}

.sub_main .inner>div .h1_box>div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.sub_main .inner>div .h1_box>div .h1_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	text-transform: uppercase;
}

.sub_main .inner>div .h1_box>div small {
	font-weight: normal;
}

.sub_main .inner>div .h1_box>div h1 {
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 1px;
}

.sub_main .inner>div .h1_box>div h1 span {
	display: block;
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
}

.sub_main .inner>div .h1_box>div h1 .h1_subtxt {
	margin-top: 14px;
	line-height: 1;
	font-size: 80%;
	font-weight: 700;
	color: #e60012;
}

.sub_main .inner>div .h1_box>div p.txt {
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
}

.sub_main .pankz {
	position: absolute;
	left: 0;
	bottom: 27px;
	font-size: 12px;
}

.sub_main .pankz ul {
	display: flex;
}

.sub_main .pankz ul li {
	position: relative;
}

.sub_main .pankz ul li+li {
	margin-left: 40px;
}

.sub_main .pankz ul li+li:before {
	content: '/';
	position: absolute;
	top: 0;
	left: -25px;
}

.sub_main .pankz ul li a {
	white-space: nowrap;
	color: #1f1f1f;
}

.sub_main .inner>div .h2_box {
	display: table;
	width: 100%;
	height: 300px;
	border-radius: 8px;
	background: #fff;
}

.sub_main .inner>div .h2_box .lead {
	color: red;
	font-weight: bold;
	font-size: 20px;
	margin-top: 20px;
	display: block;
}

.sub_main .inner>div .h2_box>div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.sub_main .inner>div .h2_box>div .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	text-transform: uppercase;
}

.sub_main .inner>div .h2_box>div .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	text-transform: uppercase;
}

.sub_main .inner>div .h2_box>div h2 {
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 1px;
}

.sub_main .inner>div .h2_box>div h2 span {
	display: block;
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
}

.sub_main .inner>div .h2_box>div p.txt {
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
}

/* サブビジュアル背景設定 */
.sub_main.treatment {
	background-image: url('../img/sub_main_treatment.webp');
}
.no-webp .sub_main.treatment {
	background-image: url('../img/sub_main_treatment.jpg');
}

.sub_main.treatment01 {
	background-image: url('../img/sub_main_treatment01.jpg');
}

.sub_main.clinic {
	background-image: url('../img/sub_main_clinic.jpg');
}

.sub_main.flow {
	background-image: url('../img/sub_main_treatment.webp');
}
.no-webp .sub_main.flow {
	background-image: url('../img/sub_main_treatment.jpg');
}

.sub_main.clean {
	background-image: url('../img/sub_main_clean.jpg');
}

.sub_main.onepoint {
	background-image: url('../img/sub_main_onepoint.jpg');
}

.sub_main.p-diagnosis {
	background-image: url('../img/sub_main_diagnosis.jpg');
}

.sub_main.case {
	background-image: url('../img/sub_main_case.jpg');
}

.sub_main.mail {
	background-image: url('../img/sub_main_mail.jpg');
}

.sub_main.contact {
	background-image: url('../img/sub_main_contact.jpg');
}

/*
-------------------------------------------------------

	固定ページ内　ページナビゲーション

-------------------------------------------------------
*/
.under_nav {
	min-width: 1200px;
	margin: 60px 0 80px;
}

.under_nav .h2_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.under_nav .h2_box h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
}

.under_nav .h2_box p {
	font-size: 12px;
}

.under_nav .flex {
	display: flex;
	flex-wrap: wrap;
}

.under_nav .flex a {
	display: table;
	width: 192px;
	height: 100px;
	margin-top: 10px;
	border-radius: 8px;
	border: 1px solid #0070bb;
	background-image: url('../img/icon_under_nav_off.png');
	background-repeat: no-repeat;
	background-position: right 10px bottom 10px;
	font-size: 14px;
	color: #1f1f1f;
}

.under_nav .flex a:hover {
	background-color: #0070bb;
	background-image: url('../img/icon_under_nav_on.png');
	color: #fff;
}

.under_nav .flex a+a {
	margin-left: 10px;
}

.under_nav .flex a:nth-child(-n+5) {
	margin-top: 0;
}

.under_nav .flex a:nth-child(5n+1) {
	margin-left: 0;
}

.under_nav.col-6 .flex a {
	width: 158px;
}
.under_nav.col-6 .flex a:nth-child(-n+6) {
	margin-top: 0;
}
.under_nav.col-6 .flex a:nth-child(5n+1) {
	margin-left: 10px;
}
.under_nav.col-6 .flex a:nth-child(6n+1) {
	margin-left: 0;
}

.under_nav .flex a span {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding-top: 60px;
	background-repeat: no-repeat;
	background-position: center 12px;
}

/* 背景画像 */
.under_nav .flex a.commit span {
	background-image: url('../img/icon_menu_commit_pc.png');
}

.under_nav .flex a.commit:hover span {
	background-image: url('../img/icon_menu_commit_pc_hover.png');
}

.under_nav .flex a.about span {
	background-image: url('../img/icon_menu_about_pc.png');
}

.under_nav .flex a.about:hover span {
	background-image: url('../img/icon_menu_about_pc_hover.png');
}

.under_nav .flex a.price span {
	background-image: url('../img/icon_menu_price_pc.png');
}

.under_nav .flex a.price:hover span {
	background-image: url('../img/icon_menu_price_pc_hover.png');
}

.under_nav .flex a.aftercare span {
	background-image: url('../img/icon_menu_aftercare_pc.png');
}

.under_nav .flex a.aftercare:hover span {
	background-image: url('../img/icon_menu_aftercare_pc_hover.png');
}

.under_nav .flex a.strong {
	font-weight: inherit;
}
.under_nav .flex a.strong span {
	background-image: url('../img/icon_menu_strong_pc.png');
}

.under_nav .flex a.strong:hover span {
	background-image: url('../img/icon_menu_strong_pc_hover.png');
}

.under_nav .flex a.strong.fw_normal{font-weight: inherit;}

.under_nav .flex a.flow span {
	background-image: url('../img/icon_menu_flow_pc.png');
}

.under_nav .flex a.flow:hover span {
	background-image: url('../img/icon_menu_flow_pc_hover.png');
}

.under_nav .flex a.merit span {
	background-image: url('../img/icon_menu_merit_pc.png');
}

.under_nav .flex a.merit:hover span {
	background-image: url('../img/icon_menu_merit_pc_hover.png');
}

.under_nav .flex a.faq span {
	background-image: url('../img/icon_menu_faq_pc.png');
}

.under_nav .flex a.faq:hover span {
	background-image: url('../img/icon_menu_faq_pc_hover.png');
}

.under_nav .flex a.relation span {
	background-image: url('../img/icon_menu_relation_pc.png');
}

.under_nav .flex a.relation:hover span {
	background-image: url('../img/icon_menu_relation_pc_hover.png');
}

.under_nav .flex a.clinic span {
	background-image: url('../img/icon_menu_clinic_pc.png');
}

.under_nav .flex a.clinic:hover span {
	background-image: url('../img/icon_menu_clinic_pc_hover.png');
}

.under_nav .flex a.detaile span {
	background-image: url('../img/icon_menu_clinic_pc.png');
}

.under_nav .flex a.detaile:hover span {
	background-image: url('../img/icon_menu_clinic_pc_hover.png');
}

.under_nav .flex a.map span {
	background-image: url('../img/icon_menu_map_pc.png');
}

.under_nav .flex a.map:hover span {
	background-image: url('../img/icon_menu_map_pc_hover.png');
}

.under_nav .flex a.access span {
	background-image: url('../img/icon_menu_access_pc.png');
}

.under_nav .flex a.access:hover span {
	background-image: url('../img/icon_menu_access_pc_hover.png');
}

.under_nav .flex a.treatment span {
	background-image: url('../img/icon_menu_relation_pc.png');
}

.under_nav .flex a.treatment:hover span {
	background-image: url('../img/icon_menu_relation_pc_hover.png');
}

.under_nav .flex a.history span {
	background-image: url('../img/icon_menu_history_pc.png');
}

.under_nav .flex a.history:hover span {
	background-image: url('../img/icon_menu_history_pc_hover.png');
}

.under_nav .flex a.method span {
	background-image: url('../img/icon_menu_method_pc.png');
}

.under_nav .flex a.method:hover span {
	background-image: url('../img/icon_menu_method_pc_hover.png');
}

.under_nav .flex a.generic span {
	background-image: url('../img/icon_menu_generic_pc.png');
}

.under_nav .flex a.generic:hover span {
	background-image: url('../img/icon_menu_generic_pc_hover.png');
}

.under_nav .flex a.contraindicated span {
	background-image: url('../img/icon_menu_contraindicated_pc.png');
}

.under_nav .flex a.contraindicated:hover span {
	background-image: url('../img/icon_menu_contraindicated_pc_hover.png');
}


/*
-------------------------------------------------------

	施術ページ　こだわり

-------------------------------------------------------
*/
#page .kodawari {
	margin-bottom: 80px;
	min-width: 1200px;
}

#page .kodawari .flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#page .kodawari .flex .box {
	position: relative;
	width: 540px;
}

#page .kodawari .flex .box:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 20px;
	background: #0070bb;
}

#page .kodawari .flex .box:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 1px;
	background: #0070bb;
}

#page .kodawari .flex .box>div:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 20px;
	background: #0070bb;
}

#page .kodawari .flex .box>div:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
	height: 1px;
	background: #0070bb;
}

#page .kodawari .flex .box>div {
	padding: 30px 20px 0;
	text-align: center;
}

#page .kodawari .flex .box>div h2 {
	color: #0070bb;
}

#page .kodawari .flex .box>div p {
	text-align: left;
	line-height: 2.2;
	font-size: 14px;
}

#page .kodawari .flex figure img {
	width: 400px;
	height: auto;
}

/*
-------------------------------------------------------

	施術ページ　この施術について：about

-------------------------------------------------------
*/
.tr_about {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_about .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_about .txt {
	line-height: 2.0;
	font-size: 14px;
}

/* .tr_about.phimosis .tr_intro {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
} */
.tr_about ul {
	margin-top: 40px;
	text-align: left;
}
.tr_about ul.bottom_img {
	margin-bottom: 40px;
}

.tr_about:not(.is-cancel) ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tr_about:not(.is-cancel) ul .flex-start {
	align-items: flex-start;
}


.tr_about:not(.is-cancel) ul li+li {
	margin-top: 50px;
}

.tr_about:not(.is-cancel) ul li div {
	width: 740px;
}
.tr_about ul li.no-image div {
	max-width: 100%;
}

.tr_about:not(.is-cancel) ul li figure {
	width: 260px;
	text-align: center;
}

.tr_about ul li div h3 {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.tr_about ul li div .subtitle {
	font-size: 14px;
	font-weight: inherit;
	margin-top: 1.5em;
	margin-bottom: .5em;
}

.tr_about.phimosis ul li.linkarea {
	width: 260px;
    margin: 40px auto 60px;
}

.tr_about .blue-list-box {
	font-size: 13px;
	line-height: 1.8;
	border: solid 1px #0070bb;
	padding: 30px;
	border-radius: 8px;
}
.tr_about .blue-list-box li {
	margin-bottom: 0.8em;
}
.tr_about .blue-list-box li:last-child {
	margin-bottom: 0;
}
.tr_about .blue-list-box li em {
	display: inline-block;
	font-size: 1.041666em;
	font-weight: bold;
	margin-bottom: 0.25em;
}
.tr_about .blue-list-box + p {
	margin-top: 20px;
}

@media (max-width: 767px) {
	.tr_about ul li div .subtitle {
		font-size: 24px;
	}
	.tr_about.phimosis ul li.linkarea {
		width: 75%;
		margin: 30px auto 80px;
	}
	.tr_about .blue-list-box {
		font-size: 23px;
    margin-left: 0;
    margin-right: 0;
	}
}

.tr_about.power-up ul li div,
.tr_about.long ul li div,
.tr_about.enhancement ul li div,
.tr_about.silicon ul li div,
.tr_about.wakiga ul li div,
.tr_about.condyloma ul li div,
.tr_about.ed ul li div {
	width: 100%;
}

.tr_about.pipecut ul li div {
	width: 620px;
}

.tr_about.power-up ul li div {
	width: 700px;
}

.tr_about.pipecut ul li figure {
	width: 330px;
	text-align: center;
}

@media (max-width: 767px) {
	.tr_about {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_about .h2_txt {
		font-size: 22px;
	}

	.tr_about .txt {
		line-height: 2.0;
		font-size: 24px;
	}
	
	.tr_about.edwave h2 + .txt {
		padding: 0 30px;
	}

	.tr_about ul {
		margin: 50px 30px 0;
	}

	.tr_about:not(.is-cancel) ul li {
		position: relative;
		display: block;
	}

	.tr_about:not(.is-cancel) ul li+li {
		margin-top: 60px;
	}

	.tr_about:not(.is-cancel) ul li div {
		width: 100%;
	}

	.tr_about:not(.is-cancel) ul li figure {
		position: absolute;
		top: 0;
		right: 0;
		width: auto;
	}

	.tr_about ul li div h3 {
		margin-bottom: 15px;
		padding-bottom: 20px;
		font-size: 30px;
	}

	.tr_about:not(.is-cancel) ul li div .txt {
		padding-right: 120px;
	}

	.tr_about.long h3 {
		line-height: 1.4;
		text-align: center;
	}

	.tr_about.power-up ul li div .txt,
	.tr_about.long ul li div .txt,
	.tr_about.enhancement ul li div .txt,
	.tr_about.pipecut ul li div .txt,
	.tr_about.wakiga ul li div .txt,
	.tr_about.condyloma ul li div .txt,
	.tr_about.ed ul li div .txt {
		padding-right: 0;
	}

	.tr_about.pipecut ul li div {
		width: 100%;
	}

	.tr_about.power-up ul li div {
		width: 100%;
	}

	.tr_about.pipecut ul li figure {
		position: static;
		width: 100%;
		margin-top: 30px;
	}

	.tr_about.power-up ul li figure {
		position: static;
		width: 100%;
		margin-top: 30px;
	}
}

/*
-------------------------------------------------------

	手術後の注意事項

-------------------------------------------------------
*/
.tr_post-operation {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

@media (max-width: 767px) {
	.tr_post-operation {
		min-width: 100%;
		margin-bottom: 100px;
	}
}

/*
-------------------------------------------------------

	施術ページ　料金表：about

-------------------------------------------------------
*/
.tr_price {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.medicine.ed.std .tr_price {
	min-width: 1000px;
}

@media (max-width: 767px) {
	.medicine.ed.std .tr_price {
		min-width: 100%;
	}
}

.tr_price .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.price_table {
	width: 100%;
	border: solid #1f1f1f;
	border-width: 1px 0;
}

.price_table+.price_table {
	border-top: none;
}

.price_table tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.price_table caption {
	margin-bottom: 20px;
	text-align: right;
	font-size: 14px;
}

.price_table th {
	line-height: 1.6;
	width: 250px;
	color: #0070bb;
}

.price_table th span.generic {
	background-color: #f5f5f5;
	font-size: 14px;
	padding: 3px 10px;
	color: #1f1f1f;
	margin-left: 10px;
}

.price_table td {
	width: 150px;
	padding: 25px 0;
	border-left: 1px solid #1f1f1f;
	background: #f5f5f6;
	font-weight: 700;
}

.price_table td:last-child,
.price_table--2tolast td:nth-of-type(2),
.price_table--2tolast td:nth-of-type(2)~td,
.price_table--3tolast td:nth-of-type(3),
.price_table--3tolast td:nth-of-type(3)~td {
	width: auto;
	padding: 25px 30px;
	text-align: left;
	background: #fff;
	line-height: 2.0;
	font-weight: 500;
	font-size: 14px;
}

.price_table td span {
	display: block;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	color: #0070bb;
}

.price_table td a {
	color: inherit;
	text-decoration: underline;
}

.price_table td a.price-detail {

	position: relative;
	display: inline-block;
	padding-left: 12px;
	color: #333;
	text-decoration: underline;
}

.price_table td a.price-detail:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #333;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
}

.price_table td a.price-detail:hover {
	text-decoration: none;
}

.tr_price .price_txt {
	font-size: 12px;
	margin-top: 15px;
	text-align: left;
	line-height: 1.6;
}

/* テーブルレイアウト追加 */
.price_table.simple th {
	width: 60%;
	background: #f5f5f6;
	color: inherit;
}
.price_table.simple th span {
	font-size: 12px;
}

/*
------------------------------------------------

	施術ページ　包茎による影響・病気に関して：aboutlisk

-------------------------------------------------------
*/
.tr_aboutlisk.phimosis {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_aboutlisk.phimosis .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

/* .tr_aboutlisk.phimosis .box {
	margin-top: 40px;
	text-align: left;}
.tr_aboutlisk.phimosis .txt {
	text-align: center;
	line-height: 2.0;
	font-size: 14px;} */
.tr_aboutlisk.phimosis .aboutlisk {
	margin-top: 80px;
}

.tr_aboutlisk.phimosis .aboutlisk .tab_wrap {
	text-align: left;
}

.tr_aboutlisk.phimosis .aboutlisk input[type="radio"] {
	display: none;
}

.tr_aboutlisk.phimosis .aboutlisk .tab_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 0 20px;
	border-bottom: 1px solid #0070bb;
}

.tr_aboutlisk.phimosis .aboutlisk .tab_panel {
	display: none;
}

.tr_aboutlisk.phimosis .aboutlisk .tab_panel ul {
	font-size: 96%;
	line-height: 1.8;
}

.tr_aboutlisk.phimosis .aboutlisk .tab_panel li {
	margin-bottom: 0.8em;
}

.tr_aboutlisk.phimosis .aboutlisk .tab_panel em {
	display: inline-block;
	font-size: 1.041666em;
	font-weight: bold;
	margin-bottom: 0.25em;
}

.tr_aboutlisk.phimosis .aboutlisk #aboutlisk_tab1:checked~.tab_area .tab1_label,
.tr_aboutlisk.phimosis .aboutlisk #aboutlisk_tab2:checked~.tab_area .tab2_label {
	border-color: #0070bb;
	background-color: #fff;
	font-weight: 700;
	color: #0070bb;
}

.tr_aboutlisk.phimosis .aboutlisk #aboutlisk_tab1:checked~.panel_area #panel1,
.tr_aboutlisk.phimosis .aboutlisk #aboutlisk_tab2:checked~.panel_area #panel2 {
	display: block;
}

.tr_aboutlisk.phimosis .aboutlisk_list ul {
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}
.tr_aboutlisk.phimosis .aboutlisk_list li {
	width: 50%;
}

@media (max-width: 767px) {
	.tr_aboutlisk.phimosis .h2_txt {
		font-size: 22px;
	}

	.tr_aboutlisk.phimosis {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_aboutlisk.phimosis .aboutlisk_list {
		padding: 0 30px;
	}
	.tr_aboutlisk.phimosis .aboutlisk_list p {
		line-height: 2;
	}
	.tr_aboutlisk.phimosis .aboutlisk_list ul {
		display: block;
		width: fit-content;
		line-height: 2;
	}
	.tr_aboutlisk.phimosis .aboutlisk_list li {
		width: 100%;
	}
}

/*
------------------------------------------------

	施術ページ：important_point

-------------------------------------------------------
*/
.tr_price .important_point {
	margin-top: 80px;
}

.tr_price:not(.is-cancel) .important_point .tab_wrap {
	text-align: left;
}

.tr_price:not(.is-cancel) .important_point input[type="radio"] {
	display: none;
}

.tr_price:not(.is-cancel) .important_point .tab_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	border-bottom: 1px solid #0070bb;
}

.tr_price:not(.is-cancel) .important_point .tab_area {
	padding: 0 20px;
}

.tr_price:not(.is-cancel) .important_point .tab_area label {
	width: 300px;
	padding: 25px 20px;
	border: solid #d1d5d8;
	border-width: 1px 1px 0;
	background-color: #d1d5d8;
	text-align: center;
	font-size: 16px;
	color: #1f1f1f;
	cursor: pointer;
}

.tr_price:not(.is-cancel) .important_point .panel_area {
	margin-top: 40px;
	line-height: 2.2;
	font-size: 14px;
}

.tr_price:not(.is-cancel) .important_point .panel_area {
	padding: 0 60px;
}

.tr_price:not(.is-cancel) .important_point .tab_panel {
	display: none;
}

.tr_price:not(.is-cancel) .important_point #tab1:checked~.tab_area .tab1_label,
.tr_price:not(.is-cancel) .important_point #tab2:checked~.tab_area .tab2_label,
.tr_price:not(.is-cancel) .important_point #tab3:checked~.tab_area .tab3_label {
	border-color: #0070bb;
	background-color: #fff;
	font-weight: 700;
	color: #0070bb;
}

.tr_price:not(.is-cancel) .important_point #tab1:checked~.panel_area #panel1,
.tr_price:not(.is-cancel) .important_point #tab2:checked~.panel_area #panel2,
.tr_price:not(.is-cancel) .important_point #tab3:checked~.panel_area #panel3 {
	display: block;
}

.tr_price:not(.is-cancel).box1 .important_point .tab_area label {
	cursor: initial;
}

/*
-------------------------------------------------------

	施術ページ　アフターケア：aftercare

-------------------------------------------------------
*/
.tr_aftercare {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_aftercare .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_aftercare>div {
	padding: 40px 0;
	border: dashed #bce0e3;
	border-width: 1px 0;
	background: #e5f0f8;
}

.tr_aftercare .inner {
	padding: 50px 100px;
	background: #fff;
	border-radius: 8px;
}

.tr_aftercare ul {
	text-align: left;
	font-size: 14px;
}

.tr_aftercare ul li {
	position: relative;
	padding-left: 1.5em;
	line-height: 2.0;
}

.tr_aftercare ul li:before {
	content: '■';
	position: absolute;
	left: 0;
	top: 0;
	color: #0070bb;
}

.tr_aftercare ul li+li {
	margin-top: 15px;
}

.tr_aftercare .note {
	margin-top: 30px;
	text-align: left;
	font-size: 14px;
	line-height: 1.8;
	color: #0070bb;
}

.link_pdf {
	display: inline-block;
	margin-left: 15px;
	padding-left: 23px;
	background: url('../img/icon_pdf.png') no-repeat left center;
	background-size: 16px auto;
	font-weight: 700;
	color: #c1272d;
}

/*
-------------------------------------------------------

	施術ページ　デザイン力：design

-------------------------------------------------------
*/
.tr_design {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_design .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_design .txt {
	line-height: 2.0;
	font-size: 14px;
}

.tr_design .flex {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: left;
}

.tr_design .flex p {
	width: 540px;
	line-height: 2.2;
	font-size: 14px;
}

.tr_design .flex figure img {
	width: 400px;
	height: auto;
}

.tr_design .flex_2col {
	display: flex;
	justify-content: space-between;
}

.tr_design .flex_2col>div {
	width: 48%;
	text-align: left;
}

.tr_design .flex_2col>div h3 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 18px;
	color: #0070bb;
}

.tr_design .flex_2col>div p {
	margin-bottom: 30px;
	line-height: 2.0;
	font-size: 14px;
}

/*
-------------------------------------------------------

	施術ページ　手術当日の流れ(治療の流れ)：flow

-------------------------------------------------------
*/
.tr_flow {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_flow .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_flow .flow {
	margin-top: 40px;
}

.tr_flow .panel_flow {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.tr_flow .panel_flow:before {
	content: '';
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	background: #1f1f1f;
}

.tr_flow .panel_flow li {
	position: relative;
	width: 31%;
	padding: 20px;
	border: 1px dashed #1f1f1f;
	border-radius: 8px;
	background: #fff;
	z-index: 2;
}

.tr_flow .panel_flow li p {
	line-height: 2.0;
}

.tr_flow .panel_flow li h3 {
	margin-bottom: 5px;
	text-align: center;
}


.flowpage .flow_link {
	padding-top: 20px;
	position: relative;
	z-index: 1;
	margin-bottom: 55px;
}

.flowpage .flow_link ul {
	height: 77px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	text-align: center;
	z-index: 1;
	position: relative;
}

.flowpage .flow_link ul::after {
	content: "";
	border-bottom: solid 1px #0070bb;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.flowpage .flow_link ul li {
	width: 300px;
	margin: 0 20px;
	position: relative;
	z-index: -1;
}

.flowpage .flow_link ul li a,
.flowpage .flow_link ul li span {
	color: #199e91;
	display: block;
	background-color: #e8f5f4;
	margin-bottom: 0;
	font-weight: 700;
	padding: 25px 0;
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
	cursor: pointer;
}

.flowpage .flow_link ul li.active {
	z-index: 1;
}

.flowpage .flow_link ul li.active a,
.flowpage .flow_link ul li.active span {
	padding: 30px 0;
	position: relative;
	border: solid 1px #0070bb;
	border-bottom: none;
	z-index: 2;
	background-color: #ffffff !important;
	color: #0070bb;
	cursor: auto;
}

.flowpage .flow_link ul li.flow_link01 a,
.flowpage .flow_link ul li.flow_link01 span {
	background-color: #e5f0f8;
	color: #0070bb;
}

.flowpage .flow_link ul li.flow_link01.active a,
.flowpage .flow_link ul li.flow_link01.active span {
	border-color: #0070bb;
}

.flowpage #flow_link02.flow_link ul::after {
	border-bottom-color: #199e91;
}

.flowpage .flow_link ul li.flow_link02 a,
.flowpage .flow_link ul li.flow_link02 span {
	background-color: #e8f5f4;
	color: #199e91;
}

.flowpage .flow_link ul li.flow_link02.active a,
.flowpage .flow_link ul li.flow_link02.active span {
	border-color: #199e91;
}



.flowpage.online {
	padding-bottom: 0;
}

.flowpage+.remote.flow,
.flowpage+.remote.flow .inner {
	padding-top: 0;
}

.remote.price .pricebox table.treatment_table td span,
.remote.price table:not([class]) td span {
	color: inherit;
}

/*
-------------------------------------------------------

	施術ページ　包茎手術・治療について：ope

-------------------------------------------------------
*/
.tr_ope {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_ope .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_ope .ope {
	margin-top: 40px;
}

.tr_ope.phimosis .ope .tab_panel em {
	display: inline-block;
	font-size: 1.041666em;
	font-weight: bold;
	margin-bottom: 0.25em;
}

.tr_ope.phimosis .ope .tab_panel h3:not(:first-child) {
	margin-top: 2.5em;
}
.tr_ope.phimosis .ope .tab_panel h3:not(:last-child) {
	margin-bottom: 1.5em;
}
.tr_ope.phimosis .ope .tab_panel ul {
	font-size: 96%;
	line-height: 1.8;
}
.tr_ope.phimosis .ope .tab_panel li {
	margin-bottom: 0.8em;
}

/*
-------------------------------------------------------

	施術ページ　ガイダンス：guidance

-------------------------------------------------------
*/
.tr_guidance {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_guidance .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_guidance .txt {
	line-height: 2.0;
	font-size: 14px;
	text-align: center;
}

/*
-------------------------------------------------------

	施術ページ　メリット：merit

-------------------------------------------------------
*/
.tr_merit {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_merit .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.merit_table {
	width: 100%;
	border: solid #1f1f1f;
	border-width: 1px 0;
}

.merit_table tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.merit_table th {
	white-space: nowrap;
	width: 230px;
}

.merit_table td {
	padding: 25px 30px;
	border-left: 1px solid #1f1f1f;
}

.merit_table td ul {
	text-align: left;
	font-size: 14px;
}

.merit_table td ul li {
	position: relative;
	padding-left: 1.5em;
	line-height: 1.8;
}

.merit_table td ul li:before {
	content: '■';
	position: absolute;
	top: 0;
	left: 0;
}

.merit_table tr:first-child td ul li:before {
	color: #0070bb;
}

.merit_table td ul li+li {
	margin-top: 15px;
}

.merit_table tr:first-child th {
	background: #e5f0f8;
	color: #0070bb;
}

.merit_table tr:last-child th {
	background: #f5f5f6;
}

/*
-------------------------------------------------------

	施術ページ　施術で用いるもの：howto

-------------------------------------------------------
*/
.tr_howto {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_howto .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_howto .box {
	margin-top: 40px;
	text-align: left;
}

.tr_howto .txt {
	text-align: center;
	line-height: 2.0;
	font-size: 14px;
}

/*
/*
------------------------------------------------

	施術ページ　ダウンタイム・副作用に関して：lisk

-------------------------------------------------------
*/
.tr_lisk {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_lisk .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_lisk .box {
	margin-top: 40px;
	text-align: left;
}

.tr_lisk .txt {
	line-height: 2.0;
	font-size: 14px;
}

/*
-------------------------------------------------------

	施術ページ　包茎手術の保証制度：guarantee

-------------------------------------------------------
*/
.tr_guarantee {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_guarantee .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_guarantee .box {
	margin-top: 40px;
	text-align: left;
}

.tr_guarantee .txt {
	line-height: 2.0;
	font-size: 14px;
}

/*
-------------------------------------------------------

	施術ページ　よくある質問：faq

-------------------------------------------------------
*/
.tr_faq {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_faq .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_faq .txt {
	line-height: 2.0;
	font-size: 14px;
}

.tr_faq dl {
	margin-top: 40px;
	text-align: left;
	font-size: 14px;
}

.tr_faq dl dt {
	position: relative;
	padding: 25px 70px 25px 120px;
	border: 1px solid #798186;
	border-radius: 8px;
	background: url('../img/icon_faq_off.png') no-repeat right 30px center #798186;
	font-weight: 700;
	color: #fff;
	line-height: 1.8;
	cursor: pointer;
}

.tr_faq dl dt:before {
	content: 'Q.';
	position: absolute;
	top: 50%;
	left: 50px;
	margin-top: -15px;
	font-size: 30px;
	line-height: 1.0;
}

.tr_faq dl dt.active {
	border-color: #0070bb;
	background-color: #fff;
	background-image: url('../img/icon_faq_on.png');
	color: #1f1f1f;
}

.tr_faq dl dt.active:before {
	color: #0070bb;
}

.tr_faq dl dt a {
	color: #fff;
	text-decoration: underline;
}

.tr_faq dl dt.active a {
	color: #1f1f1f;
}

.tr_faq dl dd {
	display: none;
	position: relative;
	padding: 30px 30px 30px 120px;
	line-height: 2.0;
}

.tr_faq dl dd:before {
	content: 'A.';
	position: absolute;
	top: 30px;
	left: 52px;
	margin-top: -15px;
	font-size: 30px;
	font-weight: 700;
	color: #0070bb;
}

.tr_faq dl dd+dt {
	margin-top: 20px;
}

.tr_faq dl dd a {
	text-decoration: underline;
	color: #1f1f1f;
}

.tr_faq .link {
	text-align: right;
}

.tr_faq .link_type_01 {
	display: inline-block;
	margin-top: 30px;
	text-align: center;
	width: 280px;
}

/*
-------------------------------------------------------

	施術ページ　関連治療一覧：relation

-------------------------------------------------------
*/
.tr_relation {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.tr_relation .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_relation ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	padding: 0 0 0 10px;
}

.tr_relation ul li {
	margin: 20px 0 0 20px;
	width: 220px;
}

.tr_relation ul li a {
	text-align: left;
}

/*
-------------------------------------------------------

	施術ページ　クリニックの特徴：clinic

-------------------------------------------------------
*/
.tr_clinic {
	min-width: 1200px;
	margin-bottom: 60px;
	text-align: center;
}

.tr_clinic:last-child {
	margin-bottom: 80px;
}

.tr_clinic .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.tr_clinic .txt {
	line-height: 2.0;
	font-size: 14px;
}

.tr_clinic .flex {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: left;
}

.tr_clinic .flex p {
	width: 540px;
	line-height: 2.2;
	font-size: 14px;
}

.tr_clinic .flex figure img {
	width: 400px;
	height: auto;
}

.tr_clinic .list {
	margin-top: 60px;
	padding: 40px 100px;
	background: #f3f4f5;
}

.tr_clinic .list h3 {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #1f1f1f;
	font-weight: 700;
	font-size: 20px;
}

.tr_clinic .list ul {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}

.tr_clinic .list ul li {
	margin: 0 20px;
	line-height: 2.0;
}

.tr_clinic .list ul li a {
	font-size: 14px;
	color: #1f1f1f;
}

.tr_clinic .list ul li a:hover {
	text-decoration: underline;
}

/*
-------------------------------------------------------

	施術ページ　関連記事：column

-------------------------------------------------------
*/
.tr_column {
	min-width: 1200px;
	margin-bottom: 80px;
}
.tr_column .inner {
	padding: 50px 100px;
	border-radius: 8px;
	background: #e5f0f8;
}
.tr_column .tr_head {
	text-align: center;
}
.tr_column .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}
.tr_column ul li {
	margin-bottom: 15px;
}
.tr_column ul li:last-child {
	margin-bottom: 0;
}
.tr_column ul li a {
	display: flex;
	align-items: center;
	color: #000;
	font-weight: 700;
}
.tr_column ul li .post_thumbnail {
	width: 80px;
	height: 50px;
	object-fit: cover;
	overflow: hidden;
	margin-right: 20px;
}
.tr_column ul li .post_title {
	flex: 1;
	line-height: 1.6;
	font-size: 14px;
	font-weight: 500;
}

@media (max-width: 767px) {
	.tr_column {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}
	.tr_column .inner {
		padding: 40px 30px;
	}
	.tr_column .h2_txt {
    font-size: 22px;
	}
	.tr_column ul li .post_thumbnail {
		width: 120px;
		height: 80px;
	}	
	.tr_column ul li .post_title {
		font-size: 20px;
		line-height: 1.4;
	}
}

/*
-------------------------------------------------------

	施術ページ　固定ページ限定のフッターコンテンツ

-------------------------------------------------------
*/
.p-footer-CVA__section {
	min-width: 1200px;
	margin-bottom: 40px;
	padding: 50px 0;
	border: dashed #338dc9;
	border-width: 1px 0;
	background: #0070bb;
	text-align: center;
}

.p-footer-CVA__section .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
}

.p-footer-CVA__section h2 {
	color: #fff;
}

.p-footer-CVA__section .txt {
	line-height: 2.0;
	font-size: 14px;
	color: #fff;
}

body.category-column .p-footer-CVA__section--columnbox-select-ed {
	display: none;
}

body.category-column[data-columnbox="cat_ed"] .p-footer-CVA__section--columnbox-select-ed {
	display: block;
}

body.category-column[data-columnbox="cat_ed"] .p-footer-CVA__section--columnbox-select-others {
	display: none;
}


#nav .tc.is-display-when-selected-columnbox-ed {
	display: none;
}

body.category-column[data-columnbox="cat_ed"] #nav .tc.is-display-when-selected-columnbox-ed {
	display: flex;
}

body.category-column[data-columnbox="cat_ed"] #nav .tc.is-hidden-when-selected-columnbox-ed {
	display: none;
}


.p-footer-CVA {
	margin-top: 30px;
}

.p-footer-CVA__body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p-footer-CVA__btn {
	display: table;
	background: #fff;
	background-repeat: no-repeat;
	border-radius: 8px;
	margin-top: 40px;
	font-weight: 700;
	color: #1f1f1f;
	letter-spacing: 1px;
}

.p-footer-CVA__btn:hover {
	background-color: #eee;
}

.p-footer-CVA__btn__text {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.p-footer-CVA__btn--tel,
.p-footer-CVA__btn--mail {
	width: 48%;
	height: 120px;
	margin-top: 0;
	padding-left: 70px;
	font-size: 18px;
}

.p-footer-CVA__btn--counselling,
.p-footer-CVA__btn--remote,
.p-footer-CVA__btn--line {
	width: 31%;
	height: 85px;
}

.p-footer-CVA__btn--tel {
	pointer-events: none;
	background-image: url('../img/icon_footer_cta_tel.png');
	background-position: 50px center;
}

.p-footer-CVA__btn--tel em {
	display: block;
	margin-bottom: 5px;
	font-size: 24px;
	line-height: 1;
}

.p-footer-CVA__btn--tel i {
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding-left: 86px;
	text-indent: -86px;
	line-height: 1.2;
}

.p-footer-CVA__btn--mail {
	background-image: url('../img/icon_footer_cta_mail.png'), url('../img/icon_arrow_footer_cta_big.png');
	background-position: 50px center, right 50px center;
}

.p-footer-CVA__btn--mail em {
	display: block;
	margin-bottom: 5px;
	font-size: 24px;
}

.p-footer-CVA__btn--mail i {
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
}

.p-footer-CVA__btn--counselling {
	background-image: url('../img/icon_nav_counselling_off.png'), url('../img/icon_arrow_footer_cta_small.png');
	background-position: 40px center, right 40px center;
}

.p-footer-CVA__btn--counselling em {
	display: block;
	margin-bottom: 5px;
	font-size: 24px;
	line-height: 1;
}

.p-footer-CVA__btn--counselling i {
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
}

.p-footer-CVA__btn--remote {
	background-image: url('../img/icon_nav_remote_off.png'), url('../img/icon_arrow_footer_cta_small.png');
	background-position: 40px center, right 40px center;
}

.p-footer-CVA__btn--line {
	background-image: url('../img/icon_nav_line_off.png'), url('../img/icon_arrow_footer_cta_small.png');
	background-position: 40px center, right 40px center;
}

.p-footer-CVA__btn--line em {
	display: block;
	margin-bottom: 5px;
	font-size: 24px;
}

.p-footer-CVA__btn--line i {
	display: block;
	margin-top: 10px;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
}

.p-footer-CVA__btn--counselling i {
	display: block;
	margin-top: 10px;
	font-weight: 500;
	font-size: 16px;
}

.p-footer-CVA--tmc .p-footer-CVA__btn--counselling i,
.p-footer-CVA--ltc .p-footer-CVA__btn--counselling i {
	font-size: 14px;
}

.p-footer-CVA__btn--faq-form {
	background-image: url('../img/icon_footer_cta_counselling_big.png'), url('../img/icon_arrow_footer_cta_big.png');
	background-position: 50px center, right 50px center;
}

.p-footer-CVA__btn--faq-form em {
	display: block;
	margin-bottom: 5px;
	font-size: 24px;
}

.p-footer-CVA__btn--faq-form i {
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
}





















@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	body {
		font-size: 24px;
	}


	/*
-------------------------------------------------------

	固定ページ：ロゴ

-------------------------------------------------------
*/
	/* 内部リンク位置調整 */
	.link_po {
		margin-top: 0;
		padding-top: 0;
	}

	/*
-------------------------------------------------------

	サブビジュアル

-------------------------------------------------------
*/
	.sub_main {
		min-width: 100%;
		height: 380px;
		padding: 0 30px;
	}

	.sub_main .inner>div .h1_box {
		height: 250px;
	}

	.sub_main .inner>div .h1_box>div {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
	}

	.sub_main .inner>div .h1_box>div .h1_txt {
		font-size: 22px;
	}

	.sub_main .inner>div .h1_box>div h1 {
		font-size: 26px;
	}

	.sub_main .inner>div .h1_box>div h1 span {
		margin-top: 25px;
		font-size: 18px;
		font-weight: 500;
	}

	.sub_main .inner>div .h1_box>div p.txt {
		margin-top: 25px;
		font-size: 18px;
		font-weight: 500;
	}

	.sub_main .inner>div .h2_box {
		height: 250px;
	}

	.sub_main .inner>div .h2_box>div {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
	}

	.sub_main .inner>div .h2_box>div .h2_txt {
		font-size: 22px;
	}

	.sub_main .inner>div .h2_box>div h2 {
		font-size: 32px;
	}

	.sub_main .inner>div .h2_box>div h2 span {
		margin-top: 25px;
		font-size: 18px;
		font-weight: 500;
	}

	.sub_main .inner>div .h2_box>div p.txt {
		margin-top: 25px;
		font-size: 18px;
		font-weight: 500;
	}

	.sub_main .pankz {
		width: 580px;
		overflow: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		bottom: 18px;
		font-size: 18px;
	}

	/* サブビジュアル背景設定 */
	.sub_main.treatment {
		background-image: url('../img/sub_main_treatment.webp');
	}
	.no-webp .sub_main.treatment {
		background-image: url('../img/sub_main_treatment.jpg');
	}

	/*
-------------------------------------------------------

	固定ページ内　ページナビゲーション

-------------------------------------------------------
*/
	.under_nav {
		min-width: 100%;
		margin: 60px 0 100px;
	}

	.under_nav.pcnone {
		display: block;
	}

	.under_nav .inner {
		padding: 0 30px;
	}

	.under_nav .h2_box {
		display: block;
		margin-bottom: 30px;
	}

	.under_nav .h2_box h2 {
		margin: 0 0 20px;
		font-size: 32px;
	}

	.under_nav .h2_box p {
		text-align: center;
		font-size: 18px;
	}

	.under_nav .h2_box>div {
		position: relative;
		display: flex;
		margin-bottom: 30px;
		padding-right: 30px;
		justify-content: flex-end;
		height: 70px;
	}

	.under_nav .h2_box>div:before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -1px;
		width: 100%;
		height: 2px;
		background: #0070bb;
	}

	.under_nav .h2_box>div span {
		position: relative;
		display: table;
		width: 280px;
		height: 100%;
		border-radius: 60px;
		border: 2px solid #0070bb;
		background-color: #fff;
		background-image: url('../img/icon_index_off.png');
		background-repeat: no-repeat;
		background-position: right 30px center;
		font-size: 24px;
		font-weight: 700;
		z-index: 2;
		cursor: pointer;
	}

	.under_nav .h2_box>div span em,
	.under_nav .h2_box>div span i {
		display: table-cell;
		vertical-align: middle;
		padding-left: 40px;
	}

	.under_nav .h2_box>div span i {
		display: none;
	}

	.under_nav .h2_box>div.active span {
		background-color: #0070bb;
		background-image: url('../img/icon_index_on.png');
		color: #fff;
	}

	.under_nav .h2_box>div.active span i {
		display: table-cell;
	}

	.under_nav .h2_box>div.active em {
		display: none;
	}

	.under_nav .flex {
		display: flex;
		border: solid #0070bb;
		border-width: 2px 0 0 2px;
	}

	.under_nav .flex a {
		display: table;
		width: 50%;
		height: 80px;
		margin-top: 0;
		border-radius: 0;
		border: solid #0070bb;
		border-width: 0 2px 2px 0;
		background-image: url('../img/icon_arrow_down_1f.png');
		background-repeat: no-repeat;
		background-position: right 15px center;
		line-height: 1.2;
	}

	.under_nav .flex a:hover {
		background-color: #fff;
		background-image: url('../img/icon_arrow_down_1f.png');
		color: #1f1f1f;
	}

	.under_nav .flex a+a {
		margin-left: 0;
	}

	.under_nav.col-6 .flex a {
		width: 50%;
	}
	.under_nav.col-6 .flex a:nth-child(5n+1) {
		margin-left: 0;
	}

	.under_nav .flex a span {
		background: none !important;
		padding: 0 20px;
		text-align: left;
		font-size: 22px;
		font-weight: 700;
	}

	/*
-------------------------------------------------------

	施術ページ　こだわり

-------------------------------------------------------
*/
	#page .kodawari {
		margin-bottom: 100px;
		min-width: 100%;
		padding: 0 30px;
	}

	#page .kodawari .flex {
		display: block;
		padding: 0 10px;
	}

	#page .kodawari .flex .box {
		width: 100%;
	}

	#page .kodawari .flex .box:before {
		width: 2px;
	}

	#page .kodawari .flex .box:after {
		height: 2px;
	}

	#page .kodawari .flex .box>div:before {
		width: 2px;
	}

	#page .kodawari .flex .box>div:after {
		height: 2px;
	}

	#page .kodawari .flex .box>div {
		padding: 30px 0 0;
	}

	#page .kodawari .flex .box>div p {
		margin-bottom: 40px;
		line-height: 2.0;
		font-size: 24px;
	}

	#page .kodawari .flex figure img {
		width: 100%;
	}

	/*
-------------------------------------------------------

	施術ページ　料金表：about

-------------------------------------------------------
*/
	.tr_price {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_price .h2_txt {
		font-size: 22px;
	}

	.price_table:not(.simple),
	.price_table:not(.simple) tbody,
	.price_table:not(.simple) th,
	.price_table:not(.simple) td {
		display: block;
	}

	.price_table:not(.simple) tr {
		display: flex;
		flex-wrap: wrap;
	}

	.price_table {
		width: 100%;
		border-top: none;
	}

	.price_table .click {
		border-top: 1px solid #1f1f1f;
	}

	.price_table+.price_table .click {
		border-top: none;
	}

	.price_table .click.active .disnoe {
		display: block !important;
	}

	.price_table caption {
		width: 100%;
		display: block;
		margin-bottom: 40px;
		font-size: 18px;
	}

	.price_table th {
		width: 100%;
		padding: 35px 30px;
		background: no-repeat right 30px center #e5f0f8;
		text-align: left;
		font-size: 26px;
	}

	.price_table tr.no-click th {
		border-top: 1px solid #1f1f1f;
    border-bottom: 1px dashed #1f1f1f;
	}

	.price_table tr.click th {
		background-image: url('../img/icon_price_table_off.png');
	}

	.price_table tr.click.active th {
		background-image: url('../img/icon_price_table_on.png');
	}



	.price_table th span.generic {
		font-size: 22px;
		padding: 5px 15px;
		margin-left: 15px;
	}

	.price_table td {
		width: 170px;
		padding: 25px 0;
		border-left: 0;
		font-size: 20px;
		line-height: 2.0;
	}

	.price_table td:last-child {
		width: 410px;
		padding: 25px 30px;
		font-size: 18px;
	}

	.price_table td span {
		font-size: 24px;
	}

	.tr_price.ed .price_table td.w50 {
		width: 50%;
	}

	.tr_price.ed .price_table td.w50+.w50 {
		border-left: 1px dashed #1f1f1f;
	}

	.tr_price.ed .price_table td.w100 {
		width: 100%;
	}

	.tr_price .price_txt {
		font-size: 20px;
	}

	.tr_price.ed .important_point label {
		width: 100% !important;
	}

	.tr_price .important_point {
		margin-top: 50px;
	}

	.tr_price:not(.is-cancel) .important_point .tab_area {
		justify-content: space-between;
	}

	.tr_price:not(.is-cancel) .important_point .tab_area label {
		width: 32%;
		padding: 20px 10px;
		line-height: 1.4;
		font-size: 22px;
	}

	.tr_price:not(.is-cancel) .important_point .panel_area {
		margin-top: 30px;
		line-height: 2.0;
		font-size: 22px;
	}

	.tr_price:not(.is-cancel) .important_point .panel_area {
		padding: 0;
	}

	.tr_price:not(.is-cancel).box1 .important_point .tab_area {
		justify-content: center;
	}

	.tr_price:not(.is-cancel).box1 .important_point .tab_area label {
		width: 300px;
	}

	.price_table.simple {
		border-top: solid #1f1f1f;
		border-width: 1px;
	}
	.price_table.simple th span {
		display: block;
		font-size: 16px;
	}
	.price_table.simple td:last-child {
		width: auto;
	}

	.price_slider-sp {
		width: 100%;
		overflow-x: scroll;
	}
	.price_table.simple.phimosis th {
		min-width: 400px;
		text-align: center;
	}
	.price_table.simple.phimosis th:first-child {
		min-width: 100px;
	}
	.price_table.simple.phimosis th,
	.price_table.simple.phimosis td {
		border-left: solid #1f1f1f 1px;
		border-right: solid #1f1f1f 1px;
	}
	.price_table.simple.phimosis td {
		padding: 25px 20px;
		background: #fff;
		font-weight: 500;
	}
	.price_table.simple.phimosis td:first-child {
		font-weight: 700;
	}
	.price_table.simple.phimosis td.td-center {
		text-align: center;
	}
	.price_table.simple.phimosis td.td-left {
		text-align: left;
	}
	.price_table th.-center,
	.price_table td.-center{
		display: flex;
    align-items: center;
    justify-content: center;
	}
	/*
-------------------------------------------------------

	施術ページ　アフターケア：aftercare

-------------------------------------------------------
*/
	.tr_aftercare {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_aftercare .h2_txt {
		font-size: 22px;
	}

	.tr_aftercare>div {
		padding: 40px 30px;
	}

	.tr_aftercare .inner {
		padding: 50px 30px;
	}

	.tr_aftercare ul {
		font-size: 22px;
	}

	.tr_aftercare ul li {
		position: relative;
		padding-left: 1.5em;
		line-height: 1.8;
	}

	.tr_aftercare ul li+li {
		margin-top: 20px;
	}

	.tr_aftercare .note {
		font-size: 22px;
	}

	.link_pdf {
		display: block;
		margin-left: 0;
		padding-left: 35px;
		background-size: 24px auto;
	}

	/*
-------------------------------------------------------

	施術ページ　デザイン力：design

-------------------------------------------------------
*/
	.tr_design {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_design .h2_txt {
		font-size: 22px;
	}

	.tr_design .txt {
		line-height: 2.0;
		font-size: 24px;
	}

	.tr_design .flex {
		flex-wrap: wrap;
		padding: 0 30px;
		margin-bottom: 40px;
	}

	.tr_design .flex p {
		order: 1;
		width: 100%;
		margin-top: 30px;
		line-height: 2.0;
		font-size: 24px;
	}

	.tr_design .flex figure img {
		width: 100%;
	}

	.tr_design .flex+figure {
		background: #f7f7f7;
	}

	.tr_design .flex_2col {
		display: block;
		margin-top: 80px;
	}

	.tr_design .flex_2col>div {
		width: 100%;
		padding: 0 30px;
	}

	.tr_design .flex_2col>div+div {
		margin-top: 50px;
	}

	.tr_design .flex_2col>div h3 {
		margin-bottom: 20px;
		font-size: 26px;
	}

	.tr_design .flex_2col>div p {
		margin-bottom: 40px;
		font-size: 24px;
	}

	.tr_design .flex_2col>div figure {
		display: block;
		width: 640px;
		margin: 0 -30px;
		text-align: center;
		background: #f7f7f7;
	}

	/*
-------------------------------------------------------

	施術ページ　手術当日の流れ(治療の流れ)：flow

-------------------------------------------------------
*/
	.tr_flow {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_flow .h2_txt {
		font-size: 22px;
	}

	.tr_flow .flow {
		margin-top: 40px;
	}

	.tr_flow .panel_flow {
		position: relative;
		display: block;
		margin-top: 40px;
	}

	.tr_flow .panel_flow:before {
		top: auto;
		left: 50%;
		width: 1px;
		height: 100%;
	}

	.tr_flow .panel_flow li {
		width: 100%;
		padding: 25px 30px;
	}

	.tr_flow .panel_flow li+li {
		margin-top: 40px;
	}

	.tr_flow .panel_flow li p {
		font-size: 22px;
		line-height: 2.0;
	}

	.flowpage .flow_link ul {
		height: 130px;
		justify-content: space-around;
	}

	.flowpage .flow_link ul li {
		width: 280px;
		font-size: 24px;
		line-height: 1.4;
		margin-left: 10px;
		margin-right: 10px;
	}

	/*
-------------------------------------------------------

	施術ページ　包茎手術・治療について：ope

-------------------------------------------------------
*/
	.tr_ope {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_ope .h2_txt {
		font-size: 22px;
	}

	.tr_ope .ope {
		margin-top: 40px;
	}

	/*
-------------------------------------------------------

	施術ページ　ガイダンス：guidance

-------------------------------------------------------
*/
	.tr_guidance {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.tr_guidance .h2_txt {
		font-size: 22px;
	}

	.tr_guidance .txt {
		font-size: 24px;
		text-align: left;
	}

	/*
-------------------------------------------------------

	施術ページ　メリット：merit

-------------------------------------------------------
*/
	.tr_merit {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.tr_merit .h2_txt {
		font-size: 22px;
	}

	.merit_table th {
		width: 160px;
		font-size: 20px;
	}

	.merit_table td {
		padding: 25px 0 25px 25px;
	}

	.merit_table td ul {
		font-size: 22px;
	}

	.merit_table td ul li {
		line-height: 1.8;
	}

	.merit_table tr:first-child td ul li:before {
		color: #0070bb;
	}

	.merit_table td ul li+li {
		margin-top: 20px;
	}

	/*
-------------------------------------------------------

	施術ページ　施術で用いるもの：howto

-------------------------------------------------------
*/
	.tr_howto {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.tr_howto .h2_txt {
		font-size: 22px;
	}

	.tr_howto .txt {
		text-align: left;
		font-size: 24px;
	}

	/*
-------------------------------------------------------

	施術ページ　ダウンタイム・副作用に関して：lisk

-------------------------------------------------------
*/
	.tr_lisk {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.tr_lisk .h2_txt {
		font-size: 22px;
	}

	.tr_lisk .txt {
		font-size: 24px;
	}

	/*
-------------------------------------------------------

	施術ページ　包茎手術の保証制度：guarantee

-------------------------------------------------------
*/
	.tr_guarantee {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.tr_guarantee .h2_txt {
		font-size: 22px;
	}

	.tr_guarantee .txt {
		font-size: 24px;
	}

	/*
-------------------------------------------------------

	施術ページ　よくある質問：faq

-------------------------------------------------------
*/
	.tr_faq {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.tr_faq .h2_txt {
		font-size: 22px;
	}

	.tr_faq .txt {
		display: none;
	}

	.tr_faq dl {
		font-size: 22px;
	}

	.tr_faq dl dt {
		padding: 25px 70px 25px 80px;
		background: url('../img/icon_faq_off.png') no-repeat right 30px center #798186;
		font-size: 24px;
	}

	.tr_faq dl dt:before {
		left: 30px;
	}

	.tr_faq dl dt.active {
		background-image: url('../img/icon_faq_on.png');
	}

	.tr_faq dl dd {
		padding: 30px 30px 30px 80px;
	}

	.tr_faq dl dd:before {
		left: 30px;
		margin-top: -10px;
	}

	.tr_faq .link_type_01 {
		display: inline-block;
		margin-top: 30px;
		text-align: left;
		width: 340px;
	}

	/*
-------------------------------------------------------

	施術ページ　関連治療一覧：relation

-------------------------------------------------------
*/
	.tr_relation {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_relation .h2_txt {
		font-size: 22px;
	}

	.tr_relation ul {
		display: block;
		margin-top: 40px;
		padding: 0 30px;
	}

	.tr_relation ul li {
		margin: 0;
		width: 100%;
	}

	.tr_relation ul li+li {
		margin-top: 20px;
	}

	.tr_relation ul li a {
		text-align: left;
	}

	/*
-------------------------------------------------------

	施術ページ　クリニックの特徴：clinic

-------------------------------------------------------
*/
	.tr_clinic {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 60px;
	}

	.tr_clinic:last-child {
		margin-bottom: 100px;
	}

	.tr_clinic .h2_txt {
		font-size: 22px;
	}

	.tr_clinic .txt {
		font-size: 24px;
	}

	.tr_clinic .flex {
		display: flex;
		flex-wrap: wrap;
	}

	.tr_clinic .flex p {
		order: 1;
		width: 100%;
		margin-top: 30px;
		line-height: 2.0;
		font-size: 24px;
	}

	.tr_clinic .flex figure img {
		width: 100%;
	}

	.tr_clinic .list {
		padding: 40px 30px 30px;
	}

	.tr_clinic .list h3 {
		margin-bottom: 30px;
		line-height: 1.6;
		font-size: 24px;
	}

	.tr_clinic .list ul {
		text-align: left;
	}

	.tr_clinic .list ul li {
		position: relative;
		width: 50%;
		margin: 0;
		text-align: center;
		line-height: 1.0;
	}

	.tr_clinic .list ul li:before {
		content: '';
		position: absolute;
		top: 50%;
		margin-top: -12px;
		right: 0;
		width: 1px;
		height: 24px;
		background: #1f1f1f;
	}

	.tr_clinic .list ul li:nth-child(2n):before {
		display: none;
	}

	.tr_clinic .list ul li a {
		display: block;
		padding: 20px 0;
		font-size: 24px;
	}

	/*
-------------------------------------------------------

	施術ページ　固定ページ限定のフッターコンテンツ

-------------------------------------------------------
*/
	.p-footer-CVA__section {
		min-width: 100%;
		margin-bottom: 0;
		padding: 50px 30px;
	}

	.p-footer-CVA__section--narrow {
		padding: 50px;
	}

	.p-footer-CVA__list {
		display: flex;
		color: #fff;
		justify-content: space-between;
		margin-bottom: 20px;
	}

	.p-footer-CVA__item {
		width: calc((100% - 30px) / 3);
		border: solid 2px #fff;
		border-radius: 6px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 14px 0;
		font-size: 22px;
		line-height: 1.5;
		font-weight: bold;
		font-feature-settings: "palt";
	}

	.p-footer-CVA__section .h2_txt {
		font-size: 22px;
	}

	.p-footer-CVA__section .txt {
		font-size: 24px;
	}

	.p-footer-CVA__btn {
		margin-top: 20px;
	}

	.p-footer-CVA__btn__text {
		padding-top: 100px;
		font-size: 18px;
		font-weight: 700;
	}

	.p-footer-CVA__btn--counselling,
	.p-footer-CVA__btn--remote,
	.p-footer-CVA__btn--line {
		width: 48.5%;
		height: 170px;
	}

	.p-footer-CVA__btn--tel {
		pointer-events: auto;
		width: 100%;
		height: 120px;
		background-image: url('../img/icon_footer_cta_tel.png');
		background-position: 50px center;
	}

	.p-footer-CVA__btn--tel span {
		padding-top: 0;
	}

	.p-footer-CVA__btn--tel em {
		margin-bottom: 8px;
		font-size: 40px;
	}

	.p-footer-CVA__btn--tel i {
		font-size: 20px;
		padding-left: 107px;
		text-indent: -107px;
	}

	.p-footer-CVA__btn--mail {
		width: 48.5%;
		height: 170px;
		padding: 0;
		margin-top: 20px;
		background-image: url('../img/icon_footer_cta_mail.png'), url('../img/icon_arrow_footer_cta_big.png');
		background-position: center 30px, right 20px center;
	}

	/* .p-footer-CVA__btn--mail em {
		margin-bottom: 8px;
		font-size: 40px;
	}

	.p-footer-CVA__btn--mail i {
		font-size: 20px;
	} */

	.p-footer-CVA__btn--counselling {
		background-image: url('../img/icon_nav_counselling_sp_off.png'), url('../img/icon_arrow_footer_cta_small.png');
		background-position: center 30px, right 20px center;
	}

	.p-footer-CVA__btn--remote {
		background-image: url('../img/icon_nav_remote_sp_off.png'), url('../img/icon_arrow_footer_cta_small.png');
		background-position: center 30px, right 20px center;
	}

	.p-footer-CVA__btn--line {
		background-image: url('../img/icon_nav_line_sp_off.png'), url('../img/icon_arrow_footer_cta_small.png');
		background-position: center 30px, right 20px center;
	}

	.p-footer-CVA__btn--line em {
		margin-bottom: 8px;
		font-size: 40px;
	}

	.p-footer-CVA__btn--line i {
		font-size: 20px;
	}

	/*----------------------------------------------------------*/
}

/*	クリニック紹介ページ：about_us
===============================================================*/
.kodawari.about_us {
	margin-bottom: 80px;
	padding-top: 80px;
	text-align: center;
}

.kodawari.about_us .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.kodawari.about_us .txt {
	margin-bottom: 60px;
	line-height: 2.0;
	font-size: 14px;
}

.kodawari.about_us ul {
	margin-top: 40px;
	text-align: left;
}

.kodawari.about_us ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.kodawari.about_us ul li+li {
	margin-top: 50px;
}

.kodawari.about_us ul li div {
	width: 740px;
}

.kodawari.about_us .flex+.flex {
	margin-top: 80px;
}

.kodawari.about_us .flex:nth-child(odd) .box {
	order: 2;
}

.kodawari.about_us .flex .box .txt {
	margin-bottom: 20px;
}

#page .kodawari.about_us .flex .box .txt01 {
	font-size: 20px;
	margin-left: 80px;
}

.kodawari.about_us .flex .box>div {
	text-align: right !important;
}

.kodawari.about_us .flex .box>div h2 {
	text-align: center;
}

.kodawari.about_us .flex .box>div h3 {
	margin-top: 25px;
	margin-bottom: 15px;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	color: #0070bb;
}

.kodawari.about_us .flex .box>div a {
	display: inline-block;
	min-width: 200px;
	padding-right: 45px;
	text-align: left;
}

.kodawari.about_us .flex figure {
	overflow: hidden;
	border-radius: 8px;
}

.about_us_link {
	min-width: 1200px;
	padding: 80px 0;
	border-top: 1px dashed #b7d6ec;
	background: #e5f0f8;
}

.about_us_link .flex {
	display: flex;
	justify-content: space-between;
}

.about_us_link .flex a {
	display: block;
	width: 235px;
	border-radius: 8px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
	background: #fff;
	color: #1f1f1f;
}

.about_us_link .flex a figure img {
	border-radius: 8px 8px 0 0;
}

.about_us_link .flex a div {
	padding: 25px 20px;
}

.about_us_link .flex a div h3 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 700;
}

.about_us_link .flex a div p {
	padding: 5px 0;
	background: url('../img/icon_link_type_01_off.png') no-repeat right center;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.kodawari.about_us {
		margin-bottom: 100px;
		padding-top: 0 !important;
	}

	.kodawari.about_us .h2_txt {
		font-size: 22px;
	}

	.kodawari.about_us .txt {
		font-size: 24px;
	}

	.kodawari.about_us ul {
		margin: 0 30px;
	}

	.kodawari.about_us ul li {
		position: relative;
		display: block;
	}

	.kodawari.about_us ul li+li {
		margin-top: 60px;
	}

	.kodawari.about_us .flex {
		display: flex !important;
		flex-wrap: wrap;
	}

	.kodawari.about_us .flex+.flex {
		margin-top: 80px;
	}

	.kodawari.about_us .flex .box {
		order: 2 !important;
	}

	.kodawari.about_us .flex .box .txt {
		margin-bottom: 20px;
	}

	#page .kodawari.about_us .flex .box .txt01 {
		font-size: 30px;
		margin-left: 0;
	}

	.kodawari.about_us .flex .box>div {
		text-align: right !important;
	}

	.kodawari.about_us .flex .box>div h2 {
		text-align: center;
	}

	.kodawari.about_us .flex .box>div h3 {
		line-height: 1.6;
		font-size: 26px;
	}

	.kodawari.about_us .flex .box>div a {
		min-width: 300px;
		padding-left: 50px;
		padding-right: 55px;
		text-align: left;
	}

	.kodawari.about_us .flex figure {
		order: 1 !important;
		width: 640px;
		margin: 0 -40px 50px;
		border-radius: 0;
	}

	.kodawari.about_us .flex figure img {
		width: 100% !important;
		height: 250px !important;
		object-fit: cover;
		object-position: center;
	}

	.about_us_link {
		min-width: 100%;
		padding: 60px 30px;
	}

	.about_us_link .flex {
		flex-wrap: wrap;
	}

	.about_us_link .flex a {
		width: 48%;
		margin-top: 30px;
	}

	.about_us_link .flex a:nth-child(-n+2) {
		margin-top: 0;
	}

	.about_us_link .flex a div {
		padding: 25px 20px;
	}

	.about_us_link .flex a div h3 {
		margin-bottom: 15px;
		font-size: 22px;
	}

	.about_us_link .flex a div p {
		background: url('../img/icon_link_type_01_sp_off.png') no-repeat right center;
		font-size: 18px;
	}

	/*----------------------------------------------------------*/
}

/*	クリーンルーム / 麻酔に対してのこだわり：clean
===============================================================*/
.kodawari.clean {
	margin-bottom: 80px;
	padding-top: 80px;
	text-align: center;
}

.kodawari.clean .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.kodawari.clean .txt {
	margin-bottom: 60px;
	line-height: 2.0;
	font-size: 14px;
}

.kodawari.clean .flex .box>div:before,
.kodawari.clean .flex .box>div::after {
	display: none;
}

.kodawari.clean .flex .box:before,
.kodawari.clean .flex .box:after {
	display: none;
}

.kodawari.clean .flex .box>div {
	padding: 0 !important;
}

.kodawari.clean .flex .box>div h3 {
	margin-top: 25px;
	margin-bottom: 15px;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	color: #0070bb;
}

.kodawari.clean .flex .box .txt {
	line-height: 2.0 !important;
	margin-bottom: 0;
}

.kodawari.clean .flex figure {
	overflow: hidden;
	border-radius: 8px;
}

.clean.room {
	margin-bottom: 80px;
	text-align: center;
}

.clean.room .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.clean.room .flex {
	display: flex;
	justify-content: space-between;
}

.clean.room .flex>div p {
	margin-top: 10px;
	text-align: right;
	font-size: 14px;
	font-weight: 700;
}

.clean.room .flex>div p span {
	position: relative;
	display: inline-block;
}

.clean.room .flex>div p span:before {
	content: '';
	position: absolute;
	left: -70px;
	top: 50%;
	width: 50px;
	height: 1px;
	background: #0070bb;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.kodawari.clean {
		margin-bottom: 100px;
		padding-top: 80px !important;
	}

	.kodawari.clean .h2_txt {
		font-size: 22px;
	}

	.sub_main.clean h1 {
		line-height: 1.4;
	}

	.kodawari.clean .txt {
		font-size: 24px;
	}

	.kodawari.clean .flex {
		padding: 0 !important;
	}

	.kodawari.clean .flex .box>div h3 {
		line-height: 1.6;
		font-size: 26px;
	}

	.kodawari.clean .flex figure {
		width: 640px;
		margin: 0 -30px;
		border-radius: 0;
	}

	.kodawari.clean .flex figure img {
		object-fit: cover;
		width: 100%;
		height: 250px !important;
	}

	.clean.room {
		margin-bottom: 100px;
	}

	.clean.room .h2_txt {
		font-size: 22px;
	}

	.clean.room .flex {
		display: block;
		padding: 0 30px;
	}

	.clean.room .flex>div+div {
		margin-top: 40px;
	}

	.clean.room .flex figure {
		width: 640px;
		margin: 0 -30px;
	}

	.clean.room .flex figure img {
		object-fit: cover;
		width: 100%;
		height: 400px;
	}

	.clean.room .flex>div p {
		margin-top: 15px;
		font-size: 22px;
	}

	/*----------------------------------------------------------*/
}

/*	医師からのワンポイントアドバイス：onepoint
===============================================================*/
.onepoint.case {
	margin-bottom: 100px;
	padding-top: 80px;
	text-align: center;
}

.onepoint.case .outline {
	margin-bottom: 80px;
	padding: 20px 30px;
	border: 1px solid #0070bb;
	line-height: 1.8;
	text-align: left;
	font-size: 14px;
}

.onepoint.case .h2_txt {
	position: relative;
	display: inline-block;
	width: 200px;
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.onepoint.case .h2_txt:before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 20px;
	height: 1px;
	background: #0070bb;
}

.onepoint.case .h2_txt:after {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	width: 20px;
	height: 1px;
	background: #0070bb;
}

.onepoint.case .h3_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.onepoint.case .txt {
	display: flex;
	width: auto;
	margin-top: 30px;
	align-items: center;
	justify-content: center;
	line-height: 2.0;
	font-size: 14px;
	color: inherit;
}

@media (min-width: 768px) {
	.onepoint.case .txt.pc-left {
		justify-content: start;
	}
}

.onepoint.case .txt i {
	display: inline-block;
	padding: 0 10px;
	background: #798186;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}

.onepoint.case .txt span {
	display: inline-block;
	margin-left: 20px;
	font-weight: 700;
	font-size: 16px;
}

.onepoint.case .inner {
	padding: 30px;
	border-radius: 8px;
	background: #edeeef;
}

.onepoint.case h2 {
	position: relative;
	width: 200px;
	margin: 0 auto;
	color: #0070bb;
}

.onepoint.case h2:before {
	content: '';
	position: absolute;
	top: -26px;
	left: 0;
	width: 1px;
	height: 20px;
	background: #0070bb;
}

.onepoint.case h2:after {
	content: '';
	position: absolute;
	top: -26px;
	right: 0;
	width: 1px;
	height: 20px;
	background: #0070bb;
}

.onepoint.case .txt::before,
.onepoint.case .txt::after { display: none;}

.onepoint.case .box>div {
	margin-top: 30px;
	line-height: 2.0;
	text-align: left;
	font-size: 14px;
}

.onepoint.case .box+.box {
	margin-top: 80px;
}

.onepoint.case h3:not(.h3_txt--no-style) {
	margin-top: 50px;
	font-size: 20px;
	color: #0070bb;
}

.onepoint.troble {
	margin-bottom: 80px;
	padding-top: 80px;
	text-align: center;
}

.onepoint.troble .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.onepoint.troble .inner {
	margin-bottom: 50px;
}

.onepoint.case h4,
.onepoint.case .h4_txt {
	margin-bottom: 20px;
	line-height: 1.6;
	font-size: 20px;
	font-weight: 700;
}

.onepoint.case.pt0 {
	padding-top: 0;
}




@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.sub_main.onepoint h1 {
		line-height: 1.4;
	}

	.onepoint.case {
		padding: 80px 30px 0;
	}

	.onepoint.case .outline {
		margin-bottom: 100px;
		padding: 25px 30px;
		line-height: 2.0;
		font-size: 22px;
	}

	.onepoint.case .h2_txt {
		width: 250px;
		font-size: 22px;
	}

	.onepoint.case .h2_txt:before {
		top: 10px;
		width: 30px;
	}

	.onepoint.case .h2_txt:after {
		top: 10px;
		width: 30px;
	}

	.onepoint.case .h3_txt {
		font-size: 22px;
	}

	.onepoint.case .txt {
		display: block;
		width: auto;
		margin-top: 30px;
		font-size: 22px;
	}

	.onepoint.case .txt i {
		padding: 0 15px;
		font-size: 16px;
	}

	.onepoint.case .txt span {
		display: block;
		margin-top: 15px;
		margin-left: 0;
		line-height: 1.6;
		font-size: 26px;
	}

	.onepoint.case h2 {
		width: 250px;
	}

	.onepoint.case h2:before {
		top: -32px;
		height: 30px;
	}

	.onepoint.case h2:after {
		top: -32px;
		height: 30px;
	}

	.onepoint.case .box>div {
		font-size: 22px;
	}

	.onepoint.case h3:not(.h3_txt--no-style) {
		line-height: 1.8;
		font-size: 24px;
	}

	.onepoint.troble {
		margin-bottom: 80px;
		padding-top: 80px;
		text-align: center;
	}

	.onepoint.troble .h2_txt {
		margin-bottom: 20px;
		font-size: 12px;
		font-weight: 700;
		color: #0070bb;
	}

	.onepoint.troble .inner {
		margin-bottom: 40px;
	}

	.onepoint.case h4,
	.onepoint.case .h4_txt {
		margin-bottom: 30px;
		line-height: 1.6;
		font-size: 32px;
		font-weight: 700;
	}


	/*----------------------------------------------------------*/
}

/*	無料WEB診断：diagnosis
===============================================================*/
.p-diagnosis.c-section {
	margin-bottom: 80px;
	padding-top: 80px;
	text-align: center;
}

.p-diagnosis.c-section .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.p-diagnosis.c-section .txt {
	margin-bottom: 60px;
	line-height: 2.0;
	font-size: 14px;
}

.c-chart {
	text-align: center;
	position: relative;
}

.c-chart__title {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
	border-radius: 8px;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	border: 2px solid;
	cursor: pointer;
}

.c-chart__title span {
	letter-spacing: 1px;
	font-size: 20px;
}

.c-chart__item {
	display: none;
	position: relative;
	padding-top: 60px;
}

.c-chart__item:before {
	content: '';
	position: absolute;
	top: 0;
	width: 2px;
	height: 60px;
	z-index: 2;
}

.c-chart__item-01:before {
	left: 50%;
	margin-left: -1px;
}

.c-chart__item-02:before,
.p-diagnosis__chart-01 .c-chart__item-03:before {
	left: 42.4%;
}

.p-diagnosis__chart-02 .c-chart__item-05:before {
	left: 42.4%;
	background: #f38400 !important;
}

.c-chart__item-04:before,
.c-chart__item-05:before,
.p-diagnosis__chart-02 .c-chart__item-03.c-chart__item--result:before {
	right: 42.4% !important;
	background: #798186 !important;
}

.p-diagnosis__chart-01 .c-chart__title {
	width: calc((100% - 40px)/3);
	margin: 0 auto;
}

.p-diagnosis__chart-02 .c-chart__title {
	width: calc((100% - 40px)/3);
	margin: 0 auto;
}

.p-diagnosis__chart-04 .c-chart__title {
	width: calc((100% - 40px)/3);
	margin: 0 auto;
}

/*結果*/
.c-chart .box {
	padding: 20px 0;
	border-radius: 8px;
	line-height: 1.6;
	font-weight: 700;
	color: #fff;
}

.c-chart .box i {
	display: block;
	width: 100%;
	height: 1px;
	margin: 20px 0;
	background: #fff;
}

.c-chart__item--result .box {
	padding: 20px;
	text-align: left;
}

.c-chart__item--result .box>span {
	color: #fbff5c;
}

.c-chart__link {
	display: block;
	margin-top: 20px;
	padding: 15px 30px;
	border: none;
}

.c-chart__link:hover {
	background-color: #fff;
	color: #1f1f1f;
}

.c-chart__options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	padding: 0 20%;
}

.c-chart__option {
	position: relative;
	display: table;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	cursor: pointer;
}

.c-chart__option:before {
	content: '';
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	height: 30px;
}

.c-chart__option span {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
}

.c-chart__option--no,
.c-chart__option--no:before {
	background: #798186;
}

.p-diagnosis__chart-01 .c-chart__title {
	border-color: #0070bb;
}

.p-diagnosis__chart-01 .c-chart__title span {
	color: #0070bb;
}

.p-diagnosis__chart-01 .c-chart__title.c-chart__title--before {
	position: absolute;
    left: 40px;
    top: 0;
	border: none;
	cursor: default;
}

.p-diagnosis__chart-01 .box {
	background: #0070bb;
	width: calc((100% - 40px)/3);
	margin: 0 auto;
}

.p-diagnosis__chart-01 .c-chart__options {
	width: calc((100% - 40px)/3);
	margin: 30px auto 0;
    padding: 0 60px;
}

.p-diagnosis__chart-01 .c-chart__option--yes {
	background: #0070bb;
}

.p-diagnosis__chart-01 .c-chart__option--yes:before {
	background: #0070bb;
}

.p-diagnosis__chart-01 .c-chart__item:before {
	background: #0070bb;
}

.p-diagnosis__chart-02 .c-chart__title {
	border-color: #f38400;
}

.p-diagnosis__chart-02 .c-chart__title span {
	color: #f38400;
}

.p-diagnosis__chart-02 .c-chart__title.c-chart__title--before {
	position: absolute;
    left: 40px;
    top: 0;
	border: none;
	cursor: default;
}

.p-diagnosis__chart-02 .box {
	background: #f38400;
	width: calc((100% - 40px)/3);
	margin: 0 auto;
}

.p-diagnosis__chart-02 .c-chart__options {
	width: calc((100% - 40px)/3);
	margin: 30px auto 0;
    padding: 0 60px;
}

.p-diagnosis__chart-02 .c-chart__option--yes {
	background: #f38400;
}

.p-diagnosis__chart-02 .c-chart__option--yes:before {
	background: #f38400;
}

.p-diagnosis__chart-02 .c-chart__item:before {
	background: #f38400;
}

.p-diagnosis__chart-03 .c-chart__title {
	border-color: #199e91;
}

.p-diagnosis__chart-03 .c-chart__title span {
	color: #199e91;
}

.p-diagnosis__chart-03 .box {
	background: #199e91;
}

.p-diagnosis__chart-03 .c-chart__item:before {
	background: #199e91;
}

.p-diagnosis__chart-04 {
	text-align: left;
}

.p-diagnosis__chart-04 .c-chart__title {
	border-color: #cc0f35;
}

.p-diagnosis__chart-04 .c-chart__title span {
	color: #cc0f35;
}

.p-diagnosis__chart-04 .c-chart__title.c-chart__title--before {
	position: absolute;
    left: 40px;
    top: 0;
	border: none;
	cursor: default;
}

.p-diagnosis__chart-04 .c-chart__item:not(:first-of-type) {
	padding-top: 20px;
}

.p-diagnosis__chart-04 .box {
	color: #cc0f35;
	background: #feecf0;
	max-width: 850px;
	margin: 0 auto;
	padding-right: 32px;
	padding-left: 32px;
	font-size: 20px;
}

.p-diagnosis__chart-04 .c-chart__item--intro {
	font-size: 16px;
	line-height: 1.6;
	padding: 27px 0 7px;
	text-align: center;
}

.p-diagnosis__chart-04 .c-chart__intro-title {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	padding-top: 5px;
	margin-bottom: 21px;
}

.p-diagnosis__chart-04 .c-chart__options {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	font-size: 16px;
	color: #1f1f1f;
	margin-top: 10px;
	margin-left: 5px;
	padding: 0;
}

.p-diagnosis__chart-04 .c-checkbox:not(:first-child) {
	margin-top: 15px;
}

.p-diagnosis__chart-04 .c-checkbox input {
	display: none;
}

.p-diagnosis__chart-04 .c-checkbox label {
	padding-left: 25px;
	position: relative;
	user-select: none;
}

.p-diagnosis__chart-04 .c-checkbox label:before {
	content: "";
	display: block;
	position: absolute;
	top: 0.0625em;
	left: 0;
	width: 1em;
	height: 1em;
	border: 1px solid rgba(118, 118, 118, 0.3);
	border-radius: 3px;
	background: #fff;
}

@media (max-width: 767px) {
	.p-diagnosis__chart-04 .c-chart__item--intro {
		font-size: 22px;
	}

	.p-diagnosis__chart-04 .c-chart__intro-title {
		font-size: 26px;
	}

	.p-diagnosis__chart-04 .c-chart__options {
		font-size: 22px;
		margin-top: 16px;
	}

	.p-diagnosis__chart-04 .c-checkbox label {
		padding-left: 35px;
	}

	.p-diagnosis__chart-04 .c-checkbox:not(:first-child) {
		margin-top: 20px;
	}

	/* .p-diagnosis__chart-04 .c-checkbox label:before{
		top: 1px;
		width: 1.125em;
		height: 1.125em;
	} */

	.p-diagnosis__chart-01 .c-chart__title {
		width: 100%;
		margin: 40px auto 0;
	}
	
	.p-diagnosis__chart-02 .c-chart__title {
		width: 100%;
		margin: 40px auto 0;
	}
	
	.p-diagnosis__chart-04 .c-chart__title {
		width: 100%;
		margin: 40px auto 0;
	}

	.p-diagnosis__chart-01 .box {
		width: 100%;
	}

	.p-diagnosis__chart-02 .box {
		width: 100%;
	}

	.p-diagnosis__chart-01 .c-chart__options {
		width: 100%;
		padding: 0 20%;
	}

	.p-diagnosis__chart-02 .c-chart__options {
		width: 100%;
		padding: 0 20%;
	}

	.p-diagnosis__chart-01 .c-chart__title.c-chart__title--before {
		left: 0;
		right: 0;
		top: -70px;
		margin: auto;
	}

	.p-diagnosis__chart-02 .c-chart__title.c-chart__title--before {
		left: 0;
		right: 0;
		top: -70px;
		margin: auto;
	}

	.p-diagnosis__chart-04 .c-chart__title.c-chart__title--before {
		left: 0;
		right: 0;
		top: -70px;
		margin: auto;
	}
}

.p-diagnosis__chart-04 .c-checkbox input:checked+label {
	color: #cc0f35;
}

.p-diagnosis__chart-04 .c-checkbox input:checked+label:after {
	content: "";
	display: block;
	position: absolute;
	top: -0.25em;
	left: 0.3125em;
	width: 0.4375em;
	height: 0.875em;
	transform: rotate(40deg);
	border-bottom: 0.1875em solid #cc0f35;
	border-right: 0.1875em solid #cc0f35;
}

.p-diagnosis__chart-04 .c-chart__item--submit,
.p-diagnosis__chart-04 .c-chart__item--result {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
}

.p-diagnosis__chart-04 .c-chart__item--submit {
	padding-top: 40px;
}

.p-diagnosis__chart-04 .c-chart__item--submit .box {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: transparent;
	font-size: 16px;
	color: #1f1f1f;
	font-weight: normal;
	padding: 0;
}

/* iOSでのデフォルトスタイルをリセット */
.c-chart__submit-btn {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

.c-chart__submit-btn::-webkit-search-decoration {
	display: none;
}

.c-chart__submit-btn::focus {
	outline-offset: -2px;
}

.c-chart__submit-btn {
	margin-top: 12px;
	border: 2px solid #cc0f35;
	border-radius: 8px;
	background: #fff;
	color: #cc0f35;
	font-size: 20px;
	font-weight: bold;
	padding: 14px;
	width: 100%;
	text-align: center;
	transition: border 0.1s linear, color 0.1s linear, background-color 0.1s linear;
}

.c-chart__submit-btn[disabled] {
	border-color: #edeeef;
	background-color: #edeeef;
	color: #fff;
}

.p-diagnosis__chart-04 .c-chart__item.c-chart__item--result {
	padding-top: 60px;
	position: relative;
}

.p-diagnosis__chart-04 .c-chart__item--result:before {
	content: "";
	display: block;
	width: 2px;
	height: 61px;
	top: 0px;
	left: 50%;
	background: #cc0f35;
	transform: translateX(-50%);
}

.p-diagnosis__chart-04 .c-chart__item--result .box {
	background: #cc0f35;
	color: #fff;
	text-align: center;
}

.p-diagnosis__chart-04 .c-chart__result-title {
	font-size: 70%;
	letter-spacing: 0.12em;
	margin-bottom: 1.21428em;
}

.p-diagnosis__chart-04 .c-chart__result-score,
.p-diagnosis__chart-04 .c-chart__result-comment {
	font-size: 80%;
	letter-spacing: 0.04em;
}

.p-diagnosis__chart-04 .c-chart__result-score {
	margin-bottom: 1em;
}

.p-diagnosis__chart-04 .c-chart__result-comment {
	margin-bottom: 0.6875em;
}

.p-diagnosis__chart-04 .c-chart__result-score span {
	font-size: 2em;
	vertical-align: sub;
}

.p-diagnosis__chart-04 .c-chart__result-comment span {
	font-size: 1.5em;
	vertical-align: sub;
}

.p-diagnosis__chart-01 .c-chart__link {
	background-image: url('../img/icon_link_type_01_off.png');
}

.p-diagnosis__chart-02 .c-chart__link {
	background-image: url('../img/icon_link_type_01_o_off.png');
}

.p-diagnosis__chart-03 .c-chart__link {
	background-image: url('../img/icon_link_type_01_g_off.png');
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.p-diagnosis.c-section {
		margin-bottom: 100px;
	}

	.p-diagnosis.c-section .h2_txt {
		font-size: 22px;
	}

	.p-diagnosis.c-section .txt {
		margin-bottom: 50px;
		font-size: 24px;
	}

	.c-chart__title {
		padding: 30px 0;
		font-size: 24px;
	}

	.c-chart__title span {
		font-size: 28px;
	}

	.c-chart__item-02:before,
	.p-diagnosis__chart-01 .c-chart__item-03:before,
	.p-diagnosis__chart-02 .c-chart__item-05:before {
		left: 28.5%;
	}

	.c-chart__item-04:before,
	.c-chart__item-05:before,
	.p-diagnosis__chart-02 .c-chart__item-03.c-chart__item--result:before {
		right: 28.5% !important;
	}

	.p-diagnosis__chart-04 .c-chart__title {
		width: 100%;
	}

	/*結果*/
	.c-chart .box {
		padding: 25px;
		font-size: 24px;
	}

	.c-chart .box i {
		margin: 30px 0;
	}

	.c-chart__item--result .box {
		padding: 30px;
		font-size: 32px;
	}

	.c-chart__item--result .box>span {
		color: #fbff5c;
	}

	.c-chart__link {
		margin-top: 30px;
		padding: 20px 30px;
	}

	.c-chart__option {
		width: 100px;
		height: 100px;
	}

	.c-chart__option span {
		font-size: 24px;
	}

	.p-diagnosis__chart-01 .c-chart__link {
		background-image: url('../img/icon_arrow_right_b_sp.png');
	}

	.p-diagnosis__chart-02 .c-chart__link {
		background-image: url('../img/icon_arrow_right_o_sp.png');
	}

	.p-diagnosis__chart-03 .c-chart__link {
		background-image: url('../img/icon_link_type_01_g_sp_off.png');
	}

	/*----------------------------------------------------------*/
}

/*	症例写真：case
===============================================================*/
.case.gideline {
	margin-bottom: 80px;
	padding-top: 80px;
}

.case.gideline p {
	padding: 20px;
	border-radius: 8px;
	background: url('../img/icon_faq_off.png') no-repeat right 20px center #798186;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
}

.case.gideline p.active {
	background-image: url('../img/icon_faq_on.png');
	border: 1px solid #0070bb;
	background-color: #fff;
	color: #1f1f1f;
}

.case.gideline ul {
	display: none;
	padding-top: 20px;
}

.case.gideline ul li {
	position: relative;
	line-height: 1.8;
	padding-left: 1.5em;
	font-size: 14px;
}

.case.gideline ul li:before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #798186;
}

.case.gideline ul li+li {
	margin-top: 15px;
}

.case.image {
	margin-bottom: 80px;
}

.case.image .flexlist {
	display: flex;
	flex-wrap: wrap;
}

.case.image .flexlist li {
	width: 32%;
	margin-top: 20px;
	margin-right: 2%;
	font-size: 14px;
}

.case.image .flexlist li:nth-child(-n+3) {
	margin-top: 0;
}

.case.image .flexlist li:nth-child(3n) {
	margin-right: 0;
}

.case.image .flexlist li a {
	text-decoration: underline;
	color: #1f1f1f;
	letter-spacing: 1px;
}

.case.image .flexlist li a:hover {
	text-decoration: none;
}

.case.image .flexlist li a span {
	font-weight: 700;
	color: #0070bb;
}

.case.detaile {
	margin-bottom: 80px;
	text-align: center;
}

.case.detaile .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.case.detaile .txt {
	line-height: 2.0;
	font-size: 14px;
}

.case.detaile .box {
	margin-top: 30px;
	padding: 30px;
	border-radius: 8px;
	background: #e5f0f8;
	text-align: left;
}

.case.detaile .box .flex {
	position: relative;
	display: flex;
	justify-content: space-between;
}

.case.detaile .box .flex:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -5px;
	margin-top: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #0070bb;
	z-index: 2;
}

.case.detaile .box .flex figure {
	overflow: hidden;
	border-radius: 4px 4px 0 0;
}

.case.detaile .box .flex img {
	cursor: pointer;
	filter: blur(15px);
}

.case.detaile .box .flex img.active {
	filter: blur(0);
}

.case.detaile .box .flex>div p {
	padding: 15px 0;
	text-align: center;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
}

.case.detaile .box .flex>div:first-child p {
	background: #798186;
}

.case.detaile .box .flex>div:last-child p {
	background: #0070bb;
}

.case.detaile .box table {
	width: 100%;
	margin-top: 20px;
	font-size: 14px;
}

.case.detaile .box table tr+tr {
	border-top: 1px dashed #0070bb;
}

.case.detaile .box table th {
	white-space: nowrap;
	padding: 20px;
	text-align: center;
	color: #0070bb;
}

.case.detaile .box table td {
	padding: 20px;
}

.case.detaile .box .note {
	margin-bottom: 15px;
	text-align: right;
	font-size: 14px;
	font-weight: 700;
	color: #0070bb;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.case.gideline {
		margin-bottom: 100px;
		padding: 80px 30px 0;
	}

	.case.gideline p {
		padding: 20px 60px 20px 20px;
		line-height: 1.6;
		font-size: 24px;
	}

	.case.gideline ul {
		padding-top: 30px;
	}

	.case.gideline ul li {
		font-size: 22px;
	}

	.case.gideline ul li:before {
		top: 12px;
		width: 16px;
		height: 16px;
	}

	.case.gideline ul li+li {
		margin-top: 20px;
	}

	.case.image {
		margin-bottom: 100px;
	}

	.case.image h2 {
		text-align: center;
	}

	.case.image .flexlist {
		padding: 0 30px;
		display: block;
	}

	.case.image .flexlist li {
		width: 100%;
		margin-top: 30px;
		margin-right: 0;
		font-size: 24px;
	}

	.case.image .flexlist li:nth-child(-n+3) {
		margin-top: 30px;
	}

	.case.detaile {
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.case.detaile .h2_txt {
		font-size: 22px;
	}

	.case.detaile .txt {
		font-size: 24px;
	}

	.case.detaile .box {
		width: 640px;
		margin: 40px -30px 0;
		padding: 30px;
		border-radius: 0;
	}

	.case.detaile .box .flex:before {
		top: auto;
		bottom: 15px;
		left: 50%;
		margin-top: 0;
		border-color: transparent transparent transparent #fff;
	}

	.case.detaile .box .flex>div {
		width: 50%;
	}

	.case.detaile .box .flex figure {
		border-radius: 0;
	}

	.case.detaile .box .flex>div p {
		padding: 15px 0;
		font-size: 20px;
	}

	.case.detaile .box table {
		margin-top: 20px;
		line-height: 1.6;
		font-size: 22px;
	}

	.case.detaile .box table th {
		padding-left: 0;
		text-align: left;
	}

	.case.detaile .box table td {
		padding-right: 0;
	}

	.case.detaile .box .note {
		margin-bottom: 15px;
		font-size: 18px;
	}

	/*----------------------------------------------------------*/
}

.career-wrap .history {
	margin-bottom: 5px;
}

.p-dr-sig {
	text-align: right;
	font-size: 14px;
	margin-top: 20px;
}

@media (max-width: 767px) {
	.career-wrap {
		padding: 30px;
	}

	.clinic.dr .career-wrap .txt {
		font-size: 24px;
	}

	.career-wrap .history {
		text-align: center;
		margin: 10px;
	}

	.p-dr-sig {
		font-size: 22px;
		margin-top: 20px;
		letter-spacing: -0.05em;
		margin-bottom: 20px;
	}
}


/*	クリニック詳細：clinic_
===============================================================*/
.clinic.info {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.clinic.info .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.clinic.info .txt {
	margin-bottom: 50px;
	line-height: 2.0;
	font-size: 14px;
}

.clinic.info .info_image {
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
}

.clinic.info .info_image li {
	width: 320px;
}

.info_table {
	width: 100%;
	line-height: 2.0;
	border: solid #1f1f1f;
	border-width: 1px 0;
}

.info_table tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.info_table th {
	white-space: nowrap;
	width: 250px;
	color: #0070bb;
}

.info_table td {
	width: 150px;
	padding: 25px 30px;
	border-left: 1px solid #1f1f1f;
	background: #f5f5f6;
	font-weight: 700;
}

.info_table td:last-child {
	width: auto;
	background: #fff;
	text-align: left;
	font-weight: 500;
	font-size: 14px;
}

.info_table td span {
	display: block;
	font-weight: 700;
	font-size: 18px;
}

.info_table td span a {
	pointer-events: none;
	color: #1f1f1f;
}

.clinic.info .googlemap {
	overflow: hidden;
	margin-top: 50px;
	width: 100%;
	height: 360px;
	border-radius: 8px;
}

.clinic.info .googlemap iframe {
	width: 100%;
	height: 100%;
}

.clinic.access {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.clinic.access .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.clinic.access .txt {
	line-height: 2.0;
	font-size: 14px;
	text-align: left;
}

.clinic.access .flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}

.clinic.access .flex+.txt {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px dashed #1f1f1f;
	text-align: left;
}

.clinic.access .flex>div {
	width: 48%;
	margin-top: 40px;
}

.clinic.access .flex>div:nth-child(-n+2) {
	margin-top: 0;
}

.clinic.access .flex>div figure {
	overflow: hidden;
	border-radius: 8px;
}

.clinic.access .flex>div p {
	position: relative;
	margin-top: 20px;
	padding-left: 46px;
	text-align: left;
	line-height: 2.0;
	font-size: 14px;
}

.clinic.access .flex>div p:before {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.0;
	font-weight: 700;
	font-size: 30px;
	color: #0070bb;
}

.clinic.access .flex>div:nth-child(1) p:before {
	content: '1.';
}

.clinic.access .flex>div:nth-child(2) p:before {
	content: '2.';
}

.clinic.access .flex>div:nth-child(3) p:before {
	content: '3.';
}

.clinic.access .flex>div:nth-child(4) p:before {
	content: '4.';
}

.clinic.access .flex>div:nth-child(5) p:before {
	content: '5.';
}

.clinic.access .flex>div:nth-child(6) p:before {
	content: '6.';
}

.clinic.access .flex>div:nth-child(7) p:before {
	content: '7.';
}

.clinic.access .flex>div:nth-child(8) p:before {
	content: '8.';
}

.clinic.access .flex>div:nth-child(9) p:before {
	content: '9.';
}

.clinic.access .flex>div:nth-child(10) p:before {
	content: '10.';
}

.clinic.access .flex>div:nth-child(11) p:before {
	content: '11.';
}

.clinic.access .flex>div:nth-child(12) p:before {
	content: '12.';
}

.clinic.access .flex>div:nth-child(13) p:before {
	content: '13.';
}

.clinic.access .flex>div:nth-child(14) p:before {
	content: '14.';
}

.clinic.access .flex>div:nth-child(15) p:before {
	content: '15.';
}

.clinic.access .flex>div:nth-child(16) p:before {
	content: '16.';
}

.clinic.access .flex>div:nth-child(17) p:before {
	content: '17.';
}

.clinic.treatment {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.clinic.treatment .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.clinic.treatment .txt {
	line-height: 2.0;
	font-size: 14px;
}

.clinic.treatment .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 50px;
}

.clinic.treatment .flex>div {
	position: relative;
	width: 48%;
	padding: 30px;
	margin-top: 40px;
	text-align: right;
	border-radius: 8px;
	background: #e5f0f8;
}

.clinic.treatment .flex>div:nth-child(-n+2) {
	margin-top: 0;
}

.clinic.treatment .flex>div h3 {
	margin-bottom: 20px;
	padding-bottom: 25px;
	text-align: left;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	color: #0070bb;
}

.clinic.treatment .flex>div p {
	margin-bottom: 80px;
	text-align: left;
	line-height: 2.0;
	font-size: 14px;
}

.clinic.treatment .flex>div .link_type_01 {
	position: absolute;
	bottom: 30px;
	right: 30px;
	padding-right: 50px;
	text-align: left;
}

.clinic.dr {
	margin-bottom: 80px;
	text-align: center;
}

.clinic.dr .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.clinic.dr .txt {
	line-height: 2.0;
	font-size: 14px;
}

.clinic.dr .dr_text {
	width: 520px;
	margin-left: 20px;
	line-height: 1.6;
	text-align: left;
	display: flex;
	flex-direction:column;
	align-items: flex-start;
}

.clinic.dr .dr_inner {
	justify-content: center;
	display: flex;
	align-items: center;
}

.clinic.dr .dr_inner--align-top {
	align-items: flex-start;
}

.clinic.dr .clinic {
	font-size: 16px;
	font-weight: bold;
}

.clinic.dr .name {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}

.clinic.dr .history {
	font-size: 16px;
	font-weight: bold;
}

.clinic.dr .bg-blue {
	padding: 30px;
	border-radius: 8px;
	background: rgb(229 240 248);
}

.clinic.dr .dr_img img {
	height: 220px;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.clinic.info {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.clinic.info .h2_txt {
		font-size: 22px;
	}

	.clinic.info .txt {
		margin-bottom: 60px;
		text-align: left;
		font-size: 24px;
	}

	.clinic.info .info_image {
		margin-bottom: 50px;
		display: block;
	}

	.clinic.info .info_image li {
		width: auto;
	}

	.clinic.info .info_image li+li {
		margin-top: 30px;
	}

	.info_table tr {
		display: flex;
		flex-wrap: wrap;
	}

	.info_table {
		width: 100%;
		border-width: 2px 0 1px;
	}

	.info_table th {
		width: 100%;
		padding: 25px 0;
		border-bottom: 1px dashed #1f1f1f;
		background: #e5f0f8;
		font-size: 24px;
	}

	.info_table td {
		width: 150px;
		padding: 25px 30px;
		border-left: none;
		line-height: 1.8;
		font-size: 22px;
	}

	.info_table td:last-child {
		width: 430px;
		padding: 25px 0 25px 30px;
		border-left: 1px solid #1f1f1f;
		font-size: 22px;
	}

	.info_table td span {
		font-size: 24px;
	}

	.info_table td span a {
		pointer-events: auto;
	}

	.clinic.access {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.clinic.access .h2_txt {
		font-size: 22px;
	}

	.clinic.access .txt {
		line-height: 1.8;
		font-size: 24px;
	}

	.clinic.access .flex {
		display: block;
	}

	.clinic.access .flex+.txt {
		margin-top: 50px;
	}

	.clinic.access .flex>div {
		width: 100%;
		margin-top: 50px;
	}

	.clinic.access .flex>div:nth-child(-n+2) {
		margin-top: 50px;
	}

	.clinic.access .flex>div:first-child {
		margin-top: 0;
	}

	.clinic.access .flex>div figure {
		width: 640px;
		margin: 0 -30px;
		border-radius: 0;
	}

	.clinic.access .flex>div figure img {
		object-fit: cover;
		width: 100%;
		height: 250px;
	}

	.clinic.access .flex>div p {
		padding-left: 50px;
		font-size: 24px;
	}

	.clinic.access .flex>div p:before {
		top: 8px;
		font-size: 32px;
	}

	.clinic.dr {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.clinic.dr .h2_txt {
		font-size: 22px;
	}

	.clinic.dr .txt {
		line-height: 2.0;
		font-size: 14px;
	}

	.clinic.dr .dr_img {
		margin-bottom: 15px;
	}

	.clinic.dr .dr_text {
		width: 100%;
		margin-left: 0;
	}

	.clinic.dr .dr_inner {
		flex-direction: column;
	}

	.clinic.dr .dr_inner--align-top {
		align-items: center;
	}

	.clinic.dr .clinic {
		font-size: 24px;
		font-weight: bold;
	}

	.clinic.dr .name {
		font-size: 32px;
	}

	.clinic.dr .history {
		font-size: 28px;
	}

	.clinic.dr .bg-blue {
		padding: 30px;
		border-radius: 8px;
		background: rgb(229 240 248);
	}

	.clinic.dr .dr_img img {
		height: auto;
		width: 100%;
	}

	.clinic.treatment {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.clinic.treatment .h2_txt {
		font-size: 22px;
	}

	.clinic.treatment .txt {
		text-align: left;
		font-size: 24px;
	}

	.clinic.treatment .flex {
		display: block;
	}

	.clinic.treatment .flex>div {
		width: 100%;
		padding: 35px 30px;
		margin-top: 40px;
	}

	.clinic.treatment .flex>div:nth-child(-n+2) {
		margin-top: 40px;
	}

	.clinic.treatment .flex>div:first-child {
		margin-top: 40px;
	}

	.clinic.treatment .flex>div h3 {
		font-size: 26px;
	}

	.clinic.treatment .flex>div p {
		margin-bottom: 30px;
		font-size: 22px;
	}

	.clinic.treatment .flex>div .link_type_01 {
		position: static;
		display: inline-block;
		padding-right: 70px;
		font-size: 22px;
	}

	/*----------------------------------------------------------*/
}

/*	治療の流れ：flow
===============================================================*/
.flowpage {
	min-width: 1200px;
	padding: 80px 0;
}

.flowpage .flowpage_title {
	text-align: center;
}

.flowpage .flowpage_title .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.flowpage .flowpage_title .left {
	margin-bottom: 20px;
	line-height: 1.6;
	font-size: 20px;
	font-weight: 700;
	text-align: left;
}

.flowpage .flowpage_title h3 {
	margin-bottom: 60px;
	text-align: center;
	font-size: 24px;
	letter-spacing: 2px;
}

.flowpage .flowpage_title h3 span {
	position: relative;
	display: inline-block;
	padding: 0 10px 5px;
}

.flowpage .flowpage_title h3 span:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: #f2f7fb;
}

.flowpage .flowpage_title h3.type02 span:before {
	background: #e7f7f7;
}

.flowpage .flowpage_title h3 span i {
	position: relative;
	z-index: 2;
}

.flowpage p.step {
	padding-left: 40px;
	border-bottom: 1px solid #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.flowpage p.step span {
	position: relative;
	top: 1px;
	display: inline-block;
	width: 240px;
	padding: 15px 25px;
	line-height: 1.2;
	text-align: center;
	border: solid #0070bb;
	border-width: 1px 1px 0 1px;
	background: #fff;
}

.flowpage dl {
	padding-top: 35px;
}

.flowpage dl dt {
	position: relative;
	margin-bottom: 40px;
}

.flowpage dl dd+dt {
	margin-top: 100px;
}

.flowpage dl dd+dt:before {
	content: '';
	position: absolute;
	top: -60px;
	left: 140px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 20px;
	border-color: #a3acb1 transparent transparent transparent;
}

.flowpage dl dd .flex {
	display: flex;
	justify-content: space-between;
	padding-left: 40px;
}

.flowpage dl dd .flex>div:not([class]) {
	width: 460px;
}

.flowpage dl dd .flex>div h4 {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.flowpage dl dd .flex>div p {
	line-height: 2.2;
	font-size: 14px;
}

.flowpage dl dd .flex>div p.credit {
	position: relative;
	margin: 20px 0 15px;
	padding-left: 1.5em;
	line-height: 1.0;
	font-weight: 700;
	font-size: 16px;
	color: #0070bb;
}

.flowpage dl dd .flex>div p.credit:before {
	content: '●';
	position: absolute;
	top: 0;
	left: 0;
}

.flowpage dl dd .flex>figure {
	overflow: hidden;
	width: 460px;
}

.flowpage dl dd .flex>figure img {
	border-radius: 8px;
}

.flowpage dl dd .loan {
	margin-top: 60px;
}

.flowpage dl dd .loan .title {
	padding: 20px;
	background: #0070bb;
	font-weight: 700;
	color: #fff;
}

.flowpage dl dd .loan>div {
	padding: 0 20px;
}

.flowpage dl dd .loan>div .txt {
	margin-bottom: 16px;
	font-weight: 700;
}

.flowpage dl dd .loan>div .txt span {
	display: inline-block;
	margin: 0 5px;
	font-size: 20px;
	color: #f58e1f;
}

.flowpage dl dd .loan>div .note {
	font-size: 13px;
	line-height: 2;
	color: #444;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.flowpage {
		min-width: 100%;
		padding: 80px 0 100px;
	}

	.sub_main.flow h1 {
		line-height: 1.4;
	}

	.flowpage .flowpage_title .left {
		text-align: center;
	}

	.flowpage .flowpage_title .h2_txt {
		font-size: 22px;
	}

	.flowpage .flowpage_title h3 {
		margin-bottom: 20px;
		font-size: 30px;
	}

	.flowpage p.step {
		padding-left: 30px;
		border-bottom: 2px solid #0070bb;
		font-size: 24px;
	}

	.flowpage p.step span {
		width: 200px;
		top: 2px;
		padding: 20px 25px;
		background: #0070bb;
		color: #fff;
		border-width: 2px 2px 0 2px;
	}

	.flowpage dl {
		margin-top: 40px;
	}

	.flowpage dl dt {
		margin-bottom: 50px;
	}

	.flowpage dl dd+dt {
		margin-top: 120px;
	}

	.flowpage dl dd+dt:before {
		top: -70px;
		left: 50%;
		margin-left: -30px;
		border-width: 25px 30px 0 30px;
	}

	.flowpage dl dd .flex {
		display: block;
		padding: 0 30px;
	}

	.flowpage dl dd .flex>div:not([class]) {
		width: auto;
	}

	.flowpage dl dd .flex>div h4 {
		text-align: center;
		margin-bottom: 30px;
		font-size: 30px;
		letter-spacing: 1px;
	}

	.flowpage dl dd .flex>div p {
		line-height: 2.0;
		font-size: 22px;
	}

	.flowpage dl dd .flex>div p.credit {
		margin: 30px 0 20px;
		font-size: 22px;
	}

	.flowpage dl dd .flex>div p.credit+figure {
		text-align: center;
	}

	.flowpage dl dd .flex>figure {
		margin-top: 40px;
		width: 100%;
	}

	.flowpage dl dd .flex>figure img {
		object-fit: cover;
		width: 100%;
		height: 250px;
		border-radius: 0;
	}

	.flowpage dl dd .loan {
		width: 580px;
		margin: 80px auto 0;
	}

	.flowpage dl dd .loan .title {
		padding: 20px;
		text-align: center;
		line-height: 1.4;
		font-size: 24px;
	}

	.flowpage dl dd .loan>div {
		padding: 0;
	}

	.flowpage dl dd .loan>div .txt {
		margin-bottom: 20px;
		font-size: 26px;
	}

	.flowpage dl dd .loan>div .txt span {
		display: inline-block;
		margin: 0 5px;
		font-size: 28px;
	}

	.flowpage dl dd .loan>div .note {
		line-height: 1.6;
		font-size: 20px;
	}

	/*----------------------------------------------------------*/
}

/*	治療一覧：treatment
===============================================================*/
.treatmentpage {
	min-width: 1200px;
	padding: 80px 0;
}

.medicalpage {
	padding: 80px 0 0;
	margin-bottom: 120px;
}

.treatment.keisei {
	min-width: 1200px;
	margin-bottom: 80px;
}

.treatment.keisei .box {
	margin: 40px 0;
	text-align: left;
}

.treatment.keisei .box h3 {
	margin-bottom: 40px;
	padding-left: 40px;
	border-bottom: 1px solid #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.treatment.keisei .box h3 span {
	position: relative;
	top: 1px;
	display: inline-block;
	padding: 15px 25px;
	border: solid #0070bb;
	border-width: 1px 1px 0 1px;
	background: #fff;
}

.treatment.keisei .box .flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}

.treatment.keisei .box .flex div {
	width: 500px;
	padding-left: 40px;
	text-align: right;
}

.treatment.keisei .box .flex div h2 {
	text-align: center;
	color: #0070bb;
}

.treatment.keisei .box .flex p.txt {
	line-height: 2.4;
	font-size: 14px;
	text-align: left;
	margin-bottom: 20px;
}

.treatment.keisei .box .flex p.txt span {
	color: #e60012;
}

.treatment.keisei .box .flex div a {
	display: inline-block;
	min-width: 200px;
	padding-right: 45px;
	text-align: left;
}

.treatment.keisei .box .flex figure {
	width: 460px;
}

.treatment.keisei .box .flex figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.treatment.hinyou {
	min-width: 1200px;
}

.treatment.hinyou .box {
	margin: 40px 0;
	text-align: left;
}

.treatment.hinyou .box h3 {
	margin-bottom: 40px;
	padding-left: 40px;
	border-bottom: 1px solid #199e91;
	font-size: 18px;
	font-weight: 700;
	color: #199e91;
}

.treatment.hinyou .box h3 span {
	position: relative;
	top: 1px;
	display: inline-block;
	padding: 15px 25px;
	border: solid #199e91;
	border-width: 1px 1px 0 1px;
	background: #fff;
}

.treatment.hinyou .box .flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.treatment.hinyou .box .flex p {
	width: 500px;
	padding-left: 40px;
	line-height: 2.4;
	font-size: 14px;
}

.treatment.hinyou .box .flex p span {
	color: #e60012;
}

.treatment.hinyou .box .flex figure {
	width: 460px;
}

.treatment.hinyou .box .flex figure img {
	border-radius: 8px;
}

.treatmentpage .treatment_link {
	padding-top: 20px;
	position: relative;
	z-index: 1;
	margin-bottom: 55px;
}

.treatmentpage .treatment_link ul {
	height: 77px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	text-align: center;
	z-index: 1;
	position: relative;
}

.treatmentpage .treatment_link ul::after {
	content: "";
	border-bottom: solid 1px #0070bb;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.treatmentpage .treatment_link ul li {
	width: 300px;
	margin: 0 20px;
	position: relative;
	z-index: -1;
}

.treatmentpage .treatment_link ul li a,
.treatmentpage .treatment_link ul li span {
	color: #199e91;
	display: block;
	background-color: #e8f5f4;
	font-weight: 700;
	padding: 25px 0;
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
	cursor: pointer;
}

.treatmentpage .treatment_link ul li.active {
	z-index: 1;
}

.treatmentpage .treatment_link ul li.active a,
.treatmentpage .treatment_link ul li.active span {
	padding: 30px 0;
	position: relative;
	border: solid 1px #0070bb;
	border-bottom: none;
	z-index: 2;
	background-color: #ffffff !important;
	color: #0070bb;
	cursor: auto;
}

.treatmentpage .treatment_link ul li.treatment_link01 a,
.treatmentpage .treatment_link ul li.treatment_link01 span {
	background-color: #e5f0f8;
	color: #0070bb;
}

.treatmentpage .treatment_link ul li.treatment_link01.active a,
.treatmentpage .treatment_link ul li.treatment_link01.active span {
	border-color: #0070bb;
}

.treatmentpage #treatment_link02.treatment_link ul::after {
	border-bottom-color: #199e91;
}

.treatmentpage .treatment_link ul li.treatment_link02 a,
.treatmentpage .treatment_link ul li.treatment_link02 span {
	background-color: #e8f5f4;
	color: #199e91;
}

.treatmentpage .treatment_link ul li.treatment_link02.active a,
.treatmentpage .treatment_link ul li.treatment_link02.active span {
	border-color: #199e91;
}


.treatmentpage .treatment_tab_index {
	padding-top: 20px;
	position: relative;
	z-index: 1;
	margin-bottom: 55px;
}

.treatmentpage .treatment_tab_index ul {
	height: 77px;
	display: flex;
	border-bottom: solid 1px #0070bb;
	justify-content: center;
}

.treatmentpage .treatment_tab_index ul.treatment_tab01 {
	border-bottom-color: #0070bb;
}

.treatmentpage .treatment_tab_index ul.treatment_tab02 {
	border-bottom-color: #199e91;
}

.treatmentpage .treatment_tab_index ul li {
	width: 300px;
	margin: 10px 20px -1px;
	text-align: center;
	transition: all 0.1s ease;
	-webkit-transition: all 0.1s ease;
}

.treatmentpage .treatment_tab_index ul li span {
	height: 100%;
	color: #199e91;
	display: block;
	position: relative;
	z-index: -1;
	background-color: #e8f5f4;
	font-weight: 700;
	padding: 25px 0;
	transition: all 0.1s ease;
	-webkit-transition: all 0.1s ease;
	cursor: pointer;
}

.treatmentpage .treatment_tab_index ul li.active {
	margin-top: 0;
}

.treatmentpage .treatment_tab_index ul li.active span {
	padding: 30px 0;
	position: relative;
	border: solid 1px #0070bb;
	border-bottom: none;
	z-index: 2;
	background-color: #ffffff !important;
	color: #0070bb;
}

.treatmentpage .treatment_tab_index ul li#treatment_tab01 span {
	background-color: #e5f0f8;
	color: #0070bb;
}

.treatmentpage .treatment_tab_index ul li#treatment_tab01.active span {
	border-color: #0070bb;
}

.treatmentpage .treatment_tab_index ul li#treatment_tab02 span {
	background-color: #e8f5f4;
	color: #199e91;
}

.treatmentpage .treatment_tab_index ul li#treatment_tab02.active span {
	border-color: #199e91;
}

.treatmentpage .treatment_wrap>div {
	margin: 0;
	display: none;
}

.treatmentpage .treatment_wrap>div.active {
	display: block;
}

.treatment_wrap .treatment.keisei .box .flex figure {
	width: 460px;
	height: 220px;
}

.pricebox table.treatment_table {
	width: 100%;
	border: solid #1f1f1f;
	border-width: 1px 0;
}

.pricebox table.treatment_table tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.pricebox table.treatment_table caption {
	margin-bottom: 20px;
	text-align: right;
	font-size: 14px;
}

.pricebox table.treatment_table th {
	width: 200px;
	white-space: nowrap;
	padding: 25px 30px;
	background: #f2f7fb;
	text-align: left;
	color: #0070bb;
}

.pricebox table.treatment_table th a {
	display: block;
	margin-top: 15px;
	padding: 10px;
	text-align: center;
	font-size: 10px;
	/*background: #fff;*/
	border: 1px solid #0070bb;
	color: #0070bb;
}

.pricebox table.treatment_table th span {
	display: block;
	margin-top: 10px;
	font-weight: 500;
	font-size: 12px;
	color: #1f1f1f;
}

.pricebox table.treatment_table td div {
	display: flex;
	align-items: center;
}

.pricebox table.treatment_table td figure {
	width: 50px;
	margin-right: 20px;
}

.pricebox table.treatment_table td.tdblock {
	line-height: 1.0 !important;
}

.pricebox table.treatment_table td.tdblock.right {
	background: #e8f5f4;
}

.pricebox table.treatment_table td i {
	display: block;
	margin-bottom: 10px;
	text-align: center;
	font-size: 12px;
	letter-spacing: 1px;
}

.treatmentpage.hinyou table th {
	background: #e8f5f4;
	color: #199e91;
}

.pricebox table.treatment_table td {
	line-height: 1.6;
	padding: 25px 30px;
	border-left: 1px solid #1f1f1f;
}

.pricebox table.treatment_table td:last-child {
	padding: 25px 30px;
	text-align: left;
	font-weight: 500;
	font-size: 14px;
}

.pricebox table.treatment_table td span {
	display: block;
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	color: #0070bb;
}




@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.treatmentpage {
		min-width: 100%;
		padding: 80px 0 100px;
	}

	.medicalpage {
		padding: 80px 0 0;
		margin-bottom: 120px;
	}

	.treatmentpage h2 {
		text-align: center;
	}

	.treatment.keisei {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.treatment.keisei .box {
		margin: 0;
		text-align: left;
	}

	.treatment.keisei .box h3 {
		padding-left: 30px;
		border-bottom: 2px solid #0070bb;
		font-size: 24px;
	}

	.treatment.keisei .box h3 span {
		top: 2px;
		padding: 20px 25px;
		background: #0070bb;
		color: #fff;
		border-width: 2px 2px 0 2px;
	}

	.treatment.keisei .box .flex {
		flex-wrap: wrap;
		padding: 0 40px;
	}

	.treatment.keisei .box .flex div h2 {
		margin: 0 auto;
		border-radius: 100px;
		padding: 15px 30px;
		font-weight: bold;
		font-size: 26px;
	}

	.treatment.keisei .box .flex p.txt {
		width: 100%;
		margin: 30px 0 40px;
		padding: 0;
		line-height: 1.8;
		font-size: 24px;
	}

	.treatment.keisei.sphide .box .flex p {
		display: none;
	}

	.treatment.keisei .box .flex div {
		order: 2;
		width: 100%;
		padding: 0;
	}

	.treatment.keisei .box .flex div a {
		min-width: 300px;
		padding-left: 50px;
		padding-right: 55px;
		text-align: left;
	}

	.treatment.keisei .box .flex figure {
		order: 1 !important;
		width: 640px;
		margin: 0 -40px 50px;
		border-radius: 0;
	}

	.treatment.keisei.sphide .box .flex figure {
		display: none;
	}

	.treatment.keisei .box .flex figure img {
		object-fit: cover;
		width: 100%;
		height: 250px;
		border-radius: 0;
	}

	.treatment.hinyou {
		min-width: 100%;
	}

	.treatment.hinyou .box {
		margin: 50px 0;
		text-align: left;
	}

	.treatment.hinyou .box h3 {
		padding-left: 30px;
		border-bottom: 2px solid #199e91;
		font-size: 24px;
	}

	.treatment.hinyou .box h3 span {
		top: 2px;
		padding: 20px 25px;
		background: #199e91;
		color: #fff;
		border-width: 2px 2px 0 2px;
	}

	.treatment.hinyou .box .flex {
		display: block;
		padding: 0 30px;
	}

	.treatment.hinyou .box .flex p {
		width: 100%;
		margin-bottom: 40px;
		padding: 0;
		line-height: 1.8;
		font-size: 24px;
	}

	.treatment.hinyou .box .flex figure {
		width: 640px;
		margin: 0 -30px;
	}

	.treatment.hinyou .box .flex figure img {
		object-fit: cover;
		width: 100%;
		height: 250px;
		border-radius: 0;
	}

	.treatmentpage .treatment_link ul {
		height: 95px;
		justify-content: space-around;
	}

	.treatmentpage .treatment_link ul li {
		width: 280px;
		font-size: 24px;
		line-height: 1.4;
		margin: 0;
	}

	.treatmentpage .treatment_tab_index ul {
		height: 130px;
		justify-content: space-around;
	}

	.treatmentpage .treatment_tab_index ul li {
		width: 280px;
		font-size: 24px;
		line-height: 1.4;
		margin-left: 10px;
		margin-right: 10px;
	}

	.treatmentpage .treatment_tab_index ul li span {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.pricebox table.treatment_table tr {
		display: flex;
		flex-wrap: wrap;
		border-top: 1px solid #1f1f1f;
	}

	.pricebox table.treatment_table {
		width: 100%;
		border-width: 0 1px 1px;
		line-height: 1.6;
	}

	.pricebox table.treatment_table tr+tr {
		border-top: 1px solid #1f1f1f;
	}

	.pricebox table.treatment_table caption {
		margin-bottom: 20px;
		font-size: 18px;
	}

	.pricebox table.treatment_table th {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 378px;
		padding: 25px 30px;
		border-bottom: 1px dashed #1f1f1f;
		font-size: 24px;
	}

	.pricebox table.treatment_table th a {
		margin-top: 0;
		padding: 10px 20px;
		font-size: 20px;
	}

	.pricebox table.treatment_table th span {
		display: inline-block;
		margin-top: 0;
		margin-left: 20px;
		font-size: 18px;
	}

	.pricebox table.treatment_table th span.ill {
		display: block;
		margin-left: 0;
	}

	.pricebox table.treatment_table td div {
		display: flex;
		align-items: center;
	}

	.pricebox table.treatment_table td figure {
		width: 50px;
		margin-right: 15px;
	}

	.pricebox table.treatment_table td.tdblock {
		width: 179px !important;
		padding: 25px 30px;
	}

	.pricebox table.treatment_table td.tdblock.left {
		border-left: 1px solid #1f1f1f;
	}

	.pricebox table.treatment_table td.tdblock i {
		display: block;
		text-align: center;
		font-size: 18px;
	}

	.pricebox table.treatment_table td em {
		display: block;
		font-size: 16px;
	}

	.pricebox table.treatment_table td {
		width: 50%;
		padding: 20px;
		border-left: none;
		font-size: 22px;
	}

	.pricebox table.treatment_table td:nth-child(2) {
		width: 200px;
		padding: 25px 30px;
		border-bottom: 1px dashed #1f1f1f;
		line-height: 1.6;
		font-size: 22px;
		background: #f2f7fb;
	}

	.pricebox table.treatment_table td:nth-child(3) {
		border-left: none;
		width: 200px;
	}

	.pricebox table.treatment_table td.first {
		text-align: left;
		border-right: 1px solid #1f1f1f;
	}

	.pricebox table.treatment_table td:last-child {
		width: 200px;
		padding: 25px 20px;
		border-left: 1px solid #1f1f1f;
		line-height: 1.6;
		font-size: 22px;
		margin-left: auto;
	}

	.pricebox table.treatment_table td.wrap {
		width: 100% !important;
		border-left: none;
		border-top: 1px dashed #1f1f1f;
		background: #eee;
	}

	.pricebox table.treatment_table td.one {
		width: 50%;
	}

	.pricebox table.treatment_table td span {
		font-size: 22px;
	}

	.treatment_wrap .treatment.keisei .box .flex figure {
		width: 640px;
		height: auto;
	}


	/*----------------------------------------------------------*/
}

/*	料金表：price
===============================================================*/
.price.keisei,
.price.hinyou {
	min-width: 1200px;
	margin: 80px 0;
	text-align: center;
}

.price.keisei h2,
.price.hinyou h2 {
	margin-bottom: 50px;
	padding-bottom: 20px;
	border-bottom: 1px solid #0070bb;
	font-size: 24px;
	color: #0070bb;
}

.price.keisei .h3_txt,
.price.hinyou .h3_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.price.keisei h3,
.price.hinyou h3 {
	margin-bottom: 50px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}

.price.hinyou {
	margin-top: 200px;
}

.price.hinyou h2 {
	border-color: #199e91 !important;
	color: #199e91;
}

.price.hinyou .h3_txt {
	color: #199e91;
}

.pricebox+.pricebox {
	margin-top: 100px;
}

.price table:not([class]) {
	width: 100%;
	border: solid #1f1f1f;
	border-width: 1px 0;
}

.price table:not([class]) tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.price table:not([class]) caption {
	margin-bottom: 20px;
	text-align: right;
	font-size: 14px;
}

.price table:not([class]) th {
	width: 200px;
	white-space: nowrap;
	padding: 25px 30px;
	background: #f2f7fb;
	text-align: left;
	color: #0070bb;
}

.price table:not([class]) th a {
	display: block;
	margin-top: 15px;
	padding: 10px;
	text-align: center;
	font-size: 10px;
	/*background: #fff;*/
	border: 1px solid #0070bb;
	color: #0070bb;
}

.price table:not([class]) th span {
	display: block;
	margin-top: 10px;
	font-weight: 500;
	font-size: 12px;
	color: #1f1f1f;
}

.price table:not([class]) td div {
	display: flex;
	align-items: center;
}

.price table:not([class]) td figure {
	width: 50px;
	margin-right: 20px;
}

.price table:not([class]) td.tdblock {
	line-height: 1.0 !important;
}

.price table:not([class]) td.tdblock.right {
	background: #e8f5f4;
}

.price table:not([class]) td i {
	display: block;
	margin-bottom: 10px;
	text-align: center;
	font-size: 12px;
	letter-spacing: 1px;
}

.price.hinyou table th {
	background: #e8f5f4;
	color: #199e91;
}

.price table:not([class]) td {
	line-height: 1.6;
	padding: 25px 30px;
	border-left: 1px solid #1f1f1f;
}

.price table:not([class]) td:last-child {
	padding: 25px 30px;
	text-align: left;
	font-weight: 500;
	font-size: 14px;
}

.price table:not([class]) td span {
	display: block;
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	color: #0070bb;
}

.price table:not([class]) td span.inline {
	display: inline-block;
}

.price.hinyou table td span {
	color: #199e91;
}

.price.phimosis_treatment td {
	height: 101px;
}

.price .flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.price .flex p {
	line-height: 1.4;
	font-size: 14px;
}

.price .flex a {
	display: inline-block;
	padding-right: 20px;
	background: url('../img/arrow_top.png') no-repeat right 5px center;
	background-size: 11px auto;
	font-size: 14px;
	font-weight: 700;
	color: #1f1f1f;
}

.price .link {
	margin-top: 30px;
	text-align: right;
}

.price .link a {
	display: inline-block;
	padding-right: 50px;
}

.price.hinyou .link a {
	border-color: #199e91;
	background-image: url('../img/icon_link_type_01_g_off.png');
}

.price.hinyou .link a:hover {
	background-color: #199e91;
	background-image: url('../img/icon_link_type_01_h_on.png');
}

.flexlink {
	display: flex;
	flex-wrap: wrap;
}

.flexlink a {
	width: 23.5%;
	margin-top: 20px;
	padding: 17px 20px;
	border: 1px solid #0070bb;
	border-radius: 60px;
	background-color: #fff;
	background-image: url('../img/icon_arrow_down_off.png');
	background-repeat: no-repeat;
	background-position: right 20px center;
	font-weight: 700;
	font-size: 14px;
	color: #1f1f1f;
	cursor: pointer;
}

.flexlink a:hover {
	background-color: #0070bb;
	background-image: url('../img/icon_arrow_down_on.png');
	color: #fff;
}

.flexlink a+a {
	margin-left: 2%;
}

.flexlink a:nth-child(4n+1) {
	margin-left: 0;
}

.flexlink a:nth-child(-n+4) {
	margin-top: 0;
}

.flexlink+p {
	margin-top: 20px;
	text-align: right;
	font-size: 14px;
}

.treatment.hinyou .flexlink a {
	border-color: #199e91;
	background-image: url('../img/icon_arrow_down_g_off.png');
}

.treatment.hinyou .flexlink a:hover {
	background-color: #199e91;
	background-image: url('../img/icon_arrow_down_on.png');
}


.price_about {
	min-width: 1200px;
	margin-bottom: 80px;
}

.price_about .box {
	margin: 40px 0;
	text-align: left;
}

.price_about .box h3 {
	margin-bottom: 40px;
	padding-left: 40px;
	border-bottom: 1px solid #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.price_about .box h3 span {
	position: relative;
	top: 1px;
	display: inline-block;
	padding: 15px 25px;
	border: solid #0070bb;
	border-width: 1px 1px 0 1px;
	background: #fff;
}

.price_about .box .flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}

.price_about .box .flex div {
	width: 500px;
	padding-left: 40px;
	text-align: right;
}

.price_about .box .flex div h2 {
	text-align: center;
	color: #0070bb;
}

.price_about .box .flex p.txt {
	line-height: 2.4;
	font-size: 14px;
	text-align: left;
	margin-bottom: 20px;
}

.price_about .box .flex p.txt span {
	color: #e60012;
}

.price_about .box .flex div a {
	display: inline-block;
	min-width: 200px;
	padding-right: 45px;
	text-align: left;
}

.price_about .box .flex figure {
	width: 460px;
}

.price_about .box .flex figure img {
	border-radius: 8px;
}

.std .price.keisei {
	margin: 0;
}


@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.price.keisei,
	.price.hinyou {
		min-width: 100%;
		margin: 80px 0 100px;
	}

	.price.keisei h2,
	.price.hinyou h2 {
		margin-bottom: 50px;
		padding-bottom: 20px;
		border-bottom: 1px solid #0070bb;
		font-size: 32px;
	}

	.price.keisei .h3_txt,
	.price.hinyou .h3_txt {
		font-size: 22px;
	}

	.price.keisei h3,
	.price.hinyou h3 {
		font-size: 32px;
		margin-bottom: 50px;
	}

	.pricebox {
		padding: 0 30px;
	}

	.pricebox+.pricebox {
		margin-top: 100px;
	}

	.price table:not([class]) tr {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		border-top: 1px solid #1f1f1f;
	}

	.price table:not([class]) {
		width: 100%;
		border-width: 0 1px 1px;
		line-height: 1.6;
	}

	.price table:not([class]) tr+tr {
		border-top: 1px solid #1f1f1f;
	}

	.price table:not([class]) caption {
		margin-bottom: 20px;
		font-size: 18px;
	}

	.price table:not([class]) th {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 25px 30px;
		border-bottom: 1px dashed #1f1f1f;
		font-size: 24px;
	}

	.std .price table:not([class]) th {
		display: flex;
		justify-content: center;
	}

	.price table:not([class]) th a {
		margin-top: 0;
		padding: 10px 20px;
		font-size: 20px;
	}

	.price table:not([class]) th span {
		display: inline-block;
		margin-top: 0;
		margin-left: 20px;
		font-size: 18px;
	}

	.price table:not([class]) th span.ill {
		display: block;
		margin-left: 0;
	}

	.price table:not([class]) td div {
		display: flex;
		align-items: center;
	}

	.price table:not([class]) td figure {
		width: 50px;
		margin-right: 15px;
	}

	.price table:not([class]) td.tdblock {
		width: 179px !important;
		padding: 25px 30px;
	}

	.price table:not([class]) td.tdblock.left {
		border-left: 1px solid #1f1f1f;
	}

	.price table:not([class]) td.tdblock i {
		display: block;
		text-align: center;
		font-size: 18px;
	}

	.price table:not([class]) td em {
		display: block;
		font-size: 16px;
	}

	.price table:not([class]) td {
		width: 50%;
		padding: 20px;
		border-left: none;
		font-size: 22px;
	}

	.price table:not([class]) td.first {
		text-align: left;
		border-right: 1px solid #1f1f1f;
	}

	.price table:not([class]) td:last-child {
		padding: 20px;
		border-left: 1px solid #1f1f1f;
		line-height: 1.6;
		font-size: 22px;
	}

	.price table:not([class]) td.wrap {
		width: 100% !important;
		border-left: none;
		border-top: 1px dashed #1f1f1f;
		background: #eee;
	}

	.price table:not([class]) td.one {
		width: 50%;
	}

	.price table:not([class]) td.sp_wide01 {
		width: 100%;
		border-bottom: 1px dashed #1f1f1f;
	}

	/* .price table:not([class]) .sp_dashedStyle_top {
		border-top-style: dashed !important;
	}

	.price table:not([class]) .sp_dashedStyle_left {
		border-left-style: dashed !important;
	} */

	.price table:not([class]) td span {
		font-size: 22px;
	}

	.price .pricebox .price_table td.w50 {
		width: 50%;
	}

	.price .pricebox .price_table td.w50+.w50 {
		border-left: 1px dashed #1f1f1f;
	}

	.price .pricebox .price_table td.w100 {
		width: 100%;
	}

	.price .flex {
		display: block;
		text-align: right;
		margin-top: 30px;
	}

	.price .flex p {
		text-align: left;
		font-size: 18px;
	}

	.price .flex a {
		margin-top: 30px;
		padding-right: 35px;
		background: url('../img/arrow_top.png') no-repeat right 10px center;
		background-size: 18px auto;
		font-size: 20px;
	}

	.price .link {
		margin-top: 40px;
		text-align: center;
	}

	.price .link a {
		display: inline-block;
		padding-right: 70px;
	}

	.price.phimosis_treatment td {
		height: auto;
	}

	.price.phimosis_treatment table:not([class]) td.first {
		border-right: none;
	}

	.flexlink {
		display: flex;
		width: 580px;
		margin: 0 auto;
		padding: 0;
		flex-wrap: wrap;
		border: solid #0070bb;
		border-width: 2px 0 0 2px;
	}

	.flexlink a {
		width: 50%;
		margin-top: 0;
		padding: 25px 20px;
		border: solid #0070bb;
		border-width: 0 2px 2px 0;
		border-radius: 0;
		background-image: url('../img/icon_arrow_down_1f.png');
		background-position: right 15px center;
		font-size: 20px;
	}

	.flexlink a:hover {
		background-image: url('../img/icon_arrow_down_w.png');
	}

	.treatment.hinyou .flexlink {
		border-color: #199e91;
	}

	.treatment.hinyou .flexlink a {
		background-image: url('../img/icon_arrow_down_1f.png');
		background-position: right 15px center;
	}

	.treatment.hinyou .flexlink a:hover {
		background-image: url('../img/icon_arrow_down_w.png');
	}

	.flexlink a+a {
		margin-left: 0;
	}

	.flexlink a:nth-child(4n+1) {
		margin-left: 0;
	}

	.flexlink a:nth-child(-n+4) {
		margin-top: 0;
	}

	.flexlink+p {
		margin-top: 25px;
		padding: 0 30px;
		font-size: 18px;
	}

	.price.hinyou .link a {
		background-image: url('../img/icon_link_type_01_g_sp_off.png');
	}

	.price.hinyou .link a:hover {
		background-color: #fff;
		background-image: url('../img/icon_link_type_01_g_sp_off.png');
	}

	.price_about {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.price_about .box {
		margin: 0;
		text-align: left;
	}

	.price_about .box h3 {
		padding-left: 30px;
		border-bottom: 2px solid #0070bb;
		font-size: 24px;
	}

	.price_about .box h3 span {
		top: 2px;
		padding: 20px 25px;
		background: #0070bb;
		color: #fff;
		border-width: 2px 2px 0 2px;
	}

	.price_about .box .flex {
		flex-wrap: wrap;
		padding: 0;
	}

	.price_about .box .flex div h2 {
		margin: 0;
		padding: 0;
		line-height: 1.6;
		font-size: 32px;
		font-weight: 700;
	}

	.price_about .box .flex p.txt {
		width: 100%;
		margin: 30px 0 40px;
		padding: 0;
		line-height: 1.8;
		font-size: 24px;
	}

	.price_about .box .flex p {
		display: none;
	}

	.price_about .box .flex div {
		order: 2;
		width: 100%;
		padding: 0;
	}

	.price_about .box .flex div a {
		min-width: 300px;
		padding-left: 50px;
		padding-right: 55px;
		text-align: left;
	}

	.price_about .box .flex figure {
		order: 1 !important;
		width: 640px;
		margin: 0 -40px 50px;
		border-radius: 0;
		display: none;
	}

	.price_about .box .flex figure img {
		object-fit: cover;
		width: 100%;
		height: 250px;
		border-radius: 0;
	}



	.price_about {
		padding: 40px 30px;
		border-width: 1px 0;
		background: #f2f7fb;
	}

	.price_about .box {
		padding: 40px;
		background: #fff;
		border-radius: 8px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
		text-align: center;
	}

	.price_about .box .flex div h2 {
		margin-bottom: 0;
		text-align: left;
		background: url('../img/icon_arrow_down_sp_off.png') no-repeat right 0 center;
	}

	.price_about .box .flex div h2.active {
		background-image: url('../img/icon_arrow_down_sp_close.png');
	}

	/*----------------------------------------------------------*/
}

/*	無料メール相談：mail
===============================================================*/

.sub_main.mail,
.sub_main.contact {
	background: none;
	height: auto;
}

.sub_main.mail .pankz,
.sub_main.contact .pankz {
	display: none;
}

.sub_main.mail .inner>div .h1_box,
.sub_main.contact .inner>div .h1_box {
	height: auto;
}

.sub_main.mail .inner>div .h1_box>div,
.sub_main.contact .inner>div .h1_box>div {
	display: block;
	padding: 60px 0 0;
}

.sub_main.mail .inner>div .h1_box>div p.txt,
.sub_main.contact .inner>div .h1_box>div p.txt {
	display: none;
}

.sub_main.mail .inner>div .h1_box,
.sub_main.contact .inner>div .h1_box {
	height: auto;
}

.mail.form .formpage_title {
	margin-bottom: 40px;
	display: block;
	line-height: 1.8;
}

.mail.form .formpage_title h3 {
	margin-bottom: 30px;
	font-size: 24px;
	text-align: center;
}

.mail.form .formpage_title ul {
	display: flex;
	justify-content: center;
	margin: 0 -25px;
}

.mail.form .formpage_title ul li {
	display: flex;
	width: 300px;
	font-size: 22px;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 15px 0;
	color: #ffffff;
	font-weight: bold;
	background: #0070bb;
	border-radius: 5px;
	margin: 0 25px;
	line-height: 1.3;
}

.mail.form .formpage_title div.formpage_tel {
	margin-top: 40px;
	text-align: center;
}

.mail.form .formpage_title div.formpage_tel strong {
	display: block;
	margin-bottom: 20px;
	font-size: 24px;
}

.mail.form .formpage_title div.formpage_tel a.tel {
	width: 360px;
	height: 100px;
	display: table;
	background: #fff;
	background-repeat: no-repeat;
	border-radius: 8px;
	margin: 40px auto 0;
	font-weight: 700;
	color: #1f1f1f;
	letter-spacing: 1px;
	font-size: 18px;
	pointer-events: none;
	background-image: url('../img/icon_footer_cta_tel.png');
	margin-top: 0;
	background-position: 20px center;
	background-size: 50px auto;
	letter-spacing: 0;
	padding-left: 60px;
	border: solid 1px #0070bb;
	line-height: 1;
}

.mail.form .formpage_title div.formpage_tel a.tel span {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.mail.form .formpage_title div.formpage_tel a.tel em {
	display: block;
	margin-bottom: 5px;
	font-size: 24px;
}

.mail.form .formpage_title div.formpage_tel a.tel i {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
}

.mail.form .formpage-note {
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 14px;
}

.mail.form .formpage-note__ttl {
    font-weight: bold;
    margin-bottom: 10px;
}

.mail.form .formpage-note__list {
    display: inline-block;
    text-align: left;
}

.mail.form .formpage-note__item {
	text-indent: -1em;
	padding-left: 1em;
}

.mail.form .formpage-note__item.formpage-note__item--pd {
	padding-top: 10px;
}

@media (max-width: 767px) {
	.mail.form .formpage-note {
		font-size: 22px;
		text-align: left;
		margin-bottom: 30px;
	}

	.mail.form .formpage-note__ttl {
		text-align: center;
	}
}

.mail.form {
	min-width: 1200px;
	margin-bottom: 80px;
	padding-top: 80px;
	text-align: center;
	font-size: 18px;
}

.mail.form .onpdf ul li a {
	font-size: 18px;
}

.mail.form h2 {
	font-size: 24px;
	color: #0070bb;
}

.mail.form .txt {
	padding-left: 30px;
	margin-bottom: 5px;
	text-align: left;
	line-height: 2.0;
}

.mail.form .txt strong.red {
	color: #e60012;
}

.mail.form .txt a {
	color: inherit;
	text-decoration: underline;
}

.mail.form table {
	width: 100%;
	border: solid #1f1f1f;
	border-width: 1px 0;
}
.mail.form table thead+tbody>tr,
.mail.form table tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.mail.form table caption {
	margin-bottom: 20px;
	text-align: left;
	font-size: 20px;
	color: #e60012;
}

.mail.form table th {
	width: 250px;
	line-height: 1.6;
	white-space: nowrap;
	padding: 25px 30px;
	background: #f2f7fb;
	text-align: left;
	color: #0070bb;
	font-size: 20px;
}

.mail.form table th span {
	display: inline-block;
	margin-left: 10px;
	font-weight: 500;
	font-size: 20px;
	color: #e60012;
}

.mail.form table td {
	padding: 25px 30px;
	border-left: 1px solid #1f1f1f;
	text-align: left;
	font-size: 22px;
}

.mail.form table td .flex {
	display: flex;
	flex-wrap: wrap;
}

.mail.form table td .flex>span {
	width: 32%;
	margin-right: 2%;
	margin-top: 15px;
}

.mail.form table td .flex>span:nth-child(3n) {
	margin-right: 0;
}

.mail.form table td .flex>span:nth-child(-n+3) {
	margin-top: 0;
}
.mail.form table tr.is-single-column td .flex>span {
	width: 100%;
	margin-right: 0;
	margin-top: 15px;
}
.mail.form table tr.is-single-column td .flex>span {
	width: 100%;
	margin-right: 0;
	margin-top: 15px;
}
.mail.form table tr.is-single-column td .flex>span:first-child {
	margin-top: 0;
}

.mail.form table tr.is-single-column td .mwform-checkbox-field label .mwform-checkbox-field-text,
.mail.form table tr.is-single-column td .mwform-radio-field label .mwform-radio-field-text{
	font-size: 22px;
}
@media (max-width: 767px) {
	.mail.form table tr.is-single-column td .mwform-checkbox-field label .mwform-checkbox-field-text,
	.mail.form table tr.is-single-column td .mwform-radio-field label .mwform-radio-field-text{
		font-size: 24px;
	}
}
@media (min-width: 768px) {
	.mail.form table.has-th-width-300px th {
		width: 300px;
	}
}
.mail.form table tr.is-single-column td .mwform-checkbox-field label input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after{
	height: 16px;
	width: 16px;
	background: url(../img/icon_check_pc.png) center center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}
@media (max-width: 767px) {
	.mail.form table tr.is-single-column td .mwform-checkbox-field label input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after{
		height: 20px;
		width: 20px;
	}
}

.mail.form table input[type="checkbox"],
.mail.form table input[type="radio"] {
	display: none;
}

.mail.form table td .mwform-checkbox-field label,
.mail.form table td .mwform-radio-field label {
	overflow: hidden;
	display: block;
}

.mail.form table td .mwform-checkbox-field label span.mwform-checkbox-field-text,
.mail.form table td .mwform-radio-field label span.mwform-radio-field-text {
	position: relative;
	display: block;
	padding: 20px 20px 20px 40px;
	border-radius: 3px;
	background: #e5f0f8;
	font-weight: 700;
	font-size: 18px;
}
.mail:not(.form--contact_y) table td .mwform-checkbox-field label span.mwform-checkbox-field-text,
.mail:not(.form--contact_y) table td .mwform-radio-field label span.mwform-radio-field-text {
	background: #eaeaea;
}

.mail.form table td .mwform-checkbox-field label span.mwform-checkbox-field-text:hover,
.mail.form table td .mwform-radio-field label span.mwform-radio-field-text:hover {
	background: #0070bb;
	color: #fff;
}

.page-recruit .mail.form table td .mwform-radio-field label span.mwform-radio-field-text:hover {
	background: #0070bb;
	color: #fff;
}

.mail.form table td .mwform-checkbox-field label input[type="checkbox"]:checked+span.mwform-checkbox-field-text,
.mail.form table td .mwform-radio-field label input[type="radio"]:checked+span.mwform-radio-field-text {
	background: #0070bb;
	color: #fff;
}

.mail.form table td.input_bg_white .mwform-radio-field label input[type="radio"]:checked+span.mwform-radio-field-text,
.mail.form table td.input_bg_white .mwform-radio-field label span.mwform-radio-field-text{
	background: #FFF;
	color: #000;
	padding: 10px 0px 10px 40px;
}

.mail.form table td span.mwform-checkbox-field label span.mwform-checkbox-field-text::before {
	content: '';
	margin-top: -6px;
	position: absolute;
	top: 50%;
	left: 13px;
	width: 10px;
	height: 10px;
	border: solid 1px #000000;
	background: #fff;
	z-index: 1;
}

.mail.form table td span.mwform-checkbox-field label input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	content: url('../img/icon_check_pc.png');
	position: absolute;
	top: 50%;
	margin-top: -11px;
	left: 13px;
	z-index: 2;
}

.mail.form table td span.mwform-radio-field label span.mwform-radio-field-text::before {
	content: '';
	margin-top: -7px;
	position: absolute;
	top: 50%;
	left: 13px;
	width: 12px;
	height: 12px;
	border: solid 1px #000000;
	background: #fff;
	z-index: 1;
	border-radius: 100px;
}

.mail.form table td span.mwform-radio-field label input[type="radio"]:checked+span.mwform-radio-field-text::after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 100px;
	background-color: #000000;
	position: absolute;
	top: 50%;
	margin-top: -3px;
	left: 17px;
	z-index: 1;
}



.mail.form table td .note {
	margin-top: 15px;
	line-height: 1.8;
	font-size: 18px;
}

.mail.form table td .note a {
	color: #0070bb;
	/*text-decoration: underline;*/
	pointer-events: none;
}

.mail.form table td .note a .red {
	color: #e60012;
}

.mail.form table td .note-small {
	margin-top: 15px;
	line-height: 1.8;
	font-size: 14px;
}

@media (max-width: 767px) {
	.mail.form table td .note-small {
		font-size: 24px;
	}	
}

.mail.form table td .error {
	margin-top: 5px;
}

.mail.form .measures {
	font-size: 22px;
	margin-bottom: 60px;
	color: rgb(230 0 18);
}

.mail.note {
	min-width: 1200px;
	margin-bottom: 80px;
}

.mail.note .txt {
	line-height: 2.0;
	font-size: 14px;
}

.mail.note .txt span {
	display: block;
	font-weight: 700;
	font-size: 18px;
	color: #0070bb;
}

.mail.note h3 {
	margin-top: 40px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #0070bb;
	font-weight: 700;
	font-size: 18px;
	color: #0070bb;
}

.mail.note ul {
	margin-top: 30px;
	font-size: 14px;
}

.mail.note ul li {
	position: relative;
	padding-left: 1.5em;
}

.mail.note ul li:before {
	content: '■';
	position: absolute;
	top: 1px;
	left: 0;
	color: #0070bb;
}

.mail.note ul li+li {
	margin-top: 15px;
}

.mail.note ul li a {
	text-decoration: underline;
	color: #1f1f1f;
}

.mail.note ul li a:hover {
	text-decoration: none;
}


/* フォームパーツ */
input[type="txt"],
input[type="email"],
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

/*input[type='checkbox'],
input[type='radio'] {
	display: none;}*/
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

input {
	font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
}

.mw_wp_form .input_text {
	width: 100%;
	padding: 6px 10px;
	border: 1px solid #1f1f1f;
	border-radius: 3px;
	font-size: 22px;
}

.mw_wp_form .input_text.size_s {
	width: 150px;
}

.mw_wp_form .input_text.size_m {
	width: 300px;
}
.mw_wp_form .input_text.size_l {
	width: 350px;
}

.mw_wp_form .input_text:focus {
	border-color: #0070bb;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.mw_wp_form .input_select {
	padding: 13px 50px 13px 10px;
	border: 1px solid #1f1f1f;
	border-radius: 3px;
	font-size: 22px;
	background: url('../img/icon_arrow_down_1f.png') no-repeat right 10px center;
}

.mw_wp_form .input_text.hasDatepicker {
	padding-right: 50px;
	background: url('../img/icon_arrow_down_1f.png') no-repeat right 10px center;
}

.mw_wp_form .input_select.size_s {
	width: 150px;
}

.mw_wp_form .input_select:focus {
	border-color: #0070bb;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.mw_wp_form .input_area {
	width: 100%;
	height: 200px;
	padding: 8px 10px;
	line-height: 1.6;
	border: 1px solid #1f1f1f;
	border-radius: 3px;
	font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
	font-size: 22px;
}

.mw_wp_form .input_area:focus {
	border-color: #0070bb;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.mw_wp_form .input_bt {
	min-width: 300px;
	margin-top: 40px;
	padding: 20px;
	background: url('../img/icon_arrow_right_w_sp.png') no-repeat right 30px center #0070bb;
	background-size: 14px auto;
	border-radius: 60px;
	font-weight: 700;
	color: #fff;
	font-size: 18px;
}


.mw_wp_form .input_bt.active:hover{
	opacity: 1;
}

.mw_wp_form .input_bt.active{
	pointer-events: initial;
	opacity: 0.9;
}

.mw_wp_form .input_bt.none{
	pointer-events: none;
    opacity: 0.5;
}

.personal_info{
	padding: 30px;
    margin: 50px 0 10px 0;
    background: #f7f7f7;
    text-align: left;
    line-height: 1.6;
	font-size: 16px;
}

.personal_info p a{ text-decoration: underline;}
.personal_info p a:hover{ text-decoration: none;}

@media (max-width: 767px) {
	.personal_info{
		font-size: 24px;
	    margin: 10px 0 10px 0;
	}
}


.personal_info .tit{
	margin-bottom: 10px;
}

.personal_info .agree{
	text-align: center;
	margin-top: 25px;
	font-weight: bold;
}

body .ui-datepicker .ui-datepicker-prev,
body .ui-datepicker .ui-datepicker-next {
	top: 50%;
	transform: translateY(-50%);
}

body .ui-datepicker .ui-datepicker-prev span,
body .ui-datepicker .ui-datepicker-next span {
	margin: 0;
	transform: translate(-50%, -50%);
	width: 0.8em;
	height: 0.8em;
	border-radius: 50%;
	background: #333;
}

body .ui-datepicker .ui-datepicker-prev span:before,
body .ui-datepicker .ui-datepicker-next span:before {
	content: "";
	position: absolute;
	border-top: 0.25em solid transparent;
	border-right: 0.3em solid #ccc;
	border-bottom: 0.25em solid transparent;
	top: 50%;
	left: 50%;
	transform: translate(-68%, -50%);
}

body .ui-datepicker .ui-datepicker-next span {
	transform: translate(-50%, -50%)rotate(180deg);
}

.onpdf {
	margin-bottom: 60px;
	padding-left: 100px;
	text-align: left;
}

.onpdf ul li {
	position: relative;
	padding-left: 1.5em;
	font-size: 14px;
}

.onpdf ul li:before {
	content: '■';
	position: absolute;
	top: 1px;
	left: 0;
	color: #0070bb;
}

.onpdf ul li+li {
	margin-top: 15px;
}

.onpdf ul li a {
	color: #1f1f1f;
	text-decoration: underline;
}

.onpdf ul li a:hover {
	text-decoration: none;
}

.mail.form .flex_select {
	display: flex;
	align-items: center;
}

.mail.form .flex_select:not(:first-child) {
	margin-top: 25px;
}

.mail.form .flex_select p+p {
	margin-left: 10px;
}

.mail.form .radio_wrap div.flex {
	margin: 15px 0 20px;
}

.mail.form .radio_wrap div.flex:last-child {
	margin-bottom: 0;
}

.mail.form .radio_wrap .area-name {
	font-size: 18px;
}

.mail.form .vertical-item+.vertical-item {
	margin-top: 10px;
}


.mail.note .txt em {
	color: #e60012;
}

.mail.note a.pdf {
	display: block;
	width: 340px;
	margin: 30px auto 0;
	text-align: center;
	padding: 20px;
	background: url('../img/icon_arrow_right_b_sp.png') no-repeat right 30px center #ffffff;
	background-size: 14px auto;
	border-radius: 60px;
	font-weight: 700;
	border: solid 2px #0070bb;
	color: #0070bb;
	text-decoration: none;
}

.mw_wp_form .horizontal-item+.horizontal-item {
	margin-left: 0 !important;
}

@media (max-width: 767px) {
	/*----------------------------------------------------------*/

	.mail.form .formpage_title h3 {
		font-size: 28px;
	}

	.mail.form .formpage_title ul {
		margin: 0 -10px;
	}

	.mail.form .formpage_title ul li {
		width: 180px;
		margin: 0 10px;
	}

	.mail.form .formpage_title div.formpage_tel strong {
		font-size: 28px;
	}

	.mail.form .formpage_title div.formpage_tel a.tel {
		width: 100%;
		height: 120px;
		background-position: 50px center;
		padding-left: 70px;
		background-size: auto;
		pointer-events: auto;
	}

	.mail.form .formpage_title div.formpage_tel a.tel em {
		margin-bottom: 8px;
		font-size: 40px;
	}

	.mail.form .formpage_title div.formpage_tel a.tel i {
		font-size: 20px;
	}

	.mail.form {
		min-width: 100%;
		margin-bottom: 100px;
		padding: 80px 30px 0 30px;
	}

	.mail.form .onpdf ul li a {
		font-size: 22px;
	}

	.mail.form .txt {
		text-align: left;
		font-size: 22px;
	}

	.mail.form table,
	.mail.form table tbody,
	.mail.form table tr,
	.mail.form table th,
	.mail.form table td {
		display: block;
	}

	.mail.form table {
		width: 100%;
		border-width: 0 0 1px 0;
		border-bottom:none;
	}

	.mail.form table tr+tr {
		border-top: 1px dashed #1f1f1f;
	}

	.mail.form table tr:first-child {
		border-top: 1px dashed #1f1f1f;
	}

	.mail.form table caption {
		display: block;
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
		line-height: 1.8;
		font-size: 20px;
	}

	.mail.form table th {
		display: flex;
		align-items: center;
		width: 100%;
		padding: 30px;
		font-size: 24px;
	}

	.mail.form table th span {
		margin-left: 20px;
		/*	font-size: 0;
	color: transparent;*/
	}

	.mail.form table td {
		font-size: 24px;
		padding: 20px 0 50px;
		border-left: none;
	}

	.mail.form table td .flex {
		justify-content: space-between;
	}

	.mail.form table td .flex>span {
		width: 48.5%;
		margin-right: 0;
		margin-top: 15px;
	}

	.mail.form table td .flex>span:nth-child(-n+3) {
		margin-top: 15px;
	}

	.mail.form table td .flex>span:nth-child(-n+2) {
		margin-top: 0;
	}

	/* 200911
.mail.form table td .flex > span label {
	display: block;
	padding: 10px 5px; }
.mail.form table td .flex > span label .mwform-checkbox-field-text,
.mail.form table td .flex > span label .mwform-radio-field-text {
	pointer-events: none; }
.mail.form table td .flex > span label {
	overflow: hidden;
	position: relative;
	display: block;
	border-radius: 3px;
	background: #e5f0f8;
	font-weight: 700;
	padding: 30px 20px 30px 50px;
	font-size: 22px;}
.mail.form table td .flex > span label:hover {
	background: #e5f0f8;
	color: #1f1f1f;}
.mail.form table td .flex > span label.active {
	background: #0070bb;
	color: #fff;}
.mail.form table td .flex > span label span::before {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	top: 50%;
	left: 20px;
	background: #fff;
	z-index: 1;}
.mail.form table td .flex > span label.active span:after {
	content: url('../img/icon_check_sp.png');
	position: absolute;
	top: 50%;
	margin-top: -14px;
	left: 23px;
	z-index: 2;}*/

	.mail.form table td .mwform-checkbox-field label span.mwform-checkbox-field-text,
	.mail.form table td .mwform-radio-field label span.mwform-radio-field-text {
		pointer-events: none;
		padding: 30px 20px 30px 50px;
		font-size: 22px;
	}

	.mail.form table td .mwform-checkbox-field label span.mwform-checkbox-field-text:hover,
	.mail.form table td .mwform-radio-field label span.mwform-radio-field-text:hover {
		background: #e5f0f8;
		color: #1f1f1f;
	}

	.mail.form table td .mwform-checkbox-field label input[type="checkbox"]:checked+span.mwform-checkbox-field-text,
	.mail.form table td .mwform-radio-field label input[type="radio"]:checked+span.mwform-radio-field-text {
		background: #0070bb;
		color: #fff;
	}
	
	.mail.form table td.input_bg_white .mwform-radio-field label input[type="radio"]:checked+span.mwform-radio-field-text,
	.mail.form table td.input_bg_white .mwform-radio-field label span.mwform-radio-field-text{
		background: #FFF;
		color: #000;
		padding: 10px 0px 10px 50px;
	}

	.mail.form table td span.mwform-checkbox-field label span.mwform-checkbox-field-text::before {
		margin-top: -9px;
		left: 20px;
		width: 18px;
		height: 18px;
	}

	.mail.form table td span.mwform-checkbox-field label input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
		content: url('../img/icon_check_sp.png');
		top: 50%;
		margin-top: -12px;
		left: 24px;
	}

	.mail.form table td span.mwform-radio-field label span.mwform-radio-field-text::before {
		margin-top: -10px;
		left: 20px;
		width: 18px;
		height: 18px;
	}

	.mail.form table td span.mwform-radio-field label input[type="radio"]:checked+span.mwform-radio-field-text::after {
		width: 12px;
		height: 12px;
		margin-top: -6.5px;
		left: 23.5px;
	}









	.mail.form table td .note {
		margin-top: 20px;
		font-size: 20px;
	}

	.mail.note {
		min-width: 100%;
		margin-bottom: 100px;
		padding: 0 30px;
	}

	.mail.note .txt {
		font-size: 24px;
	}

	.mail.note .txt span {
		font-size: 24px;
	}

	.mail.note h3 {
		margin-top: 60px;
		margin-bottom: 15px;
		padding-bottom: 25px;
		font-size: 24px;
	}

	.mail.note ul {
		font-size: 22px;
	}

	.mail.note ul li+li {
		margin-top: 30px;
	}

	/* フォームパーツ */
	.mw_wp_form .input_text {
		padding: 15px 10px;
		font-size: 24px;
	}

	.mw_wp_form .input_text.size_s {
		width: 500px;
	}

	.mw_wp_form .input_text.size_m {
		width: 100%;
	}
	.mw_wp_form .input_text.size_l {
		width: 100%;
	}

	.mw_wp_form .input_select {
		width: 100%;
		padding: 25px 50px 25px 20px;
		font-size: 24px;
		background: url('../img/icon_arrow_down_1f.png') no-repeat right 20px center;
	}

	.mw_wp_form .input_select,
	.mw_wp_form .input_text.hasDatepicker {
		background-size: 1.75em;
	}

	.mw_wp_form .input_area {
		height: 300px;
		padding: 20px;
		line-height: 1.6;
		font-size: 24px;
	}

	.mw_wp_form .input_bt {
		width: 100%;
		font-size: 28px;
		margin-top: 50px;
		padding: 30px 20px;
		background: url('../img/icon_arrow_right_w_sp.png') no-repeat right 40px center #0070bb;
		background-size: auto auto;
	}

	.onpdf {
		padding-left: 0;
	}

	.onpdf ul li {
		line-height: 1.8;
		font-size: 22px;
	}

	.onpdf ul li+li {
		margin-top: 30px;
	}

	.mail.form .flex_select {
		display: block;
	}

	.mail.form .flex_select:not(:first-child) {
		margin-top: 50px;
	}

	.mail.form .flex_select .input_select {
		background-position: right 10px center;
	}

	.mail.form .flex_select .input_select.size_s {
		width: 110px;
	}

	.mail.form .flex_select p {
		font-size: 24px;
		margin: 0;
	}

	.mail.form .flex_select p+p {
		margin: 15px 0 0;
	}

	.mail.note a.pdf {
		width: 100%;
		font-size: 24px;
		margin-top: 30px;
		padding: 30px 20px;
		color: #ffffff;
		background: url('../img/icon_arrow_right_w_sp.png') no-repeat right 40px center #0070bb;
		background-size: auto auto;
	}

	.mail.note a.pdf--sp-outline {
		background: url('../img/icon_arrow_right_b_sp.png') no-repeat right 40px center;
		color: #0070bb;
		border: 2px solid #0070bb;
	}
	/*----------------------------------------------------------*/
}




/* TEL＆カウンセリング */
.p-footer-CVA--tc .p-footer-CVA__btn--counselling {
	width: 48%;
	height: 120px;
	margin-top: 0;
	padding-left: 70px;
	background-image: url('../img/icon_footer_cta_counselling_big.png');
	background-position: 50px center;
	font-size: 24px;
}

.p-footer-CVA--tc .p-footer-CVA__btn--mail {
	display: none;
}

.p-footer-CVA--tc .p-footer-CVA__btn--line {
	width: 48%;
	height: 120px;
	margin-top: 0;
	padding-left: 70px;
	background-image: url('../img/icon_nav_line_sp_off.png');
	background-position: 50px center;
	font-size: 24px;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.p-footer-CVA--tc .p-footer-CVA__btn--counselling {
		width: 100%;
		margin-top: 20px;
		padding-left: 70px;
		text-align: center;
	}

	.p-footer-CVA--tc .p-footer-CVA__btn--counselling span {
		padding-top: 0;
		font-size: 30px;
	}

	.p-footer-CVA__btn--counselling i {
		font-size: 20px;
	}

	.p-footer-CVA--tc .p-footer-CVA__btn--line {
		margin-top: 20px;
		width: 100%;
	}

	/*----------------------------------------------------------*/
}

/* TEL＆メール＆カウンセリング */
.p-footer-CVA--tmc a,
.p-footer-CVA--ltc a {
	width: 32% !important;
	margin-top: 0;
	height: 100px;
	background-position: 20px center;
	background-size: 50px auto;
	letter-spacing: 0;
	padding-left: 60px;
	font-size: 16px;
}

.p-footer-CVA--tmc .p-footer-CVA__btn--line,
.p-footer-CVA--ltc .p-footer-CVA__btn--line {
	background-image: url('../img/icon_nav_line_sp_off.png')
}

.p-footer-CVA--tmc .p-footer-CVA__btn--counselling,
.p-footer-CVA--ltc .p-footer-CVA__btn--counselling {
	background-image: url('../img/icon_footer_cta_counselling_big.png');
}

.p-footer-CVA--tmc .p-footer-CVA__btn--mail,
.p-footer-CVA--ltc .p-footer-CVA__btn--mail {
	background-image: url('../img/icon_footer_cta_mail.png');
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.p-footer-CVA--tmc a,
	.p-footer-CVA--ltc a {
		width: 48.5% !important;
		margin-top: 20px;
		height: 170px;
		background-position: center;
		background-size: auto;
		letter-spacing: 1px;
	}

	.p-footer-CVA .p-footer-CVA__btn--wide {
		width: 100%!important;
		height: 100px!important;
		background-position: 50px center!important;
		padding-left: 70px!important;
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn--wide .p-footer-CVA__btn__text {
		padding-top: 0!important;
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn--wide:nth-of-type(2) em,
	.p-footer-CVA--sp-tile .p-footer-CVA__btn--wide:nth-of-type(3) em {
		font-size: 30px!important;
	}
	
	.p-footer-CVA--sp-tile .p-footer-CVA__btn--wide:nth-of-type(2) i,
	 .p-footer-CVA--sp-tile .p-footer-CVA__btn--wide:nth-of-type(3) i {
		font-size: 20px!important;
	}

	.p-footer-CVA__btn--wide.p-footer-CVA__btn--tel em {
		margin-bottom: 5px;
		font-size: 34px;
	}

	.p-footer-CVA__btn--wide .p-footer-CVA__btn__text.f30{
		font-size: 30px!important;
	}

	/* .p-footer-CVA--tmc .p-footer-CVA__btn--line {
		display: none;
	} */

	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(1) {
		width: 100% !important;
		height: 120px;
		margin-top: 0;
		background-position: 50px center;
		padding-left: 70px;
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(2),
	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(3) {
		padding-left: 0;
		background-position: center 30px, right 20px center;
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(2) .p-footer-CVA__btn__text,
	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(3) .p-footer-CVA__btn__text {
		padding-top: 100px;
		font-size: 18px;
		font-weight: 700;
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn--line:nth-of-type(2),
	.p-footer-CVA--sp-tile .p-footer-CVA__btn--line:nth-of-type(3) {
		background-image: url('../img/icon_nav_line_sp_off.png'), url('../img/icon_arrow_footer_cta_small.png');
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn--tel:nth-of-type(2),
	.p-footer-CVA--sp-tile .p-footer-CVA__btn--tel:nth-of-type(3) {
		background-image: url('../img/icon_footer_cta_tel.png'), url('../img/icon_arrow_footer_cta_small.png');
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn--mail:nth-of-type(2),
	.p-footer-CVA--sp-tile .p-footer-CVA__btn--mail:nth-of-type(3) {
		background-image: url('../img/icon_footer_cta_mail.png'), url('../img/icon_arrow_footer_cta_small.png');
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn--counselling:nth-of-type(2),
	.p-footer-CVA--sp-tile .p-footer-CVA__btn--counselling:nth-of-type(3) {
		background-image: url('../img/icon_nav_counselling_sp_off.png'), url('../img/icon_arrow_footer_cta_small.png');
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(2) em,
	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(3) em {
		display: block;
		margin-bottom: 5px;
		font-size: 24px;
	}

	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(2) i,
	.p-footer-CVA--sp-tile .p-footer-CVA__btn:nth-of-type(3) i {
		display: block;
		margin-top: 10px;
		font-weight: 500;
		display: block;
		font-size: 16px;
	}

	/*----------------------------------------------------------*/
}

/* LINEのみ */
.p-footer-CVA--line .p-footer-CVA__body {
	justify-content: center;
}

.p-footer-CVA--line .p-footer-CVA__btn--line {
	width: 48%;
	height: 120px;
	margin-top: 0;
	padding-left: 70px;
	background-image: url('../img/icon_nav_line_sp_off.png');
	background-position: 50px center;
	font-size: 24px;
}

.p-footer-CVA--line .p-footer-CVA__btn--mail,
.p-footer-CVA--line .p-footer-CVA__btn--tel,
.p-footer-CVA--line .p-footer-CVA__btn--counselling {
	display: none;
}

/* MAILのみ */
.p-footer-CVA--mail .p-footer-CVA__body {
	justify-content: center;
}
.p-footer-CVA--faq-form .p-footer-CVA__body {
	justify-content: center;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.p-footer-CVA--line .p-footer-CVA__btn--line {
		width: 100%;
	}

	.p-footer-CVA__btn--line span {
		padding: 0;
		font-size: 30px;
	}

	.p-footer-CVA--mail .p-footer-CVA__btn--mail {
		width: 100%;
		height: 120px;
		margin-top: 0;
		padding-left: 70px;
		background-position: 50px center;
		font-size: 24px;
	}

	.p-footer-CVA--mail .p-footer-CVA__btn--mail span {
		padding: 0;
		font-size: 30px;
	}

	.p-footer-CVA--mail .p-footer-CVA__btn--mail em {
		padding: 0;
		font-size: 30px;
	}

	.p-footer-CVA--mail .p-footer-CVA__btn--mail i {
		font-size: 20px;
	}

	/*----------------------------------------------------------*/
}
/* faq-formのみ */
.p-footer-CVA--faq-form .p-footer-CVA__body {
	justify-content: center;
}
.p-footer-CVA--faq-form .p-footer-CVA__btn--faq-form {
	width: 48%;
	height: 120px;
	margin-top: 0;
	padding-left: 70px;
	font-size: 18px;
}
@media (max-width: 767px) {
	.p-footer-CVA--faq-form .p-footer-CVA__btn--faq-form {
		width: 100%;
		height: 120px;
		margin-top: 0;
		padding-left: 70px;
		background-position: 50px center;
		font-size: 24px;
	}
	.p-footer-CVA--faq-form .p-footer-CVA__btn--faq-form span {
		padding: 0;
		font-size: 30px;
	}
	.p-footer-CVA--faq-form .p-footer-CVA__btn--faq-form em {
		padding: 0;
		font-size: 30px;
	}
	.p-footer-CVA--faq-form .p-footer-CVA__btn--faq-form i {
		font-size: 20px;
	}
}
/* home */
.p-footer-CVA__section--compact {
	background: transparent;
	border-style: none;
}

.p-footer-CVA__section--compact h2,
.p-footer-CVA__section--compact .txt {
	color: #1f1f1f;
}

.p-footer-CVA__section--compact .h2_txt {
	color: #0070bb;
}

.p-footer-CVA--compact {
	background: #0070bb;
	border-radius: 10px;
	padding: 20px;
	margin-top: 15px;
}
.p-footer-CVA--compact.p-footer-CVA--col-3 {
	padding: 20px 15px;
}

.p-footer-CVA--compact.p-footer-CVA--urology {
	background: #1d8375;
}

.p-footer-CVA--compact .p-footer-CVA__title {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.75em;
}

.p-footer-CVA--compact .p-footer-CVA__body {
	display: flex;
}

.p-footer-CVA--compact .p-footer-CVA__btn {
	position: relative;
	width: calc(50% - 10px);
	background: #fff;
	color: #000;
	margin: 0;
	background-image: url(../img/icon_menu_arrow.png);
	background-repeat: no-repeat;
	background-position: right 25px center;
	height: 90px;
	display: flex;
	justify-content: center;
	padding: 0px 35px 0 70px;
}

.p-footer-CVA--compact .p-footer-CVA__btn:before {
	position: absolute;
	content: "";
	display: block;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: url(../img/icon_nav_sp_tel_w.png) center center no-repeat;
	background-size: calc(45.71428% * 1.25) auto;
	background-color: #0070bb;
}

.p-footer-CVA--compact.p-footer-CVA--urology .p-footer-CVA__btn:before {
	background-color: #1d8375;
}

.p-footer-CVA--compact .p-footer-CVA__btn--line:before {
	background-color: #00c300 !important;
}

.p-footer-CVA--compact .p-footer-CVA__btn--counselling:before {
	background-image: url(../img/icon_nav_sp_counselling_w.png);
}
.p-footer-CVA--compact .p-footer-CVA__btn--mail:before {
	background-image: url(../img/icon_nav_sp_mail_w.png);
}

.p-footer-CVA--compact .p-footer-CVA__btn--line:before {
	background-image: url(../img/icon_nav_sp_line_w.png);
}

.p-footer-CVA--compact .p-footer-CVA__btn:after {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1.5px solid #0070bb;
	border-right: 1.5px solid #0070bb;
	transform: translateY(-50%)rotate(45deg);
	transform-origin: center center;
	right: 15px;
	top: 50%;
}

.p-footer-CVA--compact.p-footer-CVA--urology .p-footer-CVA__btn:after {
	border-color: #1d8375;
}

.p-footer-CVA--compact .p-footer-CVA__btn__text {
	padding: 0 !important;
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.p-footer-CVA--compact .p-footer-CVA__btn__text em {
	font-size: 26px;
	margin-bottom: 7px;
	text-align: left;
	letter-spacing: -0.02em;
}


.p-footer-CVA--compact .p-footer-CVA__btn--counselling em ,
.p-footer-CVA--compact .p-footer-CVA__btn--mail em {
	font-size: 22px;
}

.p-footer-CVA--compact .p-footer-CVA__btn__mininote,
.p-footer-CVA--compact .p-footer-CVA__btn__hours {
	font-size: 20px;
	font-weight: 500;
}

@media (max-width: 767px) {
	.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn {
		padding: 0px 20px 0 50px;
	}
	.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn {
		width: calc(33.33333% - 6px);
	}
	.page-doctor #footer-CVA--surgery.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn {
		width: calc(50% - 6px);
	}
	.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn:before {
		left: 6px;
		width: 40px;
		height: 40px;
	}
	.page-doctor #footer-CVA--surgery.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn:before {
		left: 40px;
	}
	.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn:after {
		right: 10px;
		width: 7px;
		height: 7px;
	}
	.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn__text em {
		font-size: 18px;
		letter-spacing: -0.08em;
	}
	.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn__mininote,
	.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn__hours {
		font-size: 16px;
	}
}
@media (min-width: 768px) {
	.p-footer-CVA__section--compact .c-section__body {
		display: flex;
		justify-content: space-between;
	}
	.p-footer-CVA__section[data-treatmenttype] .c-section__body {
		justify-content: center;
	}

	.p-footer-CVA__section--compact .p-footer-CVA {
		width: 48%;
	}
	.p-footer-CVA__section--compact .p-footer-CVA.p-footer-CVA--col-3{
		width: 75%;
	}

	.p-footer-CVA--compact .p-footer-CVA__title {
		font-size: 16px;
	}

	.p-footer-CVA--compact .p-footer-CVA__btn {
		width: calc(50% - 10px);
		background-position: right 15px center;
		height: 70px;
		padding: 0px 30px 0 60px;
	}

	.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn {
		width: calc(33.33333% - 10px);
	}

	.page-doctor #footer-CVA--surgery.p-footer-CVA--compact.p-footer-CVA--col-3 .p-footer-CVA__btn {
		width: calc(50% - 10px);
	}

	.p-footer-CVA--compact .p-footer-CVA__btn:before {
		left: 10px;
		width: 40px;
		height: 40px;
	}

	.page-doctor #footer-CVA--surgery.p-footer-CVA--compact .p-footer-CVA__btn:before {
		left: 70px;
	}

	.p-footer-CVA--compact .p-footer-CVA__btn:after {
		width: 6px;
		height: 6px;
		border-top: 1px solid #0070bb;
		border-right: 1px solid #0070bb;
		right: 10px;
	}

	.p-footer-CVA--compact .p-footer-CVA__btn__text em {
		font-size: 18px;
		margin-bottom: 4px;
	}

	.p-footer-CVA--compact .p-footer-CVA__btn--counselling em,
	.p-footer-CVA--compact .p-footer-CVA__btn--mail em {
		font-size: 16px;
	}

	.p-footer-CVA--compact .p-footer-CVA__btn__mininote,
	.p-footer-CVA--compact .p-footer-CVA__btn__hours {
		font-size: 14px;
	}
}
@media (max-width: 767px) {
	.p-footer-CVA__section--compact .p-footer-CVA.p-footer-CVA--col-3{
		margin: 0 -3%;
	}
}


/*	サイトマップ：sitemap
===============================================================*/
.sub_main.sitemap {
	background-image: url('../img/sub_main_sitemap.jpg');
}

.sitemap.detaile {
	padding-top: 60px;
	margin-bottom: 120px;
}

.sitemap.detaile .h3_txt {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
	border-bottom: solid 1px #0070bb;
	padding: 0 0 20px 10px;
}

.sitemap.detaile .box {
	width: 480px;
	margin-top: 45px;
}

.sitemap.detaile .flex {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sitemap.detaile .list_lace li a {
	color: #1f1f1f;
	display: block;
	padding: 15px 10px;
	position: relative;
}

.sitemap.detaile .list_lace li a::before {
	content: "";
	display: inline-block;
	height: 0;
	width: 0;
	margin-right: 10px;
	border: solid transparent;
	border-width: 5px 0 5px 8px;
	border-left-color: #0070bb;
}

.sitemap.detaile .list_lace li.s_level a::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 0;
	width: 20px;
	margin-right: 10px;
	border: none transparent;
	border-top: dotted 1px #0070bb;
}

.p-footer-CVA__section.sitemap_cta{padding:0 0 50px;}
.sitemap_cta .inner{
	border-top: 1px dashed #798186;
    padding: 50px 0 0 0;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.sitemap.detaile {
		padding: 60px 30px;
		margin-bottom: 100px;
	}

	.sitemap.detaile .h3_txt {
		font-size: 22px;
	}

	.sitemap.detaile .txt {
		font-size: 24px;
	}

	.sitemap.detaile .box {
		width: 640px;
		margin: 40px -30px 0;
		padding: 0 30px;
		border-radius: 0;
	}

	.sitemap.detaile .box .flex {
		display: block;
	}

	.sitemap.detaile .list_lace li {
		font-size: 20px;
	}

	.sitemap.detaile .list_lace li a::before {
		border-width: 7px 0 7px 12px;
	}
	.p-footer-CVA__section.sitemap_cta{padding:0 30px 50px;}

	.sitemap_cta .inner{
		border-top: 1px dashed #798186;
		padding: 50px 0 0 0;
	}

	/*----------------------------------------------------------*/
}

/*	プライバシーポリシー：privacy
===============================================================*/
.privacy.detaile {
	min-width: 1200px;
	padding-top: 60px;
	margin-bottom: 120px;
}

.privacy.detaile .h4_txt {
	margin-top: 45px;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
	border-bottom: solid 1px #0070bb;
	padding: 0 0 20px 0;
}
.privacy.detaile .h5_txt {
	font-size: 100%;
	color: #0070bb;
	position: relative;
	margin: 2em 0 0.5em;
	padding-left: 1.75em;
}
.privacy.detaile .h5_txt:before {
	content: "";
	width: 1.5em;
	height: 1px;
	background: #0070bb;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.privacy.detaile .box {
	font-size: 14px;
	line-height: 2;
}

.privacy.detaile .list_normal li {
	margin: 0 0 10px;
	text-indent: -1.6rem;
	padding-left: 1.6rem;
}

.privacy.detaile .list_normal li::before {
	content: '■';
	margin-right: 5px;
	font-size: inherit;
	font-family: sans-serif;
	color: #2d7dc8;
}

.privacy.detaile .list_number {
	padding: 0 0 0 25px;
}

.privacy.detaile .list_number li {
	list-style: decimal;
	margin: 0 0 10px;
}

.privacy.detaile .table_01 {
	margin-top: 50px;
	width: 100%;
}

.privacy.detaile .table_01 tr+tr {
	border-top: dashed 1px #000000;
}

.privacy.detaile .table_01 th {
	background-color: #f0f2f2;
	width: 270px;
	padding: 30px 0;
}

.privacy.detaile .table_01 td {
	padding: 30px 60px;
}

.privacy.detaile .table_01 td a {
	color: inherit;
}

.privacy.detaile .txt {
	font-size: 14px;
	line-height: 2;
}

.number_table td:first-child {
	margin-right: 10px;
	display: block;
}

.privacy.detaile .person {
	margin-top: 10px;
	text-align: right;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.privacy.detaile {
		min-width: auto;
		padding: 60px 30px;
		margin-bottom: 100px;
	}

	.privacy.detaile .h4_txt {
		font-size: 22px;
	}

	.privacy.detaile .txt {
		font-size: 24px;
	}

	.privacy.detaile .box {
		font-size: 24px;
		width: 640px;
		margin: 40px -30px 0;
		padding: 0 30px;
		border-radius: 0;
	}

	.privacy.detaile .table_01 th {
		width: 200px;
	}

	.privacy.detaile .person {
		text-align: left;
	}

	/*----------------------------------------------------------*/
}

/*	よくあるご質問：faq
===============================================================*/
.sub_main.faq {
	background-image: url('../img/sub_main_faq.jpg');
}

.faq.title {
	padding-top: 60px;
	margin-bottom: 60px;
	text-align: center;
}

.faq.title .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.faq.title .txt {
	line-height: 2.0;
	font-size: 14px;
}

.faq.navigation {
	margin-bottom: 40px;
}

.faq.navigation .catBtn {
	position: relative;
}
.faq.navigation .catBtn ul {
	display: flex;
	flex-wrap: wrap;
	margin: -20px 0 0 -20px;
}

.faq.navigation .catBtn ul li {
	width: 235px;
	margin: 20px 0 0 20px;
	padding: 18px 20px;
	border: solid 1px #0070bb;
	border-radius: 100px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	background-image: url('../img/icon_arrow_down_off.png');
	background-repeat: no-repeat;
	background-position: right 20px center;
}

.faq.navigation .catBtn ul li:hover,
.faq.navigation .catBtn ul li.current-cat {
	background-color: #0070bb;
	background-image: url('../img/icon_arrow_down_on.png');
	color: #ffffff;
}

.faq.navigation p.right {
	font-size: 12px;
	position: absolute;
	right: 0;
	bottom: 8px;
    width: 19em;
    line-height: 1.4;
}

.faq.detaile {
	margin-bottom: 100px;
}

.faq.detaile h3.searchWordp {
	background-color: #0070bb;
	font-size: 18px;
	padding: 23px 30px;
	color: #ffffff;
	margin-bottom: 40px;
}

.faq.detaile .qabox li {
	margin-top: 20px;
	text-align: left;
	font-size: 14px;
}

.faq.detaile .qabox li div.accordion_title {
	position: relative;
	padding: 25px 70px 25px 120px;
	border: 1px solid #798186;
	border-radius: 8px;
	background: url('../img/icon_faq_off.png') no-repeat right 30px center #798186;
	font-weight: 700;
	color: #fff;
	line-height: 1.8;
	cursor: pointer;
}

.faq.detaile .qabox li div.accordion_title span.qabox_Q {
	position: absolute;
	top: 50%;
	left: 50px;
	margin-top: -15px;
	font-size: 30px;
	line-height: 1.0;
}

.faq.detaile .qabox li div.accordion_title.active {
	border-color: #0070bb;
	background-color: #fff;
	background-image: url('../img/icon_faq_on.png');
	color: #1f1f1f;
}

.faq.detaile .qabox li div.accordion_title.active span.qabox_Q {
	color: #0070bb;
}

.faq.detaile .qabox li div.accordion_title a {
	color: #fff;
	text-decoration: underline;
}

.faq.detaile .qabox li div.accordion_title.active a {
	color: #1f1f1f;
}

.faq.detaile .qabox li div.accordion_main {
	display: none;
	position: relative;
	padding: 30px 30px 30px 120px;
	line-height: 2.0;
}

.faq.detaile .qabox li div.accordion_main span.qabox_A {
	position: absolute;
	top: 30px;
	left: 52px;
	margin-top: -15px;
	font-size: 30px;
	font-weight: 700;
	color: #0070bb;
}

.faq.detaile .qabox li div.accordion_main a {
	color: inherit;
	text-decoration: underline;
}

.faq.detaile .qabox li div.accordion_main .list_number {
	padding: 0 0 0 25px;
}

.faq.detaile .qabox li div.accordion_main .list_number li {
	list-style: decimal;
	margin: 0 0 10px;
}

.faq.detaile p.right {
	font-size: 14px;
	margin-top: 20px;
	text-align: right;
}

.faq.detaile p.right a {
	color: inherit;
	border-bottom: solid 1px #000000;
}

.faq p.faq_note {
	font-size: 14px;
	margin-top: 60px;
	text-align: center;
	line-height: 1.8;
}
.faq p.faq_note .red {
	color: #e60012;
}
.faq p.faq_note a {
	color: inherit;
	border-bottom: solid 1px #e60012;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.faq.title {
		margin-bottom: 40px;
	}

	.faq.title .h2_txt {
		font-size: 22px;
	}

	.faq.title .txt {
		font-size: 24px;
	}

	.faq.navigation {
		padding: 30px;
	}

	.faq.navigation .box {
		font-size: 20px;
		border-radius: 0;
	}

	.faq.navigation p.right {
		font-size: 20px;
		margin-top: 20px;
		text-align: right;
		position: static;
		width: auto;
	}

	.faq.navigation .catBtn ul li {
		width: 280px;
		padding: 20px 30px;
		background-image: url('../img/icon_arrow_down_1f.png');
		background-position: right 15px center;
		font-size: 20px;
	}

	.faq.navigation .catBtn ul li:hover,
	.faq.navigation .catBtn ul li.current-cat {
		background-image: url('../img/icon_arrow_down_w.png');
	}

	.faq.detaile {
		padding: 60px 30px;
		margin-bottom: 100px;
	}

	.faq.detaile h3.searchWordp {
		font-size: 24px;
	}

	.faq.detaile .qabox li {
		font-size: 22px;
	}

	.faq.detaile .qabox li div.accordion_title {
		padding: 25px 70px 25px 80px;
		background: url('../img/icon_faq_off.png') no-repeat right 30px center #798186;
		font-size: 24px;
	}

	.faq.detaile .qabox li div.accordion_title span.qabox_Q {
		left: 30px;
	}

	.faq.detaile .qabox li div.accordion_title.active {
		background-image: url('../img/icon_faq_on.png');
	}

	.faq.detaile .qabox li div.accordion_main {
		padding: 30px 30px 30px 80px;
	}

	.faq.detaile .qabox li div.accordion_main span.qabox_A {
		left: 30px;
		margin-top: -10px;
	}

	.faq.detaile p.right {
		font-size: 20px;
	}

	.faq p.faq_note {
		font-size: 20px;
		text-align: left;
	}

	.faq p.faq_note br {
		display: none;
	}

	/*----------------------------------------------------------*/
}

/*	コラム：colum
===============================================================*/
.column .news_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.column .news_list .title-area {
	position: relative;
	margin-left: 20px;
	flex: 2;
}

.news_list:not(.c-news-list) .title-area .title {
	font-size: 16px;
	font-weight: 700;
	color: rgb(0 112 187);
}

.column .c-news-list .title-area .title {
	font-size: 16px;
	font-weight: 700;
	color: rgb(0 112 187);
	line-height: 1.33333;
}

.column .news_list .title-area .column-btn {
	border: 2px solid rgb(0 112 187);
	background: url(../img/icon_link_type_01_sp_off.png) no-repeat right center rgb(255 255 255);
	font-weight: 700;
	color: rgb(31 31 31);
	transition: .2s;
}

/* .news_list:not(.c-news-list) .title-area .column-btn{
	position: initial;
	width: 260px;
	margin-top: 20px;
	margin-right: 0;
	padding: 28px 30px;
	background-position: right 30px center;
	font-size: 24px;
}
.column .c-news-list .title-area .column-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	padding: 14px 22px;
	border-width: 1px;
	border-radius: 60px;
	background-position: right 11px center;
	font-size: 14px;
	width: 160px;
} */
.column .news_list .title-area .column-btn {
	position: absolute;
	bottom: -10px;
	right: 0;
	display: block;
	margin: 0 auto;
	padding: 14px 22px;
	border: 1px solid rgb(0 112 187);
	border-radius: 60px;
	background: url(../img/icon_link_type_01_off.png) no-repeat right 11px center rgb(255 255 255);
	font-weight: 700;
	font-size: 14px;
	color: rgb(31 31 31);
	transition: .2s;
	width: 160px;
}

.column .news_list .title-area .column-btn:hover {
	background: url(../img/icon_link_type_01_on.png) no-repeat right 11px center rgb(0 112 187);
	color: rgb(255 255 255);
}

.column .news_list li {
	width: calc((100% - 20px) /2);
	display: flex;
	align-items: center;
}

.column .news_list li {
	margin-bottom: 20px;
	border: 1px solid rgb(220 232 241);
}

.column .news_list li a {
	padding: 20px;
	width: 100%;
	display: flex;
	align-items: initial;
	background: rgb(229 240 248);
}

.column .c-news-list .thumbnail {
	width: 100%;
	overflow: hidden;
}

.news_list:not(.c-news-list) .thumbnail {
	flex: 2;
}

.column .news_list .thumbnail img {
	display: block;
	object-fit: cover;
	width: 100%;
}

.news_list:not(.c-news-list) .thumbnail img {
	height: 120px;
}

.column .news_list li+li {
	margin-top: 0;
}

@media (max-width: 767px) {
	.news_list:not(.c-news-list) {
		flex-direction: column;
	}

	.news_list:not(.c-news-list) li {
		width: 100%;

	}

	.column .news_list li {
		width: calc((100% - 20px) /2);
	}

	.news_list:not(.c-news-list) li a {
		padding: 30px;
	}

	.column .news_list .thumbnail {
		flex: auto;
		width: 100%;
	}

	.column .c-news-list .thumbnail {
		height: 0;
		padding-bottom: calc(158.78% / 2.38);
		position: relative;
	}

	.news_list:not(.c-news-list) .thumbnail {
		width: 100%;
	}

	.column .c-news-list .thumbnail {
		flex: auto;
		width: 100%;
		height: 0;
		padding-bottom: calc(158.78% / 2.38);
		position: relative;
	}

	.column .news_list .thumbnail img {
		display: block;
		width: 100%;
	}

	.news_list:not(.c-news-list) .thumbnail img {
		height: 250px;
	}

	.column .c-news-list .thumbnail img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: block;
		height: 100%;
	}

	.column .c-news-list .title-area {
		margin-left: 0;
		width: 100%;
	}

	.news_list:not(.c-news-list) .title-area {
		position: relative;
		margin-left: 20px;
		flex: 2;
	}

	/* .column .news_list .title-area .column-btn{
		position: initial;
		width: 100%;
		border: 2px solid rgb(0 112 187);
		background: url(../img/icon_link_type_01_sp_off.png) no-repeat right 10px center rgb(255 255 255);
		font-weight: 700;
		color: rgb(31 31 31);
		transition: .2s;
		margin-top:15px;
		margin-right: 0;
	}
	.news_list:not(.c-news-list) .title-area .column-btn{
		width: 260px;
		bottom: 0;
    right: 0;
    display: block;
		margin-top: 20px;
    margin-right: 0;
		margin-left: auto;
		border-radius: 60px;
		padding: 28px 30px;
		background-position: right 30px center;

	} */
	.column .news_list .title-area .column-btn {
		position: initial;
		width: 260px;
		padding: 28px 30px;
		border: 2px solid rgb(0 112 187);
		background: url(../img/icon_link_type_01_sp_off.png) no-repeat right 30px center rgb(255 255 255);
		font-weight: 700;
		font-size: 24px;
		color: rgb(31 31 31);
		transition: .2s;
		margin-top: 20px;
		margin-right: 0;
		display: none;
	}

	.column .c-news-list .title-area .column-btn {
		padding: 10px 10px 10px 20px;
		font-size: 20px;
	}

	.column .news_list .title-area .column-btn:hover {
		background: url(../img/icon_link_type_01_sp_on.png) no-repeat right 10px center rgb(0 112 187);
		color: rgb(255 255 255);
	}

	.news_list:not(.c-news-list) .title-area .title {
		font-size: 24px;
	}

	.column .c-news-list .title-area .title {
		font-size: 20px;
		line-height: 1.33333;
		padding-right: 0;
	}
}

@media (min-width: 768px) {
	.column .news_list li a {
		padding: 30px;
	}

	.column .c-news-list .thumbnail {
		flex: 2;
	}

	.column .c-news-list .thumbnail img {
		height: 120px;
	}
}

/*	記事詳細：post
===============================================================*/
.postbox {
	min-width: 1200px;
	padding-top: 80px;
	margin-bottom: 80px;
}

.postbox .flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.postbox .flex .left .post_cont ul li+li {
	margin-top: 0px;
}

.postbox .flex .left {
	width: 700px;
}

.postbox .flex .left h2 {
	padding-bottom: 10px;
	border-bottom: 2px solid #0070bb;
}

.postbox .flex .left .dc {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	font-size: 14px;
}

.postbox .flex .left .dc .cate {
	padding: 8px 15px;
	border-radius: 60px;
	background: #1f1f1f;
	font-size: 12px;
	color: #fff;
}

.postbox .flex .left .post_cont {
	line-height: 2.4;
	font-size: 14px;
}

.postbox .flex .left .post_cont p+p {
	margin-top: 30px;
}

.postbox .flex .left .post_cont ul {
	margin: 30px 0;
	text-align: left;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 700;
}

.postbox .flex .left .post_cont ul li {
	position: relative;
	padding-left: 1.5em;
}

.postbox .flex .left .post_cont ul li:before {
	content: '■';
	position: absolute;
	top: 0;
	left: 0;
	color: #199e91;
}

.postbox .flex .left .post_cont ul li+li {
	margin-top: 10px;
}

.postbox .flex .left .info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
	font-size: 14px;
}

.postbox .flex .left .info a {
	width: 200px;
	padding: 17px 20px;
	text-align: center;
	background-repeat: no-repeat;
	border: 1px solid #0070bb;
	color: #0070bb;
	display: block;
}

.postbox .flex .left .info a:hover {
	background-color: #0070bb;
	color: #ffffff;
}

.postbox .flex .left .info .prev a {
	background-image: url('../img/icon_link_type_02_sp_off.png');
	background-position: left 20px center;
	background-size: 14px auto;
}

.postbox .flex .left .info .prev a:hover {
	background-image: url('../img/icon_link_type_02_sp_on.png');
}

.postbox .flex .left .info .next a {
	background-image: url('../img/icon_link_type_01_sp_off.png');
	background-position: right 20px center;
	background-size: 14px auto;
}

.postbox .flex .left .info .next a:hover {
	background-image: url('../img/icon_link_type_01_sp_on.png');
}

.postbox .flex .right {
	width: 250px;
	position: sticky;
	top: 100px;
}

.postbox .flex .right>div {
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid #0070bb;
	background: #fff;
}

.postbox .flex .right>div ul li+li {
	border-top: 1px dashed #1f1f1f;
}

.postbox .flex .right>div ul li a {
	display: block;
	padding: 20px 30px;
	font-size: 14px;
	color: #1f1f1f;
}

.postbox .flex .right>div ul li a:hover {
	background: #0070bb;
	color: #fff;
}

.postbox .catebox {
	display: flex;
	justify-content: space-between;
}


@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.postbox {
		min-width: auto;
		padding: 60px 30px 0;
		margin-bottom: 100px;
	}

	.postbox .flex {
		display: block;
	}

	.postbox .flex .left {
		width: 100%;
	}

	.postbox .flex .left h2 {
		padding-bottom: 20px;
	}

	.postbox .flex .left .dc {
		margin-bottom: 40px;
		font-size: 20px;
	}

	.postbox .flex .left .dc .cate {
		padding: 10px 20px;
		font-size: 18px;
	}

	.postbox .flex .left .post_cont {
		font-size: 24px;
	}

	.postbox .flex .left .post_cont p+p {
		margin-top: 60px;
	}

	.postbox .flex .left .post_cont ul {
		line-height: 1.8;
		font-size: 24px;
	}

	.postbox .flex .left .post_cont ul li+li {
		margin-top: 10px;
	}

	.postbox .flex .left .info {
		border-top: 2px solid #1f1f1f;
		padding-top: 40px;
		margin-top: 40px;
	}

	.postbox .flex .left .info a {
		margin: 0;
		font-size: 22px;
		width: 260px;
		padding: 20px 20px;
		text-align: center;
	}

	.postbox .flex .left .info .prev a {
		padding-left: 30px;
		background-position: left 30px center;
		background-size: 24px auto;
	}

	.postbox .flex .left .info .next a {
		padding-right: 30px;
		background-position: right 30px center;
		background-size: 24px auto;
	}

	.postbox .flex .right {
		width: 100%;
		margin-top: 60px;
		position: static;
	}

	.postbox .flex .right>div {
		border: 2px solid #0070bb;
	}

	.postbox .flex .right>div ul li a {
		padding: 30px;
		font-size: 22px;
	}

	.postbox .flex .right>div ul li a:hover {
		background: #fff;
		color: #1f1f1f;
	}
}

/*----------------------------------------------------------*/

/*	コラム：post
===============================================================*/
.post-template-single-column .postbox {
	padding-top: 50px;
}
.post-template-single-column.phimosis .postbox {
	padding-top: 0;
}

.post-template-single-column .postbox .flex .left .title_jougeline {
	margin-bottom: 20px;
	line-height: 1.6;
	font-size: 20px;
	font-weight: 700;
	color: #000000;
	border-bottom: none;
	text-align: center;
}

.post-template-single-column .postbox .flex .left {
	width: 100%;
}


.post-template-single-column .postbox .flex .left h1 {
	text-align: left;
	font-size: 22px;
	font-weight: bold;
	color: #000;
	border: none;
}

.post-template-single-column .postbox .flex .left h4 {
	font-size: 22px;
	font-weight: normal;
	color: rgb(45 125 200);
	border: none;
	margin-top: 40px;
}

.post-template-single-column .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	text-align: center;
}
@media (max-width: 767px){
	.post-template-single-column .tr_price .h2_txt,
	.post-template-single-column .tr_howto .h2_txt,
	.post-template-single-column .tr_lisk .h2_txt,
	.post-template-single-column .tr_aftercare .h2_txt,
	.post-template-single-column .tr_faq .h2_txt,
	.post-template-single-column .tr_relation .h2_txt,
	.post-template-single-column .c-section--rich .c-section__subtitle{
		font-size: 22px;
	}
}

.post-template-single-column .postbox .flex .left h3 {
	text-align: left;
	margin: 30px 0 10px 0;
	font-size: 18px;
	font-weight: 700;
	color: rgb(0 112 187);
}

.post-template-single-column .postbox .flex .left .post_cont h3 .h3_link:not(.c-btn) {
	color: rgb(0 112 187);
}

.post-template-single-column .postbox .flex .left .post_cont h3 .h3_link:not(.c-btn):hover {
	text-decoration: none;
}

.post-template-single-column .postbox .flex .left h3.phimosis-ttl {
	margin: 10px 0 10px 0;
}

.post-template-single-column .postbox .flex .left h4 {
	text-align: left;
	font-weight: bold;
	font-size: 18px;
	font-weight: normal;
	color: #1f1f1f;
	margin-top: 0;
}

.post-template-single-column .postbox .flex .left figure {
	text-align: center;
}

.post-template-single-column .postbox .flex .left figure img {
	width: 100%;
}

.post-template-single-column .postbox .flex .left .title-flex {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	flex-wrap: wrap;
}

@media (max-width: 767px) {
	.post-template-single-column .postbox .flex .left .title-flex h2 {
		order: 100;
	}
}

.post-template-single-column .postbox .txt {
	line-height: 2.0;
	font-size: 14px;
}

.post-template-single-column .postbox .txt-line-height {
	line-height: 1.6;
}

.post-template-single-column .postbox .flex .left .post_cont ul li {
	padding: 0;
}

.post-template-single-colum .postbox .flex .left .post_cont ul li:before {
	position: static;
	content: "";
}

.post-template-single-column .postbox .flex .left .post_cont ul {
	font-weight: 500;
	line-height: 2.0;
}

.post-template-single-column .postbox .flex .left .post_cont .txt-line-height {
	line-height: 1.6;
}

.post-template-single-column .postbox .flex .left .post_cont ul.list01.flat {
	display: flex;
	align-items: baseline;
}

.post-template-single-column .postbox .flex .left .post_cont ul.list01.flat li {
	padding-right: 8px;
}

.post-template-single-column .postbox .flex .left .post_cont ul.list02 li {
	font-size: 18px;
	color: rgb(0 112 187);
}

.post-template-single-column .postbox .flex .left .post_cont ul.list02 li a {
	color: rgb(0 112 187);
}

.post-template-single-column .postbox .flex .left .post_cont ul.c-menu__list {
	font-weight: bold;
	line-height: 1.8;
}
.post-template-single-column .postbox .flex .left .post_cont ul.c-menu__list li {
	padding: 0 0 10px;
}

.post-template-single-column .postbox .flex .left .post_cont a:not(.c-cva):not(.c-btn) {
	text-decoration: underline;
	color: #333;
	line-height: 1;
}

.post-template-single-column .postbox .flex .left .post_cont .p-profile__link-type.link_type_01 {
	text-decoration: none;
}

.post-template-single-column .postbox .flex .left .post_cont .p-profile__link-type.link_type_01:hover {
	color: #fff;
}

.post-template-single-column .postbox .flex .left .post_cont p+p {
	margin-top: 20px;
}

.post-template-single-column .postbox .flex .left .post_cont ul li:before {
	position: static;
	content: "";
}

.post-template-single-column .postbox .flex .left .info {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	font-size: 14px;
}

.post-template-single-column .postbox .flex .left .info a {
	width: 280px;
	padding: 17px 20px;
	text-align: center;
	background-repeat: no-repeat;
	border: 1px solid #0070bb;
	color: #000;
	display: block;
}

.post-template-single-column .postbox .flex .left .info a:hover {
	background-color: #0070bb;
	color: #ffffff;
}

.post-template-single-column .postbox .flex .left .post_cont .list01_list:before,
.list01_title:before {
	margin-right: 7px;
	content: "\f192";
	font-family: "Font Awesome 5 Free";
	color: rgb(131 204 210);
}

.post-template-single-column .postbox .flex .left .post_cont .list01_list,
.list01_title {
	padding-left: 1.4em;
	text-indent: -1.4em;
}

.post-template-single-column .postbox .flex .left .post_cont ul li+li {
	margin-top: 0;
}

.post-template-single-column .postbox .flex .left .post_cont ul {
	margin: 20px 0;
}

#body .post-template-single-column .p-feature-clinic__section,
#body .post-template-single-column .p-about-clinic__section {
	min-width: auto;
}

@media (min-width: 768px) {
	.post-template-single-column .postbox .flex .left figure {
		width: 380px;
	}

	.post-template-single-column .postbox .flex .left .onepoint-flex figure {
		width: 268px;
	}

	.post-template-single-column .postbox .flex .left .title-flex p {
		width: calc(100% - 380px - 20px);
	}

	.post-template-single-column .postbox .flex .left .title-flex .txt-flex {
		width: calc(100% - 380px - 20px);
	}

	.post-template-single-column .postbox .flex .left .title-flex .txt-flex p {
		width: 100%;
	}

	.post-template-single-column .postbox .flex .title-flex.has-small-figure p {
		width: 710px;
	}

	.post-template-single-column .postbox .title-flex.has-small-figure figure {
		width: 228px;
	}
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.post-template-single-column .postbox .flex .left .title_jougeline {
		text-align: center;
		border-bottom: none;
		margin-bottom: 30px;
		line-height: 1.6;
		font-size: 32px;
		font-weight: 700;
	}

	.post-template-single-column .postbox .txt {
		line-height: 2.0;
		font-size: 24px;
	}

	.post-template-single-column .postbox .txt-line-height {
		line-height: 1.6;
	}

	.post-template-single-column .postbox .flex .left h1 {
		text-align: left;
		font-size: 32px;
		line-height: 1.5;
	}

	.post-template-single-column .postbox .flex .left h2 {
		margin-top: 30px;
		font-size: 32px;
		padding-bottom: 0;
	}

	.post-template-single-column .postbox .flex .left h3 {
		font-size: 30px;
		text-align: left;
	}

	.post-template-single-column .postbox .flex .left .title-flex {
		flex-direction: column-reverse;
	}

	.post-template-single-column .postbox .flex .left .title-flex.-reverse {
		flex-direction: column;
	}

	.post-template-single-column .postbox .title-flex.has-small-figure figure {
		max-width: 60%;
	}

	.post-template-single-column .postbox .flex .left figure {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.post-template-single-column .postbox .flex .left figure img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
		margin-bottom: 10px;
	}

	.post-template-single-column .postbox .flex .left .onepoint-flex figure img {
		margin-bottom: 0;
	}

	.post-template-single-column .postbox .flex .left .info a {
		width: 340px;
		padding: 28px 30px;
	}

	.post-template-single-column .postbox .flex .left .info {
		border-top: none;
	}

	.post-template-single-column .postbox .flex .left .post_cont ul.list02 li {
		font-size: 24px;
	}
}

#body .p-feature-clinic__title {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #1f1f1f;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
}

#body .p-feature-clinic__section ul {
	margin: 0;
}

#body .p-feature-clinic__section ul a {
	text-decoration: none;
}

#body .p-about-clinic__title {
	margin-bottom: 15px;
	margin-top: 0;
	padding-bottom: 20px;
	line-height: 1;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

@media (max-width: 767px) {
	.p-feature-clinic__section {
		padding: 0;
	}
	.p-feature-clinic__section[data-treatmenttype] {
		padding: 0 30px;
	}

	.p-about-clinic__section .c-section__body {
		margin-right: 30px;
		margin-left: 30px;
	}

	#body .p-feature-clinic__section li {
		position: relative;
		width: 50%;
		margin: 0;
		text-align: center;
		line-height: 1.0;
	}

	#body .p-feature-clinic__section li:before {
		content: '';
		position: absolute;
		top: 50%;
		margin-top: -12px;
		right: 0;
		left: auto;
		width: 1px;
		height: 24px;
		background: #1f1f1f;
	}

	#body .p-feature-clinic__title {
		margin-bottom: 30px;
		line-height: 1.6;
		font-size: 24px;
	}

	#body .p-about-clinic__title {
		line-height: 1.4;
		text-align: center;
	}

	#body .p-about-clinic__title {
		margin-bottom: 15px;
		padding-bottom: 20px;
		font-size: 30px;
	}
}

#body .p-related-medical__section {
	min-width: auto;
	margin-top: 60px;
	margin-bottom: 60px;
}

.p-related-medical__section .c-section__title {
	margin-top: 0 !important;
}

.p-related-medical__section .c-section__body {
	margin-right: 0;
	margin-left: 0;
}

#body .p-related-medical__list-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#body .p-related-medical__list-group[data-treatmenttype]{
	justify-content: flex-start;
	padding: 0 30px;
}
#body .p-related-medical__list-item {
	line-height: 1;
	width: 100%;
}

#body .p-related-medical__list-group a {
	text-decoration: none;
}



@media (min-width: 768px) {
	.p-related-medical__section .c-section__body {
		margin-top: 20px;
	}

	#body .p-related-medical__list-group {
		padding: 0 30px;
		margin: 0 -10px;
	}

	#body .p-related-medical__list-item {
		margin-top: 20px;
		padding: 0 10px;
		max-width: 25%;
	}
}

@media (max-width: 767px) {
	#body .p-related-medical__list-group {
		margin: 40px 0 0 0;
	}

	#body .p-related-medical__list-item:not(:first-child) {
		margin-top: 20px;
	}
}


/*	オンライン診療：remote
===============================================================*/

.sub_main.remote {
	background-image: url('../img/sub_main_remote.jpg');
}

.navigation.remote {
	min-width: 1200px;
	margin: 60px 0 80px;
}

.navigation.remote .h2_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.navigation.remote .h2_box h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
}

.navigation.remote .h2_box p {
	font-size: 12px;
}

.navigation.remote ul {
	display: flex;
	flex-wrap: wrap;
	margin: -20px 0 0 -20px;
}

.navigation.remote ul li {
	width: 235px;
	margin: 20px 0 0 20px;
}

.navigation.remote ul li a {
	display: block;
	padding: 18px 20px;
	border: solid 1px #0070bb;
	border-radius: 100px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	background-image: url('../img/icon_arrow_down_off.png');
	background-repeat: no-repeat;
	background-position: right 20px center;
	color: #1f1f1f;
}

.navigation.remote ul li a:hover {
	background-color: #0070bb;
	background-image: url('../img/icon_arrow_down_on.png');
	color: #ffffff;
}

.remote.tr_about .flex {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.remote.tr_about .flex>div {
	width: 300px;
}

.remote.tr_about .flex>div+div {
	margin-left: 50px;
}

.remote.tr_about .flex>div figure {
	margin-bottom: 30px;
}

.remote.tr_about .flex>div a {
	display: block;
	width: 100%;
	background: #199e91;
	border-radius: 10px;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
}

.remote.tr_about .flex>div a:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.remote.tr_about .flex>div a span {
	display: block;
	width: 100%;
	background: url('../img/remote_link_arrow.png') no-repeat right 30px center;
}

.remote.tr_about .flex>div a span em {
	display: block;
	width: 100%;
	padding: 30px;
	text-align: center;
}

.remote.tr_about .flex>div:nth-child(1) a span em {
	background: url('../img/remote_icon01.png') no-repeat left 27px center;
}

.remote.tr_about .flex>div:nth-child(2) a span em {
	background: url('../img/remote_icon02.png') no-repeat left 27px center;
}

.remote.tr_about .flex>div:nth-child(3) a span em {
	background: url('../img/remote_icon03.png') no-repeat left 27px center;
}

.remote.tr_merit {
	background-color: #e5f0f8;
	border: dotted 2px #b7d6ec;
}

.remote.tr_merit .inner {
	padding: 60px 0 85px;
}

.remote.tr_merit ul {
	display: flex;
	flex-wrap: wrap;
	margin: -20px 0 0 -40px;
}

.remote.tr_merit ul li {
	width: 480px;
	margin: 40px 0 0 40px;
	position: relative;
	z-index: 1;
}

.remote.tr_merit .flex {
	border: solid 2px #0070bb;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.remote.tr_merit .flex p {
	margin: auto;
	font-size: 18px;
	font-weight: 700;
	color: #1f1f1f;
}

.remote.tr_merit .flex p span {
	color: #0070bb;
}

.remote.tr_merit ul li span.note {
	position: absolute;
	right: 0;
	bottom: -23px;
	font-size: 12px;
}

.remote.recommend {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.remote.recommend .inner {
	padding: 20px 0 45px;
}

.remote.recommend .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.remote.recommend ul {
	display: flex;
	flex-wrap: wrap;
	margin: -20px 0 0 -40px;
}

.remote.recommend ul li {
	width: 480px;
	margin: 40px 0 0 40px;
	position: relative;
	z-index: 1;
}

.remote.recommend ul li div h3 {
	margin: 30px 0 20px;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.remote.recommend ul li div p {
	text-align: left;
	line-height: 2.0;
}

.remote.treatment {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.remote.treatment .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.remote.treatment .txt {
	margin-bottom: 35px;
	line-height: 2.0;
	font-size: 14px;
}

.remote.treatment .box {
	font-size: 14px;
}

.remote.treatment .box table {
	border-top: solid 1px #1f1f1f;
	border-bottom: solid 1px #1f1f1f;
}

.remote.treatment .box table tr+tr {
	border-top: dashed 1px #1f1f1f;
}

.remote.treatment .box table th {
	font-size: 16px;
	width: 230px;
}

.remote.treatment .box table tr:nth-child(odd) th {
	color: #0070bb;
	background-color: #e5f0f8;
}

.remote.treatment .box table tr:nth-child(even) th {
	color: #199e91;
	background-color: #e8f5f4;
}

.remote.treatment .box table td {
	border-left: solid 1px #1f1f1f;
	text-align: left;
	line-height: 2.5;
	padding: 45px 40px;
}

.remote.treatment .box p.right {
	text-align: right;
	margin-top: 20px;
}

.remote.price {
	min-width: 1200px;
	margin: 80px 0;
	text-align: center;
}

.remote.price .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.remote.price h3 {
	margin-bottom: 50px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}

.remote.price .price_tab_index {
	padding-top: 20px;
	position: relative;
	z-index: 1;
	margin-bottom: 55px;
}

.remote.price .price_tab_index ul {
	height: 77px;
	display: flex;
	border-bottom: solid 1px #0070bb;
	justify-content: center;
	align-items: flex-end;
}

.remote.price .price_tab_index ul li {
	width: 300px;
	margin: 0 20px;
}

.remote.price .price_tab_index ul li span {
	color: #199e91;
	display: block;
	position: relative;
	z-index: -1;
	background-color: #e8f5f4;
	margin-bottom: -1px;
	font-weight: 700;
	padding: 25px 0;
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
	cursor: pointer;
}

.remote.price .price_tab_index ul li.active span {
	padding: 30px 0;
	position: relative;
	border: solid 1px #0070bb;
	border-bottom: none;
	z-index: 2;
	background-color: #ffffff;
	color: #0070bb;
}

.remote.price .pricebox_wrap .pricebox {
	margin: 0;
	display: none;
}

.remote.price .pricebox_wrap .pricebox.active {
	display: block;
}

.remote.flow {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.remote.flow .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.remote.flow .inner {
	padding: 80px 0 40px;
}

.remote.flow .select {
	display: flex;
	margin-bottom: 50px;
	border: solid #1a1a1a;
	border-width: 2px 0 0 2px;
}

.remote.flow .select a {
	display: block;
	width: 50%;
	padding: 25px 0;
	border: solid #1a1a1a;
	border-width: 0 2px 2px 0;
	background: url('../img/flow_icon_check_off.png') no-repeat right 50px center #fff;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
	font-size: 24px;
	color: #565656;
}

.remote.flow .select a:hover {
	background-color: #1a1a1a;
	background-image: url('../img/flow_icon_check_on.png');
	color: #fff;
}

.remote.flow .tab_content {
	padding-top: 35px;
}

.remote.flow .tab_content+.tab_content {
	margin-top: 50px;
}

.remote.flow .tab_content+.tab_content .title {
	color: #49c1be;
}

.remote.flow h3 {
	margin-bottom: 60px;
	text-align: center;
	font-size: 24px;
	letter-spacing: 2px;
}

.remote.flow h3 span {
	position: relative;
	display: inline-block;
	padding: 0 10px 5px;
}

.remote.flow h3 span:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: #f2f7fb;
}

.remote.flow h3.type02 span:before {
	background: #e7f7f7;
}

.remote.flow h3 span i {
	position: relative;
	z-index: 2;
}

.remote.flow .tab_content .txt {
	line-height: 2.2;
	font-size: 16px;
}

.remote.flow .slide_box {
	position: relative;
	width: 1000px;
	margin: 50px auto 0;
	text-align: center;
}

.remote.flow .slide_list li figure {
	display: inline-block;
	text-align: center;
}

.remote.flow .slide_list li .title {
	margin-top: 30px;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #005fa0;
}

.remote.flow .slide_list li .stxt {
	margin-top: 16px;
	line-height: 2.2;
}

.remote.flow .slick-arrow {
	position: absolute;
	top: 40%;
	width: 30px;
	height: 56px;
	text-indent: -9999px;
	border: none;
	z-index: 2;
	cursor: pointer;
}

.remote.flow .slick-prev {
	left: 100px;
	background: url('../img/slide_icon_prev.png');
}

.remote.flow .slick-next {
	right: 100px;
	background: url('../img/slide_icon_next.png');
}

.remote.flow .slide_list li .outline {
	margin-top: 30px;
	padding: 10px 20px;
	border: 1px solid #005fa0;
	text-align: left;
	line-height: 1.8;
	font-size: 14px;
}

.remote.flow .youtube_box {
	width: 338px;
	height: 600px;
	margin: 50px auto 0;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 6px;
}

.remote.flow .youtube_box video {
	width: 100% !important;
	height: 100%;
}

.remote.flow .box+.box {
	margin-top: 60px;
}

.remote.flow .box .step {
	text-align: left;
	margin-bottom: 40px;
	padding-left: 40px;
	border-bottom: 1px solid #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.remote.flow .box .step span {
	position: relative;
	top: 1px;
	display: inline-block;
	width: 240px;
	padding: 15px 25px;
	line-height: 1.2;
	text-align: center;
	border: solid #0070bb;
	border-width: 1px 1px 0 1px;
	background: #fff;
}

.remote.flow .flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.remote.flow .flex>div {
	position: relative;
	width: 540px;
	text-align: left;
}

.remote.flow .flex>div h4 {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.remote.flow .flex>div p {
	line-height: 2.0;
	font-size: 14px;
}

.remote.flow .flex>div p b {
	display: inline-block;
	border: solid 1px #000000;
	padding: 0 5px;
	margin: 0 5px;
}

.remote.flow .flex figure img {
	width: 400px;
	height: auto;
}


@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.navigation.remote {
		min-width: 100%;
		margin: 60px 0 100px;
	}

	.navigation.remote .inner {
		padding: 0 30px;
	}

	.navigation.remote .h2_box {
		display: block;
		margin-bottom: 30px;
	}

	.navigation.remote .h2_box h2 {
		margin: 0 0 20px;
		font-size: 32px;
	}

	.navigation.remote .h2_box p {
		text-align: center;
		font-size: 18px;
	}

	.navigation.remote .h2_box>div {
		position: relative;
		display: flex;
		margin-bottom: 30px;
		padding-right: 30px;
		justify-content: flex-end;
		height: 70px;
	}

	.navigation.remote .h2_box>div:before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -1px;
		width: 100%;
		height: 2px;
		background: #0070bb;
	}

	.navigation.remote .h2_box>div span {
		position: relative;
		display: table;
		width: 280px;
		height: 100%;
		border-radius: 60px;
		border: 2px solid #0070bb;
		background-color: #fff;
		background-image: url('../img/icon_index_off.png');
		background-repeat: no-repeat;
		background-position: right 30px center;
		font-size: 24px;
		font-weight: 700;
		z-index: 2;
		cursor: pointer;
	}

	.navigation.remote .h2_box>div span em,
	.navigation.remote .h2_box>div span i {
		display: table-cell;
		vertical-align: middle;
		padding-left: 40px;
	}

	.navigation.remote .h2_box>div span i {
		display: none;
	}

	.navigation.remote .h2_box>div.active span {
		background-color: #0070bb;
		background-image: url('../img/icon_index_on.png');
		color: #fff;
	}

	.navigation.remote .h2_box>div.active span i {
		display: table-cell;
	}

	.navigation.remote .h2_box>div.active em {
		display: none;
	}

	.navigation.remote ul {
		margin: -30px 0 0;
		justify-content: space-between;
	}

	.navigation.remote ul li {
		width: 49%;
		margin: 30px 0 0;
	}

	.navigation.remote ul li a {
		border-width: 2px;
		padding: 20px 40px 20px 20px;
		text-align: left;
		font-size: 20px;
		font-weight: 700;
		height: 100%;
		display: flex;
		align-items: center;
	}

	.remote.tr_about .inner {
		padding: 0 30px;
	}

	.remote.tr_about .txt {
		text-align: left;
	}

	.remote.tr_about .flex {
		display: block;
		padding: 0 40px;
	}

	.remote.tr_about .flex>div {
		width: auto;
		margin: 0;
	}

	.remote.tr_about .flex>div+div {
		margin: 60px 0 0;
	}

	.remote.tr_about .flex>div figure {
		text-align: center;
		margin-bottom: 20px;
	}

	.remote.tr_about .flex>div a {
		width: 430px;
		margin: 0 auto;
		font-size: 28px;
	}

	.remote.tr_about .flex>div a span {
		background: url('../img/icon_index_on_sp.png') no-repeat right 30px center;
	}

	.remote.tr_about .flex>div a span em {
		padding: 30px;
	}

	.remote.tr_merit ul {
		padding-top: 40px;
		display: block;
		margin: 0;
	}

	.remote.tr_merit ul li {
		width: auto;
		margin: 0;
	}

	.remote.tr_merit ul li+li {
		margin-top: 60px;
	}

	.remote.tr_merit .flex i {
		display: inline-block;
		padding: 10px;
		background-color: #0070bb;
	}

	.remote.tr_merit .flex p {
		font-size: 24px;
	}

	.remote.tr_merit ul li span.note {
		bottom: -35px;
		font-size: 20px;
	}

	.remote.recommend {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.remote.recommend .h2_txt {
		font-size: 22px;
	}

	.remote.recommend ul {
		padding-top: 40px;
		display: block;
		margin: 0;
	}

	.remote.recommend ul li {
		width: auto;
		margin: 0;
	}

	.remote.recommend ul li+li {
		margin-top: 60px;
	}

	.remote.recommend ul li div {
		font-size: 22px;
	}

	.remote.recommend ul li div h3 {
		font-size: 24px;
	}

	.remote.treatment {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.remote.treatment .inner {
		padding: 0 30px;
	}

	.remote.treatment .h2_txt {
		font-size: 22px;
	}

	.remote.treatment .txt {
		text-align: left;
		line-height: 2.0;
		font-size: 24px;
	}

	.remote.treatment .box table,
	.remote.treatment .box table tbody,
	.remote.treatment .box table tr,
	.remote.treatment .box table th,
	.remote.treatment .box table td {
		display: block;
		width: 100%;
	}

	.remote.treatment .box table {
		border: 1px solid #1f1f1f;
	}

	.remote.treatment .box table th {
		padding: 40px;
		font-size: 24px;
	}

	.remote.treatment .box table td {
		font-size: 22px;
		border: none;
	}

	.remote.treatment .box p.right {
		font-size: 20px;
	}

	.remote.price {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.remote.price .inner {
		padding: 0 30px;
	}

	.remote.price .h2_txt {
		font-size: 22px;
	}

	.remote.price .price_tab_index ul {
		height: 130px;
		justify-content: space-around;
	}

	.remote.price .price_tab_index ul li {
		width: 280px;
		font-size: 24px;
		line-height: 1.4;
		margin: 0;
	}

	.remote.price .pricebox_wrap .pricebox {
		padding: 0;
	}

	.remote.price table td {
		width: 220px;
	}

	.remote.price table td+td {
		width: auto;
		padding: 25px 30px;
		border-left: 1px solid #1f1f1f;
		line-height: 1.6;
		font-size: 22px;
	}

	.remote.flow {
		font-size: 24px;
		min-width: 100%;
		margin-bottom: 100px;
	}

	.remote.flow .inner {
		padding: 0 30px;
	}

	.remote.flow .h2_txt {
		font-size: 22px;
	}

	.remote.flow {
		padding: 80px 0 40px;
	}

	.remote.flow .select {
		margin-bottom: 30px;
		border-width: 2px 0 0 0;
	}

	.remote.flow .select a {
		background-image: none;
		font-size: 22px;
	}

	.remote.flow .select a:last-child {
		border-right: 0;
	}

	.remote.flow .select a:hover {
		background-image: none;
	}

	.remote.flow .tab_content+.tab_content {
		margin-top: 30px;
	}

	.remote.flow h3 {
		margin-bottom: 20px;
		font-size: 30px;
	}

	.remote.flow .tab_content .txt {
		line-height: 2.0;
		font-size: 24px;
	}

	.remote.flow .slide_box {
		width: 100%;
		margin: 60px auto 0;
	}

	.remote.flow .slide_list li .title {
		margin-top: 30px;
		font-size: 26px;
		line-height: 1.4;
		letter-spacing: 1px;
	}

	.remote.flow .slide_list li .stxt {
		margin-top: 20px;
		padding: 0 40px;
		text-align: left;
		line-height: 2.0;
	}

	.remote.flow .slick-arrow {
		top: 250px;
	}

	.remote.flow .slick-prev {
		left: 50px;
	}

	.remote.flow .slick-next {
		right: 50px;
	}

	.remote.flow .slide_list li .outline {
		width: 560px;
		margin: 0 auto;
		margin-top: 15px;
		padding: 15px 20px;
		line-height: 1.6;
		font-size: 20px;
	}

	.remote.flow .youtube_box {
		width: 515px;
		height: 900px;
		margin: 50px auto 0;
		border: 1px solid #ccc;
		padding: 10px;
		border-radius: 6px;
	}



	.remote.flow .box .step {
		padding-left: 30px;
		border-bottom: 2px solid #0070bb;
		font-size: 24px;
	}

	.remote.flow .box .step span {
		width: 200px;
		top: 2px;
		padding: 20px 25px;
		background: #0070bb;
		color: #fff;
		border-width: 2px 2px 0 2px;
	}

	.remote.flow .flex {
		display: block;
		padding: 0 10px;
	}

	.remote.flow .flex>div {
		width: 100%;
		padding: 30px 0 0;
	}

	.remote.flow .flex>div h4 {
		margin-bottom: 15px;
		padding-bottom: 20px;
		font-size: 30px;
		line-height: 1.4;
	}

	.remote.flow .flex>div p {
		margin-bottom: 40px;
		line-height: 2.0;
		font-size: 24px;
	}

	.remote.flow .flex figure img {
		width: 100%;
	}


	/*----------------------------------------------------------*/
}


/*	診療方針ページ：t_policy
===============================================================*/
.sub_main.t_policy {
	background-image: url('../img/sub_main_t_policy.jpg');
}

.kodawari.t_policy {
	margin-bottom: 80px;
	padding-top: 80px;
	text-align: center;
}

.kodawari.t_policy .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.kodawari.t_policy .txt {
	margin-bottom: 60px;
	line-height: 2.0;
	font-size: 14px;
}

.kodawari.t_policy .flex+.flex {
	margin-top: 80px;
}

.kodawari.t_policy .flex:nth-child(odd) .box {
	order: 2;
}

.kodawari.t_policy .flex .box .txt {
	margin-bottom: 20px;
}

.kodawari.t_policy .flex .box>div {
	text-align: right !important;
}

.kodawari.t_policy .flex .box>div h2 {
	text-align: center;
}

.kodawari.t_policy .flex .box>div a {
	display: inline-block;
	width: 200px;
	text-align: left;
}

.kodawari.t_policy .flex figure {
	overflow: hidden;
	border-radius: 8px;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.kodawari.t_policy {
		margin-bottom: 100px;
		padding-top: 80px !important;
	}

	.kodawari.t_policy .h2_txt {
		font-size: 22px;
	}

	.kodawari.t_policy .txt {
		font-size: 24px;
	}

	.kodawari.t_policy .flex {
		display: flex !important;
		flex-wrap: wrap;
	}

	.kodawari.t_policy .flex+.flex {
		margin-top: 80px;
	}

	.kodawari.t_policy .flex .box {
		order: 2 !important;
	}

	.kodawari.t_policy .flex .box .txt {
		margin-bottom: 20px;
	}

	.kodawari.t_policy .flex .box>div {
		text-align: right !important;
	}

	.kodawari.t_policy .flex .box>div h2 {
		text-align: center;
	}

	.kodawari.t_policy .flex .box>div a {
		width: 300px;
		padding-left: 50px;
		text-align: left;
	}

	.kodawari.t_policy .flex figure {
		order: 1 !important;
		width: 640px;
		margin: 0 -40px 50px;
		border-radius: 0;
	}

	.kodawari.t_policy .flex figure img {
		width: 100% !important;
		height: 250px !important;
		object-fit: cover;
		object-position: center;
	}

	/*----------------------------------------------------------*/
}

/*	明瞭な料金体系：p_plan
===============================================================*/
.sub_main.p_plan {
	background-image: url('../img/sub_main_p_plan.jpg');
}

.kodawari.p_plan {
	margin-bottom: 80px;
	padding-top: 80px;
	text-align: center;
}

.kodawari.p_plan .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.kodawari.p_plan .txt {
	margin-bottom: 60px;
	line-height: 2.0;
	font-size: 14px;
}

.kodawari.p_plan .flex+.flex {
	margin-top: 80px;
}

.kodawari.p_plan .flex:nth-child(odd) .box {
	order: 2;
}

.kodawari.p_plan .flex .box .txt {
	margin-bottom: 20px;
}

.kodawari.p_plan .flex .box>div {
	text-align: right !important;
}

.kodawari.p_plan .flex .box>div h2 {
	text-align: center;
}

.kodawari.p_plan .flex .box>div a {
	display: inline-block;
	width: 200px;
	text-align: left;
}

.kodawari.p_plan .flex figure {
	overflow: hidden;
	border-radius: 8px;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.kodawari.p_plan {
		margin-bottom: 100px;
		padding-top: 80px !important;
	}

	.kodawari.p_plan .h2_txt {
		font-size: 22px;
	}

	.kodawari.p_plan .txt {
		font-size: 24px;
	}

	.kodawari.p_plan .flex {
		display: flex !important;
		flex-wrap: wrap;
	}

	.kodawari.p_plan .flex+.flex {
		margin-top: 80px;
	}

	.kodawari.p_plan .flex .box {
		order: 2 !important;
	}

	.kodawari.p_plan .flex .box .txt {
		margin-bottom: 20px;
	}

	.kodawari.p_plan .flex .box>div {
		text-align: right !important;
	}

	.kodawari.p_plan .flex .box>div h2 {
		text-align: center;
	}

	.kodawari.p_plan .flex .box>div a {
		width: 300px;
		padding-left: 50px;
		text-align: left;
	}

	.kodawari.p_plan .flex figure {
		order: 1 !important;
		width: 640px;
		margin: 0 -40px 50px;
		border-radius: 0;
	}

	.kodawari.p_plan .flex figure img {
		width: 100% !important;
		height: 250px !important;
		object-fit: cover;
		object-position: center;
	}

	/*----------------------------------------------------------*/
}


/*	ED（勃起不全）治療薬：ed
===============================================================*/
/* .tr_design.ed ul {
	margin-top: 40px;
	text-align: left;} */
/* .tr_design.ed ul li {
	display: flex;
	justify-content: space-between; }
.tr_design.ed ul li + li {
	margin-top: 50px;}
.tr_design.ed ul li div {
	width: 600px;}
.tr_design.ed ul li figure {
	width: 380px;
	text-align: center;} */
/* .tr_design.ed ul li div h3 {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;} */

.medicine.ed {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.medicine.ed ul {
	margin-top: 40px;
	text-align: left;
}

.medicine.ed ul li {
	display: flex;
	justify-content: space-between;
}

.medicine.ed ul li+li {
	margin-top: 50px;
}

.medicine.ed ul li div {
	width: 600px;
}

.medicine.ed ul li figure {
	width: 380px;
	text-align: center;
}

.medicine.ed ul li div h3 {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.medicine.ed .txt {
	line-height: 2.0;
	font-size: 14px;
}

.medicine.ed ul li div .txt+.txt {
	margin-top: 20px;
}

.medicine.ed .scroll_table {
	margin-bottom: 60px;
}

.medicine.ed .right {
	text-align: right;
	margin-top: 10px;
}

.medicine.ed .right a.link_type_01 {
	display: inline-block;
	text-align: left;
	width: 190px;
}

.tr_price.ed p.txt {
	text-align: left;
	line-height: 2.0;
}

.tr_price.ed .price_table+p.txt {
	margin-top: 20px;
}

.tr_design.ed .right {
	text-align: right;
	margin-top: 10px;
}

.tr_design.ed .right a.link_type_01 {
	display: inline-block;
	text-align: left;
	width: 190px;
}

.tr_design.viagra .right,
.tr_price.viagra .right {
	text-align: right;
	margin-top: 10px;
}

.tr_design.viagra .right a.link_type_01,
.tr_price.viagra .right a.link_type_01 {
	display: inline-block;
	text-align: left;
	padding-right: 50px;
}

/*性感染症（STD）治療：std
===============================================================*/
.medicine.ed.std ul li div {
	width: 1000px;
}

.medicine.ed.std ul li.price-table {
	margin-top: 0px;
}

a.anchor {
	display: block;
	padding-top: 80px;
	margin-top: -80px;
}


@media (max-width: 767px) {
	.medicine.ed.std ul li div {
		width: 100%;
	}

	.price-table .pricebox {
		padding: 0;
	}
}

/*AGA・薄毛治療:aga
===============================================================*/
.page_aga .overview {
	margin-bottom: 80px;
	text-align: center;
}

.page_aga .overview .txt {
	margin-bottom: 20px;
}

.page_aga .aga_contents {
	min-width: 1200px;
	margin-bottom: 80px;
}

.page_aga .aga_contents h2 {
	text-align: center;
}

.page_aga .aga_contents .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	text-align: center;
}

.page_aga .aga_contents .txt {
	line-height: 2.0;
	font-size: 14px;
}

.page_aga .aga_contents__ttl {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.page_aga .aga__item {
	margin-bottom: 80px;
}

.page_aga .aga__item--meso figure {
	text-align: center;
	margin-bottom: 30px;
}

.page_aga .aga__item .txt {
	margin-bottom: 20px;
}

.page_aga .box--flex {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.page_aga .box__img {
	flex-shrink: 0;
	margin-left: 40px;
}

.page_aga .box--float::after {
	content: "";
	display: block;
	clear: both;
}

.page_aga .box--float .box__img {
	float: right;
}

.page_aga .caution .txt {
	line-height: 2;
	font-size: 14px;
	text-align: left;
}

.page_aga .caution a {
	color: #1f1f1f;
	text-decoration: underline;
}

.page_aga .caution a:hover {
	text-decoration: none;
}

.page_aga .onepoint a {
	color: #1f1f1f;
	text-decoration: underline;
}

.page_aga .onepoint a:hover {
	text-decoration: none;
}

.page_aga .tr_price {
	min-width: auto;
}

.page_aga .tr_price .price_table th,
.page_aga .tr_price .price_table td {
	width: 33%;
}


/* .page_aga .tr_price .price_table td:last-child {
	display: flex !important;
	justify-content: center;
	align-items: center;
} */

.page_aga .price table th {
	line-height: 1.4;
	width: 28%;
}

.page_aga .price table:not([class]) td {
	width: 36%;
}

.page_aga .table01 thead th {
	width: 20%;
}

.page_aga .table01 .td-width20 {
	width: 20%;
}

.page_aga .table01 thead th.color-blue a.under {
	display: block;
	margin: 0 auto;
	color: rgb(0 112 187);
	font-size: 16px;
	text-decoration: underline;
	border: none;
	padding: 10px 0;
	width: 100%;
	line-height: 1.5;
}

.page_aga .table01 thead th.color-blue a:hover {
	background: none;
	color: rgb(0 112 187);
	text-decoration: none;
}

.page_aga td {
	text-align: center;
}

.page_aga .table01 td {
	vertical-align: middle;
}

.page_aga .aga__item--rebirth td {
	width: 33%;
}

.page_aga .aga__item--rebirth .price .solid {
	border-bottom: 1px solid #1f1f1f;
}

.page_aga .panel_flow {
	display: flex;
	justify-content: space-between;
	margin: 30px 0;
}

.page_aga .panel_flow li {
	position: relative;
	width: 31%;
	padding: 20px;
	border: 1px dashed #1f1f1f;
	border-radius: 8px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
	font-size: 14px;
}

.page_aga .panel_flow .txt-big {
	font-size: 20px;
}

.page_aga .panel_flow .panel_flow_item--plus::after {
	content: "＋";
	display: block;
	position: absolute;
	right: -28px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
}

.page_aga .panel_flow .panel_flow_item--arrow::after {
	content: "▲";
	display: block;
	position: absolute;
	right: -24px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	font-size: 12px;
}

.page_aga .panel_flow li h3 {
	text-align: center;
}

.page_aga .tr_lisk h2 {
	margin-bottom: 40px;
}

.page_aga .onepoint.case .txt {
	align-items: flex-start;
	max-width: 760px;
	margin: 0 auto;
}

.page_aga .onepoint.case .txt i {
	flex-shrink: 0;
	margin-top: 3px;
}

.page_aga .bnr {
	pointer-events: none;
}

@media (max-width: 767px) {
	.page_aga .scroll_table {
		margin: 50px 30px 100px;
		overflow-x: scroll;
	}

	.page_aga .aga__item--rebirth .price .solid {
		border-bottom: none;
	}

	.page_aga .tr_price .price_table th {
		width: 100%;
	}

	.page_aga .tr_price .price_table td {
		width: 170px;
	}

	.page_aga .tr_price	.price_table td:last-child {
		width: 410px;
	}

	.page_aga .tr_price .price_table .click.active td.disnoe:last-child {
		display: flex !important;
		align-items: center;
		justify-content: center;
	}

	.page_aga .price table th {
		justify-content: center;
	}

	.page_aga .price table:not([class]) td.sp_wide {
		width: 100%;
		border-left: none;
	}

	.page_aga .price.spVer table:not([class]) {
		border-width: 1px 1px 1px;
	}

	.page_aga .price.spVer table th {
		text-align: center;
		display: table-cell;
	}

	.page_aga .table01 thead th.color-blue a.under {
		font-size: 24px;
	}

	.price.spVer table:not([class]) tr {
		display: table-row;
		border-top: 1px dashed #1f1f1f;
	}

	.page_aga .aga_contents {
		min-width: 100%;
		padding: 0 30px;
		margin-bottom: 100px;
	}

	.page_aga .aga_contents .h2_txt {
		font-size: 22px;
	}

	.page_aga .aga_contents__ttl {
		margin-bottom: 15px;
		padding-bottom: 20px;
		font-size: 30px;
		text-align: center;
		line-height: 1.3;
	}

	.page_aga .aga_contents .txt {
		font-size: 24px;
	}

	.page_aga .box--flex {
		display: block;
	}

	.page_aga .box__img {
		margin: 0 auto;
		max-width: 400px;
	}

	.page_aga .box__img img {
		width: 100%;
	}

	.page_aga .tr_about {
		margin-bottom: 50px;
	}

	.page_aga .box--float .box__img {
		float: none;
	}

	.page_aga .panel_flow {
		display: block;
		margin: 30px 0;
	}

	.page_aga .panel_flow li {
		width: 100%;
		padding: 25px 30px;
		font-size: 22px;
		margin-bottom: 40px;
	}

	.page_aga .panel_flow .txt-big {
		font-size: 30px;
	}

	.page_aga .panel_flow .panel_flow_item--plus::after {
		right: auto;
		top: auto;
		left: 50%;
		bottom: -43px;
		transform: translateX(-50%);
		font-size: 30px;
	}

	.page_aga .panel_flow .panel_flow_item--arrow::after {
		right: auto;
		top: auto;
		left: 50%;
		bottom: -32px;
		transform: translateX(-50%) rotate(180deg);
		font-size: 16px;
	}

	.page_aga .onepoint .box__img {
		margin: 0 auto 30px;
	}

	.page_aga .box__img.mb30 {
		margin-bottom: 15px !important;
	}

	.page_aga .caution .txt {
		font-size: 22px;
	}

	.page_aga .ac_btn {
		color: #0070bb;
		border-top: 1px solid #1f1f1f;
		padding: 35px 30px;
		background: no-repeat right 30px center #e5f0f8;
		text-align: left;
		font-size: 26px;
		line-height: 1.6;
		background-image: url(../img/icon_price_table_off.png);
		margin-left: -30px;
		margin-right: -30px;
		display: block;
		font-weight: bold;
	}

	.page_aga .ac_btn.bd_btm {
		border-bottom: 1px solid #1f1f1f;
	}

	.page_aga .ac_btn.active {
		background-image: url(../img/icon_price_table_on.png);
		border-bottom: none;
	}

	.page_aga .ac_contents {
		margin: 0 -30px;
		padding: 30px 30px 60px;
	}

	.ac_contents.bd_btm {
		border-bottom: 1px solid #1f1f1f;
	}

	.page_aga .aga__item {
		margin-bottom: 0;
	}

	.page_aga .ac_btn.twoline {
		padding: 14px 30px;
	}

	.page_aga .bnr {
		pointer-events: auto;
	}

}

/*-------------------------------------------------------------------
 anesthesia
-------------------------------------------------------------------*/
.anesthesia ul {
	font-size: 13px;
	line-height: 1.8;
	border: solid 1px #0070bb;
	padding: 30px;
	border-radius: 8px;
}

.anesthesia li:not(:first-child) {
	margin-top: 0.8em;
}

.anesthesia em {
	display: inline-block;
	font-size: 1.041666em;
	font-weight: bold;
	margin-bottom: 0.25em;
}

@media (max-width: 767px) {
	.anesthesia ul {
		font-size: 23px;
	}
}

/*-------------------------------------------------------------------
 p-medical
-------------------------------------------------------------------*/
.p-medical__entries {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.p-medical__entries .c-entry {
	position: relative;
	width: 48%;
	padding: 30px;
	margin-top: 40px;
	text-align: right;
	border-radius: 8px;
	background: #e5f0f8;
	color: #1f1f1f;
}

.p-medical__entries .c-entry:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.p-medical__entries .c-entry:nth-child(-n+2) {
	margin-top: 0;
}

.p-medical__entries .c-entry .c-entry__title {
	margin-bottom: 20px;
	padding-bottom: 25px;
	text-align: left;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	color: #0070bb;
}

.p-medical__entries .c-entry .c-entry__text {
	margin-bottom: 80px;
	text-align: left;
	line-height: 2.0;
	font-size: 14px;
}

.p-medical__entries .c-entry .c-entry__btn {
	display: block;
	position: absolute;
	bottom: 30px;
	right: 30px;
	text-align: left;
	padding: 17px 50px 17px 30px;
	border: 1px solid #0070bb;
	border-radius: 60px;
	background: url('/wp-content/themes/MLC-PC/img/icon_link_type_01_off.png') no-repeat right 20px center #fff;
	font-weight: 700;
	font-size: 14px;
	color: #1f1f1f;
	transition: .2s;
}

.p-medical__entries .c-entry:hover .c-entry__btn {
	background-color: #0070bb;
	background-image: url('/wp-content/themes/MLC-PC/img/icon_link_type_01_on.png');
	color: #fff;
}

.p-medical__entries--green .c-entry {
	background: #e8f5f4;
}

.p-medical__entries--green .c-entry .c-entry__title {
	color: #199e91;
	border-bottom-color: #199e91;
}

.p-medical__entries--green .c-entry .c-entry__btn {
	border-color: #199e91;
	background-image: url('/wp-content/themes/MLC-PC/img/icon_link_type_01_g_off.png');
}

.p-medical__entries--green .c-entry:hover .c-entry__btn {
	background-color: #199e91;
	background-image: url('/wp-content/themes/MLC-PC/img/icon_link_type_01_on.png');
}

@media (max-width: 767px) {
	.p-medical__entries {
		padding: 0 30px;
	}

	.p-medical__entries .c-entry {
		width: 100%;
		padding: 30px;
		margin-top: 20px;
	}

	.p-medical__entries .c-entry:nth-child(-n+2) {
		margin-top: 20px;
	}

	.p-medical__entries .c-entry:first-child {
		margin-top: 0;
	}

	.p-medical__entries .c-entry .c-entry__title {
		margin-bottom: 20px;
		padding-bottom: 25px;
		font-size: 26px;
	}

	.p-medical__entries .c-entry .c-entry__text {
		display: none;
	}

	.p-medical__entries .c-entry .c-entry__btn {
		bottom: 25px;
		right: 25px;
		text-align: left;
		padding: 15px 60px 15px 30px;
		background: url('/wp-content/themes/MLC-PC/img/icon_link_type_01_sp_off.png') no-repeat right 20px center #fff;
		font-size: 22px;
	}

	.p-medical__entries .c-entry:hover .c-entry__btn {
		background-image: url('/wp-content/themes/MLC-PC/img/icon_link_type_01_sp_on.png');
	}

	.p-medical__entries .c-entry .c-entry__btn i {
		display: none;
	}

	.p-medical__entries--green .c-entry .c-entry__btn {
		background: url('/wp-content/themes/MLC-PC/img/icon_link_type_01_g_sp_off.png') no-repeat right 20px center #fff;
	}

	.p-medical__entries--green .c-entry:hover .c-entry__btn {
		background-image: url('/wp-content/themes/MLC-PC/img/icon_link_type_01_g_sp_on.png');
	}
}

/*-------------------------------------------------------------------
 p-profile
-------------------------------------------------------------------*/
.p-profile__section {
	min-width: auto;
	margin-top: 60px;
	margin-bottom: 120px;
}

.p-profile__section .c-section__title {
	margin-top: 0 !important;
}

@media (max-width: 767px) {
	.p-profile__section .c-section__lede,
	.p-profile__section .c-section__head .txt {
		text-align: left;
	}
}
.p-profile__section .c-section__body {
	margin-right: 0;
	margin-left: 0;
}

.p-profile__section--standard .c-section__body {
	margin-top: 0;
}

.p-profile__section--standard .c-container {
	max-width: 770px;
}

.p-profile__section--supervision .c-container {
	max-width: 900px;
}

.p-profile__media {
	justify-content: flex-start;
	line-height: 2.4;
}

.p-profile__media--supervision {
	font-size: 16px;
	line-height: 1.5;
	align-items: flex-start;
}

.p-profile__media .c-media-left {
	display: flex;
	justify-content: center;
}

.p-profile__figure {
	width: 100% !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 30px;
}

.p-profile__section--supervision .p-profile__figure-item {
	border-radius: 50%;
	box-shadow: 0 0 0 1px #eee;
	max-width: 200px;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.p-profile__section--supervision .p-profile__figure-item:before {
	content: "";
	display: block;
	width: 100%;
	padding-bottom: 100%;
}

#body .p-profile__section--standard .p-profile__figure img {
	margin: 0;
}

#body .p-profile__section--supervision .p-profile__figure img {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
}

.p-profile__figure figcaption {
	font-size: 24px;
	line-height: 1.5;
	margin-top: 1em;
}

@media (min-width: 768px) {
	.p-profile__media--standard {
		align-items: flex-start;
	}

	.p-profile__media .c-media-content {
		max-width: 480px;
	}

	.p-profile__media--standard .c-media-content {
		max-width: 520px;
		margin-left: 20px;
	}
	.p-profile__figure figcaption {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.p-profile__section {
		margin-bottom: 60px;
	}

	#body .postbox .p-profile__section .c-container {
		padding-right: 0;
		padding-left: 0;
	}

	.p-profile__media--standard {
		flex-direction: column;
	}

	.p-profile__media--supervision {
		font-size: 24px;
	}

	.p-profile__media--standard .p-profile__figure {
		max-width: 100%;
	}

	.p-profile__media .c-media-left {
		position: initial;
		margin-bottom: 20px;
	}

	.p-profile__media--standard .c-media-left {
		margin-bottom: 25px;
	}

	#body .p-profile__media .c-media-content {
		font-size: 22px;
	}
}

#body .p-profile__message-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.6;
	margin: 0 0 5px 0;
	color: inherit;
}

#body .p-profile__message-bodytext {
	line-height: 2.0;
	font-size: 14px;
}

#body .p-profile__message-signature {
	text-align: right;
	font-size: 14px;
	line-height: 1.6;
	margin-top: 20px;
}

@media (max-width: 767px) {
	#body .p-profile__message-title {
		font-size: 28px;
		text-align: center;
		margin-bottom: 10px;
	}

	#body .postbox .p-profile__section .c-container {
		padding-right: 0;
		padding-left: 0;
	}

	.p-profile__media--standard {
		flex-direction: column;
	}

	.p-profile__media--standard .p-profile__figure {
		max-width: 100%;
	}

	.p-profile__media .c-media-left {
		position: initial;
		margin-bottom: 20px;
	}

	#body .p-profile__media .c-media-content {
		font-size: 22px;
	}

	#body .p-profile__message-bodytext {
		font-size: 24px;
	}

	#body .p-profile__message-signature {
		font-size: 22px;
		margin-top: 20px;
		letter-spacing: -0.05em;
		margin-bottom: 20px;
	}
}

/*-------------------------------------------------------------------
 p-profile(初めての方ページ)
-------------------------------------------------------------------*/
.p-about__section--profile {
	margin: 80px 0;
}

.p-about__section--profile h2 {
	color: #0070bb;
	margin-bottom: 10px;
}

.p-about__section--profile-inner {
	display: flex;
	justify-content: space-between;
}

.p-about__section--profile .p-profile__media--supervision {
	margin: 0 auto;
}

.p-about__section--profile .p-profile__media .c-media-left {
	display: block;
	flex: 0;
	margin: 0 auto;
}

.p-about__section--profile .p-profile__figure {
    flex-direction: row;
	padding: 0;
}

.p-about__section--profile .p-profile__figure-item {
    border-radius: 50%;
    box-shadow: 0 0 0 1px #eee;
    width: 280px;
    position: relative;
    overflow: hidden;
}

.p-about__section--profile .p-profile__figure-item:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
}

.p-about__section--profile .p-profile__figure figcaption {
	width: 100%;
	margin: 0 0 0 10px;
}

.p-about__section--profile .p-profile__figure img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

.p-about__section--profile .p-profile__media .c-media-content {
	width: 280px;
	margin-left: 30px;
}

.p-about__section--profile .p-profile__media--supervision .p-profile__desc-item {
    margin-top: 0;
}

.p-about__section--profile .link_type_01 {
	display: inline-block;
    min-width: 200px;
    padding-right: 45px;
    text-align: left;
	line-height: 1;
	margin-top: 30px;
}

@media (max-width: 767px) {
	.p-about__section--profile {
		margin: 0 0 80px;
		text-align: right !important;
	}
	
	.p-about__section--profile  h2 {
		margin: 30px 0 20px;
	}

	.p-about__section--profile .p-profile__media--supervision {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.p-about__section--profile .p-profile__media--supervision:not(:first-child) {
		/* margin-top: 60px; */
		margin-left: 30px;
	}

	.p-about__section--profile .p-profile__figure {
		width: 100% !important;
		display: block;
	}

	.p-about__section--profile .p-profile__figure-item {
		/* width: 200px; */
	}

	.p-about__section--profile .p-profile__figure figcaption {
		margin: 0;
	}

	.p-about__section--profile .p-profile__media .c-media-content {
		width: 100%;
		margin-left: 0;
	}

	.p-about__section--profile .link_type_01 {
		min-width: 300px;
		padding-left: 50px;
		padding-right: 55px;
		text-align: left;
		margin-top: 40px;
	}
}

/*-------------------------------------------------------------------
 p-profile__desc
-------------------------------------------------------------------*/
.p-profile__media--standard .p-profile__desc{
	margin: 10px auto;
	text-align: left;
	width: 710px;
	font-size: 14px;
	line-height: 2;
}

#body .p-profile__media--standard .p-profile__desc-ttl {
	border-bottom: solid 1px;
	margin: 0 0 5px;
	padding-bottom: 5px;
	font-size: 14px;
	color: inherit;
}

.p-profile__media--standard .p-profile__desc-date {
	float: left;
}

.p-profile__media--standard .p-profile__desc-item {
	padding-left: 6em;
}

#body .p-profile__media--supervision .p-profile__desc-ttl {
	font-size: 16px;
	line-height: 2;
	margin: 0 0 0.5em;
	color: inherit;
}

@media (max-width: 767px) {
	#body .p-profile__media--standard .p-profile__desc{
		width: 100%;
		font-size: 22px;
	}

	#body .p-profile__media--standard .p-profile__desc-ttl {
		font-size: 22px;
	}
	#body .p-profile__media--supervision .p-profile__desc-ttl {
		font-size: 26px;
	}
}

#body .p-profile__media--supervision .p-profile__desc{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#body .p-profile__media--supervision .p-profile__desc + .p-profile__desc{
	margin-top: 20px;
}

#body .p-profile__media--supervision .p-profile__desc-lists {
	font-size: 14px;
	margin: 0;
}

#body .p-profile__media--supervision .p-profile__desc-item {
	line-height: 1.3333;
	padding: 0.35em 0px;
}
.p-profile__link-type {
	display: block;
	margin-top: 20px;
	width: 170px;
	line-height: 1;
	margin-right: 0;
	margin-left: 0;
}
@media (max-width: 767px) {
	#body .p-profile__media--supervision .p-profile__desc-lists {
		font-size: inherit;
	}
	.p-profile__link-type {
		display: block;
		width: 250px;
		margin: 20px auto 0;
	}
}
/*-------------------------------------------------------------------
 p-notice
-------------------------------------------------------------------*/
.p-notice {
	width: 1000px;
	margin: 0 auto;
	background: #edeeef;
	padding: 20px 60px;
	margin-top: -40px;
	margin-bottom: 70px;
	font-size: 14px;
	line-height: 1.6;
}

.p-notice__ttl {
	color: #0070bb;
	margin-bottom: 10px;
}

.p-notice__ttl-icon {
	background: #0070bb;
	color: #fff;
	margin-right: 10px;
	padding: 2px 10px;
}

@media (max-width: 767px) {
	.p-notice {
		width: 100%;
		max-width: 580px;
		margin: -50px auto 50px;
		font-size: 24px;
		padding: 30px 30px;
	}

	.p-notice__ttl {
		text-align: center;
	}

	.p-notice__ttl-icon {
		margin: 0 0 10px;
		display: inline-block;
		font-size: 24px;
	}
}

/*-------------------------------------------------------------------
table
-------------------------------------------------------------------*/
.table01 {
	width: 100%;
	border: solid #1f1f1f;
	border-width: 1px 0;
}

.table01 th,
.table01 td,
.table01 caption {
	padding: 10px;
	border: #d6d6d6 1px solid;
}

.table01 tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.table01 th {
	font-weight: bold;
	text-align: center;
}

.table01 td {
	vertical-align: top;
	line-height: 1.6;
}

.table01 td.c {
	text-align: center;
}

.table01 thead th {
	background: #f5f5f6;
}

.table01 thead th.color-green {
	color: #0070bb;
	background: #f5f5f6;
}

.table01 thead th.color-blue {
	background: #f5f5f6;
	color: #1f1f1f;
}

.table01 thead th.color-blue a {
	display: block;
	width: 120px;
	margin: 10px auto 0;
	border: solid 1px #0070bb;
	color: #0070bb;
	font-size: 12px;
	padding: 5px;
	transition: .2s;
}

.table01 thead th.color-blue a:hover {
	background-color: #0070bb;
	color: #ffffff;
}

.table01 tbody th {
	line-height: 1.6;
	width: 200px;
	color: #0070bb;
}

.table01 tbody td {
	padding: 25px 10px;
	border-left: 1px solid #1f1f1f;
	font-weight: 500;
}

.table01.table-fixed {
	table-layout: fixed;
}
.table01.table-fixed thead th:first-child {
	width: 160px;
}
.table01.table-fixed tbody td.icon-text {
	font-size: 1.5em;
	line-height: 1;
}

.c-table.has-left-th--half tbody th {
	width: 100px;
}

.c-table.has-left-th--3of4 tbody th {
	width: 150px;
}

.table02 {
	width: 100%;
	border: solid #1f1f1f;
	border-width: 1px 0;
}

.table02 th,
.table02 td,
.table02 caption {
	padding: 10px;
	border: #d6d6d6 1px solid;
}

.table02 tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.table02 th {
	font-weight: bold;
	text-align: center;
}

.table02 td {
	vertical-align: top;
	line-height: 1.6;
}

.table02 td.c {
	text-align: center;
}

.table02 thead th {
	background: #f5f5f6;
}

.table02 thead th.color-green {
	color: #0070bb;
	background: #f5f5f6;
}

.table02 thead th.color-blue {
	background: #f5f5f6;
	color: #1f1f1f;
}

.table02 tbody th {
	white-space: nowrap;
	line-height: 1.6;
	width: 200px;
	color: #0070bb;
}

.table02 tbody td {
	vertical-align: middle;
	padding: 5px;
	border-left: 1px solid #1f1f1f;
	font-weight: 500;
}

.table02 .custum_bg {
	color: #0070bb;
	background: #dddddd;
}

.table04 {
	font-size: 14px;
	width: 100%;
	border: solid #1f1f1f;
	border-width: 1px 0;
}

.table04 th,
.table04 td,
.table04 caption {
	padding: 10px;
	border: #d6d6d6 1px solid;
}

.table04 tr+tr {
	border-top: 1px dashed #1f1f1f;
}

.table04 th {
	font-weight: bold;
	text-align: center;
}

.table04 td {
	vertical-align: top;
	line-height: 1.6;
}

.table04 td.c {
	text-align: center;
}

.table04 thead th {
	padding: 10px 5px;
	background: #f5f5f6;
}

.table04 thead th.color-green {
	color: #0070bb;
	background: #f5f5f6;
}

.table04 thead th.color-blue {
	background: #f5f5f6;
	color: #1f1f1f;
}

.table04 tbody th {
	line-height: 1.6;
	width: 200px;
	color: #0070bb;
}

.table04 tbody td {
	text-align: left;
	vertical-align: middle;
	border-left: 1px solid #1f1f1f;
	font-weight: 500;
}




.std .table01 thead th.color-blue a.under {
	display: block;
	margin: 0 auto;
	color: rgb(0 112 187);
	font-size: 16px;
	text-decoration: underline;
	border: none;
	padding: 10px 0;
}

.std .table01 thead th.color-blue a.under:hover {
	background: none;
	text-decoration: none;
}

.std .table01 th {
	width: 15%;
}

.std .table01 thead th.color-blue {
	width: 25%;
}

@media (max-width: 767px) {
	.table01 thead th.color-blue a.under {
		display: block;
		margin: 0 auto;
		color: rgb(0 112 187);
		font-size: 22px;
		text-decoration: underline;
		border: none;
		padding: 10px 0;
	}
}

@media (max-width: 767px) {
	/*----------------------------------------------------------*/
	/* .tr_design.ed {
	min-width: 100%;
	margin-bottom: 100px;}
.tr_design.ed .h2_txt {
	font-size: 22px;} */
	/* .tr_design.ed .txt {
	line-height: 2.0;
	font-size: 24px;}
.tr_design.ed ul {
	margin: 50px 30px 0;}
.tr_design.ed ul li {
	position: relative;
	flex-direction: column-reverse;}
.tr_design.ed ul li + li {
	margin-top: 60px;}
.tr_design.ed ul li div {
	width: 100%;}
.tr_design.ed ul li figure {
	width: auto;
	text-align: center;
	margin-bottom: 30px; } */
	/* .tr_design.ed ul li div h3 {
	margin-bottom: 15px;
	padding-bottom: 20px;
	font-size: 30px;} */
	/* .tr_design.ed ul li div .txt {
	padding-right: 0;} */

	.medicine.ed .right {
		margin-top: 30px;
	}

	.medicine.ed .right a.link_type_01 {
		width: 280px;
	}

	.tr_design.ed .right a.link_type_01 {
		width: 280px;
	}

	.tr_design.viagra .right a.link_type_01,
	.tr_price.viagra .right a.link_type_01 {
		padding: 23px 80px 23px 30px;
		line-height: 1.4;
	}

	.table01 th,
	.table01 td,
	.table01 caption {
		font-size: 24px;
	}

	.table01 thead th {
		font-size: 22px;
	}

	.table01 thead th.color-blue a {
		font-size: 20px;
		width: 180px;
		padding: 10px;
	}

	.table01 tbody th {
		width: 240px;
		min-width: 240px;
	}

	.table01 td {
		min-width: 280px;
	}

	.table01.table-fixed {
		table-layout: auto;
	}
	
	.c-table.has-left-th--half tbody th {
		width: 120px;
		min-width: 120px;
	}

	.c-table.has-left-th--3of4 tbody th {
		width: 180px;
		min-width: 180px;
	}

	.table02 {
		width: 1080px;
	}

	.table02 th,
	.table02 td,
	.table02 caption {
		font-size: 24px;
	}

	.table02 thead th {
		font-size: 22px;
	}

	.table02 th {
		width: 240px;
	}

	.table02 td {
		width: 280px;
	}

	.table04 {
		font-size: 24px;
		width: 1080px;
	}

	.table04 thead th {
		font-size: 22px;
		padding: 20px 10px;
	}

	.table04 th {
		padding: 15px;
		width: 240px;
	}

	.table04 td {
		padding: 20px;
		width: 280px;
	}

	.medicine.ed {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.medicine.ed .h2_txt {
		font-size: 22px;
	}

	.medicine.ed .txt {
		line-height: 2.0;
		font-size: 24px;
	}

	.medicine.ed ul {
		margin: 50px 30px 0;
	}

	.medicine.ed ul li {
		position: relative;
		flex-direction: column-reverse;
	}

	.medicine.ed ul li+li {
		margin-top: 60px;
	}

	.medicine.ed ul li div {
		width: 100%;
	}

	.medicine.ed ul li figure {
		width: auto;
		text-align: center;
		margin-bottom: 30px;
	}

	.medicine.ed ul li div h3 {
		margin-bottom: 15px;
		padding-bottom: 20px;
		font-size: 30px;
	}

	/* .tr_design.ed ul li div .txt {
	padding-right: 0;} */
	.medicine.ed .scroll_table {
		margin: 50px 30px 100px;
		overflow-x: scroll;
	}
}


/*	404 notfond：nonpage
===============================================================*/
.nonpage.detaile {
	min-width: 1200px;
	padding-top: 100px;
	margin-bottom: 100px;
	text-align: center;
}

.nonpage.detaile h3 {
	font-size: 24px;
	margin: 70px 0 25px;
}

.nonpage.detaile p {
	color: #4f4e4c;
	line-height: 2.2;
	font-size: 16px;
	margin-bottom: 70px;
}

.nonpage.detaile ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -50px;
}

.nonpage.detaile ul li {
	width: 300px;
	margin: 0 0 0 50px;
}

.nonpage.detaile ul li a {
	display: block;
	text-align: left;
	padding: 17px 30px;
	border: solid 1px #0070bb;
	border-radius: 100px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-color: #0070bb;
	background-image: url('../img/icon_arrow_right_on.png');
	color: #ffffff;
}

.nonpage.detaile ul li a:hover {
	background-color: #ffffff;
	background-image: url('../img/icon_arrow_right_off.png');
	color: #0070bb;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.nonpage.detaile {
		min-width: auto;
		padding: 100px 30px 40px;
		margin-bottom: 100px;
	}

	.nonpage.detaile h3 {
		font-size: 28px;
		margin: 70px 0 25px;
	}

	.nonpage.detaile p {
		font-size: 22px;
	}

	.nonpage.detaile ul {
		display: block;
		margin: 0;
	}

	.nonpage.detaile ul li {
		width: auto;
		margin: 0;
	}

	.nonpage.detaile ul li+li {
		margin-top: 20px;
	}

	.nonpage.detaile ul li a,
	.nonpage.detaile ul li a:hover {
		position: relative;
		display: block;
		margin: 0 auto;
		padding: 28px 30px;
		border: 2px solid #0070bb;
		border-radius: 60px;
		background: url('../img/icon_link_type_01_sp_off.png') no-repeat right 30px center #fff;
		font-weight: 700;
		font-size: 24px;
		color: #1f1f1f;
		transition: .2s;
	}

	/*----------------------------------------------------------*/
}


/*	バイアグラ：viagra
===============================================================*/
.under_nav.viagra {
	margin-bottom: 30px;
}

.tr_about.viagra {
	padding: 0 30px;
}

.tr_about.viagra ul {
	margin: 40px 0 0;
	text-align: left;
}

.tr_about.viagra ul li {
	display: flex;
	justify-content: space-between;
}

.tr_about.viagra ul li+li {
	margin-top: 50px;
}

.tr_about.viagra ul li div {
	width: auto;
}

.tr_about.viagra ul li figure {
	margin-left: 20px;
	min-width: 380px;
	text-align: center;
}

.tr_design.viagra ul {
	margin-top: 40px;
	text-align: left;
}

.tr_design.viagra ul li {
	display: flex;
	justify-content: space-between;
}

.tr_design.viagra ul li+li {
	margin-top: 50px;
}

.tr_design.viagra ul li div {
	width: auto;
}

.tr_design.viagra ul li>figure,
.tr_design.viagra ul li div.image {
	margin-left: 20px;
	min-width: 380px;
	text-align: center;
}

.tr_design.viagra ul li div.image figure+figure {
	margin-top: 20px;
}

.tr_design.viagra ul li div h3 {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.medicine.viagra .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
}

.medicine.viagra {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.medicine.viagra ul {
	margin-top: 40px;
	text-align: left;
}

.medicine.viagra ul li {
	display: flex;
	justify-content: space-between;
}

.medicine.viagra ul li+li {
	margin-top: 50px;
}

.medicine.viagra ul li div {
	width: auto;
}

.medicine.viagra ul li figure {
	margin-left: 20px;
	min-width: 380px;
	text-align: center;
}

.medicine.viagra ul li div h3 {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.medicine.viagra .txt {
	line-height: 2.0;
	font-size: 14px;
}

.medicine.viagra ul li div .txt+.txt {
	margin-top: 20px;
}

.medicine.viagra .scroll_table {
	margin-bottom: 60px;
}

.note_box {
	margin-top: 50px;
	background: #f5f5f6;
	border-radius: 10px;
	padding: 30px;
	text-align: left;
}

.note_box h3 {
	font-size: 20px;
	color: #0070bb;
	margin-bottom: 15px;
}

.note_box p {
	line-height: 1.8;
}

.tr_about.viagra ul+.scroll_table {
	margin-top: 20px;
}


@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.tr_design.viagra {
		padding: 0 30px;
		min-width: 100%;
		margin-bottom: 100px;
	}

	.tr_design.viagra .h2_txt {
		font-size: 22px;
	}

	.tr_design.viagra .txt {
		line-height: 2.0;
		font-size: 24px;
	}

	.tr_design.viagra ul {
		margin: 50px 0 0;
	}

	.tr_design.viagra ul li {
		position: relative;
		flex-direction: column-reverse;
	}

	.tr_design.viagra ul li+li {
		margin-top: 60px;
	}

	.tr_design.viagra ul li div {
		width: 100%;
	}

	.tr_design.viagra ul li>figure,
	.tr_design.viagra ul li div.image {
		width: auto;
		text-align: center;
		margin: 0 0 30px;
		position: static;
	}

	.tr_design.viagra ul li div.image figure+figure {
		margin-top: 40px;
	}

	.tr_design.viagra ul li div h3 {
		margin-bottom: 15px;
		padding-bottom: 20px;
		font-size: 30px;
	}

	.tr_design.viagra ul li div .txt {
		padding-right: 0;
	}

	.tr_about.viagra ul li {
		position: relative;
		flex-direction: column-reverse;
	}

	.tr_about.viagra ul li figure {
		margin: 0 0 40px;
		position: static;
	}

	.tr_about.viagra ul li div .txt {
		padding-right: 0;
	}

	.medicine.viagra {
		padding: 0 30px;
		min-width: 100%;
		margin-bottom: 100px;
	}

	.medicine.viagra .h2_txt {
		font-size: 22px;
	}

	.medicine.viagra .txt {
		line-height: 2.0;
		font-size: 24px;
	}

	.medicine.viagra ul {
		margin: 80px 0 0;
	}

	.medicine.viagra ul li {
		position: relative;
		flex-direction: column-reverse;
	}

	.medicine.viagra ul li+li {
		margin-top: 60px;
	}

	.medicine.viagra ul li div {
		width: 100%;
	}

	.medicine.viagra ul li figure {
		width: auto;
		text-align: center;
		margin-bottom: 30px;
	}

	.medicine.viagra ul li div h3 {
		margin-bottom: 15px;
		padding-bottom: 20px;
		font-size: 30px;
	}

	.medicine.viagra ul li div .txt {
		padding-right: 0;
	}

	.viagra .scroll_table {
		margin: 50px 0 0;
		overflow-x: scroll;
	}

	.note_box h3 {
		font-size: 28px;
		margin-bottom: 20px;
	}


	/*----------------------------------------------------------*/
}


/*	ED(勃起不全)根本治療：viagra
===============================================================*/
.tr_about.edwave .inner>figure {
	margin: 40px 0;
}

.tr_about.edwave ul li>div {
	width: 100%;
}

.tr_about.edwave ul li div figure {
	width: auto;
	margin: 20px 0;
}

.tr_about.edwave ul li div .txt span:not([class]) {
	background-color: rgba(12, 140, 249, 0.28);
}

.tr_about.edwave ul li div .txt span.aten-text {
	color: #ed831c;
}

/* .tr_price.edwave */
.tr_price.edwave .price_table td {
	width: 200px;
	line-height: 1.6;
}

.tr_price.edwave .price_table td:last-child {
	width: auto;
}


@media (max-width: 767px) {
	/*----------------------------------------------------------*/

	.tr_about.edwave ul li h3 {
		line-height: 1.4;
	}

	.tr_about.edwave ul li div figure {
		margin: 40px 0;
	}

	.tr_about.edwave ul li div .txt {
		padding-right: 0;
	}

	/* .tr_price.edwave */
	.tr_price.edwave .price_table td.w50 {
		width: 50%;
	}

	.tr_about.edwave .inner>figure {
		padding: 0 30px;
	}

	/*----------------------------------------------------------*/
}


/*	.p-comment-area
===============================================================*/
.p-comment-area {
	margin-bottom: 80px;
}

.p-comment-area__desc {
	background: #e1fafe;
	border: 3px solid #326eb6;
	border-radius: 10px 10px 0 0;
	padding: 40px 40px 30px;
}

.p-comment-area__desc-heading {
	color: #326eb6;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.p-comment-area__desc-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

@media (max-width: 767px) {
	.p-column-WYSIWYG__panels .p-comment-area__desc-list {
		gap: 10px;
	}
}

.p-comment-area__desc-list > div{
	width: 33%;
}

.p-comment-area__desc-list__heading {
	color: #fff;
    font-size: 16px;
	background: #326eb6;
	border-radius: 10px;
	padding: 12px 20px;
	text-align: center;
	line-height: 1.6;
	font-weight: 700;
}

.p-comment-area__desc-list__text {
	line-height: 1.6;
	text-align: center;
	padding: 0 5px;
	margin-top: 10px;
	font-size: 16px;
}

.p-comment-area__CVA {
	text-align: center;
	border-radius: 0 0 10px 10px;
	background: #326eb6;
	padding: 40px;
}

.p-comment-area__CVA .c-section__head {
	color: #fff;
}

.p-comment-area__CVA {
	width: 100%;
	padding: 20px 20px 30px;
}

.p-comment-area__CVA .p-footer-CVA__btn {
	width: 320px !important;
}

.p-comment-area__CVA .p-footer-CVA__body {
	justify-content: center;
	gap: 20px;
}

@media (max-width: 767px) {
	.p-comment-area {
		padding: 0 20px;
		margin-bottom: 60px;
	}

	.p-comment-area__desc {
		padding: 20px;
	}

	.p-comment-area__desc-heading {
		font-size: 22px;
		line-height: 1.4;
		margin-bottom: 0.75em
	}

	.p-comment-area__desc-list__heading {
		font-size: 16px;
		padding: 10px;
	}

	.p-comment-area__desc-list__text {
		font-size: 16px;
		text-align: left;
	}

	.p-comment-area__CVA {
		text-align: center;
		background: #326eb6;
		padding: 40px;
	}

	.p-comment-area__CVA .c-section__head {
		color: #fff;
	}

	.p-comment-area__CVA .p-footer-CVA__btn {
		width: 48% !important;
	}

	.p-comment-area__CVA-sp {
		width: 100%;
		background: #326eb6;
		border-radius: 0 0 10px 10px;
	}

	.p-comment-area__CVA-sp .p-header-CVA__btn__text {
		align-items: center;
		line-height: 1;
	}

	.post-template-single-column .postbox .flex .left .post_cont .p-comment-area__CVA-sp a:not(.c-btn) {
		text-decoration: none;
	}

	.p-comment-area__CVA-sp .p-header-CVA__title {
		font-size: 20px;
	}

	.p-comment-area__CVA-sp .p-header-CVA__btn__text em {
		font-size: 24px;
	}

	.p-comment-area__CVA-sp .p-header-CVA__btn--counselling em {
		font-size: 20px;
		text-align: center;
	}

	.p-comment-area__CVA-sp .p-header-CVA__btn__mininote,
	.p-comment-area__CVA-sp .p-header-CVA__btn__hours {
		font-size: 16px;
	}
}


/*	その他・共通：
===============================================================*/

.h3_subtit {
	font-size: 18px;
	color: #0070bb;
}

.h2_left {
	text-align: left;
}

.link_txt {
	margin-top: 20px;
	text-align: left;
}

.link_txt a {
	color: inherit;
	text-decoration: underline;
}

.left_txt {
	text-align: left;
}


@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.h3_subtit {
		font-size: 26px;
	}

	.h2_left {
		text-align: center;
	}

	.left_txt {
		line-height: 1.8;
	}


	/*----------------------------------------------------------*/
}


/*	特定商取引法に関する表記：company
===============================================================*/
.company.law {
	padding-top: 60px;
	margin-bottom: 120px;
}

.company.law table {
	width: 100%;
	background-color: #ffffff;
	border-left: solid 1px #000000;
	border-top: solid 1px #000000;
	line-height: 1.8;
}

.company.law table th {
	background-color: #deebf7;
	padding: 10px;
	width: 280px;
	border-right: solid 1px #000000;
	border-bottom: solid 1px #000000;
}

.company.law table td {
	padding: 10px 20px;
	border-right: solid 1px #000000;
	border-bottom: solid 1px #000000;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.company.law {
		padding: 60px 30px;
		margin-bottom: 100px;
	}

	.company.law table {
		line-height: 1.8;
	}

	.company.law table,
	.company.law table tbody,
	.company.law table tr,
	.company.law table th,
	.company.law table td {
		display: block;
		width: 100%;
	}

	.company.law table th {
		text-align: left;
		padding: 10px 20px
	}

	.company.law table td {
		padding: 20px;
	}

	/*----------------------------------------------------------*/
}


.company.law .box+.box {
	margin-top: 60px;
}

.company.law .box .title {
	margin-bottom: 25px;
	padding: 15px 1em;
	background: #deebf7;
	font-weight: bold;
	font-size: 18px;
}

.company.law .box .tos dt {
	margin-bottom: 15px;
	padding-left: 1em;
	font-weight: bold;
}

.company.law .box .tos dd {
	padding-left: 2em;
	font-size: 14px;
}

.company.law .box .tos dd ul {
	line-height: 1.8;
}

.company.law .box .tos dd ul li span {
	display: block;
	line-height: 1.4;
	margin-bottom: 10px;
	font-weight: bold;
}

.company.law .box .tos dd ul li+li {
	margin-top: 15px;
}

.company.law .box .tos dd+dt {
	margin-top: 40px;
}

.company.law .box .tos dd p {
	line-height: 1.8;
}

.company.law .box .tos dd ul.ten li {
	position: relative;
	padding-left: 1em;
}

.company.law .box .tos dd ul.ten li:before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}

.company.law .box .tos dd p+ul {
	margin-top: 20px;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.company.law .box+.box {
		margin-top: 60px;
	}

	.company.law .box .title {
		margin-bottom: 35px;
		padding: 15px 1em;
		background: #deebf7;
		font-weight: bold;
		font-size: 24px;
	}

	.company.law .box .tos dt {
		margin-bottom: 20px;
		padding-left: 1em;
		font-weight: bold;
	}

	.company.law .box .tos dd {
		padding-left: 1em;
		font-size: 22px;
	}

	.company.law .box .tos dd ul {
		line-height: 1.8;
	}

	.company.law .box .tos dd ul li span {
		display: block;
		line-height: 1.4;
		margin-bottom: 10px;
		font-weight: bold;
	}

	.company.law .box .tos dd ul li+li {
		margin-top: 15px;
	}

	.company.law .box .tos dd+dt {
		margin-top: 40px;
	}

	.company.law .box .tos dd p {
		line-height: 1.8;
	}

	.company.law .box .tos dd ul.ten li {
		position: relative;
		padding-left: 1em;
	}

	.company.law .box .tos dd ul.ten li:before {
		content: '・';
		position: absolute;
		top: 0;
		left: 0;
	}

	.company.law .box .tos dd p+ul {
		margin-top: 20px;
	}
}


/*contactページ*/
.treatment_other_text {
	margin-top: 15px;
}

.treatment_other_text input[type="text"] {
	font-size: 16px;
	padding: 0.375em 0.5em;
	width: auto;
}

.treatment_other_text input[type="text"]:disabled {
	background: #efefef;
	border-color: #ccc;
	color: #ccc;
}

.treatment_other_text input[type="text"]:disabled::placeholder {
	color: #ccc;
}

@media (max-width: 767px) {
	.treatment_other_text input[type="text"] {
		font-size: 20px;
		padding: 15px 10px;
		width: 100%;
	}
}

.p-toc__menu {
	max-width: 720px;
	padding: 15px 28px 30px;
	margin: 40px auto 60px;
	border: 1px solid rgb(0 112 187);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.p-toc__menu .c-menu__label {
	color: rgb(0 112 187);
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 0.2em;
	background: #e5f0f8;
	width: 100%;
}

.p-toc__menu .c-menu__label:not(:last-child) {
	margin-bottom: 30px;
}

.p-toc__menu .c-menu__list {
	margin: 0 !important;
	padding-left: 1em;
}

.p-toc__menu .c-menu__list li {
	text-indent: -0.5em;
}

.c-menu__num {
	display: inline-block;
	margin-right: 0.25em;
}

.js-toc__chapter {
	transform: translateY(-180px);
	display: inline-block;
	pointer-events: none;
}

@media (min-width: 768px) {
	.p-toc__menu {
		align-items: center;
	}

	.p-toc__menu .c-menu__label {
		font-size: 18px;
	}

	.p-toc__menu .c-menu__list {
		max-width: 600px;
	}

	.js-toc__chapter {
		transform: translateY(-140px);
	}
}

.p-column__entry .postbox .flex .left h2 {
    border: none;
}
@media (max-width: 767px) {
	#body .p-column__entry .p-related-medical__list-group {
		justify-content: space-between;
	}

	#body .p-column__entry .p-related-medical__list-item {
		width: calc((100% - 10px) / 2 );
		margin-top: 0;
		margin-bottom: 20px;
	}

	#body .p-column__entry .p-related-medical__list-item.p-related-medical__list-item--ed {
		width: 100%;
	}

	#body .p-column__entry .p-related-medical__list-item .link_type_01 {
		font-size: 22px;
		font-feature-settings: "palt";
		letter-spacing: -0.05em;
	}
}

[id="body"] .p-column__entry .postbox .flex .left .p-column-WYSIWYG__panels h2 {
	border-left: 0.25em solid #0070bb;
	text-align: left;
	width: 100%;
	padding: 0 0 0 0.5em;
    border-bottom: none;
}

[id="body"] .p-column__entry .p-column-WYSIWYG__panels h2:first-child {
	margin-top: 0;
}

[id="body"] .p-column__entry .p-column-WYSIWYG__panels h2:not(:first-child) {
	margin-top: 2em;
}

[id="body"] .p-column__entry .flex .left h3 {
	line-height: 1.6;
}

.p-column-WYSIWYG__panels .c-panel {
	padding-right: 30px;
	padding-left: 30px;
}

.p-column-WYSIWYG__panels .c-panel:not(:first-child) {
	margin-top: 3em;
}

.p-column-WYSIWYG__panels .c-panel:not(:last-child) {
	margin-bottom: 3em;
}

.p-column-WYSIWYG__panels .c-panel:nth-of-type(2n) {
	background: #f3f4f5;
	padding-top: 30px;
	padding-bottom: 30px;
}

.p-column-WYSIWYG__panels.medical_phimosis .c-panel:nth-of-type(2n) {
	background: none;
	padding-top: 0px;
	padding-bottom: 0px;
}

.p-column-WYSIWYG__panels.medical_phimosis .c-panel:nth-of-type(odd) {
	background: #f3f4f5;
	padding-top: 30px;
	padding-bottom: 30px;
}

.p-column-WYSIWYG__panels .c-panel.c-panel-white {
	background: #fff;
}

.p-column-medical__card {
	border-color: #0070bb;
	background: #fcfcfc;
	border-width: 5px;
	border-radius: 10px;
}

.p-column-medical__card:not(:first-child) {
	margin-top: 30px
}

.p-column-medical__card:not(:last-child) {
	margin-bottom: 30px;
}

.p-column-medical__card .c-card__head,
.p-column-medical__card .c-card__body {
	padding: 30px;
}

.p-column-medical__card .c-card__head {
	color: #0070bb;
	font-weight: bold;
	line-height: 1.6;
	background: rgb(208, 227, 240);
}

.p-column-medical__card .c-card__body {
	display: flex;
	flex-direction: column;
}

.p-column-medical__card .c-card__body p {
	max-width: 480px;
}

.p-column-medical__card .c-card__body li {
	line-height: 1.5;
	margin-bottom: 0.75em;
	padding-left: 1em;
	text-indent: -1em;
}

.p-column-table {
	margin: 20px auto;
	width: 720px;
	border-top: 1px solid #1f1f1f;
	border-bottom: 1px solid #1f1f1f;
}

@media (max-width: 767px) {
	.p-column-table {
		width: 100%;
	}
}

.p-column-table th {
    padding: 20px 10px;
    line-height: 1.5;
    background: #e5f0f8;
    font-weight: 700;
}

.p-column-table th.-left {
    text-align: left;
}

.p-column-table th:not(:first-child) {
	border-left: 1px solid #1f1f1f;
}

.p-column-table th:first-child {
	border-bottom: 1px dashed #1f1f1f;
}

.p-column-table td {
    padding: 20px 10px;
	line-height: 1.5;
	background: #fff;
	text-align: center;
	border-top: 1px dashed #1f1f1f;
}

.p-column-table td.-left {
    text-align: left;
}

.p-column-table td:not(:first-child) {
	border-left: 1px solid #1f1f1f;
}

.p-column-grade-tabel{
    display:flex;
    flex-wrap:wrap;
	margin:20px auto;
}
.p-column-grade-tabel__item{
    flex-basis:25%;
    display:flex;
    flex-direction:column;
    text-align:center;
    line-height:1.6;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
	border-left: 1px solid #1f1f1f;
}
.p-column-grade-tabel__item:first-child{
	border-left: none;
}
.p-column-grade-tabel__th,
.p-column-grade-tabel__td{
    padding:1em;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.p-column-grade-tabel__th{
    height:7em;
	border-bottom: 1px dashed #1f1f1f;
}
.p-column-grade-tabel__td{
    background:#FFF;
}
.p-column-grade-tabel__img{
	max-width: 150px;
}
@media (max-width: 767px) {
	.p-column-grade-tabel{
		flex-direction: column;
	}
	.p-column-grade-tabel__item{
	    flex-basis: 100%;
	    flex-direction: row;
	    border-left: none;
	    border-top: none;
	}
	.p-column-grade-tabel__item:first-child{
		border-top: 1px solid #1f1f1f;
	}
	.p-column-grade-tabel__th,
	.p-column-grade-tabel__td{
	    flex-basis: 50%;
	    height: auto;
	}
	.p-column-grade-tabel__th{
	    border-bottom: none;
	    border-right: 1px dashed #1f1f1f;
	}
	.p-column-grade-tabel__td{}
	.p-column-grade-tabel__img{}
}

.post-template-single-column .postbox .c-card.p-column-medical__card .c-card__body ul:first-child {
	margin-top: 0;
}

.post-template-single-column .postbox .c-card.p-column-medical__card .c-card__body ul:last-child {
	margin-bottom: calc(0 - 0.75em);
}

.post-template-single-column .postbox .c-card.p-column-medical__card .c-card__body ul:not(:first-child) {
	margin-top: 1em;
}

.post-template-single-column .postbox .c-card.p-column-medical__card .c-card__body ul:not(:last-child) {
	margin-bottom: calc(1em - 0.75em);
}

.p-column-medical__btn {
	align-self: center;
	background: url(../img/icon_link_type_01_on.png) no-repeat right 20px center #0070bb;
    color: #fff;
}

@media (max-width: 767px) {
	.p-column-medical__btn {
		background-size: 24px;
		background-position: right 30px center;
	}
}

.p-column-medical__btn:hover {
	background: url(../img/icon_link_type_01_off.png) no-repeat right 20px center #fff;
    color: #1f1f1f;;
}

.p-column-medical__btn:not(:first-child) {
	margin-top: 1em;
}

.p-column-medical__btn:not(:last-child) {
	margin-bottom: 1em;
}

@media (max-width: 767px) {
	[id="body"] .p-column__entry .postbox .flex .left .p-column-WYSIWYG__panels h2 {
		line-height: 1.5;
		margin-bottom: 20px;
	}
}

@media (min-width: 768px) {
	.p-column-WYSIWYG__panels>.p-column-medical__card {
		margin-right: 30px;
		margin-left: 30px;
	}

	.p-column-medical__card .c-card__head,
	.p-column-medical__card .c-card__body {
		padding: 15px 25px;
	}

	.p-column-medical__card .c-card__head {
		font-size: 18px;
		text-align: center;
	}

	.p-column-medical__card .c-card__body {
		align-items: center;
	}

	.p-column-medical__card .c-card__body ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		max-width: 620px;
	}

	.p-column-medical__card .c-card__body ul,
	.p-column-medical__card .c-card__body p {
		font-size: 16px !important;
	}

	.p-column-medical__card .c-card__body li {
		width: calc(50% - 20px);
	}
}



/*-------------------------------------------------------------------
 .p-column-WYSIWYG__panels .c-cva
-------------------------------------------------------------------*/
.p-column-WYSIWYG__panels .c-cva{
	margin: 0 -30px;
	padding: 3em 0;
	background: #0070bb;
	color: white;
	display: block;
	text-decoration: none;
	transition: .2s;
}
.p-column-WYSIWYG__panels .c-cva:hover{
	opacity: 0.9;
}
.p-column-WYSIWYG__panels .c-panel:not(:first-child) > .c-cva:first-child{
	margin-top: -3em;
}
.p-column-WYSIWYG__panels .c-panel:not(:first-child) > .c-cva:not(:first-child){
	margin-top: 3em;
}
.p-column-WYSIWYG__panels .c-panel:not(:last-child) > .c-cva:last-child{
	margin-bottom: -3em;
}
.p-column-WYSIWYG__panels .c-cva .c-cva__body{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.p-column-WYSIWYG__panels .c-cva .c-cva__body p{
	text-align: center;
	font-weight: 600;
	line-height: 2;
}
.p-column-WYSIWYG__panels .c-cva .c-cva__link-type.link_type_01{
	text-decoration: none;
}


.p-column-WYSIWYG__panels .c-cva .c-cva__link-type{
	display: block;
	margin-top: 20px;
	width: 170px;
	line-height: 1;
	margin-right: 0;
	margin-left: 0;
}
.p-column-WYSIWYG__panels .c-cva--counseling .c-cva__link-type{
	width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5em;
	padding: 20px 50px 20px 40px;
}
.p-column-WYSIWYG__panels .c-cva--counseling .c-cva__link-type span{
	font-size: 85.71428%;
	font-weight: 500;
}


@media (max-width: 767px) {
	.p-column-WYSIWYG__panels .c-cva .c-cva__link-type{
		display: block;
		width: 250px;
		margin: 20px auto 0;
	}
	.p-column-WYSIWYG__panels .c-cva--counseling .c-cva__link-type{
		width: 420px;
    display: flex;
    gap: 0.5em;
    padding: 20px 80px 20px 60px;
	}
}
@media (min-width: 768px) {
	.p-column-WYSIWYG__panels .c-cva .c-cva__body p{
		font-size: 1.25em;
	}
}


/*
-------------------------------------------------------

	@@/medical/ed/edwave/ こんな方へオススメです

-------------------------------------------------------
*/
.recomend {
    border: solid 1px #0070bb;
    margin: 40px auto 0;
    padding: 30px 60px;
    border-radius: 8px;
    max-width: 600px;
}

.recomend__llist-wrap {
    display: flex;
}

.recomend__list {
    width: 50%;
    margin-top: 25px!important;
}

.recomend__item {
    margin-top: 0!important;
    line-height: 2;
	font-size: 14px;
}

@media (max-width: 767px) {
	.recomend {
		width: calc(100% - 60px);
	}
	
	.recomend__ttl {
		margin-bottom: 20px;
	}

	.recomend__llist-wrap {
		display: block;
	}

	.recomend__list {
		width: 100%;
		margin-top: 0px!important;
	}

	.recomend__item {
		font-size: 24px;
	}
}


/* p-doctor-comment */
.p-doctor-comment__dl {
	margin-top: 40px;
	text-align: left;
	font-size: 14px;
}
.p-doctor-comment__dl dt {
	position: relative;
	padding: 25px 30px;
	border: 1px solid #0070bb;
	border-radius: 8px;
	background-color: #fff;
	font-weight: 700;
	color: #1f1f1f;
	line-height: 1.8;
	cursor: pointer;
}
.p-doctor-comment__dl dd {
	position: relative;
	padding: 30px;
	line-height: 2.0;
}

.p-doctor-comment__dl dd+dt {
	margin-top: 20px;
}
@media (max-width: 767px) {
	.p-doctor-comment__dl {
		font-size: 22px;
	}
	.p-doctor-comment__dl dt {
		font-size: 24px;
	}
}

/*
-------------------------------------------------------

	LINE相談ページ

-------------------------------------------------------
*/
.line_contact_sec{
	margin-top: -80px;
	max-width: 768px;
	margin-inline: auto;
	/* padding-bottom: 50px; */
}
.line_contact_flow_title {
	padding-top: 40px;
	padding-bottom: 90px;
	position: relative;
}
.line_contact_flow_title::before {
	content: "";
	display: block;
	position: absolute;
	background-image: url("/wp-content/themes/MLC-PC/img/line_contact/img03.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 83px;
	top: -19px;
	left: 0;
}
.line_contact_flow_title::after {
	content: "";
	display: block;
	position: absolute;
	background-image: url("/wp-content/themes/MLC-PC/img/line_contact/img05.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 225px;
	bottom: -115px;
	left: 0;
}
.line_contact_btn {
	display: block;
	margin-top: 25px;
}
.line_contact_reserve {
	margin-top: -52px;
    position: relative;
    width: 100%;
	height: 461px;
}
.line_contact_reserve::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url("/wp-content/themes/MLC-PC/img/line_contact/img08.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.line_contact_reserve_btn1 {
    position: absolute;
    top: 268px;
    left: 46px;
	display: block;
}
.line_contact_reserve_btn2 {
    position: absolute;
    top: 268px;
    right: 32px;
	display: block;
}
@media (max-width: 767px) {
	.line_contact_reserve {
		margin-top: -7vw;
		height: calc(461 / 768 * 100vw);
	}
	.line_contact_reserve_btn1 {
        top: 35vw;
        left: 5vw;
		width: calc(332 / 768 * 100%);
	}
	.line_contact_reserve_btn2 {
        top: 35vw;
        right: 4vw;
		width: calc(332 / 768 * 100%);
	}
}

/*
-------------------------------------------------------

	recruit

-------------------------------------------------------
*/
.recruit_detaile {
	margin-bottom: 0;
	padding-top: 80px;
}
.mail.form .recruit_detaile{
	padding: 0;

}
.recruit_detaile .company.law{
	padding: 0;
	margin: 0;
}
.recruit_detaile .company.law table {
	border-left: none;
}
.recruit_detaile .company.law table td {
	border-right: none;
}
.recruit_detaile .company.law table th{
    background: #f2f7fb;
}

.mail.form .recruit_detaile .c-section__title{
	font-size: 20px;
	color: inherit;
}
@media (max-width: 767px) {
	.mail.form .recruit_detaile .c-section__title{
		font-size: 32px;
	}
}
.recruit_detaile__location{
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
}
.recruit_detaile__locationitem{
    flex-basis: calc((100% - 30px) / 4);
}
@media (max-width: 767px) {
	.recruit_detaile .company.law{
		padding: 0 30px;
	}
	.recruit_detaile .company.law table th{
		border-right: none;
	}
	.recruit_detaile__locationitem{
		flex-basis: calc((100% - 10px) / 2);
	}
}

.page-recruit .mail.form {
	margin-top: 80px;
	padding-bottom: 80px;
	background: #f7f7f7;
}
.page-recruit .mail.form table th {
    width: 280px;
}
.page-recruit .mail.form table th,
.page-recruit .mw_wp_form .input_text ,
.page-recruit .mail.form table td ,
.page-recruit .mw_wp_form .input_select ,
.page-recruit .mail.form table td .mwform-checkbox-field label span.mwform-checkbox-field-text,
.page-recruit .mail.form table td .mwform-radio-field label span.mwform-radio-field-text ,
.page-recruit .mail.form table th span {
    font-size: 16px;
}

.page-recruit .personal_info {
	border: 1px solid #1f1f1f;
}

.page-recruit .mw_wp_form .input_text,
.page-recruit .mw_wp_form .input_select,
.page-recruit .mw_wp_form .input_area,
.page-recruit .mail:not(.form--contact_y) table td .mwform-checkbox-field label span.mwform-checkbox-field-text,
.page-recruit .mail:not(.form--contact_y) table td .mwform-radio-field label span.mwform-radio-field-text {
	background-color: #FFFFFF;
}

@media (max-width: 767px) {
	.page-recruit .mail.form table th {
		width: 100%;
	}
	.page-recruit .mail.form table th,
	.page-recruit .mw_wp_form .input_text ,
	.page-recruit .mail.form table td ,
	.page-recruit .mw_wp_form .input_select ,
	.page-recruit .mail.form table td .mwform-checkbox-field label span.mwform-checkbox-field-text,
	.page-recruit .mail.form table td .mwform-radio-field label span.mwform-radio-field-text ,
	.page-recruit .mail.form table th span {
		font-size: 24px;
	}
	.page-recruit .mw_wp_form .input_select.size_s {
		width: 40%;
	}
}

.recruit_detaile .tab_navi {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 1px solid #0070bb;
	background: #fff;
	margin-bottom: 30px;
}

@media only screen and (max-width:767px) {
	.recruit_detaile .tab_navi {
		margin: 0 30px 30px;
	}
}

.recruit_detaile .tab_navi li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	color: #0070bb;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	padding: 20px 5px;
	position: relative;
	line-height: 1.2;
}

.recruit_detaile .tab_navi li+li {
	border-left: 1px solid #0070bb;
}

.recruit_detaile .tab_navi li.active {
	color: #fff;
	background: #0070bb;
	border: none;
}

.recruit_detaile .tab_navi li.active::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -7px;
	border: 7px solid transparent;
	border-top: 7px solid #0070bb;
}

@media only screen and (max-width:767px) {
	.recruit_detaile .tab_navi li {
		font-size: 20px;
	}
}

.recruit_detaile .js-tabSwitching {
	cursor: pointer;
}

.recruit_detaile .js-tabSwitching.active {
	cursor: default;
}

.recruit_detaile .js-tabTarget {
	display: none;
}

.recruit_detaile .js-tabTarget.active {
	display: block;
}

.recruit_detaile table caption {
    font-size: 20px;
    padding: 10px 20px;
	color: #fff;
    background: #0070bb;
	font-weight: 700;
}

@media only screen and (max-width:767px) {
	.recruit_detaile table caption {
		font-size: 24px;
		display: block;
		text-align: left;
	}
}

/*
-------------------------------------------------------

	@@Utility

-------------------------------------------------------
*/
/* display */
.d-inline {
	display: inline !important;
}

.d-none {
	display: none !important;
}

@media (min-width: 768px) {
	.d-pc-none {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.d-sp-none {
		display: none !important;
	}
}

/* width */
.w-100 {
	width: 100% !important;
}

.w-auto {
	width: auto !important;
}

@media (min-width: 768px) {
	.w-pc-100 {
		width: 100% !important;
	}

	.w-pc-320 {
		width: 320px !important;
	}

	.w-pc-auto {
		width: auto !important;
	}
}

@media (max-width: 767px) {
	.w-sp-100 {
		width: 100% !important;
	}

	.w-sp-auto {
		width: auto !important;
	}
}

.max-w-720{
	max-width: 720px;
}

/* height */
.h-100 {
	width: 100% !important;
}

.w-auto {
	width: auto !important;
}

@media (min-width: 768px) {
	.w-pc-100 {
		width: 100% !important;
	}

	.w-pc-auto {
		width: auto !important;
	}
}

/* text */
.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}
@media (min-width: 768px) {
	.text-pc-left {
		text-align: left !important;
	}
	
	.text-pc-right {
		text-align: right !important;
	}
	
	.text-pc-center {
		text-align: center !important;
	}
}
/* text-color */
.text-white {
	color: #fff !important;
}

.text-light-gray {
	color: #edeeef !important;
}

.text-dark-gray {
	color: #798186 !important;
}

.text-black {
	color: #1f1f1f !important;
}

.text-blue {
	color: #0070bb !important;
}

.text-yellow {
	color: #f5a400 !important;
}
.text-orange {
	color: #fb8405 !important;
}
.text-red {
	color: #de0000 !important;
}

/* background-color */
.bg-white {
	background-color: #fff !important;
}

.bg-light-gray {
	background-color: #edeeef !important;
}

.bg-dark-gray {
	background-color: #798186 !important;
}

.bg-black {
	background-color: #1f1f1f !important;
}

.bg-blue {
	background-color: #0070bb;
}

.bg-light-brown {
	background-color: #f6f3ed !important;
}

.bg-light-yellow {
	background-color: #fffce7 !important;
}

.bg-light-orange {
	background-color: #fff0dc !important;
}

.bg-light-red {
	background-color: #ffe1e1 !important;
}


/* font weight */
.fw-bold{
	font-weight: bold !important;
}
.fw-normal{
	font-weight: normal !important;
}

/* font size */
.f10 {
	font-size: 63% !important;
}

/*10px*/
.f11 {
	font-size: 69% !important;
}

/*11px*/
.f12 {
	font-size: 75% !important;
}

/*12px*/
.f13 {
	font-size: 82% !important;
}

/*13px*/
.f14 {
	font-size: 88% !important;
}

/*14px*/
.f15 {
	font-size: 94% !important;
}

/*15px*/
.f16 {
	font-size: 100% !important;
}

/*16px*/
.f18 {
	font-size: 113% !important;
}

/*18px*/
.f20 {
	font-size: 125% !important;
}

/*20px*/
.f22 {
	font-size: 138% !important;
}

/*22px*/
.f24 {
	font-size: 150% !important;
}

/*24px*/

/* overflow */
.overflow-scroll-x {
	overflow-x: scroll !important;
}

@media (max-width: 767px) {
	.overflow-sp-scroll-x {
		overflow-x: scroll !important;
	}
}

@media (min-width: 768px) {
	.overflow-pc-scroll-x {
		overflow-x: scroll !important;
	}
}

/* font-size */
.fz50 {
	font-size: 50% !important;
}

.fz75 {
	font-size: 75% !important;
}

/* margin,padding */
.m0 {
	margin-top: 0 !important;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
}
.mx-auto{
	margin: auto;
}
.mx0 {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.my0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.mt0 {
	margin-top: 0 !important
}

.mb0 {
	margin-bottom: 0 !important
}

.mr0 {
	margin-right: 0 !important
}

.ml0 {
	margin-left: 0 !important
}

.p0 {
	padding-top: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	padding-left: 0 !important;
}

.px0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.py0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.pt0 {
	padding-top: 0 !important
}

.pb0 {
	padding-bottom: 0 !important
}

.pr0 {
	padding-right: 0 !important
}

.pl0 {
	padding-left: 0 !important
}

.m5 {
	margin-top: 5px !important;
	margin-right: 5px !important;
	margin-bottom: 5px !important;
	margin-left: 5px !important;
}

.mx5 {
	margin-right: 5px !important;
	margin-left: 5px !important;
}

.my5 {
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}

.mt5 {
	margin-top: 5px !important
}

.mb5 {
	margin-bottom: 5px !important
}

.mr5 {
	margin-right: 5px !important
}

.ml5 {
	margin-left: 5px !important
}

.p5 {
	padding-top: 5px !important;
	padding-right: 5px !important;
	padding-bottom: 5px !important;
	padding-left: 5px !important;
}

.px5 {
	padding-right: 5px !important;
	padding-left: 5px !important;
}

.py5 {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}

.pt5 {
	padding-top: 5px !important
}

.pb5 {
	padding-bottom: 5px !important
}

.pr5 {
	padding-right: 5px !important
}

.pl5 {
	padding-left: 5px !important
}

.m10 {
	margin-top: 10px !important;
	margin-right: 10px !important;
	margin-bottom: 10px !important;
	margin-left: 10px !important;
}

.mx10 {
	margin-right: 10px !important;
	margin-left: 10px !important;
}

.my10 {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.mt10 {
	margin-top: 10px !important
}

.mb10 {
	margin-bottom: 10px !important
}

.mr10 {
	margin-right: 10px !important
}

.ml10 {
	margin-left: 10px !important
}

.p10 {
	padding-top: 10px !important;
	padding-right: 10px !important;
	padding-bottom: 10px !important;
	padding-left: 10px !important;
}

.px10 {
	padding-right: 10px !important;
	padding-left: 10px !important;
}

.py10 {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

.pt10 {
	padding-top: 10px !important
}

.pb10 {
	padding-bottom: 10px !important
}

.pr10 {
	padding-right: 10px !important
}

.pl10 {
	padding-left: 10px !important
}

.m15 {
	margin-top: 15px !important;
	margin-right: 15px !important;
	margin-bottom: 15px !important;
	margin-left: 15px !important;
}

.mx15 {
	margin-right: 15px !important;
	margin-left: 15px !important;
}

.my15 {
	margin-top: 15px !important;
	margin-bottom: 15px !important;
}

.mt15 {
	margin-top: 15px !important
}

.mb15 {
	margin-bottom: 15px !important
}

.mr15 {
	margin-right: 15px !important
}

.ml15 {
	margin-left: 15px !important
}

.p15 {
	padding-top: 15px !important;
	padding-right: 15px !important;
	padding-bottom: 15px !important;
	padding-left: 15px !important;
}

.px15 {
	padding-right: 15px !important;
	padding-left: 15px !important;
}

.py15 {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.pt15 {
	padding-top: 15px !important
}

.pb15 {
	padding-bottom: 15px !important
}

.pr15 {
	padding-right: 15px !important
}

.pl15 {
	padding-left: 15px !important
}

.m20 {
	margin-top: 20px !important;
	margin-right: 20px !important;
	margin-bottom: 20px !important;
	margin-left: 20px !important;
}

.mx20 {
	margin-right: 20px !important;
	margin-left: 20px !important;
}

.my20 {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}

.mt20 {
	margin-top: 20px !important
}

@media (max-width: 767px) {
	.mt20-sp {
		margin-top: 20px !important
	}
}

.mb20 {
	margin-bottom: 20px !important
}

.mr20 {
	margin-right: 20px !important
}

.ml20 {
	margin-left: 20px !important
}

.p20 {
	padding-top: 20px !important;
	padding-right: 20px !important;
	padding-bottom: 20px !important;
	padding-left: 20px !important;
}

.px20 {
	padding-right: 20px !important;
	padding-left: 20px !important;
}

.py20 {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.pt20 {
	padding-top: 20px !important
}

.pb20 {
	padding-bottom: 20px !important
}

.pr20 {
	padding-right: 20px !important
}

.pl20 {
	padding-left: 20px !important
}

.m25 {
	margin-top: 25px !important;
	margin-right: 25px !important;
	margin-bottom: 25px !important;
	margin-left: 25px !important;
}

.mx25 {
	margin-right: 25px !important;
	margin-left: 25px !important;
}

.my25 {
	margin-top: 25px !important;
	margin-bottom: 25px !important;
}

.mt25 {
	margin-top: 25px !important
}

.mb25 {
	margin-bottom: 25px !important
}

.mr25 {
	margin-right: 25px !important
}

.ml25 {
	margin-left: 25px
}

.p25 {
	padding-top: 25px !important;
	padding-right: 25px !important;
	padding-bottom: 25px !important;
	padding-left: 25px !important;
}

.px25 {
	padding-right: 25px !important;
	padding-left: 25px !important;
}

.py25 {
	padding-top: 25px !important;
	padding-bottom: 25px !important;
}

.pt25 {
	padding-top: 25px
}

.pb25 {
	padding-bottom: 25px
}

.pr25 {
	padding-right: 25px
}

.pl25 {
	padding-left: 25px
}

.m30 {
	margin-top: 30px !important;
	margin-right: 30px !important;
	margin-bottom: 30px !important;
	margin-left: 30px !important;
}

.mx30 {
	margin-right: 30px !important;
	margin-left: 30px !important;
}

.my30 {
	margin-top: 30px !important;
	margin-bottom: 30px !important;
}

.mt30 {
	margin-top: 30px !important
}

.mb30 {
	margin-bottom: 30px !important
}

.mr30 {
	margin-right: 30px !important
}

.ml30 {
	margin-left: 30px
}

.p30 {
	padding-top: 30px !important;
	padding-right: 30px !important;
	padding-bottom: 30px !important;
	padding-left: 30px !important;
}

.px30 {
	padding-right: 30px !important;
	padding-left: 30px !important;
}

.py30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.pt30 {
	padding-top: 30px
}

.pb30 {
	padding-bottom: 30px
}

.pr30 {
	padding-right: 30px
}

.pl30 {
	padding-left: 30px
}

.m35 {
	margin-top: 35px !important;
	margin-right: 35px !important;
	margin-bottom: 35px !important;
	margin-left: 35px !important;
}

.mx35 {
	margin-right: 35px !important;
	margin-left: 35px !important;
}

.my35 {
	margin-top: 35px !important;
	margin-bottom: 35px !important;
}


.mt35 {
	margin-top: 35px !important
}

.mb35 {
	margin-bottom: 35px !important
}

.mr35 {
	margin-right: 35px !important
}

.ml35 {
	margin-left: 35px
}

.p35 {
	padding-top: 35px !important;
	padding-right: 35px !important;
	padding-bottom: 35px !important;
	padding-left: 35px !important;
}

.px35 {
	padding-right: 35px !important;
	padding-left: 35px !important;
}

.py35 {
	padding-top: 35px !important;
	padding-bottom: 35px !important;
}

.pt35 {
	padding-top: 35px
}

.pb35 {
	padding-bottom: 35px
}

.pr35 {
	padding-right: 35px
}

.pl35 {
	padding-left: 35px
}

.m40 {
	margin-top: 40px !important;
	margin-right: 40px !important;
	margin-bottom: 40px !important;
	margin-left: 40px !important;
}

.mx40 {
	margin-right: 40px !important;
	margin-left: 40px !important;
}

.my40 {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}

.mt40 {
	margin-top: 40px !important
}

.mb40 {
	margin-bottom: 40px !important
}

.mr40 {
	margin-right: 40px !important
}

.ml40 {
	margin-left: 40px
}

.p40 {
	padding-top: 40px !important;
	padding-right: 40px !important;
	padding-bottom: 40px !important;
	padding-left: 40px !important;
}

.px40 {
	padding-right: 40px !important;
	padding-left: 40px !important;
}

.py40 {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

.pt40 {
	padding-top: 40px
}

.pb40 {
	padding-bottom: 40px
}

.pr40 {
	padding-right: 40px
}

.pl40 {
	padding-left: 40px
}

.m45 {
	margin-top: 45px !important;
	margin-right: 45px !important;
	margin-bottom: 45px !important;
	margin-left: 45px !important;
}

.mx45 {
	margin-right: 45px !important;
	margin-left: 45px !important;
}

.my45 {
	margin-top: 45px !important;
	margin-bottom: 45px !important;
}

.mt45 {
	margin-top: 45px !important
}

.mb45 {
	margin-bottom: 45px !important
}

.mr45 {
	margin-right: 45px !important
}

.ml45 {
	margin-left: 45px
}

.p45 {
	padding-top: 45px !important;
	padding-right: 45px !important;
	padding-bottom: 45px !important;
	padding-left: 45px !important;
}

.px45 {
	padding-right: 45px !important;
	padding-left: 45px !important;
}

.py45 {
	padding-top: 45px !important;
	padding-bottom: 45px !important;
}

.pt45 {
	padding-top: 45px
}

.pb45 {
	padding-bottom: 45px
}

.pr45 {
	padding-right: 45px
}

.pl45 {
	padding-left: 45px
}

.m50 {
	margin-top: 50px !important;
	margin-right: 50px !important;
	margin-bottom: 50px !important;
	margin-left: 50px !important;
}

.mx50 {
	margin-right: 50px !important;
	margin-left: 50px !important;
}

.my50 {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}

.mt50 {
	margin-top: 50px !important
}

.mb50 {
	margin-bottom: 50px !important
}

.mr50 {
	margin-right: 50px !important
}

.ml50 {
	margin-left: 50px
}

.p50 {
	padding-top: 50px !important;
	padding-right: 50px !important;
	padding-bottom: 50px !important;
	padding-left: 50px !important;
}

.px50 {
	padding-right: 50px !important;
	padding-left: 50px !important;
}

.py50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.pt50 {
	padding-top: 50px
}

.pb50 {
	padding-bottom: 50px
}

.pr50 {
	padding-right: 50px
}

.pl50 {
	padding-left: 50px
}

.m60 {
	margin-top: 60px !important;
	margin-right: 60px !important;
	margin-bottom: 60px !important;
	margin-left: 60px !important;
}

.mx60 {
	margin-right: 60px !important;
	margin-left: 60px !important;
}

.my60 {
	margin-top: 60px !important;
	margin-bottom: 60px !important;
}

.mt60 {
	margin-top: 60px !important
}

.mb60 {
	margin-bottom: 60px !important
}

.mr60 {
	margin-right: 60px !important
}

.ml60 {
	margin-left: 60px
}

.p60 {
	padding-top: 60px !important;
	padding-right: 60px !important;
	padding-bottom: 60px !important;
	padding-left: 60px !important;
}

.px60 {
	padding-right: 60px !important;
	padding-left: 60px !important;
}

.py60 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.pt60 {
	padding-top: 60px
}

.pb60 {
	padding-bottom: 60px
}

.pr60 {
	padding-right: 60px
}

.pl60 {
	padding-left: 60px
}

.m70 {
	margin-top: 70px !important;
	margin-right: 70px !important;
	margin-bottom: 70px !important;
	margin-left: 70px !important;
}

.mx70 {
	margin-right: 70px !important;
	margin-left: 70px !important;
}

.my70 {
	margin-top: 70px !important;
	margin-bottom: 70px !important;
}

.mt70 {
	margin-top: 70px !important
}

.mb70 {
	margin-bottom: 70px !important
}

.mr70 {
	margin-right: 70px !important
}

.ml70 {
	margin-left: 70px
}

.p70 {
	padding-top: 70px !important;
	padding-right: 70px !important;
	padding-bottom: 70px !important;
	padding-left: 70px !important;
}

.px70 {
	padding-right: 70px !important;
	padding-left: 70px !important;
}

.py70 {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.pt70 {
	padding-top: 70px
}

.pb70 {
	padding-bottom: 70px
}

.pr70 {
	padding-right: 70px
}

.pl70 {
	padding-left: 70px
}

.m80 {
	margin-top: 80px !important;
	margin-right: 80px !important;
	margin-bottom: 80px !important;
	margin-left: 80px !important;
}

.mx80 {
	margin-right: 80px !important;
	margin-left: 80px !important;
}

.my80 {
	margin-top: 80px !important;
	margin-bottom: 80px !important;
}

.mt80 {
	margin-top: 80px !important
}

.mb80 {
	margin-bottom: 80px !important
}

.mr80 {
	margin-right: 80px !important
}

.ml80 {
	margin-left: 80px
}

.p80 {
	padding-top: 80px !important;
	padding-right: 80px !important;
	padding-bottom: 80px !important;
	padding-left: 80px !important;
}

.px80 {
	padding-right: 80px !important;
	padding-left: 80px !important;
}

.py80 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

.pt80 {
	padding-top: 80px
}

.pb80 {
	padding-bottom: 80px
}

.pr80 {
	padding-right: 80px
}

.pl80 {
	padding-left: 80px
}

@media (max-width: 767px) {
	.m-sp-0 {
		margin-top: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 0 !important;
		margin-left: 0 !important;
	}

	.mx-sp-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.my-sp-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.mt-sp-0 {
		margin-top: 0 !important
	}

	.mb-sp-0 {
		margin-bottom: 0 !important
	}

	.mr-sp-0 {
		margin-right: 0 !important
	}

	.ml-sp-0 {
		margin-left: 0 !important
	}

	.p-sp-0 {
		padding-top: 0 !important;
		padding-right: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 0 !important;
	}

	.px-sp-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.py-sp-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.pt-sp-0 {
		padding-top: 0 !important
	}

	.pb-sp-0 {
		padding-bottom: 0 !important
	}

	.pr-sp-0 {
		padding-right: 0 !important
	}

	.pl-sp-0 {
		padding-left: 0 !important
	}
}

@media (min-width: 768px) {
	.m-pc-0 {
		margin-top: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 0 !important;
		margin-left: 0 !important;
	}

	.mx-pc-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.my-pc-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.mt-pc-0 {
		margin-top: 0 !important
	}

	.mb-pc-0 {
		margin-bottom: 0 !important
	}

	.mr-pc-0 {
		margin-right: 0 !important
	}

	.ml-pc-0 {
		margin-left: 0 !important
	}

	.p-pc-0 {
		padding-top: 0 !important;
		padding-right: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 0 !important;
	}

	.px-pc-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.py-pc-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.pt-pc-0 {
		padding-top: 0 !important
	}

	.pb-pc-0 {
		padding-bottom: 0 !important
	}

	.pr-pc-0 {
		padding-right: 0 !important
	}

	.pl-pc-0 {
		padding-left: 0 !important
	}

	.m-pc-20 {
		margin-top: 20px !important;
		margin-right: 20px !important;
		margin-bottom: 20px !important;
		margin-left: 20px !important;
	}

	.mx-pc-20 {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.my-pc-20 {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}

	.mt-pc-20 {
		margin-top: 20px !important
	}

	.mb-pc-20 {
		margin-bottom: 20px !important
	}

	.mr-pc-20 {
		margin-right: 20px !important
	}

	.ml-pc-20 {
		margin-left: 20px
	}

	.p-pc-20 {
		padding-top: 20px !important;
		padding-right: 20px !important;
		padding-bottom: 20px !important;
		padding-left: 20px !important;
	}

	.px-pc-20 {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.py-pc-20 {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}

	.pt-pc-20 {
		padding-top: 20px
	}

	.pb-pc-20 {
		padding-bottom: 20px
	}

	.pr-pc-20 {
		padding-right: 20px
	}

	.pl-pc-20 {
		padding-left: 20px
	}

	.m-pc-30 {
		margin-top: 30px !important;
		margin-right: 30px !important;
		margin-bottom: 30px !important;
		margin-left: 30px !important;
	}

	.mx-pc-30 {
		margin-right: 30px !important;
		margin-left: 30px !important;
	}

	.my-pc-30 {
		margin-top: 30px !important;
		margin-bottom: 30px !important;
	}

	.mt-pc-30 {
		margin-top: 30px !important
	}

	.mb-pc-30 {
		margin-bottom: 30px !important
	}

	.mr-pc-30 {
		margin-right: 30px !important
	}

	.ml-pc-30 {
		margin-left: 30px
	}

	.p-pc-30 {
		padding-top: 30px !important;
		padding-right: 30px !important;
		padding-bottom: 30px !important;
		padding-left: 30px !important;
	}

	.px-pc-30 {
		padding-right: 30px !important;
		padding-left: 30px !important;
	}

	.py-pc-30 {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}

	.pt-pc-30 {
		padding-top: 30px
	}

	.pb-pc-30 {
		padding-bottom: 30px
	}

	.pr-pc-30 {
		padding-right: 30px
	}

	.pl-pc-30 {
		padding-left: 30px
	}

	.m-pc-40 {
		margin-top: 40px !important;
		margin-right: 40px !important;
		margin-bottom: 40px !important;
		margin-left: 40px !important;
	}

	.mx-pc-40 {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.my-pc-40 {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}

	.mt-pc-40 {
		margin-top: 40px !important
	}

	.mb-pc-40 {
		margin-bottom: 40px !important
	}

	.mr-pc-40 {
		margin-right: 40px !important
	}

	.ml-pc-40 {
		margin-left: 40px
	}

	.p-pc-40 {
		padding-top: 40px !important;
		padding-right: 40px !important;
		padding-bottom: 40px !important;
		padding-left: 40px !important;
	}

	.px-pc-40 {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.py-pc-40 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.pt-pc-40 {
		padding-top: 40px
	}

	.pb-pc-40 {
		padding-bottom: 40px
	}

	.pr-pc-40 {
		padding-right: 40px
	}

	.pl-pc-40 {
		padding-left: 40px
	}

	.m-pc-50 {
		margin-top: 50px !important;
		margin-right: 50px !important;
		margin-bottom: 50px !important;
		margin-left: 50px !important;
	}

	.mx-pc-50 {
		margin-right: 50px !important;
		margin-left: 50px !important;
	}

	.my-pc-50 {
		margin-top: 50px !important;
		margin-bottom: 50px !important;
	}

	.mt-pc-50 {
		margin-top: 50px !important
	}

	.mb-pc-50 {
		margin-bottom: 50px !important
	}

	.mr-pc-50 {
		margin-right: 50px !important
	}

	.ml-pc-50 {
		margin-left: 50px
	}

	.m-pc-neg50 {
		margin-top: -50px !important;
		margin-right: -50px !important;
		margin-bottom: -50px !important;
		margin-left: -50px !important;
	}

	.mx-pc-neg50 {
		margin-right: -50px !important;
		margin-left: -50px !important;
	}

	.my-pc-neg50 {
		margin-top: -50px !important;
		margin-bottom: -50px !important;
	}

	.mt-pc-neg50 {
		margin-top: -50px !important
	}

	.mb-pc-neg50 {
		margin-bottom: -50px !important
	}

	.mr-pc-neg50 {
		margin-right: -50px !important
	}

	.ml-pc-neg50 {
		margin-left: -50px
	}

	.p-pc-50 {
		padding-top: 50px !important;
		padding-right: 50px !important;
		padding-bottom: 50px !important;
		padding-left: 50px !important;
	}

	.px-pc-50 {
		padding-right: 50px !important;
		padding-left: 50px !important;
	}

	.py-pc-50 {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

	.pt-pc-50 {
		padding-top: 50px
	}

	.pb-pc-50 {
		padding-bottom: 50px
	}

	.pr-pc-50 {
		padding-right: 50px
	}

	.pl-pc-50 {
		padding-left: 50px
	}

	.m-pc-60 {
		margin-top: 60px !important;
		margin-right: 60px !important;
		margin-bottom: 60px !important;
		margin-left: 60px !important;
	}

	.mx-pc-60 {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.my-pc-60 {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}

	.mt-pc-60 {
		margin-top: 60px !important
	}

	.mb-pc-60 {
		margin-bottom: 60px !important
	}

	.mr-pc-60 {
		margin-right: 60px !important
	}

	.ml-pc-60 {
		margin-left: 60px
	}

	.p-pc-60 {
		padding-top: 60px !important;
		padding-right: 60px !important;
		padding-bottom: 60px !important;
		padding-left: 60px !important;
	}

	.px-pc-60 {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.py-pc-60 {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.pt-pc-60 {
		padding-top: 60px
	}

	.pb-pc-60 {
		padding-bottom: 60px
	}

	.pr-pc-60 {
		padding-right: 60px
	}

	.pl-pc-60 {
		padding-left: 60px
	}

	.m-pc-70 {
		margin-top: 70px !important;
		margin-right: 70px !important;
		margin-bottom: 70px !important;
		margin-left: 70px !important;
	}

	.mx-pc-70 {
		margin-right: 70px !important;
		margin-left: 70px !important;
	}

	.my-pc-70 {
		margin-top: 70px !important;
		margin-bottom: 70px !important;
	}

	.mt-pc-70 {
		margin-top: 70px !important
	}

	.mb-pc-70 {
		margin-bottom: 70px !important
	}

	.mr-pc-70 {
		margin-right: 70px !important
	}

	.ml-pc-70 {
		margin-left: 70px
	}

	.p-pc-70 {
		padding-top: 70px !important;
		padding-right: 70px !important;
		padding-bottom: 70px !important;
		padding-left: 70px !important;
	}

	.px-pc-70 {
		padding-right: 70px !important;
		padding-left: 70px !important;
	}

	.py-pc-70 {
		padding-top: 70px !important;
		padding-bottom: 70px !important;
	}

	.pt-pc-70 {
		padding-top: 70px
	}

	.pb-pc-70 {
		padding-bottom: 70px
	}

	.pr-pc-70 {
		padding-right: 70px
	}

	.pl-pc-70 {
		padding-left: 70px
	}

	.m-pc-80 {
		margin-top: 80px !important;
		margin-right: 80px !important;
		margin-bottom: 80px !important;
		margin-left: 80px !important;
	}

	.mx-pc-80 {
		margin-right: 80px !important;
		margin-left: 80px !important;
	}

	.my-pc-80 {
		margin-top: 80px !important;
		margin-bottom: 80px !important;
	}

	.mt-pc-80 {
		margin-top: 80px !important
	}

	.mb-pc-80 {
		margin-bottom: 80px !important
	}

	.mr-pc-80 {
		margin-right: 80px !important
	}

	.ml-pc-80 {
		margin-left: 80px
	}

	.p-pc-80 {
		padding-top: 80px !important;
		padding-right: 80px !important;
		padding-bottom: 80px !important;
		padding-left: 80px !important;
	}

	.px-pc-80 {
		padding-right: 80px !important;
		padding-left: 80px !important;
	}

	.py-pc-80 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}

	.pt-pc-80 {
		padding-top: 80px
	}

	.pb-pc-80 {
		padding-bottom: 80px
	}

	.pr-pc-80 {
		padding-right: 80px
	}

	.pl-pc-80 {
		padding-left: 80px
	}
}

.position-static {
	position: static !important;
}

.position-absolute {
	position: absolute !important;
}

.position-relative {
	position: relative !important;
}

@media (max-width: 767px) {
	.position-sp-static {
		position: static !important;
	}

	.position-sp-absolute {
		position: absolute !important;
	}

	.position-sp-relative {
		position: relative !important;
	}
}

@media (min-width: 768px) {
	.position-pc-static {
		position: static !important;
	}

	.position-pc-absolute {
		position: absolute !important;
	}

	.position-pc-relative {
		position: relative !important;
	}
}

.align-top {
	vertical-align: top !important;
}

.align-middle {
	vertical-align: middle !important;
}

.align-bottom {
	vertical-align: bottom !important;
}

@media (min-width: 768px) {
	.align-pc-top {
		vertical-align: top !important;
	}

	.align-pc-middle {
		vertical-align: middle !important;
	}

	.align-pc-bottom {
		vertical-align: bottom !important;
	}
}

@media (max-width: 767px) {
	.align-sp-top {
		vertical-align: top !important;
	}

	.align-sp-middle {
		vertical-align: middle !important;
	}

	.align-sp-bottom {
		vertical-align: bottom !important;
	}
}

.flex-column {
	flex-direction: column !important;
}

.flex-row {
	flex-direction: row !important;
}

@media (min-width: 768px) {
	.flex-pc-column {
		flex-direction: column !important;
	}

	.flex-pc-row {
		flex-direction: row !important;
	}
}

.align-items-start {
	align-items: start !important;
}

.align-items-end {
	align-items: end !important;
}

.align-items-center {
	align-items: center !important;
}

.align-items-baseline {
	align-items: baseline !important;
}

.align-items-stretch {
	align-items: stretch !important;
}

@media (min-width: 768px) {
	.align-items-pc-start {
		align-items: start !important;
	}

	.align-items-pc-end {
		align-items: end !important;
	}

	.align-items-pc-center {
		align-items: center !important;
	}

	.align-items-pc-baseline {
		align-items: baseline !important;
	}

	.align-items-pc-stretch {
		align-items: stretch !important;
	}
}

.d-block {
	display: block !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-flex {
	display: flex !important;
}

@media (max-width: 767px) {
	.d-sp-block {
		display: block !important;
	}

	.d-sp-inline-block {
		display: inline-block !important;
	}

	.d-sp-flex {
		display: flex !important;
	}
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

@media (max-width: 767px) {
	.flex-sp-wrap {
		flex-wrap: wrap !important;
	}

	.flex-sp-nowrap {
		flex-wrap: nowrap !important;
	}
}

@media (min-width: 768px) {
	.flex-pc-wrap {
		flex-wrap: wrap !important;
	}

	.flex-pc-nowrap {
		flex-wrap: nowrap !important;
	}
}

.order-1 {
	order: 1 !important;
}

.order-0 {
	order: 0 !important;
}

.order-neg1 {
	order: -1 !important;
}

@media (max-width: 767px) {
	.order-sp-1 {
		order: 1 !important;
	}

	.order-sp-0 {
		order: 0 !important;
	}

	.order-sp-neg1 {
		order: -1 !important;
	}
}

@media (min-width: 768px) {
	.order-pc-1 {
		order: 1 !important;
	}

	.order-pc-0 {
		order: 0 !important;
	}

	.order-pc-neg1 {
		order: -1 !important;
	}
}


.strong {
	font-weight: bold;
}

.box-large {
	width: 27% !important;
}

@media (max-width: 767px) {
	.box-large {
		width: 38% !important;
	}
}

.table-adjust-pd{
	padding: 20px!important;
}

@media (max-width: 767px) {
	.table-adjust-pd{
		padding: 35px 80px 35px 30px!important;
	}
}

.link-underline  {
	text-decoration: underline!important;
}

.link-underline:hover  {
	text-decoration: none!important;
}

.border-left-none {
	border-left: none !important;
}

.gap-20{
	gap: 20px;
}

.c-design-img {
	margin: 20px 0 50px;
}

.post-template-single-column .postbox .flex .left .c-design-img figure {
	width :100%;
	max-width: 625px;
	margin: 0 auto;
}

.c-section__head-txt {
	margin-bottom: 20px;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 700;
}

.post-template-single-column .postbox .flex .left .post_cont .p-footer-CVA__btn.p-footer-CVA__btn--counselling {
	text-decoration: none;
}

.p-footer-CVA--tmc .p-footer-CVA__btn--counselling i,
.p-footer-CVA--ltc .p-footer-CVA__btn--counselling {
	line-height: 1;
}

/* 各クリニックヴィジュアル修正 */
.clinic.info .info_image li:first-child {
    width: inherit;
}
.clinic.info .info_image li:last-child {
	width: 270px;
}
.clinic.info .info_image li ul{
	display: flex;
	flex-direction: column;
	height: 562px;
	justify-content: space-between;
}

.clinic.info .info_image li ul li{
	width:initial;
}

@media (max-width: 767px) {
	.clinic.info .info_image li:last-child {
		width: inherit;
		margin-top: 0;
	}
	.clinic.info .info_image li ul{
		display: block;
		flex-direction:inherit;
		height: inherit;
		justify-content:inherit;
	}
	.clinic.info .info_image li ul li,.clinic.info .info_image li ul li:last-child{
		margin:15px 0 0 0;
	}
	
}

/* 包茎手術詳細ページ */

.info_table.medical_phimosis_table{
	margin: 30px 0;
	border:1px solid #DDDDDD;
	font-size: 14px;
	display: table;
	table-layout: fixed;
}
.info_table.medical_phimosis_table tr,.info_table.medical_phimosis_table th,.info_table.medical_phimosis_table td{
	border:1px solid #DDDDDD;
}
.info_table.medical_phimosis_table th{
	padding:4px 20px;
	background: #e5f0f8;
	width: 65%;
}

.info_table.medical_phimosis_table td{
	padding:12px 20px;
	background: #FFFFFF;
	width: 65%;
	text-align: left;
}

.info_table.medical_phimosis_table th:first-child,.info_table.medical_phimosis_table td:first-child{
	width: 35%;
}
.info_table.medical_phimosis_table td:first-child{
	background: #f7fcff;
}

@media (max-width: 767px) {
	.info_table.medical_phimosis_table tr{
		display: inherit;	
	}
	.info_table.medical_phimosis_table th{
		line-height: 28px;
		padding: 16px 10px;
	}
	.info_table.medical_phimosis_table tr{
		border: none;
	}
	.info_table.medical_phimosis_table th,.info_table.medical_phimosis_table td{
		border:1px solid #DDDDDD;

	}
}

/* /inquiry/contact/ページ */
.contact_sp {
	overflow: hidden;
}

.contact_sp .h1_container {
	background-color: #0070ba;
}

.contact_sp h1 {
	font-size: 28px;
	color: #fff;
	padding: 40px 30px;
}

.contact_sp .width_750 {
	max-width: 750px;
	margin: auto;
}

.contact_sp .flow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 25px 30px;
}

.contact_sp .flow li {
	background-color: #dedfe1;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
    align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
}

.contact_sp .flow li:first-child {
	background-color: #5cade4;
}

.contact_sp .flow li:not(:last-child)::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 9px solid #fbb347;
	border-right: 0;
	position: absolute;
	right: 0;
	transform: translateX(300%);
}

@media (max-width: 767px) {
	.contact_sp .flow li:not(:last-child)::before {
		transform: translateX(170%);
	}
}

.contact_sp .note {
	padding: 0 30px;
	font-size: 22px;
    line-height: 1.4;
}

.contact_sp .note2 {
	padding: 40px 30px 20px;
	font-size: 22px;
    line-height: 1.4;
}

.form_sp {
	padding: 0 30px;
}

.form_inner {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

.form_sp .table_top {
	width: 100%;
	background-color: #ddf1fa;
}

.form_sp .table_bottom {
	width: 100%;
	background-color: #eae6e7;
}

.form_sp .tbody_top {
	max-width: 750px;
    display: block;
    margin: auto;
	padding: 0 30px 50px;
}

.form_sp .tbody_bottom {
	max-width: 750px;
    display: block;
    margin: auto;
	padding: 0 30px 50px;
}

.form_sp tr {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.form_sp th {
	padding: 30px 0 15px;
	font-size: 30px;
	display: flex;
	width: 100%;
    position: relative;
}

.form_sp th .required {
	background-color: #fc1a0e;
	color: #fff;
	font-size: 18px;
    padding: 6px 10px 6px 8px;
    margin-left: 10px;
    display: block;
}

.form_sp th .multiple {
    position: absolute;
    right: 0;
	bottom: 10px;
	font-size: 20px;
}

.form_sp td {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.form_sp .size_harf {
	width: 50%;
}

.form_sp .size_100 {
	width: 100%;
}

.form_sp .note {
	padding: 0 0 0 20px;
    font-size: 20px;
}

.mw_wp_form .form_sp .input_text {
    padding: 15px 25px;
	line-height: 1.6;
	background-color: #fff;
    font-weight: 700;
}

.form_sp input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
	-webkit-text-fill-color: #3f91c9;
}

.form_sp .input_hospital:-webkit-autofill {
    -webkit-text-fill-color: #757576;
}

.form_sp input[type="text"] {
    color: #3f91c9;
}

.mw_wp_form .form_sp .input_select {
    padding: 15px 25px;
	line-height: 1.6;
	background-color: #fff;
	color: #3f91c9;
    font-weight: 700;
}

.mw_wp_form .form_sp .input_hospital {
	color: #757576;
}

.form_sp .checkbox {
	display: flex;
    flex-wrap: wrap;
	background-color: #fff;
    padding: 8px 25px;
}

.form_sp .checkbox .mwform-checkbox-field {
	width: 50%;
	padding: 12px 0;
}

.form_sp input[type=checkbox] {
	display: none; 
}

.form_sp .mwform-checkbox-field-text {
	position: relative; 
	padding-left: 28px; 
	font-weight: 700;
	font-size: 30px;
}

.form_sp .mwform-checkbox-field-text::after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 0;
	margin-top: -13px;
	width: 20px;
	height: 20px;
	border: 3px solid #1f1f1f;
	border-radius: 50%;
}

.form_sp .mwform-checkbox-field-text::before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 0;
	margin-top: -13px;
	width: 26px;
	height: 26px;
	background-color: #1f1f1f;
	border-radius: 50%;
	opacity: 0;
}

.form_sp input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
	opacity: 1; 
}

.form_sp .flex_select {
	width: 100%;
}

.form_sp select[name="first_time01"] {
	margin-top: 20px;
}

.form_sp select[name="second_day"] {
	margin: 40px 0 20px;
}

.form_sp .hope {
	background-color: #fff;
    padding: 8px 25px;
}

.form_sp .mwform-radio-field {
	padding: 12px 0;
}

.form_sp .mwform-radio-field:not(:first-child) {
	margin-left: 50px;
}

.mw_wp_form .form_sp .vertical-item + .vertical-item {
	margin-top: 0;
}

.form_sp input[type=radio] {
	display: none; 
}

.form_sp .mwform-radio-field-text {
	position: relative; 
	padding-left: 28px; 
	font-weight: 700;
	font-size: 30px;
}

.form_sp .mwform-radio-field-text::after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 0;
	margin-top: -13px;
	width: 20px;
	height: 20px;
	border: 3px solid #1f1f1f;
	border-radius: 50%;
}

.form_sp .mwform-radio-field-text::before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 0;
	margin-top: -13px;
	width: 26px;
	height: 26px;
	background-color: #1f1f1f;
	border-radius: 50%;
	opacity: 0;
}

.form_sp input[type=radio]:checked + .mwform-radio-field-text::before {
	opacity: 1; 
}

.form_sp .js-medical_history {
	background-color: #fff;
    padding: 8px 25px;
}

.mw_wp_form .form_sp .input_area {
	background-color: #fff;
	height: 180px;
}

.contact_sp .input_bt {
	margin: 80px auto 0;
	display: block;
	max-width: 580px;
}

.input_hospital:not(:first-child) {
	margin-top: 20px;
}

.mw_wp_form .form_sp .error {
	font-size: 20px;
	margin-top: 5px;
	line-height: 1.4;
}

.form_sp .js-medical_history_detail {
	width: 100%;
	margin: 10px 0;
}

.mw_wp_form .form_sp .input_treatment2 {
	margin-top: 20px;
	color: #757576;
}

.iPhone .mw_wp_form .form_sp .input_treatment2 {
	margin-top: 20px;
	color: #a9a9a9;
}

.hospital__walking {
	font-size: 78%;
    margin-left: -8px;
	display: block;
    margin-top: 6px;
	font-weight: 400;
}

@media (max-width: 767px) {
	.hospital__walking {
		font-size: 84%;
		margin-left: -10px;
		margin-top: 10px;
	}
}

.treatment_text {
	font-size: 78%;
    margin-left: -8px;
	display: block;
    margin-top: 6px;
	font-weight: 400;
}

@media (max-width: 767px) {
	.treatment_text {
		font-size: 84%;
		margin-left: -10px;
		margin-top: 10px;
	}
}

.treatment_text_note {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: block;
	font-weight: 400;
}

@media (max-width: 767px) {
	.treatment_text_note {
		bottom: 6px;
	}
}

.hospital__notes {
	font-size: 11px;
	color: #e60012;
	margin-left: 6px;
}

@media (max-width: 767px) {
	.hospital__notes {
		font-size: 70%;
	}
}

.post-template-single-column .postbox .flex .left figure.phimosis-img {
	margin: 20px auto 0;
	width: 84px;
}

@media (min-width: 768px) {
	.img-flex-mt {
		margin-top: 10px;
	}
}

.selfcheck_link {
	width: 700px;
	padding: 50px;
	margin: 0 auto 80px;
	background-color: #f3f3f3;
	position: relative;
}
.selfcheck_link img {
	width: 280px;
	position: absolute;
	bottom: 0;
	right: 10px;
}

.selfcheck_link--btn {
	width: 320px;
}
.selfcheck_link--btn p {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
}
.selfcheck_link--btn p span {
	font-size: 20px;
}
.selfcheck_link--btn.type01 p span {
	color: #0070bb;
}
.selfcheck_link--btn.type02 p span {
	color: #f38400;
}
.selfcheck_link--btn.type03 p span {
	color: #cc0f35;
}

.selfcheck_link--btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 20px 0;
	border-radius: 8px;
	background-color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	border: 2px solid;
	cursor: pointer;
	transition: .2s;
}
.selfcheck_link--btn.type01 a {
	color: #0070bb;
	border-color: #0070bb;
}
.selfcheck_link--btn.type02 a {
	color: #f38400;
	border-color: #f38400;
}
.selfcheck_link--btn.type03 a {
	color: #cc0f35;
	border-color: #cc0f35;
}

@media (min-width: 768px){
	.selfcheck_link--btn.type01 a:hover {
		color: #ffffff;
		background-color: #0070bb;
	}
	.selfcheck_link--btn.type02 a:hover {
		color: #ffffff;
		background-color: #f38400;
	}
	.selfcheck_link--btn.type03 a:hover {
		color: #ffffff;
		background-color: #cc0f35;
	}
}

@media (max-width: 767px) {
	.selfcheck_link {
		width: calc(100% - 60px);
		padding: 50px 80px 0;
		margin: 0 auto 80px;
	}
	.selfcheck_link--btn {
		width: 100%;
		margin-bottom: 30px;
	}
	.selfcheck_link--btn p {
		font-size: 22px;
	}
	.selfcheck_link--btn p span {
		font-size: 24px;
	}
	.selfcheck_link--btn a {
		padding: 30px 0;
		font-size: 24px;
	}
	.selfcheck_link img {
		display: block;
		position: static;
		margin: 0 auto;
	}
	
}





/*
.link_type_selfcheck {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 70px;
	border-radius: 10px;
	background: #e5f0f8;
	border: 1px solid #0070bb;
	position: relative;
	padding: 0 25px;
	font-weight: 700;
	font-size: 18px;
	color: inherit;
}
.link_type_selfcheck img {
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 100px;
}

@media (max-width: 767px) {
	.selfcheck_link {
		width: calc(100% - 60px);
		margin: -40px auto 80px;
	}
	.link_type_selfcheck {
    justify-content: center;
    height: 80px;
		font-size: 24px;
	}
}
*/

@media (max-width: 767px) {
	.price_slider {
		overflow: hidden;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.sp-text-left { text-align: left !important;}
}

.c-section-media-advice {
	margin: -40px 0 120px;
}

@media (max-width: 767px) {
	.c-section-media-advice {
		margin: 0 0 120px;
	}
}

.c-media-advice {
	padding: 30px;
    border-radius: 8px;
    background: #edeeef;
}

.c-media-advice, .post-template-single-column .postbox .flex .left .post_cont ul .c-media-advice {
	padding: 30px;
}

.c-media-advice .h2_txt {
	text-align: center;
	margin: 0 auto 20px;
}

@media (max-width: 767px) {
	.c-media-advice .h2_txt {
		font-size: 22px;
	}
}

.c-media-advice .c-media-advice-flex {
	display: flex;
}

@media (max-width: 767px) {
	.c-media-advice .c-media-advice-flex {
		flex-direction: column;
	}
}

.post-template-single-column .postbox .flex .left .c-media-advice .c-media-title {
    font-weight: 700;
    color: #0070bb;
}

@media (max-width: 767px) {
	.post-template-single-column .postbox .flex .left .c-media-advice .c-media-title {
		font-size: 24px;
	}
}

.post-template-single-column .postbox .flex .left .post_cont .c-media-advice p.ttl {
	margin-top: 0;
	line-height: 1;
	font-size: 16px;
}

@media (max-width: 767px) {
	.post-template-single-column .postbox .flex .left .post_cont .c-media-advice p.ttl {
		font-size: 26px;
	}
}

.c-media-advice .c-media-advice-label {
	background-color: #798186;
	color: #fff;
	display: inline-block;
    font-size: 12px;
    padding: 15px 30px;
	height: 42px;
	margin: -14px 30px 0 0;
	line-height: 1;
}

@media (max-width: 767px) {
	.c-media-advice .c-media-advice-label.pcVer {
		display: none;
	}
}

@media (min-width: 768px) {
	.c-media-advice .c-media-advice-label.spVer {
		display: none;
	}
}

@media (max-width: 767px) {
	.c-media-advice .c-media-advice-label {
		font-size: 22px;
		padding: 15px 30px;
		height: 50px;
		margin: 0 auto 20px;
		display: flex;
		justify-content: center;
		width: 140px;
	}
}

.c-media-advice .ttl {
	font-weight: 700;
}

@media (max-width: 767px) {
	.c-media-advice .ttl {
		text-align: center;
		font-size: 26px;
	}
}

.tr_design.ed .c-media-advice .right a.link_type_01 {
	width: 270px;
}

.c-media-advice .right a.link_type_01 {
	width: 270px;
}

@media (max-width: 767px) {
	.tr_design.ed .c-media-advice .right a.link_type_01 {
		max-width: 430px;
		width: 100%;
	}

	.c-media-advice .right a.link_type_01 {
		max-width: 430px;
		width: 100%;
	}
}

.post-template-single-column .postbox .flex .left .post_cont .c-media-advice p.right {
	position: relative;
	top: 0;
	margin: 10px 20px 0 auto;
}

.post-template-single-column .postbox .flex .left .post_cont a:not(.c-cva):not(.c-btn) {
	text-decoration: none;
}

@media (min-width: 768px) {
	.post-template-single-column .postbox .flex .left .post_cont a:not(.c-cva):not(.c-btn):hover {
		color: #fff;
	}
}

.c-media-advice .w-100 {
	max-width: 170px;
}

@media (max-width: 767px) {
	.c-media-advice .w-100 {
		max-width: 260px;
	}
}

.onepoint-flex {
	display: flex;
	gap: 20px;
}

@media (max-width: 767px) {
	.onepoint-flex {
		flex-direction: column;
		gap: 20px;
	}
}

.onepoint-flex div {
	flex: 1;
}

.onepoint-flex img {
	max-width: 268px;
	margin-top: -60px;
	max-width: 268px;
}

@media (max-width: 767px) {
	.onepoint-flex img {
		margin: auto;
		display: block;
		width: 100%;
		max-width: 430px;
	}
}

.onepoint-flex figcaption {
	background-color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 12px;
	padding-bottom: 6px;
}

@media (max-width: 767px) {
	.onepoint-flex figcaption {
		font-size: 20px;
		max-width: 430px;
		margin: auto;
	}
}

.onepoint-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
	.onepoint-btn.pcVer {
		position: relative;
		margin-top: 20px;
		bottom: initial;
	}

	.onepoint-btn.spVer {
		display: none;
	}
}


@media (max-width: 767px) {
	.onepoint-btn {
		position: relative;
		bottom: initial;
		margin-top: 20px;
	}

	.onepoint-btn.pcVer {
		display: none;
	}
}

.onepoint-btn .link_type_01 {
	width: 270px;
	text-align: left;
	line-height: 1;
}

@media (max-width: 767px) {
	.onepoint-btn .link_type_01 {
		width: 430px;
	}

	.onepoint-btn.right .link_type_01 {
		margin-right: 0;
	}
}

.post-template-single-column .postbox .flex .left .onepoint h4 {
	font-weight: 700;
	text-align: center;
}

@media (max-width: 767px) {
	.post-template-single-column .postbox .flex .left .onepoint h4 {
		font-size: 32px;
	}
}

.post-template-single-column .postbox .flex .left .onepoint h3 {
	color: #333;
}

@media (max-width: 767px) {
	.post-template-single-column .postbox .flex .left .onepoint h3 {
		text-align: center;
	}
}

.onepoint.case.onepoint-column {
	margin: -60px 0 120px;
}

@media (max-width: 767px) {
	.onepoint.case.onepoint-column {
		margin: 0px 0 120px;
		padding: 0;
	}
}

.onepoint.case.onepoint-column .txt i {
	line-height: 2;
}


/* セルフチェック診断 */
.c-selfcheck {
	width: 780px;
	height: 540px;
	margin: 0 auto;
	background-color: #f3f3f3;
	background-image: url(../img/selfcheck_dr_big.png);
	background-position: bottom right 10px;
	background-repeat: no-repeat;
	box-sizing: content-box;
	overflow: hidden;
}
.c-selfcheck__scroll {
	display: flex;
	flex-wrap: nowrap;
	height: 100%;
	transition: transform 400ms;
	transition-delay: 200ms;
}
.c-selfcheck__check {
	display: none;
	height: 100%;
	flex-wrap: nowrap;
	flex-shrink: 0;
  box-sizing: border-box;
}
.c-selfcheck__item {
	padding: 0 50px;
	flex-shrink: 0;
}
.c-selfcheck__item p {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.c-selfcheck {
		width: 100%;
		height: 840px;
		background-size: 320px auto;
    background-position: bottom center;
		transition: background .2s;
	}
	.c-selfcheck__check {
		width: 100%;
	}
	.c-selfcheck__item {
		padding: 0 30px;
	}
	.c-selfcheck__item p {
		font-size: 5vw;
	}
	.c-selfcheck.right-set {
		background-size: 250px auto;
    background-position: bottom right 10px;
	}

	
}

.c-selfcheck__menu {
	display: flex;
	align-items: center;
	padding: 50px;
}
.c-selfcheck__menu ul {
	width: 320px;
}
.c-selfcheck__menu ul li {
	text-align: center;
	margin-bottom: 30px;
}
.c-selfcheck__menu ul li:last-child {
	margin-bottom: 0;
}
.c-selfcheck__menu ul li p {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}
.c-selfcheck__menu ul li p span {
	font-size: 20px;
}
.c-selfcheck__menu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 20px 0;
	border-radius: 8px;
	background-color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	border: 2px solid;
	cursor: pointer;
	transition: .2s;
}

.c-selfcheck__menu ul li.c-selfcheck__menu--item01 span {
	color: #0070bb;
}
.c-selfcheck__menu ul li.c-selfcheck__menu--item01 a {
	color: #0070bb;
	border-color: #0070bb;
	background: url('../img/icon_link_type_blue_off.png') no-repeat right 20px center #fff;
	background-size: 14px 14px;
}
.c-selfcheck__menu ul li.c-selfcheck__menu--item01 a.js-selfcheck--active {
	color: #ffffff;
	background-color: #0070bb;
	background-image: url('../img/icon_link_type_blue_on.png');
}

.c-selfcheck__menu ul li.c-selfcheck__menu--item02 span {
	color: #f38400;
}
.c-selfcheck__menu ul li.c-selfcheck__menu--item02 a {
	color: #f38400;
	border-color: #f38400;
	background: url('../img/icon_link_type_org_off.png') no-repeat right 20px center #fff;
	background-size: 14px 14px;
}
.c-selfcheck__menu ul li.c-selfcheck__menu--item02 a.js-selfcheck--active {
	color: #ffffff;
	background-color: #f38400;
	background-image: url('../img/icon_link_type_org_on.png');
}

.c-selfcheck__menu ul li.c-selfcheck__menu--item03 span {
	color: #cc0f35;
}
.c-selfcheck__menu ul li.c-selfcheck__menu--item03 a {
	color: #cc0f35;
	border-color: #cc0f35;
	background: url('../img/icon_link_type_red_off.png') no-repeat right 20px center #fff;
	background-size: 14px 14px;
}
.c-selfcheck__menu ul li.c-selfcheck__menu--item03 a.js-selfcheck--active {
	color: #ffffff;
	background-color: #cc0f35;
	background-image: url('../img/icon_link_type_red_on.png');
}

@media (min-width: 768px) {
	.c-selfcheck__menu ul li.c-selfcheck__menu--item01 a:hover {
		color: #ffffff;
		background-color: #0070bb;
		background-image: url('../img/icon_link_type_blue_on.png');
	}
	.c-selfcheck__menu ul li.c-selfcheck__menu--item02 a:hover {
		color: #ffffff;
		background-color: #f38400;
		background-image: url('../img/icon_link_type_org_on.png');
	}
	.c-selfcheck__menu ul li.c-selfcheck__menu--item03 a:hover {
		color: #ffffff;
		background-color: #cc0f35;
		background-image: url('../img/icon_link_type_red_on.png');
	}
}
@media (max-width: 767px) {
	.c-selfcheck__menu {
		padding: 50px 80px;
		align-items: flex-start;
	}
	.c-selfcheck__menu ul {
		width: 100%;
	}
	.c-selfcheck__menu ul li {
		margin-bottom: 50px;
	}
	.c-selfcheck__menu ul li p {
		font-size: 22px;
	}
	.c-selfcheck__menu ul li p span {
		font-size: 24px;
	}
	.c-selfcheck__menu ul li a {
		padding: 30px 0;
		font-size: 24px;
		background-size: 24px auto !important;
	}
}


.c-selfcheck__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 250px;
}
#check03 .c-selfcheck__text {
	height: 200px;
}
.c-selfcheck__text span {
	font-size: 16px;
	font-weight: normal;
}

@media (max-width: 767px) {
	.c-selfcheck__text {
		align-items: center;
    text-align: center;
    height: 350px;
	}
	#check03 .c-selfcheck__text {
		height: 220px;
	}
	.c-selfcheck__text span {
		font-size: 3vw;
	}
}

.c-selfcheck__anslist {
	display: flex;
}
.c-selfcheck__anslist li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 64px;
	margin-right: 20px;
	border: #000 2px solid;
	background: #fff;
	border-radius: 8px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	transition: .2s;
}
#check01 .c-selfcheck__anslist li {
	border-color: #0070bb;
}
#check02 .c-selfcheck__anslist li {
	border-color: #f38400;
}
@media (min-width: 768px) {
	#check01 .c-selfcheck__anslist li:hover {
		color: #ffffff;
		background-color: #0070bb;
	}
	#check02 .c-selfcheck__anslist li:hover {
		color: #ffffff;
		background-color: #f38400;
	}
}
@media (max-width: 767px) {
	.c-selfcheck__anslist {
		justify-content: space-between;
	}
	.c-selfcheck__anslist li {
		width: 45%;
		height: 100px;
		margin: 0;
		font-size: 26px;
	}
}

.c-selfcheck__checklist {
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: bold;
}
.c-selfcheck__checklist .c-checkbox {
	margin-bottom: 15px;
}
.c-selfcheck__checklist .c-checkbox input {
	display: none;
}
.c-selfcheck__checklist .c-checkbox label {
	padding-left: 30px;
	position: relative;
	user-select: none;
}
.c-selfcheck__checklist .c-checkbox label:before {
	content: "";
	display: block;
	position: absolute;
	top: 0.0625em;
	left: 0;
	width: 1em;
	height: 1em;
	border: 1px solid rgba(118, 118, 118, 0.3);
	border-radius: 3px;
	background: #fff;
}
.c-selfcheck__checklist .c-checkbox input:checked+label {
	color: #cc0f35;
}
.c-selfcheck__checklist .c-checkbox input:checked+label:after {
	content: "";
	display: block;
	position: absolute;
	top: -0.25em;
	left: 0.3125em;
	width: 0.4375em;
	height: 0.875em;
	transform: rotate(40deg);
	border-bottom: 0.1875em solid #cc0f35;
	border-right: 0.1875em solid #cc0f35;
}

@media (max-width: 767px) {
	.c-selfcheck__checklist {
		width: fit-content;
    margin: 0 auto;
		font-size: 3.8vw;
		font-weight: normal;
	}
	.c-selfcheck__checklist .c-checkbox {
		margin-bottom: 20px;
	}
	.c-selfcheck__checklist .c-checkbox label {
		display: inline-block;
		padding-left: 40px;
		line-height: 1.4;
	}
}

.c-selfcheck__ans {
	display: none;
	position: relative;
	padding: 50px;
}
.c-selfcheck__ans_block {
	margin: 30px 0;
}
.c-selfcheck__ans p {
	font-size: 20px;
	font-weight: bold;
}
.c-selfcheck__ans p span {
	font-size: 26px;
}
#check01 .c-selfcheck__ans p span {
	color: #0070bb;
}
#check02 .c-selfcheck__ans p span {
	color: #f38400;
}
#check03 .c-selfcheck__ans p span {
	color: #cc0f35;
}

@media (max-width: 767px) {
	.c-selfcheck__ans {
		padding: 50px 30px;
	}
	.c-selfcheck__ans p {
		font-size: 4vw;
	}
	.c-selfcheck__ans p span {
		font-size: 5vw;
	}
	.c-selfcheck__ans_block {
		margin: 40px 0;
	}
}

.c-selfcheck__title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 440px;
	height: 36px;
	color: #fff;
}
#check01 .c-selfcheck__title {
	background-color: #0070bb;
}
#check02 .c-selfcheck__title {
	background-color: #f38400;
}
#check03 .c-selfcheck__title {
	background-color: #cc0f35;
}

@media (max-width: 767px) {
	.c-selfcheck__title {
		width: 100%;
		height: 60px;
	}
}

.c-selfcheck__link {
	display: flex;
	align-items: center;
	width: 440px;
	height: 60px;
	padding: 0 30px;
	margin-top: 30px;
	border: 2px solid;
	border-radius: 999px;
	font-size: 20px;
	font-weight: bold;
	color: #000;
	transition: .2s;
}
#check01 .c-selfcheck__link {
	border-color: #0070bb;
	background: url('../img/icon_link_type_blue_off.png') no-repeat right 20px center #fff;
	background-size: 12px 12px;
}
#check02 .c-selfcheck__link {
	border-color: #f38400;
	background: url('../img/icon_link_type_org_off.png') no-repeat right 20px center #fff;
	background-size: 12px 12px;
}
#check03 .c-selfcheck__link {
	border-color: #cc0f35;
	background: url('../img/icon_link_type_red_off.png') no-repeat right 20px center #fff;
	background-size: 12px 12px;
}
@media (min-width: 768px) {
	#check01 .c-selfcheck__link:hover {
		color: #ffffff;
		background-color: #0070bb;
		background-image: url('../img/icon_link_type_blue_on.png');
	}
	#check02 .c-selfcheck__link:hover {
		color: #ffffff;
		background-color: #f38400;
		background-image: url('../img/icon_link_type_org_on.png');
	}
	#check03 .c-selfcheck__link:hover {
		color: #ffffff;
		background-color: #cc0f35;
		background-image: url('../img/icon_link_type_red_on.png');
	}
}

@media (max-width: 767px) {
	.c-selfcheck__link {
		width: 100%;
    height: 80px;
		margin-top: 50px;
    font-size: 4vw;
    background-size: 24px auto;
	}
}

#check03-ans .c-selfcheck__link {
	display: none;
}
#check03-ans .c-selfcheck__link.act {
	display: flex;
}

.c-selfcheck__ans_text {
	margin-bottom: 15px;
	line-height: 1.8;
}
.c-selfcheck__reset {
	font-size: 20px;
	font-weight: bold;
	color: #0070bb;
	position: absolute; bottom: 30px;
}

@media (max-width: 767px) {
	.c-selfcheck__ans_text {
		font-size: 4vw;
	}
	.c-selfcheck__reset {
		font-size: 28px;
	}
}

.form_age_container {
	display: flex;
	align-items: center;
}

.form_age_container .input_select {
	margin-right: 10px;
}

@media (max-width: 767px) {
	.form_age_container .mwform-checkbox-field {
		width: 100%;
	}
}

.form_age_container .mwform-checkbox-field-text {
	background: none!important;
	padding: 10px 0 10px 30px!important;
	color: #1f1f1f!important;
	font-size: 14px!important;
	font-weight: 400!important;
	margin-left: 40px;
	display: none!important;
}

@media (max-width: 767px) {
	.form_age_container .mwform-checkbox-field-text {
		padding-left: 50px!important;
		font-size: 20px!important;
	}
}

.form_age_container .checkbox_guardian.-active ~ .mwform-checkbox-field-text {
	display: block!important;
}

.form_age_container .guardian__required {
	color: #e60012;
}

.day_tr {
	border-top: none!important;
}

.day_tr td {
	padding-top: 0!important;
}

.day_third {
	display: flex!important;
	flex-direction: column!important;
	padding-bottom: 15px;
	border-left: 1px solid #1f1f1f;
}

@media (max-width: 767px) {
	.day_third {
		border-left: none;
		padding-bottom: 40px;
	}
}

.day_third .day_third_select {
	width: 540px;
	text-align: center!important;
	padding-bottom: 10px!important;
	font-size: 18px!important;
	position: relative;
	padding-left: 0px!important;
	cursor: pointer;
	border-left: none!important;
}

@media (max-width: 767px) {
	.day_third .day_third_select {
		font-size: 22px!important;
	}
}

.day_third .day_third_select .day_third_select_button {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	border-radius: 50%;
	background-color: #0070bb;
	position: absolute;
	top: -2px;
	right: 140px;
}

@media (max-width: 767px) {
	.day_third .day_third_select .day_third_select_button {
		top: 0;
		right: 96px;
	}
}

.day_third .day_third_select .day_third_select_button::before {
	content: "";
	width: 2px;
	height: 10px;
	display: block;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
}

.day_third .day_third_select .day_third_select_button::after {
	content: "";
	width: 10px;
	height: 2px;
	display: block;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
}

.day_third .day_third_select.active .day_third_select_button::before {
	content: none;
}

.day_third_contents {
	display: none;
	border-left: none!important;
	padding-bottom: 10px!important;
}

@media (max-width: 767px) {
	.mail.form table .day_third_contents {
		display: none;
	}
}

#hospital_wrap .area-name {
	display: none;
}

#hospital_wrap .flex {
	margin: 0;
}

#hospital_wrap .flex>span {
	margin: 0;
}

#hospital_wrap .mwform-radio-field:not(.target),
#hospital_wrap select optgroup:not(.target),
#hospital_wrap select optgroup option:not(.target){
	display: none;
}

#hospital_wrap .note {
	display: none;
}

#hospital_wrap .mwform-radio-field-text::before,
#hospital_wrap .mwform-radio-field-text::after {
	content: none;
}