@charset "utf-8";
/*
theme Name: chokyu-clinic
Description: 長久天満診療所のテーマです
version： 1.0
*/

/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Noto Sans JP", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
    font-size: 62.5%;
    color: #333;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 500;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
    height: auto;
}

ul {
    list-style-type: none;
}

.bold {
    font-weight: bold;
}

#container {
    overflow-x: hidden;
}

@media screen and (max-width:768px) {
    body {
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	common
----------------------------------------*/

.c-inner1200 {
    width: 1200px;
    margin: auto;
}

.c-inner1300 {
    width: 1300px;
    margin: auto;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.75;
}

.c-button {
    text-align: center;
    display: block;
    width: 290px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    background-color: #333;
    color: #fff;
    position: relative;
    font-weight: bold;
    transition: all 0.3s;
    border-radius: 100px;
    background-color: #fff;
    color: #50C8B0;
}

.c-button span:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 14px;
    border-color: transparent transparent transparent #50C8B0;
    margin: 0 0 0 10px;
}

.color {
    color: #333;
}

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

.lookforward-close-btn {
    display: none;
}

/* 初期状態 */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

/* 表示時 */
.js-fade.is-show {
    opacity: 1;
    transform: translateY(0);
}

.js-delay01 { transition-delay: .1s; }
.js-delay02 { transition-delay: .4s; } 
.js-delay03 { transition-delay: .7s; }
.js-delay04 { transition-delay: 1.0s; }
.js-delay05 { transition-delay: 1.3s; }

@media screen and (min-width: 821px) {
    .c-button:hover {
        background-color: #50C8B0;
        color: #fff;
    }

    .c-button:hover span::after {
        border-color: transparent transparent transparent #fff;
        transform: translateX(4px);
    }
}

@media screen and (max-width:1400px) {
    .c-inner1200 {
        width: 100%;
        padding: 0 4.5%;
    }

    .c-inner1300 {
        width: 100%;
        padding: 0 4%;
    }
}

@media screen and (max-width:768px) {
    .c-text {
        font-size: 1.4rem;
    }

    .c-button {
        width: 200px;
        height: 45px;
        font-size: 1.4rem;
    }

    .c-inner1200 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner1300 {
        width: 100%;
        padding: 0 3.5%;
    }
}

/*----------------------------------------
	animation
----------------------------------------*/

.appear {
    transform-origin: center top;
    animation: show 1s both;
}

span.appear {
    display: inline-block;
}

.d1 {
    animation-delay: 0.5s;
}

.d2 {
    animation-delay: 1s;
}

.d3 {
    animation-delay: 1.5s;
}

.d4 {
    animation-delay: 2s;
}

.d5 {
    animation-delay: 2.5s;
}

.d6 {
    animation-delay: 3s;
}

.d8 {
    animation-delay: 3.5s;
}

.d10 {
    animation-delay: 10s;
}

.d12 {
    animation-delay: 12s;
}

@keyframes show {
    0% {
        transform: translate(0, 2em);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.scroll_up__mv {
    transition: 0.8s ease-in-out;
    transform: translate(-50%, -35%);
    opacity: 0;
}

.scroll_up__mv.on {
    transform: translate(-50%, -50%);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}

/*----------------------------------------
	l-header
----------------------------------------*/

.l-header {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s ease;
    background-color: #fff;
}

.l-header__inner {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
}

.l-header__logo a {
    display: flex;
    align-items: center;
    font-size: 1.97vw;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.l-header__logo a span {
    display: block;
    font-size: 1.6rem;
    margin: 0 0 0 20px;
    font-weight: 500;
    color: #50C8B0;
}

.l-header__mainContent {
    display: flex;
    align-items: center;
}

.l-header__gnavWrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    margin: 0 45px 0 0;
}

.l-header__gnav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.l-header__gnavTime {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin: 0 0 17px;
}

.l-header__gnavTime p:not(:last-child) {
    margin: 0 20px 0 0;
}

.l-header__gnavLists {
    display: flex;
    align-items: center;
}

.l-header__gnavList a {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 500;
    font-size: 0.885vw;
    letter-spacing: 0.04em;
    color: #333333;
    padding: 0 17px;
}

.l-header__gnavList:not(:last-child) a {
    border-right: 1px solid #333333;
}

.l-header__gnavList:last-child a {
    padding-right: 0;
}

.l-header__gnavTel {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    color: #50C8B0;
    font-weight: 700;
}

.l-header__gnavTel .tel-number {
    display: block;
    font-size: 3.8rem;
    border-bottom: 1px solid #50C8B0;
    padding: 0 0 10px;
    margin: 0 0 5px;
}

.l-header__gnavTel .tel-number:before {
    content: "";
    display: inline-block;
    background-image: url(images/contact_icon.svg);
    width: 35px;
    height: 35px;
    margin: 0 5px 0 0;
    background-size: 100%;
}

.l-header__gnavTel .tel-note {
    font-weight: 500;
    color: #333333;
}

.l-header__gnavTel .tel-note span {
    color: #50C8B0;
}

.input-hidden {
    display: none;
}

.hamburger-demo-cover {
    display: none;
}

.l-header__gnavListSP {
    display: none;
}

@media screen and (min-width:1001px) {
    .l-header__gnavLists li a {
        transition: .3s;
        padding-bottom: 0 0 12px;
    }

    .l-header__gnavLists li.current a,
    .l-header__gnavLists li a:hover {
        color: #50C8B0;
    }

    .l-header__gnavLists li a::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: #50C8B0;
        transition: all .3s;
        transform: scale(0, 1);
        transform-origin: left top;
    }

    .l-header__gnavLists li.current a::after,
    .l-header__gnavLists li a:hover::after {
        transform: scale(1, 1);
    }
}

@media screen and (max-width:1500px) {
    .l-header__gnavList a {
        font-size: 1vw;
        padding: 0 10px;
    }

    .l-header__inner {
        padding: 0 30px 0px 25px;
    }

    .l-header__logo a span {
        font-size: 1.3rem;
        margin: 0px 0px 0px 10px;
    }

    .l-header__gnavTel .tel-number {
        font-size: 3rem;
    }

    .l-header__gnavTel .tel-note {
        font-size: 1.5rem;
    }

    .l-header__gnavTel .tel-number::before {
        width: 25px;
        height: 25px;
    }

    .l-header__gnavWrap {
        margin: 0px 15px 0px 0px;
    }
}

@media screen and (max-width:1100px) {
    .l-header__gnavSp {
        display: flex;
    }

    .l-header__right {
        display: none;
    }

    #l-header {
        height: 70px;
    }

    .l-header__inner {
        padding: 0 0 0 35px;
    }

    .l-header__gnavLists {
        flex-direction: column;
    }

    .l-header__gnavList {
        width: 100%;
        height: auto;
    }

    .l-header__gnavList_en {
        font-size: 2rem;
        color: #333;
        margin: 0 0 7px 0;
    }

    .l-header__gnavList_jp {
        font-size: 1.8rem;
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0;
    }

    .l-header__gnavLists li > a {
        display: flex;
        flex-direction: column;
    }

    .l-header__gnavList a {
        font-size: 1.7rem;
    }

    .l-header__gnavLists li.has-child > a {
        position: relative;
    }

    .l-header__gnavLists li.has-child > a:after {
        content: '';
        position: absolute;
        right: 40px;
        width: 12px;
        height: 12px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
        transform: rotate(135deg) translateY(-50%);
    }

    .l-header__gnavLists li.has-child.active > a:after {
        transform: rotate(-45deg);
    }

    nav ul li a {
        padding: 10px 20px;
        border-bottom: 1px dashed #ccc;
    }

    .nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li:first-child a {
        border-top: 1px dashed #ccc;
    }

    nav ul li li a {
        padding: 0;
    }

    .input-hidden {
        display: none;
    }

    .hamburger-demo-switch {
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        width: 70px;
        height: 70px;
        background-color: #50C8B0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding-top: 8px;
    }

    .hamburger-switch-line1,
    .hamburger-switch-line1-before,
    .hamburger-switch-line1-after {
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 100px;
        transition: .3s;
        position: static;
        transform: none;
    }

    .hamburger-demo-switch::after {
        content: "メニュー";
        font-size: 1.1rem;
        color: #fff;
        letter-spacing: 0.08em;
        margin-top: 4px;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch {
        justify-content: center;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1,
    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-before,
    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-after {
        position: absolute;
        top: 50%;
        left: 50%;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1 {
        width: 0;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-before {
        transform: rotate(45deg) translate(-40%, 325%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-after {
        transform: rotate(-45deg) translate(-40%, -325%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch::after {
        opacity: 0;
    }

    .l-header__gnav {
        position: fixed;
        height: 100vh;
        background: #fafafa;
        padding: 5em 3% 2em;
        z-index: 9998;
        transition: .3s;
        overflow-y: scroll;
        justify-content: flex-start;
        align-items: center;
        top: 0;
        left: 100%;
        width: 80%;
    }

    .l-header__gnavLists {
        width: 100%;
        margin-right: 3%;
        padding-left: 5% !important;
        list-style: none;
        margin-bottom: 40px;
    }

    .l-header__gnavLists li a {
        text-decoration: none;
        color: #333;
        padding: 1.6em 0;
    }

    .l-header__gnav {
        position: fixed;
        height: 100vh;
        background: #fafafa;
        padding: 5em 3% 2em;
        z-index: 9998;
        transition: .3s;
        overflow-y: auto;
        top: 0;
        height: 100vh;
        z-index: 9998;
        left: 100%;
        width: 80%;
    }

    #hamburger-demo1:checked ~ .l-header__mainContent .l-header__gnav {
        left: 20%;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-cover {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 9997;
        background: rgba(0, 0, 0, .5);
        display: block;
    }

    .l-header__gnavList > a {
        height: auto;
    }

    .l-header__gnavLists li a {
        padding: 1.5em 0;
    }

    .l-header__gnavTime {
        display: none;
    }

    .l-header__gnavTel {
        display: none;
    }

    .l-header__logo a {
        font-size: 2.5rem;
    }

    .l-header__gnavList:not(:last-child) a {
        border-right: none;
    }

    .l-header__gnavListSP {
        display: block;
        width: 100%;
    }

    .l-header__gnavListTime {
        margin-top: 20px;
        font-size: 1.4rem;
        line-height: 1.6;
        color: #333;
    }

    .l-header__gnavListTel {
        margin-top: 20px;
        border-top: 1px solid #ddd;
        text-align: center;
    }

    .l-header__gnavListTel .tel-number {
        display: inline-block;
        font-size: 2.6rem;
        font-weight: 700;
        color: #50C8B0;
        border-bottom: 2px solid #50C8B0;
        padding-bottom: 6px;
        margin-bottom: 8px;
    }

    .l-header__gnavListTel .tel-number::before {
        content: "";
        display: inline-block;
        background-image: url(images/contact_icon.svg);
        width: 28px;
        height: 28px;
        background-size: 100%;
        background-repeat: no-repeat;
        margin: 0 10px 0 0;
    }

    .l-header__gnavListTel .tel-note {
        font-size: 1.3rem;
        color: #333;
    }
}

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

    #l-header {
        height: 55px;
    }

    .hamburger-demo-switch {
        width: 55px;
        height: 55px;
    }

    .hamburger-demo-switch::after {
        font-size: 1rem;
                margin-top: 0px;
    }

    .l-header__gnav {
        padding: 4em 3% 2em;
    }

    .l-header__gnavList a {
        font-size: 1.5rem;
    }

    .l-header__inner {
        padding: 0 15px;
    }

    .l-header__gnavList {
        width: 100%;
    }

    .l-header__gnavList_en {
        font-size: 1.3rem;
        margin: 0 0 5px 0;
    }

    .l-header__gnavList_jp {
        font-size: 1.5rem;
    }

    .l-header__gnavLists li.has-child > a:after {
        right: 8px;
        width: 8px;
        height: 8px;
    }

    .l-header__gnavLists li a {
        padding: 0.9em 0;
    }

    .l-header__gnavWrap {
        flex-direction: column;
    }

    .l-header__logo a {
        font-size: 5vw;
    }

    .l-header__logo a span {
        font-size: 1rem;
    }

    .l-header__gnavListTime {
        font-size: 1.3rem;
    }

    .l-header__gnavListTel .tel-number {
        font-size: 2.2rem;
    }

    .l-header__gnavListTel .tel-note {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .l-header__gnavListTel .tel-number::before {
        width: 22px;
        height: 22px;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
    width: 100%;
    padding: 74px 0 15px;
    background-image: url(images/footer_bg.jpg);
}

.l-footerLogo {
    display: flex;
    align-items: center;
    font-size: 4rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #fff;
    margin: 0 0 33px;
}

.l-footerLogo span {
    display: block;
    font-size: 2rem;
    margin: 0 0 0 20px;
    font-weight: 500;
    color: #fff;
}

.l-footerWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.l-footerNav {
    width: 250px;
}

.l-footerNav li {
    border-bottom: 1px solid #fff;
}

.l-footerNav li:not(:last-child) {
    margin: 0 0 22px;
}

.l-footerNav li a {
    text-align: right;
    display: block;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #fff;
    padding: 0 0 6px;
    line-height: 1.5;
}

.l-footerCopyright {
    font-size: 1.4rem;
    text-align: center;
    margin: 87px 0 0;
    color: #fff;
}

.l-footerAddress {
    font-size: 2rem;
    color: #fff;
    margin: 0 0 14px;
}

.l-footerTel {
    font-size: 2rem;
    color: #fff;
    margin: 0 0 24px;
}

.l-footerTime {
    font-size: 2rem;
    line-height: 1.45;
}

.l-footerTime:not(:last-child) {
    margin: 0 0 20px;
}

.l-footerTime p {
    color: #fff;
}

.l-footerPayment {
    margin-top: 20px; 
}

.l-footerPayment__box {
    display: inline-block; 
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 15px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
}

.l-footerPayment__main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.l-footerPayment__icon {
    background: #fff;
    color: #58c9b9;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.l-footerPayment__text {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.02em;
}

.l-footerPayment__note {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 1.6rem;
    color: #fff;
    opacity: 0.8;
    text-align: left;
}

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

    .l-footer {
        padding: 64px 0 15px;
    }

    .l-footerLogo {
        font-size: 3.6rem;
    }

    .l-footerNav li a {
        font-size: 2.2rem;
    }
}

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

    .l-footerWrap {
        align-items: flex-start;
    }

    .l-footerNav {
        width: 220px;
    }

    .l-footerNav li a {
        font-size: 2rem;
    }

    .l-footerAddress,
    .l-footerTel,
    .l-footerTime {
        font-size: 1.8rem;
    }

    .l-footerCopyright {
        margin-top: 60px;
    }
    
    .l-footerPayment {
        text-align: left;
    }
}

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

    .l-footer {
        padding: 64px 0 15px;
    }

    .l-footerLogo {
        font-size: 3.6rem;
    }

    .l-footerNav li a {
        font-size: 2.2rem;
    }
}

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

    .l-footerWrap {
        align-items: flex-start;
    }

    .l-footerNav {
        width: 220px;
    }

    .l-footerNav li a {
        font-size: 2rem;
    }

    .l-footerAddress,
    .l-footerTel,
    .l-footerTime {
        font-size: 1.8rem;
    }

    .l-footerCopyright {
        margin-top: 60px;
    }
}

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

    .l-footer {
        padding: 54px 0 15px;
    }

    .l-footerWrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .l-footerLogo {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .l-footerLogo span {
        font-size: 1.3rem;
        margin-left: 14px;
    }

    .l-footerNav {
        width: 100%;
        margin-top: 40px;
    }

    .l-footerNav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        margin: 0;
    }

    .l-footerNav li:not(:last-child) {
        margin: 0;
    }

    .l-footerNav li a {
        text-align: left;
        font-size: 1.8rem;
        padding: 16px 36px 16px 0;
        position: relative;
    }

    .l-footerNav li a:after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: translateY(-50%) rotate(45deg);
    }

    .l-footerAddress,
    .l-footerTel,
    .l-footerTime {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .l-footerCopyright {
        margin-top: 50px;
        font-size: 1.2rem;
    }
    
    .l-footerPayment__icon {
        width: 20px;
        height: 20px;
    }
    
    .l-footerPayment__text {
        font-size: 1.8rem;
    }
    
    .l-footerPayment__note {
        font-size: 1.4rem;
    }    
}

/*----------------------------------------
	topCommon
----------------------------------------*/

.c-topTitle {
    text-align: left;
    margin: 0 0 34px;
}

.c-topTitle h2 {
    font-size: 3.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
}

.c-topTitle h2 span {
    display: flex;
    align-items: center;
}

.c-topTitle h2 span:before {
    content: "";
    display: inline-block;
    width: 33px;
    height: 13px;
    background-image: url(images/top_title_deco.svg);
    margin: 0 13px 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
}

.c-topTitle p {
    font-size: 2rem;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    color: #50C8B0;
    padding: 0 0 0 46px;
}

@media screen and (max-width: 1300px) {
    .c-topTitle h2 {
        font-size: 3.2rem;
        margin-bottom: 12px;
    }

    .c-topTitle h2 span:before {
        width: 28px;
        height: 11px;
        margin-right: 10px;
    }

    .c-topTitle p {
        font-size: 1.8rem;
        padding-left: 40px;
    }
}

@media screen and (max-width: 820px) {
    .c-topTitle {
        margin-bottom: 28px;
    }

    .c-topTitle h2 {
        font-size: 2.6rem;
        margin-bottom: 5px;
    }

    .c-topTitle h2 span:before {
        width: 24px;
        height: 9px;
        margin-right: 8px;
    }

    .c-topTitle p {
        font-size: 1.6rem;
        padding-left: 32px;
    }
}

@media screen and (max-width: 590px) {
    .c-topTitle {
        margin-bottom: 22px;
    }

    .c-topTitle h2 {
        font-size: 2.2rem;
        line-height: 1.4;
    }

    .c-topTitle h2 span:before {
        width: 20px;
        height: 8px;
        margin-right: 6px;
    }

    .c-topTitle p {
        font-size: 1.4rem;
        padding-left: 26px;
    }
}

/*----------------------------------------
	topMv
----------------------------------------*/

.p-topMv {
    background-size: cover;
    background-image: url(images/mv.jpg);
    width: 100%;
    height: 93.5vh;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
}

.p-topMv__catch {
    font-size: 4.4rem;
    line-height: 1.75;
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 39%;
    left: 5.15%;
}

.p-topMv__news {
    width: 45%;
    max-width: 864px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #F2FBF9;
    border-radius: 20px 0 0 0;
    padding: 29px 34px 19px 46px;
}

.p-topMv__news article:not(:last-child) {
    margin: 0 0 15px;
}

.p-topMv__newsTitleWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
    position: relative;
}

.p-topMv__newsTitleWrap:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 10px;
    background-image: url(images/top_title_deco.svg);
    margin: 0 14px 0 0;
    background-size: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.p-topMv__newsTitleWrap h2 {
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    padding: 0 0 0 38px;
    color: #525252;
}

.p-topMv__newsTitleWrap h2 span {
    font-size: 1.4rem;
    color: #50C8B0;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    margin: 0 0 0 10px;
}

.p-topMv__newsText a {
    display: flex;
    align-items: center;
}

.p-topMv__newsTime {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #51C7B0;
    margin: 0 10px 0 0;
}

.p-topMv__newsCategory {
    border: 1px solid #51C7B0;
    color: #51C7B0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}

.p-topMv__newsTitle {
    font-size: 1.8rem;
    color: #333;
    opacity: 0.85;
    margin: 0 0 0 30px;
}

.p-topMv__newsAll {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
}

.p-topMv__newsAll:after {
    content: "";
    display: inline-block;
    background-image: url(images/button_arrow.svg);
    width: 30px;
    height: 30px;
    margin: 0 0 0 10px;
}

@media screen and (max-width: 1500px) {
    .p-topMv__catch {
        font-size: 4rem;
        top: 38%;
    }

    .p-topMv__news {
        width: 50%;
    }
}

@media screen and (max-width: 1300px) {
    .p-topMv {
        height: 90vh;
    }

    .p-topMv__news {
        width: 58%;
        padding: 24px 28px 18px 34px;
    }

    .p-topMv__newsTitleWrap h2 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 820px) {
    .p-topMv {
        height: 80vh;
        margin: 0px 0px 120px;
        background-image: url(images/top_mv_sp.jpg);
    }

    .p-topMv__catch {
        font-size: 3rem;
        top: 30%;
        left: 6%;
        line-height: 1.6;
    }

    .p-topMv__news {
        width: 90%;
        right: 50%;
        transform: translateX(50%);
        border-radius: 20px 20px 0 0;
        bottom: -140px;
    }

    .p-topMv__newsTitle {
        margin-left: 16px;
    }
}

@media screen and (max-width: 590px) {
    .p-topMv {
        height: 75vh;
    }

    .p-topMv__catch {
        font-size: 6vw;
        line-height: 1.5;
        top: 31%;
        left: 5%;
        right: 5%;
    }

    .p-topMv__news {
        width: 100%;
        max-width: none;
        padding: 20px 16px 16px;
        border-radius: 20px 20px 0 0;
    }

    .p-topMv__newsText a {
        flex-wrap: wrap;
    }

    .p-topMv__newsTitle {
        width: 100%;
        margin: 8px 0 0;
        font-size: 1.4rem;
    }

    .p-topMv__newsTime {
        font-size: 1.3rem;
    }

    .p-topMv__newsCategory {
        font-size: 1.3rem;
    }

    .p-topMv__newsAll {
        font-size: 1.4rem;
    }

    .p-topMv__newsAll::after {
        width: 15px;
        height: 15px;
        margin: 0px 0px 0px 6px;
        flex-shrink: 0;
        background-size: 100%;
    }

    .p-topMv__newsTitleWrap h2 {
        font-size: 1.8rem;
    }

    .p-topMv__newsTitleWrap h2 span {
        font-size: 1.2rem;
    }
}

/* -------------------------------------------
 * topContents
 * ------------------------------------------- */

.p-topContents {
    margin: 0 0 90px;
    padding: 90px 0 0;
    position: relative;
}

.p-topContents:before {
    content: "";
    width: 100%;
    height: 243px;
    background-color: #F2FBF9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.p-topContents ul {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    max-width: 1136px;
}

.p-topContents ul li {
    width: 47.7%;
    border-radius: 30px;
    padding: 0 0 32px;
}

.p-topContents ul li:nth-of-type(1) {
    border: 1px solid #03B8C3;
}

.p-topContents ul li:nth-of-type(2) {
    border: 1px solid #01B38F;
}

.p-topContents ul li .c-button {
    margin: 0 auto;
    color: #fff;
}

.p-topContents ul li:nth-of-type(1) .c-button {
    background-color: #03B8C3;
}

.p-topContents ul li:nth-of-type(2) .c-button {
    background-color: #01B38F;
}

.p-topContents ul li .c-button span:after {
    border-color: transparent transparent transparent #fff;
}

.p-topContents ul li h2 {
    font-size: 3.6rem;
    letter-spacing: 0.04em;
    color: #fff;
    height: 210px;
    border-radius: 30px 30px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.p-topContents ul li:nth-of-type(1) h2 {
    background-image: url(images/top_medical01.jpg);
}

.p-topContents ul li:nth-of-type(2) h2 {
    background-image: url(images/top_medical02.jpg);
}

.p-topContents ul li a .c-text {
    text-align: center;
    margin: 0 0 27px;
}

@media screen and (min-width: 821px) {

    .p-topContents ul li {
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .p-topContents ul li:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .p-topContents ul li h2 {
        transition: transform 0.4s ease;
    }

    .p-topContents ul li:hover h2 {
        transform: scale(1.05);
    }

    .p-topContents ul li:nth-of-type(1):hover .c-button {
        background-color: #029fa8;
    }

    .p-topContents ul li:nth-of-type(2):hover .c-button {
        background-color: #019a7b;
    }

    .p-topContents ul li .c-button span::after {
        transition: transform 0.3s ease;
    }

    .p-topContents ul li:hover .c-button span::after {
        transform: translateX(4px);
    }
}

@media screen and (max-width: 1500px) {
    .p-topContents {
        margin-bottom: 80px;
        padding-top: 80px;
    }

    .p-topContents:before {
        height: 220px;
    }

    .p-topContents ul {
        padding: 0 20px;
    }

    .p-topContents ul li {
        width: 48%;
        padding-bottom: 28px;
    }

    .p-topContents ul li h2 {
        font-size: 3.2rem;
        height: 190px;
        margin-bottom: 26px;
    }
}

@media screen and (max-width: 820px) {
    .p-topContents {
        margin-bottom: 70px;
        padding-top: 70px;
    }

    .p-topContents:before {
        height: 200px;
    }

    .p-topContents ul {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .p-topContents ul li {
        width: 100%;
        padding-bottom: 30px;
    }

    .p-topContents ul li h2 {
        font-size: 3rem;
        height: 180px;
        margin-bottom: 24px;
    }

    .p-topContents ul li a .c-text {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 590px) {
    .p-topContents {
        margin-bottom: 60px;
        padding-top: 60px;
    }

    .p-topContents:before {
        height: 160px;
    }

    .p-topContents ul {
        gap: 30px;
        padding: 0 16px;
    }

    .p-topContents ul li {
        border-radius: 20px;
        padding-bottom: 24px;
    }

    .p-topContents ul li h2 {
        font-size: 2.4rem;
        height: 115px;
        border-radius: 20px 20px 0 0;
        margin-bottom: 20px;
    }

    .p-topContents ul li a .c-text {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

/* -------------------------------------------
 * topBeginner
 * ------------------------------------------- */

.p-topBeginner {
    background: transparent linear-gradient(107deg, #5ED9D3 0%, #71D8C5 100%) 0% 0% no-repeat padding-box;
    margin: 0 0 70px;
    padding: 54px 0;
}

.p-topBeginner__box {
    max-width: 1136px;
    margin: 0 auto;
    padding: 37px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-topBeginner__box:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #80D0C7;
    opacity: 0.62;
    mix-blend-mode: multiply;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
}

.p-topBeginner__box h2 {
    font-size: 3.2rem;
    writing-mode: vertical-rl;
    margin: 0 80px 0 0;
    padding: 36px 26px;
    background-color: #fff;
    color: #03B8C3;
    position: relative;
    border-radius: 100px;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.p-topBeginner__box ul li {
    font-size: 2rem;
    letter-spacing: 0.04em;
    line-height: 1.75;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: flex;
    align-items: baseline;
}

.p-topBeginner__box ul li:not(:last-child) {
    margin: 0 0 25px;
}

.p-topBeginner__box ul li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 16px 0 0;
    flex-shrink: 0;
}

@media screen and (max-width: 1500px) {
    .p-topBeginner {
        margin-bottom: 60px;
        padding: 48px 0;
    }

    .p-topBeginner__box {
        padding: 32px 20px;
    }

    .p-topBeginner__box h2 {
        font-size: 2.8rem;
        margin-right: 60px;
        padding: 32px 22px;
    }

    .p-topBeginner__box ul li {
        font-size: 1.9rem;
    }
}

@media screen and (max-width: 820px) {
    .p-topBeginner {
        margin-bottom: 50px;
        padding: 42px 0;
    }

    .p-topBeginner__box {
        flex-direction: column;
        padding: 28px 20px;
    }

    .p-topBeginner__box h2 {
        writing-mode: horizontal-tb;
        margin: 0 0 30px;
        padding: 14px 30px;
        font-size: 2.4rem;
        border-radius: 50px;
    }

    .p-topBeginner__box ul li {
        font-size: 1.8rem;
    }

    .p-topBeginner__box ul li:not(:last-child) {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 590px) {
    .p-topBeginner {
        margin-bottom: 40px;
        padding: 34px 0;
    }

    .p-topBeginner__box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .p-topBeginner__box h2 {
        font-size: 2rem;
        padding: 12px 24px;
        margin-bottom: 22px;
    }

    .p-topBeginner__box ul li {
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .p-topBeginner__box ul li:before {
        width: 10px;
        height: 10px;
        margin-right: 12px;
    }
}

/* -------------------------------------------
 * topAttention
 * ------------------------------------------- */

.p-topAttention {
    margin: 0 0 130px;
}

.p-topAttention h2 {
    font-size: 3rem;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 40px;
    color: #EB822B;
}

.p-topAttention h2:before {
    content: "";
    display: block;
    background-image: url(images/attention_icon.svg);
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
}

.p-topAttention ul {
    display: flex;
    justify-content: space-between;
    margin: 0 0 40px;
}

.p-topAttention ul li {
    width: 31.5%;
    height: 240px;
    border-radius: 20px;
    padding: 25px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p-topAttention ul li:nth-of-type(1) {
    border: 2px solid #03B8C3;
}

.p-topAttention ul li:nth-of-type(2) {
    border: 2px solid #00B7B0;
}

.p-topAttention ul li:nth-of-type(3) {
    border: 2px solid #01B38F;
}

.p-topAttention ul li:nth-of-type(1) h3 {
    color: #03B8C3;
}

.p-topAttention ul li:nth-of-type(2) h3 {
    color: #00B7B0;
}

.p-topAttention ul li:nth-of-type(3) h3 {
    color: #01B38F;
}

.p-topAttention ul li h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 18px;
    text-align: center;
}

.p-topAttention ul li .c-text {
    line-height: 1.444;
}

.p-topAttention ul li:nth-of-type(1) h3 span:before {
    content: "";
    display: block;
    margin: 0 auto 12px;
    background-image: url(images/attention_icon_elderly.svg);
    width: 96px;
    height: 73px;
}

.p-topAttention ul li:nth-of-type(2) h3 span:before {
    content: "";
    display: block;
    margin: 0 auto 14px;
    background-image: url(images/attention_icon_symptoms.svg);
    width: 61px;
    height: 64px;
}

.p-topAttention ul li:nth-of-type(3) h3 span:before {
    content: "";
    display: block;
    margin: 0 auto 17px;
    background-image: url(images/attention_icon_equality.svg);
    width: 68px;
    height: 64px;
}

.p-topAttention__tel {
    background-color: #EB822B;
    border-radius: 10px;
    padding: 23px 43px;
    display: flex;
    align-items: center;
}

.p-topAttention__tel:before {
    content: "";
    display: inline-block;
    width: 61px;
    height: 89px;
    background-image: url(images/fever_icon.svg);
    margin: 0 14px 0 0;
}

.p-topAttention__tel h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
}

.p-topAttention__telNumber {
    font-size: 2.3rem;
    color: #fff;
    font-weight: 700;
    margin: 0 40px 0 0;
}

.p-topAttention__telNumber a {
    display: block;
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    margin: 10px 0 0;
}

.p-topAttention__telNumber a span {
    font-size: 3rem;
    margin: 0 10px 0 0;
}

.p-topAttention__policy {
    font-size: 2.2rem;
    line-height: 1.818;
    text-align: center;
    margin: 0 0 60px;
}

@media screen and (max-width: 1500px) {
    .p-topAttention {
        margin: 0 0 60px;
    }

    .p-topAttention ul li {
        height: 220px;
    }

    .p-topAttention__telNumber a {
        font-size: 4rem;
    }
}

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

    .p-topAttention h2 {
        font-size: 2.2rem;
    }

    .p-topAttention h2:before {
        background-size: 100%;
        width: 42px;
        height: 42px;
        margin: 0 auto 10px;
    }

    .p-topAttention ul {
        flex-direction: column;
        gap: 20px;
        margin: 0 0 25px;
    }

    .p-topAttention ul li {
        width: 100%;
        height: auto;
        padding: 28px 24px;
    }

    .p-topAttention__tel {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    .p-topAttention__tel:before {
        margin: 0 0 16px;
    }

    .p-topAttention__telNumber {
        margin: 16px 0 0;
    }
}

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

    .p-topAttention h2 {
        font-size: 3.8vw;
        margin: 0px 0px 30px;
        line-height: 1.6;
    }

    .p-topAttention h2 {
        flex-direction: column;
    }

    .p-topAttention h2:before {
        background-size: 100%;
        width: 32px;
        height: 32px;
        margin: 0 auto 12px;
    }

    .p-topAttention ul li {
        padding: 15px 18px;
        border-radius: 14px;
    }

    .p-topAttention ul li h3 {
        font-size: 2rem;
    }

    .p-topAttention ul li:nth-of-type(1) h3 span::before {
        width: 68px;
        height: 52px;
        background-size: 100%;
    }

    .p-topAttention ul li:nth-of-type(2) h3 span::before {
        width: 43px;
        height: 45px;
        background-size: 100%;
    }

    .p-topAttention ul li:nth-of-type(3) h3 span::before {
        width: 48px;
        height: 46px;
        background-size: 100%;
    }

    .p-topAttention__tel h3 {
        font-size: 2.2rem;
    }

    .p-topAttention__telNumber {
        font-size: 2rem;
    }

    .p-topAttention__telNumber a {
        font-size: 3.2rem;
    }

    .p-topAttention__telNumber a span {
        font-size: 2.4rem;
    }

    .p-topAttention__policy {
        font-size: 1.4rem;
        margin-bottom: 50px;
    }

    .p-topAttention__tel {
        padding: 15px 18px;
    }

    .p-topAttention__tel h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .p-topAttention__tel::before {
        content: "";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        margin: -46px 0 0 0;
        border: 2px solid #EB822B;
        background-color: #EB822B;
        border-radius: 50%;
        background-image: url(images/fever_icon.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60%;
    }

    .p-topAttention__telNumber {
        font-size: 1.5rem;
    }

    .p-topAttention__telNumber a {
        font-size: 2.8rem;
        margin: 6px 0 20px;
    }

    .p-topAttention__telNumber a span {
        font-size: 2rem;
        margin: 0 5px 0 0;
    }
}

/* -------------------------------------------
 * topAbout
 * ------------------------------------------- */

.p-topAbout {
    margin: 0 0 100px;
}

.p-topAbout .c-topTitle {
    margin: 0;
}

.p-topAbout__wrap {
    display: flex;
    align-items: flex-start;
}

.p-topAbout__img {
    width: 45.7%;
    height: 508px;
    background-image: url(images/top_about.jpg);
    margin: 91px 0 0;
    border-radius: 0 100px 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.p-topAbout__text {
    width: 54.3%;
    background-color: #80D0C7;
    padding: 90px 0 150px 66px;
    position: relative;
}

.p-topAbout__text:before {
    content: "";
    background-color: #80D0C7;
    width: 192px;
    height: 100%;
    border-radius: 0 0 0 100px;
    position: absolute;
    top: 0;
    left: -192px;
    z-index: -1;
}

.p-topAbout__text:after {
    content: "Chokyutenma Clinic";
    opacity: 0.24;
    font-size: 9rem;
    color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    position: absolute;
    right: -36px;
    bottom: -29px;
    line-height: 1.3;
}

.p-topAbout__text ul {
    margin: 0 0 70px;
}

.p-topAbout__text ul li:not(:last-child) {
    margin: 0 0 45px;
}

.p-topAbout__text ul li h3 {
    font-size: 2.7rem;
    line-height: 1.481;
    font-weight: 700;
    margin: 0 0 17px;
    color: #fff;
}

.p-topAbout__text ul li h3:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 12px 0 0;
    background-color: #fff;
}

.p-topAbout__text .c-text {
    color: #fff;
    padding: 0 0 0 30px;
    line-height: 1.5;
}

@media screen and (max-width: 1500px) {
    .p-topAbout {
        margin-bottom: 90px;
    }

    .p-topAbout__img {
        height: 460px;
        margin-top: 80px;
    }

    .p-topAbout__text {
        padding: 80px 0 130px 56px;
    }

    .p-topAbout__text:after {
        font-size: 8rem;
        right: -20px;
        bottom: -20px;
    }
}

@media screen and (max-width: 820px) {
    .p-topAbout {
        margin-bottom: 80px;
    }

    .p-topAbout .c-topTitle {
        margin: 0 0 20px;
    }

    .p-topAbout__wrap {
        flex-direction: column;
    }

    .p-topAbout__img {
        width: 90%;
        height: 380px;
        margin: 0 auto 0 0;
        border-radius: 0 80px 0 0;
    }

    .p-topAbout__text {
        width: 90%;
        margin: -60px 0 0 auto;
        padding: 70px 40px 110px 50px;
        position: relative;
        z-index: -1;
    }

    .p-topAbout__text:before {
        display: none;
    }

    .p-topAbout__text:after {
        font-size: 7rem;
        right: 0;
        bottom: -10px;
    }
}

@media screen and (max-width: 590px) {
    .p-topAbout {
        margin-bottom: 60px;
    }

    .p-topAbout__img {
        width: 92%;
        height: 260px;
        border-radius: 0 50px 0 0;
    }

    .p-topAbout__text {
        width: 92%;
        margin-top: -40px;
        padding: 65px 15px 80px 20px;
        position: relative;
        z-index: -1;
    }

    .p-topAbout__text ul {
        margin-bottom: 30px;
    }

    .p-topAbout__text ul li:not(:last-child) {
        margin-bottom: 32px;
    }

    .p-topAbout__text ul li h3 {
        font-size: 1.9rem;
        padding-left: 1em;
        text-indent: -1em;
    }

    .p-topAbout__text .c-text {
        font-size: 1.4rem;
        padding-left: 24px;
    }

    .p-topAbout__text:after {
        font-size: 10vw;
        right: -10px;
        bottom: -10px;
    }

    .p-topAbout__text ul li h3::before {
        width: 10px;
        height: 10px;
    }
}

/* -------------------------------------------
 * topMedical
 * ------------------------------------------- */

.p-topMedical {
    margin: 0 0 64px;
}

.p-topMedical__bg {
    width: 100%;
    height: 325px;
    background-image: url(images/top_medical_bg.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    background-position: center;
}

.p-topMedical .c-topTitle {
    margin: 0;
}

.p-topMedical .c-topTitle h2 {
    color: #fff;
}

.p-topMedical .c-topTitle p {
    color: #fff;
}

.p-topMedical .c-topTitle h2 span:before {
    background-image: url(images/top_title_deco_white.svg);
}

.p-topMedical__wrap {
    background-color: rgba(1, 179, 143, 0.12);
    padding: 60px 0 80px;
}

.p-topMedical__wrap h3 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px;
}

.p-topMedical__wrap ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 75px;
}

.p-topMedical__wrap ul:after {
	content: "";
    width: 31.9%;
    display: block;
}

.p-topMedical__wrap ul li {
    font-size: 2.1rem;
    line-height: 1.476;
    letter-spacing: 0.02em;
    width: 31.9%;
    height: 163px;
    border-radius: 15px;
    background-color: #fff;
    outline: 1px solid #50C8B0;
    outline-offset: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.p-topMedical__wrap ul li:nth-child(n+4) {
    margin-top: 28px;
}

.p-topMedical__wrap h4 {
    font-size: 3.6rem;
    width: 100%;
    margin: 0 0 40px;
    padding: 21px 10px;
    border-radius: 15px;
    background-color: #50C8B0;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.p-topMedical__wrap .c-text {
    line-height: 1.818;
    text-align: center;
}


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

    .p-topMedical__bg {
        height: 300px;
    }

    .p-topMedical__wrap {
        padding: 55px 0 70px;
    }

    .p-topMedical__wrap h3 {
        font-size: 2.8rem;
        margin-bottom: 36px;
    }

    .p-topMedical__wrap ul li {
        height: 150px;
        font-size: 2rem;
    }

    .p-topMedical__wrap h4 {
        font-size: 3.2rem;
        margin-bottom: 35px;
    }

    .p-topMedical__wrap .c-text {
        font-size: 1.9rem;
    }
}

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

    .p-topMedical__bg {
        height: 260px;
    }

    .p-topMedical__wrap {
        padding: 50px 0 60px;
    }

    .p-topMedical__wrap h3 {
        font-size: 2.6rem;
        margin-bottom: 30px;
    }

    .p-topMedical__wrap ul li {
        width: 48%;
        height: 150px;
        font-size: 2rem;
    }

    .p-topMedical__wrap ul li:nth-child(n+3) {
        margin-top: 24px;
    }

    .p-topMedical__wrap h4 {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .p-topMedical__wrap h4 {
        font-size: 2.5rem;
        line-height: 1.3;
        padding: 12px 10px;
        border-radius: 5px;
        margin: 0px 0px 15px;
    }
}

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

    .p-topMedical {
        margin-bottom: 50px;
    }

    .p-topMedical__bg {
        height: 180px;
        padding: 0 20px;
    }

    .p-topMedical__wrap {
        padding: 40px 0 50px;
    }

    .p-topMedical__wrap h3 {
        font-size: 2.3rem;
        margin-bottom: 25px;
    }

    .p-topMedical__wrap ul {
        margin-bottom: 30px;
    }

    .p-topMedical__wrap ul li {
        width: 100%;
        height: auto;
        min-height: 100px;
        padding: 20px 15px;
        font-size: 1.5rem;
    }

    .p-topMedical__wrap ul li:nth-child(n+4) {
        margin-top: 15px;
    }

    .p-topMedical__wrap ul li:nth-child(n+2) {
        margin-top: 15px;
    }

    .p-topMedical__wrap .c-text {
        font-size: 1.4rem;
        line-height: 1.7;
        padding: 0 15px;
    }

    .p-topMedical__wrap h4 {
        font-size: 2rem;
    }
}

/* -------------------------------------------
 * topFeature
 * ------------------------------------------- */

.p-topFeature {
    overflow: hidden;
}

.p-topFeature h2 {
    font-size: 4rem;
    letter-spacing: 0.02em;
    margin: 0 0 54px;
    text-align: center;
    color: #50C8B0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.02em;
}

.p-topFeature h2 span {
    font-size: 6rem;
}

.p-topFeature ul {
    margin: 0 0 75px;
}

.p-topFeature ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 0 74px;
}

.p-topFeature ul li:not(:last-child) {
    margin: 0 0 70px;
}

.p-topFeature ul li:nth-of-type(even) {
    display: flex;
    flex-direction: row-reverse;
}

.p-topFeature li:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    height: 98.8%;
    background-color: #fff9eb;
}

.p-topFeature li:nth-of-type(even):before {
    right: -100vw;
    left: 0;
    border-radius: 0 100px 100px 0;
}

.p-topFeature li:nth-of-type(odd):before {
    left: -100vw;
    right: 0;
    border-radius: 100px 0 0 100px;
}

.p-topFeature ul li:after {
    content: "";
    position: absolute;
    top: 0;
    height: 80px;
    background-color: #fff;
    z-index: 2;
}

.p-topFeature ul li:nth-of-type(odd):after {
    left: -100vw;
    right: 48%;
}

.p-topFeature ul li:nth-of-type(even):after {
    right: -100vw;
    left: 48%;
}

.p-topFeature__text {
    width: 34.6%;
    margin: 0 0 0 45px;
    padding: 140px 0 0;
}

.p-topFeature ul li:nth-of-type(even) .p-topFeature__text {
    margin: 0 45px 0 0;
}

.p-topFeature__img {
    width: 52.3%;
    position: relative;
    z-index: 3;
}

.p-topFeature__img:before {
    content: "";
    width: 407px;
    height: 493px;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: -74px;
    z-index: -1;
}

.p-topFeature ul li:nth-of-type(odd) .p-topFeature__img:before {
    background-image: url(images/top_feature_deco_left.svg);
    right: 0;
}

.p-topFeature ul li:nth-of-type(even) .p-topFeature__img:before {
    background-image: url(images/top_feature_deco_right.svg);
    left: 0;
}

.p-topFeature__img img {
    border-radius: 20px 0 0 20px;
}

.p-topFeature__number {
    font-size: 5.7rem;
    color: #50C8B0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    line-height: 1.474;
    position: relative;
}

.p-topFeature__number span {
    display: block;
    font-size: 1.4rem;
    margin: 0 0 -15px;
}

.p-topFeature__title {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}

.p-topFeature__title h3 {
    font-size: 3.4rem;
    letter-spacing: 0.02em;
    line-height: 1.471;
    color: #50C8B0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-topFeature__title h3:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 67px;
    background-color: #50C8B0;
    margin: 0 23px;
}

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

    .p-topFeature__number {
        font-size: 4.8rem;
    }

    .p-topFeature__title h3 {
        font-size: 3rem;
    }
}

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

    .p-topFeature ul li {
        padding: 0;
    }

    .p-topFeature {
        margin: 0 0 50px;
    }

    .p-topFeature ul li,
    .p-topFeature ul li:nth-of-type(even) {
        flex-direction: column;
    }

    .p-topFeature ul li:not(:last-child) {
        margin: 0 0 60px;
    }

    .p-topFeature li:before,
    .p-topFeature ul li:after {
        display: none;
    }

    .p-topFeature__img,
    .p-topFeature__text {
        width: 100%;
        margin: 0;
        padding-top: 0;
    }

    .p-topFeature__img:before {
        display: none;
    }

    .p-topFeature__img img {
        border-radius: 20px;
    }

    .p-topFeature ul li:nth-of-type(even) .p-topFeature__text {
        margin: 0 0 30px;
    }

    .p-topFeature__text {
        margin: 0 0 30px;
    }

    .p-topFeature h2 {
        font-size: 3.2rem;
        margin: 0 0 30px;
    }

    .p-topFeature h2 span {
        font-size: 4rem;
    }

    .p-topFeature ul {
        margin: 0;
    }
}

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

    .p-topFeature__number {
        font-size: 4rem;
    }

    .p-topFeature__number span {
        font-size: 1.2rem;
    }

    .p-topFeature__title {
        margin: 0 0 5px;
    }

    .p-topFeature__title h3 {
        font-size: 2.2rem;
    }

    .p-topFeature__title h3:before {
        height: 40px;
        margin: 0 15px;
    }

    .p-topFeature h2 {
        font-size: 2.1rem;
    }

    .p-topFeature h2 span {
        font-size: 3rem;
    }

    .p-accessInfo__item:first-child {
        margin-bottom: 15px;
    }
}

/* -------------------------------------------
 * topReserve
 * ------------------------------------------- */

.p-topContact {
    padding: 64px 0 70px;
    background-color: rgba(1, 179, 143, 0.05);
}

.p-topContact .c-topTitle {
    text-align: center;
}

.p-topContact .c-topTitle h2 {
    justify-content: center;
}

.p-topContact h2 span:before {
    content: "";
    background-image: unset;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #80D0C7;
    margin: 0 14px 0 0;
}

.p-topContact h2 span:after {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #50C8B0;
    margin: 0 0 0 14px;
}

.p-topContact h3 {
    font-size: 3rem;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 40px;
    color: #EB822B;
}

.p-topContact h4 {
    font-size: 3.3rem;
    line-height: 1.485;
    letter-spacing: 0.02em;
    width: 100%;
    margin: 0 0 40px;
    padding: 21px 10px;
    border-radius: 15px;
    background-color: #50C8B0;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.p-topContact__tel {
    text-align: center;
}

.p-topContact__tel span {
    display: flex;
    align-items: center;
}

.p-topContact__tel .c-text {
    font-size: 2.8rem;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0 0 30px;
}

.p-topContact__tel a {
    width: 516px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.6rem;
    color: #50C8B0;
    background-color: #fff;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 15px;
    border: 1px solid #50C8B0;
    font-weight: bold;
}

.p-topContact__tel a span:before {
    content: "";
    background-image: url(images/contact_icon.svg);
    width: 52px;
    height: 52px;
    display: inline-block;
    background-size: 100%;
    margin: 0 12px 0 0;
}

@media screen and (max-width: 1500px) {
    .p-topContact {
        padding: 56px 0 64px;
    }

    .p-topContact h3 {
        font-size: 2.8rem;
        margin-bottom: 36px;
    }

    .p-topContact h4 {
        font-size: 3.1rem;
    }

    .p-topContact__tel a {
        font-size: 5.2rem;
    }
}

@media screen and (max-width: 820px) {
    .p-topContact {
        padding: 48px 0 56px;
    }

    .p-topContact h3 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .p-topContact h4 {
        font-size: 2.8rem;
        margin-bottom: 32px;
    }

    .p-topContact__tel .c-text {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .p-topContact__tel a {
        width: 100%;
        max-width: 480px;
        font-size: 4.6rem;
        padding: 16px 20px;
    }

    .p-topContact__tel a span:before {
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 590px) {
    .p-topContact {
        padding: 40px 0 48px;
    }

    .p-topContact h3 {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .p-topContact h4 {
        font-size: 1.7rem;
        margin-bottom: 28px;
        padding: 10px;
        border-radius: 10px;
    }

    .p-topContact__tel .c-text {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .p-topContact__tel a {
        width: 100%;
        font-size: 3rem;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .p-topContact__tel a span:before {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }
}

/* -------------------------------------------
 * p-access
 * ------------------------------------------- */

.p-access {
    margin: 0 0 80px;
}

.p-access__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 68px;
}

.p-accessMap {
    width: 100%;
    margin-bottom: 60px;
}

.p-accessMap__canvas {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.p-accessMap__canvas iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.p-accessInfo {
    width: 45%;
}

.p-accessInfo__title {
    font-size: 3rem;
    margin-bottom: 22px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.p-accessInfo__item {
    display: flex;
    align-items: baseline;
}

.p-accessInfo__item:not(:last-child) {
    margin: 0 0 17px;
}

.p-accessInfo__item:first-child {
    margin: 0 0 52px;
}

.p-accessInfo__label {
    width: 22.3%;
    font-weight: bold;
    color: #50C8B0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-accessInfo__data {
    line-height: 1.5;
}

.p-accessInfo__data p:not(:last-child) {
    margin: 0 0 7px;
}

@media screen and (max-width: 1500px) {
    .p-access__body {
        margin-bottom: 56px;
    }

    .p-accessInfo {
        width: 48%;
    }

    .p-accessInfo__title {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 820px) {
    .p-access__body {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .p-accessMap {
        margin-bottom: 40px;
    }

    .p-accessMap__canvas {
        height: 400px;
    }

    .p-accessInfo {
        width: 100%;
        margin: 0 0 40px;
    }

    .p-accessInfo__title {
        font-size: 2.6rem;
        margin-bottom: 18px;
    }

    .p-accessInfo__item:first-child {
        margin-bottom: 36px;
    }
}

@media screen and (max-width: 590px) {
    .p-access {
        margin-bottom: 60px;
    }

    .p-accessGuide {
        margin: 0px 0px 10px;
    }

    .p-access__body {
        margin-bottom: 0;
    }

    .p-accessMap__canvas {
        height: 300px;
    }

    .p-accessInfo__title {
        font-size: 2.2rem;
    }

    .p-accessInfo__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-accessInfo__item:not(:last-child) {
        margin-bottom: 20px;
    }

    .p-accessInfo__item:first-child {
        margin-bottom: 30px;
    }

    .p-accessInfo__label {
        width: auto;
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .p-accessInfo__data {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .p-access .p-accessBottom {
        border-top: none;
    }
}

/* -------------------------------------------
 * p-accessGuide 
 * ------------------------------------------- */
.p-accessGuide {
    width: 36.5%;
}

.p-accessGuide__item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #50C8B0;
}

.p-accessGuide__item:last-child {
    margin-bottom: 0;
}

.p-accessGuide__title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #50C8B0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-accessGuide__text {
    font-size: 1.8rem;
    line-height: 1.5;
}

.p-accessBottom {
    border-top: 1px solid #50C8B0;
    padding: 50px 0 0;
}

.p-accessBottom__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 46px;
}

.p-accessReception {
    width: 55%;
}

.p-accessReception__icon {
    width: 24.2%;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    color: #50C8B0;
    display: flex;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-accessReception {
    border-right: 1px solid rgba(112, 112, 112, 0.68);
}

.p-accessTel {
    width: 42%;
}

.p-accessReception__time {
    font-size: 2.4rem;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
}

.p-accessReception__time .p-accessReception__icon:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(images/access_time_icon.svg);
    background-repeat: no-repeat;
    margin: 0 10px 0 0;
}

.p-accessReception__holiday {
    display: flex;
    align-items: center;
}

.p-accessReception__text {
    font-size: 2.2rem;
}

.p-accessReception__holiday .p-accessReception__icon:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 28px;
    background-image: url(images/access_calendar_icon.svg);
    background-repeat: no-repeat;
    margin: 0 13px 0 0;
}

.p-accessReception__badge {
    font-size: 2rem;
    padding: 7px 15px;
    border: 1px solid #333333;
    border-radius: 3px;
    margin: 0 11px 0 0;
}

.p-accessReception__badge:last-child {
    margin-left: 22px;
}

.p-accessTel__main {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-accessTel__main:before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(images/access_tel_icon.svg);
    background-repeat: no-repeat;
    margin: 0 8px 0 0;
}

.p-accessTel__number {
    font-size: 3.3rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #50C8B0;
    margin: 0 0 0 18px;
}

.p-accessTel__numberSmall {
    display: inline-block;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
}

.p-accessTel__note {
    font-size: 1.9rem;
    line-height: 1.474;
}

.p-accessTable__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    text-align: center;
    margin-bottom: 15px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-accessTable__table th,
.p-accessTable__table td {
    padding: 18px 5px;
    border-radius: 5px;
    font-size: 2.4rem;
}

.p-accessTable__table th {
    background: #50C8B0;
    letter-spacing: 0.04em;
    color: #fff;
}

.p-accessTable__table td {
    border: 1px solid #50C8B0;
}

.p-accessTable__time {
    border: 1px solid #50C8B0;
    color: #50C8B0;
}

.p-accessTable__table th:nth-of-type(1),
.p-accessTable__time {
    width: 33.5%;
}

.p-accessBottom__note {
    max-width: 640px;
    font-size: 2.4rem;
    margin: 0 auto;
    padding: 18px 20px;
    border: 1px solid #50C8B0;
    border-radius: 5px;
    text-align: center;
}

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

    .p-accessGuide {
        width: 100%;
        margin: 0 0 40px;
    }

    .p-accessBottom__wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .p-accessReception,
    .p-accessTel {
        width: 100%;
        border-right: none;
    }

    .p-accessReception {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(112, 112, 112, 0.68);
    }

    .p-accessReception__icon {
        width: auto;
        font-size: 2rem;
    }

    .p-accessReception__time,
    .p-accessReception__text {
        font-size: 2rem;
    }

    .p-accessTel__main {
        font-size: 2rem;
    }

    .p-accessTel__number {
        font-size: 3rem;
    }

    .p-accessTable__table th,
    .p-accessTable__table td {
        font-size: 2rem;
        padding: 14px 5px;
    }

    .p-accessBottom__note {
        font-size: 2.1rem;
    }
}

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

    .p-accessBottom {
        padding: 30px 0px 0px;
    }

    .p-accessGuide__title {
        font-size: 1.8rem;
    }

    .p-accessGuide__text {
        font-size: 1.6rem;
    }

    .p-accessReception__time {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .p-accessReception__holiday {
        flex-wrap: wrap;
        gap: 10px;
    }

    .p-accessReception__badge {
        font-size: 1.6rem;
        padding: 5px 10px;
        margin: 0;
    }

    .p-accessTel__main {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 1.9rem;
    }

    .p-accessTel__number {
        text-align: center;
        display: block;
        width: 100%;
        font-size: 2.8rem;
        margin: 0;
    }

    .p-accessTel__numberSmall {
        font-size: 1.9rem;
    }

    .p-accessTel__note {
        font-size: 1.6rem;
    }

    .p-accessTable__table th,
    .p-accessTable__table td {
        font-size: 1.4rem;
        padding: 10px 4px;
    }

    .p-accessBottom__note {
        font-size: 1.4rem;
        padding: 10px 5px;
    }

    .p-accessTel__note {
        font-size: 1.4rem;
    }

    .p-accessBottom__wrap {
        gap: 20px;
        margin: 0 0 20px;
    }

    .p-accessReception__time,
    .p-accessReception__text {
        font-size: 1.8rem;
    }

    .p-accessReception__badge:last-child {
        margin-left: 0;
    }

    .p-accessReception__badge:last-child {
        margin-top: 15px;
    }

    .p-accessReception__icon {
        width: 100%;
        margin: 0 0 5px;
    }

    .p-accessReception__time {
        margin: 0px 0px 40px;
    }

    .p-accessReception__time .p-accessReception__icon::before {
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    .p-accessReception__holiday .p-accessReception__icon::before {
        width: 18px;
        height: 19px;
        background-size: 100%;
    }
}

/*----------------------------------------
	page_common
----------------------------------------*/

.p-catch {
    width: 96.875%;
    height: 350px;
    position: relative;
    margin: 0 auto 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position: center;
    border-radius: 15px;
}

.p-catch__textWrap {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 625px;
    padding: 35px 0 26px;
    text-align: center;
    background-color: #fff;
    border-radius: 0 15px 0 0;
}

.p-catch__textWrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: -15px;
    width: 15px;
    height: 15px;
    background-image: url(images/catch_text_deco01.svg);
}

.p-catch__textWrap:after {
    content: "";
    position: absolute;
    right: -15px;
    bottom: 0;
    width: 15px;
    height: 15px;
    background-image: url(images/catch_text_deco02.svg);
}

.p-catch__jp {
    font-size: 4.5rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin: 0 0 20px;
}

.p-catch__en {
    display: block;
    font-size: 2.8rem;
    color: #50C8B0;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.c-link {
    margin: 0 0 90px;
}

.c-link ul {
    display: flex;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    gap: 50px;
}

.c-link ul li a {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.c-link ul li a span {
    display: flex;
    align-items: center;
}

.c-link ul li a span:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(images/button_arrow.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0 0 0 10px;
    transform: rotate(90deg);
}

.c-pageTitle01 {
    font-size: 3.5rem;
    margin: 0 0 40px;
    padding: 0 0 20px;
    font-weight: 700;
    border-bottom: 1px solid #51C7B0;
}

.c-pageTitle01 span {
    display: inline-block;
    font-size: 2rem;
    margin: 0 0 0 22px;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #51C7B0;
}

.c-pageTitle02 {
    font-size: 3rem;
    margin: 0 0 50px;
    padding: 24px 0 24px 40px;
    background-color: #E1F6F2;
    border-radius: 10px;
}

.c-pageTitle03 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.464;
    margin: 0 0 40px;
    padding: 0 0 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    position: relative;
}

.c-pageTitle03 span {
    font-size: 3.5rem;
    color: #51C7B0;
}

.c-pageTitle03:before {
    content: "";
    position: absolute;
    width: 180px;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #51C7B0;
}

.c-list li:not(:last-child) {
    margin: 0 0 25px;
}

.c-list li {
    font-size: 2rem;
    line-height: 1.75;
    font-weight: 700;
    padding-left: 1em;
    text-indent: -1em;
}

.c-list span:before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin: 0 15px 0 0;
    border: 3px solid #51C7B0;
}

@media screen and (max-width: 1500px) {
    .p-catch {
        height: 300px;
        margin-bottom: 60px;
    }

    .p-catch__textWrap {
        width: 520px;
        padding: 28px 0 22px;
    }

    .p-catch__jp {
        font-size: 3.8rem;
    }

    .p-catch__en {
        font-size: 2.4rem;
    }

    .c-link {
        margin-bottom: 70px;
    }

    .c-link ul {
        gap: 40px;
        padding: 26px 20px;
    }

    .c-pageTitle01 {
        font-size: 3.2rem;
        margin-bottom: 35px;
    }

    .c-pageTitle02 {
        font-size: 2.7rem;
        margin-bottom: 45px;
    }

    .c-pageTitle03 {
        font-size: 2.6rem;
    }

    .c-pageTitle03 span {
        font-size: 3.2rem;
    }
}

@media screen and (max-width: 1300px) {
    .c-link ul {
        gap: 30px;
    }

    .c-link ul li a {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 820px) {
    .p-catch {
        height: 260px;
        border-radius: 12px;
        margin-bottom: 50px;
        margin-top: 12px;
    }

    .p-catch__textWrap {
        width: 90%;
        max-width: 480px;
        padding: 24px 0 20px;
        border-radius: 0 12px 0 0;
    }

    .p-catch__jp {
        font-size: 3rem;
        margin-bottom: 14px;
    }

    .p-catch__en {
        font-size: 2rem;
    }

    .c-link {
        margin-bottom: 60px;
    }

    .c-link ul {
        flex-wrap: wrap;
        gap: 30px;
        padding: 24px 16px;
    }

    .c-link ul li a {
        font-size: 1.6rem;
    }

    .c-pageTitle01 {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }

    .c-pageTitle01 span {
        font-size: 1.8rem;
        margin-left: 16px;
    }

    .c-pageTitle02 {
        font-size: 2.4rem;
        padding: 20px 0 20px 28px;
        margin-bottom: 25px;
    }

    .c-pageTitle03 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .c-pageTitle03 span {
        font-size: 3rem;
    }

    .c-pageTitle03:before {
        width: 140px;
    }

    .c-list li {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 590px) {
    .p-catch {
        height: 160px;
        margin-bottom: 40px;
        border-radius: 10px;
    }

    .p-catch__textWrap {
        max-width: none;
        width: 75%;
        padding: 20px 10px 18px;
        border-radius: 0 10px 0 0;
    }

    .p-catch__jp {
        font-size: 5.5vw;
        letter-spacing: 0.08em;
        margin-bottom: 10px;
    }

    .p-catch__en {
        font-size: 3.8vw;
    }

    .c-link {
        margin-bottom: 50px;
    }

    .c-link ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 14px;
    }

    .c-link ul li a {
        font-size: 1.5rem;
    }

    .c-link ul li a span:after {
        width: 16px;
        height: 16px;
        margin-left: 8px;
    }

    .c-pageTitle01 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .c-pageTitle01 span {
        font-size: 1.4rem;
        margin-left: 10px;
    }

    .c-pageTitle02 {
        font-size: 2rem;
        border-radius: 5px;
        padding: 14px 10px;
        margin-bottom: 18px;
    }

    .c-pageTitle03 {
        font-size: 2rem;
        padding-bottom: 16px;
    }

    .c-pageTitle03 span {
        font-size: 2.2rem;
    }

    .c-pageTitle03:before {
        width: 100px;
    }

    .c-list li {
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .c-list span:before {
        width: 10px;
        height: 10px;
        margin-right: 10px;
        border-width: 2px;
    }

    .c-list li:not(:last-child) {
        margin: 0 0 12px;
    }
}

/* -------------------------------------------
 * about
 * ------------------------------------------- */

.p-aboutDoctor {
    margin: 0 0 100px;
}

.p-aboutDoctor dl {
    display: flex;
    align-items: baseline;
    font-size: 2rem;
}

.p-aboutDoctor dl dt {
    margin: 0 28px 0 0;
}

.p-aboutDoctor dl dt span {
    color: #50C8B0;
}

.p-aboutDoctor dl dd {
    line-height: 1.75;
}

.p-aboutHistory {
    margin: 0 0 100px;
}

.p-aboutHistory h3 {
    font-size: 3.4rem;
    margin: 0 0 50px;
    line-height: 1.471;
    font-weight: bold;
    color: #50C8B0;
}

.p-aboutHistory .c-text {
    line-height: 2.5;
}

.p-aboutPhilosophy {
    margin: 0 0 120px;
}

.p-aboutPhilosophy__wrap {
    display: flex;
    justify-content: space-between;
    margin: 0 0 84px;
}

.p-aboutPhilosophy__img {
    width: 47.6%;
}

.p-aboutPhilosophy__img img {
    width: 100%;
}

.p-aboutPhilosophy__text {
    width: 45.4%;
    margin: 84px 0 0;
}

.p-aboutPhilosophy__text h2 {
    font-size: 3.4rem;
    margin: 0 0 30px;
    line-height: 1.471;
}

.p-aboutPhilosophy__text .c-text:not(:last-child) {
    margin: 0 0 34px;
}

.p-aboutPhilosophy ul {
    background-color: #80D0C7;
    border-radius: 20px;
    padding: 60px 80px;
}

.p-aboutPhilosophy ul li:not(:last-child) {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid #fff;
}

.p-aboutPhilosophy ul li h3 {
    font-size: 2.7rem;
    font-weight: bold;
    margin: 0 0 17px;
    color: #fff;
    display: flex;
    align-items: baseline;
}

.p-aboutPhilosophy ul li h3:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 12px 0 0;
    flex-shrink: 0;
}

.p-aboutPhilosophy ul li .c-text {
    color: #fff;
    padding: 0 0 0 30px;
}

.p-aboutFeature {
    background-color: #F2FBF9;
    overflow: hidden;
    margin: 0 0 120px;
    padding: 115px 0 130px;
}

.p-aboutFeature ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 0 74px;
}

.p-aboutFeature ul li:not(:last-child) {
    margin: 0 0 70px;
}

.p-aboutFeature ul li:nth-of-type(even) {
    display: flex;
    flex-direction: row-reverse;
}

.p-aboutFeature li:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    height: 98.8%;
    background-color: #fff;
}

.p-aboutFeature li:nth-of-type(even):before {
    right: -100vw;
    left: 0;
    border-radius: 0 100px 100px 0;
}

.p-aboutFeature li:nth-of-type(odd):before {
    left: -100vw;
    right: 0;
    border-radius: 100px 0 0 100px;
}

.p-aboutFeature ul li:after {
    content: "";
    position: absolute;
    top: 0;
    height: 80px;
    background-color: #F2FBF9;
    z-index: 2;
}

.p-aboutFeature ul li:nth-of-type(odd):after {
    left: -100vw;
    right: 48%;
}

.p-aboutFeature ul li:nth-of-type(even):after {
    right: -100vw;
    left: 48%;
}

.p-aboutFeature__text {
    width: 34.6%;
    margin: 0 0 0 45px;
    padding: 140px 0 0;
    position: relative;
}

.p-aboutFeature ul li:nth-of-type(even) .p-aboutFeature__text {
    margin: 0 45px 0 0;
}

.p-aboutFeature__img {
    width: 52.3%;
    position: relative;
    z-index: 3;
}

.p-aboutFeature__img:before {
    content: "";
    width: 407px;
    height: 493px;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: -74px;
    z-index: -1;
}

.p-aboutFeature ul li:nth-of-type(odd) .p-aboutFeature__img:before {
    background-image: url(images/top_feature_deco_left.svg);
    right: 0;
}

.p-aboutFeature ul li:nth-of-type(even) .p-aboutFeature__img:before {
    background-image: url(images/top_feature_deco_right.svg);
    left: 0;
}

.p-aboutFeature__img img {
    border-radius: 20px 0 0 20px;
}

.p-aboutFeature__number {
    font-size: 5.7rem;
    color: #50C8B0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    line-height: 1.474;
    position: relative;
}

.p-aboutFeature__number span {
    display: block;
    font-size: 1.4rem;
    margin: 0 0 -15px;
}

.p-aboutFeature__title {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}

.p-aboutFeature__title h3 {
    font-size: 3.4rem;
    letter-spacing: 0.02em;
    line-height: 1.471;
    color: #50C8B0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-aboutFeature__title h3:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 67px;
    background-color: #50C8B0;
    margin: 0 23px;
}

.p-aboutGallery {
    margin: 0 0 110px;
}

.p-aboutGallery ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-aboutGallery ul li {
    width: 31.3%;
}

.p-aboutGallery ul li:nth-child(n+4) {
    margin: 70px 0 0;
}

.p-aboutGallery ul li img {
    width: 100%;
    margin: 0 0 20px;
}

.p-aboutGallery ul li h3 {
    font-size: 2.5rem;
    line-height: 1.667;
    font-weight: bold;
    margin: 0 0 15px;
}

.p-aboutOutline {
    margin: 0 0 100px;
}

.table01 {
    display: block;
    width: 1000px;
    margin: auto;
    font-size: 1.8rem;
    margin: 0 auto 158px;
}

.table01 tbody {
    display: block;
    width: 100%;
}

.table01 tr {
    display: flex;
    justify-content: space-between;
}

.table01 tr:last-child {
    border-bottom: none;
}

.table01 th {
    width: 24.5%;
    padding: 15px 0;
    border-bottom: 1px solid #50C8B0;
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: #50C8B0;
}

.table01 td {
    padding: 15px;
    width: 75.5%;
    vertical-align: middle;
    border-bottom: 1px solid #DDDDDD;
    line-height: 1.75;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.p-aboutOutline .p-accessBottom {
    margin: 0 0 53px;
}

.p-aboutOutline__map {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.p-aboutOutline__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

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

    .p-aboutPhilosophy__text {
        margin-top: 40px;
    }

    .p-aboutPhilosophy ul {
        padding: 50px 60px;
    }

    .p-aboutFeature {
        padding: 90px 0 100px;
    }

    .p-aboutFeature__number {
        font-size: 4.8rem;
    }

    .p-aboutFeature__title h3 {
        font-size: 3rem;
    }
}

@media screen and (max-width:1000px) {
    .table01 {
        width: 100%;
    }

    .table01 th,
    .table01 td {
        font-size: 1.6rem;
        width: 100%;
    }

    .table01 th {
        width: 100%;
        font-weight: bold;
        margin: 0 0 8px;
        padding: 8px 2% 0 2%;
        border: none;
    }

    .table01 td {
        width: 100%;
        padding: 0 2% 8px 2%;
        line-height: 1.25;
    }

    .table01 tr {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
}

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

    .p-aboutDoctor dl {
        flex-direction: column;
        font-size: 1.8rem;
    }

    .p-aboutDoctor dl:not(:last-child) {
        margin: 0 0 10px;
    }

    .p-aboutDoctor dl dt {
        font-size: 1.6rem;
        margin: 0 0 10px;
    }

    .p-aboutDoctor dl dd {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .p-aboutPhilosophy__wrap {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .p-aboutPhilosophy__img,
    .p-aboutPhilosophy__text {
        width: 100%;
    }

    .p-aboutPhilosophy__text {
        margin-top: 20px;
    }

    .p-aboutPhilosophy ul {
        padding: 40px;
    }

    .p-aboutFeature ul li {
        padding: 0;
    }

    .p-aboutPhilosophy ul li h3 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .p-aboutPhilosophy ul li h3::before {
        width: 12px;
        height: 12px;
    }

    .p-aboutFeature {
        padding: 40px 0px 50px;
    }

    .p-aboutFeature ul li,
    .p-aboutFeature ul li:nth-of-type(even) {
        flex-direction: column;
    }

    .p-aboutFeature ul li:not(:last-child) {
        margin: 0 0 60px;
    }

    .p-aboutFeature li:before,
    .p-aboutFeature ul li:after {
        display: none;
    }

    .p-aboutFeature__img,
    .p-aboutFeature__text {
        width: 100%;
        margin: 0;
        padding-top: 0;
    }

    .p-aboutFeature__img:before {
        display: none;
    }

    .p-aboutFeature__img img {
        border-radius: 20px;
    }

    .p-aboutFeature ul li:nth-of-type(even) .p-aboutFeature__text {
        margin: 0 0 30px;
    }

    .p-aboutFeature__text {
        margin: 0 0 30px;
    }

    .p-aboutGallery ul li {
        width: 48%;
    }

    .p-aboutGallery ul li:nth-child(n+3) {
        margin-top: 40px;
    }

    .p-aboutGallery ul li h3 {
        font-size: 1.8rem;
        margin: 0px 0px 8px;
    }

    .p-aboutGallery ul li:nth-child(n+4) {
        margin: 40px 0px 0px;
    }

    .table01 {
        margin: 0 auto 50px;
    }

    .table01 th,
    .table01 td {
        font-size: 1.4rem;
        width: 100%;
    }
}

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

    .p-aboutDoctor,
    .p-aboutHistory,
    .p-aboutPhilosophy,
    .p-aboutFeature,
    .p-aboutGallery,
    .p-aboutOutline {
        margin: 0 0 50px;
    }

    .p-aboutHistory h3,
    .p-aboutPhilosophy__text h2 {
        font-size: 2rem;
    }

    .p-aboutPhilosophy__wrap {
        margin-bottom: 40px;
    }

    .p-aboutPhilosophy__text h2 {
        margin: 0 0 15px;
    }

    .p-aboutPhilosophy__text .c-text:not(:last-child) {
        margin: 0 0 15px;
    }

    .p-aboutHistory h3 {
        margin: 0px 0px 20px;
    }

    .p-aboutPhilosophy ul li h3 {
        font-size: 1.8rem;
        margin: 0 0 8px;
    }

    .p-aboutHistory .c-text {
        line-height: 1.8;
    }

    .p-aboutPhilosophy ul {
        padding: 25px 12px;
        border-radius: 14px;
    }

    .p-aboutPhilosophy ul li .c-text {
        padding-left: 20px;
    }

    .p-aboutPhilosophy ul li:not(:last-child) {
        margin: 0 0 15px;
        padding: 0 0 15px;
    }

    .p-aboutFeature__number {
        font-size: 4rem;
    }

    .p-aboutFeature__number span {
        font-size: 1.2rem;
    }

    .p-aboutFeature__title h3 {
        font-size: 2.2rem;
    }

    .p-aboutFeature__title h3:before {
        height: 40px;
        margin: 0 15px;
    }

    .p-aboutGallery ul li {
        width: 100%;
    }

    .p-aboutGallery ul li:nth-child(n+2) {
        margin-top: 40px;
    }

    p-aboutOutline .p-accessBottom {
        padding: 20px 0px 0px;
    }
}

/* -------------------------------------------
 * medical
 * ------------------------------------------- */

.p-medicalTitle {
    font-size: 3.6rem;
    margin: 0 0 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.p-medicalTitle:before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 6px;
    background-color: #51C7B0;
    margin: 0 20px 0 0;
}

.p-medical .c-pageTitle02 {
    padding: 13px 0 13px 50px;
}

.p-medical .c-pageTitle02 span {
    display: flex;
    align-items: center;
}

.p-medical .c-pageTitle02 span:before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 65px;
    margin: 0 15px 0 0;
}

.p-medicalList.p-medicalList__uro .c-pageTitle02 span:before {
    background-image: url(images/medical01_iicon.svg);
}

.p-medicalList.p-medicalList__sti .c-pageTitle02 span:before {
    background-image: url(images/medical02_iicon.svg);
}

.p-medicalList.p-medicalList__derma .c-pageTitle02 span:before {
    background-image: url(images/medical03_iicon.svg);
}

.p-medicalList.p-medicalList__int .c-pageTitle02 span:before {
    background-image: url(images/medical04_iicon.svg);
}

.p-medicalList.p-medicalList__hospital .c-pageTitle02 span:before {
    background-image: url(images/medical05_iicon.svg);
}

.p-medicalList:not(:last-child) {
    margin: 0 0 100px;
}

.p-medicalWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 60px;
}

.p-medicalImg {
    width: 42.6%;
}

.p-medicalText {
    width: 52.1%;
}

.p-medicalText h2 {
    font-size: 2.8rem;
    line-height: 1.464;
    margin: 0 0 40px;
}

.p-medicalTrouble {
    margin: 0 0 70px;
}

.p-medicalTrouble ul li {
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin: 0 0 22px;
    padding: 0 0 22px;
    border-bottom: 1px dotted #51C7B0;
}

.p-medicalTrouble ul li span:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(images/check_icon.svg);
    margin: 0 15px 0 0;
    flex-shrink: 0;
}

.p-medicalTrouble ul li span {
    display: flex;
    align-items: center;
}

.p-medicalContents {
    margin: 70px 0 0;
}

.p-medicalSymptoms {
    margin: 0 0 70px;
}

.p-medicalSymptoms__wrap {
    padding: 42px 50px 57px;
    background-color: #FFFCF0;
}

.p-medicalSymptoms__text {
    line-height: 1.45;
    margin: 0 0 72px;
}

.p-medicalSymptoms__wrap h4 {
    font-size: 2.8rem;
    margin: 0 0 30px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.25);
}

.p-medicalSymptoms__wrap h4 span {
    display: flex;
    align-items: center;
}

.p-medicalSymptoms__wrap h4 span:before {
    content: "";
    display: inline-block;
    width: 43px;
    height: 60px;
    background-image: url(images/medical_policy_icon.svg);
    margin: 0 12px 0 0;
}

.p-medicalSymptoms__policy {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 40px;
    line-height: 1.75;
}

.p-medicalSymptoms__policyWrap {
    background-color: #fff;
    border-radius: 10px;
    padding: 32px 34px;
}

.p-medicalContents h3 {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
}

.p-medicalHouse {
    margin: 50px 0 0;
}

.p-medicalHouse h3 span {
    font-size: 3.8rem;
}

.p-medicalContents__wrap:not(:last-child) {
    margin: 0 0 50px;
}

.p-medicalHouse__wrap {
    background-color: #EB822B;
    padding: 68px 0 40px;
    border-radius: 10px;
}

.p-medicalHouse h3 {
    width: 385px;
    border-radius: 4px;
    font-size: 3rem;
    text-align: center;
    padding: 16px 27px;
    margin: 0 auto -30px;
    color: #EB822B;
    font-weight: bold;
    border-radius: 4px;
    border: 3px solid #EB822B;
    background-color: #fff;
    position: relative;
}

.p-medicalHouse h4 {
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.583;
    margin: 0 0 24px;
    color: #fff;
    font-weight: bold;
}

.p-medicalHouse .c-text {
    color: #fff;
    text-align: center;
    margin: 0 0 22px;
}


.p-medicalContents__telMain {
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 28px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.p-medicalContents__telMain:before {
    content: "";
    display: inline-block;
    width: 53px;
    height: 53px;
    background-image: url(images/medical_tel_icon.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 12px 0 0;
}

.p-medicalContents__telNumber {
    font-size: 4.9rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    margin: 0 0 0 27px;
}

.p-medicalContents__telNumberSmall {
    display: inline-block;
    font-size: 3.3rem;
    letter-spacing: 0.04em;
    margin: 0 9px 0 0;
}

.p-medicalBox.p-medicalBox02 {
    background-color: #F2FBF9;
    padding: 90px 0 100px;
}

.p-medicalBox {
    margin: 0 0 100px;
}

.p-medicalContents__attention {
    font-size: 2.4rem;
    color: #EB822B;
    margin: 40px 0 0;
    font-weight: bold;
}

.p-medicalVaccine .c-list {
    margin: 0 0 100px;
}

.p-medicalVaccine__title {
    font-size: 3.3rem;
    letter-spacing: 0.02em;
    color: #fff;
    border-radius: 15px;
    margin: 0 0 36px;
    padding: 24px 0;
    background-color: #50C8B0;
    text-align: center;
}

.p-medicalVaccine h5 {
    font-size: 2.8rem;
    margin: 0 0 32px;
    text-align: center;
}

.p-medicalVaccine a span {
    display: inline-block;
    border-bottom: 1px solid #51C7B0;
    padding-top: 5px;
    color: #50C8B0;
}

.p-medicalVaccine > a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.6rem;
    color: #50C8B0;
    margin: 0 auto 25px;
    border-radius: 15px;
    font-weight: bold;
}

.p-medicalVaccine > a span {
    display: flex;
    align-items: center;
    border: none;
}

.p-medicalVaccine > a span:before {
    content: "";
    background-image: url(images/contact_icon.svg);
    width: 52px;
    height: 52px;
    background-size: 100%;
    display: inline-block;
    margin: 0 12px 0 0;
}

.p-medicalVaccine .c-text {
    text-align: center;
    margin: 0 0 78px;
}

.p-medicalList__int .p-medicalSymptoms {
    margin: 0;
}

.p-medicalList__int .p-medicalHealth {
    margin: 80px 0 70px;
}

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

    .p-medicalWrap {
        gap: 40px;
    }

    .p-medicalImg {
        width: 45%;
    }

    .p-medicalText {
        width: 50%;
    }

    .p-medicalTitle {
        font-size: 3.2rem;
    }

    .p-medicalHouse h3 {
        width: 340px;
        font-size: 2.6rem;
    }

    .p-medicalContents__telNumber {
        font-size: 4.2rem;
    }
}

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

    .p-medicalWrap {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .p-medical .c-pageTitle02 {
        padding: 10px 0px 10px 12px;
    }

    .p-medicalImg,
    .p-medicalText {
        width: 100%;
    }

    .p-medicalImg img {
        width: 100%;
    }

    .p-medicalText h2 {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .p-medicalTrouble ul li {
        font-size: 1.8rem;
        margin: 0px 0px 15px;
        padding: 0px 0px 15px;
    }

    .p-medicalSymptoms__wrap {
        padding: 32px 30px 40px;
    }

    .p-medicalHouse h3 {
        width: auto;
        margin: 0 20px -25px;
    }

    .p-medicalContents__telMain {
        flex-wrap: wrap;
        font-size: 2.6rem;
    }

    .p-medicalContents__telNumber {
        width: 100%;
        font-size: 3.8rem;
        margin: 8px 0 0;
    }

    .p-medical .c-pageTitle02 span:before {
        width: 30px;
        height: 30px;
        margin: 0 10px 0 0;
        background-size: 100%;
    }

    .p-medicalList:not(:last-child) {
        margin: 0px 0px 60px;
    }

    .p-medicalContents__attention {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .p-medicalBox {
        margin: 0px 0px 60px;
    }

    .p-medicalBox.p-medicalBox02 {
        margin: 0px 0px 50px;
        padding: 45px 0px 50px;
    }

    .p-medicalVaccine .c-list {
        margin: 0px 0px 50px;
    }

    .p-medicalVaccine__title {
        font-size: 2.5rem;
        padding: 12px 10px;
        border-radius: 5px;
        line-height: 1.3;
        margin: 0px 0px 15px;
    }

    .p-medicalVaccine h5 {
        font-size: 1.8rem;
    }

    .p-medicalVaccine > a span:before {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 590px) {
    .p-medicalWrap {
        gap: 20px;
    }

    .p-medicalTitle {
        font-size: 2.2rem;
        margin: 0px 0px 25px;
    }

    .p-medicalTitle:before {
        width: 20px;
        height: 2px;
        margin-right: 10px;
    }

    .p-medicalText h2 {
        font-size: 2rem;
    }

    .p-medicalTrouble {
        margin: 0 0 50px;
    }

    .p-medicalTrouble ul li {
        font-size: 1.5rem;
        margin-bottom: 10px;
        padding-bottom: 10px;
        line-height: 1.2;
    }

    .p-medicalTrouble ul li span:before {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .p-medicalSymptoms {
        margin: 0px 0px 50px;
    }

    .p-medicalSymptoms__text {
        margin: 0 0 40px;
    }

    .p-medicalSymptoms__wrap h4 {
        font-size: 2.2rem;
        margin: 0 0 18px;
        padding: 0 0 12px;
    }

    .p-medicalSymptoms__policy {
        font-size: 1.4rem;
        margin: 0 0 20px;
    }

    .p-medicalSymptoms__policyWrap {
        padding: 20px 18px;
    }

    .p-medicalSymptoms__wrap {
        padding: 22px 18px 30px;
    }

    .p-medicalSymptoms__wrap h4 span:before {
        width: 30px;
        height: 42px;
        background-size: 100%;
        margin: 0 8px 0 0;
    }

    .p-medicalHouse__wrap {
        padding: 40px 18px 25px;
    }

    .p-medicalHouse h3 {
        font-size: 2.2rem;
        padding: 12px 16px;
    }

    .p-medicalHouse h4 {
        font-size: 1.5rem;
        margin: 0 0 15px;
    }

    .p-medicalContents__telMain:before {
        width: 33px;
        height: 33px;
        margin: 0 5px 0 0;
        background-size: 100%;
    }

    .p-medicalContents__telNumber {
        font-size: 2.8rem;
        text-align: center;
    }

    .p-medicalContents__telNumberSmall {
        font-size: 2rem;
        margin: 0;
    }

    .p-medicalHouse h3 {
        font-size: 1.8rem;
        padding: 8px 6px;
    }

    .p-medicalHouse h3 span {
        font-size: 2.6rem;
    }

    .p-medicalContents {
        margin: 50px 0px 0px;
    }

    .p-medicalContents__telMain {
        font-size: 2.2rem;
        margin: 0;
    }

    .p-medicalContents__telNumber {
        font-size: 3.2rem;
    }

    .p-medicalContents h3 {
        font-size: 2rem;
    }

    .p-medicalContents__wrap:not(:last-child) {
        margin: 0px 0px 30px;
    }

    .p-medicalVaccine > a {
        font-size: 2.8rem;
    }

    .p-medicalList__int .p-medicalHealth {
        margin: 50px 0px 50px;
    }

    .p-medicalVaccine__title {
        font-size: 2rem;
    }

    .p-medicalVaccine > a span:before {
        width: 25px;
        height: 25px;
    }

    .p-medicalVaccine h5 {
        margin: 0px 0px 5px;
        line-height: 1.4;
    }

    .p-medicalVaccine .c-text {
        margin: 0px 0px 40px;
    }
}

/* -------------------------------------------
 * beginner
 * ------------------------------------------- */

.p-beginnerPlease {
    margin: 0 0 100px;
}

.p-beginnerPlease ul {
    border-radius: 10px;
    border: 10px solid rgba(81, 199, 176, 0.15);
    margin: 0 0 40px;
    padding: 50px 60px;
}

.p-beginnerPlease ul li {
    font-size: 2rem;
    line-height: 1.75;
}

.p-beginnerPlease ul li:not(:last-child) {
    margin: 0 0 30px;
}

.p-beginnerPlease ul li span {
    display: flex;
    align-items: center;
}

.p-beginnerPlease ul li:nth-of-type(3) span ,
.p-beginnerPlease ul li:nth-of-type(4) span {
    align-items: flex-start;
}

.p-beginnerPlease ul li span:before {
    content: "";
    width: 32px;
    height: 32px;
    background-size: 100%;
    background-image: url(images/check_icon.svg);
    background-repeat: no-repeat;
    margin: 0 20px 0 0;
}

.p-beginnerBring ul li {
    font-size: 2.4rem;
    line-height: 1.75;
    font-weight: 700;
}

.p-beginnerBring ul li span:before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin: 0 15px 0 0;
    border: 3px solid #51C7B0;
}

.p-beginnerBring ul li:not(:last-child) {
    margin: 0 0 25px;
}

.p-beginnerBring {
    margin: 0 0 100px;
}

.p-beginnerBring .p-reserveTime__Wrap {
    background-color: #F5F5F5;
    border: none;
}

.p-beginnerBring .p-reserveTime__box dl dt {
    background-color: #fff;
}

.p-beginnerBring .p-reserveTime__box h3 {
    background-color: #fff;
}

.p-beginnerFlow {
    margin: 0 0 118px;
}

.p-beginnerFlow ul li {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 54px 55px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.p-beginnerFlow ul li:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 37px 38px 0 38px;
    border-color: #51C7B0 transparent transparent transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
}

.p-beginnerFlow ul li:last-child:after {
    display: none;
}

.p-beginnerFlow ul li:not(:last-child) {
    margin: 0 0 70px;
}

.p-beginnerFlow__number {
    position: absolute;
    color: #51C7B0;
    font-size: 6rem;
    padding: 0 22px;
    font-weight: bold;
    top: -30px;
    background-color: #fff;
}

.p-beginnerFlow__text {
    width: 69.1%;
}

.p-beginnerFlow__text h3 {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 0 0 30px;
}

.p-beginnerFlow__text .c-text {
    width: 94.6%;
    margin: 0 0 28px;
}

.p-beginnerFlow__img {
    width: 29%;
}

.p-beginnerFlow__img img {
    border-radius: 10px;
}

.p-beginnerFlow__attention {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    line-height: 1.778;
    margin: 0 0 14px;
    color: #EB822B;
    font-weight: bold;
}

.p-beginnerFlow__listWrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-beginnerFlow__list {
    font-size: 1.7rem;
    color: #fff;
    border-radius: 5px;
    padding: 9px 13px;
    background-color: #EB822B;
}

.p-beginnerFlow__list .p-beginnerWrap {
    display: flex;
}

.p-beginnerWrap {
    display: flex;
}

.p-beginnerText {
    width: 50%;
    background-color: #F5F5F5;
    padding: 57px 95px 50px 96px;
    border-radius: 10px;
    border-radius: 10px 0 0 10px;
}

.p-beginnerText h3 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 30px;
    text-align: center;
    display: flex;
    align-items: center;
}

.p-beginnerText h3:before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 59px;
    background-image: url(images/beginner_icon.svg);
    margin: 0 18px 0 0;
}

.p-beginnerText .c-text {
    text-align: center;
    margin: 0 0 40px;
}

.p-beginnerText .c-button {
    margin: 0 auto;
    color: #fff;
    background-color: #51C7B0;
}

.p-beginnerText .c-button span:after {
    border-color: transparent transparent transparent #fff;
}

.p-beginnerImg {
    width: 50%;
    background-image: url(images/page_beginner.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0 10px 10px 0;
}

@media screen and (min-width: 821px) {

    .p-beginnerWrap {
        overflow: hidden;
        transition: transform .4s ease, box-shadow .4s ease;
    }

    .p-beginnerWrap:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,.12);
    }

    .p-beginnerImg {
        transition: transform .6s ease;
    }

    .p-beginnerWrap:hover .p-beginnerImg {
        transform: scale(1.08);
    }

    .p-beginnerText {
        transition: transform .4s ease;
    }

    .p-beginnerWrap:hover .p-beginnerText {
        transform: translateY(-4px);
    }

    .p-beginnerWrap:hover .c-button {
        background-color: #50C8B0;
        color: #fff;
    }

    .p-beginnerWrap:hover .c-button span:after {
        border-color: transparent transparent transparent #fff;
    }
}

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

    .p-beginnerPlease,
    .p-beginnerBring,
    .p-beginnerFlow {
        margin-bottom: 90px;
    }

    .p-beginnerPlease ul {
        padding: 40px 50px;
    }

    .p-beginnerFlow ul li {
        padding: 45px 45px;
    }

    .p-beginnerFlow__number {
        font-size: 5.2rem;
        top: -26px;
    }

    .p-beginnerText {
        padding: 50px 70px;
    }

    .p-beginnerText h3 {
        font-size: 2.7rem;
    }
}

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

    .p-beginnerPlease ul {
        padding: 35px 30px;
        border-width: 8px;
    }

    .p-beginnerPlease ul li {
        font-size: 1.8rem;
    }

    .p-beginnerBring ul li {
        font-size: 2.1rem;
    }

    .p-beginnerFlow ul li {
        flex-direction: column;
        padding: 40px 35px;
    }

    .p-beginnerFlow__number {
        position: static;
        margin: 0 0 20px;
        padding: 0;
        background: none;
    }

    .p-beginnerFlow__text,
    .p-beginnerFlow__img {
        width: 100%;
    }

    .p-beginnerFlow__img {
        margin-top: 25px;
    }

    .p-beginnerFlow__text h3 {
        font-size: 2.5rem;
    }

    .p-beginnerWrap {
        flex-direction: column-reverse;
    }

    .p-beginnerText,
    .p-beginnerImg {
        width: 100%;
        border-radius: 10px;
    }

    .p-beginnerText {
        padding: 45px 40px;
        border-radius: 0 0 10px 10px;
    }

    .p-beginnerImg {
        height: 260px;
        border-radius: 10px 10px 0 0;
    }

    .p-beginnerFlow ul li:after {
        border-width: 28px 30px 0 30px;
        bottom: -18px;
    }
}

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

    .p-beginnerPlease,
    .p-beginnerBring,
    .p-beginnerFlow {
        margin-bottom: 50px;
    }

    .p-beginnerPlease ul {
        padding: 25px 18px;
        border-width: 6px;
    }

    .p-beginnerPlease ul li {
        font-size: 1.4rem;
        line-height: 1.7;
    }

    .p-beginnerPlease ul li span:before {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        flex-shrink: 0;
    }

    .p-beginnerPlease ul li:not(:last-child) {
        margin: 0px 0px 18px;
    }

    .p-beginnerBring ul li {
        font-size: 1.5rem;
    }

    .p-beginnerBring ul li:not(:last-child) {
        margin: 0px 0px 10px;
    }

    .p-beginnerFlow ul li {
        padding: 30px 22px;
    }

    .p-beginnerFlow ul li:not(:last-child) {
        margin-bottom: 30px;
    }

    .p-beginnerFlow__number {
        font-size: 4.2rem;
        margin-bottom: 14px;
    }

    .p-beginnerFlow__text h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .p-beginnerFlow__attention {
        font-size: 1.6rem;
    }

    .p-beginnerFlow__list {
        font-size: 1.5rem;
        padding: 6px 10px;
    }

    .p-beginnerText {
        padding: 20px 15px;
    }

    .p-beginnerText h3 {
        font-size: 2rem;
        gap: 10px;
        margin: 0 0 8px;
        justify-content: center;
    }

    .p-beginnerText h3:before {
        margin: 0;
        width: 30px;
        height: 44px;
        background-size: 100%;
    }

    .p-beginnerText .c-text {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .p-beginnerImg {
        height: 200px;
    }

    .p-beginnerFlow ul li:after {
        border-width: 20px 22px 0 22px;
        bottom: -12px;
    }

    .p-beginnerFlow__list {
        width: 100%;
    }

    .p-beginnerFlow__listWrap {
        flex-wrap: wrap;
    }

    .p-beginnerFlow__text .c-text {
        width: 100%;
        margin: 0 0 10px;
    }

    .p-beginnerFlow__img {
        margin-top: 10px;
    }
}

/* -------------------------------------------
 * access
 * ------------------------------------------- */

.p-accessMap__address {
    font-size: 2rem;
    letter-spacing: 0.02em;
    margin: 0 0 40px;
}

.p-accessMap__wrap {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0 0 47px;
}

.p-accessMap__wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.p-accessMap ul {
    display: flex;
    justify-content: space-between;
    margin: 0 0 62px;
}

.p-accessMap ul li {
    width: 31.5%;
    height: 260px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0 0;
}

.p-accessMap ul li:nth-of-type(1) {
    border: 2px solid #03B8C3;
}

.p-accessMap ul li:nth-of-type(2) {
    border: 2px solid #00B7B0;
}

.p-accessMap ul li:nth-of-type(3) {
    border: 2px solid #01B38F;
}

.p-accessMap ul li:nth-of-type(1) h3 {
    color: #03B8C3;
}

.p-accessMap ul li:nth-of-type(2) h3 {
    color: #00B7B0;
}

.p-accessMap ul li:nth-of-type(3) h3 {
    color: #01B38F;
}

.p-accessMap ul li h3 {
    font-size: 2.7rem;
    font-weight: 700;
    margin: 0 0 20px;
    text-align: center;
}

.p-accessMap ul li h3 span:before {
    content: "";
    display: block;
    width: 74px;
    height: 74px;
    margin: 0 auto 13px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.p-accessMap ul li:nth-of-type(1) h3 span:before {
    background-image: url(images/access_icon01.svg);
}

.p-accessMap ul li:nth-of-type(2) h3 span:before {
    background-image: url(images/access_icon02.svg);
}

.p-accessMap ul li:nth-of-type(3) h3 span:before {
    background-image: url(images/access_icon03.svg);
}

.p-accessParking {
    display: flex;
    justify-content: space-between;
}

.p-accessParking__left {
    width: 28%;
}

.p-accessParking__right {
    width: 69.8%;
    padding: 27px 39px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.p-accessParking__leftBox {
    padding: 20px 20px 53px;
    background-color: #F5F5F5;
    border-radius: 10px;
    position: relative;
}

.p-accessParking__leftBox:not(:last-child) {
    margin: 0 0 27px;
}

.p-accessParking__leftBox h3 {
    width: 95%;
    height: 50px;
    padding: 0 0 0 8px;
    position: absolute;
    left: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    border-radius: 0 100px 100px 0;
    color: #fff;
}

.p-accessParking__leftBox:nth-of-type(1) h3 {
    background-color: #EB822B;
}

.p-accessParking__leftBox:nth-of-type(2) h3 {
    background-color: #51C7B0;
}

.p-accessParking__leftBox h3 span:first-child {
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    margin: 0 4px 0 0;
}

.p-accessParking__leftBox h3 span:last-child {
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.p-accessHours {
    width: 84.375%;
    background-color: #E1F6F2;
    border-radius: 10px;
    margin: 0 auto 80px;
    padding: 75px 0 100px;
}

.p-accessHours__wrap {
    background-color: #fff;
    border-radius: 10px;
    margin: 0 0 30px;
    padding: 55px 50px;
}

.p-accessHours__contact {
    background-color: #51C7B0;
    border-radius: 10px;
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-accessHours__contactTel {
    margin: 0 63px 0 0;
}

.p-accessHours__contactTel span {
    display: block;
}

.p-accessHours__contactTel a {
    font-size: 4.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #fff;
}

.p-accessHours__contactTel a:before {
    content: "";
    display: inline-block;
    width: 49px;
    height: 49px;
    background-size: 100%;
    background-image: url(images/access_tel_icon_white.svg);
    background-repeat: no-repeat;
    margin: 0 8px 0 0;
}

.p-accessHours__contactTel > span {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
    color: #fff;
}

.p-accessHours__contactAttention {
    font-size: 2.2rem;
    color: #fff;
    padding: 14px 17px;
    border: 1px solid #fff;
    margin: 0 0 20px;
    border-radius: 5px;
    line-height: 1.3;
}

.p-accessHours__contactText .c-text {
    color: #fff;
}

.p-accessHours__box {
    display: flex;
    justify-content: space-between;
}

.p-accessHours__table {
    width: 67%;
}

.p-accessHours__table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    text-align: center;
    margin-bottom: 15px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 48px;
}

.p-accessHours__table table th,
.p-accessHours__table table td {
    padding: 18px 5px;
    border-radius: 5px;
    font-size: 2.4rem;
}

.p-accessHours__table table th {
    background: #50C8B0;
    letter-spacing: 0.04em;
    color: #fff;
}

.p-accessHours__table table td {
    border: 1px solid #50C8B0;
}

.p-accessHours__table table .p-accessTable__time {
    border: 1px solid #50C8B0;
    color: #50C8B0;
}

.p-accessHours__table table th:nth-of-type(1),
.p-accessHours__table table .p-accessTable__time {
    width: 33.5%;
}

.p-accessHours__receptionTime {
    margin: 0 0 30px;
}

.p-accessHours__receptionIcon {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    display: block;
    margin: 0 0 10px;
}

.p-accessHours__receptionTime .p-accessHours__receptionIcon:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(images/access_time_icon.svg);
    background-repeat: no-repeat;
    margin: 0 8px 0 0;

}

.p-accessHours__receptionHoliday .p-accessHours__receptionIcon:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 28px;
    background-image: url(images/access_calendar_icon.svg);
    background-repeat: no-repeat;
    margin: 0 6px 0 0;
}

.p-accessHours__receptionIcon {
    display: flex;
    align-items: center;
}

.p-accessHours__receptionIcon span {
    display: flex;
    align-items: center;
}

.p-accessHours__receptionText {
    font-size: 2rem;
}

.p-accessHours__receptionTime p {
    font-size: 2.4rem;
}

.p-accessHours__receptionTime p:not(:last-child) {
    margin: 0 0 14px;
}

.p-accessHours__receptionBadge {
    font-size: 2rem;
    display: inline-block;
    background-color: #F5F5F5;
    border-radius: 3px;
    margin: 0 11px 0 0;
    padding: 4px 20px;
}

@media screen and (max-width: 1300px) {
    .p-accessMap__wrap {
        height: 420px;
        margin-bottom: 40px;
    }

    .p-accessMap ul li {
        height: 240px;
        padding-top: 28px;
    }

    .p-accessMap ul li h3 {
        font-size: 2.4rem;
    }

    .p-accessHours {
        padding: 65px 0 85px;
        margin-bottom: 70px;
    }

    .p-accessHours__wrap {
        padding: 45px 40px;
    }

    .p-accessHours__contactTel a {
        font-size: 4rem;
    }

    .p-accessHours__table table th,
    .p-accessHours__table table td {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 820px) {
    .p-access {
        margin: 0px 0px 60px;
    }

    .p-accessMap__address {
        font-size: 1.8rem;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .p-accessMap__wrap {
        height: 360px;
    }

    .p-accessMap ul {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 50px;
    }

    .p-accessMap ul li {
        width: 100%;
        height: auto;
        padding: 30px 0;
    }

    .p-accessParking {
        flex-direction: column;
        gap: 30px;
    }

    .p-accessParking__left,
    .p-accessParking__right {
        width: 100%;
    }

    .p-accessParking__right {
        padding: 30px;
    }

    .p-accessHours {
        width: 95%;
        padding: 60px 0 80px;
    }

    .p-accessHours__box {
        flex-direction: column;
        gap: 30px;
    }

    .p-accessHours__table {
        width: 100%;
    }

    .p-accessHours__contact {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }

    .p-accessHours__contactTel {
        margin-right: 0;
    }

    .p-accessHours__contactTel a {
        justify-content: center;
        font-size: 3.6rem;
    }

    .p-accessHours__contactAttention {
        font-size: 2rem;
    }
}

@media screen and (max-width: 590px) {
    .p-accessMap__address {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }

    .p-accessMap__wrap {
        height: 280px;
        margin-bottom: 35px;
        border-radius: 10px;
    }

    .p-accessMap ul {
        margin-bottom: 40px;
    }

    .p-accessMap ul li {
        border-radius: 14px;
        padding: 18px 0;
    }

    .p-accessMap ul li h3 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .p-accessMap ul li h3 span:before {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .p-accessParking__leftBox {
        padding: 18px 18px 48px;
    }

    .p-accessParking__leftBox h3 {
        height: 40px;
    }

    .p-accessParking__leftBox h3 span:first-child {
        font-size: 2rem;
    }

    .p-accessParking__leftBox h3 span:last-child {
        font-size: 1.4rem;
    }

    .p-accessParking__right {
        width: 100%;
        padding: 0;
    }

    .p-accessHours {
        width: 100%;
        padding: 50px 15px;
        margin-bottom: 50px;
    }

    .p-accessHours__wrap {
        padding: 35px 12px;
    }

    .p-accessHours__table table {
        border-spacing: 3px;
        margin-bottom: 15px;
    }

    .p-accessHours__table table th,
    .p-accessHours__table table td {
        font-size: 1.3rem;
        padding: 8px 2px;
    }

    .p-accessHours__receptionIcon {
        font-size: 2rem;
    }

    .p-accessHours__receptionText,
    .p-accessHours__receptionTime p {
        font-size: 1.5rem;
    }

    .p-accessHours__receptionHoliday .p-accessHours__receptionIcon:before {
        width: 18px;
        height: 19px;
        background-size: 100%;
    }

    .p-accessHours__receptionTime .p-accessHours__receptionIcon:before {
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    .p-accessHours__contactTel a {
        font-size: 3rem;
    }

    .p-accessHours__contactTel a:before {
        width: 36px;
        height: 36px;
    }

    .p-accessHours__contactAttention {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .p-accessHours__receptionBadge {
        font-size: 1.6rem;
        padding: 4px 14px;
        margin-bottom: 8px;
    }

    .p-accessHours__receptionTime p:not(:last-child) {
        margin: 0px 0px 5px;
    }

    .p-accessHours__receptionTime {
        margin: 0px 0px 15px;
    }

    .p-aboutOutline__map {
        height: 300px;
    }
}

/* -------------------------------------------
 * reserve
 * ------------------------------------------- */

.p-reserve {
    margin: 0 0 100px;
}

.p-reserveAbout {
    margin: 0 0 100px;
}

.p-reserveAbout__attention {
    margin: 0 0 50px;
    padding: 42px 0;
    background-color: rgba(235, 130, 43, 0.1);
    border-radius: 10px;
    font-size: 3rem;
    line-height: 1.5;
    color: #EB822B;
    font-weight: bold;
    text-align: center;
}

.p-reserveAbout__attention span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-reserveAbout__attention span:before {
    content: "";
    display: inline-block;
    background-image: url(images/attention_icon.svg);
    width: 55px;
    height: 55px;
    margin: 0 40px 0 0;
    background-size: 100%;
}

.p-reserveAbout ul {
    display: flex;
    justify-content: space-between;
    margin: 0 0 40px;
}

.p-reserveAbout ul li {
    width: 31.5%;
    height: 240px;
    border-radius: 20px;
    padding: 25px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p-reserveAbout ul li:nth-of-type(1) {
    border: 2px solid #03B8C3;
}

.p-reserveAbout ul li:nth-of-type(2) {
    border: 2px solid #00B7B0;
}

.p-reserveAbout ul li:nth-of-type(3) {
    border: 2px solid #01B38F;
}

.p-reserveAbout ul li:nth-of-type(1) h3 {
    color: #03B8C3;
}

.p-reserveAbout ul li:nth-of-type(2) h3 {
    color: #00B7B0;
}

.p-reserveAbout ul li:nth-of-type(3) h3 {
    color: #01B38F;
}

.p-reserveAbout ul li h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 18px;
    text-align: center;
}

.p-reserveAbout ul li .c-text {
    line-height: 1.444;
}

.p-reserveAbout ul li:nth-of-type(1) h3 span:before {
    content: "";
    display: block;
    margin: 0 auto 12px;
    background-image: url(images/attention_icon_elderly.svg);
    width: 96px;
    height: 73px;
    background-size: 100%;
}

.p-reserveAbout ul li:nth-of-type(2) h3 span:before {
    content: "";
    display: block;
    margin: 0 auto 14px;
    background-image: url(images/attention_icon_symptoms.svg);
    width: 61px;
    height: 64px;
    background-size: 100%;
}

.p-reserveAbout ul li:nth-of-type(3) h3 span:before {
    content: "";
    display: block;
    margin: 0 auto 17px;
    background-image: url(images/attention_icon_equality.svg);
    width: 68px;
    height: 64px;
    background-size: 100%;
}

.p-reserveTel {
    background-color: #EB822B;
    border-radius: 10px;
    padding: 23px 43px;
    display: flex;
    align-items: center;
}

.p-reserveTel:before {
    content: "";
    display: inline-block;
    width: 61px;
    height: 89px;
    background-image: url(images/fever_icon.svg);
    margin: 0 14px 0 0;
}

.p-reserveTel h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
}

.p-reserveTel__number {
    font-size: 2.3rem;
    color: #fff;
    font-weight: 700;
    margin: 0 40px 0 0;
}

.p-reserveTel__number a {
    display: block;
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    margin: 10px 0 0;
}

.p-reserveTel__number a span {
    font-size: 3rem;
    margin: 0 10px 0 0;
}

.p-reservePolicy {
    font-size: 2.2rem;
    line-height: 1.818;
    text-align: center;
    margin: 0 0 60px;
}

.p-reserveSymptoms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.4rem;
    margin: 0 0 42px;
}

.p-reserveSymptoms span {
    font-size: 2.4rem;
    font-weight: 500;
    display: inline-block;
    padding: 12px 18px;
    background-color: #51C7B0;
    border-radius: 5px;
    color: #fff;
}

.p-reserveContact {
    margin: 0 0 100px;
}

.p-reserveContact__text {
    font-size: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 50px;
    text-align: center;
}

.p-reserveContact__tel {
    text-align: center;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 54px 0;
}

.p-reserveContact__telMain {
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 28px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-reserveContact__telMain:before {
    content: "";
    display: inline-block;
    width: 51px;
    height: 51px;
    background-image: url(images/access_tel_icon.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 10px 0 0;
}

.p-reserveContact__telNumber {
    font-size: 4.8rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #50C8B0;
    margin: 0 0 0 18px;
}

.p-reserveContact__telNumberSmall {
    display: inline-block;
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    margin: 0 10px 0 0;
}

.p-reserveContact__telNote {
    font-size: 1.8rem;
    line-height: 1.474;
}

.p-reserveTime__Wrap {
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.15);
    margin: 0 0 70px;
    padding: 40px 40px 42px;
    border-radius: 10px;
}

.p-reserveTime__box {
    width: 47.4%;
}

.p-reserveTime__box h3 {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    margin: 0 0 30px;
    padding: 16px 0 16px 22px;
    border-radius: 10px;
    background-color: #F5F5F5;
}

.p-reserveTime__box h3 span {
    display: flex;
    align-items: center;
}

.p-reserveTime__box:nth-of-type(1) h3 span:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(images/access_time_icon.svg);
    background-repeat: no-repeat;
    margin: 0 8px 0 0;
}

.p-reserveTime__box:nth-of-type(2) h3 span:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 28px;
    background-image: url(images/access_calendar_icon.svg);
    background-repeat: no-repeat;
    margin: 0 12px 0 0;
}

.p-reserveTime__box ul li {
    font-size: 2rem;
}

.p-reserveTime__box ul li:not(:last-child) {
    margin: 0 0 18px;
}

.p-reserveTime__box ul li span:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #51C7B0;
    border-radius: 50%;
    margin: 0 12px 0 0;
}

.p-reserveTime__box dl {
    display: flex;
    align-items: center;
}

.p-reserveTime__box dl:not(:last-child) {
    margin: 0 0 20px;
}

.p-reserveTime__box dl dt {
    font-size: 2rem;
    margin: 0 11px 0 0;
    padding: 4px 20px;
    border-radius: 3px;
    background-color: #F5F5F5;
}

.p-reserveTime__box dl dd {
    font-size: 2.6rem;
    font-weight: 700;
}

.p-reserveTime__box {
    font-size: 1.9rem;
    line-height: 1.579;
}

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

    .p-reserve,
    .p-reserveAbout,
    .p-reserveContact {
        margin-bottom: 80px;
    }

    .p-reserveAbout__attention {
        font-size: 2.6rem;
        padding: 36px 0;
    }

    .p-reserveAbout ul li {
        height: 220px;
    }

    .p-reserveTel__number a {
        font-size: 4rem;
    }

    .p-reserveContact__telNumber {
        font-size: 4.2rem;
    }

    .p-reserveTime__box h3 {
        font-size: 2.5rem;
    }
}

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

    .p-reserve,
    .p-reserveAbout,
    .p-reserveContact {
        margin-bottom: 70px;
    }

    .p-reserveAbout__attention {
        font-size: 2.2rem;
        padding: 30px 20px;
    }

    .p-reserveAbout__attention span:before {
        width: 42px;
        height: 42px;
        margin-right: 20px;
    }

    .p-reserveAbout ul {
        flex-direction: column;
        gap: 20px;
        margin: 0 0 25px;
    }

    .p-reserveAbout ul li {
        width: 100%;
        height: auto;
        padding: 28px 24px;
    }

    .p-reserveTel {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    .p-reserveTel:before {
        margin: 0 0 16px;
    }

    .p-reserveTel__number {
        margin: 16px 0 0;
    }

    .p-reserveSymptoms {
        flex-wrap: wrap;
        font-size: 2.2rem;
    }

    .p-reserveContact__tel {
        padding: 45px 20px;
    }

    .p-reserveContact__telMain {
        font-size: 2.8rem;
    }

    .p-reserveContact__telNumber {
        font-size: 3rem;
    }

    .p-reserveContact__telNumberSmall {
        font-size: 2.2rem;
        margin: 0;
    }

    .p-reserveContact__text {
        font-size: 1.6rem;
    }

    .p-reserveTime__Wrap {
        flex-direction: column;
        gap: 30px;
        padding: 35px 30px;
    }

    .p-reserveTime__box {
        width: 100%;
    }

    .p-reserveTime__box h3 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }


}

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

    .p-reserve,
    .p-reserveAbout,
    .p-reserveContact {
        margin-bottom: 50px;
    }

    .p-reserveAbout__attention {
        font-size: 3.6vw;
        margin: 0px 0px 30px;
        padding: 15px 10px;
        line-height: 1.6;
    }

    .p-reserveAbout__attention span {
        flex-direction: column;
    }

    .p-reserveAbout__attention span:before {
        width: 32px;
        height: 32px;
        margin: 0 0 12px;
    }

    .p-reserveAbout ul li {
        padding: 15px 18px;
        border-radius: 14px;
    }

    .p-reserveAbout ul li h3 {
        font-size: 2rem;
    }

    .p-reserveAbout ul li:nth-of-type(1) h3 span::before {
        width: 68px;
        height: 52px;
        background-size: 100%;
    }

    .p-reserveAbout ul li:nth-of-type(2) h3 span::before {
        width: 43px;
        height: 45px;
        background-size: 100%;
    }

    .p-reserveAbout ul li:nth-of-type(3) h3 span::before {
        width: 48px;
        height: 46px;
        background-size: 100%;
    }

    .p-reserveTel h3 {
        font-size: 2.2rem;
    }

    .p-reserveTel__number {
        font-size: 2rem;
    }

    .p-reserveTel__number a {
        font-size: 3.2rem;
    }

    .p-reserveTel__number a span {
        font-size: 2.4rem;
    }

    .p-reservePolicy {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .p-reserveSymptoms {
        font-size: 1.6rem;
        gap: 8px;
        margin: 0 0 60px;
    }

    .p-reserveSymptoms span {
        font-size: 1.6rem;
        padding: 8px 12px;
    }

    .p-reserveContact__text {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .p-reserveContact__telMain {
        font-size: 2rem;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0px 0px 15px;
    }

    .p-reserveContact__telNumber {
        width: 100%;
        font-size: 2.8rem;
        margin-left: 0;
    }

    .p-reserveContact__telNumberSmall {
        font-size: 2rem;
    }

    .p-reserveContact__telMain::before {
        width: 35px;
        height: 35px;
        margin: 0px 5px 0px 0px;
    }

    .p-reserveContact__telNote {
        font-size: 1.4rem;
    }

    .p-reserveContact__tel {
        padding: 20px 15px;
    }

    .p-reserveTel {
        padding: 15px 18px;
    }

    .p-reserveTel h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .p-reserveTel::before {
        content: "";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        margin: -46px 0 0 0;
        border: 2px solid #EB822B;
        background-color: #EB822B;
        border-radius: 50%;
        background-image: url(images/fever_icon.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60%;
    }

    .p-reserveTel__number {
        font-size: 1.5rem;
    }

    .p-reserveTel__number a {
        font-size: 2.8rem;
        margin: 6px 0 20px;
    }

    .p-reserveTel__number a span {
        font-size: 2rem;
        margin: 0 5px 0 0;
    }

    .p-reserveTime__Wrap {
        padding: 28px 15px;
        margin-bottom: 50px;
    }

    .p-reserveTime__box h3 {
        padding: 8px 0px 8px 16px;
        font-size: 2rem;
        border-radius: 5px;
    }

    .p-reserveTime__box ul li,
    .p-reserveTime__box dl dt {
        font-size: 1.5rem;
    }

    .p-reserveTime__box dl dd {
        font-size: 1.7rem;
    }

    .p-reserveTime__box dl dt {
        padding: 2px 10px;
    }

    .p-reserveTime__box dl:not(:last-child) {
        margin: 0 0 10px;
    }

    .p-reserveTime__box ul li:not(:last-child) {
        margin: 0 0 10px;
    }

    .p-reserveTime__box:nth-of-type(1) h3 span::before {
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    .p-reserveTime__box:nth-of-type(2) h3 span::before {
        width: 18px;
        height: 19px;
        background-size: 100%;
    }
}


/*----------------------------------------
	news
----------------------------------------*/

/*---- news_archive ----*/

.p-catch.p-catchNews {
    background-image: url(images/news_catch.jpg);
}

.p-newsArchive {
    margin: 0 0 100px;
}

.p-newsArchive__list {
    width: 100%;
}

.p-newsArchive__list:not(:last-child) {
    margin: 0 0 5px;
}

.p-newsArchive__list a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 28px 30px 28px 30px;
    background-color: #F5F5F5;
}

.p-newsArchive__list a h3 {
    font-size: 1.9rem;
}

.p-newsArchive__list:first-child a {
    border-radius: 15px 15px 0 0;
}

.p-newsArchive__list:last-child a {
    border-radius: 0 0 15px 15px;
}

.p-newsArchive__text {
    display: flex;
    align-items: center;
}

.p-newsArchive__info {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}

.p-newsArchive__category {
    font-size: 1.6rem;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
}

.p-newsArchive__category:not(:last-child) {
    margin: 0 10px 0 0;
}

.p-newsArchive__category.news-cat-info {
    background-color: #50C8B0;
}

.p-newsArchive__category.news-cat-jyoken {
    background-color: #01B2CD;
}

.p-newsArchive__category.news-cat-new {
    background-color: #FF9731;
}

.p-newsArchive__category.news-cat-bukken {
    background-color: #50C8B0;
}

.p-newsArchive__time {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #50C8B0;
    margin: 0 18px 0 0;
}

@media (max-width: 820px) {
    .p-newsArchive {
        margin: 0 0 50px;
    }

    .p-newsArchive__list a {
        padding: 22px 20px;
    }

    .p-newsArchive__list a h3 {
        font-size: 1.7rem;
    }

    .p-newsArchive__category {
        font-size: 1.4rem;
        padding: 4px 10px;
    }

    .p-newsArchive__time {
        font-size: 1.4rem;
        margin-right: 15px;
    }

    .p-newsArchive__info {
        margin-right: 20px;
    }
}

@media (max-width: 590px) {

    .p-newsArchive__list a {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 15px;
        gap: 10px;
    }

    .p-newsArchive__text {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .p-newsArchive__info {
        flex-wrap: wrap;
        margin: 0;
        gap: 8px;
    }

    .p-newsArchive__category {
        font-size: 1.3rem;
        padding: 3px 10px;
    }

    .p-newsArchive__time {
        font-size: 1.3rem;
        margin: 0;
    }

    .p-newsArchive__list a h3 {
        font-size: 1.6rem;
        line-height: 1.5;
    }
}

/*---- c-tabMenu ----*/

ul.c-tabMenu {
    list-style: none;
    margin: 0 0 50px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

ul.c-tabMenu li {
    display: inline-block;
}

ul.c-tabMenu a {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid #B9B9B9;
    text-decoration: none;
    background: white;
    transition: background 0.2s, color 0.2s;
    border-radius: 2px;
    border: 2px solid #50C8B0;
    border-radius: 100px;
    color: #50C8B0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

ul.c-tabMenu li.current a {
    background: #50C8B0;
    color: #fff;
    border: none;
}

.c-tabWrap {
    display: flex;
    align-items: center;
    margin: 0 0 60px;
}

.c-tabTitle {
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    margin: 0 22px 0 0;
    display: flex;
    align-items: center;
    color: #808080;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.c-tabTitle:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 38px;
    background-color: rgba(112, 112, 112, 0.6);
    margin: 0 0 0 20px;
}

@media screen and (max-width: 768px) {
    .c-tabWrap {
        flex-direction: column;
        align-items: flex-start;
        margin: 0 0 50px;
    }

    .c-tabTitle {
        font-size: 1.8rem;
        margin: 0 0 10px 0;
    }

    .c-tabTitle:after {
        display: none;
    }

    ul.c-tabMenu {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 590px) {
    ul.c-tabMenu li a {
        font-size: 1.4rem;
        padding: 6px 8px;
    }

    .c-tabWrap {
        margin: 0 0 35px;
    }
}

/*---- news_single ----*/

.p-catchSingle__news {
    background-image: url(images/news_single_catch.jpg);
}

section.single-news {
    margin: 0 0 120px;
}

.single-info {
    display: flex;
    align-items: center;
    margin: 0 0 28px;
}

.single-info__time {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.53);
}

.single-news__title {
    font-size: 3.7rem;
    line-height: 1.486;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.08em;
    font-weight: bold;
    margin: 6px 0 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid #7070704D;
}

.single-news__text {
    margin: 0 0 120px;
}

.single-news__text pre {
    white-space: pre-wrap;
}

.single-all__button {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: bold;
}

.single-all__button:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    background-image: url(images/single_all_arrow.svg);
    margin: 0 20px 0 0;
    background-repeat: no-repeat;
}

.single-news__box {
    width: 63.3%;
}

.single-news__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.single-news .p-sidebar__archive {
    width: 30%;
}

.single-news .c-button {
    width: 250px;
    height: 60px;
    margin: auto;
    border: 1px solid #50C8B0;
}

.single-news .c-button:after {
    content: "";
    background-image: url(images/news_button_arrow.svg);
    width: 7px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 15px;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.single-news__img {
    margin: 0 0 40px;
}

.single-news__img img {
    width: 100%;
}

.single-news__text > h2 {
    font-size: 2.8rem;
    border-bottom: 4px solid #51C7B0;
    margin-top: 80px;
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
    line-height: 1.4;
}

.single-news__text > h3 {
    font-size: 2.4rem;
    border-left: 4px solid #51C7B0;
    margin-top: 70px;
    padding: 8px 16px;
    background: #F2FBF9;
    line-height: 1.4;
}

.single-news__text > h4 {
    font-size: 2rem;
    margin-top: 70px;
    color: #51C7B0;
}

.single-news__text > p {
    font-size: 1.8rem;
    margin-top: 30px;
    line-height: 2;
    padding: 0 8px;
}

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

    .single-news__text {
        margin: 0 0 70px;
    }

    .single-news__wrap {
        flex-direction: column;
    }

    .single-news__box {
        width: 100%;
        margin: 0 0 50px;
    }

    .single-news__title {
        font-size: 3rem;
        line-height: 1.2;
        margin: 6px 0 30px;
        padding-bottom: 15px;
    }

    .single-info {
        margin: 0 0 18px;
    }

    #toc_container p.toc_title {
        font-size: 1.8rem;
    }

    .single-news {
        margin: 0 0 60px;
    }

    .single-news .p-sidebar__archive {
        width: 100%;
    }

    .single-info__time {
        font-size: 1.2rem;
    }

    section.single-news {
        margin: 0 0 60px;
    }

    .single-news__img {
        margin: 0 0 20px;
    }
	
	.single-news__text > h2 {
        font-size: 2.2rem;
        margin-top: 50px;
    }

    .single-news__text > h3 {
        font-size: 1.8rem;
        margin-top: 40px;
    }

    .single-news__text > h4 {
        font-size: 1.6rem;
        margin-top: 40px;
    }

    .single-news__text > p {
        font-size: 1.4rem;
        line-height: 1.8;
        padding: 0;
    }
}

@media screen and (max-width:590px) {
    .single-news .p-sidebar__archive {
        width: 100%;
    }

    .single-all__button {
        margin: 30px 0 0;
    }

    .single-news__title {
        font-size: 2.2rem;
        margin: 6px 0 20px;
    }

    .single-news__text.c-text {
        line-height: 2;
    }

    .single-news__text {
        margin: 0 0 50px;
    }
}

/*----------------------------------------
	sidebar
----------------------------------------*/

.p-sidebar__archive {
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 5px;
    padding: 40px 26px;
}

.p-sidebar__archiveTitle {
    position: relative;
    color: #50C8B0;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 35px;
    padding: 0 0 8px;
    font-size: 2.6rem;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #50C8B0;
    text-transform: uppercase;
}

.p-sidebar__archiveLists li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.p-sidebar__archiveLists li:first-child {
    border-top: 1px solid rgba(112, 112, 112, 0.3);
}

.p-sidebar__archiveLists li:after {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    background-image: url(images/sidebar_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width:768px) {
    .p-sidebar__archiveTitle {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-sidebar__archiveLists li {
        font-size: 1.8rem;
        padding: 15px 0;
    }

    .p-sidebar__archive {
        padding: 30px 12px;
    }

    .p-sidebar__archive {
        width: 100%;
    }
}

/* -------------------------------------------
 * 404 not found
 * ------------------------------------------- */

.p-catch__404 {
    background-image: url(images/404_catch.jpg);
}

.error404 .c-button {
    background-color: #50C8B0;
    margin: auto;
    color: #fff;
}
