@charset 'UTF-8';

/*

    Base

*/

/*  color  */
:root {
	--main-color: #3d789a;
	--accent-color: #000000;
	--link-color: #3d789a;
	--bg-color: #f7f6f0;
	--warning-color: #DC143C;
	--success-color: #333366;
}

/*  webkit  */
body {
	-webkit-text-size-adjust: 100%;
}
a {
	-webkit-tap-highlight-color: rgba(255,255,255,0.4);
}
img {
	-webkit-touch-callout: none;
}
input[type=password], input[type=text], button, textarea {
	max-width: 100%;
	-webkit-appearance: none;
	border-radius: 0;
}

/*  font  */
html { font-size: 8px;}
@media screen and (min-width: 768px) { html { font-size: 10px;}}
body {
	font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #333333;
}
a {
	color: var(--link-color);
	transition: all 0.1s linear;
}
a:hover   { opacity: 0.7;}
p {
	line-height: 2;
	font-feature-settings: "palt";
}

/*  size color  */
body { font-size: 1.4rem;}
h1 { font-size: 3.8rem;}
h2 { font-size: 2.4rem;}
h3 { font-size: 2.0rem;}

/*  common  */
.global {
	font-family: 'Noto Serif JP', serif;
}
.global ul,
.global li,
.global p {
	margin: 0;
	list-style: none;
	line-height: 1;
}
.global a {
	text-decoration: none;
	color: inherit;
}
div.wrapper {
	margin: 0 20px;
}
@media screen and (min-width: 768px) {
	div.wrapper {
		max-width: 1020px;
		margin: 0 auto;
	}
	div.wrapper.narrow {
		max-width: 640px;
	}
}

/*  max width  */
body img,
body iframe {
	max-width: 100%;
}

/*  placeholder  */
::placeholder {
	font-size: 1.4rem;
	color: #999999;
}

/*  material icons  */
.material-icons {
	margin-right: 0.25em;
	font-size: 1.25em;
	vertical-align: middle;
}

/*  container  */
div.container {
	margin: 1em;
}
@media screen and (min-width: 768px) {
	div.container {
		max-width: 1160px;
		margin: 0 auto;
		padding: 0 20px;
	}
	div.container.narrow {
		max-width: 960px;
	}
	div.container.thin {
		max-width: 720px;
	}
}





/*

    Header

*/

/*  layout  */
header.global {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	border-bottom: 1px rgba(255,255,255,0.5) solid;
	z-index: 1;
}
@media screen and (min-width: 768px) {
	header.global {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

/*  logo  */
header.global a.sitetop {
	display: block;
}
header.global a.sitetop h1, 
header.global a.sitetop p {
	margin: 0;
	padding: 0;
}
header.global a.sitetop h1 img,
header.global a.sitetop p img {
	display: block;
	height: 60px;
	margin: 0;
}
@media screen and (min-width: 768px) {
	header.global a.sitetop h1 img,
	header.global a.sitetop p img {
		height: 80px;
	}
}

/*  nav  */
header.global nav {
	display: none;
	position: absolute;
	top: 60px;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,0.9);
	z-index: 9999;
}
header.global nav ul {
	display: block;
	list-style: none;
	margin: 1em 0;
}
header.global nav ul li {
	margin: 0;
}
header.global nav ul li a {
	display: block;
	padding: 1em;
	font-size: 1.75rem;
	color: var(--main-color);
	text-align: center;
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	header.global nav {
		top: 80px;
		width: 300px;
	}
	header.global nav ul li a {
		font-size: 1.5rem;
	}
}

/*  nav.main  */
header.global nav.main {
	display: none;
}
@media screen and (min-width: 1160px) {
	header.global nav.main {
		position: absolute;
		top: auto;
		right: 80px;
		display: block !important;
		width: auto;
		height: auto;
		background-color: transparent;
	}
	header.global nav.main ul {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		list-style: none;
	}
	header.global nav.main ul li {
		margin: 0 50px 0 0;
	}
	header.global nav.main ul li a {
		padding: 0;
		font-size: 1.5rem;
		color: #ffffff;
	}
}

/*  menu  */
header.global .menu {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	padding: 15px;
	border-left: 1px rgba(255,255,255,0.5) solid;
	cursor: pointer;
	box-sizing: border-box;
}
header.global .menu:after {
	content: "MENU";
	display: block;
	width: 100%;
	margin: 10px auto 0;
	font-family: "Open Sans", sans-serif;
	font-size: 1.0rem;
	color: #ffffff;
	text-align: center;
	letter-spacing: 0;
	line-height: 1;
}
header.global .menu a {
	display: block;
	margin: 0 auto;
	width: 30px;
}
header.global .menu a span {
	display: block;
	height: 1px;
	width: 100%;
	background-color: #ffffff;
	margin: 0 0 6px 0;
	transition: 0.4s;
}
header.global .menu.open a span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
header.global .menu.open a span:nth-child(2) {
	opacity: 0;
}
header.global .menu.open a span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (min-width: 768px) {
	header.global .menu {
		width: 80px;
		height: 80px;
		padding: 25px;
	}
}






/*

    Contact

*/

/*  layout  */
#contact {
	position: fixed;
	left: 20px;
	bottom: 20px;
	display: flex;
}
#contact.stop {
	bottom: 50px;
}
@media screen and (min-width: 768px) {
	#contact {
		left: 50px;
		bottom: 40px;
	}
	#contact.stop {
		bottom: 110px;
	}
}

/*  button  */
#contact a {
	display: flex;
	align-items: center;
	margin-right: 15px;
	padding: 0.5em 1em;
	background: #5B99BD;
	background: linear-gradient(90deg,rgba(91, 153, 189, 1) 0%, rgba(61, 120, 154, 1) 100%);
	color: #ffffff;
	font-family: sans-serif;
	z-index: 998;
}
#contact a img {
	width: 16px;
	margin-right: 0.5em;
}





/*

    Footer

*/

/*  layout  */
footer.global {
	padding: 10px;
	background-color: var(--main-color);
	color: #ffffff;
}
@media screen and (min-width: 768px) {
	footer.global div.container {
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		padding: 50px;
		max-width: none;
		margin: 0;
	}
	footer.global div.container {
		div.schedule {
			width: 40%;
		}
	}
}

/*  schedule  */
footer.global div.schedule {
	padding: 1em;
	background-color: #ffffff;
	border-radius: 5px;
	color: var(--main-color);
}
footer.global div.schedule table {
	width: 100%;
}
footer.global div.schedule table th,
footer.global div.schedule table td {
	border: none;
	background: none;
	text-align: center;
}
footer.global div.schedule table th {
	border-bottom: 1px #eeeeee solid;
	font-size: 2.0rem;
	font-weight: 300;
}
footer.global div.schedule table td {
	font-family: sans-serif;
}
footer.global div.schedule table tr *:first-child {
	font-family: 'Noto Serif JP', serif;
	text-align: left;
}
footer.global div.schedule table td span {
	font-size: 1.0rem;
}
footer.global div.schedule div.note {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.5em;
}
footer.global div.schedule div.note p.reservation {
	padding: 0.25em 0.75em;
	border: 1px var(--main-color) solid;
}
footer.global div.schedule div.note p.note {
	font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
	footer.global div.schedule {
		padding: 1.5em 2em 2em;
	}
}

/*  about  */
footer.global p.about {
	margin: 2.5em 0 2em;
	padding-bottom: 40px;
	line-height: 1.75;
}
footer.global p.about img {
	display: inline-block;
	width: 210px;
}
@media screen and (min-width: 768px) {
	footer.global p.about {
		margin: 0;
	}
	footer.global p.about img {
		width: auto;
		height: 45px;
		margin-bottom: 0.5em;
	}
}

/*  small  */
footer.global small {
	display: block;
	margin: 0 -10px -10px;
	padding: 0.75em;
	background-color: #ffffff;
	color: #666666;
	text-align: center;
	font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
	footer.global small {
		padding: 1.5em;
	}
}





/*

    Content

*/

/*  #c_head  */
#content #c_head {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 60px 0 0 0;
	background-image: url('./images/c_head.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-sizing: border-box;
}
#content #c_head h1 {
	margin: 1.5em 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 4.0rem;
	font-weight: 300;
	color: #ffffff;
	text-align: center;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.75);
}
@media screen and (min-width: 768px) {
	#content #c_head {
		padding: 80px 0 0 0;
	}
	#content #c_head h1 {
		margin: 4em 0;
	}
}

/*  #c_breadcrumbs  */
#content #c_breadcrumbs {
	border-bottom: 1px solid #eeeeee;
}
#content #c_breadcrumbs .container ol {
	display: flex;
	align-items: center;
	list-style: none;
	width: 100%;
	margin: 0.5em 0;
	white-space:nowrap;
	overflow-x: auto;
}
#content #c_breadcrumbs .container ol li {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	margin: 0;
}
#content #c_breadcrumbs .container ol li + li:before {
	content: ">";
	display: block;
	margin: 0 1em;
}
#content #c_breadcrumbs .container ol li a {
	font-size: 1.3rem;
	color: inherit;
}

/*  #c_content  */
#content #c_content {
}

/*  #c_main  */
#content #c_content #c_main {
	padding: 55px 0;
	box-sizing: border-box;
}




/*

    Gutenberg

*/

/*  columns  */

@media screen and (min-width: 768px) {
	.wp-block-columns {
		margin-bottom: 55px;
	}
	.wp-block-columns .wp-block-column:first-of-type {
		margin-right: 55px;
	}
	.wp-block-columns .wp-block-column > *:first-child {
		margin-top: 0;
	}
}

/*  heading  */
h2.wp-block-heading {
	margin: 1em 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 3.0rem;
	color: var(--main-color);
}
h2.wp-block-heading + p {
	margin: -1em 0 1em 0;
	border-bottom: 1px solid #eeeeee;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 3.0rem;
	color: #eeeeee;
	text-align: right;
	line-height: 1;
}
h3.wp-block-heading {
	margin: 2em 0 1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2.5rem;
	color: var(--main-color);
}

/*  list  */
ul.wp-block-list {
	list-style: none;
}
ul.wp-block-list li {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0 0 0 2em;
	box-sizing: border-box;
}
ul.wp-block-list li:before {
	position: absolute;
	left: 0;
	content: "●";
	color: var(--main-color);
}
ul.wp-block-list.check li:before {
	position: absolute;
	left: 0;
	content: "";
	display: block;
	width: 1em;
	height: 0.5em;
	border-left: 2px solid var(--main-color);
	border-bottom: 2px solid var(--main-color);
	transform: rotate(-45deg);
}

/*  button  */
.wp-block-buttons a {
	margin: 1em 0;
	border-radius: 0;
	background: linear-gradient(90deg,rgba(91, 153, 189, 1) 0%, rgba(61, 120, 154, 1) 100%);
	color: #ffffff;
}
.wp-block-buttons .ghost a {
	border: 1px solid var(--main-color);
	background: none;
	background-color: transparent;
	color: var(--main-color);
}

/*  table  */
.wp-block-table table thead {
	border: none;
}
.wp-block-table table thead tr th {
	border: 1px solid #eeeeee;
	background-color: var(--main-color);
	color: #ffffff;
}
.wp-block-table table tbody tr td {
	border: 1px solid #eeeeee;
}
.wp-block-table.line table tbody tr {
	border-top: 1px solid var(--main-color);
}
.wp-block-table.line table tbody tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.wp-block-table.line table tbody tr td {
	border: none;
}

/*  .timetable  */
.timetable table tbody tr td em {
	font-style: normal;
	font-size: 1.0rem;
}






/*

    Parts

*/
/*  heading  */
#c_main h2 {
	margin: 0 0 1em 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 3.0rem;
	color: var(--main-color);
}
#c_main h2:first-of-type {
	margin-top: 0;
}
#c_main h3 {
	margin: 2em 0 1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2.5rem;
	color: var(--main-color);
}

/*  a.btn  */
a.btn {
	background: linear-gradient(90deg,rgba(91, 153, 189, 1) 0%, rgba(61, 120, 154, 1) 100%);
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	color: #ffffff;
	text-align: center;
	box-sizing: border-box;
}
a.btn.ghost {
	border: 1px solid var(--main-color);
	background: none;
	background-color: transparent;
	color: var(--main-color);
}
a.btn.s {
	display: inline-block;
	margin: 1em 0;
	padding: 0.25em 0.5em;
	font-size: 1.5rem;
}
a.btn.m {
	display: block;
	margin: 2em auto;
	max-width: 250px;
	padding: 1em 0;
	font-size: 1.5rem;
}
a.btn.l {
	display: block;
	margin: 2em auto;
	width: 100%;
	padding: 1em 0;
	font-size: 2.0rem;
}

/*  ul.line  */
ul.line {
	list-style: none;
	margin: 2em 0;
}
ul.line li {
	margin: 0;
	padding: 1em 0;
	box-sizing: border-box;
}
ul.line li a {
	display: flex;
	align-items: center;
	color: inherit;
}
ul.line li a time {
	flex-shrink: 0;
	margin: 0 3em 0 0;
}

/*  ul.tab  */
ul.tab {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
}
ul.tab li {
	margin: 0 7.5px;
}
ul.tab li a {
	display: block;
	padding: 0.5em 2em;
	background-color: rgba(255,255,255,0.2);
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2.0rem;
	color: #ffffff;
	opacity: 1;
	cursor: pointer;
	box-sizing: border-box;
}
ul.tab li a.current {
	background-color: #ffffff;
	color: var(--main-color);
}
@media screen and (min-width: 768px) {
	ul.tab li a {
		padding: 0.5em 3.5em;
	}
}

/*  ul.types  */
ul.types {
	list-style: none;
	margin: 0;
}
ul.types li.type {
	margin: 0;
	padding: 20px;
	border-radius: 5px;
	background-color: #ffffff;
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	ul.types li.type {
		padding: 40px;
	}
}

/*  ul.cases  */
ul.cases {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
}
ul.cases li.case {
	margin: 0;
	width: 90px;
}
ul.cases li.case a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}
ul.cases li.case a img {
	width: 90px;
	height: auto;
}
ul.cases li.case a span.title {
	display: block;
	width: 100%;
	margin: 1em 0;
	font-family: 'Noto Serif JP', serif;
	color: #333333;
	text-align: center;
}
@media screen and (min-width: 768px) {
	ul.cases li.case {
		width: 180px;
	}
}

/*  ul.index  */
ul.index {
	list-style: none;
	padding: 2em;
	border-radius: 5px;
	background-color: var(--bg-color);
	box-sizing: border-box;
}
ul.index li {
	display: inline-block;
	margin: 0 1em 0 0;
}
ul.index li a {
	text-decoration: underline;
}

/*  slider  */
.slider {
	position: relative;
}
.slider .frame {
	overflow: hidden;
}
.slider .frame ul {
	list-style: none;
	margin: 0;
	letter-spacing: 0;
	overflow: auto; /* auto以外はsliderが止まる */
	white-space: nowrap;
	scrollbar-width: none;
}
.slider .frame ul::-webkit-scrollbar {
	display: none;
}
.slider .frame ul li {
	display: inline-block !important;
	margin: 0;
	letter-spacing: 0;
	white-space: normal;
	vertical-align: top;
}
.slider nav {
	display: flex;
	align-items: center;
}
.slider nav a {
	display: block;
	margin: 1em;
	font-size: 2.5rem;
	color: var(--main-color);
	cursor: pointer;
}
.slider nav a.prev:before {
	content: "←";
}
.slider nav a.next:before {
	content: "→";
}

/*  emphasis  */
p.emphasis {
	padding: 2em;
	border-radius: 5px;
	background: linear-gradient(90deg,rgba(91, 153, 189, 1) 0%, rgba(61, 120, 154, 1) 100%);
	box-sizing: border-box;
}
p.emphasis.ghost {
	border: 1px solid var(--main-color);
	background: none;
}

/*  .note  */
p.note {
	padding: 1em;
	border-radius: 5px;
	background-color: var(--bg-color);
	box-sizing: border-box;
}

/*  .columns  */
@media screen and (min-width: 768px) {
	.columns {
		display: flex;
		width: 100%;
	}
	.columns .column {
		box-sizing: border-box;
	}
	.columns .column:nth-of-type(1) {
		width: 33.33%;
	}
	.columns .column:nth-of-type(2) {
		width: 66.66%;
		padding-left: 55px;
	}
	.columns .column > *:first-child {
		margin-top: 0;
	}
}






/*

    Page

*/
/*  consultation  */
body.consultation.archive #c_content {
	background-color: var(--main-color);
}





/*

    Toppage

*/

/*

    Common

*/

/*  section  */
#toppage section {
	overflow: hidden;
}
#toppage section h2 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 3.0rem;
	color: var(--main-color);
}






/*

    MV

*/

/*  layout  */
#toppage #mv {
	display: flex;
	align-items: flex-end;
	height: calc(50vh + 40px);
	margin: 0;
	padding: 20px;
	padding-top: calc(60px + 40px);
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: cover !important;
	color: #ffffff;
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
#toppage #mv h2 {
	font-size: 2.8rem;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 0 0 3px rgba(0,0,0,0.2);
}
#toppage #mv p {
	margin: 1.5em 0;
	font-size: 2.2rem;
	line-height: 1.75;
	text-shadow: 0 0 3px rgba(0,0,0,0.2);
}
#toppage #mv p.sub {
	margin: 0;
	font-size: 1.6rem;
}
#toppage #mv ul {
	display: flex;
	justify-content: center;
	margin: 0;
	border-top: 1px rgba(255,255,255,0.5) solid;
	border-bottom: 1px rgba(255,255,255,0.5) solid;
	border-right: 1px rgba(255,255,255,0.5) solid;
}
#toppage #mv ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 1em;
	list-style: none;
	border-left: 1px rgba(255,255,255,0.5) solid;
	text-align: center;
	text-shadow: 0 0 3px rgba(0,0,0,0.2);
}
@media screen and (min-width: 768px) {
	#toppage #mv {
		height: 100vh;
		padding: 80px 60px 60px;
	}
	#toppage #mv br.adjust {
		display: none;
	}
	#toppage #mv h2 {
		font-size: 3.0rem;
	}
	#toppage #mv p {
		margin: 2em 0;
		font-size: 2.4rem;
	}
	#toppage #mv p.sub {
		font-size: 1.8rem;
	}
	#toppage #mv ul li {
		width: auto;
		padding: 1em 2em;
	}
}






/*

    Information

*/

/*  layout  */
#toppage #information {
	margin: 3em 0;
}
#toppage #information .container {
	margin: 0 0 0 35px;
}
@media screen and (min-width: 768px) {
	#toppage #information {
		margin: 0;
	}
	#toppage #information .container {
		margin: 0 0 0 100px;
		max-width: none;
	}
}

/*  .columns  */
#toppage #information .container .columns .column:nth-of-type(2) {
	border: none;
	border-top: 1px solid #eeeeee;
}
@media screen and (min-width: 768px) {
	#toppage #information .container .columns .column:nth-of-type(1) {
		padding: 60px 55px 60px 0;
		width: 190px;
	}
	#toppage #information .container .columns .column:nth-of-type(2) {
		padding: 60px 0 60px 55px;
		width: calc(100% - 190px);
		border: none;
		border-left: 1px solid #eeeeee;
	}
}

/*  h2  */
#toppage #information h2 {
	line-height: 1;
}
#toppage #information h2 + span {
	display: block;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 6.0rem;
	color: #eeeeee;
	line-height: 1;
}
@media screen and (min-width: 768px) {
	#toppage #information .container .columns .column {
		position: relative;
	}
	#toppage #information h2 + span {
		position: absolute;
		right: -7.5px;
		bottom: 0;
		writing-mode: vertical-lr;
		transform: rotate(-180deg);
	}
}

/*  .line  */
#toppage #information .container .line li a {
	font-size: 1.3rem;
}

/*  .slider  */
#toppage #information .container .slider .frame ul li {
	width: 100%;
	padding: 0 35px 0 0;
	box-sizing: border-box;
}
#toppage #information .container .slider .frame ul li a {
	display: block;
}
#toppage #information .container .slider .frame ul li a img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}
@media screen and (min-width: 500px) {
	#toppage #information .container .slider .frame ul li a {
		width: 430px;
		height: 150px;
	}
}





/*

    Greetings

*/

/*  layout  */
#toppage #greetings {
	position: relative;
	padding: 3em 0;
	background-color: var(--bg-color);
	z-index: -2;
}
@media screen and (min-width: 768px) {
	#toppage #greetings {
		margin: 0;
		padding: 30px 0 90px;
	}
}

/*  headings  */
#toppage #greetings h2 {
	text-align: center;
	color: var(--main-color);
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 3.0rem;
}
#toppage #greetings h2:after {
	content: '';
	display: block;
	width: 70px;
	margin: 0.5em auto 2em;
	border-bottom: 1px var(--main-color) solid;
}

/*  doctor  */
#toppage #greetings div.doctor {
	padding-top: 2em;
}
#toppage #greetings div.doctor img {
	display: block;
	width: 240px;
	margin: 0 auto;
	box-shadow: 15px 15px 0px 0px rgba(0, 0, 0, 0.05);
}
#toppage #greetings div.doctor div.message {
	position: relative;
	margin: 3em 0 0;
	padding: 0 1em 0 2em;
}
#toppage #greetings div.doctor div.message:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: -5%;
	width: 120%;
	height: 108%;
	background-color: #ffffff;
	z-index: -1;
}
#toppage #greetings div.doctor div.message p.name {
	font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
	#toppage #greetings div.doctor {
		display: flex;
		align-items: flex-start;
		margin-top: 90px;
	}
	#toppage #greetings div.doctor:first-of-type {
		margin-top: 60px;
	}
	#toppage #greetings div.doctor img {
		width: 320px;
	}
	#toppage #greetings div.doctor div.message {
		margin: 0;
		padding: 0 1em 0 5em;
	}
	#toppage #greetings div.doctor div.message:before {
		top: -40px;
		left: -180px;
		width: calc(100% + 210px);
		height: calc(100% + 60px);
	}
}





/*

    Consultation

*/

/*  layout  */
#toppage #consultation {
	padding: 3em 0;
	background: rgba(4,77,141,0.6) url('./images/bg.jpg');
	background-blend-mode: multiply;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
@media screen and (min-width: 768px) {
	#toppage #consultation {
		padding: 60px 0;
	}
	#toppage #consultation .container {
		max-width: 1240px;
	}
}





/*

    Attention

*/

/*  layout  */
#toppage #attention {
	margin: 3em 0;
	text-align: center;
}
#toppage #attention div.frame {
	padding: 2em;
	border: 1px var(--main-color) solid;
	border-radius: 5px;
}
@media screen and (min-width: 768px) {
	#toppage #attention {
		margin: 60px 0;
	}
	#toppage #attention div.frame {
		margin: 60px 0;
		padding: 3em 4em;
	}
}

/*  font  */
#toppage #attention h2 {
	color: var(--main-color);
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 3.0rem;
}
#toppage #attention p.sub {
	margin-top: 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2.0rem;
	color: #666666;
}
#toppage #attention p.sub strong {
	margin: 0 0.25em;
	font-size: 3.0rem;
	font-weight: 300;
	color: #666666;
}
#toppage #attention p strong {
	color: var(--main-color);
}
@media screen and (min-width: 768px) {
	#toppage #attention p {
		margin: 2em 0;
	}
}





/*

    Feature

*/

/*  layout  */
#toppage #feature {
	position: relative;
	margin: 4.5em 0;
}
@media screen and (min-width: 768px) {
	#toppage #feature {
		margin: 100px 0;
	}
}

/*  h2  */
#toppage #feature h2 {
	position: absolute;
	left: 35px;
	line-height: 1;
}
#toppage #feature h2 + span {
	position: absolute;
	top: 35px;
	left: 35px;
	display: block;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 6.0rem;
	color: #eeeeee;
	line-height: 1;
}

/*  .slider  */
#toppage #feature .slider nav {
	justify-content: flex-end;
}
#toppage #feature .slider .frame ul {
	padding: 0 0 0 35px;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	box-sizing: border-box;
}
#toppage #feature .slider .frame ul li {
	position: relative;
	width: 100%;
	padding: 35px;
	border-left: 1px solid #eeeeee;
	box-sizing: border-box;
}
#toppage #feature .slider .frame ul li span.number {
	position: absolute;
	top: 20px;
	left: 55px;
	display: block;
	font-family: "Crimson Text", serif;
	font-size: 4.0rem;
	font-weight: 700;
	color: var(--main-color);
	line-height: 1;
}
#toppage #feature .slider .frame ul li img {
	width: 100%;
	height: auto;
}
#toppage #feature .slider .frame ul li p {
	margin: 0;
}
#toppage #feature .slider .frame ul li p strong {
	display: block;
	margin: 1em 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2.0rem;
	color: var(--main-color);
}
@media screen and (min-width: 490px) {
	#toppage #feature .slider .frame ul li {
		width: 455px;
	}
}
