@charset "UTF-8";

html,
body {
    overflow-x: hidden;
}

/* Loder */
.loader {
    align-items: center;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    perspective: 100px;
    width: 100%;
    height: 100vh;
}

.loader::after {
    -webkit-animation: loader 12s linear infinite;
    animation: loader 12s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -40px;
    margin-left: -40px;
    content: "";
    height: 110px;
    width: 86px;
    display: block;
}

.loading-panel {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0px;
    overflow: hidden;
}

.left.loading-panel {
    left: 0;
    background: #405246;
    opacity: 0.5;
    -webkit-animation: panel-to-right 20s ease-out infinite;
    animation: panel-to-right 20s ease-out infinite;
}

.right.loading-panel {
    right: 0;
    background: #075E24;
    opacity: 0.5;
    -webkit-animation: panel-to-left 20s ease-out infinite;
    animation: panel-to-left 20s ease-out infinite;
}

/* Animations */
@-webkit-keyframes panel-to-left {
    0% {
        transform: translate(-100%);
    }

    10% {
        transform: translate(0);
    }

    80% {
        transform: translate(0);
    }

    90% {
        transform: translate(-100%);
    }

    100% {
        transform: translate(-100%);
    }
}

@keyframes panel-to-left {
    0% {
        transform: translate(-100%);
    }

    10% {
        transform: translate(0);
    }

    80% {
        transform: translate(0);
    }

    90% {
        transform: translate(-100%);
    }

    100% {
        transform: translate(-100%);
    }
}

@-webkit-keyframes panel-to-right {
    0% {
        transform: translate(100%);
    }

    10% {
        transform: translate(0);
    }

    80% {
        transform: translate(0);
    }

    90% {
        transform: translate(100%);
    }

    100% {
        transform: translate(100%);
    }
}

@keyframes panel-to-right {
    0% {
        transform: translate(100%);
    }

    10% {
        transform: translate(0);
    }

    80% {
        transform: translate(0);
    }

    90% {
        transform: translate(100%);
    }

    100% {
        transform: translate(100%);
    }
}

/* Header */
header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    background-color: #fff;
    z-index: 9998;
}

header h1 {
    margin-left: 20px;
    z-index: 999;
}

header .head-right {
    position: absolute;
    top: 0;
    right: 0;
}

header .contact-nav {
    display: flex;
    font-size: 14px;
    color: #fff;
    background-color: #fff;
    justify-content: flex-end;
    padding-right: 30px;
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 500;
    font-style: normal;
    gap: 40px;
}

header .contact-nav li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

header .contact-nav .header_label {
    background-color: #6A9D4F;
    width: 120px;
    padding: 8px;
    text-align: center;
}

header .contact-nav a {
    color: #997F2E;
    font-size: 24px;
    font-family: 'Cinzel', serif;
    position: relative;
    padding-left: 24px;
}

header .contact-nav a::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/tel_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.head-nav {
    background-color: #fff;
    border-radius: 0 0 0 10px;
    height: 80px;
    border-bottom: 2px #5C4500 solid;
    position: relative;
}

.head-nav-menu {
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px;
}

.head-nav-menu li {
    border-right: 1px #D5D5D5 dashed;
    position: relative;
}

.head-nav-menu li:nth-last-of-type(1) {
    border: none;
}

.head-nav-menu a {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    padding: 5px 15px 10px;
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.head-nav-menu a:hover {
    color: #075E24;
}

.head-nav-menu li span {
    display: block;
    margin-bottom: 3px;
    font-weight: bold;
    font-family: 'Cinzel', serif;
}

/* Pulldown */
.medical-info-sub {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    padding-top: 20px;
}

.medical-info-sub li {
    border-bottom: 1px #075E24 solid;
    line-height: 3;
    width: 260px;
    background: rgba(255, 255, 255, .8);
}

.medical-info-sub li a {
    font-size: 14px;
}

.nav-toggle {
    display: none;
}

.sub-nav {
    display: none;
}

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

    /* Header */
    header {
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: #fff;
        z-index: 9998;
    }

    header h1 {
        margin-left: 20px;
    }

    header h1 img {
        width: 90%;
    }

    header .head-right {
        display: none;
    }

    /* Toggle */
    .nav-toggle {
        width: 70px;
        height: 70px;
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: #37741C;
        z-index: 9997;
        display: block;
    }

    .nav-toggle span {
        position: absolute;
        font-size: .9em;
        color: #fff;
        bottom: 5px;
        left: 13px;
    }

    .nav-toggle ul {
        display: flex;
    }

    .nav-toggle ul li {
        position: relative;
        width: 100%;
    }

    .nav-toggle ul li span {
        display: inline-block;
        position: absolute;
        height: 2px;
        background: #fff;
        width: 50%;
        left: 17px;
        transition: all 0.4s;
    }

    .nav-toggle ul li span:nth-child(1) {
        top: 21px;
    }

    .nav-toggle ul li span:nth-child(2) {
        top: 29px;
    }

    .nav-toggle ul li span:nth-child(3) {
        top: 37px;
    }

    .sp-active span:nth-child(1) {
        transform: translateY(8px) rotate(-45deg);
    }

    .sp-active span:nth-child(2) {
        opacity: 0;
    }

    .sp-active span:nth-child(3) {
        transform: translateY(-8px) rotate(45deg);
    }

    .head-l-sp {
        width: 57px;
        height: 70px;
        border-radius: 50%;
    }

    .sub-nav {
        background-color: #fff;
        width: 100vw;
        height: 100%;
        position: fixed;
        top: 0;
        left: 50;
        z-index: 9996;
        opacity: 0;
        transition: all 0.4s;
        display: flex;
        align-items: center;
        visibility: hidden;
    }

    .sub-disp {
        opacity: 1;
        visibility: visible;
    }

    .sp-on {
        overflow: hidden;
    }

    .sp-menu {
        width: 80%;
        margin: auto;
        font-size: .9em;
        font-family: zen-kaku-gothic-new, sans-serif;
        font-weight: 500;
        font-style: normal;
    }

    .sp-menu a {
        padding: 10px 10px;
        display: block;
    }

    .sp-menu li {
        width: 100%;
        text-align: center;
    }

    .sp-menu li span {
        color: #075E24;
        display: block;
        margin-bottom: 5px;
    }

    .sp-medical-info-sub {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .sp-medical-info-sub li {
        width: 49%;
        background-color: #def2e7;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sub-nav ul li {
        opacity: 0;
        transform: translateX(200px);
        transition: transform 0.3s ease, opacity 0.2s ease;
    }

    .sub-nav ul li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .sub-nav ul li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .sub-nav ul li:nth-child(4) {
        transition-delay: 0.3s;
    }

    .sub-nav ul li:nth-child(5) {
        transition-delay: 0.4s;
    }

    .sub-nav ul li:nth-child(6) {
        transition-delay: 0.5s;
    }

    .sub-nav .sp-medical-info-sub .m-l {
        transition: none;
    }

    .sp-on .sub-nav li {
        opacity: 1;
        transform: translateX(0);
        transition: transform 1s ease, opacity 0.9s ease;
    }
}

/* Floating */
.mv_bnrWrap {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 20;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.mv_bnrWrap img {
    display: block;
    width: 9vw;
    max-width: 240px;
}

.fix-nav {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9997;
    opacity: 0;
    transition: .5s;
    width: 50px;
    height: 50px;
    background-color: #075E24;
    border-radius: 50%;
}

.fix-nav a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.fix-nav a::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-45deg) translate(-20%, -50%);
}

.active {
    opacity: 1;
}

/* circle spread */
.effect {
    position: relative;
    -webkit-clip-path: circle(1%);
    clip-path: circle(1%);
    transition: 0.6s ease-in all;
}

.effect.on {
    -webkit-clip-path: circle(120%);
    clip-path: circle(120%);
}

/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUpTrigger {
    opacity: 0;
}

/* fadeLeft */
.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeLeftTrigger {
    opacity: 0;
}

/* fadeRight */
.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeRightTrigger {
    opacity: 0;
}

/* Delay */
.delay-1 {
    animation-delay: .3s;
}

/* Button */
.button {
    width: 280px;
    background-color: #075E24;
    color: #fff;
    margin: auto;
    text-align: center;
    font-size: 1.2em;
}

.button a {
    display: block;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.button-recruit {
    width: 280px;
    background-color: #075E24;
    color: #fff;
    margin: 0 0 0 25%;
    text-align: center;
    font-size: 1.2em;
}

.button-recruit a {
    display: block;
    padding: 20px;
    width: 100%;
    height: 100%;
}

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

    /* Button */
    .button {
        width: 280px;
        background-color: #075E24;
        color: #fff;
        margin: auto;
        text-align: center;
        font-size: 1.2em;
    }

    .button a {
        display: block;
        padding: 20px;
        width: 100%;
        height: 100%;
    }

    .button-recruit {
        width: 280px;
        background-color: #075E24;
        color: #fff;
        margin: auto;
        text-align: center;
        font-size: 1.2em;
    }

    .button-recruit a {
        display: block;
        padding: 20px;
        width: 100%;
        height: 100%;
    }

    /* Floating */
    .mv_bnrWrap {
        right: 10px;
    }

    .mv_bnrWrap img {
        display: block;
        width: 9vw;
        min-width: 100px;
    }

    .fix-nav {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 9997;
        opacity: 0;
        transition: .5s;
        width: 50px;
        height: 50px;
        background-color: #075E24;
        border-radius: 50%;
    }

    .fix-nav a {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 50%;
    }

    .fix-nav a::after {
        content: '';
        width: 15px;
        height: 15px;
        border: 0;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: rotate(-45deg) translate(-20%, -50%);
    }

    .active {
        opacity: 1;
    }
}

/* Footer */
footer {
    background: url(../images/footer_bg.png) no-repeat center center / cover;
    padding: 90px 0 0;
}

.f-title {
    font-family: zen-old-mincho, sans-serif;
    font-size: 28px;
    text-align: center;
    width: 80%;
    margin: 0 auto 60px;
    position: relative;
}

.f-title::before,
.f-title::after {
    content: "";
    width: 30%;
    height: 1px;
    background-color: #657D5A;
    position: absolute;
    top: 14px;
    left: 0;
    z-index: 1;
}

.f-title::after {
    left: auto;
    right: 0;
}

.f-title img {
    width: 100%;
}

.f-box {
    display: flex;
    width: 80%;
    margin: 0 auto 77px;
    justify-content: space-between;
}

.f-box-l {
    width: 50%;
}

.f-box-r {
    width: 45%;
}

iframe.f-map {
    width: 100%;
    min-width: 400px;
    aspect-ratio: 16/9;
}

.f-bt {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
    justify-content: space-evenly;
}

.f-bt li {
    width: 40%;
    border-radius: 25px;
    font-size: 16px;
    height: 50px;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
}

.f-bt li a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
    text-align: center;
    font-family: zen-old-mincho, sans-serif;
}

.f-bt li a span {
    font-size: 14px;
    padding: 4px 4px 0;
}

.calendar {
    width: 90%;
    border-top: 1px #657D5A solid;
    border-bottom: 1px #657D5A solid;
    margin: 0 auto 15px;
    font-size: 1vw;
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.calendar .week {
    border-bottom: 1px #657D5A solid;
    padding: 10px 0;
}

.calendar .time-1 {
    border-bottom: 1px #657D5A solid;
}

.week th,
.week td,
.time-1 th,
.time-1 td,
.time-2 th,
.time-2 td {
    padding: 20px 0;
}

.calendar th {
    width: 30%;
    font-size: 1.1em;
}

.calendar td {
    text-align: center;
    width: calc((100% - 30%) / 7);
}

.calendar td span {
    color: #333333;
    display: block;
}

.calendar td span.green {
    color: #37741C;
}

footer .green {
    color: #37741C;
}

.week td {
    font-weight: bold;
}

.c-txt {
    width: 90%;
    margin: auto;
    font-size: 1.3em;
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.footer_logo {
    width: 400px;
    margin: 0 auto 40px;
}

.footer_logo img {
    width: 100%;
}

.f-nav {
    display: flex;
    width: 70%;
    margin: 0 auto 110px;
    justify-content: center;
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2em;
}

.f-nav li {
    width: calc(100% / 7);
    position: relative;
    display: flex;
    justify-content: center;
    min-width: 160px;
}

.f-nav li a {
    position: relative;
}

.f-nav li a::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -20px;
    border-bottom: 5px #37741C solid;
    height: 5px;
    width: 16px;
    transform: translateY(-50%);
}

.f-nav li a {
    padding: 5px;
}

footer .f-box-l p.c-txt {
    font-size: 16px;
    display: inline;
}

footer .f-box-l p.c-txt span {
    display: inline;
}

.copy {
    background-color: #EFF3EA;
    padding: 15px 0;
    color: #777777;
    text-align: center;
    font-family: zen-kaku-gothic-new, sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width: 896px) {
    footer {
        background: url(../images/footer_bg.png) no-repeat center center / cover;
        padding: 90px 0 0;
    }

    .f-title {
        text-align: center;
        margin: 0 auto 70px;
    }

    .f-title::before,
    .f-title::after {
        width: 20%;
    }

    .f-box {
        display: block;
        width: 90%;
        margin: 0 auto 77px;
        justify-content: space-between;
    }

    .f-box-l {
        width: 100%;
    }

    .f-box-r {
        width: 100%;
    }

    iframe.f-map {
        width: 100%;
        min-width: initial;
        aspect-ratio: 16/9;
    }

    .f-bt {
        width: 100%;
        display: flex;
        margin-bottom: 40px;
        justify-content: space-evenly;
    }

    .f-bt li {
        width: 45%;
    }

    .f-bt li a {
        font-size: min(3.4vw, 18px);
    }

    .f-bt li a span {
        font-size: min(2.4vw, 14px);
        padding: 4px 4px 0;
    }

    .calendar {
        width: 90%;
        margin: 0 auto 15px;
        font-size: .9em;
        font-family: zen-kaku-gothic-new, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .week th,
    .week td,
    .time-1 th,
    .time-1 td,
    .time-2 th,
    .time-2 td {
        padding: 20px 0;
    }

    .calendar th {
        width: 30%;
        font-size: 1.1em;
    }

    .calendar td {
        text-align: center;
        width: calc((100% - 30%) / 7);
    }

    .calendar td span {
        color: #333333;
        display: block;
    }

    .week td {
        font-weight: bold;
    }

    .c-txt {
        width: 90%;
        margin: 0 auto 50px;
        font-size: 1em;
        display: flex;
        font-family: zen-kaku-gothic-new, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .c-txt span {
        font-size: 1em;
        display: block;
    }

    .f-nav {
        display: flex;
        width: 90%;
        margin: 0 auto 110px;
        justify-content: space-between;
        font-family: zen-kaku-gothic-new, sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 1.2em;
        flex-wrap: wrap;
        padding: 0 0 0 25px;
    }

    .f-nav li {
        width: 45%;
        position: relative;
        display: flex;
        justify-content: left;
    }

    .f-nav li a {
        position: relative;
    }

    .f-nav li a::after {
        position: absolute;
        content: "";
        top: 50%;
        left: -20px;
        border-bottom: 5px #075E24 solid;
        height: 5px;
        width: 16px;
        transform: translateY(-50%);
    }

    .f-nav li a {
        padding: 5px;
    }

    .copy {
        background-color: #075E24;
        padding: 15px 0;
        color: #fff;
        text-align: center;
        font-family: zen-kaku-gothic-new, sans-serif;
        font-weight: 400;
        font-style: normal;
    }
}

@media screen and (min-width: 897px) and (max-width:1300px) {

    /* Footer */
    footer {
        background: url(../images/footer_bg.png) no-repeat center center / cover;
        padding: 90px 0 0;
    }

    .f-title {
        text-align: center;
        margin: 0 auto 70px;
    }

    .f-title img {
        width: 100%;
    }

    .f-box {
        display: flex;
        width: 90%;
        margin: 0 auto 77px;
        justify-content: space-between;
    }

    .f-box-l {
        width: 50%;
    }

    .f-box-r {
        width: 45%;
    }

    iframe.f-map {
        width: 100%;
        min-width: 400px;
        aspect-ratio: 16/9;
    }

    .f-bt {
        width: 100%;
        display: flex;
        margin-bottom: 40px;
        justify-content: space-evenly;
    }

    .week th,
    .week td,
    .time-1 th,
    .time-1 td,
    .time-2 th,
    .time-2 td {
        padding: 20px 0;
    }

    .calendar th {
        width: 30%;
        font-size: 1.1em;
    }

    .calendar td {
        text-align: center;
        width: calc((100% - 30%) / 7);
    }

    .calendar td span {
        color: #997F2E;
        display: block;
    }

    .week td {
        font-weight: bold;
    }

    .c-txt {
        width: 90%;
        margin: auto;
        font-size: 1.3em;
        display: flex;
        font-family: zen-kaku-gothic-new, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .c-txt span {
        font-size: 1.2em;
        display: block;
    }

    .f-nav {
        display: flex;
        width: 70%;
        margin: 0 auto 110px;
        justify-content: center;
        font-family: zen-kaku-gothic-new, sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 1.2em;
    }

    .f-nav li {
        width: calc(100% / 7);
        position: relative;
        display: flex;
        justify-content: center;
        min-width: 160px;
    }

    .f-nav li a {
        position: relative;
    }

    .f-nav li a::after {
        position: absolute;
        content: "";
        top: 50%;
        left: -20px;
        border-bottom: 5px #997F2E solid;
        height: 5px;
        width: 16px;
        transform: translateY(-50%);
    }

    .f-nav li a {
        padding: 5px;
    }

    .copy {
        background-color: #075E24;
        padding: 15px 0;
        color: #fff;
        text-align: center;
        font-family: zen-kaku-gothic-new, sans-serif;
        font-weight: 400;
        font-style: normal;
    }
}

.mtitle_small {
    font-weight: 600;
    color: #58462c;
    padding: 0 0 4px;
    font-size: 1.2rem;
    border-bottom: 1px solid #be7d84;
    font-weight: 500;
    margin-bottom: 15px !important;
    width: 100%;
}

.mtitle_small:before {
    content: "ï¼";
    margin-right: 8px;
    color: #ad5b64;
    font-size: 12px;
}

.mtitle_small span {
    font-size: 1.3rem;
    color: #ad5b64;
    font-weight: 500;
}

@media all and (max-width: 639px) {
    .mtitle_small {
        padding: 4px;
        font-size: 1.3rem;
    }

    .mtitle_small span {
        font-size: 1.3rem;
    }
}

.m-title {
    padding: 80px 0 20px;
    font-size: 3em;
    letter-spacing: 0.15em;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    background: #333333;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
}

.m-title-s {
    color: #58462c;
    font-family: "YakuHanJP", "Lato", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ Medium", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ä½“", "Yu Gothic Medium", YuGothic, "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ ProN", "Hiragino Kaku Gothic ProN", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯", "MS PGothic", sans-serif;
    font-size: 1.2em;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 0 50px;
}

/* medical information */
.info-title {
    width: 50vw;
    padding: 0 0 20px 0;
    color: #333333;
    margin-bottom: 30px;
    position: relative;
}

.info-title::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 28vw;
    bottom: 0;
    background-color: #60390E;
    left: 0;
}

.info-title span:nth-child(1) {
    width: 100%;
    display: block;
    font-size: 3.5em;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    background: #60390E;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.info-title span:nth-child(2) {
    font-size: 1.3em;
    font-weight: 600;
    margin-right: 10px;
    font-family: shippori-mincho, sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #60390E;
}

@media screen and (max-width: 896px) {
    .m-title {
        padding: 50px 0;
        font-size: 2em;
        letter-spacing: 0.15em;
        font-family: "Shippori Mincho", serif;
        font-weight: 400;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        text-align: center;
    }

    .m-title-s {
        color: #58462c;
        font-family: "YakuHanJP", "Lato", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ Medium", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ä½“", "Yu Gothic Medium", YuGothic, "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ ProN", "Hiragino Kaku Gothic ProN", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯", "MS PGothic", sans-serif;
        font-size: 1.2em;
        line-height: 1.8;
        -webkit-font-smoothing: antialiased;
        letter-spacing: 0.1em;
        text-align: left;
        margin: 0 0 50px;
        padding: 0 30px;
    }

    .m-title-s>br {
        display: none;
    }

    /* medical information */
    .info-title {
        width: 100%;
        color: #333333;
        margin-bottom: 30px;
        position: relative;
    }

    .info-title::after {
        position: absolute;
        content: "";
        height: 1px;
        width: 28vw;
        bottom: 0;
        left: 0;
    }

    .info-title span:nth-child(1) {
        width: 100%;
        display: block;
        font-size: 3em;
        font-weight: 500;
        margin-bottom: 10px;
        font-family: 'Cinzel', serif;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    .info-title span:nth-child(2) {
        font-size: 1.3em;
        font-weight: 600;
        margin-right: 10px;
        font-family: shippori-mincho, sans-serif;
        font-weight: 600;
        font-style: normal;
    }
}

@media screen and (min-width: 897px) and (max-width:1300px) {
    .m-title {
        padding: 50px 0;
        font-size: 4vw;
        letter-spacing: 0.15em;
        font-family: "Shippori Mincho", serif;
        font-weight: 400;
        background: #075E24;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        text-align: center;
    }

    .m-title-s {
        color: #58462c;
        font-family: "YakuHanJP", "Lato", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ Medium", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ä½“", "Yu Gothic Medium", YuGothic, "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ ProN", "Hiragino Kaku Gothic ProN", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯", "MS PGothic", sans-serif;
        font-size: 1.2em;
        line-height: 1.8;
        -webkit-font-smoothing: antialiased;
        letter-spacing: 0.1em;
        text-align: center;
        margin: 0 0 50px;
    }
}

/* News */
.news-box {
    background-color: #fff;
    padding: 50px;
    font-size: 1.1em;
    font-weight: 500;
    color: #58462c;
    font-family: "YakuHanJP", "Lato", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ Medium", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ä½“", "Yu Gothic Medium", YuGothic, "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ ProN", "Hiragino Kaku Gothic ProN", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯", "MS PGothic", sans-serif;
    box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.08);
}

.news-box p:nth-child(1) {
    border-left: 6px solid #ac504d;
    padding: 0 0 0 10px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0 0 20px;
}

.news-box p:nth-child(2) {
    font-size: .9em;
    margin: 0 0 10px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 80vh;
}

/*　背景画像設定　*/
.slider-item01 {
    background: url(../images/mv01.png)
}
.slider-item02 {
    background:url(../images/mv02.png);
}
.slider-item03 {
    background:url(../images/mv03.png);
}
/*.slider-item04 {
    background:url(../images/mv04.png);
} */
.slider-item {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 100vh;
    background-repeat: no-repeat;
    /*背景画像をリピートしない*/
    background-position: center;
    /*背景画像の位置を中央に*/
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/
.slick-prev,
.slick-next {
    position: absolute;
    z-index: 3;
    top: 55%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;
    /*矢印の色*/
    border-right: 2px solid #fff;
    /*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    left: 2.5%;
    transform: rotate(-135deg);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: 2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: -50px 0 0 0;
    /*ドットの位置*/
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #fff;
    /*ドットボタンの色*/
}

.slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

@media screen and (max-width:480px) {
    .main-visual .slider {
        position: relative;
        z-index: 1;
        /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
        height: 40vh;
    }

    .slider-item {
        width: 100%;
        /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
        height: 40vh;
        background-repeat: no-repeat;
        /*背景画像をリピートしない*/
        background-position: center;
        /*背景画像の位置を中央に*/
        background-size: cover;
        /*背景画像が.slider-item全体を覆い表示*/
    }
}
