@charset "UTF-8";

:root {
    --scaler1: calc(100vw / 1920);
}

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

html {
    font-size: 62.5%;
}


img {
    image-rendering: -webkit-optimize-contrast;
}

@media only screen and (max-width: 575px) {
    html {
        font-size: 40%;
        overflow-x: hidden;
    }
}

body {
    max-width: 1920px;
    font-size: 1.6rem;
    margin: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

img,
video {
    max-width: 100%;
}

a {
    color: unset;
    text-decoration: none;

}

a:hover {
    text-decoration: none;
    color: initial;
}

header {
    padding: 93px 44px 39px 44px;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

@media only screen and (max-width: 1200px) {
    header {
        padding: 30px 20px;
    }
}

header .menu {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

header .menu-logo {
    max-width: 400px;
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
}

@media only screen and (max-width: 575px) {
    header .menu-logo {
        font-size: 4rem;
        max-width: 260px;
    }

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

header .menu-icon {
    position: fixed;
    z-index: 100;
    right: 50px;
    top: 17px;
    display: none;
    z-index: 101;
}

@media only screen and (max-width: 1200px) {
    header .menu-icon {
        display: block;
    }
}

header .menu-close {
    display: none;
}

header .menu ul {
    display: flex;
    margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {
    header .menu ul {
        display: block;
    }
}

header .menu ul li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

header .menu ul li::after {
    content: "";
    display: block;
    border-right: 1px solid #000;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
}

header .menu ul li a {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

header .menu ul li:last-child::after {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .menu-logo {
        z-index: 101;
        position: relative;
    }

    .menu-main {
        position: fixed;
        left: 0;
        width: 100vw;
        height: 100vh;
        top: 0;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.4s;
        color: #fff;
        z-index: 100;
        display: none;
    }

    .menu-main ul {
        padding: 132px 0 0;
        margin: 0 0 0 50px;
    }

    .menu-main ul li {
        position: relative;
        padding: 0 0 0 25px;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1;
    }

    .menu-main ul li::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        width: 15px;
        height: 5px;
        background-color: #f8b62d;
    }

    .menu-main ul li a {
        color: #000;
    }

    .menu-main ul li:nth-of-type(n + 2) {
        margin-top: 40px;
    }
}

.navButton {
    position: relative;
    width: 64px;
    height: 63px;
    background-color: #f8b62d;
    border-radius: 0;
    right: 0;
}

.navButton-line {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: top 0.4s ease, 0.4s transform ease, opacity 0.4s ease;
}

.navButton-line:nth-of-type(1) {
    top: 21px;
}

.navButton-line:nth-of-type(2) {
    top: 30px;
}

.navButton-line:nth-of-type(3) {
    top: 39px;
}

.navButton.active .navButton-line:nth-of-type(1) {
    top: 30px;
    transform: translate(-50%, 0) rotate(45deg);
}

.navButton.active .navButton-line:nth-of-type(2) {
    opacity: 0;
}

.navButton.active .navButton-line:nth-of-type(3) {
    top: 30px;
    transform: translate(-50%, 0) rotate(-45deg);
}

.menu-icon {
    width: 35px;
}

.menu-main.active {
    display: block;
}

.menu-mobile ul {
    margin: 0;
    padding: 0;
    padding: 0 36px;
    padding-top: 50px;
}

.menu-mobile ul li {
    min-height: 45px;
    list-style: none;
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 30px;
}

.menu-close {
    margin-right: 30px;
    margin-top: 30px;
}

.menu-mobile ul li a {
    text-transform: uppercase;
}

#mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 56, 73, 0.8);
    z-index: 1900;
    display: none;
}

.banner-text-1,
.banner-text-2 {
    background-color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 10px;
    padding: 10px 20px;
}

.banner-text {
    position: absolute;
    top: 25%;
    left: 300px;
    z-index: 2;
}

@media only screen and (max-width: 575px) {
    .banner-text {
        left: 0px;
    }
}

.banner {
    position: relative;
}

.banner .swiper {
    padding-left: 200px;
}

@media only screen and (max-width: 1200px) {
    .banner .swiper {
        padding-left: 0px;
    }
}

.banner .swiper-slide img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 100px;
}

@media only screen and (max-width: 1200px) {
    .banner .swiper-slide img {
        height: calc(100vh - 120px);
    }
}

.scroll {
    position: absolute;
    bottom: 0;
    left: 26px;
    padding: 0 0 82px;
}

.scroll {
    opacity: 1;
    margin: 20px 0 0;
    transition: opacity 1s ease, margin 1s ease;
    transition-delay: 0.6s;
}

.scroll-text {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 14px;
}

.scroll-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 10px;
    height: 80px;
    overflow: hidden;
}

.scroll-line::before,
.scroll-line::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.scroll-line::before {
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #2f2f2f;
}

.scroll-line::after {
    top: -10px;
    bottom: -10px;
    width: 2px;
    background-color: #000;
    -webkit-animation: scroll 4s linear infinite;
    animation: scroll 4s linear infinite;
}

@media screen and (min-width: 768px) {
    .section-1 .inner {
        display: flex;
        justify-content: end;
        margin: 100px 0 100px 200px;

    }

    .section-1 .text-content {
        width: 600px;
    }

    .section-1 .image {
        padding-left: 30px;
    }
}

.section-1 h3 {
    font-size: 14px;
    font-weight: bold;
}

.section-1 h2 {
    font-size: 18px;
    font-weight: bold;
    color: #f8b62d;
    margin-bottom: 0;
    padding: 10px 0;
}

@media only screen and (max-width: 1200px) {
    .section-1 h2 {
        font-size: 20px;
    }
}

.section-1 p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .section-1 .inner {
        display: block;
        padding: 30px;
    }

    .section-1 .image {
        margin-top: 30px;
    }
}

.section-2 {
    overflow: hidden;
}

.section-2 .content-text {
    max-width: 1100px;
    padding: 30px;
    margin: auto;
}

.section-2 .content-text p {
    font-size: 14px;
    font-weight: bold;
}

.section-2 .swiper-slide img {
    border-radius: 20px;
}

.wrapper {
    max-width: 1490px;
    padding: 0 40px;
    margin: auto;
}

@media only screen and (max-width: 575px) {
    .wrapper {
        padding: 0 20px;
    }
}

.section-3 {
    background-color: #f8b62d;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: 132px 0;
}

@media only screen and (max-width: 1200px) {
    .section-3 {
        padding: 50px 0;
    }
}

.section-3 .title h2 {
    font-size: 31px;
    text-align: center;
    border-bottom: 2px dotted #fff;
    color: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
    margin-bottom: 30px;
}

.section-3-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media only screen and (max-width: 1200px) {
    .section-3-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .section-3-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-3-content-item {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
}

@media only screen and (max-width: 575px) {
    .section-3-content-item {
        padding: 20px 15px;
    }
}

.section-3-content-item-title h3 {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #f8b62d;
    margin-bottom: 20px;
}

.section-3-content-item-description p {
    font-size: 14px;
    font-weight: 500;
}

.section-4 {
    padding: 60px;

}

@media only screen and (max-width: 575px) {
    .section-4 {
        padding: 50px 0;
    }
}

.section-4 .wrapper {
    background-image: url(../images/Mask\ Group\ 9.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    border-radius: 50px;
    border: 1px dashed #f8b62d;
    padding: 60px 0;
    margin: 0 auto;
}

@media only screen and (max-width: 575px) {
    .section-4 .wrapper {
        padding: 50px 0;
        margin: auto 30px;
    }
}

.section-4 .title h3 {
    font-size: 31px;
    color: #f8b62d;
    font-weight: bold;
    text-align: center;
}

.section-4-content {
    padding: 20px;
    padding-top: 70px;

}

@media only screen and (max-width: 575px) {
    .section-4-content {
        padding: 20px;
    }
}

.section-4-content iframe {
    width: 100%;
}

.section-5 {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.section-5 .title h3 {
    font-size: 30px;
    text-align: center;
    color: #f8b62d;
    font-weight: bold;
}

.section-5-content {
    padding-left: 200px;
    padding-top: 50px;
}

@media only screen and (max-width: 1200px) {
    .section-5-content {
        padding-left: 100px;
    }
}


@media only screen and (max-width: 575px) {
    .section-5-content {

        padding: 0 20px;
        padding-top: 50px;
    }
}

.section-5-content-item-title {
    padding: 15px 0;
}


.section-5-content-item-title:after {}




.section-5-content-item-title h3 {
    font-size: 14px;
    font-weight: normal;
}

.section-5-content-item-title h3 span {
    color: #f8b62d;
}

.section-5-content-item-description p {
    font-size: 16px;
    font-weight: bold;
}

.section-5-content .swiper-slide {
    margin-left: 20px;
}

@media only screen and (max-width: 575px) {
    .section-5-content .swiper-slide {
        margin-left: 5px;
    }
}

.section-5-content .swiper-slide img {
    border-radius: 20px;
}

.section-6 {
    padding: 100px 0 50px 0;
}

.section-6-content {
    display: grid;
    grid-template-columns: 87% 13%;
}

.section-6-content-img img {
    width: 100%;
}

.section-6-content-text {
    margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
    .section-6-content-text img {
        max-width: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .section-6-content-text img {
        max-width: 20px;
    }
}

.section-7-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
    .section-7-content {
        display: block;
    }
}

.section-7-content h3 {
    font-size: 3rem;
    font-weight: bold;
}

.section-7-content h4 {
    font-size: 18px;
    font-weight: bold;
}

.section-7-content p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin: 20px 0;
}

@media only screen and (max-width: 575px) {
    .section-7-content p {
        line-height: 2;
    }

    .section-7-content p {
        font-size: 12px;
    }
}

.section-7-content p span {
    background-color: #f8b62d;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
}

.section-7-content-left-button a {
    background-color: #f8b62d;
    color: #fff;
    border-radius: 40px;
    padding: 10px 30px;
    width: 400px;
    text-align: center;
    font-size: 18px;
    display: block;
}

.section-7-content-left-button a:hover {
    background-color: #dda021;
}

@media only screen and (max-width: 575px) {
    .section-7-content-left-button {
        max-width: 100%;
        width: 100%;
    }

    .section-7-content-left-button a {
        width: 100%;
    }
}

.section-7-content-right {
    position: relative;
}

@media only screen and (max-width: 1200px) {
    .section-7-content-right {
        margin-top: 20px;
    }
}

.section-7-content-right::before {
    content: "";
    display: block;
    padding-top: 65%;
}

.section-7-content-right iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.footer {
    background-color: #FAFAFA;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .footer-content {
        display: block;
        padding-top: 20px;
    }
}

.footer-content-left-logo {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 10px;
    width: 400px;
}

.footer-content-left-text {
    font-size: 14px;
    line-height: 1.8;

}

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

    .footer-content-left-logo {
        width: 100%;
    }

    .footer-content-left-text {
        font-size: 12px;
        text-align: center;
    }
}

.footer-content-right {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
    .footer-content-right {
        padding-top: 20px;
    }
}

.footer-content-right-line {
    background-color: #48B428;
    border-radius: 35px;
    padding: 10px 30px;
    color: #fff;
    font-size: 18px;
}

@media only screen and (max-width: 1200px) {
    .footer-content-right-line {
        font-size: 12px;
    }
}

.footer-content-right-form {
    background-color: #7C7C7C;
    border-radius: 35px;
    padding: 10px 30px;
    color: #fff;
    font-size: 18px;
    margin-left: 30px;
}

@media only screen and (max-width: 1200px) {
    .footer-content-right-form {
        font-size: 12px;
    }
}

.footer .copyright {
    text-align: center;
    font-weight: 16px;
    font-weight: 500;
    padding-top: 30px;
}

.menu-footer ul {
    display: flex;
}

@media only screen and (max-width: 1200px) {
    .menu-footer ul {
        flex-wrap: wrap;
    }
}

.menu-footer ul li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

@media only screen and (max-width: 575px) {
    .menu-footer ul {
        justify-content: center;
    }

    .menu-footer ul li {
        padding-top: 10px;
        padding: 0 15px;
    }
}

.menu-footer ul li::after {
    content: "";
    display: block;
    border-right: 1px solid #000;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
}

.menu-footer ul li a {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

@media only screen and (max-width: 575px) {
    .menu-footer ul li a {
        font-size: 12px;
    }
}

.menu-footer ul li:last-child::after {
    display: none;
}

.fix-header {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(0, -100%);
    transition: transform 0.4s ease;
    top: 30px;
    left: 40px;
    right: 40px;
    width: auto;
    padding: 0;
    transform: translate(0, -110px);
    transition: transform 0.4s ease;
    z-index: 10000;
}

@media (min-width: 1400px) {
    .fix-header .inner {
        padding: 0 0 0 0;
        padding-right: 60px;
    }
}

@media (min-width: 768px) and (max-width: 1400px) {
    .fix-header .inner {
        padding: 0 50px 0 50px;
    }
}

@media (min-width: 768px) {
    .fix-header .inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;

        min-height: 80px;
        border-radius: 40px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        background-color: #fff;
    }

    .fix-header .logo {
        position: absolute;
        top: 50%;
        left: 40px;
        transform: translate(0, -50%);
        width: 221px;
    }

    .header .list {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 0 0 0 53px;
    }

    .header .list-item {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1;
        transition: opacity 0.4s ease;
    }

    .header .list-item:nth-of-type(n + 2) {
        position: relative;
        margin-left: 21px;
    }

    .fix-header.active {
        display: block;
        transform: translate(0, 0);
    }

    .fix-header .list-item:nth-of-type(n + 2)::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -10px;
        transform: translate(0, -50%);
        width: 1px;
        height: 12px;
        background-color: #2f2f2f;
    }
}

@media (max-width: 767px) {
    .fix-header {
        display: none;
    }
}

/*# sourceMappingURL=style.css.map */


.none {
    display: none !important;
}

#doctor .title {
    padding-top: 100px;
}

#doctor .title h3 {
    font-size: 31px;
    color: #f8b62d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

@media only screen and (max-width: 575px) {
    .title h3 {
        font-size: 24px !important;
    }

    #doctor .title h3 {
        margin-bottom: 30px;
    }
}

.post-content {
    font-size: 16px;
}

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

.title-category h2,
.title-category h1 {
    font-size: 30px;
    text-align: center;
    color: #f8b62d;
    font-weight: bold;
    margin-bottom: 40px;
}

.post-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.post-content p.date-post {

    font-weight: 400;
    padding: 10px 0 30px 0;
    font-size: 14px;
}

.post-content img.avatar {
    width: 100%;
    margin-bottom: 20px;
}

.archive-content-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(max-width:1200px) {
    .archive-content-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .archive-content-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.section-5-content-item {
    overflow: hidden;
    border-radius: 20px;
}

.section-5-content-item-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.section-5-content-item-img::before {
    content: "";
    display: block;
    padding-top: 75%;
}

.section-5-content-item-img img {
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-5-content-item-img:hover img {
    transform: scale(1.1);
    border-radius: 20px;
}


.button-wrapper {
    clear: both;
    padding-top: 100px;
    padding-bottom: 40px;
}

.button {
    background-color: #f8b62d;
    color: #fff;
    border-radius: 40px;
    padding: 10px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    display: block;
    margin: 0 auto;
}

@keyframes zoom {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.1);
        opacity: .8;
    }
}

#swiper-1 .swiper-wrapper .swiper-slide {
    overflow: hidden;
    border-top-left-radius: 100px;
}

#swiper-1 .swiper-wrapper .swiper-slide-prev img,
#swiper-1 .swiper-wrapper .swiper-slide-active img,
#swiper-1 .swiper-wrapper .swiper-slide-duplicate-active img {
    animation-name: zoom;
    animation-duration: 4s;
    animation-fill-mode: forwards;
}

.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s, transform 1s;
}

.fade.active {
    opacity: 1;
    transform: translateY(0px);
}

@media only screen and (max-width: 575px) {
    .button-wrapper {
        clear: both;
        padding: 60px 15px;

    }

    .section-5-content-item-title h3 span {
        display: block;
    }
}




.archive-content,
.post-content {
    padding-bottom: 100px;
}

.richtext a {
    color: #f8b62d;
}


.richtext h1 {
    font-weight: bold;
    font-size: 38px;
    display: inline-block;
    background: linear-gradient(45deg, #54d0ff, #9f92ff 20%, #ff7689 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.richtext h2 {
    margin-bottom: 15px;
    font-size: 28px;

}

.richtext h3 {
    margin-bottom: 15px;
    border-bottom: 1px solid #707070;
    padding-bottom: 5px;
    font-size: 24px;
}

.richtext h4 {
    color: #0081CC;
    margin-bottom: 15px;
    font-size: 18px;
}

.richtext h5 {
    margin-bottom: 15px;
    font-size: 16px;
}

.richtext h6 {
    margin-bottom: 15px;
    font-size: 14px;
}




.biz-hour {
    display: table;
    border-collapse: collapse;
    /* overflow-x: scroll;で、
  スマホ画面幅に表が入りきらない場合は
  横スクロールしてくれます */
    width: 100%;
    margin: 15px 0;
}


.biz-hour th,
.biz-hour td {
    padding: 10px;
    text-align: center;
    /* 枠線。色を変えたい時は#ff6680というところをお好みで */
    border: 1px solid #714621;
    color: #714621;
}

.biz-hour td {
    background-color: #fff;
}

.biz-hour th {
    background-color: #f07b35;
    font-weight: normal;
    color: #fff;
}

/* 「土」の文字色 */
.biz-hour th.sat {}

.biz-item {
    display: flex;
}

.biz-title {
    border: 1px solid #714621;
    border-radius: 12px;
    padding: 2px 6px;
    min-width: 140px;
    text-align: center;
    margin-bottom: 10px;
    color: #714621;
    font-weight: bold;
    background-color: #fff;
}

.biz-text {
    padding: 5px 10px;
    color: #714621;
    font-weight: bold;
}

/* 「日」の文字色 */
.biz-hour th.sun {}



#time {
    padding: 60px 0;
    border-top: 1px dashed #f8b62d;
    border-bottom: 1px dashed #f8b62d;
}

#time .container {
    max-width: 600px;
}

.title h3 {
    font-size: 31px;
    color: #f8b62d;
    font-weight: bold;
    text-align: center;
}


.bg {
    background-image: url(../images/Mask\ Group\ 9.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

#message {
    padding: 60px 0;
    border-top: 1px dashed #f8b62d;
    border-bottom: 1px dashed #f8b62d;
}

.message {
    text-align: center;
}

.message img {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.message p {
    font-size: 14px;
    font-weight: bold;
    max-width: 1040px;
    margin: 0 auto;
}

.section-6 {
    border-top: 1px dashed #f8b62d;
}

.section-2 .content-text {
    padding-bottom: 60px;
}

img {
    max-width: 100%;
}




th.fc-day-sat {
    background-color: #eaf4ff;
}

th.fc-day-sun {
    background-color: #ffeaea;
}

th.fc-day-sat .fc-col-header-cell-cushion {
    color: blue;
}

th.fc-day-sun .fc-col-header-cell-cushion {
    color: red;
}

td.fc-day-sat {
    background-color: #eaf4ff;
}

td.fc-day-sun {
    background-color: #ffeaea;
}

.fc-col-header-cell-cushion {
    color: black;
}

.fc-daygrid-day-number {
    color: black;
}

td.fc-day-sat .fc-daygrid-day-number {
    color: blue;
}

td.fc-day-sun .fc-daygrid-day-number {
    color: red;
}

td.fc-timegrid-slot {
    height: 2.5em !important;
    border-bottom: 0 !important;
}

.fc-scrollgrid-sync-table,
.fc .fc-scrollgrid-liquid {

    background: #fff;
}

.skc,
.holiday,
td.fc-day-sun .fc-daygrid-event-harness a,
td.fc-day-sat .fc-daygrid-event-harness a {
    background-color: #d63031;
    border-color: #d63031;
}

.simcal-week td:last-child .simcal-day-number {
    background-color: #d63031 !important;
    color: #fff !important;

}

.simcal-week td:nth-child(6) .simcal-day-number {
    background-color: #74b9ff !important;
    color: #fff !important;

}

.simcal-week {
    background-color: #fff;
}

.simcal-default-calendar-grid>table tbody td {
    padding: 0 !important;
    border-left: 1px solid #e8e8e8;
}

.simcal-month {
    border: 1px solid #e8e8e8;
}

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

    .simcal-event-details.simcal-tooltip-content a,
    .simcal-event-start.simcal-event-start-date,
    .simcal-default-calendar-grid .simcal-events-dots {
        display: none !important;
    }

    .simcal-events {
        display: block !important;
    }
}

ul.accordion-list dl {
    margin-bottom: 0;
}

ul.accordion-list>*+* {
    margin-top: 10px;
}

ul.accordion-list>li {
    border: 1px solid #f39c12;
    padding: 0px 15px;
    list-style: none;
    border-radius: 10px;
}

@media only screen and (max-width: 768) {
    ul.accordion-list>li {
        padding: 0 20px;
    }
}

ul.accordion-list .acc-ttl {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;

    cursor: pointer;
    padding: 18px 20px 18px 0;
    position: relative;
    display: block;
    color: #f39c12;
}

@media only screen and (max-width: 768) {
    ul.accordion-list .acc-ttl {
        padding: 13px 25px 13px 0;
    }
}

ul.accordion-list .acc-ttl::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font: var(--fa-font-solid);
    font-weight: 900;
    font-size: 20px;
}

@media only screen and (max-width: 768) {
    ul.accordion-list .acc-ttl::before {
        font-size: 16px;
    }
}

ul.accordion-list .acc-ttl.active {}

ul.accordion-list .acc-ttl.active::before {
    content: "";
}

ul.accordion-list .acc-txt {
    font-weight: 500;
    padding: 15px 0 15px;
    line-height: 2;
    letter-spacing: 0.05em;
    display: none;
}

ul.accordion-list {
    margin-bottom: 40px;
}

.post-content h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6;
}









.main-visual {
    max-width: 80%;
    margin: 0 auto;
    padding: 10vh 0;
    text-align: center;
}

.main-visual img {
    width: 240px;
    margin: 0 auto;
}

.main-visual h1 {
    text-align: center;
    padding: 30px 0;
    line-height: 1.8;
    font-weight: bold;
}


.zoom-in {
    animation: animationZoom1 3s ease-in-out forwards;
}



@keyframes animationZoom1 {
    100% {
        transform: scale(1.1);
    }
}

.section-5-content-item {}

#news {}




@media only screen and (max-width: 1420px) {
    header .menu ul li a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 575px) {
    #news .swiper-wrapper {
        display: block;
    }
    .section-5-content .swiper-slide {
        margin-right: 5px;
        margin-bottom: 20px;
    }
    .archive-content-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-5-content-item-title {
        padding: 5px 0;
    }

    .section-5-content-item-title h3 {
        display: flex;
    }

    .archive-content {}

    .archive-content-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-5-content-item {
        background-color: #fff;
        padding: 10px;

        padding: 30px 20px;
        background-size: 50px;
              position: relative;
    }

    .section-5-content-item-title {
        padding: 5px 0;
    }

    .section-5-content-item-title h3 {
        display: flex;
    }



    .section-5-content-item-description{
      position: relative;
    }


    .c-button {
        position: relative;
        border-radius: 4px;
        width: 100%;

        text-decoration: none;
        transition: all .4s cubic-bezier(.78, .07, 0, 1) .2s;
        border: 1px solid #f8b62d;
        cursor: pointer;
        overflow: hidden;
        margin-bottom: 15px;
    }


    .c-button span.arrow{
      position: absolute;
      right: 15px;
      top: 48px;
      transition: all .4s cubic-bezier(.78, .07, 0, 1) .2s;
    }

    .c-button span.arrow i{
      font-size: 24px;
      color: #f8b62d;
    }
     .c-button:hover > span.arrow{
      right: 35px;
    }
}