/*
Theme Name: SAWAYAKA SHIKA CLINIC
Description: ポートフォリオ用のオリジナルwebサイト
Author: ARISA IBA
*/


/********** 基本設定 ************/

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html.is-fixed, body.is-fixed {
    overflow: hidden;
}

body.is-fixed {
    position: fixed;
    width: 100%;
}

body.is-fixed main {
    pointer-events: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "oso-sans-variable", "Zen Maru Gothic", sans-serif;
    color: #383838;
}

main {
    flex: 1;
}

/* 共通CSS */

p {
    font-size: 16px;
    font-weight: 400;
}

.border {
    border-bottom: solid 1px #93939333;
}

.date {
    color: #939393;
    font-size: 18px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    min-width: 0;
}

.sub-title {
    font-size: 16px;
    font-variation-settings: 'wdth' 100, 'wght' 600;
    color: #95BDD8;
    letter-spacing: 0.03em;
}

.main-title {
    font-size: 32px;
    font-weight: 400;
    color: #2B7BB1;
    margin-bottom: 46px;
}

@media screen and (max-width: 1250px) {
    .main-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 760px) {
    .main-title {
        font-size: 24px;
    }
}

.archive-title {
    text-underline-offset: 5px;
    color: #383838;
}

.archive-text {
    text-decoration: none;
    color: #383838;
}

/*************** トップページ ******************/

/* トップへ戻るボタン */

.page-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

@media screen and (max-width: 760px) {
    .page-top-button {
        display: none;
    }
}


/* ヘッダー（PC） */

header {
    width: 100%;
    height: 107px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-left: 60px;
    padding-right: 3%;
    padding-bottom: 15px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

@media screen and (max-width: 1250px) {
    header {
        height: 97px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 760px) {
    header {
        height: 70px;
        padding: 20px 20px 15px 20px;
    }
}

@media screen and (max-width: 1250px) {
    header img {
        width: 190px;
    }
}

@media screen and (max-width: 760px) {
    header img {
        width: 110px;
    }
}

.nav-pc {
    display: flex;
}

.nav-left {
    display: flex;
    gap: 10px;
    margin-right: 14px;
}

.dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

.dropdown-trigger {
    text-decoration: none;
    font-size: 16px;
    color: #2B7BB1;
    font-weight: 500;
}

.dropdown-trigger:hover {
    opacity: 0.7;
}

.dropdown-menu {
    padding-left: 0;
    background: #2B7BB1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-menu li {
    list-style: none;
    padding: 0;
    text-align: center;
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #FFFFFF;
}

.dropdown-menu a:hover {
    background-color: #95BDD8;
}

.dropdown-menu .border {
    width: 100%;
    border-bottom: solid 1px #95BDD8;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-and-cta-pc {
    display: flex;
    justify-content: space-between;
}

.nav-right ul {
    display: flex;
    gap: 20px;
    margin-right: 33px;
    padding-top: 8px;
    padding-left: 0;
}

.nav-right li {
    list-style: none;
}

.nav-right a {
    text-decoration: none;
    color: #2B7BB1;
    font-weight: 500;
}

.nav-right a:hover {
    opacity: 0.7;
}

.cta-buttons {
    display: flex;
}

.reservation-button {
    width: 110px;
    height: 72px;
    margin-right: 12px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2B7BB1;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: solid 2px;
    border-radius: 9px;
    border-color: #2B7BB1;
    transition: all 0.3s;
}

.web {
    font-family: "oso-sans-variable", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.reservation-button::after {
    content: '';
    width: 20px;
    height: 21px;
    margin-top: 3px;
    background-color: #FFFFFF;
    mask-image: url("img/pc_icon_small.svg");
    mask-repeat: no-repeat;
    mask-size: 20px 21px;
    transition: all 0.3s;
}

.reservation-button:hover {
    background-color: #FFFFFF;
    color: #2B7BB1;
}

.reservation-button:hover::after {
    background-color: #2B7BB1;
}

.contact-button {
    width: 110px;
    height: 72px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2B7BB1;
    font-size: 15px;
    text-decoration: none;
    font-weight: 700;
    color: #FFFFFF;
    border: solid 2px;
    border-radius: 10px;
    border-color: #2B7BB1;
    transition: all 0.3s;
}

.contact-button::after {
    content: '';
    width: 22px;
    height: 22px;
    margin-top: 3px;
    background-color: #FFFFFF;
    mask-image: url("img/mail_icon_small.svg");
    mask-repeat: no-repeat;
    mask-size: 22px 22px;
    transition: all 0.3s;
}

.contact-button:hover {
    background-color: #FFFFFF;
    color: #2B7BB1;
}

.contact-button:hover::after {
    background-color: #2B7BB1;
}

/***** SP（タブレット）用ハンバーガーメニュー *****/

/* SP（タブレット）とPCの表示非表示まとめ */
@media screen and (max-width: 1250px) {
    .nav-and-cta-pc {
        display: none;
    }
}

@media screen and (min-width: 1251px) {
    .hamburger-menu {
        display: none;
    }

    .nav-and-cta-sp {
        display: none;
    }
}

/* ハンバーガーメニューのアイコン */
@media screen and (max-width: 1250px) {
    .hamburger-menu {
        z-index: 3;
        position: fixed;
        top: 38px;
        right: 30px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }
    
    .hamburger-menu span {
        display: block;
        width: 50px;
        height: 3px;
        border-radius: 6px;
        margin-bottom: 8px;
        background-color: #2B7BB1;
        transition: all 0.4s ease;
    }

    .hamburger-menu.is-open span:nth-child(1) {
        transform: rotate(30deg) translate(8px, 8px);
        background-color: #FFFFFF;
    }

    .hamburger-menu.is-open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.is-open span:nth-child(3) {
        transform: rotate(-30deg) translate(8px, -8px);
        background-color: #FFFFFF;
    }
}

@media screen and (max-width: 760px) {
    .hamburger-menu {
        top: 28px;
        right: 20px;
    }
    
    .hamburger-menu span {
        width: 32px;
        height: 2px;
        border-radius: 4px;
        margin-bottom: 5px;
    }

    .hamburger-menu.is-open span:nth-child(1) {
        transform: rotate(30deg) translate(5.1px, 5.1px);
    }

    .hamburger-menu.is-open span:nth-child(3) {
        transform: rotate(-30deg) translate(5.1px, -5.1px);
    }
}

/***** SP（タブレット）用ナビゲーションメニュー *****/

@media screen and (max-width: 1250px) {
    .nav-and-cta-sp {
        z-index: 2;
        visibility: hidden;
        opacity: 0;
        width: 100vw;
        height: calc(var(--vh) * 100);
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        background: #2B7BB1;
        padding-top: 30px;
        padding-left: 7%;
        padding-right: 12%;
        transition: all 0.5s;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .nav-and-cta-sp.is-open{
        visibility: visible;
        opacity: 1;
    }

    .nav-logo-sp img{
        width: 200px;
        height: auto;
    }

    .nav-sp {
        flex: 1;
        width: 100%;
        background-color: #2B7BB1;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .nav-sp ul {
        padding-left: 5%;
        padding-top: 0;
    }

    .nav-sp li {
        position: relative;
        list-style: none;
        padding-top: 10px;
        padding-bottom: 8px;
        padding-left: 5px;
    }

    .nav-sp-main::after {
        position: absolute;
        right: 10px;
        top: 18px;
        content: '';
        width: 15px;
        height: 15px;
        display: inline-block;
        background-image: url(img/arrow_white_sp.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .nav-sp a {
        text-decoration: none;
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 500;
    }

    .nav-sp .border {
        border-bottom: solid 1px #FFFFFF;
        padding: 0;
    }

    .nav-sp-sub {
        padding-top: 10px;
        padding-bottom: 5px;
    }

    .nav-sp-sub li {
        padding-top: 0;
        padding-left: 50px;
        padding-bottom: 5px;
    }

    .nav-sp-sub li::before {
        content: '';
        display: inline-block;
        width: 7px;
        height: 8px;
        border-left: solid 1px #FFFFFF;
        border-bottom: solid 1px #FFFFFF;
        margin-right: 5px;
        margin-bottom: 4px;
    }

    .nav-sp-sub li::after {
        content: none;
    }
    
    .nav-sp-sub a {
        font-size: 18px;
        font-weight: 400;
    }

    .tellephone_and_cta_sp {
        margin-top: auto;
    }

    .tellephone-sp .tellephone-text {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 0;
    }

    .tellephone-sp .tellephone-number p {
        color: #FFFFFF;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .tellephone-sp .tellephone-number img {
        margin-top: 4px;
        margin-left: 0;
    }
    
    .cta-buttons-sp {
        z-index: 2;
        padding: 0;
        margin-bottom: 50px;
    }

    .cta-buttons-sp .footer-button {
        height: 170px;
        font-size: 26px;
        padding: auto;
    }

    .cta-buttons-sp .footer-button .web {
        font-size: 30px;
    }

    .cta-buttons-sp .footer-pc-icon {
        width: 50px;
        margin-top: 5%;
    }

    .cta-buttons-sp .footer-mail-icon {
        width: 60px;
        margin-top: 8%;
    }
}

@media screen and (max-width: 760px)  {
     .nav-and-cta-sp {
        padding-top: 20px;
    }

    .nav-logo-sp img {
        width: 120px;
    }

    .nav-sp ul {
        margin: 0;
    }

    .nav-sp li {
        padding-top: 10px;
        padding-bottom: 5px;
        padding-left: 3px;
    }

    .nav-sp-main::after {
        right: 6px;
        top: 17px;
        width: 11px;
        height: 11px;
    }

    .nav-sp a {
        font-size: 15px;
    }

    .nav-sp-sub {
        padding-top: 10px;
        padding-bottom: 0;
    }

    .nav-sp-sub li {
        padding-top: 0;
        padding-left: 30px;
        padding-bottom: 2px;
    }

    .nav-sp-sub li::before {
        width: 6px;
        height: 7px;
        margin-right: 4px;
        margin-bottom: 3px;
    }
    
    .nav-sp-sub a {
        font-size: 13px;
        font-weight: 400;
    }

    .tellephone-sp {
        z-index: 2;
        /* position: fixed;
        bottom: 120px;
        left: 0;
        right: 0;
        margin: auto; */
    }

    .tellephone-sp .tellephone-text {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0;
    }

    .tellephone-sp .tellephone-number p {
        font-size: 26px;
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .tellephone-sp .tellephone-number img {
        width: 18px;
        height: 30px;
        margin-top: 0;
        margin-right: 5px;
        padding-top: 0;
    }
    
    .cta-buttons-sp {
        z-index: 2;
    }

    .cta-buttons-sp .footer-button {
        height: 100px;
        font-size: 17px;
    }

    .cta-buttons-sp .footer-button .web {
        font-size: 20px;
    }

    .cta-buttons-sp .footer-pc-icon {
        width: 26px;
        margin-top: 8px;
    }

    .cta-buttons-sp .footer-mail-icon {
        width: 32px;
        margin-top: 10px;
    }
}

/* メインビジュアル */

main {
    padding-top: 107px;
}

@media screen and (max-width: 1250px) {
    main {
        padding-top: 97px;
    }
}

@media screen and (max-width: 760px) {
    main {
        padding-top: 70px;
    }
}

/* スライドショー */

#slide {
    width: 100vw;
    height: 550px;
    position: relative;
}

.img01 {
    width: 100%;
    height: 550px;
    background-image: url(img/sawayaka_fv01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.img02 {
    width: 100%;
    height: 550px;
    background-image: url(img/sawayaka_fv02.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.img03 {
    width: 100%;
    height: 550px;
    background-image: url(img/sawayaka_fv03.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

@media screen and (max-width: 760px) {
    .img01 {
        background-image: url(img/sawayaka_fv01_sp.jpg);
    }

    .img02 {
        background-image: url(img/sawayaka_fv02_sp.jpg);
    }

    .img03 {
        background-image: url(img/sawayaka_fv03_sp.jpg);
    }
}

#slide p {
    position: absolute;
    top: 30%;
    left: 10%;
    color: #2B7BB1;
    font-size: 32px;
    font-weight: 500;
    text-shadow: 2px 2px 8px #FFFFFF,
                -2px 2px 8px #FFFFFF,
                2px -2px 8px #FFFFFF,
                -2px -2px 8px #FFFFFF;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.big {
    font-size: 40px;
    letter-spacing: 0.15em;
    padding-left: 10px;
}

@media screen and (max-width: 760px) {
    #slide p {
        width: 100%;
        top: 20%;
        left: 0;
        text-align: center;
        font-size: 20px;
    }

    .big {
        font-size: 24px;
        padding-left: 5px;
    }
}

/* NEWS */

.news {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 10% 64px 10%;
}

@media screen and (max-width: 760px) {
    .news {
        flex-direction: column;
        padding: 10px 5% 30px 5%;
    }
}

.news a {
    text-decoration: none;
}

.news h1 {
    font-size: 32px;
    font-weight: 400;
    color: #2B7BB1;
    margin-right: 43px;
}

@media screen and (max-width: 760px) {
    .news h1 {
        font-size: 24px;
        margin-right: 0;
    }
}

.news-top-contents {
    border-left: solid 1px #2B7BB1;
    padding-left: 43px;
}

@media screen and (max-width: 760px) {
    .news-top-contents {
        border-left: none;
        border-top: solid 1px #2B7BB1;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.news-top-text {
    display: flex;
}

.news-top-text h2 {
    margin-left: 20px;
    padding-top: 3px;
    color: #383838;
    font-size: 16px;
    font-weight: 400;
    width: 245px;
}

.news a:hover {
    opacity: 0.7;
}

/* CONCEPT */

#about {
    width: 100%;
    height: 64px;
}

.concept {
    display: flex;
}

@media screen and (max-width: 760px) {
    .concept {
        flex-direction: column;
    }
}

.concept-left-content {
    width: 56vw;
    padding-left: 10%;
    padding-right: 5%;
    padding-top: 2%;
}

@media screen and (max-width: 1250px) {
    .concept-left-content {
        width: 63vw;
        padding-left: 7%;
        padding-right: 2%;
    }
}

@media screen and (max-width: 760px) {
    .concept-left-content {
        width: 100vw;
        padding-left: 8%;
        padding-right: 8%;
    }
}

.concept-left-content h1 {
    margin-bottom: 40px;
}

@media screen and (max-width: 760px) {
    .concept-left-content h1 {
        font-size: 22px;
    }
}

.concept-left-content p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}

@media screen and (max-width: 1250px) {
    .concept-left-content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 760px) {
    .concept-left-content p {
        line-height: 1.6;
        margin-bottom: 30px;
    }
}

.concept-img {
    width: 30vw;
    height: auto;
}

@media screen and (max-width: 1250px) {
    .concept-img {
        width: 37vw;
    }
}

@media screen and (max-width: 760px) {
    .concept-img {
        width: 100vw;
    }
}

/* OUR VALUES */

.our-values {
    padding-top: 110px;
    padding-bottom: 60px;
}

@media screen and (max-width: 760px) {
    .our-values {
        padding: 60px 8%;
    }
}

.our-values .sub-title {
    text-align: center;
}

.our-values .main-title {
    text-align: center;
}

.value-contents {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1250px) {
    .value-contents {
        flex-direction: column;
        align-items: center;
    }
}

.value-content {
    text-align: center;
    width: 350px;
}

@media screen and (max-width: 1250px) {
    .value-content {
        margin-bottom: 20px;
    }
}

.value-num {
    z-index: 3;
    /* margin-left: -30px; */
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 500;
    color: #FFFFFF;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 1.6;
    background: linear-gradient(180deg, #95BDD8, #2B7BB1);
}

@media screen and (max-width: 760px) {
    .value-num {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }
}

.value-title {
    z-index: 2;
    position: relative;
    display: inline-block;
    width: 240px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: solid 1px #FFFFFF;
    background-color: #FFFFFF;
    padding: 15px 15px 15px 18px;
    margin-left: -15px;
    border-radius: 26px;
    box-shadow: 2px 2px 4px #00000033;
    margin-bottom: -100px;
}

.value-content-text {
    text-align: justify;
    padding: 0 13%;
}

.value-img {
    z-index: 1;
    position: relative;
    margin-top: -30px;
    margin-left: 20px;
}

/* SERVICE */
.service {
    background-image: url(img/service_bgimg.png);
    background-size: cover;
    padding-top: 64px;
    padding-bottom: 80px;
}

.service .sub-title {
    text-align: center;
}

.service .main-title {
    text-align: center ;
}

.service a {
    text-decoration: none;
}

.service a:hover {
    opacity: 0.7;
}

.service-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 500px;
    margin: 0 auto;
    padding: 0;
}

@media screen and (max-width: 760px) {
    .service-buttons {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        width: 180px;
    }
}

.service-buttons a {
    background-color: #FFFFFF;
    text-decoration: none;
    color: #2B7BB1;
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    width: 202px;
    height: 202px;
    border: solid 2px #2B7BB1;
    border-radius: 20px;
    padding-top: 25px;
    margin: 10px;
    transition: 0.5s ease;
}

@media screen and (max-width: 760px) {
    .service-buttons a {
        margin-bottom: 20px;
    }
}

.service-button-img {
    margin-top: 18px;
}

@media (hover:hover) {
    .service-buttons a:hover {
        background-color: #B6D1E4;
    }
}

@media (hover:none) {
    .service-buttons a:active {
        background-color: #B6D1E4;
    }
}

/* FEATURES */
.features {
    padding-top: 64px;
    padding-bottom: 64px;
}

@media screen and (max-width: 760px) {
    .features {
        padding-bottom: 40px;
    }
}

.features .sub-title {
    text-align: center;
}

.features .main-title {
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 760px) {
    .features .main-title {
        margin-bottom: 20px;
    }
}

.feature-contents {
    padding: 0 15%;
}

@media screen and (max-width: 1250px) {
    .feature-contents {
        padding: 0 8%;
    }
}

.feature-content {
    display: flex;
}

@media screen and (max-width: 760px) {
    .feature-content {
        flex-direction: column;
    }
}

.feature-content-pcsp {
    display: flex;
}

@media screen and (max-width: 760px) {
    .feature-content-pcsp {
        flex-direction: column;
    }
}

.feature-content-text {
    width: 50%;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 4%;
}

@media screen and (max-width: 1250px){
    .feature-content-text {
        padding-top: 0;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 760px) {
    .feature-content-text {
        width: 100%;
        padding: 0;
    }

    .feature-content-pcsp .feature-content-text {
        order: 1;
    }
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #2B7BB1;
}

@media screen and (max-width: 1250px) {
    .feature-content h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 760px) {
    .feature-content h3 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 0;
        line-height: 1.5;
    }
}

.feature-content-pcsp h3 {
    font-size: 24px;
    font-weight: 400;
    color: #2B7BB1;
}

@media screen and (max-width: 1250px) {
    .feature-content-pcsp h3 {
        font-size: 20px;
        margin-top: 50px;
        margin-bottom: 0;
        line-height: 1.5;
    }
}

.feature-content-img {
    width: 50%;
    height: auto;
}

@media screen and (max-width: 760px) {
    .feature-content-img {
        width: 100%;
    }
}

@media screen and (max-width: 760px) {
    .feature-content-pcsp .feature-content-img {
        order: 2;
    }
}

/* MESSAGE */

.message {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 15%;
    padding-right: 10%;
    background-image: url(img/message_bgimg.png);
    background-size: cover;
}

@media screen and (max-width: 760px) {
    .message {
        padding-left: 8%;
        padding-right: 8%;
    }
}

.message-contents {
    display: flex;
}

@media screen and (max-width: 1250px) {
    .message-contents {
        flex-direction: column;
        align-items: center;
    }
}

.message-content-text {
    width: 60%;
    padding-right: 10%;
}

@media screen and (max-width: 1250px) {
    .message-content-text {
        order: 2;
        width: 90%;
        padding-right: 0;
    }
}

.message-content-text p {
    line-height: 1.6;
    font-size: 18px;
}

@media screen and (max-width: 760px) {
    .message-content-text p {
        font-size: 16px;
    }
}

.message-content-img {
    width: 30%;
    max-height: 600px;
    margin-top: -100px;
}

@media screen and (max-width: 1250px) {
    .message-content-img {
        order: 1;
        width: 35%;
        margin-top: 0px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 760px) {
    .message-content-img {
        width: 75%;
    }
}

.message-content-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.message-button {
    display: flex;
    width: 200px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    border: solid 2px #2B7BB1;
    border-radius: 26px;
    padding: 11px 10px 11px 34px;
    background-color: #2B7BB1;
    margin: 10% 0 0 auto;
    transition: 0.3s ease;
}

.message-button:hover {
    background-color: #FFFFFF;
    color: #2B7BB1;
}

.message-button-arrow {
    transition: filter 0.3s ease;
    margin-left: 18px;
}

.message-button:hover .message-button-arrow {
    filter: brightness(0) saturate(100%) invert(38%) sepia(99%) saturate(502%) hue-rotate(164deg) brightness(87%) contrast(80%);
}

/* BLOG */

.blog-top {
    display: flex;
    padding-top: 64px;
    padding-bottom: 100px;
}

@media screen and (max-width: 1250px) {
    .blog-top {
        flex-direction: column;
        align-items: center;
    }
}

.blog-top > a {
    text-decoration: none;
    display: inline-block;
    height: fit-content;
    margin-right: 6%;
    margin-left: 12%;
    color: #2B7BB1;
    border-bottom: solid 2px #2B7BB1;
}

@media screen and (max-width: 1250px) {
    .blog-top > a {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.blog-top h1 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-contents-top {
    width: 50%;
}

@media screen and (max-width: 1250px) {
    .blog-contents-top {
        width: 70%;
    }
}

.blog-content-top {
    display: flex;
    border-bottom: solid 1px #D9D9D9;
    padding: 30px 5px 20px 5px;
}

@media screen and (max-width: 760px) {
    .blog-content-top {
        flex-direction: column;
        padding-top: 40px;
    }
}

.blog-img-top {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
}

@media screen and (max-width: 760px) {
    .blog-img-top {
        width: 100%;
        margin-bottom: 10px;
    }
}

.blog-text-top {
    display: flex;
    flex-direction: column;
    padding-left: 3%;
    padding-right: 1%;
}

.blog-text-top h2 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}

.blog-text-top .date {
    margin: 0 0 0 auto;
}

@media (hover:hover) {
    .blog-top a:hover {
        opacity: 0.7;
    }
}

@media (hover:none) {
    .blog-top a:active {
        opacity: 0.7;
    }
}

/* 地図 */

.map iframe {
    width: 100%;
    height: 300px;
    vertical-align: bottom;
}

/* フッター */

footer {
    background-color: #2B7BB1;
    color: #FFFFFF;
    padding-top: 30px;
}

@media screen and (max-width: 760px) {
    footer {
        padding-top: 15px;
    }
}

.site-footer {
    padding-left: 13%;
}

@media screen and (max-width: 1250px) {
    .site-footer {
        padding-right: 13%;
    }
}

@media screen and (max-width: 760px) {
    .site-footer {
        padding: 0 8%;
    }
}

.footer-c01 {
    display: flex;
}

@media screen and (max-width: 1250px) {
    .footer-c01 {
        justify-content: center;
    }
}

@media screen and (max-width: 760px) {
    .footer-c01 {
        flex-direction: column;
    }
}

.footer-c01 a {
    margin-right: 26px;
    margin-top: 17px;
}

.post-number {
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 0.05em;
}

.footer-c02 {
    display: flex;
    margin-top: 30px;
    margin-bottom: 60px;
}

@media screen and (max-width: 1250px) {
    .footer-c02 {
        flex-direction: column;
        align-items: center;
    }
}

.footer-timetable {
    margin-right: 8%;
    object-fit: contain;
}

@media screen and (max-width: 1250px) {
    .footer-timetable {
        margin-right: 0;
        margin-bottom: 20px;
        width: 80%;
        object-fit: contain;
    }

    .footer-c02-right {
        margin-top: 5%;
        width: 100%;
        padding: 0 10%;
    }
}

@media screen and (max-width: 760px) {
    .footer-timetable {
        width: 100%;
    }

    .footer-c02-right {
        padding: 0;
    }
}

.tellephone-text {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 5px;
}

@media screen and (max-width: 1250px) {
    .tellephone-text {
        margin-bottom: 10px;
    }
}

.tellephone-number {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1250px) {
    .tellephone-number {
        margin-bottom: 15px;
    }
}

.tellephone-number img {
    width: 32px;
    height: 44px;
    margin-right: 10px;
    margin-left: 5px;
}

@media screen and (max-width: 760px) {
    .tellephone-number img {
        width: 28px;
        height: 42px;
        padding-top: 12px;
    }
}

.tellephone-number p {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0;
    margin-bottom: 20px;
}

@media screen and (max-width: 1250px) {
    .tellephone-number p {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 760px) {
    .tellephone-number p {
        margin-top: 8px;
        margin-bottom: 0;
        font-size: 32px;
    }
}

.footer-cta-buttons {
    display: flex;
}

.footer-button {
    padding: 12px 0;
    margin: 0 10px;
    justify-content: space-between;
    width: 170px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #2B7BB1;
    background-color: #FFFFFF;
    border-radius: 11px;
    box-shadow: 4px 4px 4px #0000004D;
    text-align: center;
    transition: all 0.1s ease;
}

@media screen and (max-width: 1250px) {
    .footer-button {
        width: 100%;
        padding: 24px 0;
    }
}

@media screen and (max-width: 760px) {
    .footer-button {
        font-size: 18px;
        padding: 16px 0;
        margin: 0 8px;
    }
}

 @media (hover:hover) {
    .footer-button:hover {
        transform: translateX(2px);
        transform: translateY(2px);
        box-shadow: none;
        background-color: #CAE5FF;
    }
}

@media (hover:none) {
    .footer-button:active {
        transform: translateX(2px);
        transform: translateY(2px);
        box-shadow: none;
        background-color: #CAE5FF;
    }
}

.footer-pc-icon {
    margin-top: 5px;
}

@media screen and (max-width: 760px) {
    .footer-pc-icon {
        width: 32px;
        margin-top: 8px;
    }
}

.footer-mail-icon {
    margin-top: 10px;
}

@media screen and (max-width: 760px) {
    .footer-mail-icon {
        width: 38px;
        margin-top: 12px;
    }
}

.footer-button .web {
    font-size: 23px;
    font-weight: 300;
}

.footer-nav-pc ul {
    padding-left: 0;
    display: flex;
    gap: 20px;
}

.footer-nav-pc li {
    list-style: none;
}

.footer-nav-pc a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.footer-nav-pc a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1250px) {
    .footer-nav-pc {
        display: none;
    }
}

.copyright {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 50px;
    font-size: 14px;
    font-weight: 400;
    color: #95BDD8;
}

/**************** 院長・スタッフ ******************/

/* トップバナー（共通CSS） */

.top-banner {
    background-image: url(img/top_banner.png);
    background-size: cover;
    padding-top: 64px;
}

.top-banner h1 {
    padding-left: 10%;
    font-size: 32px;
    font-weight: 500;
    color: #2B7BB1;
    margin-bottom: 55px;
}

@media screen and (max-width: 760px) {
    .top-banner h1 {
        font-size: 24px;
    }
}

.pankuzu-list {
    padding-left: 10%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 760px) {
    .pankuzu-list {
        display: none;
    }
}

.pankuzu-list a {
    text-decoration: none;
    color: #2B7BB1;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
}

.pankuzu-list p {
    font-size: 14px;
    font-weight: 500;
    color: #2B7BB1;
    margin-right: 10px;
}

.inner-link-bar {
    position: relative;
    width: 100%;
    height: 76px;
    background-color: #FFFFFF;
    border-radius: 66px 0 0 0;
    box-shadow: -4px -4px 5px #93939333;
}

.inner-link-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media screen and (max-width: 760px) {
    .inner-link-buttons {
        gap: 10px;
        padding-left: 5px;
    }
}

.inner-link-buttons a {
    text-decoration: none;
    color: #2B7BB1;
    font-size: 16px;
    font-weight: 500;
    border: solid 2px #2B7BB1;
    border-radius: 10px;
    padding: 4px 20px;
    background-color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 10px;
}

@media screen and (max-width: 760px) {
    .inner-link-buttons a {
        font-size: 14px;
        padding: 3px 15px;
        margin-top: 25px;
    }
}

@media (hover:hover) {
    .inner-link-buttons a:hover {
        background-color: #B6D1E4;
    }
}

@media (hover:none) {
    .inner-link-buttons a:active {
        background-color: #B6D1E4;
    }
}

/* 院長あいさつ */

#message-staff {
    padding: 64px 13%;
    background-image: url(img/message_bgimg.png);
    background-size: cover;
}

.message-staff-contents {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1250px) {
    .message-staff-contents {
        flex-direction: column;
    }
}

.message-staff-contents p {
    width: 70%;
    padding-right: 7%;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

@media screen and (max-width: 1250px) {
    .message-staff-contents p {
        order: 2;
        width: 100%;
        font-size: 16px;
    }
}

.message-staff-contents img {
    margin-top: -50px;
    margin-right: auto;
    margin-left: auto;
    object-fit: contain;
    width: 33%;
    min-width: 372px;
}

@media screen and (max-width: 1250px) {
    .message-staff-contents img {
        order: 1;
        margin-top: 10px;
        margin-bottom: 5px;
        min-width: 300px;
    }
}

@media screen and (max-width: 760px) {
    .message-staff-contents img {
        width: 65%;
        min-width: 200px;
        margin-top: 0;
    }
}

.career-title {
    display: flex;
    align-items: center;
}

.square {
    width: 9px;
    height: 25px;
    background-color: #2B7BB1;
    margin-right: 5px;
}

.career h3 {
    color: #2B7BB1;
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 2px;
}

.career p {
    margin-top: -10px;
}

/* スタッフ紹介 */

#staff {
    padding-top: 64px;
    padding-bottom: 150px;
}

@media screen and (max-width: 760px) {
    #staff {
        padding-bottom: 100px;
    }
}

#staff .sub-title {
    text-align: center;
}

#staff .main-title {
    text-align: center;
}

.staff-contents {
    padding: 0 18%;
}

@media screen and (max-width: 760px) {
    .staff-contents {
        padding: 0 10%;
    }
}

.staff-content {
    display: flex;
    align-items: flex-start;
    margin: 5% 0;
    padding: 0 3%;
}

@media screen and (max-width: 1250px) {
    .staff-content {
        flex-direction: column;
        align-items: center;
    }
}

.staff-content img {
    margin-right: 5%;
    object-fit: contain;
    max-width: 220px;
}

@media screen and (max-width: 1250px) {
    .staff-content img {
        margin-bottom: 5px;
        margin-top: 5px;
    }
}

@media screen and (max-width: 760px) {
    .staff-content img {
        margin-top: 20px;
    }
}

.staff-features {
    margin-top: 2%;
}

.staff-features p {
    text-align: justify;
}

.staff-features-title {
    display: inline-block;
    font-size: 15px;
    color: #FFFFFF;
    background-color: #2B7BB1;
    padding: 5px 20px 6px 20px;
    width: 120px;
    text-align: center;
    margin-right: 10px;
}

@media screen and (max-width: 760px) {
    .staff-features-title {
        display: block;
        font-size: 14px;
        margin-right: 0;
        width: 100%;
    }
}

.staff-text {
    font-size: 18px;
    margin-bottom: 0px;
    margin-top: 8px;
}

@media screen and (max-width: 1250px) {
    .staff-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 760px) {
    .staff-features .staff-text {
        text-align: center;
    }
}

/****************** 診療案内 *********************/

/* 診療科目 */

#service {
    padding-top: 64px;
    padding-bottom: 50px;
}

#service h1, #service h2 {
    text-align: center;
}

.service-contents {
    padding: 0 18%;
}

@media screen and (max-width: 760px) {
    .service-contents {
        padding: 0 10%;
    }
}

.service-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5%;
}

@media screen and (max-width: 1250px) {
    .service-content {
        flex-direction: column;
        align-items: center;
        margin-top: 60px;
    }
}

.service-content img {
    margin-right: 5%;
}

@media screen and (max-width: 1250px) {
    .service-content img {
        width: 160px;
        height: 160px;
        margin-right: 0;
    }
}

@media screen and (max-width: 760px) {
    .service-content img {
        margin-bottom: 20px;
    }
}

.service-text h3 {
    color: #2B7BB1;
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 5px;
    padding-left: 15px;
}

.service-border {
    position: relative;
}

.s-b-01 {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 3px;
    background-color: #95BDD8;
}

.s-b-02 {
    z-index: 1;
    position: absolute;
    width: 100%;
    top: 2px;
    left: 0;
    border-bottom: solid 1px #93939333;
}

.service-text p {
    margin-top: 20px;
    padding: 0 15px;
}

.service-square {
    display: inline-block;
    background-color: #F4FAFF;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
}

.service-square p {
    color: #2B7BB1;
    margin-top: 0;
    margin-bottom: 1px;
    padding: 0;
}

/* 診察時間 */

#time {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #F9F9F9;
}

#time h1, #time h2 {
    text-align: center;
}

.time-contents {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1250px){
    .time-contents {
        flex-direction: column;
        align-items: center;
        padding: 0 15%;
    }
}

@media screen and (max-width: 760px){
    .time-contents {
        padding: 0 8%;
    }
}

.time-img {
    margin-right: 2%;
    object-fit: contain;
}

@media screen and (max-width: 1250px) {
    .time-img {
        width: 60%;
        margin-right: 0;
    }
}

@media screen and (max-width: 760px) {
    .time-img {
        width: 70%;
    }
}

.time-text {
    margin-left: 3%;
}

@media screen and (max-width: 1250px) {
    .time-text {
        margin-top: 25px;
        margin-bottom: 20px;
    }
}

.time-text01 p {
    margin-top: 0;
    margin-bottom: 5px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.time-text01-title {
    display: inline-block;
    background-color: #2B7BB1;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    padding: 3px 15px;
    margin-right: 10px;
}

.time-text02 {
    margin-top: 2%;
    margin-bottom: 5%;
}

.time-text02 p {
    margin: 0;
    font-size: 15px;
}

.timetable-service {
    width: 90%;
    margin-left: 3%;
}

@media screen and (max-width: 1250px) {
    .timetable-service {
        width: 100%;
        object-fit: contain;
        margin-left: 0;
    }
}

@media screen and (max-width: 760px) {
    .timetable-service {
        width: 100%;
    }
}

/* 予約方法 */

#reservation {
    padding-top: 64px;
    padding-bottom: 150px;
    background-color: #F4FAFF;
}

@media screen and (max-width: 760px) {
    #reservation {
        padding-bottom: 100px;
    }
}

#reservation h1, #reservation h2 {
    text-align: center;
}

.reservation-contents {
    padding: 0 10%;
}

.reservation-content {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px 40px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1250px) {
    .reservation-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 760px) {
    .reservation-content {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.reservation-text01 {
    display: flex;
}

@media screen and (max-width: 1250px) {
    .reservation-text01 {
        flex-direction: column;
        align-items: center;
    }
}

.reservation-text01 h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 1250px) {
    .reservation-text01 h3 {
        margin-left: -20px;
    }
}

.reservation-number {
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    background-color: #2B7BB1;
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 50%;
    padding-top: 4px;
    margin-right: 12px;
}

.reservation-text-web {
    margin-left: 100px;
}

@media screen and (max-width: 1250px){
    .reservation-text-web {
        margin-left: 0;
        margin-top: 10px;
    }
}

.reservation-text-web p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    color: #2B7BB1;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0;
}

@media screen and (max-width: 1250px) {
    .reservation-text-web p {
        margin-left: 6px;
    }
}

.reservation-text-web-line {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 26px;
    font-weight: 300;
    margin-right: 5px;
}

.reservation-text-web a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    background: linear-gradient(180deg, #87BEE4, #2B7BB1);
    color: #FFFFFF;
    border-radius: 13px;
    box-shadow: 0 4px 2px #3838384D;
    width: 180px;
    padding: 10px 30px;
    transform: all 0.1s;
}

@media (hover:hover) {
    .reservation-text-web a:hover {
        transform: translateY(2px);
        box-shadow: none;
    }
}

@media (hover:none) {
    .reservation-text-web a:active {
        transform: translateY(2px);
        box-shadow: none;
    }
}

.reservation-text02 {
    width: 33%;
    border-left: solid 1px #D9D9D9;
    padding-left: 2%;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: auto;
}

@media screen and (max-width: 1250px) {
    .reservation-text02 {
        margin-left: 0;
        border-left: none;
        border-top: solid 1px #D9D9D9;
        width: 100%;
        margin-top: 30px;
        padding-left: 3%;
        padding-right: 3%;
    }
}

.reservation-text02 p {
    font-size: 15px;
    margin-bottom: 5px;
    margin-top: 5px;
    text-align: justify;
}

.reservation-text-tellephone {
    display: flex;
    margin-left: 80px;
    margin-top: 5px;
}

@media screen and (max-width: 1250px) {
    .reservation-text-tellephone {
        margin-left: 0;
        margin-top: 20px;
    }
}

.reservation-text-tellephone img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    margin-top: 5px;
}

.reservation-text-tellephone p {
    font-size: 32px;
    color: #2B7BB1;
    letter-spacing: 0.05em;
    margin: 0;
}

/***************** さわやかブログ（一覧ページ） ******************/

.blog-archive {
    padding-top: 30px;
    padding-bottom: 150px;
}

.blog-contents {
    padding: 0 20%;
}

@media screen and (max-width: 760px) {
    .blog-contents {
        padding: 0 10%;
    }
}

.blog-content {
    position: relative;
    display: flex;
    padding: 7% 10px;
    margin-bottom: 0;
}

@media screen and (max-width: 1250px) {
    .blog-content {
        flex-direction: column;
    }
}

.blog-content img {
    width: 328px;
    height: 223px;
    border-radius: 20px;
    object-fit: cover;
}

@media screen and (max-width: 1250px) {
    .blog-content img {
        width: 100%;
        margin-bottom: 10px;
    }
}

.blog-text {
    margin-left: 5%;
    padding-bottom: 20px;
}

@media screen and (max-width: 1250px) {
    .blog-text {
        margin-left: 0;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 30px;
    }
}

.tag {
    display: inline-block;
    margin: 0;
    background-color: #F4FAFF;
    color: #2B7BB1;
    font-size: 14px;
    padding: 3px 14px;
    border-radius: 10px;
}

.blog-text h1 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 20px;
    text-align: justify;
}

@media screen and (max-width: 1250px) {
    .blog-text h1 {
        font-size: 20px;
        line-height: 1.8;
    }
}

.blog-text p {
    margin: 0;
    text-align: justify;
}

.blog-text .date {
    position: absolute;
    right: 10px;
    bottom: 20px;
}

.blog-content a:hover {
    opacity: 0.7;
}

/************** ブログ記事 *****************/

.blog-article {
    padding: 64px 20% 150px 20%;
}

@media screen and (max-width: 1250px) {
    .blog-article {
        padding-left: 10%;
        padding-right: 10%;
    }
}

.blog-article h1 {
    font-size: 30px;
    font-weight: 500;
}

@media screen and (max-width: 1250px) {
    .blog-article h1 {
        font-size: 26px;
    }
}

.blog-article .date {
    width: fit-content;
    margin-left: auto;
}

.blog-article-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 10px;
}

@media screen and (max-width: 760px) {
    .blog-article img {
        max-height: 200px;
    }
}

.blog-article-text {
    margin-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.wp-block-heading {
    color: #2B7BB1;
    letter-spacing: 0.05em;
}

/**************** NEWS（一覧ページ） *******************/

.news-archive {
    padding: 10px 15% 150px 15%;
}

@media screen and (max-width: 760px) {
    .news-archive {
        padding-top: 0;
        padding-left: 10%;
        padding-right: 10%;
    }
}

.news-archive-content {
    margin: 30px 0;
    padding: 0 10px;
}

.news-archive-content h1 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
}

@media screen and (max-width: 1250px) {
    .news-archive-content h1 {
        font-size: 20px;
    }
}

.news-archive-content .date {
    margin: 8px 0;
    padding-left: 5px;
}

/**************** 予約ページ ******************/

.reservation-page .inner-link-bar {
    background-color: #C3D7E5;
}

.reservation-form-container .sub-title, .reservation-form-container .main-title {
    text-align: center;
}

.reservation-form-container {
    padding: 20px 15% 100px 15%;
    background-color: #C3D7E5;
}

@media screen and (max-width: 760px)  {
    .reservation-form-container {
        padding: 15px 7% 100px 7%;
        background-color: #C3D7E5;
    }
}

.reservation-form {
    padding: 25px 8%;
    border-radius: 60px;
    background-color: #FFFFFF;
}

@media screen and (max-width: 760px)  {
    .reservation-form {
        padding: 15px 7%;
        border-radius: 30px;
    }
}

@media screen and (max-width: 760px) {
    .reservation-form h3 {
        font-size: 15px;
    }

    .reservation-form p {
        font-size: 14px;
    }
}

/* プラグインの追加CSS */
#booking-package_inputFormPanel .bottomBarPanel {
    display: flex;
    justify-content: center;
}

/****************** お問い合わせ *******************/

/* プラグインの追加CSS */

.required-contact {
    display: inline-block;
    font-size: 12px;
    background-color: #2B7BB1;
    color: #FFFFFF;
    padding: 2px 8px;
    margin-left: 10px;
}

.contact-textarea01 {
    width: 40%;
    height: 40px;
    border: solid 1px #939393;
    border-radius: 5px;
    margin-top: 5px;
}

@media screen and (max-width: 1250px)  {
    .contact-textarea01 {
        width: 50%;
    }
}

@media screen and (max-width: 760px)  {
    .contact-textarea01 {
        width: 90%;
    }
}

.contact-textarea02 {
    width: 90%;
    height: 200px;
    border: solid 1px #939393;
    border-radius: 5px;
    margin-top: 5px;
}

.wpcf7-submit {
    font-family: "oso-sans-variable", "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-weight: 500;
    width: 30%;
    height: 50px;
    border: none;
    border-radius: 50px;
    padding: auto;
    background: #2B7BB1;
    color: #FFFFFF;
}

@media screen and (max-width: 760px)  {
    .wpcf7-submit {
        width: 45%;
    }
}

.wpcf7-submit:hover {
    opacity: 0.7;
}

.contact-form {
    padding-left: 10%;
    padding-top: 10px;
}


/**************** 404ページ *******************/

.page404 .top-banner {
    background-image: url(img/404fv.png);
}

.page404-container {
    padding: 10px 15% 150px 15%;
}