@charset 'UTF-8';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-size: 16px;
}

h1 {
    font-size: 26px;
}
h2 {
    font-size: 22px;
    margin: .5em 0;
    padding: .2em .5em;
    border-left: solid 5px #ff8f8f;
    border-bottom: solid 1px #ff8f8f;
}


.section-top {
    display: flex;
    justify-content: center;
    flex-direction: column;
	width: 200px;
    margin: 30px 0 20px;
    margin-inline: auto;
    border-bottom: solid 2px #aa1b49;
}

.section-top img {
    margin-inline: auto;
    width: 50px;
}

.section-caption {
    margin-inline: auto;
    font-size: 20px;
}

.section-caption-en {
    margin-inline: auto;
    color: #aa1b49;
    font-size: 14px;
}

.andmore {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0 50px;
}

.andmore a {
    display: inline-block;
    padding: 0 1.5em 0 2em;
    line-height: 2.5em;
    color: #ffffff;
    background-color: #aa1b49;
    text-decoration: none;
    border: solid 1px #aa1b49;
    border-radius: 1.5em;
    box-shadow: 5px 5px 5px #a8a8a8;
    cursor: pointer;
    transition: .2s;
}

.andmore a:hover {
    color: #aa1b49;
    background-color: #ffe6e6;
    border: solid 1px #aa1b4911;
    box-shadow: 7px 7px 7px #a8a8a8;
    transition: .2s;
}

.andmore a::after  {
    content: "　＞";
}


/* ヘッダー */

header {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 2px 2px #ffe6e688;
}

#header-blank {
    display: none;
}

#header {
    width: min(100%, 1200px);
    height: 150px;
    margin-inline: auto;
    padding: 5px 20px 2px;
    visibility: hidden; /* 初期状態で非表示 */
}

#header.js-active {
    visibility: visible; /* JavaScript動作後に表示 */
}

.header-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.header-logo {
    display: flex;
    justify-content: left;
    gap: 10px;
    width: 210px;
    height: 75px;
    cursor: pointer;
}

.header-sakura {
    width: 70px;
    height: 70px;
    margin: 0 100px 0 0;
}

.header-address p {
    text-align: right;
    line-height: 1.3em;
}

.header-address-telephone {
    display: flex;
    justify-content: right;
    align-items: center;
}

.header-address-telephone img {
    width: 25px;
    height: 25px;
}

.header-address-telephone a {
    display: inline-block;
    padding: 5px 0 0;
    color: #000000;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
}

.header-address-telephone a:hover {
    color: #aa1b49cc;
}

#header-menu {
    display: flex;
    justify-content: space-around;
    gap: 0px;
	padding: 10px 0 0;
    font-size: 16px;
}

#header-menu.blank {
    display: none;
}

#header-menu a {
    display: inline-block;
/*     width: 100%; */
    padding: .3em 1em;
    text-decoration: none;
    line-height: 1.4em;
    cursor: pointer;
    transition: .3s;
}

#header-menu a:hover {
    background-color: #ffe6e6;
    border-radius: 10px;
    transition: .3s;
}

.menu-caption {
    color: #000000;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

.menu-caption-en {
    color: #aa1b49;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}


#header-sp {
    display: none;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 75px;
    margin-inline: auto;
    box-shadow: 2px 2px 2px #ffe6e688;
    z-index: 90;
}

#header-top-sp {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: 75px;
    background-color: #ffffff;
}

.header-sakura-sp {
    width: 70px;
    height: 75px;
}

.header-logo-sp {
    width: 210px;
    height: 75px;
}

.header-sakura-sp img,
.header-logo-sp img {
    width: 100%;
}

.menu-caption-sp {
    color: #000000;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
}

.menu-caption-sp-en {
    color: #aa1b49;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
}


#header-burger {
    position: relative;
    width: 75px;
    height: 75px;
    padding: 10px;
    background-color: #aa1b49;
    cursor: pointer;
}

#header-burger span {
    position: absolute;
    content: "";
    display: inline-block;
    width: 40px;
    border-bottom: solid 2px #ffffff;
    transition: .2s;
}

#header-burger span:first-child {
    top: 25px;
    right: 15px;
}

#header-burger span:nth-child(2) {
    top: 35px;
    right: 15px;
}

#header-burger span:last-child {
    top: 45px;
    right: 15px;
}

#header-burger:hover span {
    transition: .2s;
}

#header-burger.on span:first-child {
    transform: translateY(10px) rotate(45deg);
}

#header-burger.on span:nth-child(2) {
    opacity: 0;
}

#header-burger.on span:last-child {
    transform: translateY(-10px) rotate(-45deg);
}


#burger-menu {
    position: absolute;
    content: "";
    top: 0;
    left: 105%;
    width: 100%;
    height: 100vh;
    margin: 75px 0 0;
    padding: 20px;
    background-color: #ffe6e6;
    overflow-x: hidden;
    transition: .2s;
    z-index: 99;
}

#burger-menu.open {
    left: 0;
    transition: .2s;
}

#burger-menu-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    padding: 50px;
    text-align: center;
}

#burger-menu-nav a {
    text-decoration: none;
    cursor: pointer;
}

#burger-menu-nav a:hover {
    background-color: #ff8f8f22;
    border-radius: 10px;
    box-shadow: 2px 2px 2px #a8a8a8;
}

.burger-menu-item {
    padding: 10px ;
}

.burger-menu-item a {
    text-decoration: none;
    cursor: pointer;
}

.burger-address p {
    text-align: center;
    line-height: 1.8em;
    font-size: 20px;
}

.burger-address-telephone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-address-telephone a {
    display: inline-block;
    padding: 5px 0 0;
    color: #000000;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
}

.burger-address-telephone a:hover {
    color: #aa1b49cc;
}

.burger-address-telephone img {
    width: 25px;
    height: 25px;
}



/* メイン */

body {
    background-image: url('./images/backgroud.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

main {
    width: 100%;
}

#upto {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 99;
    cursor: pointer;
    transition: .2s
}

#upto.upto-off {
    opacity: 0;
    transition: .2s
}

#upto:hover {
    transform: translateY(-5px);
    transition: .2s;
}

#upto-button {
    position: relative;
    display: flex;
    justify-content: right;
    margin: 30px 30px 50px 0;
    width: 30px;
    height: 30px;
    background-color: #aa1b49;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

#upto-button::after {
    position: absolute;
    content: "";
    top: 35%;
    right: 35%;
    width: 10px;
    height: 10px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(-45deg);
}


#mv {
    position: relative;
    width: 100%;
    height: calc(100vh - 150px);
}

#mv img {
    width: 100%;
    height: calc(100vh - 150px);
    vertical-align: bottom;
    object-fit: cover;
}

.mv-message {
    /* display: inline-block; */
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 90%;
    /* text-align: center; */
    text-shadow: 5px 5px 5px #a8a8a8;
    transform: translate(-50%, -50%);
}

.mv-message p {
    font-size: clamp(35px, 5vw, 70px);
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-shadow: 5px 5px 5px #8e8e8e;
}


#hour {
    width: min(100%, 1200px);
    margin-inline: auto;
    padding: 20px 100px;
}

.hour-area {
    width: 100%;
    margin: 30px 0 0;
    border: solid 2px #ffe6e6;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

.hour-content-head {
    display: grid;
    grid-template-columns: 4fr repeat(7, 1fr);
    grid-template-rows: 1fr;
    padding: 20px;
    background-color: #ffe6e6cc;
    border-bottom: solid 1px #8e8e8e;
    border-radius: 20px 20px 0 0;
}

.hour-content-head p {
    color: #aa1b49;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
}

.hour-content-inner {
    display: grid;
    grid-template-columns: 4fr repeat(7, 1fr);
    grid-template-rows: 1fr;
    padding: 20px;
    background-color: #ffffff22;
    border-bottom: solid 1px #8e8e8e;
}

.hour-content-inner p {
    /* display: inline-block; */
    padding: 5px 0;
    vertical-align: bottom;
    text-align: center;
    font-size: 22px;
}

.hour-content-inner img {
    /* display: inline-block; */
    width: 25px;
    margin-inline: auto;
    padding: 5px 0;
    vertical-align: bottom;
}

.hour-content-tail {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    padding: 20px 0;
    background-color: #ffffff22;
}

.hour-content-tail p {
    color: #aa1b49;
    text-align: center;
    font-size: 22px;
}

.hour-message {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 30px 0 0;
    padding: 30px;
    background-color: #ffffff22;
    border: solid 2px #ffe6e6;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

.hour-message-inner {
    width: 50%;
}

.hour-message-caption {
    padding: 0 0 .7em;
    color: #aa1b49;
    font-size: 22px;
    font-weight: 700;
}

.hour-message p {
    line-height: 1.8em;
}

.hour-message-time {
    display: flex;
    justify-content: left;
    column-gap: 15px;
    padding: 0 0 .3em;
}

.hour-message-time p {
    text-align: left;
}


#doctor {
    width: min(100%, 1300px);
    margin-inline: auto;
    padding: 0 50px;
}

.doctor-area {
    width: 100%;
    margin: 20px 0 0;
    background-color: #ffffff11;
    border: solid 1px #ff8f8f22;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

.doctor-message {
    padding: 20px 50px;
}

.doctor-message p {
    line-height: 2em;
}

.doctor-tail {
    padding: 0 100px;
    text-align: right;
}

.doctor-tail img {
    width: 180px;
}


#doctor-subpage {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 0 50px 20px
}

#doctor-subpage .doctor-area {
    width: 100%;
    padding: 0 0 50px;
    background-color: #ffffff11;
    border: solid 1px #ff8f8f22;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

.doctor-detail {
    display: flex;
    justify-content: space-around;
    margin-inline: auto;
    padding: 20px 50px 0;
}

.doctor-history p {
    line-height: 2em;
}

.doctor-name {
    padding: 0 0 .5em;
}

.doctor-picture img {
    width: 150px;
    text-align: right;
}


#medical {
    width: min(100%, 1200px);
    margin-inline: auto;
    padding: 50px 100px 20px;
}

.medical-boxarea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3;
    gap: 30px;
    width: 100%;
    margin: 30px 0px;
}

.medical-content {
    width: 100%;
    background-color: #ffffff22;
    border: solid 2px #ffe6e6;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
    padding: 20px 30px 50px;
}

.medical-content-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr;
    gap: 20px;
}

.medical-content-caption {
    display: flex;
    justify-content: left;
    align-items: center;
    color: #aa1b49;
}

.medical-content-caption::before {
    content: "●";
    font-size: 24px;
}

.medical-content-caption p {
    display: inline-block;
    font-size: 20px;
    line-height: 1em;
    padding: 10px 0;
}

.medical-content-inner p {
    padding: .2em 0;
    line-height: 1.8em;
}

.medical-content-image {
    display: flex;
    justify-content: right;
    align-items: start;
    min-width: 180px;
    max-width: 180px;
}

.medical-content-image img {
    width: 100%;
}

#medical-subpage {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 0 20px;
}

#medical-subpage .medical-boxarea {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 4;
}

#medical-subpage .medical-content-inner {
    grid-template-columns: 5fr 1fr;
    grid-template-rows: 1fr;
}


#news {
    width: min(100%, 1200px);
    margin-inline: auto;
    padding: 0 100px 50px;
}

.news-inner {
    width: 100%;
    margin: 20px 0 0;
    padding: 30px 20px 0;
    background-color: #ffe6e688;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

.news-inner-list {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: .5em;
    padding: 1em .5em;
    line-height: 1.3em;
    border-top: solid 1px #8e8e8e;
}

.news-inner-list:first-child {
    border-top: none;
}

.news-date {
    display: inline-block;
    padding: .2em .5em;
    width: 7em;
}

.news-category {
    display: inline-block;
    padding: .2em .5em;
    color: #ffffff;
    background-color: #ff8f8f;
    border-radius: .5em;
}

.news-title {
    display: inline-block;
    width: 50%;
    padding: .2em .5em;
    font-weight: 700;
}

.news-content {
    display: inline-block;
    width: auto;
    padding: .2em .5em;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-title a {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.news-content a {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.news-title a:hover,
.news-content a:hover {
    color: #4444bb;
    text-decoration: none;
}

.news-tail {
    padding: .2em;
}

#news-subpage {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 0 20px;
}

#news-subpage .news-inner {
    padding: 30px 50px 50px;
}

#news-singlepage {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 0 20px;
}

#news-singlepage .news-inner {
    padding: 30px 50px 50px;
}

.news-header {
    display: inline-block;
    width: 100%;
    padding: 0 0 .5em;
    border-bottom: solid 1px #a8a8a8;
}

.news-body p {
    line-height: 1.8em;
}


#column {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 0 100px 50px;
}

.column-inner {
    width: 100%;
    margin: 20px 0 0;
    padding: 30px 20px;
    background-color: #ffffff;
    border: solid 1px #ff8f8f22;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

.column-inner-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5em;
    padding: 1em .5em;
    line-height: 1.3em;
    border-top: solid 1px #8e8e8e;
}

.column-imagearea {
    width: 20%;
}

.column-imagearea img {
    width: 100%;
}

.column-textarea {
    width: 78%;
}

.column-inner-list:first-child {
    border-top: none;
}

.column-title {
    display: inline-block;
    padding: .2em .5em;
    font-weight: 700;
}

.column-date {
    display: inline-block;
    padding: .2em .5em;
}

.column-content {
    display: inline-block;
    width: auto;
    padding: .2em .5em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.column-title a {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.column-content a {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.column-title a:hover,
.column-content a:hover {
    color: #4444bb;
    text-decoration: none;
}

.column-tail {
    padding: .2em;
}

#column-subpage {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 0 20px;
}

#column-subpage .column-inner {
    padding: 30px 50px 50px;
    border: solid 1px #ffe6e6;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

#column-singlepage {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 0 20px;
}

#column-singlepage .column-inner {
    padding: 30px 50px 50px;
    box-shadow: none;
    border: solid 1px #ffe6e6;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

.column-header {
    display: inline-block;
    width: 100%;
    padding: 0 0 .5em;
    border-bottom: solid 1px #a8a8a8;
}

.column-body p {
    line-height: 1.8em;
}


#access {
    width: min(100%, 1300px);
    margin-inline: auto;
    padding: 0 50px 50px;
}

.access-content {
    width: 100%;
    margin: 20px 0 50px;
    padding: 10px 50px;
    background-color: #ffffff22;
    border: solid 1px #ff8f8f22;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #a8a8a8;
}

.access-content-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr;
    column-gap: 10px;
    padding: 0 0 30px;
}


.access-address-text {
    padding: 0 0 1em;
}

.access-address iframe {
    width: 95%;
    height: 300px;
}

.access-address,
.access-map {
    width: 100%;
}

.access-map img {
    width: min(100%, 400px);
}

.access-point {
    padding: 30px 0 10px;
    color: #aa1b49;
    font-size: 18px;
    font-weight: 700;
    line-height: 2em;
}

#access-subpage {
    width: min(100%, 1300px);
    margin-inline: auto;
    padding: 0px 50px 0;
}


.spacer {
    width: 100%;
    height: 0px;
}

.pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 10px;
}

.pagination li {
    padding: 0 10px;
}

.pagination ul a {
    color: #000000;
    cursor: pointer;
}

.pagination ul a:hover {
    color: #4444bb;
}

.post-link {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 30px 0 0;
    list-style: none;
}

.post-link a {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.post-link a:hover {
    color: #4444bb;
}


/* フッター */

footer {
    width: 100%;
    background-color: #ffe6e6;
    /* display: none; */
}

#footer-content {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding: 0 20px;
}

.footer-content-top {
    display: flex;
    justify-content: left;
    gap: 10px;
    width: 100%;
    padding: 15px 0 0;
    border-bottom: solid 2px #aa1b49;
}

.footer-content-top img:first-child {
    width: 160px;
    height: 50px;
}

.footer-content-top img:last-child {
    width: 50px;
    height: 50px;
}

.footer-content-under {
    display: flex;
    justify-content: left;
    gap: 20px;
    width: 100%;
    padding: 20px 0;
}

.footer-address {
    width: 50%;
}

.footer-address a {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.footer-address a:hover {
    color: #aa1b49cc;
}

#footer-menu {
    width: 50%;
}

#footer-menu a {
    display: inline-block;
    padding: .2em 1em 0;
    color: #000000;
    text-decoration: none;
    line-height: 1.8em;
    cursor: pointer;
}

#footer-menu a::after {
    content: "　＞"
}

#footer-menu a:hover {
    color: #ffffff;
    background-color: #aa1b4955;
    border-radius: 10px;
    box-shadow: 3px 3px 3px #8e8e8e;
}

.footer-menu-caption {
    position: relative;
    color: #000000;
    text-decoration: none;
}

.copyright {
    color: #ffffff;
    background-color: #aa1b49;
    text-align: center;
}

.copyright p {
    font-size: 12px;
    line-height: 3em;
}




/* レスポンシブ 1200px */

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

    #hour {
        padding: 30px 50px 0;
    }

    #doctor {
        padding: 50px 20px 0;
    }

    #medical {
        padding: 50px 50px 0;
    }



    .medical-boxarea {
        grid-template-columns: 1fr;
        grid-template-rows: 4
    }

    .medical-content-inner {
        grid-template-columns: 7fr 2fr;
        grid-template-rows: 1fr;
    }

    .medical-content-image {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 0;
    }

   
    #news {
        width: min(100%, 1200px);
        padding: 0 50px;
    }

    #column {
        width: min(100%, 1200px);
        padding: 0 50px;
    }

    #access {
        padding: 100px 30px 50px;
    }

}

/* レスポンシブ 800px */

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

    body {
        background-image: url('./images/backgroud_sp.png');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }
    
    #header {
        display: none;
    }

    #header-sp {
        display:block;
    }

    #mv {
        height: 100vh;
        margin: 0px 0 0;
        padding: 0;
    }

    #mv img {
        height: 100vh;
    }
    

    #hour {
        width: 100%;
        margin-inline: auto;
        padding: 0 20px;
    }

    .hour-message {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hour-message-inner {
        width: 100%;
    }
    
    .hour-message-time {
        justify-content: center;
    }
    
    .hour-message-time p:nth-child(2n+1) {
        text-align: right;
    }
    
    .hour-message-time p:nth-child(2n) {
        text-align: left;
    }


    #doctor {
        width: 100%;
        padding: 0 20px;
    }
    
    .doctor-message {
        padding: 20px 20px;
    }
    .doctor-tail {
        padding: 0 30px;
    }

    #doctor-subpage {
        width: 100%;
        margin-inline: auto;
        padding: 75px 20px 20px;
    }

    .doctor-detail {
        flex-direction: column-reverse;
        gap: 10px;
        padding: 20px 30px 25px;
    }

    .doctor-name {
        text-align: center;
    }

    .doctor-picture {
        text-align: center;
    }


    .medical-content {
        padding: 20px 20px 30px;
    }

    #medical {
        width: 100%;
        padding: 0px 30px 0;
    }

    .medical-content-inner {
        grid-template-columns: 1fr;
        grid-template-rows: 2;
    }

    .medical-content-image {
        margin-inline: auto;
    }

    .medical-content-image img {
        width: 100%; 
    }

    #medical-subpage {
        width: 100%;
        padding: 75px 20px;
    }

    #news {
        width: 100%;
        padding: 0 20px;
    }

    .news-inner {
        width: 100%;
        margin: 20px 0 0;
        padding: 20px 20px 0;
    }

    #news-subpage {
        width: 100%;
        padding: 75px 20px;
    }
    
    #news-subpage .news-inner {
        padding: 20px 20px;
    }

    #news-singlepage {
        width: 100%;
        padding: 75px 20px;
    }

    #news-singlepage .news-inner {
        padding: 20px 20px;
    }

    #column {
        width: 100%;
        padding: 0 20px;
    }

    .column-inner {
        flex-direction: column-reverse;
        width: 100%;
        margin: 20px 0 0;
        padding: 20px 20px 0;
    }

    .column-imagearea {
        width: 100%;
    }
    
    .column-imagearea img {
        width: 100%;
    }
    
    .column-textarea {
        width: 100%;
    }

    #column-subpage {
        width: 100%;
        padding: 75px 20px;
    }
    
    #column-subpage .column-inner {
        padding: 20px 20px;
    }

    #column-singlepage {
        width: 100%;
        padding: 75px 20px;
    }

    #column-singlepage .column-inner {
        padding: 20px 20px;
    }

    #access {
        padding: 0px 20px 0;
        text-align: center;
    }

    .access-content {
        width: 100%;
        margin: 20px 0 50px;
        padding: 10px 20px 0;
    }

    .access-content-inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        row-gap: 30px;
    }

    .access-address,
    .access-map {
        width: 100%;
        padding: 0 10px;
    }

    #access-subpage {
        padding: 75px 20px 0;
        text-align: center;
    }

    #footer-content {
        text-align: center;
    }

    .footer-content-top {
        justify-content: center;
    }

    .footer-content-under {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 0;
    }

    .footer-address {
        width: 100%;
    }
    
    #footer-menu {
        padding: 20px 0 0;
        width: 100%;
    }
}
 


/* レスポンシブ 600px */

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

    .hour-content-head {
        grid-template-columns: 4fr repeat(7, 1fr);
        padding: 15px 10px;
    }

    .hour-content-head p {
        font-size: 18px;
    }

    .hour-content-inner {
        grid-template-columns: 4fr repeat(7, 1fr);
        padding: 10px;
    }

    .hour-content-inner p {
        display: inline-block;
        padding: 5px 0;
        vertical-align: bottom;
        text-align: center;
        font-size: 16px;
        text-wrap: nowrap;
    }

    .hour-message-time {
        flex-direction: column;
        gap: 0;
    }
    
    .hour-message-time p:nth-child(2n+1) {
        text-align: center;
    }
    
    .hour-message-time p:nth-child(2n) {
        text-align: center;
    }
    
    .hour-content-inner img {
        display: inline-block;
        width: 17px;
        margin-inline: auto;
        padding: 8px 0;
        vertical-align: bottom;
    }

    .hour-content-tail p {
        font-size: 16px;
    }

    #medical {
        padding: 30px 20px 0;
    }

    .medical-content-inner {
        display: flex;
        justify-content: left;
        flex-direction: column;
        gap: 15px;
    }

    .medical-content-image {
        display: flex;
        justify-content: right;
        align-items: start;
        padding: 0 0 20px 20px;
        min-width: 250px;
        max-width: 250px;
        text-align: center;
    }

    .news-title {
        display: inline-block;
        width: 100%;
    }

}