@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    /* outline: 1px solid magenta; */
}

html {
    scroll-behavior: smooth;
}

/* 共通部分 */
.contents-area,
.footer-top,
.footer-menu {
    width: 62.5%;
    margin: 0 auto;
}

.first-content {
    margin-top: 0;
}

body {
    color: #000000;
    background-color: #ffffff;
    font-family: sans-serif;
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/*ヘッダー*/
/*PCメニュー*/
header {
    display: flex;
    width: 80%;
    height: 212px;
    margin: 24px auto 0;
}

main {
    border-top: 1px solid #4C9E7F;
}

.menu {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.libre-seitai {
    display: flex;
}

.navi1 {
    display: flex;
    justify-content: space-between;
    height: 126px;
}

.navi2 {
    padding-left: 3%;
}

.logo {
    width: 168px;
    height: 110px;
    min-width: 168px;
}

.name {
    white-space: nowrap;
    padding: 0 5%;
}

.sns {
    width: 50px;
    height: 50px;
    background-color: #2A7FBA;
    text-align: centers;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

.sns:hover {
    background-color: #6BB3E8;
}

.sns img {
    width: 66%;
    margin: 0 auto;
}

nav {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-top {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

.name {
    padding: 0 5%;
}

.name h1 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: clamp(22px, 1.875vw, 36px);
    white-space: nowrap;
    margin: 0;
}

.name p {
    font-size: clamp(12px, 0.9375vw, 18px);
    white-space: nowrap;
    margin: 0;
    text-align: center;
}

.menu-sub {
    display: flex;
    align-items: center;
    gap: 1.2vw;
    list-style: none;
    white-space: nowrap;
    height: 60px;
}

.reserve:hover {
    color: #2A7FBA;
    text-decoration: underline solid #2A7FBA;
    text-underline-offset: 3px;
}

.menu-sub li a,
.border-line {
    text-decoration: none;
    color: #000000;
}

.border-line {
    display: inline-block;
    position: relative;
}

.border-line::after {
    background-color: #4C9E7F;
    bottom: 30px;
    content: "";
    height: 2px;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
}

.border-line:hover::after {
    bottom: 24px;
    opacity: 1;
}

.dropdown-menu {
    display: flex;
    flex-direction: column;
    position: relative;
}

.drop-menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    position: absolute;
    top: 86px;
    z-index: 1;
    opacity: 0;
    border: 1px solid #4C9E7F;
}

.drop-menu a {
    color: #000000;
    width: 100%;
    text-decoration: none;
    padding: 16px;
}

.dropdown-menu:hover .drop-menu {
    display: flex;
    opacity: 1;
    transition: all .3s;
}

.drop-menu a:hover {
    background-color: #6bb3e8;
    color: #ffffff;
}

.navi3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 86px;
}

.reserve {
    width: 144px;
    height: 36px;
    font-size: 16px;
    text-align: center;
}

.menu-bottom {
    width: 78.125%;
    height: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: center;
}

.menu-bottom li {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex: 1;
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    height: 100%;
}

.border-line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/*ハンバーガーメニュー*/
.hamburger {
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 76px;
    height: 76px;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    background-color: #2A7FBA;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

.hamburger-nav {
    display: none;
    height: 1100px;
    overflow-y: scroll;
}

.hamburger-nav ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10%;
    padding-right: 10%;
    border-bottom: 2px solid #4C9E7F;
    text-align: left;
}

.hamburger-nav ul li a,
.hamburger-nav ul li p {
    font-size: 16px;
    color: #000000;
    margin: 20px 0;
    text-decoration: none;
    width: 100%;
}

.hamburger-nav ul li:nth-child(2), 
.hamburger-nav ul li:nth-child(3),
.hamburger-nav ul li:nth-child(4),
.hamburger-nav ul li:nth-child(8),
.hamburger-nav ul li:nth-child(9),
.hamburger-nav ul li:nth-child(12),
.hamburger-nav ul li:nth-child(13),
.hamburger-nav ul li:nth-child(14),
.hamburger-nav ul li:nth-child(15),
.hamburger-nav ul li:nth-child(16) {
    border-bottom: none;
}

.more {
    padding-left: 10%;
    margin-top: 0;
}

.clinic-info div:first-child {
    display: flex;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
}

.clinic-info div img {
    width: 25%;
    max-width: 200px;
}

.clinic-name {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    font-style: normal;
    white-space: nowrap;
}

.clinic-info div:last-child {
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
    text-align: left;
}

.hamburger-nav ul li a:hover {
    color: #2A7FBA;
    text-decoration: underline solid #2A7FBA;
    text-underline-offset: 3px;
}

.hamburger-nav ul li.sns a:hover {
    text-decoration: none;
}

.hamburger-nav ul li a:hover p {
    color: #2A7FBA;
}

/*フローティングメニュー*/
.floating-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 80;
    display: none;
    flex-direction: column;
    font-family: serif;
}

.floating-buttons {
    display: flex;
    justify-content: space-around;
}

.floating-buttons .btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 0;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    font-size: 16px;
    gap: 4px;
}

.btn-phone {
    background-color: #B8BA2B;
}

.btn-phone:hover {
    background-color: #E6E86B;
}

.btn-web {
    background-color: #2A7FBA;
}

.btn-web:hover {
    background-color: #6bb3e8;
}

.btn-line {
    background-color: #2BBA4A;
}

.btn-line:hover {
    background-color: #6BE886;
}

.floating-text {
    background: #ffffff;
    text-align: center;
    font-size: 13px;
    color: #000000;
    margin: 0;
    padding: 4px 0;
    white-space: nowrap;
    z-index: 10;
}

.floating-menu .reserve-icon {
    width: 25px;
    height: 25px;
}

/*スライドショー*/
.slideshow-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 0;
    animation: fade 15s infinite;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    53% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.slide img {
    text-align: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    font-size: clamp(28px, 2.7vw, 52px);
    font-weight: bold;
    font-style: normal;
    font-family: "Zen Maru Gothic", sans-serif;
    padding: 16px;
    border-bottom: 2px solid #ffffff;
}

.slider-text2 {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    font-size: clamp(28px, 2.7vw, 52px);
    font-weight: bold;
    font-style: normal;
    font-family: "Zen Maru Gothic", sans-serif;
    padding: 16px;
    border-bottom: 2px solid #ffffff;
}

/* トップページ　*/
.contents-area {
    margin-top: 80px;
    text-align: center;
}

.contents-title h2 {
    font-size: 32px;
    white-space: nowrap;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.contents-title p {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
    white-space: nowrap;
}

.blue {
    color: #2A7FBA;
}

.green {
    color: #4C9E7F;
}

.condition {
    display: grid;
    grid-template-columns: repeat( 3, 1fr);
    gap: 56px;
    justify-items: center;
    align-items: center;
}

.condition-icon {
    width: 100%;
    height: 276px;
    justify-self: center;
    border: 1px solid #2A7FBA;
    border-radius: 20px;
}

.condition-icon:last-child {
    grid-column: 2 / 3;
}

.condition-icon a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-decoration: none;
    color: #2A7FBA;
}

.condition-icon a img {
    height: 175px;
    padding: 0 20px;
}

.black {
    filter: brightness(0) saturate(100%) invert(48%) sepia(14%) saturate(2303%) hue-rotate(162deg) brightness(89%) contrast(94%);
}

.condition-icon:hover {
    background-color: #2A7FBA;
}

.condition-icon a:hover {
    color: #ffffff;
    filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(15%) hue-rotate(88deg) brightness(103%) contrast(103%);
}

.contents-background {
    background-color: #F6F2E9;
    margin-top: 80px;
    padding-top: 36px;
    padding-bottom: 36px;
}

.number {
    font-size: 38px;
    width: 72px;
    height: 36px;
    color: #ffffff;
    text-shadow:
            2px 2px 2px #2A7FBA, -2px -2px 2px #2A7FBA,
           -2px 2px 2px #2A7FBA,  2px -2px 2px #2A7FBA,
            2px 0px 2px #2A7FBA, -2px -0px 2px #2A7FBA,
            0px 2px 2px #2A7FBA,  0px -2px 2px #2A7FBA;
    background-color: #ffffff;
    border-radius: 50% / 100% 100% 0 0;
    z-index: 5;
}

.contents-background .contents-area {
    margin-top: 0;
}

.reason {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.reason-contain1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-contain2 {
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    border-radius: 8px;
}

.reason-contain2 img {
    width: 30%;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 40px;
    border-radius: 8px;
}

.reason-contain3 {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin: 40px;
    gap: 25%;
}

.reason-contain3 h3 {
    font-size: 28px;
    padding-bottom: 40px;
    color: #2A7FBA;
    border-bottom: 1px solid #4C9E7F;
}

.reason-contain3 p {
    font-family: serif;
    font-size: 22px;
}

.reason-contain1 {
    margin-top: 32px;
}

.reason-contain1:first-child {
    margin: 0;
}

.reverse {
    flex-direction: row-reverse;
}

.reverse img {
    margin-left: 40px;
    margin-right: 0;
}

.process {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 28px;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
}

.process-bar {
    background-color: #6BB3E8;
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    margin-left: -160px;
    z-index: -10;
}

.process-contain {
    display: flex;
    align-items: center;
    width: 420px;
    gap: 32px;
}

.step-number {
    color: #ffffff;
    background-color: #6BB3E8;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    padding: 10px;
}

.more-information {
    background-color: #2A7FBA;
    font-size: 24px;
    font-weight: bold;
    width: 250px;
    margin: 0 auto;
    border-radius: 12px;
}

.more-information:hover {
    background-color: #6BB3E8;
}

.more-information a {
    color: #ffffff;
    display: block;
    padding: 12px;
    text-decoration: none;
}

.review-contain {
    display: flex;
    margin-top: 32px;
    margin-bottom: 32px;
    gap: 16px;
}

.review-text {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.review-text .overview {
    font-size: 22px;
    font-weight: bold;
    padding-top: 16px;
}

.review-text p:nth-child(2) {
    font-family: serif;
    margin-top: 16px;
    text-align: left;
}

.review-screenshot {
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: center;
    min-width: 370px;
    background-color: #ffffff;
    border-radius: 12px;
}

.review-chara {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.review-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    padding-top: 5px;
    border: 1px solid #4C9E7F;
    border-radius: 50%;
}

.dots {
    display: inline-block;
    width: 100%;
    border-top: 2px dashed #4C9E7F;
} 

.contents-map {
    margin-top: 80px;
    text-align: center;
}

.map {
    width: 100%;
}

iframe {
    width: 100%;
}

/* 各症状ページ */
.condition-text1,
.condition-text2,
.condition-text3 {
    width: 62.5%;
    line-height: 1.8;
}

.condition-text1 {
    list-style: none;
    font-size: 20px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.condition-text1 li {
    padding: 8px;
    margin-bottom: 16px;
    background-color: #F6F2E9;
}

.condition-text2 {
    font-size: 16px;
    margin: 0 auto;
    margin-bottom: 16px;
    text-align: left;
}

.condition-text3 {
    display: flex;
    justify-content: space-evenly;
    margin: 32px auto;
    padding: 24px;
    border: 1px solid #4C9E7F;
    border-radius: 12px;
    box-shadow: 2px 2px 4px gray;
}

.condition-text3 p {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    padding-right: 16px;
}

.condition-text3 img {
    width: 30%;
    border-radius: 12px;
}

.condition-text3 a {
    text-decoration: none;
}

/* 初めての方へ */
.about-clinic-text1 {
    width: 62.5%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto;
    margin-top: 40px;
}

.about-clinic-text1 p {
    font-size: 24px;
    text-align: left;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 80px;
    border: 1px solid #4C9E7F;
    position: relative;
}

.about-clinic-text1 p:nth-child(3) {
    font-size: 22px;
}

.about-clinic-number {
    color: #4C9E7F;
    background-color: #ffffff;
    font-size: 36px;
    padding-left: 8px;
    padding-right: 8px;
    position: absolute;
    top: -40%;
    left: 2%;
}

.about-clinic-arrow {
    display: block;
    width: 30px;    /* 矢印の横幅 */
    height: 30px;   /* 矢印の高さ */
    border-top: 5px solid #2A7FBA;
    border-left: 5px solid #2A7FBA;
    transform: rotate(-135deg);
    margin: 0 auto;
}

.about-clinic-text2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.about-clinic-point {
    display: flex;
    justify-content: center;
    font-size: 22px;
    gap: 80px;
    margin-top: 16px;
    margin-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.about-clinic-point p {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #2A7FBA;
    width: 202px;
    padding: 16px;
    font-weight: bold;
    border: 1px solid #4C9E7F;
    border-radius: 12px;
    box-shadow: 2px 2px 4px gray;
}

.aboutc-clinic-text3 {
    width: 62.5%;
    text-align: left;
    margin: 0 auto;
}

.about-libre {
    width: 62.5%;
    display: flex;
    margin: 0 auto;
    gap: 24px;
}

.about-libre img {
    width: 30%;
}

.about-libre-text {
    font-family: serif;
    font-size: 16px;
    text-align: left;
}

/* フッター */
footer {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 40px;
}

.footer1 {
    width: 34%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    width: 120px;
    min-width: 120px;
}

.footer2 {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer2 table {
    border-collapse: collapse;
    text-align: center;
    width: 100%;
    height: 40%;
    min-width: 358px;
    white-space: nowrap;
    box-sizing: border-box;
}

.footer2 th,
.footer2 td {
    font-weight: normal;
    padding: 7.4px 16px;
    border: 1px solid #4C9E7F;
}

.footer2 th {
    background-color: #F6F2E9;
}

.footer-name {
    display: flex;
    align-items: center;
}

.footer-name span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    font-size: 22px;
    white-space: nowrap;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    font-family: san-serif;
}

.footer-reserve {
    height: 100%;
    display: flex;
    gap: 18px;
}

.footer-reserve a {
    display: flex;
    justify-content: center;
    padding: 16px 6px;
}

.footer-reserve .f-btn {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    font-size: 18px;
    gap: 6px;
    background-color: #2A7FBA;
    border-radius: 12px;
}

.footer-reserve .f-btn:hover {
    background-color: #6BB3E8;
}

.footer-menu .footer-reserve-icon {
    width: 25px;
    height: 25px;
}

small {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 36px 0;
    color: #ffffff;
    background-color: #1F5D87;
    margin-top: 64px;
}

/*メニューページ*/
.breadcrumbs {
    width: 62.5%;
    margin: 16px auto;
    font-size: 14px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 8px;
}

.first-content {
    margin-top: 0;
}

.subpage-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: underline 3px dashed #4C9E7F;
    text-underline-offset: 10px;
    margin-bottom: 32px;
}

.subpage-title h2 {
    color: #2A7FBA;
    font-size: 36px;
}

.subpage-title img {
    width: 64px;
}

.subpage-contents h3 {
    font-size: 28px;
    color: #ffffff;
    background-color: #2A7FBA;
    font-weight: normal;
    padding: 6px;
    margin-bottom: 24px;
    width: 100%;
}

.subpage-contents table {
    border-collapse: collapse;
    text-align: center;
    width: 62.5%;
    min-width: 200x;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 0 auto;
}

.subpage-contents th,
.subpage-contents td {
    font-weight: normal;
    padding: 24px;
    border: 1px solid #4C9E7F;
    width: 50%;
}

.price-text {
    width: 62.5%;
    margin: 0 auto;
    font-size: 16px;
    text-align: left;
}

.price-text p {
    margin-top: 16px;
}

.course {
    display: flex;
    margin: 24px;
    padding-bottom: 24px;
    gap: 24px;
    border-bottom: 2px dashed #4C9E7F;
}

.course:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.course-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 16px;
}

.course-text h4 {
    font-size: 24px;
}

.course-text p {
    line-height: 1.8;
    font-family: serif;
}

.course img {
    width: 40%;
    border-radius: 8px;
}

table.limited-menu {
    margin-top: 64px;
}

.limited {
    position: relative;
}

.limited th {
    border-right: none;
}

th.first-time {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: #ffffff;
    background-color: #4C9E7F;
    font-weight: bold;
    width: 80px;
    height: 80px;
    padding: 12px;
    border-radius: 50%;
    white-space: nowrap;
    top: -40px;
    left: -40px;
}

.subpage-text {
    width: 62.5%;
    text-align: left;
    margin: 0 auto;
    margin-top: 24px;
}

.subpage-text p {
    margin-top: 16px;
}

.big-button {
    display: flex;
    flex-direction: column;
    width: 62.5%;
    margin: 24px auto;
    gap: 20px;
}

.big-button a {
    width: 80%;
    height: 120px;
    color: #ffffff;
    background-color: #4C9E7F;
    font-size: 24px;
    font-weight: bolder;
    font-family: "Zen Maru Gothic", sans-serif;
    text-decoration: none;
    border-radius: 32px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.big-button a:hover {
    background-color: #62CCA3;
}

.big-button-line {
    background-color: #ffffff;
    width: 40%;
    height: 2px;
    position: relative;
}

.big-button-line::before {
    content: '';
    width: 16px;
    height: 16px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    position: absolute;
    right: 1px;
    top: -7px;
    transform: rotate(45deg);
}

.big-button-contain span:first-child {
    width: 50%;
}

/* 自己紹介 */
.introduce-contain1 {
    width: 100%;
    margin: 0;
    background-color: #F6F2E9;
}

.introduce-contain2 {
    display: flex;
    justify-content: center;
}

.introduce-myself1,
.introduce-myself2 {
    width: 62.5%;
    display: flex;
    margin-top: 36px;
    padding: 24px;
    gap: 24px;
    background-color: #ffffff;
    box-shadow: 2px 2px 4px gray;
    line-height: 1.8;
}

.introduce-myself2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

.introduce-myself1 img {
    width: 50%;
}

.introduce-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-around;
}

.introduce-text h4,
.introduce-text h5 {
    color: #2A7FBA;
}

.introduce-text h4 {
    font-size: 28px;
}

.introduce-text div p.director {
    font-size: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #4C9E7F;
}

.introduce-text h5 {
    font-size: 24px;
}

.introduce-text p {
    margin-top: 8px;
    font-size: 20px;
}

.introduce-comment {
    line-height: 1.8;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.career {
    font-size: 24px;
    text-align: left;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #4C9E7F;
}

.timeline {
    list-style: none;
}

.timeline li {
    display: flex;
    gap: 24px;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.timeline-date {
    font-size: 16px;
    width: 110px;
    float: left;
    padding-bottom: 16px;
}

.timeline-content {
    width: 90%;
    position: relative;
    text-align: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
    padding-bottom: 24px;
    line-height: 1.8;
}

.timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #2A7FBA;
    position: absolute;
    left: -7.5px;
    top: 7.5px;
    border-radius: 100%;
}

.introduce-contain-sub1 {
    width: 100%;
    margin: 0;
    background-color: #F6F2E9;
}

.introduce-contain-sub2 {
    display: flex;
    justify-content: center;
}

.introduce-myself3 {
    width: 62.5%;
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

/* 施術の流れ */
.process-sub {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
}

.process-sub img {
    width: 30%;
    border-radius: 12px;
}

.process-sub-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-sub-text h4 {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 24px;
    font-weight: normal;
    color: #ffffff;
    background-color: #2A7FBA;
    border-radius: 12px;
}

.process-sub-text p {
    width: 95%;
    text-align: left;
    margin: 0 auto;
}

.process-arrow {
    display: block;
    width: 30px;    /* 矢印の横幅 */
    height: 30px;   /* 矢印の高さ */
    border-top: 5px solid #4C9E7F;
    border-left: 5px solid #4C9E7F;
    transform: rotate(-135deg);
    margin: 0 auto;
}

.question-contain {
    display: flex;
    justify-content: center;
    text-align: left;
} 

.question-text {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-bottom: 24px;
    font-size: 20px;
    gap: 12px;
    
}

.question-text p:first-child {
    font-weight: bold;
}

.question-text p:nth-child(2) {
    background-color: #F6F2E9;
    padding: 16px 24px;
}

.big-font {
    font-size: 28px;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .menu-sub, .menu-bottom {
        display: none;
        top: 40%;
    }

    .hamburger {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        display: grid;
        place-items: center;
        border: 0;
    }

    .hamburger .bar {
        width: 44px;
        height: 2px;
        background: #ffffff;
        display: block;
        margin: 5px 0;
        transition: transform .2s ease, opacity .2s ease, background .2s;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 90;
        opacity: 0;
        pointer-events: none;
        background: rgba(0, 0, 0, .6);
        transition: opacity .25s ease;
    }

    .menu-open .menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .menu-open .hamburger .bar { 
        background: #ffffff;
    }

    .menu-open .hamburger .bar:nth-child(1) {
        transform:translateY(15px) rotate(45deg) ;
    }

    .menu-open .hamburger .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-open .hamburger .bar:nth-child(3) {
        transform:translateY(-15px) rotate(-45deg) ;
    }

    .hamburger-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(255, 255, 255);
        z-index: 90;
        text-align: center;
        padding-top: 16px;
        padding-bottom: 24px;
        padding-left: 10%;
        padding-right: 10%;
    }

    .hamburger-nav ul {
        list-style: none;
        margin: 20px 0;
        padding: 0;
    }

    .hamburger-nav li {
        font-size: 24px;
        text-decoration: none;
    }

    .hamburger-nav.open {
    display: block;
    animation: dropdown 0.3s ease;
    }

    @keyframes dropdown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadein {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    header {
        display: flex;
        height: 150px;
        margin: 24px auto 0;
    }

    .name {
        width: 70%;
        padding: 0 5%;
    }

    .name h1 {
        font-size:30px;
        white-space: nowrap;
        margin: 0;
    }

    .name p {
        font-size:16px;
        white-space: nowrap;
        margin: 0;
    }

    .reserve {
        width: 144px;
        height: 36px;
        font-size: 22px;
        text-align: center;
    }

    .sns {
        width: 100%;
        background-color: #2A7FBA;
        margin: 20px 0;
        border-radius: 12px;
        height: 60px;
    }

    .hamburger-nav ul li.sns div a {
        margin: 0;
        display: flex;
        align-items: center;
    }

    .hamburger-nav ul li.sns div p {
        color: #ffffff;
        width: 70%;
    }

    .hamburger-nav ul li.sns {
        padding: 0;
    }

    .sns div {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .sns div p {
        color: initial;
        padding-left: 16px;
        white-space: nowrap;
    }

    .sns img {
        width: 40px;
        margin: auto;
        max-width: 60px;
    }

    .sns div a {
        width: 100%;
        height: 100%;
    }

    .clinic-name {
    font-size: 30px;
    }

    .floating-menu {
        display: flex;
    }

    .contents-area {
        width: 80%;
    }

    .contents-title h2 {
        font-size: 28px;
    }

    .contents-title p {
        font-size: 22px;
    }

    .condition {
        grid-template-columns: repeat( 2, 1fr);
        gap: 32px;
    }

    .condition-icon:last-child {
        width: 50%;
        grid-column: 1 / -1;
        justify-self: center;
    }

    .reason-contain2 {
        flex-direction: column;
    }

    .reason-contain2 img {
        width: 90%;
        margin-top: 0;
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .reason-contain3 {
        width: 90%;
        display: flex;
        flex-direction: column;
        margin: 40px auto;
        gap: 40px;
    }

    .reason-contain1:first-child {
        margin: 0;
    }

    .reverse {
        flex-direction: column;
    }

    .reverse img {
        margin-top: 0;
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .review-contain {
        flex-direction: column;
    }

    .review-text {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .review-text .overview {
        white-space: normal;
    }

    .review-screenshot {
        width: 100%;
        order: 1;
    }

    .review-chara {
        padding-bottom: 16px;
    }

    footer {
        display: flex;
        flex-direction: column;
        margin-top: 64px;
    }

    .footer-top {
        width: 80%;
        flex-direction: column;
        gap: 24px;
    }

    .footer1 {
        width: 100%;
        flex-direction: column;
    }

    .footer2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .footer2 th,
    .footer2 td {
        padding: 5px 10px;
    }

    .footer-menu {
        width: 80%;
    }

    .footer-reserve {
        gap: 16px;
    }

    .footer-reserve .f-btn {
        font-size: 16px;
    }

    small {
        padding-bottom: 132px;
    }

    .breadcrumbs,
    .subpage-contents table,
    .price-text,
    .subpage-text,
    .big-button,
    .big-button a {
        width: 80%;
    }

    .subpage-title h2 {
        font-size: 32px;
    }

    .subpage-title img {
        width: 58px;
    }

    .subpage-contents h3 {
        font-size: 24px;
    }

    .condition-text1,
    .condition-text2,
    .condition-text3 {
        width: 80%;
    }

    .condition-text3 {
        flex-direction: column;
        margin: 32px auto;
        padding: 24px;
    }

    .condition-text3 p {
        padding-right: 0;
        padding-bottom: 16px;
    }

    .condition-text3 img {
        width: 100%;
    }

    h2.small-title {
    font-size: 26px;
    }

    .price-text p {
        margin-top: 16px;
    }

    .course {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .course-text h4 {
        font-size: 24px;
    }

    .course img {
        width: 100%;
    }

    .big-button a:hover {
        background-color: #62CCA3;
    }

    .about-clinic-text1 {
        width: 80%;
    }

    .about-clinic-text1 p {
        font-size: 18px;
        text-align: left;
        padding-left:64px;
        padding-right: 16px;
    }

    .about-clinic-text1 p:nth-child(3) {
        font-size: 16px;
    }

    .about-clinic-number {
        font-size: 30px;
    }

    .about-clinic-point {
        font-size: 22px;
        gap: 20px;
    }

    .aboutc-clinic-text3 {
        width: 80%;
    }

    .about-libre {
        width: 80%;
    }

    .about-libre-text {
        font-size: 16px;
    }

    .introduce-contain1 {
    width: 100%;
    }

    .introduce-myself1,
    .introduce-myself2 {
        width: 80%;
    }

    .introduce-text h4 {
        font-size: 20px;
    }

    .introduce-text div p.director {
        font-size: 18px;
        padding-bottom: 8px;
    }

    .introduce-text h5 {
        font-size: 18px;
    }

    .introduce-text p {
        margin-top: 8px;
        font-size: 16px;
    }

    .career {
        font-size: 20px;
    }

    .introduce-contain-sub1 {
        width: 100%;
    }

    .introduce-myself3 {
        width: 80%;
    }

    .process-sub {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .process-sub img {
        width: 100%;
    }

    .process-sub-text {
        width: 100%;
    }

    .process-sub-text h4 {
        width: 100%;
    }

    .process-sub-text p {
        width: 100%;
    }

}

@media (max-width: 500px) {
    .contents-area {
        width: 90%;
        margin: 0 auto;
    }

    .contents-background {
        margin-top: 64px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .slider-text {
        text-align: center;
    }

    header {
        display: flex;
        width: 90%;
        height: 80px;
        margin: 16px auto 0;
    }

    .logo {
    width: 100px;
    height: 65px;
    min-width: 80px;
    }

    .name {
        width: 70%;
        height: 80px;
        padding: 0 5%;
    }

    .name h1 {
        font-size:22px;
        white-space: nowrap;
        margin: 0;
    }

    .name p {
        font-size:14px;
        white-space: nowrap;
        margin: 0;
    }

    .clinic-name {
        width: 90%;
        font-size: 22px;
    }

    .contents-area {
        margin-top: 64px;
        text-align: center;
    }

    .contents-title h2 {
        font-size: 21px;
        white-space: nowrap;
    }

    .contents-title p {
        font-size: 18px;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .condition {
        gap: 16px;
    }

    .condition-icon {
        width: 100%;
        height: 130px;
    }

    .condition-icon a img {
        height: 70px;
        padding: 0 14px;
    }

    .reason-contain3 {
        margin-top: 24px;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
        gap: 16px;
    }

    .reason-contain3 h3 {
    font-size: 20px;
    padding-bottom: 16px;
    }

    .reason-contain3 p {
        font-size: 16px;
    }

    .reason-contain1 {
        margin-top: 32px;
    }

    .reason-contain1:first-child {
        margin: 0;
    }

    .reason-contain2 img {
        margin-bottom: 16px;
    }

    .number {
        font-size: 30px;
        width: 64px;
        height: 32px;
    }

    .process {
        font-size: 20px;
        gap: 24px;
        margin-bottom: 24px;
        position: static;
        justify-content: center;
    }

    .process-bar {
        display: none;
    }

    .process-contain {
        justify-content: left;
        width: 84%;
        gap: 16px;
    }

    .step-number {
        width: 65px;
        height: 65px;
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }

    .more-information {
        font-size: 24px;
        font-weight: bold;
        width: 250px;
        margin: 0 auto;
    }

    .more-information a {
        padding: 12px;
    }

    .review-contain {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .review-text {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .review-text .overview {
        font-size: 20px;
        font-weight: bold;
        padding-top: 16px;
        white-space: normal;
    }

    .review-text p:nth-child(2) {
        margin-top: 16px;
        font-size: 16px;
    }

    .review-screenshot {
        width: 100%;
        justify-content: center;
        min-width: 280px;
        order: 1;
    }

    .review-chara {
        padding-right: 0;
        padding-bottom: 16px;
        gap: 16px;
        font-size: 16px;
    }

    .review-icon {
        width: 60px;
        height: 60px;
    }

    .contents-map {
        margin-top: 64px;
    }

    footer {
    display: flex;
    flex-direction: column;
    }

    .footer-reserve {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    footer {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
    }

    .footer-top {
        width: 90%;
        flex-direction: column;
        gap: 24px;
        font-size: 16px;
    }

    .footer-menu {
        width: 90%;
    }

    .footer1 {
        width: 100%;
        flex-direction: column;
    }

    .footer2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .footer2 table {
        min-width: 300px;
    }

    .footer2 th,
    .footer2 td {
        padding: 4px;
        font-size: 14px;
    }

    .subpage-title {
        gap: 12px;
        text-decoration: underline 2px dashed #4C9E7F;
        margin-bottom: 24px;
    }

    .subpage-title img {
        width: 50px;
    }

    .subpage-contents table,
    .price-text,
    .subpage-text,
    .big-button,
    .big-button a {
        width: 100%;
    }

    .breadcrumbs {
        width: 90%;
        font-size: 14px;
    }

    .breadcrumbs ol {
        display: flex;
        overflow-x: scroll; /*横にはみ出した要素をスクロールする*/
        white-space: nowrap;
    }

    .first-content {
        margin-top: 0;
    }

    .subpage-title {
        margin-bottom: 24px;
    }

    .subpage-title h2 {
        font-size: 28px;
    }

    .subpage-title img {
        width: 40px;
    }

    .subpage-contents h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .condition-text1,
    .condition-text2,
    .condition-text3 {
        width: 100%;
    }

    .condition-text1 {
        font-size: 18px;
    }

    .condition-text1 li {
        padding: 8px;
        margin-bottom: 16px;
        background-color: #F6F2E9;
    }

    .condition-text3 {
        margin: 24px auto;
        padding: 16px;
    }

    .condition-text3 p {
        text-align: left;
        font-size: 22px;
        font-weight: bold;
        padding-right: 16px;
    }

    h2.small-title {
        font-size: 20px;
    }

    .subpage-contents th,
    .subpage-contents td {
        padding: 16px;
        font-size: 16px;
    }

    .course {
        margin-top: 16px;
        margin-bottom: 16px;
        padding-bottom: 16px;
        gap: 16px;
    }

    .course-text h4 {
        font-size: 24px;
    }

    .course-text p {
        font-size: 16px;
    }

    table.limited-menu {
        margin-top: 64px;
        width: 80%;
    }

    th.first-time {
        width: 70px;
        height: 70px;
        padding: 10px;
        top: -48px;
        left: -36px;
    }

    .subpage-text {
        margin-top: 16px;
    }

    .subpage-text p {
        margin-top: 16px;
    }

    .big-button {
        margin: 16px auto;
        gap: 16px;
    }

    .big-button a {
        width: 80%;
        height: 100px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 32px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .big-button a:hover {
        background-color: #62CCA3;
    }

    .big-button-line {
        background-color: #ffffff;
        width: 40%;
        height: 2px;
        position: relative;
    }

    .big-button-line::before {
        content: '';
        width: 16px;
        height: 16px;
        border-top: solid 2px #ffffff;
        border-right: solid 2px #ffffff;
        position: absolute;
        right: 1px;
        top: -7px;
        transform: rotate(45deg);
    }

    .big-button-contain span:first-child {
        width: 50%;
    }

    .about-clinic-text1 {
        width: 100%;
        gap: 32px;
        margin-top: 32px;
    }

    .about-clinic-text1 p {
        font-size: 18px;
        padding-left: 40px;
    }

    .about-clinic-text1 p:nth-child(3) {
        font-size: 16px;
    }

    .about-clinic-number {
        font-size: 24px;
    }

    .about-clinic-text2 {
        margin-top: 24px;
        font-size: 16px;
    }

    .about-clinic-point {
        flex-direction: column;
        font-size: 22px;
        gap: 24px;
        margin: 16px auto;
        margin-bottom: 24px;
        padding: 0;
    }

    .aboutc-clinic-text3 {
        width: 100%;
        font-size: 16px;
    }

    .about-libre {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .about-libre img {
        margin: 0 auto;
        width: 80%;
    }

    .introduce-contain1 {
        width: 100%;
        margin: 0;
    }

    .introduce-myself1,
    .introduce-myself2 {
        width: 90%;
        margin-top: 24px;
        padding: 24px;
        gap: 16px;
    }

    .introduce-myself1 {
        flex-direction: column;
    }

    .introduce-myself2 {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .introduce-myself1 img {
        width: 100%;
    }

    .introduce-text {
        width: 100%;
        gap: 8px;
    }

    .introduce-text h4 {
        font-size: 20px;
    }

    .introduce-text div p.director {
        font-size: 18px;
        padding-bottom: 8px;
        border-bottom: 1px solid #4C9E7F;
    }

    .introduce-text h5 {
        font-size: 18px;
    }

    .introduce-text p {
        margin-top: 8px;
        font-size: 16px;
    }

    .introduce-comment {
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .career {
        font-size: 20px;
        text-align: left;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #4C9E7F;
    }

    .timeline {
        list-style: none;
    }

    .timeline li {
        display: flex;
        gap: 16px;
        overflow: hidden;
        margin: 0;
        position: relative;
    }

    .timeline-date {
        font-size: 16px;
        width: 110px;
        float: left;
        padding-bottom: 16px;
    }

    .timeline-content {
        width: 90%;
        padding-left: 16px;
        padding-bottom: 24px;
    }

    .introduce-contain-sub1 {
        width: 100%;
        margin: 0;
    }

    .introduce-contain-sub2 {
        width: 100%;
        padding: 0;
    }

    .introduce-myself3 {
        width: 90%;
        margin-bottom: 24px;
    }

    .process-sub {
        gap: 16px;
    }

    .process-sub-text {
        gap: 16px;
    }

    .process-sub-text h4 {
        width: 100%;
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 20px;
    }

    .subpage-contents div.process-sub:first-child {
        margin-top: 24px;
    }

    .process-sub-text p {
    font-size: 16px;
    }

    .question-text {
        width: 100%;
        margin-bottom: 16px;
        font-size: 16px;
        gap: 8px;
    }

    .question-text p:nth-child(2) {
        padding: 16px;
    }

    .big-font {
        font-size: 22px;
        font-weight: bold;
    }

    .slideshow-container {
        height: 80vh;
    }

    .slide {
        position: absolute;
        height: 80vh;
    }

}