@charset "utf-8";

/*==================================================

    トップページ

===================================*/
/* hero */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    height: calc(var(--vh, 1vh) * 90);
    background-color: #1D9BF0;
}

.hero .hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 80vh;
    border-bottom-left-radius: 150px;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .news-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 95%;
    height: 10vh;
    border-top-left-radius: 15px;
    background-color: #fff;
}

.news-wrap a {
    position: relative;
    display: block;
    height: 100%;
}

.news-wrap a span {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.news-wrap a::before {
    position: absolute;
    top: 50%;
    right: 20px;
    content: "";
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url(../images/121_arr_hoso.png);
    background-size: cover;
    background-position: center;
}

@media(min-width: 600px) {
    .hero {
        height: calc(100vh - 70px);
    }

    .hero .hero-img {
        height: 90vh;
    }

    .hero br.sp {
        display: none;
    }

    .hero .news-wrap {
        height: 5vh;
        width: 80%;
    }
}

@media(min-width: 1025px) {
    .hero {
        height: 100vh;
    }

    .hero .hero-img {
        height: 90vh;
    }

    .hero .news-wrap {
        height: 10vh;
        width: 65%;
    }

    .news-wrap a span {
        transition: all .4s;
    }

    .news-wrap a:hover span {
        text-decoration: underline;
    }

    .hero .news-wrap a span {
        left: 50px;
        font-size: 14px;
        letter-spacing: .05em;
    }

    .hero .news-wrap a::before {
        right: 100px;
    }
}

/* about us */
#top .about {
    position: relative;
}

#top .about::before {
    position: absolute;
    bottom: 160px;
    right: 0;
    content: "";
    width: 90%;
    height: 400px;
    background-color: #1D9BF0;
    border-bottom-left-radius: 100px;
    z-index: -1;
}

#top .about-content {
    margin-bottom: 140px;
}

#top .about .about-content .about-text {
    line-height: 1.7;
    letter-spacing: .07em;
    font-weight: 500;
}

@media(min-width: 600px) {
    #top .about-content {
        margin-bottom: 60px;
    }

    #top .about-image {
        width: 80%;
        margin: 0 0 0 auto;
    }

    #top .about::before {
        width: 85%;
        height: 350px;
    }
}

@media(min-width: 1025px) {
    #top .about .inner {
        display: flex;
        justify-content: space-between;
        padding-top: 120px;
        padding-bottom: 0;
    }

    #top .about .inner .about-content {
        width: 35%;
        padding-top: 60px;
    }

    #top .about .inner .about-image {
        width: 60%;
    }

    #top .about::before {
        width: 50%;
        bottom: auto;
        top: 0;
        height: 700px;
    }
}

/* contents */
#top .content {
    position: relative;
}

#top .content::before {
    position: absolute;
    top: 220px;
    left: 0;
    z-index: -1;
    content: "";
    width: 40%;
    height: 230px;
    background-color: #1D9BF0;
    border-top-right-radius: 100px;
}

#top .content::after {
    position: absolute;
    bottom: 650px;
    right: 0;
    z-index: -1;
    content: "";
    width: 40%;
    height: 230px;
    background-color: #FFEB00;
    border-bottom-left-radius: 100px;
}

#top .content .content-title {
    margin-bottom: 90px;
    text-align: center;
}

#top .content-list li a {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
    background-color: #E8F5FD;
}

#top .content-list li:last-child a {
    background-color: #1D9BF0;
}

#top .content-list li a::before {
    position: absolute;
    bottom: 20px;
    right: 20px;
    content: "";
    width: 65px;
    height: 20px;
    background: url(../images/box-click.png) no-repeat;
    background-size: cover;
    background-position: center;
}

#top .content-list li a h3 {
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
    font-size: clamp(18px, 1.75vw, 24px);
    letter-spacing: .05em;
    line-height: 1.7;
}

#top .content-list li a .content-icon {
    position: relative;
    margin: 0 auto 30px;
    width: 250px;
    height: 0;
    padding-top: 250px;
    background-color: #fff;
    border-radius: 500px;
}

#top .content-list li a .content-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
}

#top .content-list li a .text {
    line-height: 1.7;
    letter-spacing: .05em;
}

#top .content-list li:last-child a .text.main {
    margin-bottom: 5px;
    letter-spacing: .05em;
    text-align: center;
    font-weight: 500;
    font-size: clamp(16px, 1.25vw, 18px);
}

#top .content-list li:last-child a .tel {
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
    letter-spacing: .1em;
    font-size: 2.25em;
    text-align: center;
}

@media(min-width: 600px) {
    #top .content .inner .content-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    #top .content .inner .content-list li {
        width: calc(50% - 10px);
    }

    #top .content .inner .content-list li a {
        margin-bottom: 10px;
    }

    #top .content .inner .content-list li:last-child {
        width: 100%;
    }

    #top .content .inner .content-list li:last-child h3 br {
        display: none;
    }

    #top .content .inner .content-list li:last-child a {
        text-align: center;
    }
}

@media(min-width: 1025px) {
    #top .content::before {
        width: 20%;
        top: 180px;
    }

    #top .content::after {
        bottom: 0;
        width: 17%;
    }

    #top .content .inner .content-list li,
    #top .content .inner .content-list li:last-child {
        width: calc(20% - 10px);
    }

    #top .content .inner .content-list li a {
        padding: 30px 25px;
        min-height: 460px;
    }

    #top .content-list li a h3 {
        font-size: 18px;
        letter-spacing: .1em;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #top .content .inner .content-list li:last-child h3 br {
        display: block;
    }

    #top .content-list li a .content-icon {
        width: 180px;
        padding-top: 180px;
    }

    #top .content-list li a .content-icon img {
        width: 110px;
    }

    #top .content-list li a .text {
        font-size: 14px;
    }

    #top .content .inner .content-list li:last-child a .content-icon {
        margin-bottom: 10px;
    }

    #top .content-list li:last-child a .text.main {
        font-size: .7em;
    }

    #top .content-list li:last-child a .tel {
        font-size: 1.4em;
    }

    #top .content-list li:last-child a .text {
        font-size: .6em;
    }

    #top .content-list li a::before {
        content: none;
    }

    #top .content .inner .content-list li a {
        transition: all .4s;
    }

    #top .content .inner .content-list li a:hover {
        transform: translateY(-10px);
        background-color: #FFF9B3;
    }
}

/* clinic */
.clinic .content-title {
    margin-bottom: 60px;
    text-align: center;
}

.clinic .clinic-list li {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
}

.clinic .clinic-list li a {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    transition: all .4s;
}

.clinic .clinic-list li a::before {
    position: absolute;
    z-index: 1;
    bottom: 15px;
    right: 15px;
    content: "";
    width: 65px;
    height: 20px;
    background: url(../images/box-click.png) no-repeat;
    background-position: center;
    background-size: cover;
}

.clinic .clinic-list li a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(255, 255, 255, .65);
    border-radius: 10px;
}

.clinic .clinic-list .asaka a {
    background-image: url(../images/asaka.jpg);
}

.clinic .clinic-list .shiki a {
    background-image: url(../images/shiki.jpg);
}

.clinic .clinic-list .niza a {
    background-image: url(../images/niiza.jpg);
}

.clinic .clinic-list .wako a {
    background-image: url(../images/wako.jpg);
}

.clinic .clinic-list li a:hover {
    transform: scale(1.1);
}

.clinic .clinic-list li a .clinic-text {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clinic .clinic-list li a .clinic-text h3 {
    margin-bottom: 10px;
    font-size: 1.25em;
    letter-spacing: .15em;
    font-weight: 500;
}

.clinic .clinic-list li a .clinic-text p {
    text-align: center;
    font-weight: bold;
    letter-spacing: .1em;
}

@media(min-width: 600px) {
    .clinic .clinic-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .clinic .clinic-list li {
        width: calc(50% - 10px);
        margin-bottom: 15px;
    }

    .clinic .clinic-list li a .clinic-text h3 {
        width: 180px;
    }
}

@media(min-width: 1025px) {
    .clinic .clinic-list li a .clinic-text h3 {
        width: 190px;
    }
}

/*==================================================

    会長挨拶

===================================*/
#message .inner {
    padding: 0 4%;
}

/* プロフィール */
.profile {
    margin-bottom: 40px;
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}

.profile-photo {
    margin-bottom: 20px;
    width: 190px;
    height: 190px;
    border-radius: 100px;
    overflow: hidden;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text .sub {
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: .05em;
}

.profile-text .name {
    font-size: 1.25em;
    letter-spacing: .05em;
    font-weight: bold;
}

.profile-text .name span {
    margin-right: 20px;
}

.message-text {
    line-height: 1.9;
    font-weight: 500;
}

@media(min-width: 600px) {
    .profile .flex-wrap {
        display: flex;
        align-items: center;
    }

    .profile .flex-wrap .profile-photo {
        margin-right: 50px;
    }
}

@media(min-width: 1025px) {
    #message .inner {
        padding: 0;
    }

    .profile-photo {
        margin-bottom: 0;
    }

    .profile-text .sub {
        font-size: 1.125em;
    }

    .message-text {
        line-height: 2;
    }
}

/*==================================================

    医師会の紹介

===================================*/
#about .inner {
    padding: 90px 4%;
}

#about .text-title {
    margin-bottom: 60px;
    text-align: center;
    font-weight: bold;
    letter-spacing: .05em;
    font-size: 1.4em;
}

/* 事業内容 */
.service-list {
    margin-top: 60px;
    margin-bottom: 90px;
    padding: 40px 30px;
    background-color: #E8F5FD;
    border-radius: 10px;
}

.service-list ol {
    list-style: decimal;
    padding-left: 20px;
}

.service-list ol li {
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: .1em;
    font-size: 1.125em;
    line-height: 1.7;
}

.service-list ol li:last-child {
    margin-bottom: 0;
}

/* 組織図 */
.organization {
    margin-bottom: 90px;
}

.organization .sub-title {
    margin-bottom: 60px;
}

/* 役員・監事構成 */
.member .sub-title {
    margin-bottom: 60px;
}

.member-block h3 {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: .05em;
    font-size: 1.5em;
    border-bottom: 1px solid #ddd;
}

.member-block ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.member-block ul li {
    width: calc(50% - 5px);
    margin-bottom: 30px;
}

.member-block ul li .member-photo {
    margin-bottom: 10px;
}

.member-block ul li .member-title {
    margin-bottom: 5px;
    font-weight: bold;
    letter-spacing: .05em;
}

.member-block ul li .name {
    font-weight: bold;
    font-size: 1.125em;
    letter-spacing: .05em;
}

@media(min-width: 600px) {
    .service-list {
        max-width: 650px;
        margin: 60px auto 90px;
    }

    .organization {
        max-width: 650px;
        margin: 0 auto 90px;
    }

    .member-block {
        margin-bottom: 60px;
    }

    .member-block ul li {
        width: calc(24% - 5px);
    }
}

@media(min-width: 1025px) {
    #about .inner {
        max-width: 1000px;
    }

    .service-list ol {
        padding-left: 50px;
    }

    .member-block ul li .member-photo {
        height: 260px;
    }

    .member-block ul li .member-photo img {
        height: 100%;
        object-fit: cover;
    }
}

/*==================================================

    活動内容

===================================*/

#activity .text-title {
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: .05em;
    font-size: 1.4em;
    line-height: 1.5;
}


/* 事業内容 */
.activity-list {
    margin-top: 60px;
}

.activity-list .blue {
    margin-bottom: 20px;
    color: #1D9BF0;
    line-height: 1.7;
}

.activity-block {
    margin-bottom: 15px;
    padding: 30px;
    background-color: #E8F5FD;
    border-radius: 10px;
}

.activity-block h3 {
    margin-bottom: 20px;
    font-weight: 500;
    color: #1D9BF0;
}

.activity-block table tr {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-block table tr td {
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.5;
}

.activity-block table tr td:last-child {
    margin-bottom: 20px;
}

@media(min-width: 600px) {
    .activity-list {
        max-width: 650px;
        margin: 60px auto 0;
    }

    .activity-block table tr {
        flex-direction: row;
    }

    .activity-block table tr td:first-child {
        width: 190px;
    }

    .activity-block table tr td:last-child {
        width: calc(100% - 200px);
    }
}

@media(min-width:1025px) {
    #activity .inner {
        max-width: 1000px;
    }

    .activity-list .blue {
        font-size: 14px;
    }

    .activity-block table tr td {
        font-size: 14px;
    }
}

/*==================================================

    歯科医院一覧（各市共通）

===================================*/

#clinic .inner {
    padding-top: 60px;
}

/* 市カテゴリー */
#clinic .category-list,
#wheelchair .category-list {
    margin-bottom: 90px;
}

#clinic .category-list ul,
#wheelchair .category-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#clinic .category-list ul li,
#wheelchair .category-list ul li {
    width: calc(50% - 5px);
}

#clinic .category-list ul li a,
#clinic .category-list ul li span,
#wheelchair .category-list ul li a,
#wheelchair .category-list ul li span {
    display: block;
    text-align: center;
    color: #999;
    border: 2px solid #999;
    border-radius: 5px;
    letter-spacing: .05em;
    font-weight: 500;
    font-size: 1.125em;
    padding: 20px 0;
    transition: all .4s;
}

#clinic .category-list ul li.current span,
#clinic .category-list ul li a:hover,
#wheelchair .category-list ul li.current span,
#wheelchair .category-list ul li a:hover {
    color: #fff;
    border: 2px solid #1D9BF0;
    background-color: #1D9BF0;
}

/* リスト */
.clinic-block {
    margin-bottom: 90px;
}

.clinic-block ul li {
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.clinic-block h2 {
    margin-bottom: 30px;
    color: #1D9BF0;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 2px solid #1D9BF0;
    font-size: 1.5em;
}

.clinic-block .clinic-name {
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: .05em;
    line-height: 1.5;
    font-size: 1.25em;
}

.clinic-block .clinic-name a {
    color: #1D9BF0;
}

.clinic-block .clinic-name a i {
    display: inline-block;
    font-size: 14px;
    margin-left: 10px;
}

.clinic-block .clinic-address {
    line-height: 1.5;
    letter-spacing: .05em;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 5px;
}

.clinic-block .clinic-tel {
    font-weight: 500;
    letter-spacing: .05em;
    text-decoration: underline;
    transition: all 4s;
}

.clinic-block .clinic-tel:hover {
    color: #1D9BF0;
}

@media(min-width: 600px) {
    #clinic .category-list ul,#wheelchair .category-list ul {
        max-width: 850px;
        margin: 0 auto 90px;
    }

    .clinic-block ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .clinic-block ul li {
        width: calc(50% - 5px);
        margin-bottom: 15px;
    }
}

@media(min-width: 1025px) {
    #clinic .inner {
        max-width: 1000px;
    }

    #clinic .category-list ul,
    #wheelchair .category-list ul {
        justify-content: center;
    }

    #clinic .category-list ul li,
    #wheelchair .category-list ul li {
        width: calc(25% - 10px);
    }

    .clinic-block ul li {
        width: calc(33% - 5px);
        margin-bottom: 15px;
    }

    .clinic-block ul li h3 a {
        transition: all .4s;
    }

    .clinic-block ul li h3 a:hover {
        text-decoration: underline;
    }
}

/*==================================================

    障害者歯科診療

===================================*/

#handicapped .text-title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.25em;
    letter-spacing: .05em;
}

/* 探す */
.search-block {
    margin-top: 60px;
}

.search-block h2 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 1.5em;
    font-weight: bold;
    color: #1D9BF0;
    letter-spacing: .05em;
    border-bottom: 2px solid #1D9BF0;
}

.search-block ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-block ul li {
    width: calc(50% - 5px);
}

.search-block ul li a {
    display: block;
    padding: 20px 0;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #999;
    font-size: 1.125em;
    font-weight: 500;
    letter-spacing: .05em;
    color: #999;
    transition: all .4s;
}

.search-block ul li a:hover {
    color: #fff;
    background-color: #1D9BF0;
    border: 2px solid #1D9BF0;
}

.search-block.other {
    margin-bottom: 90px;
}

.search-block.other a {
    margin-bottom: 10px;
    display: block;
    letter-spacing: .05em;
    font-size: 1.125em;
    font-weight: 500;
    text-decoration: underline;
    transition: all .4s;
}

.search-block.other a:hover {
    color: #1D9BF0;
}

@media(min-width:1025px) {
    #handicapped .inner {
        max-width: 1000px;
    }

    .search-block ul li {
        width: 200px;
    }
}

/*==================================================

    車椅子受診可能な医院一覧（各市共通）

===================================*/

#wheelchair .inner {
    padding-top: 60px;
}

.wheelchair-clinic .clinic-list {
    display: flex;
    flex-wrap: wrap;
}

.wheelchair-clinic .clinic-list > li {
    width: 100%;
    margin-bottom: 60px;
}

.wheelchair-clinic .clinic-list li h2 {
    margin-bottom: 10px;
    font-size: 1.125em;
    font-weight: bold;
    letter-spacing: .05em;
}

.wheelchair-clinic .clinic-list li h2 a {
    color: #1D9BF0;
    transition: all .4s;
}

.wheelchair-clinic .clinic-list li h2 a:hover {
    text-decoration: underline;
}

.wheelchair-clinic .clinic-list li h2 a i {
    font-size: 14px;
    margin-left: 10px;
}

.wheelchair-clinic .clinic-list li .address {
    margin-bottom: 10px;
    letter-spacing: .05em;
    line-height: 1.5;
    font-weight: 500;
}

.wheelchair-clinic .clinic-list li .category {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.wheelchair-clinic .clinic-list li .category li .category-title {
    margin-bottom: 5px;
    margin-right: 15px;
    padding: 5px 12px;
    display: inline-block;
    background-color: #1D9BF0;
    color: #fff;
    border-radius: 5px;
    font-size: .85em;
    font-weight: 500;
}

.wheelchair-clinic .clinic-list li .accordion-area .title {
    position: relative;
    text-align: center;
    font-weight: 500;
    letter-spacing: .05em;
    color: #1D9BF0;
    border: 2px solid #1D9BF0;
    padding: 12px 0;
    cursor: pointer;
    transition: all .5s ease;
}

.wheelchair-clinic .clinic-list li .accordion-area .title::before,
.wheelchair-clinic .clinic-list li .accordion-area .title::after {
    position: absolute;
    content:"";
    width: 15px;
    height: 2px;
    background-color: #1D9BF0;
    top: 48%;
    right: 15px;
    transition: all .4s;
}

.wheelchair-clinic .clinic-list li .accordion-area .title::before {
    transform: rotate(0deg);
}

.wheelchair-clinic .clinic-list li .accordion-area .title::after {
    transform: rotate(90deg);
}

.wheelchair-clinic .clinic-list li .accordion-area .title.close::after {
    transform: rotate(0deg);
}

.wheelchair-clinic .clinic-list li .accordion-area .box {
    display: none;
    background-color: #E8F5FD;
    padding: 15px;
}

.wheelchair-clinic .clinic-list li .accordion-area .box .text {
    font-size: .85em;
}

@media(min-width: 600px) {
    #wheelchair .inner {
        padding-top: 90px;
    }
    .wheelchair-clinic .clinic-list {
        justify-content: space-between;
    }

    .wheelchair-clinic .clinic-list > li {
        width: calc(50% - 10px);
    }
}

@media(min-width: 1025px) {
    #wheelchair .inner {
        max-width: 1000px;
    }
}

/*==================================================

    歯の豆知識

===================================*/

#knowledge .inner {
    padding-top: 90px;
}

.knowledge-block {
    margin-bottom: 60px;
    text-align: center;
}

.knowledge-block h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    padding: 20px 30px;
    font-weight: bold;
    color: #1D9BF0;
    background-color: #E8F5FD;
    letter-spacing: .05em;
    font-size: 1.5em;
    text-align: center;
    border-radius: 5px;
}

.knowledge-block h2::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-color: #E8F5FD transparent transparent;
    translate: -50% 100%;
    border-width: 10px 10px 0 10px;
}

.knowledge-block .answer {
    padding: 30px;
    background-color: #FFFDE5;
    border-radius: 5px;
}

.knowledge-block .text {
    line-height: 1.7;
    font-size: 1em;
}

.knowledge-block .answer-img {
    margin-bottom: 20px;
}

@media(min-width: 600px) {
    .knowledge-block .answer {
        max-width: 700px;
        margin: 0 auto;
    }

    .knowledge-block .answer.flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .knowledge-block .answer.flex .answer-img,
    .knowledge-block .answer.flex .text {
        width: 48%;
    }
}

/*==================================================

    あさか向陽園障害者歯科診療所　診療案内

===================================*/

#medical-info .inner {
    padding-top: 90px;
}

.info-content {
    margin-bottom: 40px;
}

.info-content h2 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.5em;
    letter-spacing: .05em;
    color: #1D9BF0;
}

.info-content .text span {
    font-size: .85em;
}

.info-content .text.mb {
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.info-head {
    margin-bottom: 60px;
}

.info-detail table {
    width: 100%;
    border: 1px solid #ddd;
}

.info-detail table tr th {
    background-color: #E8F5FD;
    font-weight: bold;
}

.info-detail table tr th,
.info-detail table tr td {
    padding: 15px;
    border: 1px solid #ddd;
    line-height: 1.5;
    font-weight: 500;
}

.medical-list{
    margin-bottom: 60px;
    width: 100%;
}

.medical-list h3 {
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: .05em;
    font-size: 1.125em;
}

.medical-list table {
    border: 1px solid #ddd;
    width: 100%;
    margin-bottom: 15px;
}

.medical-list table tr th {
    background-color: #FFFDE5;
    font-weight: bold;
}

.medical-list table tr th,
.medical-list table tr td {
    padding: 10px;
    border: 1px solid #ddd;
    font-weight: 500;
}

.medical-list .text {
    font-size: .85em;
}

@media(min-width:1025px) {
    #medical-info .inner {
        max-width: 900px;
    }
    .info-head {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .info-content, .info-map {
        width: 48%;
    }

    .info-map iframe {
        height: 300px;
    }
}

/*==================================================

    歯のコンクール（ポスター）

===================================*/

#competition .inner {
    padding-top: 90px;
}

#competition h2 {
    margin-bottom: 60px;
    font-size: 1.5em;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: .05em;
}

/* 入賞以上 */

.exellence-award ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.exellence-award ul li {
    width: calc(50% - 5px);
    margin-bottom: 40px;
}

.exellence-award ul li .exellence {
    margin-bottom: 15px;
    font-size: 1.25em;
    letter-spacing: .05em;
    font-weight: bold;
    color: #F06A1D;
}

.exellence-award ul li .chairmans {
    margin-bottom: 15px;
    font-size: 1.25em;
    letter-spacing: .05em;
    font-weight: bold;
    color: #1D9BF0;
}

.award-img {
    margin-bottom: 10px;
}

.award-img a {
    width: 100%;
    height: 120px;
}

.award-img a img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

/* 入賞 */

.winning {
    margin-bottom: 60px;
}

.winning h3 {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.winning h3 span {
    padding: 0 20px;
    background-color: #fff;
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: .05em;
    font-weight: bold;
    color: #1D9BF0;
}

.winning h3::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    width: 100%;
    height: 1px;
    z-index: -1;
    background-color: #1D9BF0;
}

.winning ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.winning ul li {
    width: calc(50% - 5px);
    margin-bottom: 40px;
}

/* リンクボタン */

.link-btn {
    text-align: center;
}

.link-btn a {
    padding: 20px 60px;
    display: inline-block;
    color: #fff;
    background-color: #1D9BF0;
    letter-spacing: .05em;
    border-radius: 50px;
    transition: all .4s;
}

.link-btn a:hover {
    opacity: .6;
}

@media(min-width: 600px) {
    .award-img a ,
    .award-img a img{
        height: 250px;
    }

    .exellence, .chairmans {
        margin-bottom: 20px;
    }
}

@media(min-width: 1025px) {
    #competition .inner {
        max-width: 1000px;
    }

    #competition ul {
        gap: 30px;
    }

    #competition .exellence-award ul li,
    #competition .winning ul li {
        width: calc(31% - 5px);
    }

    .exellence-award {
        margin-bottom: 40px;
    }
}

/*==================================================

    歯のコンクール（標語）

===================================*/

.words-list {
    margin-bottom: 90px;
}

.words-list ul li {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
}

.words-list ul li:last-child {
    margin-bottom: 0;
}

.words-list ul li h3 {
    margin-bottom: 20px;
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.5;
}

.words-list ul li .text {
    text-align: end;
}

@media(min-width: 1025px) {
    .words-list ul li h3 {
        font-size: 1.5em;
    }

    .words-list ul li .text {
        font-size: 1.125em;
    }
}

/*==================================================

    サイトマップ

===================================*/

#sitemap .inner {
    padding: 90px 4%;
}

.page-list > li {
    margin-bottom: 30px;
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .05em;
}

.page-list li.has-item span,
.page-list li.has-item >a  {
    display: block;
    margin-bottom: 20px;
}

.page-list li.has-item ul li {
    padding-left: 30px;
    margin-bottom: 15px;
}

.page-list li a {
    transition: all .4s;
}

.page-list li a:hover {
    color: #1D9BF0;
}

/*==================================================

    20250709 事業コンテンツ追加

===================================*/

.specialty {
    background-color: #E8F5FD;
    padding: 30px 4%;
    border-radius: 10px;
    margin-bottom: 60px;
}

.specialty h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: .05em;
    color: #1D9BF0;
}

.specialty .clinic-block {
    margin-bottom: 0;
}

.specialty h3.clinic-name {
    font-size: 1em;
}

.specialty p.clinic-address,
.specialty a.clinic-tel {
    font-size: .85em;
}

.specialty .clinic-block .clinic-name a i {
    font-size: 12px;
}

@media (min-width: 1025px) {
    .specialty {
        max-width: 850px;
        margin: 0 auto 60px;
    }

    .specialty h2 {
        margin-bottom: 40px;
    }

    .specialty .clinic-block ul li {
        width: calc(50% - 15px);
    }
}