:root {
  --bg-color: #e5e1de;
  --pri-color: #fc795e;
  --sec-color: #918682;
  --ter-color: #eee6de;
  --txt-color: #2f2f2f;
  --lig-bro: #f7f5f5;
  --white: #fefefe;
  --poppins: "Poppins";
 --zen-maru: "Zen Maru Gothic";
}
html {
  font-size: 62.5%;
  scroll-padding-top: 150px;
}
a:link,
a:active,
a:visited {
    color: var(--txt-color);
    transition: all .5s ease;
}
a:hover {
    color: var(--pri-color);
    opacity: 0.5;
}
img {
    display: block;
    margin: auto;
}
.head h2 {
    margin-bottom: 20px;
    width: auto;
}
h2 img {
    margin: 0;
}
h3 {
    margin-bottom: 50px;
}
section h3 img {
    margin: 0;
    width: auto;
}
body {
    background-color: var(--bg-color);
    color: var(--txt-color);
    font-family: "Noto Sans JP", "Zen Maru Gothic", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 1.6rem;
}
header {
    background-image: linear-gradient(0deg, transparent, var(--ter-color) 80%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
header .bar {
    align-items: center;
    background-color: var(--pri-color);
    border-radius: 0 0 10px 10px;
    color: var(--white);
    display: flex;
    font-size: 1.3rem;
    height: 40px;
    padding: 0 50px;
}
header .bar br {
    display: none;
}
header .container {
    align-items: center;
    display: flex;
    height: 122px;
    justify-content: space-between;
    padding: 0 50px;
}
header nav {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}
header nav a:hover {
    color: var(--pri-color);
    opacity: 1;
}
header nav .tel {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
    gap: 3px;
}
header .sp-menu {
    display: none;
}
footer {
    background-color: var(--sec-color);
    padding: 100px 100px 50px 100px;
}
footer .container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
footer .container img{
 margin: 0;
}
footer .container .address {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
footer .container .address a{
 display: flex;
 gap: 15px;
 align-items: center;
}
footer .container .address a > div{
 color: #fff;
}
footer .container .address a > div p:first-child{
 margin: 0 0 2px;
 font-size: 12px;
}
footer .container .address a > div p:nth-child(2){
 margin: 0 0 4px;
 font-weight: 500;
}
footer .container .address a > div p.en{
 font-size: 10px;
 font-weight: 500;
 font-family: var(--poppins);
}
footer .container .address-info{
 color: #fff;
}
footer .container .address-info > p{
 margin: 0 0 5px;
}
footer .container .address-info > div{
 display: flex;
 gap: 10px;
}
footer .container .address-info > div > p:first-child{
 position: relative;
 padding-right: 22px;
}
footer .container .address-info > div > p:first-child:after{
 position: absolute;
 content: "";
 width: 15px;
 height: 1px;
 background: #fff;
 transform: rotate(125deg);
 top: 0;
 bottom: 0;
 right: 0;
 margin: auto;
}
footer .container .address-info > div > p:first-child a{
 color: #fff;
}
footer .container .access{
 color: #fff;
 font-size: 13px;
 line-height: 1.8;
}
footer .container .address > a:last-child{
 width: fit-content;
 border: solid 1px #FEFEFE;
 border-radius: 20px;
 padding: 10px 24px;
 color: #fff;
 font-size: 14px;
}
footer .container .navi {
    display: flex;
    gap: 20px;
}
footer .container .navi a:link,
footer .container .navi a:active,
footer .container .navi a:visited {
    color: var(--white);
    transition: all .5s ease;
}
footer .container .navi a:hover {
    opacity: .5;
}
footer .container .navi li {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .container .navi .sub {
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .container .navi .sub a:link,
footer .container .navi .sub a:active,
footer .container .navi .sub a:visited {
    color: var(--ter-color);
    transition: all .5s ease;
}
footer .container .navi .sub a:hover {
    opacity: .5;
}
footer .container .navi .sub li {
    background-image: url("../img/common/list-disc.svg");
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    padding-left: 23px;
}
footer .copylight {
    color: var(--white);
    font-family: var(--poppins);
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
}
@media screen and (max-width: 1140px) {
    h3 {
        margin-bottom: 30px;
    }
    header .bar {
        font-size: 1.2rem;
        height: 60px;
        padding: 0 20px;
    }
    header .bar br {
        display: block;
    }
    header .container {
        height: 90px;
        padding: 0 25px;
    }
    header .logo img {
        height: 50px;
        width: auto;
    }
    header nav {
        display: none;
    }
    header .sp-menu {
        display: flex;
        gap: 10px;
    }
    header .sp-menu .btn-tel {
        align-items: center;
        background-color: var(--pri-color);
        border-radius: 5px;
        display: flex;
        height: 45px;
        justify-content: center;
        width: 45px;
    }
    header .hamburger {
        align-items: center;
        background-color: var(--pri-color);
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 6px;
        height: 45px;
        justify-content: center;
        width: 45px;
        z-index: 50;
    }
    header .hamburger span {
        background-color: var(--white);
        height: 1px;
        transition: 0.5s;
        width: 10px;
    }
    header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    }
    header .hamburger.active span:nth-child(2) {
    opacity: 0;
    }
    header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    }
    header .menu {
        background-color: var(--bg-color);
        box-sizing: border-box;
        height: calc(100vh - 150px);
        opacity: 0;
        overflow-x: scroll;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 20px 30px 50px;
        pointer-events: none;
        position: fixed;
        right: 0;
        top: 150px;
        transition: opacity 0.5s ease;
        width: 100%;
        z-index: 10;
    }
    header .menu.open {
        opacity: 1;
        pointer-events: auto;
    }
    header .menu .navi {
        font-size: 1.4rem;
        margin: 0 auto 30px;
        max-width: 390px;
        width: 100%;
    }
    header .menu .navi > li {
        border-bottom: 1px solid var(--lig-bro);
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    header .menu .navi > li:first-of-type {
        border-top: 1px solid var(--lig-bro);
    }
    header .menu .navi .sub {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    header .menu .navi .sub li {
        background-image: url("../img/common/list-disc-b.svg");
        background-position: 10px center;
        background-repeat: no-repeat;
        background-size: 8px 8px;
        padding-left: 23px;
    }
    footer {
        padding: 60px 30px 50px;
    }
    footer .container {
        flex-direction: column;
        margin-bottom: 50px;
    }
    footer .container .address {
        margin-bottom: 50px;
    }
 footer .container .address-info > p{
  font-size: 14px;
  margin: 0 0 10px;
 }
 footer .container .address-info > div,
 footer .container .address-info > div > p:first-child a{
  font-size: 14px;
 }
    footer .container .navi {
        flex-direction: column;
        gap: 0;
        margin: auto;
        max-width: 390px;
        width: 100%;
    }
    footer .container .navi > li {
        border-bottom: 1px solid var(--ter-color);
        padding: 20px;
    }
    footer .container .navi > li:first-of-type {
        border-top: 1px solid var(--ter-color);
    }
    footer .copylight {
        font-size: 1rem;
    }
}
@media screen and (max-width: 768px) {
    section.lower h2 {
        margin-left: auto;
        margin-right: auto;
        max-width: 290px;
        width: 100%;
    }
    section.lower h3 {
        margin-left: auto;
        margin-right: auto;
        max-width: 290px;
        width: 100%;
    }
}
main {
    margin-top: 162px;
}
main .visual {
    display: flex;
    height: calc(100svh - 162px);
    justify-content: space-between;
    position: relative;
}
main .visual .txt {
   left: 100px;
   position: relative;
   top: 100px;
   width: fit-content;
   z-index: 10;
}
main .visual .img {
    border-radius: 310px 0 0 310px;
    background-image: url("../img/top/fv.webp");
    background-position: center top 20%;
    height: 100%;
    max-height: 620px;
    max-width: 1040px;
    position: relative;
    width: 100%;
}
main .visual .img .scroll-down {
    bottom: 100px;
    left: 0;
    position: absolute;
}
main .loop-text {
    position: absolute;
    bottom: 0;
}
@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
main .loop-text .scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    width: 100vw;
}
main .loop-text .scroll-infinity__list {
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
main .loop-text .scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.8s both;
}
main .loop-text .scroll-infinity__item {
    flex: 0 0 auto;
}
main .loop-text .scroll-infinity__item > img {
    display: block;
    height: 88px;
    width: auto;
}
main.lower img {
    height: 100%;
    max-block-size: fit-content;
    max-inline-size: fit-content;
    width: 100%;
}
section {
    padding: 150px 0;
}
section .wrap {
    margin: auto;
    max-width: 1140px;
    width: 100%;
}
.more-btn {
    height: auto;
    max-width: 140px;
}
#btn-area {
    padding: 100px 0 0;
}
#btn-area ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}
#about-clinic {
    padding: 120px 0 150px;
}
#about-clinic ul {
    display: flex;
    justify-content: space-between;
}
#about-clinic ul .txt {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
#about-clinic ul li.txt h3{
 margin: 0;
}
#about-clinic ul li.txt div{
 display: grid;
 gap: 20px;
}
#about-clinic ul li.txt div p{
 line-height: 2;
}
#menu {
    background-color: var(--pri-color);
}
#menu ul {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
}
#menu ul li {
    align-self: center;
    display: flex;
    flex: 1;
    justify-content: center;
    position: relative;
}
#menu ul li::before {
    background-color: var(--white);
    bottom: 0;
    content: '';
    display: block;
    height: 100px;
    left: 0;
    margin: auto;
    top: 0;
    position: absolute;
    width: 1px;
}
#menu ul li:first-of-type:before {
    display: none;
}
#clinic .clinic-col{
 display: flex;
 gap: 70px;
 justify-content: space-between;
}
#clinic .clinic-col > div{
 width: 100%;
}
#clinic .clinic-col > div h4:after{
 content: none;
}
#clinic .clinic-col > div table.time tr:first-child th:first-child{
 width: 140px;
}
#news {
    background-color: var(--lig-bro);
}
#news .tit-area {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
#news .tit-area img {
    margin: 0;
}
#news .tit-area a > img{
 max-width: 140px;
}
#news .tit-area p{
 font-family: var(--zen-maru);
 font-size: 24px;
 font-weight: 500;
 line-height: 1.3;
}
#news .tit-area p span{
 display: block;
 margin: 10px 0 0;
 color: #FC795E;
 font-family: var(--poppins);
 font-size: 14px;
 font-weight: 500;
 line-height: 1.5;
}
#news .tit-area a.link-btn{
 color: #FC795E;
 padding: 10px 34px;
 border: solid 1px #FC795E;
 border-radius: 20px;
 font-family: var(--poppins);
 font-size: 14px;
 font-weight: 500;
}
#news .news-list {
    display: flex;
    flex-direction: column;
}
#news .news-list dl {
    align-items: center;
    background-image: repeating-linear-gradient(90deg, var(--sec-color), var(--sec-color) 1px, transparent 1px, transparent 6px), repeating-linear-gradient(90deg, var(--sec-color), var(--sec-color) 1px, transparent 1px, transparent 6px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    display: flex;
    gap: 30px;
    padding: 25px;
}
#news .news-list dl:last-of-type {
  background-position: left top, left bottom;
  background-repeat: repeat-x, repeat-x;
  background-size: 100% 1px, 100% 1px;
}
#news .news-list dl dd.cat{
 background: #2F2F2F;
 color: #fff;
 border-radius: 20px;
 padding: 2px 12px;
 font-size: 13px;
}
#news .news-list a:link,
#news .news-list a:visited,
#news .news-list a:active {
    text-decoration: underline;
}
#news .news-list a:hover {
    opacity: 1;
}
@media screen and (min-width: 1440px) {
    main .visual .img {
        border-radius: 450px 0 0 450px;
        max-height: 858px;
        max-width: 1440px;
    }
    main .visual .img .scroll-down {
        bottom: 150px;
    }
}
@media screen and (max-width: 1140px) {
    main {
        margin-top: 150px;
    }
    main .visual {
        flex-direction: column;
        height: calc(100svh - 150px);
        justify-content: normal;
        max-height: 520px;
    }
    main .visual .txt {
        height: 120px;
        left: 30px;
        top: 30px;
    }
    main .visual .txt img {
        max-height: 155px;
        max-width: 276px;
    }
    main .visual .img {
        border-radius: 500px 0 0 500px;
        margin-left: 30px;
        max-height: 365px;
        max-width: none;
        width: calc(100% - 30px);
    }
    main .visual .img .scroll-down {
        bottom: 50px;
        height: 100px;
        width: 100px;
    }
    main .loop-text .scroll-infinity__item > img {
        height: 58px;
    }
    section {
        padding: 80px 0;
    }
    section .wrap {
        max-width: 390px;
    }
    #btn-area {
        padding: 30px 0 0;
    }
    #btn-area ul {
        align-items: center;
        flex-direction: column;
        gap: 5px;
    }
    #btn-area ul li img {
        height: auto;
        max-width: 310px;
    }
    #about-clinic {
        padding: 50px 0 80px;
    }
    #about-clinic ul {
        flex-direction: column;
    }
    #about-clinic ul .txt {
        padding: 0 30px;
    }
    #about-clinic ul .txt img {
        height: auto;
    }
    #about-clinic ul .img {
        margin-top: 80px;
    }
    #menu ul {
        flex-wrap: wrap;
        gap: 60px 0;
        max-width: 390px;
        padding: 0 30px;
    }
    #menu ul li::before {
        display: none;
    }
    #menu ul li img {
        height: auto;
        max-width: 140px;
    }
    #clinic {
        padding: 80px 30px;
    }
    #news {
        padding: 80px 30px;
    }
    #news .tit-area img {
        height: 38px;
        width: auto;
    }
    #news .news-list {
        font-size: 1.4rem;
    }
    #news .news-list dl {
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
    }
}
@media screen and (max-width: 768px) {
 main .visual .img {
  max-height: 365px;
 }
 #news .tit-area {
  margin-bottom: 30px;
 }
 #news .tit-area p{
  font-size: 18px;
  line-height: 1.5;
 }
 #news .tit-area p span{
  margin: 5px 0 0;
  font-size: 12px;
 }
 #about-clinic ul .txt img{
  margin: 0;
 }
 #clinic .clinic-col{
  display: block;
 }
 #clinic .clinic-col > div.hours{
  margin: 0 0 50px;
 }
}
main.lower {
    padding: 0 0 160px;
}
section#head {
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 1240px;
    padding: 50px 50px 30px;
    width: 100%;
}
section#head .title h2{
 font-size: 40px;
 font-weight: 500;
 font-family: var(--zen-maru);
}
section#head .title h2 span{
 display: block;
 margin: 20px 0 0;
 color: #FC795E;
 font-family: var(--poppins);
 font-size: 16px;
 font-weight: 500;
 line-height: 1.3;
}
section#head .breadcrumbs {
    display: flex;
    justify-content: end;
}
section#head .breadcrumbs img {
    margin: 0;
}
section#head .breadcrumbs ul{
 display: flex;
 gap: 15px;
}
section#head .breadcrumbs ul li{
 display: flex;
 align-items: center;
 max-height: 19px;
}
section#head .breadcrumbs ul li:not(:last-child){
 padding: 0 15px 0 0;
 border-right: solid 1px #918682;
}
section#head .breadcrumbs ul li,
section#head .breadcrumbs ul li a{
 font-size: 13px;
}
section.lower {
    background-color: var(--lig-bro);
    border-radius: 30px;
    margin: auto;
    max-width: 1240px;
    padding: 80px;
    width: 100%;
}
section.lower h3:nth-child(n+2) {
    margin-top: 80px;
}
section.lower + section.lower {
    margin-top: 80px;
}
section#message h3 {
 margin: 0 0 30px;
 font-family: var(--zen-maru);
 font-size: 24px;
 color: #FC795E;
}
section#message .text{
 margin: 0 0 30px;
}
section#message .text p{
 line-height: 1.8;
}
section#message .text p:not(:last-child){
 margin: 0 0 20px;
}
section#message .principal{
 display: flex;
 justify-content: flex-end;
 gap: 20px;
}
section#message .principal .p-text{
 font-weight: 500;
 text-align: right;
}
section#message .principal .p-text p:first-child{
 margin: 0 0 5px;
 font-size: 14px;
}
section#message .principal .p-text p:last-child{
 font-size: 18px;
}
section#message .principal img{
 width: fit-content;
 max-width: 150px;
 margin: 0;
}
section h3{
 margin: 0 0 50px;
 font-family: var(--zen-maru);
 font-size: 24px;
 font-weight: 500;
}
section h3 span{
 display: block;
 margin: 10px 0 0;
 color: #FC795E;
 font-family: var(--poppins);
 font-size: 14px;
}
section h4{
 display: flex;
 position: relative;
 align-items: center;
 gap: 10px;
 font-family: var(--zen-maru);
 font-size: 18px;
 font-weight: 500;
 margin: 0 0 20px;
}
section h4:after{
 content: '';
 flex: 1;
 height: 1px;
 background-image: radial-gradient(circle, #FC795E 1px, transparent 1px);
 background-size: 5px 1px;
 background-repeat: repeat-x;
 background-position: center;
}
section .hours{
 margin: 0 0 80px;
}
section .hours dl{
 display: flex;
 gap: 20px;
 align-items: center;
}
section .hours dl dt{
 background: #918682;
 border-radius: 5px;
 color: #fff;
 padding: 7px 22px;
 font-family: var(--zen-maru);
 font-size: 18px;
 font-weight: 500;
}
section .hours dl dd{
 display: flex;
 gap: 15px;
}
section .hours dl.hours-weekdays{
 margin: 0 0 15px;
}
section .hours dl.hours-weekdays dd p:first-child{
 position: relative;
 padding-right: 27px;
}
section .hours dl.hours-weekdays dd p:first-child:after{
 position: absolute;
 content: "";
 width: 12px;
 height: 1px;
 background: #707070;
 transform: rotate(145deg);
 top: 0;
 bottom: 0;
 right: 0;
 margin: auto;
}
section .hours .hours-attention{
 font-size: 13px;
 line-height: 1.8;
 margin: 20px 0 30px;
}
section#about .map {
 display: flex;
 justify-content: space-between;
 margin: 0 0 80px;
}
section#about .info{
 display: flex;
 flex-wrap: wrap;
 width: 100%;
 gap: 80px 30px;
 margin: 0 0 80px;
}
section#about .info li{
 width: calc((100% - 30px) / 2);
}
section#about .info li p{
 line-height: 2;
}
section#about .guide .floor{
 margin: 0 0 80px;
}
section#about .guide .floor dl{
 display: flex;
 gap: 30px;
}
section#about .guide .floor dl:not(:last-child){
 margin: 0 0 10px;
}
section#about .guide .floor dl dt,
section#about .guide .floor dl dd{
 line-height: 2;
}
section#about .map .txt .txt-01{
 margin: 0 0 15px;
}
section#about .map .txt .txt-01 > p{
 margin: 0 0 5px;
}
section#about .map .txt .txt-01 .contact{
 display: flex;
 gap: 10px;
}
section#about .map .txt .txt-01 .contact p:first-child{
 position: relative;
 padding-right: 27px;
}
section#about .map .txt .txt-01 .contact p:first-child:after{
 position: absolute;
 content: "";
 width: 12px;
 height: 1px;
 background: #707070;
 transform: rotate(145deg);
 top: 0;
 bottom: 0;
 right: 0;
 margin: auto;
}
section#about .map .txt > p{
 line-height: 2;
}
section#about .facilities > p{
 margin: 0 0 30px;
}
section#about .facilities ul{
 width: 100%;
 display: flex;
 flex-wrap: wrap;
 gap: 50px 40px;
}
section#about .facilities ul li{
 width: calc((100% - 120px) / 4);
}
section#about .facilities ul li img{
 width: 100%;
 margin: 0 0 15px;
 border-radius: 5px;
}
section#about .facilities ul li p{
 margin: 0 0 0 15px;
}
section#about .facilities ul li p span{
 display: block;
 margin: 5px 0 0;
 font-size: 14px;
}
section#treatment .outpatient{
 margin: 0 0 80px;
}
table.time{
 width: 100%;
 text-align: center;
 border: solid 1px #918682;
 border-collapse: separate;
 border-spacing: 0;
 border-radius: 5px;
 overflow: hidden;
 margin: 0 0 20px;
}
table.time th,
table.time td{
 padding: 15px 0;
 vertical-align: middle;
}
table.time tr:first-child th:first-child{
 width: 270px;
}
table.time tr:first-child th,
table.time tr th:first-child{
 font-weight: 500;
 line-height: 2;
}
table.time tr:first-child th{
 border-bottom: solid 1px #918682;
}
table.time tr.dashed td{
 content: '';
 flex: 1;
 height: 1px;
 background-image: radial-gradient(circle, #918682 1px, transparent 1px);
 background-size: 5px 1px;
 background-repeat: repeat-x;
 background-position: bottom left;
}
table.time + .attention{
 font-size: 13px;
}
section#treatment .reservation{
 margin: 0 0 80px;
}
section#treatment .reserve img {
 margin: auto;
}
section#treatment .doctor .doctor-list .dl-col{
 display: flex;
 gap: 50px;
}
section#treatment .doctor .doctor-list .dl-col:not(:last-child){
 margin: 0 0 50px;
}
section#treatment .doctor .doctor-list .dl-col img{
 max-width: 220px;
 margin: 0;
 border-radius: 10px;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box{
 margin: 20px 0 0;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .name{
 display: flex;
 margin: 0 0 20px;
 align-items: center;
 gap: 10px;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .name .position{
 font-size: 14px;
 font-weight: 500;
 line-height: 1;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .name .name-jp{
 position: relative;
 padding-right: 18px;
 font-size: 24px;
 font-weight: 500;
 line-height: 1.8;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .name .name-jp:after{
 position: absolute;
 content: "";
 width: 8px;
 height: 1px;
 background: #707070;
 transform: rotate(145deg);
 top: 0;
 bottom: 0;
 right: 0;
 margin: auto;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .name .name-en{
 color: #FC795E;
 font-family: var(--poppins);
 font-size: 14px;
 font-weight: 500;
 line-height: 1;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .profile{
 display: flex;
 flex-wrap: wrap;
 gap: 30px 50px;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .profile > div > p{
 width: fit-content;
 background: #918682;
 color: #fff;
 border-radius: 5px;
 padding: 5px 11px;
 font-size: 14px;
 margin: 0 0 10px;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .profile > div ul li{
 position: relative;
 padding-left: 18px;
 font-size: 14px;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .profile > div ul li:not(:last-child){
 margin: 0 0 8px;
}
section#treatment .doctor .doctor-list .dl-col .dl-r-box .profile > div ul li:before{
 position: absolute;
 content: "";
 width: 8px;
 height: 8px;
 background: #918682;
 border-radius: 100%;
 top: 0;
 bottom: 0;
 left: 0;
 margin: auto;
}
section#inspection .mammography .txt{
 margin: 0 0 50px;
}
section#inspection .mammography .txt p{
 line-height: 1.8;
}
section#inspection .mammography .txt p:not(:last-child){
 margin: 0 0 20px;
}
section#inspection .mammography .img{
 display: flex;
 gap: 40px;
 margin: 0 50px;
}
section#inspection .mammography .img div img{
 border-radius: 5px;
}
section#inspection .mammography .img div p{
 margin: 15px 0 0 15px;
}
section#inspection .ultrasonography > div:not(:last-child){
 margin: 0 0 50px;
}
section#inspection .ultrasonography > div > div:not(:last-child){
 margin: 0 0 30px;
}
section#inspection .ultrasonography div h5{
 margin: 0 0 15px;
 color: #FC795E;
 font-family: var(--zen-maru);
 font-weight: bold;
}
section#inspection .ultrasonography div p{
 line-height: 1.8;
}
section#inspection .ultrasonography .img{
 display: flex;
 gap: 40px;
 margin: 50px 50px 0;
}
section#inspection .ultrasonography .img div img{
 border-radius: 5px;
 margin: 0 0 15px;
}
section#inspection .ultrasonography .img div p{
 margin: 15px 0 0 15px;
}
.job-description .tab{
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 margin: 0 0 50px;
}
.job-description .tab-btn{
 min-width: 140px;
 cursor: pointer;
 border: solid 1px #FC795E;
 border-radius: 20px;
 color: #FC795E;
 padding: 10px 35px;
 text-align: center;
 font-size: 14px;
 transition: all .5s ease;
}
.job-description .tab-btn:hover,
.job-description .tab-btn.active{
 background: #FC795E;
 color: #fff;
 transition: all .5s ease;
}
.job-description .tab-content{
 display: none;
}
.job-description .tab-content.active{
 display: block;
}
.job-description .tab-content dl dt{
 color: #FC795E;
 min-width: 80px;
}
.job-description .tab-content .entry-btn{
 width: fit-content;
 display: block;
 margin: 50px auto 0;
 padding: 27px 60px;
 border: solid 1px #FC795E;
 border-radius: 40px;
 color: #FC795E;
 font-family: var(--zen-maru);
 font-size: 18px;
 font-weight: bold;
 transition: all .5s ease;
}
.job-description .tab-content .entry-btn:hover{
 opacity: 1;
 background: #FC795E;
 color: #fff;
 transition: all .5s ease;
}
section#news-info.lower .link {
    margin: 50px 0 20px;
}
section#news-info h3{
 margin: 0 0 20px;
 padding: 0 0 20px;
 font-family: var(--zen-maru);
 font-size: 24px;
 font-weight: 500;
 line-height: 1.25;
 background: linear-gradient(to right, #918682, #918682 1px, transparent 1px, transparent 5px);
 background-size: 5px 1px;
 background-position: left bottom;
 background-repeat: repeat-x;
}
section#news-info .info{
 display: flex;
 gap: 20px;
 justify-content: flex-end;
 margin: 0 0 50px;
}
section#news-info .info .cat{
 background: #2F2F2F;
 color: #fff;
 padding: 3px 12px;
 border-radius: 12px;
 font-size: 13px;
}
section#news-info .link-btn{
 display: block;
 width: fit-content;
 margin: 80px auto 0;
 padding: 10px 35px;
 color: #FC795E;
 border: solid 1px #FC795E;
 border-radius: 20px;
 font-size: 14px;
}
section#news-info .contents > *:last-child{
 margin-bottom: 0;
}
section#news-info .contents p{
 margin: 0 0 30px;
 line-height: 1.8;
}
section#news-info .wp-block-group{
 border: solid 1px #FC795E;
 border-radius: 10px;
 padding: 30px;
 margin: 0 0 50px;
}
section#news-info h4{
 color: #FC795E;
 margin: 0 0 10px;
 font-size: 18px;
 font-family: var(--zen-maru);
 font-weight: 500;
}
section#news-info h5{
 display: flex;
 position: relative;
 align-items: center;
 gap: 10px;
 font-family: var(--zen-maru);
 font-size: 18px;
 font-weight: 500;
 margin: 0 0 20px;
}
section#news-info h5:after{
 content: '';
 flex: 1;
 height: 1px;
 background-image: radial-gradient(circle, #FC795E 1px, transparent 1px);
 background-size: 5px 1px;
 background-repeat: repeat-x;
 background-position: center;
}
section#news-info h6{
 font-family: var(--zen-maru);
 font-weight: bold;
 color: #FC795E;
 margin: 0 0 15px;
}
section#news-info ul{
 list-style: disc;
 margin: 0 0 30px;
 padding: 0 0 0 28px;
}
section#news-info ul li:not(:last-child){
 margin: 0 0 10px;
}
section#news-info ul li::marker{
 color: #918682;
}
section#news-info .wp-block-group ul{
 margin: 0;
}
section#news-info .wp-block-group ul li::marker{
 color: #FC795E;
}
section#news-info img{
 margin: 0 auto 50px;
}
section#news-info .contents a{
 color: #FC795E;
 text-decoration: underline;
 word-break: break-all;
}
main#notfound {
    padding: 80px 0 160px;
}
main#notfound img {
    margin: auto;
}
.pc{
 display: block;
}
.sp{
 display: none;
}
@media screen and (max-width: 768px) {
 .pc{
  display: none;
 }
 .sp{
  display: block;
 }
    main.lower {
        padding: 0;
    }
    section#head {
        padding: 30px 30px 20px;
    }
 section#head .title h2{
  font-size: 20px;
 }
 section#head .title h2 span{
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
 }
    section#head .breadcrumbs {
        display: none;
    }
    section.lower {
        border-radius: 10px;
        margin: 0 20px;
        padding: 50px 30px;
        width: calc(100% - 40px);
    }
    section.lower + section.lower {
        margin-top: 50px;
    }
 section#message h3{
  font-size: 18px;
  line-height: 1.8;
 }
 section#message .text p{
  font-size: 14px;
 }
 section#message .principal{
  display: grid;
  gap: 10px;
 }
 section#message .principal .p-text{
  order: 2;
  display: grid;
 }
 section#message .principal .p-text p:first-child{
  order: 2;
  margin: 5px 0 0;
  font-size: 13px;
 }
 section#message .principal .p-text p:last-child{
  font-size: 16px;
 }
 section#message .principal img{
  margin: 0 0 0 auto;
 }
 section h3 span{
  margin: 5px 0 0;
  font-size: 12px;
 }
 section h4{
  font-size: 16px;
  margin: 0 0 15px;
 }
 section .hours dl{
  gap: 10px;
 }
 section .hours dl dt{
  padding: 3px 24px;
  font-size: 16px;
  white-space: nowrap;
 }
 section .hours dl dd{
  gap: 10px;
  font-size: 14px;
 }
 section .hours dl.hours-weekdays dd p:first-child{
  padding-right: 22px;
 }
 section .hours .hours-attention{
  margin: 15px 0;
 }
 section .hours{
  margin:  0 0 30px;
 }
 section#about .info{
  display: block;
  margin: 0 0 30px;
 }
 section#about .info li{
  width: 100%;
 }
 section#about .info li:not(:last-child){
  margin: 0 0 30px;
 }
 section#about .info li p{
  font-size: 14px;
  line-height: 1.8;
 }
 section#about .guide .floor{
  margin: 0 0 40px;
 }
 section#about .guide .floor dl{
  display: block;
 }
 section#about .guide .floor dl:not(:last-child){
  margin: 0 0 15px;
 }
 section#about .guide .floor dl dt,
 section#about .guide .floor dl dd{
  font-size: 14px;
  line-height: 1.8;
 }
 section#about .map {
  flex-direction: column;
  gap: 20px;
  margin: 0 0 40px;
 }
 section#about .map iframe {
  height: 290px;
  margin: auto;
  max-width: 290px;
  width: 100%;
 }
 section#about .map .txt .txt-01 > p{
  margin: 0 0 15px;
  font-size: 14px;
 }
 section#about .map .txt .txt-01 .contact{
  display: block;
 }
 section#about .map .txt .txt-01 .contact p:first-child{
  position: unset;
  padding: 0;
  margin: 0 0 5px;
 }
 section#about .map .txt .txt-01 .contact p:first-child:after{
  position: unset;
  content: none;
 }
 section#about .map .txt > p{
  font-size: 14px;
  line-height: 1.8;
 }
 section#about .facilities > p{
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 20px;
 }
 section#about .facilities ul{
  gap: 30px 10px;
 }
 section#about .facilities ul li{
  width: calc((100% - 10px) / 2);
 }
 section#about .facilities ul li img{
  margin: 0 0 10px;
 }
 section#about .facilities ul li p{
  font-size: 14px;
  margin: 0 0 0 10px;
 }
 section#about .facilities ul li p span{
  font-size: 12px;
 }
    section#news.lower {
        border-radius: 0;
        margin: 50px 0 0;
        width: 100%;
    }
    main.lower.newslist {
        padding-bottom: 50px;
    }
    main.lower.newslist section#news.lower {
        border-radius: 10px;
        margin: 50px auto 0;
        width: calc(100% - 40px);
    }
    main.lower.news-info {
        padding-bottom: 50px;
    }
 section#news-info h3{
  margin: 0 0 15px;
  padding: 0 0 15px;
  font-size: 18px;
  line-height: 1.5;
 }
 section#news-info h4{
  font-size: 16px;
  line-height: 1.7;
 }
 section#news-info h5{
  font-size: 16px;
 }
 section#news-info .info{
  gap: 13px;
  margin: 0 0 30px;
  align-items: center;
 }
 section#news-info .info .date{
  font-size: 14px;
 }
 section#news-info .contents p{
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 20px;
 }
 section#news-info .link-btn{
  margin: 40px auto 0;
  font-size: 13px;
 }
 section#news-info .wp-block-group{
  padding: 20px;
  margin: 0 0 30px;
 }
 section#news-info ul{
  margin: 0 0 20px;
 }
 section#news-info ul li{
  font-size: 14px;
 }
 section#news-info ul li:not(:last-child){
  margin: 0 0 8px;
 }
 section#news-info img{
  margin: 0 auto 30px;
 }
 section h3{
  margin: 0 0 30px;
  font-size: 18px;
 }
 section#treatment .outpatient,
 section#treatment .reservation{
  margin: 0 0 40px;
 }
 table.time{
  margin: 0 0 15px;
 }
 table.time th,
 table.time td{
  padding: 10px 5px;
  font-size: 12px;
  white-space: nowrap;
 }
 table.time tr:first-child th:first-child{
  width: auto;
 }
 section#treatment .doctor .doctor-list .dl-col{
  display: block;
 }
 section#treatment .doctor .doctor-list .dl-col:not(:last-child){
  margin: 0 0 40px;
 }
 section#treatment .doctor .doctor-list .dl-col img{
  max-width: unset;
 }
 section#treatment .doctor .doctor-list .dl-col .dl-r-box .name .name-jp{
  font-size: 20px;
  line-height: 1;
 }
 section#treatment .doctor .doctor-list .dl-col .dl-r-box .name .name-en{
  font-size: 12px;
 }
 section#treatment .doctor .doctor-list .dl-col .dl-r-box .profile{
  gap: 20px 0;
 }
 section#treatment .doctor .doctor-list .dl-col .dl-r-box .profile > div ul li{
  line-height: 1.5;
 }
 section#inspection .mammography .txt{
  margin: 0 0 40px;
 }
 section#inspection .mammography .txt p{
  font-size: 14px;
 }
 section#inspection .mammography .img{
  display: block;
  margin: 0;
 }
 section#inspection .mammography .img div:first-child{
  margin: 0 0 20px;
 }
 section#inspection .mammography .img div p{
  margin: 10px 0 0;
  font-size: 14px;
 }
 section#inspection .ultrasonography > div:not(:last-child){
  margin: 0 0 40px;
 }
 section#inspection .ultrasonography > div > div:not(:last-child){
  margin: 0 0 20px;
 }
 section#inspection .ultrasonography div p{
  font-size: 14px;
 }
 section#inspection .ultrasonography .img{
  display: block;
  margin: 30px 0 0;
 }
 section#inspection .ultrasonography .img > div:first-child{
  margin: 0 0 20px;
 }
 section#inspection .ultrasonography .img div img{
  margin: 0 0 10px;
 }
 section#inspection .ultrasonography .img div p{
  margin: 10px 0 0;
 }
 main.lower.job-description{
  padding: 0;
 }
 main.lower.job-description section#news.lower{
  width: 100%;
  margin: 50px 0 0;
  border-radius: 0;
 }
 .job-description .tab{
  margin: 0 0 30px;
 }
 .job-description .tab-btn{
  padding: 10px 15px;
  min-width: 100px;
 }
 .job-description #news .news-list dl{
  display: block;
 }
 .job-description #news .news-list dl dt,
 .job-description #news .news-list dl dd{
  line-height: 1.7;
 }
 .job-description #news .news-list dl dt{
  margin: 0 0 10px;
  font-weight: bold;
 }
 .job-description .tab-content .entry-btn{
  width: 100%;
  margin: 40px 0 0;
  padding: 20px;
  text-align: center;
  font-size: 14px;
 }
}
