html {
	font-size: 62.5%;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
}

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

ul,
li {
	padding: 0;
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

address {
	font-style: normal;
}

.is-pc {
	display: inline-block;
}
@media screen and (max-width: 767px) {
.is-pc {
	display: none;
}
}

.is-sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.is-sp {
		display: inline-block;
	}
}


/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
}

html,
body {
	height: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

#root,
#__next {
	isolation: isolate;
}

.l-inner {
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

.l-section {
	margin-bottom: 100px;
}

.c-util-button {
	background-color: #F4B1B0;
	border-radius: 21px;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 12.5px 0;
	margin-bottom: 10px;
	position: relative;
	text-align: center;
	transition: all 0.3s ease 0s;
	width: 221px;
}

.c-util-button:hover {
	opacity: 0.6;
}

.c-util-button::after {
	background-image: url(../img/ei_arrow-up.png);
	background-size: cover;
	content: "";
	height: 35px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
}

.c-section-title {
	border-left: 10px solid #F4B1B0;
	font-family: "ryo-text-plusn", serif;
	font-size: 4rem;
	font-weight: 500;
	padding-left: 10px;
}

.p-header {
	background: rgba(255, 255, 255, 0.93);
	padding: 5px;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
}

.p-header__inner {
	align-items: center;
	display: flex;
	height: 100px;
	justify-content: space-between;
}

.p-header__list {
	align-items: center;
	display: flex;
	gap: 24px;
}

.p-header__list-item-link {
	display: block;
	font-size: 1.4rem;
	padding: 20px 0;
	transition: all 0.3s ease 0s;
}

.p-header__list-item-link:hover {
	opacity: 0.6;
}

.p-header__right {
	display: flex;
}

.p-header__address {
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.p-header__time {
	font-size: 1.2rem;
}

.p-header__right-left {
	margin: 0 20px;
	font-family: "ryo-text-plusn", serif;
	font-weight: 500;
}
.p-header__reaerve {
	display: inline;
	border: 2px solid #000;
	padding: 5px;
	margin: 10px 10px 15px 10px;
}
.p-header__tell {
	font-size: 1.8rem;
	font-weight: 700;
	padding-left: 20px;
	position: relative;
}

.p-header__tell::before {
	background-image: url(../img/Vector.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.drawer-icon {
	display: none;
	position: fixed;
	right: 16px;
	top: 20px;
	transition: transform 0.5s ease 0s;
	z-index: 300;
}

.drawer-icon.is-active {
	transform: translateX(-200px);
}

.drawer-icon.is-active .drawer-icon__bar1 {
	top: 8px;
	transform: rotate(-45deg);
}

.drawer-icon.is-active .drawer-icon__bar2 {
	display: none;
}

.drawer-icon.is-active .drawer-icon__bar3 {
	top: 8px;
	transform: rotate(45deg);
}

.drawer-icon__bars {
	background: #fff;
	display: block;
	height: 51px;
	position: relative;
	width: 41px;
}

.drawer-icon__bars.is-active {
	background: none;
	left: 170px;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
	background: #000000;
	height: 1px;
	left: 10px;
	position: absolute;
	width: 20px;
}

.drawer-icon__text {
	bottom: 0;
	font-family: "ryo-text-plusn", serif;
	font-size: 10px;
	left: 50%;
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
}

.drawer-icon__text.is-active {
	display: none;
}

.drawer-icon__bar1 {
	top: 12px;
}

.drawer-icon__bar2 {
	top: 20px;
}

.drawer-icon__bar3 {
	top: 28px;
}

.drawer-content {
	background: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
	font-family: "ryo-text-plusn", serif;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(105%);
	transition: transform 0.5s ease 0s;
	width: 100%;
	z-index: 299;
}

.drawer-content.is-active {
	transform: translateX(0);
}

.drawer-content__item {
	border-bottom: 1px dotted #D9D9D9;
	margin: 0 20px;
}

.drawer-content__item a {
	color: #000000;
	display: block;
	font-size: 1.8rem;
	padding: 20px 0 15px 0;
	position: relative;
	text-align: center;
	text-decoration: none;
}

.drawer-content__item a::after {
	content: "";
	height: 8px;
	position: absolute;
	right: 21px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
}

.drawer-background {
	background: rgba(0, 0, 0, 0.8);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 298;
}

.drawer-background.is-active {
	display: block;
}

.drawer__item-title {
	background: #F4B1B0;
	font-size: 1.8rem;
	height: 61px;
	line-height: 61px;
	text-align: center;
}

.p-fv__img {
	height: 100vh;
	position: relative;
	width: 100%;
	z-index: 1;
}

.p-fv__img img {
	height: 100vh;
	position: relative;
	width: 100%;
	object-fit: cover;
	z-index: 1;
}

.p-fv__textarea {
	background: rgba(255, 255, 255, 0.95);
	height: auto;
	left: 13.8888888889%;
	max-width: 594px;
	padding: 43px 30px 43px 60px;
	position: absolute;
	top: 150px;
	width: 40.4722222222%;
	z-index: 2;
	border: 4px solid #000;
}

.p-fv__display {
	display: flex;
}

.p-fv__button {
	text-align: center;
	margin: 5px 0 0 10px;
}

.p-fv__access {
	border-left: solid 14px #F4B1B0;
	display: inline-block;
	font-size: 2.8rem;
	font-weight: bold;
	margin-bottom: 10px;
	padding-left: 10px;
	text-align: left;
}

.p-fv__text-large {
	font-size: 3.8rem;
	color: #fa5350;
}

.p-fv__clinic-name {
	font-family: "ryo-text-plusn", serif;
	font-size: 3.6rem;
	font-weight: 200;
	font-weight: 500;
	margin-bottom: 10px;
}

.p-fv__text {
	font-family: "ryo-text-plusn", serif;
	margin-bottom: 10px;
}

.p-fv__text span {
	display: inline-block;
	padding: 5px;
	margin-bottom: 10px;
	border: 2px solid #000;
}

.p-guidance {
	padding-top: 100px;
}

.p-guidance__wrapper {
	display: flex;
	gap: 48px;
}

.guidance__img {
	-o-object-fit: cover;
	height: 128px;
	margin-bottom: 85px;
	max-width: 100%;
	object-fit: cover;
	width: 528px;
}

.p-guidance__head {
	margin-bottom: 63px;
}

.p-guidance__flex {
	display: flex;
	gap: 83px;
	margin-bottom: 27px;
}

.p-guidance__tell-text {
	font-family: "ryo-text-plusn", serif;
}

.p-guidance__address {
	font-family: "ryo-text-plusn", serif;
}

.p-guidance__address-ttl {
	border-bottom: 1px solid #000000;
	font-family: "ryo-text-plusn", serif;
	font-size: 1.8rem;
	margin-bottom: 15px;
	padding-bottom: 10px;
}

.p-guidance__address-flex {
	display: flex;
}

.p-guidance__address {
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.p-guidance__address__text {
	font-size: 1.6rem;
}

.p-guidance__tell {
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	margin-left: 20px;
}

.p-guidance__tell-icon {
	position: relative;
}

.p-guidance__tell-icon::before {
	background-image: url(../img/Vector.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.p-guidance__map-text {
	font-family: "ryo-text-plusn", serif;
	font-size: 1.6rem;
}

.bg-1 {
	background-image: url(../img/sakura.bg.png);
	background-position: left;
	background-repeat: no-repeat;
}

.p-guidance__map {
	overflow: hidden;
	padding-top: 78.3715012723%;
	position: relative;
	width: 100%;
}

.p-guidance__map > iframe {
	border: none;
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-guidance__right {
	width: 191.2045889101%;
}

.p-guidance__left {
	width: 2.5445292621 100%;
}

.p-about__head {
	margin-bottom: 40px;
}

.p-about__display {
	display: flex;
}

.p-about__display img {
	width: 300px;
	height: auto;
}

.p-about__textarea {
	font-family: "ryo-text-plusn", serif;
	font-size: 1.6rem;
	line-height: 1.8125;
	margin-left: 30px;
	width: 432px;
}

.p-about__name {
	font-size: 24px;
	font-weight: bold;
}

.p-menu {
	padding: 100px 0 0;
}

.p-menu__head {
	margin-bottom: 59px;
}

.p-menu__list {
	background: #FFFFFF;
	border-radius: 28px;
	display: grid;
	gap: 77px;
	grid-template-columns: repeat(3, 1fr);
	padding: 50px 80px;
	width: 804px;
}

.p-menu__list-item {
	border: 1px solid #000000;
	text-align: center;
}

/* モーダル */
.p-menu__list-item .md-btn {
	padding: 20px 10px 10px;
	width: 100%;
	height: 100%;
	display: block;
}

.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index: 9999;
}

.md-contents{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 75%;
  height: auto;
  overflow: hidden;
  transform: translate(-50%,-50%);
  z-index: 10000;
}
@media screen and (max-width: 767px) {
	.md-contents{
		width: 95%;
	}
}


.md-inner{
  padding: 24px 40px;
  background: #fff;
  height: auto;
	border: 5px solid #000;
}

.md-inner p {
	font-size: 28px;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.md-inner p {
		font-size: 26px;
	}
}

.md-inner ul {
	border-left: 8px solid #F4B1B0;
}

.md-inner li {
	padding-left: 14px;
	line-height: 1.5;
	font-size: 26px;
}
@media screen and (max-width: 767px) {
	.md-inner li {
		font-size: 18px;
	}
}

.md-xmark{
  position: absolute;
  top: 14px;
  right: 20px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}

.md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
}

.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}


.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-10px) rotate(45deg);
}
/* モーダルここまで */

.p-menu__list-item-ttl {
	font-family: "ryo-text-plusn", serif;
	font-size: 1.8rem;
}

.p-menu__list-item-img {
	height: 80px;
	margin: 0 auto;
	width: 80px;
}

.p-menu-bg {
	background-image: url(../img/bg.png);
	background-position: right;
	background-repeat: no-repeat;
	background-size: 50%;
	padding-bottom: 88px;
}

.bg-2 {
	background-image: url(../img/sakura.bg2.png);
	padding-top: 123px;
}

.p-contact__wrapper {
	background-color: #FFFFFF;
	padding: 50px 80px;
}

.contact-form-row {
	display: flex;
}

.contact-form-row + .contact-form-row {
	margin-top: 76px;
}

.p-contact__title {
	font-family: "ryo-text-plusn", serif;
	font-size: 2rem;
}

table {
	width: 100%;
}

.contact__text {
	font-family: "ryo-text-plusn", serif;
	font-size: 1.5rem;
	margin-bottom: 55px;
}

.p-contact-form {
	font-family: "ryo-text-plusn", serif;
}

.contact-form-label {
	font-size: 1.5rem;
	width: 226px;
}

.contact-form-input {
	width: calc(100% - 186px);
}

[type=text] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #F0F0F0;
	border: none;
	border-radius: 0;
	box-shadow: none;
	color: #000000;
	font-family: inherit;
	font-size: 14px;
	height: 64px;
	padding: 21px 19px;
	width: 100%;
}

[type=text]::-moz-placeholder {
	color: rgba(51, 51, 51, 0.5);
}

[type=text]::placeholder {
	color: rgba(51, 51, 51, 0.5);
}

[type=email] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #F0F0F0;
	border: none;
	border-radius: 0;
	box-shadow: none;
	color: #000000;
	font-family: inherit;
	font-size: 14px;
	height: 64px;
	padding: 21px 19px;
	width: 100%;
}

[type=email]::-moz-placeholder {
	color: rgba(51, 51, 51, 0.5);
}

[type=email]::placeholder {
	color: rgba(51, 51, 51, 0.5);
}

textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #F0F0F0;
	border: none;
	border-radius: 0;
	box-shadow: none;
	color: #000000;
	font-family: inherit;
	font-size: 14px;
	height: 180px;
	padding: 21px 19px;
	resize: none;
	width: 100%;
}

textarea::-moz-placeholder {
	color: rgba(51, 51, 51, 0.5);
}

textarea::placeholder {
	color: rgba(51, 51, 51, 0.5);
}

input:focus {
	outline: 1px solid #F4B1B0;
}

textarea:focus {
	outline: 1px solid #F4B1B0;
}

[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #F4B1B0;
	border: none;
	color: #000000;
	font-family: inherit;
	font-size: 2rem;
	font-weight: 700;
	font-weight: 500;
	padding: 11px 0;
	transition: all 0.3s ease 0s;
	width: 250px;
}

[type=submit]:hover {
	opacity: 0.6;
}

.p-contact__button {
	margin-top: 61px;
	text-align: center;
}

.is-required {
	padding-right: 56px;
	position: relative;
}

.is-required::after {
	border: 1px solid #F4B1B0;
	content: "必須";
	font-size: 1.5rem;
	height: 30px;
	line-height: 30px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
}

.p-footer {
	font-family: "ryo-text-plusn", serif;
	font-size: 1.5rem;
	line-height: 2;
	padding: 161px 0 36px 0;
	text-align: center;
}

.p-footer__list {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 20px;
}

.p-footer__list-item-link {
	display: inline-block;
	transition: all 0.3s ease 0s;
}

.p-footer__list-item-link:hover {
	opacity: 0.6;
}

.p-footer__tell {
	display: inline-block;
	margin-bottom: 20px;
}

html {
	scroll-behavior: smooth;
}

.p-page-top {
	bottom: 51px;
	height: 72px;
	position: fixed;
	right: 100px;
	width: 74px;
	z-index: 2;
}

.p-page-top__text {
	display: block;
}

.p-pege-top__img {
	height: 40px;
	margin: 0 auto;
	width: 40px;
}

.p-page-top__text {
	font-family: "ryo-text-plusn", serif;
	font-size: 1.5rem;
	text-align: center;
}

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

.l-inner {
	padding: 0 4%;
}

.c-section-title {
	font-size: 3rem;
}

.p-header {
	display: none;
}

.drawer-icon {
	display: block;
}

.p-fv__textarea {
	left: 50%;
	top: 190px;
	transform: translateX(-50%);
	width: 60%;
}

.p-guidance {
	padding-top: 10vh;
}

.p-guidance__wrapper {
	flex-direction: column;
}

.p-guidance__flex {
	flex-direction: column;
	gap: 20px;
}

.p-guidance__right {
	width: 100%;
}

.p-guidance__left {
	width: 100%;
}

.p-guidance__calender {
	display: flex;
	justify-content: center;
	margin: 50px auto;
}

.p-menu__list {
	width: 100%;
}

.p-menu__list-item {
	height: 150px;
}

.p-menu-bg {
	background-image: none;
	padding-bottom: 0px;
}

}

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

.l-section {
	margin-bottom: 40px;
}

.c-util-button {
	width: 296px;
}

.c-section-title {
	font-size: 2.4rem;
}

.p-header {
	display: none;
}

.p-fv__display {
	display: block;
}

.p-fv__textarea {
	padding: 30px 20px;
	top: unset;
	bottom: 30px;
	width: 90%;
}

.p-fv__button {
	margin: 0 auto 0 0;
	width: 296px;
	text-align: left;
}

.p-fv__access {
	font-size: 1.6rem;
}

.p-fv__text-large {
	font-size: 2.6rem;
}

.p-fv__clinic-name {
	font-size: 2.4rem;
}

.p-fv__text {
	font-size: 1.4rem;
}

.p-guidance__wrapper {
	flex-direction: column;
}

.guidance__img {
	margin-bottom: 0;
}

.p-guidance__head {
	margin-bottom: 33px;
}

.p-guidance__flex {
	flex-direction: column;
}

.p-guidance__tell-text {
	text-align: center;
}

.p-guidance__address-ttl {
	border: none;
	font-size: 1.2rem;
	margin-bottom: 5px;
	margin-right: 35px;
	padding-bottom: 0;
}

.p-guidance__map-text {
	font-size: 1.2rem;
	margin-top: 10px;
}

.p-guidance__address {
	font-size: 1.2rem;
}

.p-guidance__address__text {
	font-size: 1.2rem;
}

.p-guidance__tell {
	text-align: center;
}

.p-guidance__map {
	padding-top: 78.4482758621%;
}

.p-guidance__telarea {
	text-align: center;
}

.p-guidance__button {
	text-align: center;
}

.p-about__display {
	display: block;
}

.p-about__display img {
	width: 100%;
}

.p-about__textarea {
	margin-left: 0;
	width: 100%;
}

.p-about__name {
	font-size: 22px;
}

.p-about__textarea {
	font-size: 1.2rem;
	margin-right: 0;
	width: 100%;
}

.p-menu {
	padding: 50px 0 0;
}

.p-menu__list {
	margin: 30px 0;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
	padding: 0;
	width: 100%;
}

.bg-2 {
	padding-top: 20px;
}

.p-contact__wrapper {
	background-color: transparent;
	padding: 4%;
}

.contact-form-row {
	flex-direction: column;
}

.contact-form-row + .contact-form-row {
	margin-top: 30px;
}

.p-contact__title {
	font-size: 2rem;
}

.contact__text {
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.contact-form-label {
	font-size: 1.6rem;
	margin-bottom: 10px;
	text-align: left;
	width: 100%;
}

.contact-form-input {
	width: 100%;
}

[type=text] {
	font-size: 1.2rem;
}

[type=email] {
	font-size: 1.2rem;
}

textarea {
	font-size: 1.2rem;
}

[type=submit] {
	font-size: 1.2rem;
}

.is-required::after {
	font-size: 1.2rem;
	height: 24px;
	line-height: 24px;
	width: 40p6;
}

.p-footer {
	font-size: 1.2rem;
	padding-top: 100px;
}

.p-footer__list {
	display: none;
}

.p-page-top {
	right: 20px;
}

.p-page-top__text {
	font-size: 1rem;
}

}

