* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

.body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #333333;
    margin: 0;
    padding: 0;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

address {
    font-style: normal;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 min(15%, 80px);
}

.common-h2 {
    font-size: 40px;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.header-right-sp {
    display: none;
}

/* header */
.header01 {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    background: #FFFFFF;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.nav01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 28px;
    height: 70px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    display: block;
}

.header-logo img {
    width: min(27.818vw, 380px);
       height: auto;
}

.header-right {
    display: flex !important;
    align-items: center;
}

.header-nav-ul {
    display: flex;
    align-items: center;
}

.header-nav-ul li {
    margin: 0 min(0.878vw, 12px) 0 0;
}

.header-text1 {
    display: block;
    font-size: min(1.098vw, 15px);
    color: #333333;
    font-weight: 700;
    transition: color 0.2s;
}

.header-text1:hover {
    color: #77CAE4;
}

.header-sns-ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}

.header-sns-li a {
    display: flex;
    align-items: center;
}

.header-sns-li img {
    width: 28px;
    height: 28px;
}

.header-lang {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    background: #77CAE4;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 3px 6px;
    box-sizing: border-box;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.2s;
}

.header-lang:hover {
    background: #5fb8d4;
}

.header-lang-icon {
    width: 18px;
    height: 18px;
}

/* hamburger */
.header-hamburger {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.header-right-sp {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333333;
    transition: transform 0.3s, opacity 0.3s;
}

.header-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-li.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 160px;
    z-index: 2000;    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.header-li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
}

.dropdown-menu li {
    margin: 0 !important;
    width: 100%;
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #00529b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
    background: #f0f9ff;
    color: #77CAE4;
}

.header-li.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    display: none;
}

.header-li.has-dropdown:hover::after {
    display: block;
}
/* sp nav */
.header-sp-nav {
    display: none;
    position: fixed;
    top: 102px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    background: #FFFFFF;
    z-index: 999;
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.header-sp-nav.is-active {
    display: block;
}

.header-sp-nav .header-nav-ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.header-sp-nav .header-li {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}

.header-sp-nav .header-text1 {
    font-size: 16px;
    padding: 14px 4px;
    display: block;
    width: 100%;
}

.header-sp-nav .header-sns-ul {
    margin: 16px 0 0 0;
    gap: 12px;
}

.header-sp-nav .header-lang {
    margin: 16px 0 0 0;
    display: inline-flex;
}


.accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    background-color: #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-icon::before {
    width: 100%;
    height: 2px;
}

.accordion-icon::after {
    width: 2px;
    height: 100%;
}

.has-accordion.is-active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    display: none;
    background: #f9f9f9;
    padding-left: 20px;
    list-style: none;
}

.accordion-content li {
    border-bottom: none !important;
}

.accordion-content li a {
    font-size: 14px;
    padding: 10px 0;
    display: block;
    color: #00529b;
}


/* fv */
.fv {
    padding-top: 0;
}

.fv-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fv-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* doctors */
.doctors {
    padding: 70px 0 80px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.doctors .heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.doctors-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.doctors-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doctor-card-img-wrapper {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #77CAE4 0% 0% no-repeat padding-box;
    transition: opacity 0.2s;
}

.doctor-card-img-wrapper:hover {
    opacity: 0.8;
}

.doctor-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doctor-card-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    transition: color 0.2s;
    justify-content: space-between;
}

.doctor-card-name:hover {
    color: #005FA7;
}

.doctor-card-name-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #005FA7 0% 0% no-repeat padding-box;
    border-radius: 50%;
    flex-shrink: 0;
}

.doctor-card-name-icon svg {
    width: 10px;
    height: 10px;
}

/* overview */
.overview {
    padding: 70px 0 80px;
    background: #FFF8E6 0% 0% no-repeat padding-box;
}

.overview .heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overview-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.overview-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.common-table {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 24px;
    overflow: hidden;
}

.common-table-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 28px 40px;
    border-bottom: 1px solid #DDDDDD;
}

.common-table-row:last-child {
    border-bottom: none;
}

.common-table-label {
    flex-shrink: 0;
    width: 120px;
    font-size: 16px;
    font-weight: 700;
    color: #005FA7;
}

.common-table-value {
    flex: 1;
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

/* blog */
.blog {
    padding: 70px 0 80px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.blog .heading {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.blog-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.blog-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.btn-wrapper2 {
    display: flex;
    justify-content: center;
}

/* faq */
.faq {
    padding: 70px 0 80px;
    background: #E6F7FB 0% 0% no-repeat padding-box;
}

.faq .heading {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.faq-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.faq-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-list {
    /* border-top: 1px solid #BBDAEE; */
}

.faq-item {
    border-bottom: 1px solid #BBDAEE;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-badge-q {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #005FA7 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 1.6;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #005FA7;
    transition: transform 0.3s;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 0 20px;
}

.faq-badge-a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff 0% 0% no-repeat padding-box;
    color: #005FA7;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #BBDAEE;
}

.faq-answer-text {
    flex: 1;
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    padding-top: 6px;
}

/* youtube */
.youtube {
    padding: 80px 0;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.youtube-item {
    display: flex;
    flex-direction: column;
}

.youtube-embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    background: #CCCCCC 0% 0% no-repeat padding-box;
}

.youtube-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* gallery */
.gallery {
    padding: 80px 0;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
}

.gallery-slide {
    padding: 0;
}

.gallery-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.gallery-slider .slick-track {
    display: flex;
    align-items: center;
}

/* access */
.access {
    padding: 70px 0 80px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.access .heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.access-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.access-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.access-cols {
    display: flex;
    align-items: flex-start;
    gap: min(5%, 60px);
}

.access-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access-sub-title {
    font-size: 22px;
    font-weight: 700;
    color: #77CAE4;
    margin: 0 0 16px;
}

.access-hours-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #005FA7;
}

.access-hours-table th {
    background: #005FA7 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 10px;
    text-align: center;
    border: 2px solid #005FA7;
}

.access-hours-table td {
    font-size: 16px;
    font-weight: 700;
    color: #005FA7;
    padding: 12px 10px;
    text-align: center;
    border: 2px solid #BBDAEE;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.access-hours-table td:first-child {
    background: #E6F7FB 0% 0% no-repeat padding-box;
    white-space: nowrap;
}

.access-circle-blue {
    color: #77CAE4;
    font-size: 20px;
    line-height: 1;
}

.access-circle-orange {
    color: #E8A000;
    font-size: 20px;
    line-height: 1;
}

.access-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.access-note-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333333;
    margin: 0;
    font-weight: 700;
}

.access-tel-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.access-tel-text {
    font-size: 16px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    font-weight: 700;
}

.access-schedule-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid #DDDDDD;
}

.access-schedule-text {
    font-size: 16px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    font-weight: 700;
}

.access-schedule-btn {
    display: inline-block;
    background: #005FA7 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 48px;
    border-radius: 50px;
    transition: background 0.2s;
    align-self: flex-start;
    white-space: nowrap;
}

.access-schedule-btn:hover {
    background: #004d8a 0% 0% no-repeat padding-box;
}

.access-map-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #E0E0E0 0% 0% no-repeat padding-box;
}

.access-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.access-address {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
        font-weight: 700;

}

.access-line-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: #E6F7FB 0% 0% no-repeat padding-box;
    border-radius: 20px;
    text-align: center;
}

.access-line-title {
    font-size: min(1.757vw, 24px);
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

.access-line-title ._green {
    color: #06C755;
}

.access-line-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #06C755 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    transition: background 0.2s;
}

.access-line-btn:hover {
    background: #05b04a 0% 0% no-repeat padding-box;
}

.access-line-btn-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.access-line-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.9;
    margin: 0;
}

/* connection */
.connection {
    padding: 70px 0 80px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.connection .heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.connection-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.connection-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.connection-list {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.connection-bnr-link {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    transition: opacity 0.2s;
    flex: 1;
}

.connection-bnr-link:hover {
    opacity: 0.8;
}

.connection-bnr-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* recruit */
.recruit {
    padding: 70px 0 80px;
    background: #E6F7FB 0% 0% no-repeat padding-box;
}

.recruit .heading {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.recruit-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.recruit-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.recruit-lead {
    font-size: 16px;
    color: #333333;
    line-height: 1.9;
    margin: 0;
}

.common-table-label {
    flex-shrink: 0;
    width: 160px;
    font-size: 16px;
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.recruit-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/* reservation */
.reservation {
    padding: 70px 0 80px;
    background: #FFF8E6 0% 0% no-repeat padding-box;
}

.reservation .heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reservation-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.reservation-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    font-weight: 700;
}

.form-required {
    font-size: 14px;
    font-weight: 700;
    color: #E6A817;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #333333;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #E6C97A;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #BBBBBB;
}

.form-select {
    color: #BBBBBB;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23999999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select.is-selected {
    color: #333333;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #005FA7;
}

.form-textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.7;
}

.form-note {
    font-size: 14px;
    color: #666666;
    margin: 4px 0 0;
    font-weight: 700;
}

.form-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #333333;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #BBBBBB;
    border-radius: 3px;
    cursor: pointer;
    accent-color: #005FA7;
    flex-shrink: 0;
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
}

.form-submit-btn {
    display: inline-block;
    background: #005FA7 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Zen Maru Gothic', sans-serif;
    padding: 16px 80px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit-btn:hover {
    background: #004d8a 0% 0% no-repeat padding-box;
}

/* banner */
.banner {
    padding: 50px 0;
    background: #E6F7FB 0% 0% no-repeat padding-box;
}

.banner-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.banner-link {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    transition: opacity 0.2s;
}

.banner-link:hover {
    opacity: 0.8;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* services */
.services {
    padding: 70px 0 80px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.services .heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.services-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.archive-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.archive-block {
    background: #E8F4FB 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0px 0px 10px #00000029;
}

.archive-img-wrapper._service {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    margin: 0 auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-img-wrapper._service .archive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.common-text1 {
    display: block;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    padding-bottom: 16px;
    border-bottom: 1px solid #BBDAEE;
}

.common-text1._bold {
    font-weight: 700;
    text-align: center;
}

.archive-block-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #005FA7;
    transition: opacity 0.2s;
}

.archive-block-link:hover {
    opacity: 0.7;
}

.archive-block-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #005FA7 0% 0% no-repeat padding-box;
    border-radius: 50%;
    flex-shrink: 0;
}

.archive-block-link-icon svg {
    width: 12px;
    height: 12px;
}

/* strengths */
.strengths {
    padding: 70px 0 80px;
    background: #FFF8E6 0% 0% no-repeat padding-box;
}

.strengths .heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strengths-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.strengths-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.strengths-card {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.strengths-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.strengths-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.strengths-card-title {
    font-size: min(1.4vw, 20px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.strengths-card-text {
    font-size: min(1.1vw, 16px);
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

.strengths-card-link {
    display: inline-block;
    font-size: 16px;
    color: #005FA7;
    text-decoration: underline;
    margin-top: 4px;
    transition: opacity 0.2s;
}

.strengths-card-link:hover {
    opacity: 0.7;
}

/* about */
.about {
    background: linear-gradient(180deg, #FFFFFF 0%, #B9EEFF 100%);
    padding: 70px 0 80px;
}

.about .wrapper {
    max-width: 1100px;
}

.about .heading {
    display: flex;
    align-items: center;
    gap: min(5%, 60px);
}

.about-img-wrapper {
    flex-shrink: 0;
    width: min(45%, 480px);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text-block {
    flex: 1;
}

.about-text1 {
    font-size: min(1.5vw, 17px);
    line-height: 1.9;
    color: #333333;
    margin: 0;
    font-weight: 700;
}

/* post-list（news・blog共通） */
.post-list-ul {
    flex: 1;
    /* border-top: 1px solid #DDDDDD; */
}

.post-list-li {
    padding: 18px 0;
    border-bottom: 1px solid #DDDDDD;
}

.post-list-li a {
    display: block;
    transition: opacity 0.2s;
}

.post-list-li a:hover {
    opacity: 0.7;
}

.post-list-date {
    display: block;
    font-size: 16px;
    color: #888888;
    margin-bottom: 6px;
}

.post-list-title {
    display: block;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    font-weight: 700;
}

/* news */
.news {
    padding: 70px 0 80px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.news .heading {
    display: flex;
    align-items: flex-start;
    gap: min(5%, 60px);
}

.news-head {
    flex-shrink: 0;
    width: min(20%, 200px);
}

.news-head .common-h2-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #77CAE4;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.news-head .common-h2 {
    font-size: min(2.8vw, 40px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.news-body {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.btn-wrapper1 {
    display: flex;
    justify-content: flex-end;
}

.btn-more1 {
    display: inline-block;
    background: #005FA7 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 48px;
    border-radius: 50px;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-more1:hover {
    background: #004d8a 0% 0% no-repeat padding-box;
}

/* footer */
.footer {
    background: #005FA7 0% 0% no-repeat padding-box;
    padding: 40px 0;
}

.footer .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-sns-ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-sns-li a {
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.footer-sns-li a:hover {
    opacity: 0.7;
}

.footer-sns-li img {
    width: 36px;
    height: 36px;
}

.footer-copy {
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    /* base */
    .wrapper {
        padding: 0 min(5.333%, 20px);
    }

    .common-h2 {
        font-size: 28px;
    }

    /* header */
    .header01 {
        top: 10px;
        width: calc(100% - 24px);
        border-radius: 36px;
    }

    .nav01 {
        height: 56px;
        padding: 0 20px;
    }

    .header-logo img {
        width: min( 41.667vw, 200px);
    }

    .header-right {
        display: none;
    }

    .header-right-sp {
        display: flex;
    }

    .header-right-sp .header-lang {
        font-size: 13px;
        padding: 3px 6px;
        margin-left: 0;
    }

    .header-right-sp .header-lang-icon {
        width: 14px;
        height: 14px;
    }

    /* fv */
    .fv {
        padding-top: 0;
    }

    /* news */
    .news {
        padding: 50px 0 60px;
    }

    .news .heading {
        flex-direction: column;
        gap: 20px;
    }

    .news-head {
        width: 100%;
    }

    .news-head .common-h2 {
        font-size: 24px;
    }

    /* about */
    .about {
        padding: 50px 0 60px;
    }

    .about .heading {
        flex-direction: column;
        gap: 28px;
    }

    .about-img-wrapper {
        width: 100%;
    }
    .about-img {
        width: 89%;
        margin: 0 auto;
    }

    .about-text1 {
        font-size: 16px;
    }

    /* strengths */
    .strengths {
        padding: 50px 0 60px;
    }

    .strengths-head {
        width: 100%;
    }

    .strengths-head .common-h2 {
        font-size: 24px;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .strengths-card-title {
        font-size: 20px;
    }

    .strengths-card-text {
        font-size: 16px;
    }

    /* services */
    .services {
        padding: 50px 0 60px;
    }

    .services-head {
        width: 100%;
    }

    .services-head .common-h2 {
        font-size: 24px;
    }

    .archive-area {
        grid-template-columns: 1fr 1fr;
    }

    .archive-block {
        padding: 15px;
    }

    /* banner */
    .banner-area {
        grid-template-columns: 1fr;
    }

    /* doctors */
    .doctors {
        padding: 50px 0 60px;
    }

    .doctors-head .common-h2 {
        font-size: 24px;
    }

    .doctors-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* overview */
    .overview {
        padding: 50px 0 60px;
    }

    .overview-head .common-h2 {
        font-size: 24px;
    }

    .common-table {
        border-radius: 16px;
    }

    .common-table-row {
        flex-direction: column;
        gap: 6px;
        padding: 20px 20px;
    }

    .common-table-label {
        width: 100%;
    }

    /* blog */
    .blog {
        padding: 50px 0 60px;
    }

    .blog-head .common-h2 {
        font-size: 24px;
    }

    /* faq */
    .faq {
        padding: 50px 0 60px;
    }

    .faq-head .common-h2 {
        font-size: 24px;
    }

    /* youtube */
    .youtube {
        padding: 50px 0;
    }

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

    /* gallery */
    .gallery {
        padding: 50px 0;
    }

    .gallery-slide img {
        height: 180px;
    }

    /* access */
    .access {
        padding: 50px 0 60px;
    }

    .access-head .common-h2 {
        font-size: 24px;
    }

    .access-cols {
        flex-direction: column;
        gap: 40px;
    }

    .access-left {
        width: 100%;
    }

    .access-right {
        width: 100%;
    }

    .access-hours-table th,
    .access-hours-table td {
        padding: 10px 8px;
        font-size: 14px;
    }

    .access-schedule-btn {
        padding: 14px 32px;
    }

    .access-line-block {
        padding: 32px 20px;
    }

    .access-line-title {
        font-size: 17px;
    }

    /* connection */
    .connection {
        padding: 50px 0 60px;
    }

    .connection-head .common-h2 {
        font-size: 24px;
    }

    .connection-list {
        flex-direction: column;
        gap: 20px;
    }

    .connection-bnr-link {
        width: 100%;
    }

    /* recruit */
    .recruit {
        padding: 50px 0 60px;
    }

    .recruit-head .common-h2 {
        font-size: 24px;
    }

    /* reservation */
    .reservation {
        padding: 50px 0 60px;
    }

    .reservation-head {
        width: 100%;
    }

    .reservation-head .common-h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}






/* page02 common */
.page02 {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    padding: 0 !important;
}

/* .heading._page02 {
    padding: 80px min(15%, 180px);
} */

.fv2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #005FA7 0% 0% no-repeat padding-box;
    height: 288px;
}

.fv2-h1 {
    letter-spacing: 8px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.archive-common-h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2.42px;
    color: #5B002A;
    margin: 0 0 10px 0;
}

.archive-common-text1 {
    font-size: 18px;
    letter-spacing: 1.62px;
    color: #333;
    margin: 0 0 30px 0;
}


@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
   /* max-width: 1200px;
        padding: 20px min(15%, 180px);
    box-sizing: border-box; */
    padding-top : 20px;
    padding-bottom : 20px;
}

#crumbs {
    position: relative;
}

.crumbs {

  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #005FA7;
}

.crumbs-separator {
    margin: 0 8px;
    color: #333;
}

.crumbs-current {
    font-size: 16px;
    color: #333;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }
}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    color: #005FA7;
    background: #fff 0% 0% no-repeat padding-box;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #005FA7 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}

/* page03 共通 */
.page03 {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    padding: 70px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.detail h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3.36px;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #005FA7;
    letter-spacing: 2.88px;
    color: #333;

}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    padding: 0 0 0 10px;
    margin: 0 0 40px 0;
    color: #333;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}

.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    color: #005FA7;
    border-bottom: 1px solid #005FA7;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}
.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #333;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #333;
}
.detail-common-area a {
    font-size: 16px;
    color: #005FA7;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #005FA7;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}


/* 共通 index single archive 404 */
._minheight {
    min-height: 48vh;
}
.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

._error {
    overflow-wrap: anywhere;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 62vh;
    }
}


.single-article {
    padding-top: 30px;
    padding-bottom: 50px;
}



/* validation */

.form-privacy a {
    text-decoration: underline;
    color: inherit;
}

#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 40px;
    transform: translateX(-50%);
    color: #000;
        font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #D30001;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}

#email-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* bootstrap */
button.btn-success {
    cursor: pointer;
}
.btn {
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
}
.btn01 .btn {
    background-color: #009E96;
    width: 120px;
    margin-left: 20px;
    margin-left: 15px;
    color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
    text-align: center;
}
.modal-footer {
    display: flex;
    justify-content: center;
}
.btn.btn-md {
    padding: 8px 20px !important;
}
.btn.btn-lg {
    padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background: #3958A7;
    color: #fff;
    border: 2px solid #3958A7;
}
@media screen and (max-width: 960px) {
}



.arrow-fixed {
    position: fixed;
    height: auto;
    right: 10px;
    bottom: 10px;
    z-index: 13;
}


.arrow-fixed-link {
    width: 50px !important;
    height: auto !important;
    display: inline-block;
}

.arrow-fixed-link img {
    display: block;
    width: 100%;
    height: auto;
}

.bnr-fixed {
    width: 60px !important;
    position: fixed;
    height: auto;
    right: 0;
    bottom: 100px;
    z-index: 13;
}

.bnr-fixed a {
    width: 60px !important;
    display: inline-block;

}


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

    .cta-fixed {
        position: fixed;
        display: flex !important;
        width: 100%;
        bottom: 0;
        z-index: 13;
    }

    .cta-fixed-btn1 {
        background: #06C755 0% 0% no-repeat padding-box;
        width: 50%;
        height: 50px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        text-decoration: none;
    }
    .cta-fixed-btn2 {
        background: #FFA114 0% 0% no-repeat padding-box;
        width: 50%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        text-decoration: none;
    }

    .arrow-fixed {
        bottom: 60px;
    }

}


/* 共通 スクロール位置 見出し */
#news,
#strengths,
#services,
#doctors,
#overview,
#blog,
#faq,
#access,
#reservation,
#recruit,
#schedule {
    scroll-margin-top: 80px;
}

@media screen and (max-width: 960px) {
    #news,
    #strengths,
    #services,
    #doctors,
    #overview,
    #blog,
    #faq,
    #access,
    #reservation,
    #recruit,
    #schedule {
        scroll-margin-top: 50px;
    }
}

/* 保険一覧用カスタムスタイル */
.si-insurance-container {
    width: 100%;
    margin: 20px 0;
    text-align: left; /* 親のセンター揃えをリセット */
}

.si-insurance-title {
    font-size: 22px;
    font-weight: bold;
    color: #005bac;
    border-left: 5px solid #005bac;
    padding: 5px 15px;
    margin: 30px 0 20px;
    background: #f8f8f8;
    line-height: 1.4;
}

.si-insurance-intro {
    margin-bottom: 25px;
    line-height: 1.6;
}

/* グリッドレイアウトの設定 */
.si-insurance-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
}

.si-insurance-item {
    /* 2カラム（隙間を考慮して48〜49%程度に設定） */
    width: calc(50% - 8px); 
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.si-insurance-item img {
    max-width: 180px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
}

.si-insurance-item p.jp-name {
    margin: 5px 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.si-insurance-item p.en-name {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}

/* 赤文字の注意書き */
.si-insurance-caution {
    margin: 30px 0;
    padding: 20px;
    border: 2px solid #d00;
    background: #fff9f9;
    border-radius: 5px;
}

.si-insurance-caution p {
    color: #d00;
    font-weight: bold;
    margin: 0;
    line-height: 1.6;
}

/* スマホ対応：768px以下は1カラム */
@media screen and (max-width: 768px) {
    .si-insurance-item {
        width: 100%;
    }
}


/* online */
.online-lead {
    padding: 60px 0;
}

.online-lead .heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.online-lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

.btn-more1._line {
    background: #06C755 0% 0% no-repeat padding-box;
}

.btn-more1._line:hover {
    background: #05a848 0% 0% no-repeat padding-box;
}

@media screen and (max-width: 960px) {
    .online-lead {
        padding: 40px 0;
    }
}

/* online benefits */
.online-benefits {
    padding: 70px 0;
    background: #E6F3FB 0% 0% no-repeat padding-box;
}

.online-benefits .heading {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.online-section-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.online-section-en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #005FA7;
    letter-spacing: 0.1em;
}

.online-section-h2 {
    font-size: min(2.8vw, 36px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
    letter-spacing: 2px;
}

.online-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.online-benefits-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 12px;
    padding: 28px 32px;
}

.online-benefits-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005FA7 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    letter-spacing: 0;
}

.online-benefits-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.online-benefits-title {
    font-size: 20px;
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.online-benefits-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .online-benefits {
        padding: 50px 0;
    }

    .online-section-h2 {
        font-size: 26px;
    }

    .online-benefits-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .online-benefits-body {
        align-items: center;
    }
}

/* online flow */
.online-flow {
    padding: 70px 0;
}

.online-flow .heading {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.online-flow-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.online-flow-list::before {
    content: "";
    position: absolute;
    left: 36px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: #005FA7;
}

.online-flow-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 0;
    position: relative;
}

.online-flow-step {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    min-height: 72px;
    background: #005FA7 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.online-flow-stepnum {
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
}

.online-flow-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
}

.online-flow-title {
    font-size: 20px;
    font-weight: 700;
    color: #005FA7;
    margin: 0;
}

.online-flow-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

.online-flow-link {
    color: #005FA7;
    font-weight: 700;
    text-decoration: underline;
}

@media screen and (max-width: 960px) {
    .online-flow {
        padding: 50px 0;
    }

    .online-flow-list::before {
        left: 30px;
    }

    .online-flow-step {
        width: 60px;
        min-height: 60px;
    }

    .online-flow-stepnum {
        font-size: 18px;
    }

    .online-flow-body {
        padding-top: 12px;
    }

    .online-flow-title {
        font-size: 18px;
    }
}

/* オンライン診療ページ */
.online-notes {
    padding: 70px 0;
    background: #E6F3FB 0% 0% no-repeat padding-box;
}

.online-notes .heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.online-notes-title {
    font-size: min(2.8vw, 36px);
    font-weight: 700;
    color: #005FA7;
    margin: 0;
    letter-spacing: 2px;
    padding-bottom: 16px;
}

.online-notes-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.online-notes-item {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 12px;
    padding: 28px 32px;
}

.online-notes-h3 {
    font-size: 18px;
    font-weight: 700;
    color: #005FA7;
    margin: 0 0 12px 0;
}

.online-notes-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .online-notes {
        padding: 50px 0;
    }

    .online-notes-title {
        font-size: 26px;
    }

    .online-notes-item {
        padding: 20px 20px 20px 16px;
    }

    .online-notes-h3 {
        font-size: 16px;
    }
}