* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Noto Sans JP", sans-serif !important;
	line-height: 1.6;
	background-color: #fff;
	max-width: 1200px;
	margin: auto;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	color: #333;
}


.sp {
	display: none;
}
body img {
	max-width: 100%;
	vertical-align: bottom;
}

body a {
	color: #545454;
}

.clinic-header {
	background-color: #c5aa6a;
	width: 100%;
	padding: 10px 0;
	position: fixed;
	left: 0;
	z-index: 10;
	max-width: 1200px;
	right: 0;
	margin: auto;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.logo {
	margin-right: 20px;
}

.logo img {
	height: 40px;
}


.header-actions {
	display: flex;
	align-items: center;
	position: absolute;
	right: 60px;
}

.appointment-btn {
	background-color: #c14545;
	color: white;
	text-decoration: none;
	padding: 8px 15px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	margin-right: 15px;
	transition: background-color 0.3s;
	white-space: nowrap;
}

.appointment-btn:hover {
	background-color: #a83c3c;
}

.search-container {
	position: relative;
}

.search-form {
	display: flex;
	align-items: center;
}

.search-input {
	padding: 8px 30px 8px 10px;
	border: none;
	border-radius: 20px;
	width: 245px;
	font-family: inherit;
}

.search-btn {
	background: none;
	border: none;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #666;
}



.mobile-menu-btn {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	max-width: 1400px;
	margin: auto;
	background-color: #fff;
	z-index: 100;
	overflow-y: auto;
	max-width: 1200px;

}

.mobile-menu.active {
	display: block;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #ece7d9;
	background-color: #fff;
}

.mobile-menu-logo img {
	height: 30px;
}

.mobile-menu-close {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #333;
}

.mobile-menu-search {
	padding: 15px;
	display: flex;
	justify-content: center;
	background-color: #efebe3;
}

.mobile-menu-search .search-form {
	width: 100%;
	position: relative;
}

.mobile-menu-search .search-input {
	width: 100%;
	border: 1px solid #ece7d9;
	background-color: white;
}

.mobile-menu-search .search-btn {
	right: 10px;
}

.featured-menu {
	display: flex;
	flex-wrap: wrap;
	padding: 0 15px;
	border-bottom: none;
}

.featured-menu-item {
	width: 50%;
	padding: 0;
	text-align: center;
	border-bottom: 1px solid #ece7d9;
	border-right: 1px solid #ece7d9;
	border-left: 1px solid #ece7d9;
}

.featured-menu-item:nth-child(2n) {
	border-left: none;
}

.featured-menu-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	padding: 15px 10px 15px 25px;
	height: 100%;
}

.featured-menu-item i {
	color: #c5aa6a;
	font-size: 18px;
	margin-right: 8px;
	display: inline-block;
}

.mobile-menu-items {
	padding: 0 15px 0 14px;
	margin: 0;
	background-color: #fff;
	border-left: 1px solid #ece7d9;
}
.mobile-menu-items li a.mobile-menu-items_child{
	padding-left: 40px;
}
.mobile-menu-items li {
	list-style: none;
	border-bottom: 1px solid #ece7d9;
	border-left: 1px solid #ece7d9;
	border-right: 1px solid #ece7d9;
}

.mobile-menu-items li a {
	display: block;
	padding: 15px;
	text-decoration: none;
	color: #B1883A;
	font-size: 14px;
	border-bottom: none;
}

.featured-menu-item span {
	display: inline-block;
	color: #B1883A;
}

.clinic-locations {
	padding: 0 15px;
	margin: 0;
	background-color: #fff;
}

.clinic-locations li {
	list-style: none;
	border-bottom: 1px solid #ece7d9;
	border-left: 1px solid #ece7d9;
	border-right: 1px solid #ece7d9;
	display: flex;
}

.clinic-locations li a {
	display: block;
	padding: 15px;
	text-decoration: none;
	color: #B1883A;
	font-size: 14px;
	width: 50%;
	border-right: 1px solid #ece7d9;
}

.clinic-locations li a:last-child {
	border-right: none;
}

.free-consultation-btn {
	display: block;
	background-color: #c5aa6a;
	color: white;
	text-align: center;
	padding: 15px;
	margin: 20px;
	text-decoration: none;
	font-weight: bold;
}

.featured-menu-item_left {
	text-align: right;
	width: 15%;
}
.featured-menu-item a img {
	width: 18px;
	position: relative;
	top: -5px;
}
.featured-menu-item_right {
	text-align: left;
	width: 85%;
	padding-left: 1%;
}


.banner-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}

.banner-menu {
	width: 85px;
	position: fixed;
	top: 0;
	height: 100%;
}
.banner-menu_area{
	background-color: rgba(162, 142, 91,0.15);
	position: relative;
	left: 1200px;
	height: 100%;
}
.banner-menu_area span.page-top {
	font-family: "Shippori Mincho", serif;
	transform: rotate(180deg);
	font-weight: 300;
}

.menu-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px 5px;
	border-bottom: 1px solid #e5e0d5;
	text-decoration: none;
	color: #8c734a;
}

.menu-item .menu-text {
	font-size: 12px;
	line-height: 1.4;
	margin-top: 7px;
}

.page-nav {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 85px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	padding: 20px 0;
	color: #8c734a;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 2px;
	text-decoration: none;
}

.page-nav i {
	margin-bottom: 10px;
	font-size: 16px;
}


footer {
	background-image: url(../images/bg.png);
	background-size: cover;
	background-position: center;
	padding: 30px 0;
	text-align: center;
	color: #fff;
}
.footer__box {
    color: #7E5F41;
    font-size: 11px;
    font-weight: 400;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Default CSS */
.wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}
.mainimg {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.mainimg:before {
	content: "";
	display: block;
	padding-top: 65%;
}
.mainimg img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
	transition:all 0.5s ease
}
a:hover .mainimg img {
	transform: translate(-50%, -50%) scale(1.1);
}

.hero__image img {
	width: 100%;
	height: auto;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex_2culm {
	width: 49%;
	margin-right: 2%;
}
.flex_2culm:nth-child(2n) {
	margin-right: 0%;
}
.flex_3culm {
	width: 32%;
	margin-right: 2%;
}
.flex_3culm_sp4:nth-child(4) {
	display: none;
}
.flex_3culm:nth-child(3n) {
	margin-right: 0%;
}
.flex_3culm_nopadding {
	margin: 0;
	width: 33.333%;
}
.flex_4culm {
	width: 23.5%;
	margin-right: 2%;
}
.flex_4culm:nth-child(4n) {
	margin-right: 0%;
}
.al_center {
	align-items: center;
}
.catch {
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	line-height: 1.8;
	text-align: center;
	font-weight: 500;
	color: #4d5156;
}
.obi__ttl {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	line-height: 1.8;
	text-align: center;
	font-weight: 500;
	padding: 2em;
	background: hsl(0deg 0% 100% / 70%);
	border-top: solid 1px #B1883A;
	border-bottom: solid 1px #B1883A;
	color: #4d5156;
}
.obi__ttl strong {
	font-size: 27px;
	font-weight: 500;
	margin-top: 0.3em;
	display: block;
}
.obi__ttl strong:first-child {
	margin-top: 0;
}
.lead {
	font-size: 18px;
	font-weight: 350;
	line-height: 1.8;
}
.lead strong {
	font-weight: 500;
}
.cta {
	text-align: center;
	margin-bottom: 1em;
}
.note {
	font-size: 10px;
	color: #777777;
}
.redtext {
    color: #D09995;
}
.center {
	text-align: center;
}
.sp_only {
	display: none;
}

/* INCLULE */
.page__recommend {
	background: #fff;
	padding: 0px 0 40px;
}
.page__recommend--cards {
	gap: 2%;
}
.recommend-card {
	width: 23.5%;
	text-align: center;
	padding: 30px 1em;
	border: 1px solid #7E5F41;
	border-radius: 10px;
}
.recommend-card__title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0.5em;
}
.recommend-card__desc {
	font-size: 13px;
	margin-bottom: 15px;
	font-weight: 400;
}
.recommend-card__btn a {
	background: #B08A44;
	color: #fff;
	font-size: 13px;
	display: inline-block;
	text-decoration: unset;
	padding: 0.2em 3em;
	border-radius: 5px;
}
.page__recommend--notes {
	font-size: 12px;
	color: #7E5F41;
	margin-top: 20px;
}
.page__recommend--notes a {
    color: #7E5F41;
}
.page_clinics {
	padding: 80px 0 0;
}
.page_clinics__ttl {
	font-size: 32px;
	font-weight: 500;
	font-family: "Shippori Mincho B1", serif;
	color: #7E5F41;
}
.page_clinics__logo {
	margin: 5px 0 20px;
}
.page_clinics__logo img {
	height: 45px;
}
.page_clinics__area-list {
	max-width: 860px;
	font-size: 17px;
	font-weight: 400;
	color: #7E5F41;
	margin-bottom: 50px;
}
.page_clinics__block {
	background: #fff;
	margin-bottom: 50px;
	padding: 50px 0;
}
.page_clinics__block--ttl {
	margin: 0 auto;
	width: fit-content;
	min-width: 20em;
	text-align: center;
	background-image: radial-gradient(#D1BB85 10%, #B69357);
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	padding: 0.3em 0;
	border-radius: 3em;
	margin-bottom: 2em;
}
.page_clinics__block--columns {
	max-width: 650px;
	justify-content: space-between;
}
.page_clinics__list {
	font-size: 15px;
	font-weight: 300;
	color: #7E5F41;
	line-height: 1.8;
}
.page_clinics__list a {
	color: #7E5F41;
}
.page_clinics__list p {
	margin-bottom: 25px;
}
.page_clinics__list p:last-child {
	margin-bottom: 0px;
}
.page_clinics__list--tel {
	text-decoration: unset;
}
.page_clinics__block--partner_ttl {
	font-weight: 300;
	font-size: 15px;
	margin-bottom: 0.5em;
	display: flex;
	align-items: center;
}
.page_clinics__block--partner_ttl:after {
	content: "";
	width: calc(100% - 5em);
	height: 1px;
	background: #7E5F41;
	margin-left: 1em;
}
.page_ft_menu__inner {
	max-width: 650px;
	margin-bottom: 50px;
}
.page_ft_menu__columns {
	gap: 40px;
	justify-content: space-between;
}
.page_ft_menu__list {
	list-style: none;
	padding-left: 0;
	line-height: 2;
}
.page_ft_menu__list a {
	font-size: 15px;
	font-weight: 300;
	color: #7E5F41;
	text-decoration: unset;
	position: relative;
}
.page_ft_menu__list a:after {
	content: "";
	width: calc(100% - 1em);
	height: 1px;
	background: #7E5F41;
	position: absolute;
	bottom: -1px;
	left: 1.2em;
}
.page_ft_menu__sub {
	padding-left: 1em;
}

/* 固定ページ */
main#content {
	margin-top: 60px;
}
.page__content {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 2rem 1rem;
	max-width: 930px;
	line-height: 2.4;
	font-size: 0.9rem;
	color: #333;
}
.page__content h1,
.page__content h2,
.page__content h3,
.page__content h4,
.page__content h5,
.page__content h6 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	line-height: 1.4;
	font-weight: 600;
}
.page__content h1 { font-size: 2rem; }
.page__content h2 { font-size: 1.75rem; }
.page__content h3 { font-size: 1.5rem; }
.page__content h4 { font-size: 1.25rem; }
.page__content h5 { font-size: 1rem; }
.page__content h6 { font-size: 0.875rem; }
.page__content p {
	margin-bottom: 1.5rem;
}
.page__content ul,
.page__content ol {
	margin: 1.5rem 0 1.5rem 1.5rem;
	padding-left: 1rem;
}
.page__content ul li,
.page__content ol li {
	margin-bottom: 0.5rem;
}
.page__content a {
	color: #0066cc;
	text-decoration: underline;
}
.page__content a:hover {
	text-decoration: none;
}
.page__content blockquote {
	border-left: 4px solid #ccc;
	margin: 1.5rem 0;
	padding-left: 1rem;
	color: #555;
	font-style: italic;
}
.page__content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 1rem 0;
}
.page__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}
.page__content table th,
.page__content table td {
	border: 1px solid #ddd;
	padding: 0.75rem;
	text-align: left;
}
.page__content table th {
	background-color: #f5f5f5;
	font-weight: bold;
}
.page__content figure {
	margin: 2rem 0;
}
.page__content figcaption {
	font-size: 0.875rem;
	color: #666;
	text-align: center;
	margin-top: 0.5rem;
}
.two_col_content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 70px;
}
.page__content img[class*="align"], .page__content img[class*="wp-image-"], .page__content img[class*="attachment-"], .page__content img.size-full, .page__content img.size-large, .page__content .wp-post-image, .page__content img {
	height: auto;
	max-width: 100%;
	margin: 0 auto;
}
.post_content *:first-child {
	margin-top: 0;
}
.two_col_content > .item {
	width: calc(50% - 30px);
}
.two_col_content .item img {
	margin: 0 auto;
	display: block;
}
.post_content *:last-child {
	margin-bottom: 0;
}
.q_frame {
	line-height: 1.8;
	position: relative;
	padding: 1.3em 1em;
	margin-bottom: 2em;
	border: 1px solid #ddd;
}
.q_frame1 {
	background: #ffffff;
	border-radius: 10px;
	border-width: 2px;
	border-color: #dddddd;
	border-style: solid;
}
.two_column_content .post_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 !important;
}
.two_column_content .post_list > .item {
	width: calc(50% - 30px);
	margin: 0 0 70px 0;
}
.two_column_content .post_list > .item:nth-last-of-type(2) {
	margin-bottom: 0px;
}
.two_column_content {
	padding: 115px 0 110px;
	position: relative;
	margin: 120px 0;
}
.two_column_content:after {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	background: #f4f1ef;
	position: absolute;
	top: 0;
	/* left: -50%; */
	z-index: -1;
	width: 1200px;
	margin-left: calc(50% - 600px);
}
.q_custom_button {
	max-width: 100%;
	line-height: 1.5;
	padding: 0 1.5em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
	-ms-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 16px;
	z-index: 1;
	color: #fff;
	border-width: 1px;
	border-style: solid;
	text-decoration: none;
	transition: border-color 0.3s ease;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.q_custom_button2 {
	width: 280px;
	height: 60px;
	line-height: 60px;
	border-radius: 0px;
	color: #fff !important;
	background-color: #937960;
	border: none;
}
.dd_modal a {
    font-size: 12px;
    text-align: center;
    display: block;
    color: #D09995;
    text-decoration: unset;
    margin-top: 0.5em;
    padding: 0 1em;
}
.dd_modal__content {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}
.dd_modal__content.is-active {
    display: flex;
}
.dd_modal__content > div {
    background: #fff;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    max-height: 80vh;
    border: solid 1px #AC8C4C;
    color: #333;
    text-align: left;
}
.dd_modal__content p:first-child {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1em;
    text-align: center;
}
.dd_modal__content a {
    color: #0077cc;
    text-decoration: underline;
    word-break: break-all;
    color: #333;
}
.dd_case__modal {
    margin-top: -3em;
}
.dd_case__modal .dd_modal a {
    text-align: right;
}
.treatment-section .dd_modal {
    margin-bottom: 60px;
}
.news-section .dd_modal {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
 .clinic-header{
        padding: 0;
    }
    .logo img{
        top: 1px;
        position: relative;
    }

    .logo {
        margin-right: 0;
    }

    .search-container {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .header-actions {
		order: 2;
	}
	.dd_case__modal {
		margin-top: 0em;
	}
	.dd_case__modal .dd_modal a {
		text-align: left;
	}
	.dd_modal a {
		font-size: 10px;
	}
}