/*[ FONT ]
///////////////////////////////////////////////////////////
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

@import url('https://fonts.googleapis.com/css?family=Courgette');

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,700');

@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Courgette-Regular;
    src: url('../fonts/courgette/Courgette-Regular.ttf');
}

@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-Light;
    src: url('../fonts/poppins/Poppins-Light.ttf');
}

@font-face {
    font-family: NotoSans-Regular;
    src: url('../fonts/notosans/NotoSans-Regular.ttf');
}



/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
}

/* ------------------------------------ */
/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
    --primary-color: #2f8c67;
    /*メインまたはアクセントカラー*/
    --primary-inverse-color: #fff;
    /*上のprimary-colorの対となる色*/

    --space-large: 8vw;
    /*主に余白の一括管理用。画面幅100%＝100vwです。*/
    --space-small: 2vw;
    /*主に余白の一括管理用。画面幅100%＝100vwです。*/
}

/*---------------------------------------------------------------------------*/
a {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2f8c67;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #ff9900;
}

/* ------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

h3 {
    font-size: 24px;
}

p {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
    color: #393939;
    margin-bottom: 0.5em;
}

ul,
li {
    margin: 0px;
    list-style-type: none;
}

table p {
    font-size: 16px;
}

/* ------------------------------------ */
/*input {
    outline: none;
    border: none !important;
}*/

textarea {
    outline: none;
}

textarea:focus,
input:focus {
    border-color: transparent !important;
    box-shadow: 0 0 0px 2px #ec1d25;
    -moz-box-shadow: 0 0 0px 2px #ec1d25;
    -webkit-box-shadow: 0 0 0px 2px #ec1d25;
    -o-box-shadow: 0 0 0px 2px #ec1d25;
    -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder {
    color: #aaaaaa;
}

input:-moz-placeholder {
    color: #aaaaaa;
}

input::-moz-placeholder {
    color: #aaaaaa;
}

input:-ms-input-placeholder {
    color: #aaaaaa;
}

textarea::-webkit-input-placeholder {
    color: #aaaaaa;
}

textarea:-moz-placeholder {
    color: #aaaaaa;
}

textarea::-moz-placeholder {
    color: #aaaaaa;
}

textarea:-ms-input-placeholder {
    color: #aaaaaa;
}

/* ------------------------------------ */
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}


/* ------------------------------------ */
.container {
    max-width: 1200px;
}

.slick-slide {
    outline: none !important;
}

/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/

.animsition-loading-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cp-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    box-sizing: border-box;
    position: relative
}

.cp-meter {
    border-radius: 50%;
    border-top: solid 6px #2f8c67;
    border-right: solid 6px #2f8c67;
    border-bottom: solid 6px #2f8c67;
    border-left: solid 6px #2f8c67;
    width: 48px;
    height: 48px;
    display: inline-block;
    box-sizing: border-box
}

.cp-meter:before {
    border-radius: 3px;
    content: " ";
    width: 6px;
    height: 12px;
    display: inline-block;
    box-sizing: border-box;
    background-color: #ec1d25;
    position: absolute;
    top: 5px;
    left: 16px;
    transform-origin: center bottom;
    animation: cp-meter-animate-before 1s linear infinite
}

@keyframes cp-meter-animate-before {
    0% {
        transform: rotate(-45deg)
    }

    100% {
        transform: rotate(315deg)
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    background-color: #2f8c67;
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 4%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
    font-size: 22px;
    color: white;
    line-height: 1em;
}

.btn-back-to-top:hover {
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 576px) {
    .btn-back-to-top {
        bottom: 75px;
        right: 15px;
    }
}

/*[ Select2 ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

/*[ width select ]
===========================================================*/
.select2-container {
    display: block;
    max-width: 100%;
    width: auto !important;
}

/*[ Select ]
===========================================================*/
.select2-container .select2-selection--single {
    display: flex;
    align-items: center;
    background-color: white;
    border: 0px solid transparent;
    border-radius: 10px !important;
    height: 46px;
    outline: none;
}

.select2-container--focus {
    border-radius: 10px;
    box-shadow: 0 0 0px 2px #ec1d25;
    -moz-box-shadow: 0 0 0px 2px #ec1d25;
    -webkit-box-shadow: 0 0 0px 2px #ec1d25;
    -o-box-shadow: 0 0 0px 2px #ec1d25;
    -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--focus .select2-selection--single {
    border-color: transparent;
}

.select2-container--below.select2-container--open {
    border-radius: 10px;
    box-shadow: 0 0 0px 2px #ec1d25;
    -moz-box-shadow: 0 0 0px 2px #ec1d25;
    -webkit-box-shadow: 0 0 0px 2px #ec1d25;
    -o-box-shadow: 0 0 0px 2px #ec1d25;
    -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--below.select2-container--open .select2-selection--single {
    border-color: transparent;
}

.select2-container--above.select2-container--open {
    border-radius: 10px;
    box-shadow: 0 0 0px 2px #ec1d25;
    -moz-box-shadow: 0 0 0px 2px #ec1d25;
    -webkit-box-shadow: 0 0 0px 2px #ec1d25;
    -o-box-shadow: 0 0 0px 2px #ec1d25;
    -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--above.select2-container--open .select2-selection--single {
    border-color: transparent;
}


/*[ in select ]
===========================================================*/
.select2-selection__rendered {
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    color: #666666 !important;
    padding-left: 20px !important;
}

.select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 12px !important;
}


/*[ dropdown option ]
===========================================================*/
.select2-dropdown {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
    margin-top: 7px;
}

.select2-dropdown--above {
    top: -2px;
}

.select2-dropdown--below {
    top: 2px;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #ec1d25;
    color: #fff;
}

.select2-results__options {
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    color: #666666 !important;
}


.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa !important;
    outline: none;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

.select2-search--dropdown .select2-search__field:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
}



/*[ Header ]
///////////////////////////////////////////////////////////
*/

.wrap-menu-header {
    /*position: absolute;*/
    position: fixed;
    width: 100%;
    /*height: 120px;*/
    height: 100px;
    top: 0;
    left: 0;
    z-index: 100;
    /*border-top: 5px solid #ec1d25;*/
}

@media (max-width: 992px) {
    .wrap-menu-header {
        height: 85px;
    }
}

.wrap_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
}

.header-fixed .wrap-menu-header {
    position: fixed;
    height: 100px;
    background: #fff;
    /*rgba(255, 255, 255, 0.9);*/
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/*[ Logo ]
-----------------------------------------------------------
*/
/*.logo {
    height: 50px;
}*/

.logo > a {
    display: block;
    height: 100%;
}

.logo > a > img {
    /*width: auto;
    max-height: 100%;*/
    width: 280px;
    vertical-align: middle;
}

@media (min-width: 576px) {
    .logo > a > img {
        width: 320px;
    }
}

.logo-sub > a {
    display: block;
    height: 100%;
    padding: 0 13px;
}

.logo-sub > a > img {
    /*width: auto;
    max-height: 100%;*/
    max-width: 210px;
    vertical-align: middle;
}


/*[ Menu ]
-----------------------------------------------------------
*/
.wrap_menu {
    height: 100%;
}

.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu li {
    display: block;
    position: relative;
}

.main_menu > li {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.main_menu > li > a {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    padding: 11px;
}

.header-fixed .main_menu > li > a {
    color: #222222;
}

.main_menu > li:hover > a {
    color: #2f8c67;
    text-decoration: none;
}

/* ------------------------------------ */
.sub_menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 225px;
    background-color: white;

    transform-origin: top left;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);

    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.34;
}

.main_menu > li > .sub_menu {
    top: 100%;
    left: 0;
    position: absolute;
}

.main_menu > li:hover .sub_menu {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.sub_menu li:hover > .sub_menu {
    display: block;
}

.sub_menu li {
    background-color: #f2f2f2;
    border-top: 1px solid #e0e0e0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li:hover {
    background-color: white;
}

.sub_menu li,
.sub_menu a {
    padding: 10px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    color: #808080;
}

.sub_menu > li:hover > a {
    color: #555555;
    text-decoration: none;
}


/*[ Social ]
-----------------------------------------------------------
*/
.social a {
    font-size: 15px;
    color: white;
}

.header-fixed .social a {
    color: #222222;
}

.social a:hover {
    color: #2f8c67;
}

.btn-show-sidebar {
    margin: 0;
    padding: 24px 0 0 0;
    width: 50px;
    height: 50px;
    border: none;
    background: url(../images/hamburger.png) no-repeat center top 10px #2f8c67;
    background-size: 20px auto;
    font-size: 10px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
}

@media (min-width: 1225px) {
    .btn-show-sidebar {
        display: none;
    }
}

.header-fixed .btn-show-sidebar {
    border-top: 2px solid #2f8c67;
    border-bottom: 2px solid #2f8c67;
}

.btn-show-sidebar:hover {
    border-top: 2px solid #2f8c67;
    border-bottom: 2px solid #2f8c67;
}

@media (max-width: 1200px) {
    .main_menu > li {
        margin-left: 4px;
        margin-right: 4px;
    }

    .social {
        padding-right: 0px;
    }

    /*.logo {
        height: 45px;
    }*/
}

@media (max-width: 1224px) {
    .wrap_menu {
        display: none;
    }

    .wrap_header {
        vertical-align: middle;
    }
}




/*[ Sidebar ]
///////////////////////////////////////////////////////////
*/
.sidebar {
    position: fixed;
    z-index: 1200;
    width: 300px;
    height: 100%;
    overflow: auto;
    background-image: url(../images/bg_image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    right: -390px;
    /*上下方向にはみ出した要素ををスクロールさせる*/
    overflow-y: scroll;
    /*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;
    /*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

@media (max-width: 576px) {
    .sidebar {
        width: 300px;
    }
}

.show-sidebar {
    right: 0px;
}

.btn-hide-sidebar {
    position: absolute;
    font-size: 20px;
    color: #111111;
    padding: 10px;
    top: 20px;
    right: 20px;
}

.overlay-sidebar {
    position: fixed;
    z-index: 1150;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
}

.show-overlay-sidebar {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.65);
}

/* ------------------------------------ */
.item-gallery-sidebar {
    display: block;
    position: relative;
    width: calc((100% - 30px) / 3);
    margin: 5px;
}

.item-gallery-sidebar::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.item-gallery-sidebar:hover:after {
    background-color: rgba(74, 213, 158, 0.7);
}

@media (max-width: 576px) {
    .wrap_header {
        vertical-align: middle;
    }

    .gallery-sidebar {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =========================================================
   Sidebar Accordion (診療案内子メニュー用)
========================================================= */
/* 標準の三角形マークを消去（Chrome, Safari, Firefox対応） */
.sidebar-accordion summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    outline: none;
    display: block;
}

.sidebar-accordion summary::-webkit-details-marker {
    display: none;
}

/* 開閉用の矢印（＋ ／ －）を右側に追加 */
.sidebar-accordion summary::after {
    content: '+';
    position: absolute;
    right: 60px;
    /* 右側の余白調整 */
    font-weight: bold;
    font-size: 18px;
    color: #2f8c67;
}

.sidebar-accordion[open] summary::after {
    content: '−';
}

/* 子メニュー（ドロップダウン内）のスタイリング */
.sidebar-submenu {
    list-style: none;
    padding-left: 15px;
    /* 子メニューのインデント */
    margin-top: 8px;
    margin-bottom: 5px;
}

.sidebar-submenu li {
    margin-bottom: 10px;
}

.sidebar-submenu li a {
    font-size: 18px;
    color: #222222;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.sidebar-submenu li a:hover {
    color: #2f8c67;
    /* ホバー時の色 */
}

/* メニューの各項目に下線を引く */
.menu-sidebar > li:not(:first-child) {
    border-bottom: 1px solid #e0e0e0;
    /* 線の太さ・種類・色 */
    padding-bottom: 13px;
    /* 線と文字の間の余白 */
    padding-right: 60px;
    /* 右側の余白を揃える */
}

/* 子メニューの各項目に下線を引く */
.sidebar-submenu li {
    border-bottom: 1px dotted #cccccc;
    /* 点線で上品に区切る場合（実線なら solid に変更） */
    padding-bottom: 8px;
    margin-bottom: 8px;
}

/* 子メニューの最後の項目だけ下線を消す */
.sidebar-submenu li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1,
.wrap-slick2,
.wrap-slick3 {
    position: relative;
}

.item-slick1,
.item-slick2,
.item-slick3 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.item-slick1 {
    height: 85vh;
}

.arrow-slick1,
.arrow-slick2,
.arrow-slick3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 18px;
    color: white;
    position: absolute;
    background-color: black;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 200;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1,
.wrap-slick2:hover .arrow-slick2,
.wrap-slick3:hover .arrow-slick3 {
    opacity: 0.5;
}

.arrow-slick1:hover,
.arrow-slick2:hover,
.arrow-slick3:hover {
    background-color: #2f8c67;
}

.next-slick1,
.next-slick2,
.next-slick3 {
    right: 50px;
    left: auto;
}

.prev-slick1,
.prev-slick2,
.prev-slick3 {
    left: 50px;
    right: auto;
}

@media (max-width: 576px) {
    .next-slick1 {
        right: 15px;
    }

    .prev-slick1 {
        left: 15px;
    }
}

/* ------------------------------------ */
.wrap-slick1-dots {
    position: absolute;
    width: 100%;
    height: 65px;
    left: 0;
    bottom: 0;
}

.slick1-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slick1-dots li {
    padding-left: 3px;
    padding-right: 3px;
}

.slick1-dots li button {
    display: block;
    color: transparent;
    background-color: #958e88;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    background-clip: padding-box;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


.slick1-dots li button:hover {
    border: 3px solid white;
    background-color: #2f8c67;
}

.slick1-dots li.slick-active button {
    border: 3px solid white;
    background-color: #2f8c67;
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 768px) {
    .wrap-content-slide1 .tit1 {
        font-size: px;
    }

    .wrap-content-slide1 .txt1 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .wrap-content-slide1 .tit1 {
        font-size: 30px;
    }

    .wrap-content-slide1 .txt1 {
        font-size: 40px;
    }
}


/*[ Button1 ]
///////////////////////////////////////////////////////////
*/
.button1 a {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    /* Flexboxを有効化 */
    align-items: center;
    /* 上下中央揃え */
    justify-content: center;
    /* 左右中央揃え */
    gap: 15px;
    /* ★矢印と文字の間の余白を15pxに固定（これで絶対被りません） */
    max-width: 280px;
    width: 100%;
    /* スマホ画面からはみ出さないように */
    background: #ff9900;
    /* ★緑色 */

    padding: 15px 20px;
    /* 左右のパディングを少し内側に調整 */
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", 'メイリオ', 'Meiryo', "ＭＳ Ｐゴシック", sans-serif;
    font-weight: bold;
    outline: none;
    transition: ease .2s;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* 文字の色（オレンジ） */
.button1 a span {
    position: relative;
    z-index: 3;
    color: #fff;
}

/* 背景がオレンジに染まるホバー演出 */
.bgleft:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #2f8c67;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.bgleft:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
}

/* ホバー時に文字を白に変化 */
.button1 a:hover span {
    color: #fff;
}

/* ボタンを中央寄せさせる場合 */
.button-center {
    display: flex;
    justify-content: center;
}

/* spのみボタンを中央寄せさせる場合 */
@media screen and (max-width: 768px) {
    .button-center-sp {
        display: flex;
        justify-content: center;
    }
}

/* ==========================================================
   レスポンシブ対応・矢印コード
   ========================================================== */

/* 矢印を包む白丸（position: absolute をやめ、通常の要素として配置） */
.arrow-icon {
    position: relative;
    /* ★ absolute から変更 */
    z-index: 4;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    /* ★画面が縮んでも丸が潰れないように固定 */
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all .3s ease;
}

/* 丸の中の矢印（直線） */
.arrow-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    width: 13px;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    transition: all .3s ease;
}

/* 丸の中の矢印（先端の＞） */
.arrow-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: all .3s ease;
}

/* ----------------------------------------------------------
   ホバー時の動き（矢印全体が右に小さくピョコッと動く）
   ---------------------------------------------------------- */

/* ホバー時に矢印を少しだけ右に移動 */
.button1 a:hover .arrow-icon {
    transform: translateX(4px);
}

/* 背景オレンジに伴う、矢印の白変化 */
.button1 a:hover .arrow-icon {
    border-color: #fff;
}

.button1 a:hover .arrow-icon::before {
    background-color: #fff;
}

.button1 a:hover .arrow-icon::after {
    border-top-color: #fff;
    border-right-color: #fff;
}

/*[ Button_maxwidth ]
///////////////////////////////////////////////////////////
*/
.button2 a {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    text-decoration: none;
    display: block;
    max-width: 100%;
    background: #2f8c67;
    margin: auto;
    padding: 10px 30px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", 'メイリオ', 'Meiryo', "ＭＳ Ｐゴシック", sans-serif;
    text-align: center;
    line-height: 1.8;
    text-decoration: none;
    outline: none;
    transition: ease .2s;
    border: solid 2px #2f8c67;
}

.button2 a span {
    position: relative;
    z-index: 3;
    color: #fff;
}

.button2 a:hover span {
    color: #fff;
}

/*[ Intro ]
///////////////////////////////////////////////////////////
*/
.header-intro {
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}

/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/

.arrow-slick2 {
    top: 53%;
}


@media (max-width: 576px) {
    .next-slick2 {
        right: 15px;
    }

    .prev-slick2 {
        left: 15px;
    }
}

/* ------------------------------------ */
.wrap-slick2-dots {
    position: absolute;
    width: 100%;
    height: 128px;
    left: 0;
    bottom: 0;
}

.slick2-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slick2-dots li {
    padding-left: 5px;
    padding-right: 5px;
}

.slick2-dots li button {
    display: block;
    color: transparent;
    background-color: #cccccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid transparent;
    background-clip: padding-box;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


.slick2-dots li button:hover {
    border: 1px solid #2f8c67;
    background-color: #2f8c67;
}

.slick2-dots li.slick-active button {
    border: 1px solid #2f8c67;
    background-color: #2f8c67;
}


/*[ Slide3 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick3 ]
-----------------------------------------------------------
*/
.arrow-slick3 {
    top: 40%;
}


@media (max-width: 576px) {
    .next-slick3 {
        right: 15px;
    }

    .prev-slick3 {
        left: 15px;
    }
}

/* ------------------------------------ */
.wrap-slick3-dots {
    width: 100%;
    height: 128px;
}

.slick3-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slick3-dots li {
    padding-left: 5px;
    padding-right: 5px;
}

.slick3-dots li button {
    display: block;
    color: transparent;
    background-color: #cccccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid transparent;
    background-clip: padding-box;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


.slick3-dots li button:hover {
    border: 1px solid #d41b22;
    background-color: #d41b22;
}

.slick3-dots li.slick-active button {
    border: 1px solid #d41b22;
    background-color: #d41b22;
}

/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.blo2 {
    border-radius: 10px;
    overflow: hidden;
}

.wrap-pic-blo2 {
    display: block;
    width: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrap-text-blo2 {
    background-color: white;
    width: 50%;
    min-height: 390px;
}

/* ------------------------------------ */
.effect1 {
    background-color: #cf2227;
    opacity: 0.9;
    position: relative;
}

.effect1 .txt-effect1 {
    width: 390px;
    height: 50px;
    transform-origin: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotateZ(90deg);
    -moz-transform: translate(-50%, -50%) rotateZ(90deg);
    -ms-transform: translate(-50%, -50%) rotateZ(90deg);
    -o-transform: translate(-50%, -50%) rotateZ(90deg);
    transform: translate(-50%, -50%) rotateZ(90deg);
}

@media (max-width: 992px) {
    .blo2 {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .wrap-pic-blo2 {
        width: 100%;
        height: 390px;
    }

    .wrap-text-blo2 {
        width: 100%;
        min-height: 390px;
    }

    .time-event {
        width: 100%;
        height: auto;
    }

    .effect1 .txt-effect1 {
        width: 100%;
        height: 50px;
        padding: 10px;
        transform-origin: center center;
        position: unset;
        -webkit-transform: rotateZ(0deg);
        -moz-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
}

@media (max-width: 576px) {
    .blo2 {
        width: 100%;
    }

    .wrap-pic-blo2 {
        width: 100%;
        height: 364px;
    }

}

/*[ fixed-bg ]
///////////////////////////////////////////////////////////
*/
@media (min-width: 769px) {
    .section-fixedbg {
        background-attachment: fixed;
        background-position: center 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../images/intro_bg.jpg);
    }
}

.content-fixedbg {
    background-color: rgba(0, 0, 0, 0.5);
}

.content-fixedbg p {
    color: #fff;
    margin-top: 50px;
}


@media (max-width: 768px) {
    .section-fixedbg {
        background-position: center 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../images/intro_bg.jpg);
    }
}

/*[ txtbg ]
///////////////////////////////////////////////////////////
*/
.section-txtbg {
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-txtbg {
    background-color: rgba(0, 0, 0, 0.5);
}

.content-txtbg p {
    color: #fff;
    margin-top: 50px;
    text-align: center;
}

/*[ footer-tel ]
///////////////////////////////////////////////////////////
*/
.footertel a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #212529;
}

/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
    width: 100%;
    min-height: 315px;
    padding-left: 15px;
    padding-right: 15px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
}

@media (max-width: 576px) {
    .bg-title-page .tit6 {
        font-size: 30px;
    }
}



/*[ Item mainmenu ]
///////////////////////////////////////////////////////////
*/

.line-item-mainmenu {
    flex-grow: 1;
    height: 2px;
    margin-bottom: 5px;
    margin-right: 10px;
    margin-left: 10px;
}

@media (max-width: 576px) {
    .line-item-mainmenu {
        display: none;
    }

    .price-item-mainmenu {
        padding-top: 5px;
    }

    .name-item-mainmenu {
        width: 100%;
    }
}


/*[ Block3 ]
///////////////////////////////////////////////////////////
*/

@media (max-width: 576px) {
    .text-blo3 {
        width: 100%;
    }
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.item-pagination {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    color: #808080;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    margin: 6px;
}

.item-pagination:hover {
    background-color: #333333;
    color: white;
}

.active-pagination {
    background-color: #333333;
    color: white;
}

/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.date-blo4 {
    width: 75px;
    height: 82px;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 10px;
    background-color: #ec1d25;
}

/* clinic-profile
------------------------------------------------------------*/
.clinicp table th {
    color: #2f8c67;
    font-weight: bold;
    /*text-align: center;
    vertical-align: middle;*/
    width: 25%;
}

.clinicp table th,
.clinicp table td {
    border: 1px solid #ccc;
    background: #fff;
}

/* -----------------------------------------------------------
	news
----------------------------------------------------------- */
.newscontainer {
    width: 100%;
    background-color: #F9F9F9;
    position: relative;
    padding: 20px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 25%);
    border-radius: 0.5rem;
}

.ttl {
    font-size: 150%;
    font-weight: bold;
    color: #ff9900;
    padding: 1px 0;
    border-bottom: solid 1px #2f8c67;
}

.topics {
    margin: 10px 0 0;
}

.topics dl {
    padding: 1px 0;
}

.topics dt {
    padding-bottom: 5px;
    font-weight: normal;
}

.underl {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .topics dt {
        clear: left;
        float: left;
        width: 20%;
        font-weight: normal;
        /*padding-left: 10px;*/
    }

    .topics dd {
        margin-left: 11%;
    }


    .newscontainer {
        width: 100%;
        margin: 0px 0 15px;
        padding: 20px;
        border-radius: 0.5rem;
    }
}

/* -----------------------------------------------------------
	blog
----------------------------------------------------------- */
.blogcontainer {
    width: 100%;
    background-color: #fff;
    position: relative;
    margin: 10px 0 10px;
    padding: 10px;
    /*border-radius: 0.5rem;*/
    border: 2px solid #2f8c67;
}

@media screen and (min-width: 768px) {
    .blogcontainer {
        width: 100%;
        margin: 10px 0 10px;
        padding: 20px;
        /*border-radius: 0.5rem;*/
    }
}

.ttl2 {
    font-size: 150%;
    font-weight: 400;
    color: #2f8c67;
    padding: 1px 0;
    border-bottom: solid 1px #ff9900;
}

/* 左画像section
------------------------------------------------------------*/
/* container */
.wrapper2 {
    width: 100%;
    background-color: #fafafa;
}

.wrapper2 .container {
    max-width: 1200px;
    margin: 0px auto;
    /*padding: 0px 0px;*/
    padding-right: 15px;
    padding-left: 15px;
}

/* content */
@media (min-width: 992px) {
    .wrapper2 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wrapper2 .container2 .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.wrapper2 .content-item {
    width: 100%;
}

.wrapper2 .content-item2 {
    width: 100%;
    background: #fff;
}

@media (min-width: 992px) {
    .wrapper2 .content-item {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .wrapper2 .content-item2 {
        width: 60%;
    }
}

.wrapper2 .image {
    display: block;
    max-width: 100%;
    margin: 0px auto;
}

@media screen and (min-width: 992px) {
    .wrapper2 .text {
        padding: 0 50px;
    }
}

.wrapper2 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.wrapper2 .text .heading2 {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.wrapper2 .text .heading2:before {
    content: '';
    /* 空白の要素*/
    width: 0;
    /* 幅指定 */
    height: 0;
    /* 高さ指定 */
    border-style: solid;
    /* 三角*/
    border-width: 0px 0 110px 80px;
    /* 三角*/
    border-color: transparent transparent #7afdd3 transparent;
    /* 三角 */
    position: absolute;
    /* 位置調整 */
    z-index: -1;
    /* 重なり調整 */
    transform: rotate(30deg);
    /* 回転 */
    top: -55px;
    /* 位置調整 */
}

/* container */
.wrapper3 {
    width: 100%;
    background-color: #fafafa;
}

.wrapper3 .container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 15px;
}

.wrapper3 .container2 {
    max-width: 1140px;
    margin: 0px auto;
    padding: 0px 0px;
}

/* content */
@media (min-width: 992px) {
    .wrapper3 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wrapper3 .container2 .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.wrapper3 .content-item {
    width: 100%;
}

@media (min-width: 992px) {
    .wrapper3 .content-item {
        width: 50%;
    }

    .content-item2 {
        width: 50%;
        margin: 100px 0 0 -100px;
        background-color: #ffffffb3;
        padding: 50px;
        box-shadow: 3px 3px 3px rgb(0 0 0 / 25%);
        z-index: 1;
    }
}

.wrapper3 .image {
    display: block;
    max-width: 100%;
    margin: 0px auto;
}

.wrapper3 .text {
    padding: 0 15px;
}

.wrapper3 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.wrapper3 .text .heading2 {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #8b5151;
}

/* container */
.wrapper4 {
    width: 100%;
    background-color: #fafafa;
}

.wrapper4 .container {
    max-width: 1200px;
    margin: 0px auto;
    /*padding: 0px 0px;*/
    padding-right: 15px;
    padding-left: 15px;
}

/* content */
@media (min-width: 992px) {
    .wrapper4 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
    }

    .wrapper4 .container2 .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.wrapper4 .content-item {
    width: 100%;
}

.wrapper4 .content-item2 {
    width: 100%;
    /*background-image: url(../images/greeting_txtbg.jpg);*/
    background: #fff;
}

@media (min-width: 992px) {
    .wrapper4 .content-item {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .wrapper4 .content-item2 {
        width: 60%;
    }
}

.wrapper4 .image {
    display: block;
    max-width: 100%;
    margin: 0px auto;
}

@media (min-width: 992px) {
    .wrapper4 .image {
        padding: 25px;
    }
}

.wrapper4 .text {
    padding: 0px;
    /*margin-bottom: 20px;*/
}

@media screen and (min-width: 992px) {
    .wrapper4 .text {
        padding: 0 25px;
    }
}

.wrapper4 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.wrapper4 .text .heading2 {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.wrapper4 .text .heading2:before {
    content: '';
    /* 空白の要素*/
    width: 0;
    /* 幅指定 */
    height: 0;
    /* 高さ指定 */
    border-style: solid;
    /* 三角*/
    border-width: 0px 0 110px 80px;
    /* 三角*/
    border-color: transparent transparent #7afdd3 transparent;
    /* 三角 */
    position: absolute;
    /* 位置調整 */
    z-index: -1;
    /* 重なり調整 */
    transform: rotate(30deg);
    /* 回転 */
    top: -55px;
    /* 位置調整 */
}

/* 左画像section company-contact
------------------------------------------------------------*/
/* container */
.wrapper4-2 {
    width: 100%;
    background-color: #fafafa;
}

.wrapper4-2 .container {
    max-width: 1200px;
    margin: 0px auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* content */
@media (min-width: 992px) {
    .wrapper4-2 .container .content {
        display: flex;
        /*align-items: center;
        justify-content: center;*/
    }

    .wrapper4-2 .container2 .content {
        display: flex;
        /*align-items: center;
        justify-content: center;*/
    }
}

.wrapper4-2 .content-item {
    width: 100%;
}

.wrapper4-2 .content-item2 {
    width: 100%;
    background-image: url(../images/greeting_txtbg.jpg);
}

@media (min-width: 992px) {
    .wrapper4-2 .content-item {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .wrapper4-2 .content-item2 {
        width: 50%;
    }
}

.wrapper4-2 .image {
    display: block;
    max-width: 100%;
    /*margin: 0px auto;*/
}

.wrapper4-2 .text {
    margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
    .wrapper4-2 .text {
        padding-left: 25px;
    }
}

.wrapper4-2 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.wrapper4-2 .text .heading2 {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.wrapper4-2 .text .heading2:before {
    content: '';
    /* 空白の要素*/
    width: 0;
    /* 幅指定 */
    height: 0;
    /* 高さ指定 */
    border-style: solid;
    /* 三角*/
    border-width: 0px 0 110px 80px;
    /* 三角*/
    border-color: transparent transparent #7afdd3 transparent;
    /* 三角 */
    position: absolute;
    /* 位置調整 */
    z-index: -1;
    /* 重なり調整 */
    transform: rotate(30deg);
    /* 回転 */
    top: -55px;
    /* 位置調整 */
}

/* 右画像section
------------------------------------------------------------*/
/* container */
.wrapper6 {
    width: 100%;
    background-color: #fafafa;
}

.wrapper6 .container {
    max-width: 1200px;
    margin: 0px auto;
    padding-right: 15px;
    padding-left: 15px;
}

.wrapper6 .container2 {
    max-width: 1140px;
    margin: 0px auto;
    padding: 0px 0px;
}

/* content */
@media (min-width: 992px) {
    .wrapper6 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ccc;
        background-color: #fff;
    }

    .wrapper6 .container2 .content {
        display: flex;
        /*align-items: center;
        justify-content: center;*/
    }
}

/* PC時のみ順番を入れ替える */
@media (min-width: 992px) {
    .wrapper6 .content {
        flex-direction: row-reverse;
    }
}

.wrapper6 .content-item {
    width: 100%;
}

@media (min-width: 992px) {
    .wrapper6 .content-item {
        width: 50%;
    }
}

.wrapper6 .image {
    display: block;
    max-width: 100%;
    margin: 0px auto;
}

@media (min-width: 992px) {
    .wrapper6 .image {
        padding: 25px;
    }
}

.wrapper6 .text {
    padding: 0px;
}

.wrapper6 .text2 {
    padding: 0 15px;
    margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
    .wrapper6 .text {
        padding: 0 25px;
    }
}

.wrapper6 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}


/* access左画像section
------------------------------------------------------------*/
/* container */
.wrapper5 {
    width: 100%;
}

.wrapper5 .container {
    max-width: 1920px;
    margin: 0px auto;
    padding: 0px 0px;
}

.wrapper5 .container2 {
    max-width: 1140px;
    margin: 0px auto;
    padding: 0px 0px;
}

/* content */
@media (min-width: 992px) {
    .wrapper5 .container .content {
        display: flex;
        /*align-items: center;
        justify-content: center;*/
    }

    .wrapper5 .container2 .content {
        display: flex;
        /*align-items: center;
        justify-content: center;*/
    }
}

.wrapper5 .content-item {
    width: 100%;
}

.wrapper5 .content-item2 {
    width: 100%;
}

@media (min-width: 992px) {
    .wrapper5 .content-item {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .wrapper5 .content-item2 {
        width: 50%;
    }
}

.wrapper5 .image {
    display: block;
    max-width: 100%;
    margin: 0px auto;
}

.wrapper5 .text {
    padding: 0 15px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .wrapper5 .text {
        padding: 0 100px;
    }
}

.wrapper5 .text .heading {
    margin: 40px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}


/* 画像背景section
------------------------------------------------------------*/
/* container */
.wrapperintrod {
    width: 100%;
    background-image: url(../images/top_introd_bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.wrapperintrod .container {
    max-width: 1000px;
    margin: 0px auto;
    padding: 80px 0px;
}

/* content */
.wrapperintrod .content .heading {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.wrapperintrod p {
    padding: 0 15px;
}

/* 画像boxshadow
------------------------------------------------------------*/
.wrap-pic-welcome {
    box-shadow: #2f8c67 25px 25px 1px;
}

/* --------------------------------------------------
   画像上透過フィルターテキスト
-------------------------------------------------- */
/* top */
.wrapper1 {
    width: 100%;
    background-image: url(../images/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /*margin-bottom: 10px;*/
    display: flex;
}

.wrapper1 .container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 80px 0px;
}

/* content */
.wrapper1 .content .heading {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.wrapper1 p {
    padding: 0 30px;
}

.bg-rgba {
    background-color: rgba(255, 255, 255, 0.8);
    height: auto;
    margin-right: 15px;
    margin-left: 15px;
    padding-bottom: 40px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    /* 縦方向中央揃え（Safari用） */
    align-items: center;
    /* 縦方向中央揃え */
    -webkit-justify-content: center;
    /* 横方向中央揃え（Safari用） */
    justify-content: center;
    /* 横方向中央揃え */
}

@media screen and (max-width: 767px) {
    .bg-rgba {
        height: 750px;
    }
}



/* --------------------------------------------------
   画像上透過フィルターテキスト
-------------------------------------------------- */
/* top */
.wrapper1-2 {
    width: 100%;
    background-image: url(../images/neurobg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 38px;
    display: flex;
}

.wrapper1-2 .container {
    max-width: 1000px;
    margin: 0px auto;
    padding: 80px 0px;
}

/* content */
.wrapper1-2 .content .heading {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.wrapper1-2 p {
    text-align: center;
    padding: 0 30px;
    color: #fff;
}

.bg-rgba-b {
    background-color: rgba(34, 180, 133, 0.4);
    width: 90%;
    height: 400px;
    margin: auto;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    /* 縦方向中央揃え（Safari用） */
    align-items: center;
    /* 縦方向中央揃え */
    -webkit-justify-content: center;
    /* 横方向中央揃え（Safari用） */
    justify-content: center;
    /* 横方向中央揃え */
}

/* daihyo-message
------------------------------------------------------------*/
.name {
    font-size: 20px;
    font-weight: bold;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    color: #212529;
}

.t-right {
    text-align: right;
}

/* sp-pc非表示
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .sp {
        display: none;
    }
}

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

@media screen and (min-width: 1452px) {
    .case-pc {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .case-pc {
        display: none;
    }
}

@media screen and (min-width: 1106px) {
    .top-reform-pc {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .top-reform-pc {
        display: none;
    }
}

/* sp-pc-text-left
------------------------------------------------------------*/
.sp-left {
    text-align: center;
}

@media screen and (max-width: 992px) {
    .sp-left {
        text-align: left;
    }
}

.pc-left {
    text-align: left;
}

@media screen and (max-width: 992px) {
    .pc-left {
        text-align: center;
    }
}

/* table
------------------------------------------------------------*/
.ptable {
    width: 100%;
    margin-bottom: 1rem;
    color: #666666;
    line-height: 1.8;
}

.ptable th {
    width: 120px;
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #d61c22;
    font-weight: normal;
}

.ptable td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #212529;
}

.ptable thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

/* 見出しテキスト
------------------------------------------------------------*/
.headingtitle {
    margin: 50px 0px 40px 0px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* 領域中央寄せ
------------------------------------------------------------*/
.center {
    margin: 0 auto;
}

/* infobox
------------------------------------------------------------*/
.infobox {
    padding: 2em 2em;
    margin: 0.5em 0 3em 0;
    border: 1px solid #2f8c67;
    background-color: #fff;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .infobox p {
        text-align: left;
        display: inline-block;
    }
}

.infonoutit {
    text-shadow: #fff 0px 0px 20px;
}

/* txtimagecolor
------------------------------------------------------------*/
.txtblue {
    color: #2f8c67;
}

.txtred {
    color: #ff0000;
}

/* scroll-effect
------------------------------------------------------------*/
.ef {
    visibility: hidden;
}

.is_visible {
    visibility: visible !important;
}

/* right-effect */
.ef1_1.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-name: ef1;
    animation-name: ef1;
}

.ef1_2.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-name: ef1;
    animation-name: ef1;
}

@-webkit-keyframes ef1 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes ef1 {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

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

/* up-effect */
.ef2_1.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-name: ef2;
    animation-name: ef2;
}

.ef2_2.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-name: ef2;
    animation-name: ef2;
}

@-webkit-keyframes ef2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes ef2 {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* left-effect */
.ef3_1.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-name: ef3;
    animation-name: ef3;
}

.ef3_2.is_visible {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-name: ef3;
    animation-name: ef3;
}

@-webkit-keyframes ef3 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes ef3 {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

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

/* img-max-width
------------------------------------------------------------*/
img {
    max-width: 100%;
    height: auto;
}

/* gazo-touka-banner
------------------------------------------------------------*/
.banner:hover {
    opacity: 0.7;
}

/* footer-nav
------------------------------------------------------------*/
@media only screen and (max-width: 992px) {
    .mobile-fix-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        display: block;
    }

    .mobile-fix-nav .mobile-fix-nav-menu {
        margin: 0 auto;
        box-sizing: border-box;
        height: 62px;
        /*padding: 12px 0 10px;*/
        overflow: hidden;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        z-index: 9999999999;
        /*opacity: .9;*/
    }

    .mobile-fix-nav .mobile-fix-nav-menu li {
        margin: 0;
        padding: 0;
        vertical-align: middle;
        list-style-type: none;
        font-size: 10px;
        line-height: 1.3;
    }

    .mobile-fix-nav .mobile-fix-nav-menu li .vk-mobile-nav-menu-btn,
    .mobile-fix-nav .mobile-fix-nav-menu li a {
        border: none;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .mobile-fix-nav .mobile-fix-nav-menu li .vk-mobile-nav-menu-btn .link-icon,
    .mobile-fix-nav .mobile-fix-nav-menu li a .link-icon {
        display: block;
        margin-bottom: 4px;
    }

    .mobile-fix-nav .mobile-fix-nav-menu li .vk-mobile-nav-menu-btn i,
    .mobile-fix-nav .mobile-fix-nav-menu li .vk-mobile-nav-menu-btn svg,
    .mobile-fix-nav .mobile-fix-nav-menu li a i,
    .mobile-fix-nav .mobile-fix-nav-menu li a svg {
        font-size: 22px;
        font-style: normal;
        margin-right: 0;
    }

    .fa-solid,
    .fas {
        font-weight: 900;
    }
}

.bnr-p {
    padding: 2px;
}

@media only screen and (min-width: 993px) {
    .left_bnr {
        z-index: 10;
        position: fixed;
        left: 0;
        top: 400px;
        background: rgba(255, 255, 255, 0.8);
        padding: 20px 0;
        width: 70px;
        text-align: center;
    }

    .left_bnr li + li {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .left_bnr {
        position: fixed;
        z-index: 10;
        bottom: 19vw;
        left: 15px;
    }

    .left_bnr ul {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    /*.left_bnr ul li:last-child{
    margin-left:20px;
  }*/
    .left_bnr ul li:nth-child(n+2) {
        margin-left: 20px;
    }

    .left_bnr img {
        width: 40px;
    }
}

.dash-ul {
    border-bottom: 1px dashed rgba(58, 129, 43, 0.5);
}

/* grid-layout
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .md4 {
        -ms-flex: 0 0 32.5%;
        flex: 0 0 32.5%;
        max-width: 32.5%;
    }
}

.md4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    /*padding-right: 15px;*/
    /*padding-left: 15px;*/
}

@media screen and (min-width: 768px) {
    .md4-50 {
        -ms-flex: 0 0 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media screen and (min-width: 768px) {
    .md6 {
        -ms-flex: 0 0 16%;
        flex: 0 0 16%;
        max-width: 16%;
        margin: 2px;
    }
}

@media screen and (max-width: 767px) {
    .md6 {
        position: relative;
        width: 33%;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 768px) {
    .md4-50 {
        -ms-flex: 0 0 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}


.module-grad {
    position: relative;
    margin-bottom: 25px;
}

/* obi
------------------------------------------------------------*/
.module-grad::before {
    width: 100%;
    height: 80px;
    background: url(../images/bg_green.jpg) repeat-x 0 center/100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-27px);
    z-index: -1
}

.module-grad-title {
    margin: 0 auto
}

.module-grad-title.is-difference {
    width: 510px;
    position: relative
}

/* bg-image
------------------------------------------------------------*/
.list_check {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.list_check > li {
    position: relative;
    padding: 0px 0px 0px 2em;
    margin: 0px;
    font-size: 20px;
    font-weight: bold;
}

.list_check > li::before,
.list_check > li::after {
    position: absolute;
    top: 50%;
    height: 1em;
    content: "";
}

.list_check > li::before {
    left: 0px;
    transform: translateY(-50%);
    width: 1em;
    border: 1px solid #2f8c67;
}

.list_check > li::after {
    left: 0.5em;
    transform: translateY(-75%) rotate(45deg);
    width: 0.5em;
    border-bottom: 3px solid #2f8c67;
    border-right: 3px solid #2f8c67;
}

.list_check > li + li {
    margin: 1em 0px 0px;
}

/* swiper-slide
------------------------------------------------------------*/
.wrapper {
    position: relative;
    /* ナビゲーション、ページネーションの位置決めに必要 */
    max-width: 1200px;
    /* サイトにあわせて任意で */
    margin: 0 auto;
}

/* ナビゲーションボタンとページネーションの位置 */
.wrapper {
    --swiper-navigation-sides-offset: -25px;
    /* ナビゲーションボタンの位置 */
    --swiper-pagination-bottom: -20px;
    /* ページネーションの位置 */
}

/* 矢印ボタン */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    /* 矢印幅 */
    height: 50px;
    /* 矢印高さ */
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 50px;
    /* 矢印幅 */
    height: 50px;
    /* 矢印高さ */
    fill: #000;
    /* 矢印の色 */
    stroke: #000;
    /* 外周円の色 */
    transition: 0.2s;
}

.swiper-button-next svg:hover,
.swiper-button-prev svg:hover {
    opacity: 0.7;
    /* ボタンホバー時 */
}

.swiper-button-prev svg {
    transform: rotate(180deg);
    /* ボタンを反転（prev用） */
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
    content: '';
    /* デフォルトの矢印を削除 */
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
    content: '';
    /* デフォルトの矢印を削除 */
}

.wrapper {
    --swiper-pagination-color: #000;
    /* ページネーション、アクティブ時のドットの色 */
}

/* accordion
------------------------------------------------------------*/
.a-toggle {
    display: none;
}

.a-Label {
    /*タイトル*/
    padding: 20px;
    display: block;
    color: #1c3f15;
    font-weight: bold;
    background: #ffffff;
    border: 2px solid #3a812b;
    font-size: 20px;
}

.a-Label::before {
    /*タイトル横の矢印*/
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #0c87e4;
    border-right: 2px solid #0c87e4;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
}

.a-Label,
.a-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.a-content {
    /*本文*/
    height: 0;
    margin-bottom: 10px;
    padding: 0 0px;
    overflow: hidden;
}

.a-toggle:checked + .a-Label + .a-content {
    /*開閉時*/
    height: auto;
    padding: 30px 20px 20px 2.5em;
    transition: all .3s;
    background-color: #feffee;
    border: 2px solid #2f8c67;
}

.a-toggle:checked + .a-Label::before {
    transform: rotate(-45deg) !important;
}

.a-Label ul li:before {
    content: 'Q.';
    position: absolute;
    font-size: 30px;
    color: #3a812b;
    left: 0.25em;
    top: 0.8em;
}

.a-Label ul li {
    padding: 10px 10px 10px 1.5em;
}

.a-content ul li:before {
    content: 'A.';
    position: absolute;
    font-size: 30px;
    color: #2f8c67;
    left: 0.25em;
    top: 0.8em;
    font-weight: bold;
}

.a-Label ul li {
    padding: 10px 10px 10px 1.5em;
}

/* accordion-menu
------------------------------------------------------------*/
.submenu-toggle {
    display: none;
}

.submenu-Label {
    /*タイトル*/
    display: block;
    color: #1c3f15;
    font-weight: bold;
    font-size: 20px;
}

.submenu-Label::before {
    /*タイトル横の矢印*/
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #0c87e4;
    border-right: 2px solid #0c87e4;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 135px;
    transform: rotate(135deg);
}

.submenu-Label,
.submenu-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.submenu-content {
    /*本文*/
    height: 0;
    margin-bottom: 10px;
    padding: 0 0px;
    overflow: hidden;
}

.submenu-content li {
    border-top: 1px solid #2f8c67;
    /*padding: 5px;*/
    padding: 5px 5px 5px 60px;
}

.submenu-content li a {
    color: #000;
    font-size: 16px;
    color: rgb(34, 34, 34);
    line-height: 1.8;
    font-weight: bold;
    text-transform: uppercase;
}

.submenu-content li a:hover {
    color: #ff9900;
}

.submenu-toggle:checked + .submenu-Label + .submenu-content {
    /*開閉時*/
    height: auto;
    transition: all .3s;
    background-color: #feffee;
}

.submenu-toggle:checked + .submenu-Label::before {
    transform: rotate(-45deg) !important;
}

.bold {
    font-weight: bold;
}

.topPage-cta-lead {
    position: relative
}

.topPage-cta-lead::before {
    width: 100%;
    height: 80%;
    /*background: #5fea50;*/
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/sidebg-image.jpg);
}

.topPage-cta-lead-inner {
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.topPage-cta-lead-des {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "MS Pゴシック", sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-right: 40px;
    padding-bottom: 32px
}

.topPage-cta-lead-illust {
    /*width: 25%*/
    margin-bottom: 0;
}

.topPage-cta-title {
    width: 44%;
    margin: 60px auto 0
}

.topPage-cta-title img {
    width: 100%
}

.topPage-cta-btn {
    width: 35%;
    margin: 32px auto 0
}

.topPage-cta-btn img {
    width: 100%
}

@media (max-width:767px) {
    .topPage-cta {
        padding-bottom: 0
    }

    .topPage-cta-lead-des {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        margin-right: 0;
        /*padding-bottom: 25px;*/
        padding-bottom: 10px;
        padding-left: 5px;
    }

    .topPage-cta-lead-illust {
        width: 40%;
        /*margin-right: -30px;*/
        margin-bottom: 0;
    }

    .topPage-cta-title {
        width: 85%;
        margin-top: 40px
    }

    .topPage-cta-btn {
        width: 70%;
        margin-top: 24px
    }
}

@media (max-width: 992px) {
    .for-sp {
        display: block !important;
    }
}

.for-sp {
    display: none !important;
}

.lh-2 {
    line-height: 2;
}

/* contact form
------------------------------------------------------------*/
#formWrap {
    width: 700px;
    margin: 0 auto;
    color: #000;
    line-height: 120%;
    font-size: 90%;
}

table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.formTable td,
table.formTable th {
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
}

table.formTable th {
    width: 30%;
    font-weight: normal;
    text-align: left;
}

table.formTable select {
    width: 269px;
}

/*table*/
@media screen and (max-width:572px) {
    #formWrap {
        width: 95%;
        margin: 0 auto;
    }

    table.formTable th,
    table.formTable td {
        width: auto;
        display: block;
    }

    table.formTable th {
        margin-top: 5px;
        border-bottom: 0;
    }

    input[type="text"],
    textarea {
        width: 100%;
        padding: 5px;
        font-size: 110%;
        display: block;
    }

    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        display: block;
        width: 100%;
        height: 40px;
    }

    table.formTable select {
        width: 100%;
    }
}

/* works
------------------------------------------------------------*/
.works .img {
    margin: 0 auto;
    text-align: center;
    width: auto;
    height: 300px;
}

.works .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    position: relative;
}

.works .img span {
    position: absolute;
    color: #fff;
    font-size: 1.1rem;
    top: 10px;
    /*左上に配置*/
    left: 10px;
    /*左上に配置*/
    background-color: #2f8c67;
    /*背景色*/
    padding: 0.3rem 0.5rem;
    /*文字の回りの余白*/
    margin: 0;
}

.works p {
    margin-top: 15px;
}

@media only screen and (min-width: 992px) {
    .works {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .works li {
        width: 100%;
        max-width: 32.5%;
        margin-bottom: 18px;
        border: 1px solid #dfdfdf;
        box-shadow: 3px 3px 3px rgb(0 0 0 / 25%);
    }
}

@media only screen and (max-width: 991px) {
    .works li {
        margin: 0 auto 20px;
        display: block;
        /*text-align: center;*/
        margin-bottom: 36px;
    }
}

.va-m {
    vertical-align: middle !important;
}

/* case-img
------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
    .case-img img {
        max-width: 768px;
        height: auto;
    }
}

.before {
    position: relative;
}

.before span {
    position: absolute;
    color: #fff;
    font-size: 1.1rem;
    top: 25px;
    /*左上に配置*/
    left: 25px;
    /*左上に配置*/
    background-color: #2f8c67;
    /*背景色*/
    padding: 0.3rem 0.5rem;
    /*文字の回りの余白*/
    margin: 0;
}

.after {
    position: relative;
}

.after span {
    position: absolute;
    color: #fff;
    font-size: 1.1rem;
    top: 25px;
    /*左上に配置*/
    left: 25px;
    /*左上に配置*/
    background-color: #ff9900;
    /*背景色*/
    padding: 0.3rem 0.5rem;
    /*文字の回りの余白*/
    margin: 0;
}

.img-before-border {
    border: solid 3px #2f8c67;
}

.img-after-border {
    border: solid 5px #ff9900;
}

.triangle-ba {
    display: flex;
    justify-content: center;
    align-items: center;
}

.triangle_case {
    background-color: #ff9900;
    width: 30px;
    height: 34px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

@media (max-width: 575px) {
    .triangle_case {
        background-color: #ff9900;
        width: 34px;
        height: 30px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
}

/* opening-animation
------------------------------------------------------------*/
.loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

.loading.is-active {
    opacity: 0;
    visibility: hidden;
}

.loading-animation {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background: #fff;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.loading-animation.is-active {
    opacity: 1;
    visibility: visible;
}

.lh-chui {
    line-height: 1.3 !important;
}

/* マークアップテキスト
------------------------------------------------------------*/
mark {
    --color1: #fff9739e;
    --color2: #fff9739e;
    --bg-height: 40%;

    all: unset;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color1)), to(var(--color2)));
    background-image: linear-gradient(var(--color1), var(--color2));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 var(--bg-height);
    -webkit-animation: highlight 2500ms 1 ease-out;
    animation: highlight 2500ms 1 ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes highlight {
    to {
        background-size: 100% var(--bg-height);
    }
}

@keyframes highlight {
    to {
        background-size: 100% var(--bg-height);
    }
}

/* main-menu-sub
------------------------------------------------------------*/
.dropdown__lists {
    display: none;
    /*デフォルトでは非表示の状態にしておく*/
    width: 265px;
    position: absolute;
    top: 45px;
    left: 0;
}

.gnavi__list:hover .dropdown__lists {
    display: block;
    /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
    background-color: #fff;
    /*height: 60px;*/
    transition: all .3s;
    position: relative;
    padding: 10px;
}

.dropdown__list:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.dropdown__list:hover {
    background-color: #2f8c67;
}

.dropdown__list a {
    display: flex;
    align-items: center;
    color: #222222;
    text-decoration: none;
    position: relative;
}

.dropdown__list a:hover {
    color: #fff;
}

.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #666666;
    border-left: 2px solid #666666;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}

.arrow {
    position: relative;
    padding-right: 15px;
    color: #333;
    text-decoration: none;
}

.arrow::after {
    content: '';
    display: block;
    width: 8px;
    /* 矢印の大きさの指定 */
    height: 8px;
    /* 矢印の大きさの指定 */
    border-top: 2px solid #2f8c67;
    /* 矢印の太さの指定 */
    border-left: 2px solid #2f8c67;
    /* 矢印の太さの指定 */
}

.arrow--down::after {
    transform: rotate(222deg);
    /* 矢印の角度の指定 */
    position: absolute;
    /* 矢印の位置の指定 */
    right: -5px;
    /* 矢印の位置の指定 */
    top: 20px;
    /* 矢印の位置の指定 */
}

/* mv
------------------------------------------------------------*/
.mv1 {
    background-image: url(../images/mv/mv1.jpg);
}

@media (max-width: 767px) {
    .mv1 {
        background-image: url(../images/mv/mv1_sp.jpg);
    }
}

.mv2 {
    background-image: url(../images/mv/mv2.jpg);
}

.mv {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .mv {
        padding-top: 50px;
    }
}

/* -----------------------------------------------------------
	top_circle
----------------------------------------------------------- */
.top_circle {
    display: flex;
    position: absolute;
    top: 60%;
    left: 75%;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .top_circle {
        display: flex;
        position: absolute;
        top: 75%;
        left: 70%;
        z-index: 10;
    }
}

/* -----------------------------------------------------------
	flow-anime
----------------------------------------------------------- */
/* Animation */
.flow-anime {
    animation: floating-y2 1.8s ease-in-out infinite alternate-reverse;
    margin-bottom: 16px;
}

@keyframes floating-y2 {
    0% {
        transform: translateY(-10%);
    }

    100% {
        transform: translateY(10%);
    }
}

/* -----------------------------------------------------------
	rinclinic-color
----------------------------------------------------------- */
.green {
    color: #2f8c67;
}

.orange {
    color: #ff9900;
}

.brown {
    color: #b29467;
}

/*midashi
---------------------------------------------------------------------------*/
/* 見出し全体のスタイル */
.heading-midashi {
    display: flex;
    align-items: center;
    gap: 15px;
    /* ロゴとテキストの間隔 */
    position: relative;
    padding-bottom: 15px;
    /* 下線との間の余白 */
    margin: 30px 0;
}

/* 2色の下線を再現（擬似要素を使用） */
/* 1. ベースとなる緑の線（全体） */
.heading-midashi::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2f8c67;
}

/* 2. 左側だけに重ねるオレンジの線 */
.heading-midashi::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    /* オレンジ色の線の長さ */
    height: 3px;
    /* グレーよりわずかに太くして強調 */
    background-color: #ff9900;
    z-index: 1;
}

/* ロゴ画像を入れる枠 */
.heading-midashi-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* 画面が狭くなってもロゴが潰れないように固定 */
    width: 45px;
    /* スマホ時のロゴサイズ */
    height: 45px;
}

.heading-midashi-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* テキスト部分 */
.heading-midashi-text {
    font-size: 20px;
    /* スマホ時の文字サイズ */
    font-weight: bold;
    color: #333333;
    line-height: 1.4;
    letter-spacing: 0.05em;
}


/* --- レスポンシブ対応（PCサイズ：768px以上） --- */
@media screen and (min-width: 768px) {
    .heading-midashi {
        gap: 20px;
        padding-bottom: 20px;
        margin: 0;
    }

    /* PCではロゴを少し大きく */
    .heading-midashi-logo {
        width: 55px;
        height: 55px;
    }

    /* PCでは文字サイズを大きく */
    .heading-midashi-text {
        font-size: 26px;
    }

    /* PCでは線を少し長めに設定 */
    .heading-midashi::after {
        width: 160px;
    }
}

/*subtitle
---------------------------------------------------------------------------*/
.subtitle {
    color: #2f8c67;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-top: 40px;
}

.subtitle > span {
    color: #ff9900;
    font-weight: 400;
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-size: .75rem;
    -webkit-font-feature-settings: "palt"on;
    -moz-font-feature-settings: "palt"on;
    font-feature-settings: "palt"on;
}

@media screen and (max-width: 767px) {
    .subtitle {
        font-size: 24px;
    }
}

.subtitle2 {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-top: 40px;
}

.subtitle2 > span {
    color: #ff9900;
    font-weight: 400;
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-size: .75rem;
    -webkit-font-feature-settings: "palt"on;
    -moz-font-feature-settings: "palt"on;
    font-feature-settings: "palt"on;
}

/* shadow
------------------------------------------------------------*/
.shadow {
    box-shadow: #2f8c67 15px 15px 1px;
}

/* img-futi
------------------------------------------------------------*/
.img-futi {
    position: relative;
}

.img-futi::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    border: 30px rgba(0, 0, 0, .2) solid;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

.img-futi2 {
    position: relative;
}

.img-border {
    border: solid 3px #2f8c67;
    /* 色：グレー */
}

/* contact-banner
------------------------------------------------------------*/
.contact-bnr a:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* fixed-SNS
------------------------------------------------------------*/
@media only screen and (min-width: 993px) {
    .left_bnr {
        z-index: 10;
        position: fixed;
        left: 0;
        top: 400px;
        background: rgba(21, 78, 159, 0.2);
        padding: 20px 0;
        width: 70px;
        text-align: center;
    }

    .left_bnr li + li {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .left_bnr {
        position: fixed;
        z-index: 10;
        bottom: 19vw;
        left: 15px;
    }

    .left_bnr ul {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    /*.left_bnr ul li:last-child{
    margin-left:20px;
  }*/
    .left_bnr ul li:nth-child(n+2) {
        margin-left: 20px;
    }

    .left_bnr img {
        width: 40px;
    }
}

/* reform-flow
------------------------------------------------------------*/
/* checkupflow */
.reform-flow {
    position: relative;
    padding-left: 60px;
    font-size: 24px;
}

.reform-flow::before {
    content: attr(data-number);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: rgba(1, 131, 223, 0.3);
    font-size: 50px;
}

.reform-flow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: rgba(23, 166, 84, 1);
}

.bgorange {
    background-color: rgba(247, 244, 239, 1);
    border: 1px solid #2f8c67;
    align-items: center;
}

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 100px 0 100px;
    border-color: #ff9900 transparent transparent transparent;
    margin: 0 auto;
}

/* grid-layout
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .md3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.md3 {
    position: relative;
    width: 50%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 15px;
    margin-right: -2px;
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    .md5 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.md5 {
    position: relative;
    width: 50%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 15px;
    margin-right: -2px;
    margin-top: 15px;
}

/* image-cut
------------------------------------------------------------*/
.image-curve1 {
    clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 80% 100%, 20% 100%, 0 100%, 0% 20%);
}

.image-curve2 {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 100%, 80% 100%, 20% 100%, 0% 80%, 0 0);
}

/* anchor-button
------------------------------------------------------------*/
.guidancebox {
    padding: 1em 1em;
    margin: 0.5em 0 0 0;
    border: 2px solid #2f8c67;
    background-color: #fff;
}

.list_anchor {
    max-width: 1060px;
    width: 100%;
}

.list_anchor li {
    padding-left: 2.5em;
}

.list_common li {
    line-height: 2.5;
    position: relative;
}

@media screen and (min-width: 961px) {
    .list_anchor.w30 {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

@media screen and (min-width: 961px) {
    .list_anchor.w30 li {
        width: 30.5%;
        margin-right: 2.25%;
    }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
    .list_anchor.w30 li {
        width: 48%;
    }
}

@media screen and (max-width: 767px) {
    .list_anchor li {
        width: 100%;
        padding-left: 2em;
    }
}

@media screen and (max-width: 767px) {
    .box_common01 .list_anchor {
        width: 95%;
    }
}

@media screen and (min-width: 961px) {
    .list_anchor.w22 {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

@media screen and (min-width: 961px) {
    .list_anchor.w22 li {
        width: 22.5%;
        margin-right: 2.25%;
    }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
    .list_anchor.w22 li {
        width: 48%;
    }
}

@media screen and (max-width: 767px) {
    .twoc li {
        width: 50% !important;
        padding-left: 1.5em ! important;
    }
}

list_anchor li::before {
    content: "";
    width: 24px;
    height: 24px;
    margin: auto;
    background: url(images/page/icn_check.svg)no-repeat center / contain;
    position: absolute;
    top: 0.1em;
    left: 0;
}

/*----- 三角の矢印 */
ul.cp_list {
    padding: 0;
    list-style-type: none;
}

ul.cp_list li {
    position: relative;
}

ul.cp_list li::before,
ul.cp_list li::after {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    width: 18px;
    height: 18px;
}

ul.cp_list li::before {
    background: #ff9900;
    clip-path: circle(50% at 50% 50%);
}

ul.cp_list li::after {
    left: -1px;
    background: #ffffff;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 70%, 70% 70%, 70% 0);
    transform: rotate(-45deg) scale(0.5);
}

/* contact-box
------------------------------------------------------------*/
.contact-box {
    border: 1px solid #cfcfcf;
    height: 150px;
    overflow: auto;
    padding: 15px 20px;
    background: #fff;
}

/* chuigaki
------------------------------------------------------------*/
.chui {
    vertical-align: top;
    font-size: 11px;
}

/* yohaku_chousei
------------------------------------------------------------*/
.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .sp_mb-4 {
        margin-bottom: 1.5rem;
    }
}

.col-sm-6 {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.col-md-6 {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

label {
    margin-bottom: 0 !important;
}

/* wp-news
------------------------------------------------------------*/
.wp.h2 {
    position: relative;
    padding: .3em 0 .2em 1em;
    border-bottom: 3px solid #ff9900;
    font-size: 1.5rem;
    color: #333333;
}

.wp.h2::before {
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background: #ff9900;
    content: '';
}

.wp.h2::after {
    position: absolute;
    transform: rotate(15deg);
    top: .6em;
    left: 0;
    height: 8px;
    width: 8px;
    background: #ff9900;
    content: '';
}

@media screen and (max-width: 767px) {
    .wp.h2 {
        font-size: 24px;
    }
}

/* contact
------------------------------------------------------------*/
.phone-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1a365d;
    padding: 15px;
    margin: 20px 0;
    background-color: #edf2f7;
    border-radius: 8px;
    border-left: 5px solid #2b6cb0;
    display: inline-flex;
    align-items: center;
}

.phone-icon {
    margin-right: 12px;
    font-size: 2rem;
    color: #2b6cb0;
}

.contact-time {
    font-size: 1.1rem;
    color: #4a5568;
    display: block;
    margin-top: 5px;
}

.section {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 25%);
}

.line-box {
    background-color: #00b900;
    padding: 24px 15px 15px 15px;
}

/*.line-box .content {
        padding: 16px;
    }*/

.line-box .content-item {
    width: 100%;
    background: #fff;
    padding: 16px;
}

@media (min-width: 992px) {
    .line-box .content {
        display: flex;
        border: 1px solid #ccc;
        background-color: #fff;
    }
}

@media (min-width: 992px) {
    .line-box .content-item {
        width: 50%;
    }
}

.line-box .content-item2 {
    width: 100%;
    background: #fff;
    padding: 16px;
}

@media (min-width: 992px) {
    .line-box .content-item2 {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .line-box .content-item2 {
        padding-top: 0px;
    }
}

.line-steps {
    background-color: white;
    color: #333;
}

.step-number {
    background-color: #00b900;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.accent-border {
    position: relative;
}

.accent-border::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 3px;
    background-color: #ff9900;
}

.left-border {
    border-left: 4px solid #ccc;
}

.tel_contact {
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .tel_contact {
        font-size: 24px;
    }
}

.line_qr {
    margin-left: -15px;
}

@media (max-width: 992px) {
    .line_qr {
        margin-left: 0px;
    }
}

/* img-hantoumei
------------------------------------------------------------*/
.imghover:hover {
    opacity: 0.7;
}

/* privacy
------------------------------------------------------------*/
.privacy table th,
.privacy table td {
    border: 1px solid #ccc;
    background: #fff;
    font-weight: normal;
}

.responsive-scroll {
    overflow-x: auto;
    /* はみ出したコンテンツをスクロールで表示 */
    width: 100%;
    /* 親要素の幅いっぱいに */
}

.responsive-scroll table {
    min-width: 600px;
    /* テーブルがこれ以上小さくならないようにする */
}

/* MV
------------------------------------------------------------*/
/* 基本設定（全デバイス共通のテキストリセットなど） */
#main-visual {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* はみ出し防止 */
}

/* --- 背景スライダー用のスタイル追加 --- */
.mv-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* コンテンツより後ろに配置 */
}

.mv-bg-item {
    width: 100%;
    height: 80vh;
    /* 親要素の高さに合わせる */
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* slickの構造上、高さ100%を維持するための記述 */
.mv-bg-slider .slick-list,
.mv-bg-slider .slick-track {
    height: 100%;
}

/* ---------------------------------- */

/* 中央の白いコンテンツエリア */
.mv-content {
    position: relative;
    /* z-indexを有効にするため */
    z-index: 2;
    /* 背景スライダーより前面に配置 */
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* テキストやロゴのスタイリング */
.mv-clinic-name {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #1a2a40;
    margin-bottom: 20px;
}

.mv-logo img {
    max-width: 320px;
    height: auto;
    margin-bottom: 20px;
}

.mv-date {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #2f8c67;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.mv-lead {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff9900;
    letter-spacing: 0.15em;
}


/* ==========================================================
   【PC用スタイル】画面幅が768px以上の場合に適用
   ========================================================== */
@media screen and (min-width: 768px) {
    #main-visual {
        height: 85vh;
    }

    /* PC用に高さを同期 */
    .mv-bg-item {
        height: 85vh;
    }

    .mv-content {
        max-width: 600px;
        padding: 60px 40px;
    }

    .mv-clinic-name {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .mv-logo img {
        max-width: 320px;
        margin-bottom: 30px;
    }

    .mv-date {
        font-size: 2.8rem;
    }

    .mv-lead {
        font-size: 3rem;
    }
}

/* ==========================================================
   特長
   ========================================================== */
/* ==========================================================================
   セクション全体・コンテナ
   ========================================================================== */
.features-section {
    padding: 60px 20px;
    background-color: #fbfbfb;
    /* 背景の薄いグレー（サイトに合わせて調整してください） */
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================================================================
   ヘッダー（タイトル部分）
   ========================================================================== */
/* --- バグ回避版：特定のエリアだけに背景画像を固定 --- */
.bg-fixed-section {
    position: relative;
    z-index: 0;

    /* 【超重要】これを入れることで、固定された背景画像や中の要素が */
    /* このセクションの枠から外にはみ出るのを防ぎ、レイアウト崩れを直します */
    clip-path: inset(0);

    /* 上下の余白 */
    padding: 40px 0;
}

/* 背景画像の固定設定 */
.bg-fixed-section::before {
    content: "";
    position: fixed;
    /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* 文字の後ろに配置 */

    background-image: url("../images/bg_green2.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
}

.subtitle-header {
    text-align: center;
    margin-bottom: 40px;
}

.subtitle-en {
    font-size: 42px;
    font-weight: 700;
    color: #2f8c67;
    letter-spacing: 0.1em;
    line-height: 1.2;
    display: block;
}

.subtitle-en-b {
    font-size: 42px;
    font-weight: 700;
    color: #b29467;
    letter-spacing: 0.1em;
    line-height: 1.2;
    display: block;
}

.subtitle-ja {
    font-size: 18px;
    color: #444;
    margin-top: 8px;
    font-weight: bold;
    display: block;
}

@media screen and (max-width: 768px) {
    .subtitle-en {
        font-size: 32px;
        font-weight: 700;
        color: #2f8c67;
        letter-spacing: 0.1em;
        line-height: 1.2;
        display: block;
    }

    .subtitle-en-b {
        font-size: 32px;
        font-weight: 700;
        color: #b29467;
        letter-spacing: 0.1em;
        line-height: 1.2;
        display: block;
    }
}

/* ==========================================================================
   グリッドレイアウト（スマホ版をデフォルト=1列 に設定）
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* ==========================================================================
   カードデザイン
   ========================================================================== */
.features-card {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* 画像ラッパーと斜めバッジ */
.features-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.66%;
    /* 3:2のアスペクト比を維持 */
    overflow: hidden;
}

.features-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 左上の斜めリボンバッジ */
.features-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2f8c67;
    /* バッジの薄紫 */
    color: #fff;
    width: 120px;
    height: 120px;
    /* clip-pathで三角形（斜めカット）を表現 */
    clip-path: polygon(0 0, 100% 0, 0 100%);
    padding: 12px 0 0 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
}

.badge-text {
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: bold;
    line-height: 1;
    opacity: 0.9;
}

.badge-num {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: -2px;
}

/* カードテキスト・ボタンエリア */
.features-body {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.features-card-title {
    font-size: 18px;
    color: #2f8c67;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.4;
    min-height: 2.8em;
    /* 2行分の中央揃えの高さを確保 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ボタンデザイン */
.features-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff9500;
    /* オレンジ */
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    max-width: 200px;
    padding: 14px 20px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    position: relative;
}

/* ボタン右側の矢印（→） */
.features-btn::after {
    content: "→";
    position: absolute;
    right: 15px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* ホバーエフェクト */
.features-btn:hover {
    background-color: #af9571;
    /* オレンジ */
    opacity: 0.9;
}

.features-btn:hover::after {
    transform: translateX(4px);
    /* 矢印が少し右に動く */
}


/* ==========================================================================
   メディアクエリ（PC版：ブレイクポイント 768px 以上）
   ========================================================================== */
@media (min-width: 768px) {
    .features-section {
        padding: 100px 40px;
    }

    .subtitle-header {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .subtitle-en {
        font-size: 54px;
    }

    .subtitle-ja {
        font-size: 20px;
        margin-top: 12px;
    }

    /* 3列並びに切り替え */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        /* PC時はカード間の余白をやや狭く設定 */
    }

    .features-body {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   イントロ　コンテナ設定（スマホ版デフォルト：上下縦並び）
   ========================================================================== */
.clinic-intro-section {
    width: 100%;
    overflow: hidden;
}

.clinic-intro-container {
    display: flex;
    flex-direction: column;
    position: relative;
    /* 背景ロゴの基準点 */
}

/* 中央の透かしロゴ（スマホ版では一旦非表示、または薄く背景に置く場合は調整） */
.clinic-center-logo {
    display: none;
}

/* ==========================================================================
   各ブロックのベース設定（スマホ版）
   ========================================================================== */
.clinic-block {
    padding: 40px 20px;
    width: 100%;
}

/* 背景色設定 */
.block-orthopedic {
    background-color: #eaf2fa;
    /* 薄いブルー */
}

.block-plastic {
    background-color: #f5ede3;
    /* 薄いベージュ */
}

/* インナーレイアウト（スマホ版は要素を上から順に中央揃え） */
.clinic-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
}

/* ==========================================================================
   パーツデザイン（タイトル、テキスト、ボタン）
   ========================================================================== */

/* 漢字の四角囲みタイトル（スマホ版：横並び） */
.vertical-title {
    display: flex;
    flex-direction: row;
    /* スマホ時は横並び */
    gap: 6px;
}

.vertical-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    background-color: #fff;
}

/* タイトルごとの固有カラー */
.title-orthopedic span {
    border: 1px solid #00336c;
    color: #00336c;
}

.title-plastic span {
    border: 1px solid #b29467;
    color: #b29467;
}

/* コンテンツエリア */
.clinic-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    /* テキスト自体は左揃え */
}

.clinic-text {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ボタンの共通デザイン */
.clinic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    width: 100%;
    max-width: 260px;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ボタン左側の丸矢印アイコン */
.clinic-btn::before {
    content: "→";
    position: absolute;
    left: 20px;
    width: 22px;
    height: 22px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: normal;
}

/* ボタンごとの固有カラー */
.btn-orthopedic {
    background-color: #00336c;
    /* 濃い紺 */
}

.btn-plastic {
    background-color: #b29467;
    /* ゴールド・ベージュ */
}

/* ホバー時の挙動 */
.clinic-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* ==========================================================================
   メディアクエリ（PC版：ブレイクポイント 992px 以上）
   ========================================================================== */
/* ==========================================================================
   メディアクエリ（PC版：ブレイクポイント 992px 以上）
   ========================================================================== */
@media (min-width: 992px) {

    /* 左右50%ずつのグリッド配置に変形 */
    .clinic-intro-container {
        flex-direction: row;
    }

    .clinic-block {
        width: 50%;
        padding: 80px 40px;
        display: flex;
        align-items: center;
    }

    /* ------------------------------------------------------------------------
     【修正】整形外科（左側ブロック）の配置
     タイトル[整/形/外/科]を一番左端に、テキストをその右側に配置
     ------------------------------------------------------------------------ */
    .block-orthopedic {
        justify-content: flex-end;
        /* コンテンツ全体を中央の境界線に寄せる */
    }

    .clinic-inner.right-align {
        flex-direction: row;
        /* row にすることで [タイトル] [テキスト] の順で左から並びます */
        text-align: left;
        max-width: 520px;
        margin: 0 50px 0 0;
        /* 中央の境界線との間に余白を作る */
        gap: 30px;
        /* タイトルとテキストの間の余白 */
    }

    /* ------------------------------------------------------------------------
     【修正】形成外科（右側ブロック）の配置
     テキストを左側に、タイトル[形/成/外/科]を一番右端に配置
     ------------------------------------------------------------------------ */
    .block-plastic {
        justify-content: flex-start;
        /* コンテンツ全体を中央の境界線に寄せる */
    }

    .clinic-inner.left-align {
        flex-direction: row-reverse;
        /* row-reverse にすることで [テキスト] [タイトル] の順で左から並び、タイトルが右端になります */
        text-align: left;
        max-width: 520px;
        margin: 0 0 0 50px;
        /* 中央の境界線との間に余白を作る */
        gap: 30px;
        /* テキストとタイトルの間の余白 */
    }

    /* ------------------------------------------------------------------------
     共通パーツのPC最適化
     ------------------------------------------------------------------------ */
    /* タイトルを「縦並び」に変更 */
    .vertical-title {
        flex-direction: column;
        gap: 8px;
        flex-shrink: 0;
    }

    .vertical-title span {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    /* テキスト・ボタンエリアの調整 */
    .clinic-content {
        align-items: flex-start;
        /* ボタンやテキストを左寄せ */
        padding: 0;
        position: relative;
        /* ★ z-indexを有効にするために追加 */
        z-index: 2;
        /* ★ ロゴ（z-index: 1）より大きい数値を指定 */
    }

    /* 整形外科のテキストのみ、文末を綺麗に見せるため少し右側にマージンを確保 */
    .block-orthopedic .clinic-text {
        padding-right: 15px;
    }

    .clinic-text {
        font-size: 15px;
        margin-bottom: 30px;
        white-space: nowrap;
        /* スクリーショット通り改行位置を固定 */
    }

    .clinic-btn {
        max-width: 240px;
    }

    /* 中央の透かしロゴ（左右ブロックの境界中央に絶対配置） */
    .clinic-center-logo {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        pointer-events: none;
        width: 240px;
        height: auto;
    }

    .clinic-center-logo img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* ==========================================================================
   topinfo共通・ベーススタイル
   ========================================================================== */
.topinfo-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* 背景画像の設定 */
.topinfo-bg-pc,
.topinfo-bg-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* 各メニューごとの背景画像 */
.bg-info-pc {
    background-image: url('../images/bg_image.jpg');
}

.bg-info-sp {
    background-image: url('../images/bg_image.jpg');
}

.bg-info2-pc {
    background-image: url('../images/bg_image.jpg');
}

.bg-info2-sp {
    background-image: url('../images/bg_image.jpg');
}

.bg_green1 {
    background-image: url(../images/bg_green1.jpg);
}

/* 白いコンテンツの枠 */
.topinfo-content-wrap {
    position: relative;
    z-index: 2;
    background: #fff;
    display: flex;
}

/* バッジ */
.badge {
    position: absolute;
    top: -15px;
    /* 白枠から少し飛び出すデザイン */
    left: 20px;
    color: #fff;
    padding: 15px 15px;
    font-size: 18px;
    letter-spacing: 0.1em;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
}

.badge-green {
    background-color: #2f8c67;
}

/* badge */
.badge-brown {
    background-color: #b29467;
}

/* インプラント用 */

/* テキスト装飾 */
.sub-title {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.main-title {
    font-size: 28px;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.description {
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* 矢印ボタン */
.arrow-btn {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: relative;
    transition: opacity 0.3s;
}

.arrow-btn-purple {
    background-color: #988ba2;
}

.arrow-btn-blue {
    background-color: #6a849c;
}

.arrow-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.arrow-btn:hover {
    opacity: 0.8;
}

/* ==========================================================================
   PC閲覧時のスタイル (画面幅 769px 以上)
   ========================================================================== */
@media screen and (min-width: 769px) {
    .topinfo-container {
        padding: 60px 0;
        height: 480px;
    }

    .topinfo-bg-sp {
        display: none;
    }

    /* 左右の寄せ設定 */
    .topinfo-align-right {
        justify-content: flex-end;
    }

    .topinfo-align-left {
        justify-content: flex-start;
    }

    .topinfo-content-wrap {
        width: 85%;
        max-width: 1200px;
        height: 360px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        background-color: rgba(255, 255, 255, 0.7);
        /* 白の不透明度70% */
    }

    .topinfo-align-right .topinfo-content-wrap {
        border-radius: 4px 0 0 4px;
    }

    .topinfo-align-left .topinfo-content-wrap {
        border-radius: 0 4px 4px 0;
    }

    /* テキストエリア */
    .topinfo-text-area {
        width: 55%;
        padding: 40px 50px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .arrow-btn {
        position: absolute;
        bottom: 30px;
        right: 40px;
    }

    /* 画像エリア共通 */
    .topinfo-image-area {
        width: 45%;
        height: 100%;
        position: relative;
    }

    .topinfo-image-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ★内側が斜めに切れるクリップパス（どちらの配置でも形状をキープ） */
    .img-cut-left img {
        clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .img-cut-right img {
        clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
    }
}

/* PC用背景英語テキストの共通装飾 */
.topinfo-pc-text-bg {
    display: block;
    /* PC時のみ表示 */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 90px;
    font-weight: bold;
    letter-spacing: 0.1em;
    z-index: 2;
    /* 白枠の上に重ねる（後ろに隠すなら 1 ） */
    pointer-events: none;
    text-transform: uppercase;
}

/* 【左寄せセクション用】文字を「右側」に配置する */
.topinfo-align-left .topinfo-pc-text-bg {
    left: auto;
    right: 8%;
    /* 右側からの距離 */
}

/* 【右寄せセクション用】 */
.topinfo-align-right .topinfo-pc-text-bg {
    right: auto;
    left: 8%;
}

.pc-text-bg1 {
    color: rgba(47, 140, 103, 0.3);
    /* 不透明度70% */
}

.pc-text-bg2 {
    color: rgba(178, 148, 103, 0.7);
    /* 不透明度70% */
}

/* ==========================================================================
   スマホ閲覧時のスタイル (画面幅 768px 以下)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .topinfo-container {
        padding: 0;
        align-items: flex-start;
        justify-content: center !important;
    }

    .topinfo-bg-pc {
        display: none;
    }

    .topinfo-bg-sp {
        height: 380px;
    }

    /* スマホ時はすべて一律で「上写真、下テキスト」の縦並びに統一 */
    .topinfo-content-wrap {
        flex-direction: column !important;
        margin: 40px auto 40px auto !important;
        width: calc(100% - 40px) !important;
        border-radius: 4px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .topinfo-image-area {
        width: 100% !important;
        height: 220px !important;
        order: 1 !important;
        /* 強制的に写真を上に */
    }

    .topinfo-image-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* スマホ用の下側が斜めに切れる形状 */
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%) !important;
    }

    .badge {
        top: 15px;
        left: 15px;
    }

    .topinfo-text-area {
        width: 100% !important;
        padding: 30px 20px !important;
        box-sizing: border-box;
        /*text-align: center;*/
        display: flex;
        flex-direction: column;
        /*align-items: center;*/
        order: 2 !important;
        /* 強制的にテキストを下に */
    }

    .main-title {
        font-size: 22px;
    }

    .description {
        text-align: left;
        margin-bottom: 20px;
    }

    .arrow-btn {
        margin-top: 10px;
    }

    .topinfo-pc-text-bg {
        display: none;
        /* デフォルト（スマホ）では非表示 */
    }
}

/* ==========================================================================
   top2
   ========================================================================== */
/* 全体共通・ベーススタイル */
.top2-section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    font-family: "Noto Serif JP", serif;
    /* サイトで使用されているフォント調 */
    overflow: hidden;
    padding: 60px 20px;
    border: 1px solid #ffffff;
    /* 画像の外枠の白い線 */
}

/* 背景画像の設定 */
.bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* スマホでは縦並び */
    z-index: 1;
}

.bg-left,
.bg-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

/* ※実際の画像のパスを指定してください */
.bg-left {
    background-image: url('miele-washer.jpg');
}

.bg-right {
    background-image: url('washing-basket.jpg');
}

/* 背景を青っぽく暗くするためのオーバーレイ */
.bg-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 左から右、または上から下への青い半透明グラデーション */
    background: linear-gradient(135deg, rgba(135, 166, 189, 0.85), rgba(105, 136, 160, 0.85));
    z-index: 2;
}

/* コンテンツエリア */
.top2-content {
    position: relative;
    z-index: 3;
    /* 背景より上にする */
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eng-title {
    font-size: 24px;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    color: #625c58;
    /* サイト特有の少しくすんだ文字色 */
}

.main-title {
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

/* 滅菌器画像と丸バッジの配置 */
.top2badge-container {
    position: relative;
    width: 220px;
    margin-bottom: 30px;
}

.machine-img {
    width: 100%;
    height: auto;
    display: block;
}

.top2badge {
    position: absolute;
    top: -15px;
    right: -30px;
    width: 90px;
    height: 90px;
    background-color: rgba(163, 149, 126, 0.8);
    /* カーキ・ベージュ系の半透明色 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.top2description {
    font-size: 15px;
    line-height: 2;
    text-align: justify;
    margin-bottom: 40px;
    max-width: 600px;
}

/* ボタンのスタイル */
.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 280px;
    height: 55px;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.btn-more::after {
    content: '>';
    /* 本来はSVG等の矢印アイコン */
    position: absolute;
    right: 20px;
    width: 24px;
    height: 24px;
    background-color: #a3957e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-more:hover {
    opacity: 0.9;
}


/* ==========================================
   PCサイズ（タブレット以上）のレスポンシブ対応
   ========================================== */
@media screen and (min-width: 768px) {
    .top2-section {
        padding: 80px 40px;
    }

    /* 背景を左右2分割にする */
    .bg-container {
        flex-direction: row;
    }

    /* PCでは滅菌器画像を右側に絶対配置で浮かせる */
    .top2-content {
        display: block;
        /* 縦並びを解除 */
        text-align: left;
        max-width: 1000px;
        padding-right: 320px;
        /* 右側に画像が入るスペースを空ける */
        box-sizing: border-box;
    }

    .top2-main-title {
        font-size: 36px;
    }

    .top2badge-container {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 260px;
        margin-bottom: 0;
    }

    .top2badge {
        top: 30px;
        right: -40px;
        width: 110px;
        height: 110px;
        font-size: 16px;
    }

    .top2description {
        text-align: left;
        font-size: 16px;
    }

    .btn-more {
        margin-left: 0;
        margin-right: auto;
    }
}

/* ==========================================================================
   top3共通・ベーススタイル
   ========================================================================== */
/* ==========================================================================
   共通・ベーススタイル
   ========================================================================== */
.top3 {
    width: 100%;
    padding: 80px 0;
    background-color: #f9f9f9;
    color: #333;
}

.sp-only {
    display: none;
}

/* ==========================================================================
   PCレイアウト (デフォルト：左右2分割)
   ========================================================================== */
.top3flex-wrapper {
    display: flex;
    align-items: center;
    /* 左右の要素の縦中央を揃える */
    justify-content: space-between;
    gap: 50px;
    /* 左画像と右コンテンツの間の余白 */
}

/* 左側：画像ブロック */
.top3image-left {
    flex: 0 1 48%;
    /* 横幅を全体の約48%に設定 */
}

.top3image-left img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右側：コンテンツブロック（テキスト＋バッジ） */
.top3content-right {
    flex: 0 1 48%;
    /* 横幅を全体の約48%に設定 */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 中身の要素をセンター寄せに */
}

/* テキストスタイル */
.top3content-text {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.contents-title {
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    line-height: 1.5;
}

.top3description {
    line-height: 1.9;
    color: #555;
    text-align: left;
    /* 文章自体は左揃えが読みやすいです */
}

/* 学会バッジ */
.top3badge-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.top3badge-item {
    width: 150px;
    height: 150px;
    border: 1px solid #2f8c67;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.top3badge-item p {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   スマートフォン用レイアウト (画面幅 768px 以下)
   ========================================================================== */
@media screen and (max-width: 768px) {

    .top3 {
        padding: 50px 0;
    }

    .container {
        padding: 0 20px;
    }

    .sp-only {
        display: block;
    }

    /* 左右並びを解除して縦並び（上：画像、下：テキスト）にする */
    .top3flex-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    /* スマホ時はそれぞれ横幅100%に広げる */
    .top3image-left,
    .top3content-right {
        width: 100%;
        flex: none;
    }

    /* タイトルとテキストの調整 */
    .contents-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .top3description {
        text-align: justify;
    }

    /* バッジの縮小調整 */
    .top3badge-container {
        gap: 10px;
    }

    .top3badge-item {
        width: 115px;
        height: 115px;
    }
}

/* ==========================================================================
   circle4
   ========================================================================== */
/* セクションタイトル（茶色の背景に白文字） */
.circle-section-title {
    background-color: #9c8f77;
    /* 画像に基づいたくすみのある茶色 */
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: normal;
    padding: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    position: relative;
}

/* 左上のL字枠線 */
.circle-section-title::before {
    content: "";
    position: absolute;
    top: 6px;
    /* 外枠からの隙間 */
    left: 6px;
    /* 外枠からの隙間 */
    width: 9%;
    /* L字の横線の長さ */
    height: 25px;
    /* L字の縦線の長さ */
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    pointer-events: none;
}

/* 右下のL字枠線 */
.circle-section-title::after {
    content: "";
    position: absolute;
    bottom: 6px;
    /* 外枠からの隙間 */
    right: 6px;
    /* 外枠からの隙間 */
    width: 90px;
    /* L字の横線の長さ */
    height: 25px;
    /* L字の縦線の長さ */
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    pointer-events: none;
}

/* リード文 */
.circle-lead-text {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    letter-spacing: 0.05em;
}

/* カードの配置（Flexbox） */
.circle-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /* カード同士の間隔 */
    justify-content: center;
}

/* 個々のカードスタイル */
.circle-card-item {
    background-color: #fff;
    border: 1px solid #4a434f;
    /* 濃いグレーの細い枠線 */
    flex: 0 1 calc(25% - 12px);
    /* PCサイズ：4カラム（隙間を考慮） */
    padding: 30px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* アイコンの外枠（暗いグレーの円） */
.circle-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: #514d59;
    /* 画像の丸背景の色 */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* ダミーアイコン用の装飾（実際の画像を使う場合は不要） */
.circle-dummy-icon {
    color: #fff;
    font-size: 28px;
}

/* カード内のタイトル */
.circle-card-title {
    color: #333;
    font-weight: normal;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

/* カード内の中央の線 */
.circle-card-line {
    width: 80%;
    border: none;
    border-top: 1px solid #a0a0a0;
    margin-bottom: 15px;
}

/* カード内の説明文 */
.circle-card-desc {
    color: #666;
    line-height: 1.6;
}

/* ===================================================
   レスポンシブ対応（スマートフォン・タブレット向け設定）
   =================================================== */
@media screen and (max-width: 768px) {

    /* スマホサイズ（幅768px以下）では2カラムに変更 */
    .circle-card-item {
        flex: 0 1 calc(50% - 8px);
        /* 2カラム（隙間を考慮） */
        padding: 20px 10px;
    }

    .circle-lead-text {
        text-align: left;
        /* スマホ時に左寄せにする場合（お好みで） */
        line-height: 1.5;
    }

    .circle-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .circle-dummy-icon {
        font-size: 24px;
    }
}

/* 診療時間
------------------------------------------------------------*/
.kyuushin {
    margin: 10px 0;
}

.guidance table {
    width: 100%;
    margin: 20px 0 0px;
    background-color: #fff;
    position: relative;
    table-layout: fixed;
    /* 列幅均等 */
}

.guidance table th.title {
    background-color: #2f8c67;
    color: #fff;
}

.guidance table td {
    text-align: center;
    vertical-align: middle;
    padding: 10px 5px;
    border: 1px solid #2f8c67;
}

.guidance table th {
    text-align: center;
    vertical-align: middle;
    padding: 10px 0px;
    border: 1px solid #2f8c67;
}

.guidance table td {
    color: #ff9900;
    font-size: 1.2rem;
    font-weight: bold;
    vertical-align: middle;
}

/*@media screen and (max-width: 768px) {
    .guidance table td {
        font-size: 1rem;
    }
}*/

.guidancesub {
    font-size: 0.75rem;
}

/* 曜日の列（2列目以降）の幅を自動調整 */
.guidance table th:not(:first-child),
.guidance table td:not(:first-child) {
    width: auto !important;
}

/* 1列目（診察時間）の幅が狭くなりすぎないよう調整（必要に応じて） */
.guidance table th:first-child,
.guidance table td:first-child {
    width: 33%;
    /* 診察時間項目の幅。残りの67%が7曜日に均等分配 */
}

/* スマートフォン等、画面が狭い時の文字溢れ対策 */
@media screen and (max-width: 640px) {
    .guidance table {
        font-size: 14px;
    }
}

@media screen and (max-width: 640px) {
    .guidance table td {
        font-size: 1rem;
    }
}

/* 診療時間
------------------------------------------------------------*/
.kyuushin {
    margin: 10px 0;
}

.guidance-top table {
    width: 100%;
    margin: 10px 0 0;
    background-color: #fff;
    position: relative;
    table-layout: fixed;
    /* 列幅均等 */
}

.guidance-top table th.title {
    background-color: #2f8c67;
    color: #fff;
}

.guidance-top table td {
    text-align: center;
    vertical-align: middle;
    padding: 10px 5px;
    border: 1px solid #2f8c67;
}

.guidance-top table th {
    text-align: center;
    vertical-align: middle;
    padding: 10px 0px;
    border: 1px solid #2f8c67;
}

.guidance-top table td {
    color: #ff9900;
    font-size: 1.4rem;
    font-weight: bold;
    vertical-align: middle;
}

/*@media screen and (max-width: 768px) {
    .guidance table td {
        font-size: 1rem;
    }
}*/

.guidancesub {
    font-size: 0.7rem;
}

/* 曜日の列（2列目以降）の幅を自動調整 */
.guidance-top table th:not(:first-child),
.guidance-top table td:not(:first-child) {
    width: auto !important;
}

/* 1列目（診察時間）の幅が狭くなりすぎないよう調整（必要に応じて） */
.guidance-top table th:first-child,
.guidance-top table td:first-child {
    width: 33%;
    /* 診察時間項目の幅。残りの75%が7曜日に均等分配 */
}

/* スマートフォン等、画面が狭い時の文字溢れ対策 */
@media screen and (max-width: 640px) {
    .guidance-top table {
        font-size: 14px;
    }
}

@media screen and (max-width: 640px) {
    .guidance-top table td {
        font-size: 1rem;
    }
}

/* 診療案内
------------------------------------------------------------*/
/* 全体のベース設定 */
.consultation-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

/* コンテナ（背景のボックスと下部の矢印デザイン） */
.consultation-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #eafff7;
    padding: 40px 20px 50px 20px;
    position: relative;
    box-sizing: border-box;
}

/* 下部中央の矢印（切り欠き）デザインの再現 */
.consultation-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 20px 25px 0 25px;
    border-color: #f4f5f5 transparent transparent transparent;
}

/* タイトル部分 */
.consultation-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 40px 0;
    letter-spacing: 0.1em;
}

.consultation-subtitle {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 14px;
    color: #bfa78f;
    /* ゴールド・ベージュ系のカラー */
    margin-top: 8px;
    letter-spacing: 0.2em;
}

/* リスト全体のスタイル */
.consultation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 各項目（スマホでは1列、PCで2列に変化） */
.consultation-item {
    position: relative;
    width: 100%;
    /* スマホ時は100%（1列） */
    font-size: 18px;
    color: #444444;
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid #dcdcdc;
    box-sizing: border-box;
    letter-spacing: 0.05em;
}

/* 自作のチェックマーク（L字型を回転させて再現） */
.consultation-item::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    width: 14px;
    height: 7px;
    margin-top: -8px;
    border-left: 2px solid #ff9900;
    border-bottom: 2px solid #ff9900;
    transform: rotate(-45deg);
}


/* --- レスポンシブ対応（PCサイズ：768px以上） --- */
@media screen and (min-width: 768px) {
    .consultation-container {
        padding: 50px 60px 60px 60px;
    }

    .consultation-title {
        font-size: 28px;
    }

    /* PCでは2列（幅46%ずつ）にする */
    .consultation-item {
        width: 46%;
    }

    .consultation-list {
        align-content: flex-start;
    }
}

/* アンカーリンクボタン
------------------------------------------------------------*/
/* 全体を囲むコンテナ（背景色と余白） */
.medical-nav-container {
    background-color: #f7f7f3;
    padding: 30px 15px;
    width: 100%;
    box-sizing: border-box;
}

/* ボタンを並べるボックス（スマホ時は2列のグリッド配置） */
.medical-nav-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* スマホは横に2分割 */
    gap: 12px;
    /* ボタン同士の隙間 */
}

/* 各ボタン（リンク）のスタイル */
.medical-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    /* 薄いグレーの枠線 */
    border-radius: 8px;
    /* 角丸設定 */
    padding: 15px 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    /* 下線を消す */
    box-sizing: border-box;
    transition: all 0.3s ease;
    /* アニメーションのスムーズさ */
}

/* マウスホバー時の演出（PC用） */
.medical-nav-item:hover {
    opacity: 0.75;
    border-color: #2f8c67;
    /* ホバー時に枠線を緑色に */
}

/* 下向き矢印（↓）のスタイル */
.medical-nav-item .anchor {
    color: #2f8c67;
    margin-left: 6px;
    font-weight: normal;
    font-size: 16px;
    display: inline-block;
    /* 0.3秒かけて滑らかに動かす */
    transition: transform 0.3s ease;
}

/* ホバー時に矢印（.arrow）を下に4px移動させる */
.medical-nav-item:hover .anchor {
    transform: translateY(4px);
}

/* --- レスポンシブ対応（PCサイズ：768px以上） --- */
@media screen and (min-width: 768px) {
    .medical-nav-container {
        padding: 40px 20px;
    }

    /* PC環境では1行にすべて（4つ）横並びにする */
    .medical-nav-4list {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        /* PCでは少し広げる */
    }

    .medical-nav-5list {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        /* PCでは少し広げる */
    }

    .medical-nav-item {
        font-size: 16px;
        padding: 18px 10px;
    }
}

/* first-visit
------------------------------------------------------------*/
/* リスト全体のスタイル */
.visit-requirements {
    list-style: none;
    /* デフォルトの黒丸を非表示にする */
    padding-left: 0;
    margin: 20px 0;
}

/* 各項目（行）のスタイル */
.visit-requirements li {
    position: relative;
    padding-left: 1.5em;
    /* 左側に黒丸分の余白を空ける */
    line-height: 2;
    /* 行間を広げて見やすくする */
    color: #333333;
    /* 文字色（やや濃いグレー） */
    font-size: 18px;
}

/* 擬似要素を使って、綺麗で崩れない「・」を再現 */
.visit-requirements li::before {
    content: "•";
    /* 黒丸を表示 */
    position: absolute;
    left: 0;
    color: #333333;
    /* 黒丸の色 */
    font-size: 18px;
    /* 黒丸の大きさ */
}

/* info-ortho
------------------------------------------------------------*/
/* 全体コンテナのスタイル */
.info-ortho {
    box-sizing: border-box;
    max-width: 1200px;
    /* 必要に応じて調整してください */
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f7f6f0;
    /* 薄いベージュの背景 */
    border: 2px solid #e2ded2;
    /* 外枠の線 */
    border-radius: 20px;
    /* 角丸 */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333333;
}

/* タイトルとリード文 */
.info-ortho__title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
}

.info-ortho__lead {
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 区切り線 */
.info-ortho__divider {
    border: none;
    border-top: 1px solid #c2bfae;
    margin: 30px 0;
}

.info-ortho__divider--dashed {
    border-top: 1px dashed #c2bfae;
}

/* 各アイテムのレイアウト（PC基準: 横並び） */
.info-ortho__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    /* 左右の余白 */
    margin-bottom: 30px;
}

.info-ortho__item:last-child {
    margin-bottom: 0;
}

/* コンテンツ（テキスト）側 */
.info-ortho__content {
    flex: 1;
}

.info-ortho__item-title {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

/* タイトルの左側にあるドット（擬似要素） */
.info-ortho__item-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #008983;
    border-radius: 50%;
}

.info-ortho__text {
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* 画像側 */
.info-ortho__image {
    flex: 0 0 25%;
    /* PC時の画像の横幅比率 */
    max-width: 440px;
}

.info-ortho__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* 画像の角丸 */
}

/* ==========================================================================
   レスポンシブ表示（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
    .info-ortho {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .info-ortho__title {
        font-size: 20px;
    }

    .info-ortho__lead {}

    /* 縦並びに変更 */
    .info-ortho__item {
        flex-direction: column;
        gap: 20px;
    }

    .info-ortho__image {
        width: 100%;
        flex: none;
        max-width: 100%;
    }
}

/* funryu-hiyou
------------------------------------------------------------*/
.guidance2 table {
    width: 100%;
    margin: 20px 0 0px;
    background-color: #fff;
    position: relative;
}

.guidance2 table th.title {
    background-color: #2f8c67;
    color: #fff;
}

.guidance2 table td {
    vertical-align: middle;
    padding: 10px 5px;
    border: 1px solid #ccc;
}

.guidance2 table th {
    text-align: center;
    vertical-align: middle;
    padding: 10px 0px;
    border: 1px solid #ccc;
}

.guidance2 table td {

    vertical-align: middle;
}

/* space
------------------------------------------------------------*/
@media (min-width: 768px) {
    .footer-left-content {
        max-width: 48%;
    }
}

/* pagination
------------------------------------------------------------*/
/* 全体のコンテナ */
.pagination {
    margin: 40px 0;
    text-align: center;
}

/* リンクボタンの共通スタイル */
.nav-links {
    display: inline-flex;
    gap: 8px;
    /* ボタン同士の間隔 */
    list-style: none;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* ホバー時（マウスを乗せたとき） */
.page-numbers:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

/* 現在表示しているページ */
.page-numbers.current {
    background: #f2981e;
    color: #fff;
    border-color: #333;
    cursor: default;
}

/* モバイル対応：少し小さくする */
@media (max-width: 480px) {
    .page-numbers {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.pagination-wrapper {
    margin: 50px 0;
    /* 上下にゆとりを持たせる */
    display: flex;
    justify-content: center;
    /* 中央に配置 */
}

/* 「…」の部分 */
.pagination-wrapper .page-numbers.dots {
    border: none;
    /* 枠線を消す */
    background: none;
    /* 背景を消す */
    color: #666;
    /* 色を少し薄くする */
    padding: 0 5px;
    /* 左右に少し隙間を作る */
}

/* news-colum-blog_title_txt
------------------------------------------------------------*/
.blogtit {
    font-size: 22px;
    font-weight: bold;
}

.blogtxt {
    font-size: 18px;
    font-weight: 400;
    color: #212529;
}

.blogtxt p {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #212529 !important;
}
