@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* font-family: "Zen Maru Gothic", serif; */
@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");
/* font-family: "Allura", cursive; */
/*===================================
  基本設定
===================================*/
:root {
    --c-01: #3fa037;
    --c-02: #c4e1c2;
    --c-03: #3f5625;
    --c-04: #41210f;
    --c-05: #f7f6eb;
    --c-06: #d6eaba;
    --c-07: #8cc63f;
    --c-08: #eef7e2;
    --c-09: #f2fcf0;
    --c-10: #fffef2;
    --c-11: #ffb6b6;
}
.c-01 {
    color: var(--c-01);
}
.c-02 {
    color: var(--c-02);
}
.c-03 {
    color: var(--c-03);
}
.c-04 {
    color: var(--c-04);
}
.c-06 {
    color: var(--c-06);
}
.c-11 {
    color: var(--c-11);
}

.bgc-01 {
    background: var(--c-01);
}
.bgc-02 {
    background: var(--c-02);
}
.bgc-03 {
    background: var(--c-03);
}
.bgc-04 {
    background: var(--c-04);
}
.bgc-05 {
    background: var(--c-05);
}
.bgc-09 {
    background: var(--c-09);
}
.bgc-10 {
    background: var(--c-10);
}
.bgc-11 {
    background: var(--c-11);
}


.c-w {
    color: #fff;
}
.bgc-w {
    background: #fff;
}

html {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    color: var(--c-04);
}

.en {
    font-family: "Allura", cursive;
}


/* 共通コンテンツ間隔 */
.area {
    padding-top: 100px;
    padding-bottom: 100px;
}
@media (max-width: 599px) {
    .area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* 共通要素読み込みコメント（取り込み後削除） */
[class*="load-"] {
    min-height: 50px;
    border: 3px solid #00bcd4;
    position: relative;
}
[class*="load-"]:before {
    content: "共通要素";
    display: block;
    font-weight: bold;
    color: #ff0;
    text-align: center;
    background: #00bcd4;
    position: absolute;
    z-index: 100;
}
/*===================================
  共通ブロック　block-cmn
==================================*/
/* 共通ブロック１ */
/*===================================
  共通タイトル　ttl-cmn
===================================*/
/* 共通タイトル１ */
.ttl-cmn01 {
    font-size: 28px;
    text-align: center;
}
@media (max-width: 599px) {
    .ttl-cmn01 {
        font-size: 24px;
    }
}
/*===================================
  共通リスト　list-cmn
==================================*/
/* 共通リスト１ */
/*===================================
  共通ボタン btn-cmn
===================================*/
/* 共通ボタン１ */
.btn-cmn01 {
    max-width: 180px;
    margin-top: 50px;
}
.btn-cmn01 a {
    display: block;
    padding: 5px 20px;
    color: #fff;
    text-align: center;
    background: #000;
    position: relative;
}
.btn-cmn01 a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 5px;
}
.btn-cmn01.btn-back a:after {
    content: "\f053";
    left: 5px;
    right: inherit;
}
/*===================================
  他共通エレメント -cmn
===================================*/
/*===================================
  共通要素
===================================*/
/*h1ページタイトル */
.pagettl {
    padding: 0 5px;
    font-size: 12px;
}
/**
ヘッダー
header
*/
.header .contents {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.header .logo a {
    display: inline-block;
}
.header .logo img {
    max-height: 100px;
}
.header .right {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}
.header .right .txt {
    margin-right: 10px;
    line-height: 120%;
}
.header .right .txtin {
    display: block;
}
.header .right .tel a {
    font-weight: bold;
    font-size: 30px;
}
.header .right .tel a:before {
    content: "\f879";
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 24px;
}
@media (max-width: 1024px) {
    .header .logo img {
        max-height: 65px;
    }
    .header .right {
        display: none;
    }
}
/* 下部固定コンテンツ */
.fix-bottom {
    display: none;
}
@media (max-width: 1024px) {
    .fix-bottom {
        width: 100%;
        display: -webkit-box;
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 250;
    }
    .fix-bottom .item {
        width: 50%;
        text-align: center;
    }
    .fix-bottom a {
        height: 100%;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        padding: 10px 5px;
    }
    .fix-bottom .tel {
        font-size: 14px;
        color: #fff;
        background: #000;
    }
    .fix-bottom .tel a:before {
        content: "\f879";
        margin-right: 5px;
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
    }
    .fix-bottom .contact {
        color: #000;
        background: #eee;
    }
    .fix-bottom .contact a:before {
        content: "\f0e0";
        margin-right: 5px;
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
    }
}
/**
グローバルナビ
gnav
*/

#gnav {
    position: relative;
}

#gnav .bg-img {
    width: 100%;
    height: 330px;
    position: absolute;
    top: -50%;
    left: 0;
}

#gnav .bg-img.none {
    display: none;
}

#gnav .bg-img span {
    height: 100%;
}

#gnav .bg-img img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;

    -webkit-mask-image: url('/import/tenant_1/162.43.5.209/html/images/mt_41.webp');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url('/import/tenant_1/162.43.5.209/html/images/mt_41.webp');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.gnav {
    padding: 10px 0;
    position: relative;
    z-index: 100;
}
.gnav.fixed {
    width: 100%;
    height: auto;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt_370.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 5px 0 #999;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}
.gnav .wrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}
.gnav .navlogo {
    display: none;
}
.gnav .navlogo img {
    max-height: 40px;
}
.gnav .list01 {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gnav .item01 {
    padding: 0px 40px;
    font-size: 16px;
    text-align: center;
    border-right: solid 1px #fff;
}
.gnav .item01 .t-box {
    color: #fff;
}
.gnav .item01 .t-box .ja {
    letter-spacing: 3px;
}
.gnav .item01.f {
    border-left: solid 1px #fff;
}
.gnav .item01>a,
.gnav .item01 .itemin {
    display: block;
    cursor: pointer;
}
.gnav .item01.-parent {
    position: relative;
}
.gnav .item01.-parent:hover .list02 {
    visibility: visible;
    opacity: 1;
}
.gnav .list02 {
    width: 250px;
    visibility: hidden;
    padding: 20px;
    border: 3px solid var(--c-01);
    border-radius: 20px;
    background: #fff;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 100%;
    left: 50%;
}
.gnav .list02.new{
      width: 500px;
}
.gnav .list02 .drop-item{
      background: var(--c-09);
    padding: 10px;
    width: 48%;
    border-radius: 10px;
}

.gnav .list02 .drop-item.new{
  background: none;
  padding: 0;
}

.gnav .list02 .drop-item.new .drop-item{
  width: 100%;
}
.gnav .item02 a {
    display: block;
    padding: 5px;
}
.gnav .list01 .t-box .img {
    max-width: 30px;
    margin: 0 auto 10px;
}

.gnav .list01 .t-box .img img {
    object-fit: contain;
}

.gnav .item02 a {
    display: block;
    padding: 5px;
    font-size: 15px;
    text-align: left;
    -webkit-transform: rotateZ(0.03deg);
    transform: rotateZ(0.03deg);
}

.gnav .item02 a::before {
    content: "\f138";
    margin-right: 5px;
    font-family: "font awesome 5 free";
    font-weight: bold;
    color: var(--c-01);
}
@media (max-width: 1024px) {
    .gnav {
        width: 100%;
        max-width: 300px;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding: 50px 0;
        background: var(--c-01);
        -webkit-transition: -webkit-transform ease 0.5s;
        transition: -webkit-transform ease 0.5s;
        transition: transform ease 0.5s;
        transition: transform ease 0.5s, -webkit-transform ease 0.5s;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        position: fixed;
        top: 0;
        right: 0;
    }
    .gnav.action {
        -webkit-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
        z-index: 250;
    }
    .gnav .wrap {
        padding-bottom: 100px;
    }
    .gnav .navlogo {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        padding-right: 40px;
        font-weight: bold;
        font-size: 20px;
    }
    .gnav .item01 {
        width: 100%;
        min-height: 40px;
        margin: 0 0 10px 0;
        padding: 5px 10px;
        text-align: left;
        border-bottom: solid 1px #fff;
        border-right: none;
    }
    .gnav .item01.logo {
        max-width: 250px;
        border-bottom: none;
    }
    .gnav .list02 {
        width: 100%;
        visibility: visible;
        padding-left: 20px;
        background: none;
        background: #fff;
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        position: relative;
        top: 0;
        left: 0;
    }
    .gnav .list01 .t-box .img {
        display: none;
    }
    .gnav .item01.f {
        border-left: none;
    }
    .gnav .list02 .drop-item,
    .gnav .list02.new{
      width: 100%;
    }
    .gnav .list02 .drop-item.new{
      display: contents;
    }
    .gnav .list02 .drop-item.new .drop-item.od1{
      order: 1;
    margin-top: 15px;
    }
}
[data-element-id] .gnav.fixed {
    position: relative;
}
/* ハンバーガーメニュー  */
.toggle {
    width: 42px;
    height: 42px;
    display: none;
    background: var(--c-01);
    opacity: 0.8;
    cursor: pointer;
    position: fixed !important;
    top: 0px;
    right: 0px;
    z-index: 251;
}
.toggle .bar {
    width: 28px;
    height: 2px;
    display: block;
    margin-top: -1px;
    padding: 0;
    text-indent: 9999px;
    background: #fff;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    position: absolute;
    top: 50%;
    left: 7px;
}
.toggle .bar:before,
.toggle .bar:after {
    content: "";
    width: 28px;
    height: 2px;
    display: block;
    background: #fff;
    position: absolute;
    left: 0;
}
.toggle .bar:before {
    top: -10px;
}
.toggle .bar:after {
    top: 10px;
}
.toggle.active .bar {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggle.active .bar:after,
.toggle.active .bar:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    left: 0;
}
@media (max-width: 1024px) {
    .toggle {
        display: block !important;
    }
}
.overlay {
    overflow: hidden;
}
.overlay:after {
    content: "";
    width: 100%;
    height: 100vh;
    background: #000;
    opacity: 0.3;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 249;
}
/*トップへ戻る*/
.totop {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--c-01);
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
}
.totop:before {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
@media (max-width: 1024px) {
    .totop {
        bottom: 70px;
        right: 10px;
    }
}
/**
フッター
footer
*/
.footer .copy {
    margin-top: -20px;
    padding: 50px 0 30px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer .copy .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer .copy .bg-img img {
    object-fit: fill;
}

@media (max-width: 1024px) {
    .footer .copy {
        padding-bottom: 100px;
    }
}
/**
フッターナビ
fnav
*/
.fnav {
    padding: 50px 0;
    background: #eee;
}
.fnav .wrap {
    display: -webkit-box;
    display: flex;
}
.fnav .list01 {
    width: 50%;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}
.fnav .item {
    margin-bottom: 10px;
    padding-right: 10px;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}
.fnav .item a {
    display: block;
    padding-left: 12px;
    position: relative;
}
.fnav .item a:before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 10px;
    left: 0;
}
.fnav .list02 {
    width: 50%;
}
.fnav .datawrap {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}
.fnav .datattl {
    margin-bottom: 10px;
    padding-left: 12px;
    position: relative;
}
.fnav .datattl:before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 10px;
    left: 0;
}
.fnav .data {
    margin-bottom: 5px;
    padding-right: 10px;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}
.fnav .data a {
    padding-left: 12px;
    position: relative;
}
.fnav .data a:before {
    content: "";
    width: 5px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    top: 7px;
    left: 0;
}
@media (max-width: 1024px) {
    .fnav .wrap {
        flex-wrap: wrap;
    }
    .fnav .list01 {
        width: 100%;
        margin-bottom: 10px;
    }
    .fnav .list02 {
        width: 100%;
    }
}
@media (max-width: 599px) {
    .fnav .list01 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
    .fnav .datawrap {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}
/**
2カラムページ
*/
.column2 .inner {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.column2 .side {
    width: 200px;
}
.column2 .mainwrap {
    width: calc(100% - 250px);
}
@media (max-width: 1024px) {
    .column2 .inner {
        flex-wrap: wrap;
    }
    .column2 .side {
        width: 100%;
        -webkit-box-ordinal-group: 4;
        order: 3;
        margin-bottom: 50px;
    }
    .column2 .mainwrap {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        order: 2;
        margin-bottom: 50px;
    }
}
/* サイドメニュー */
.side .list {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .side {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .side .list {
        width: 48%;
    }
}
@media (max-width: 599px) {
    .side .list {
        width: 100%;
    }
}
.list-side .datattl {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border-radius: 2em;
    background: #000;
    position: relative;
}
.list-side .data {
    margin-bottom: 10px;
    padding-left: 10px;
}
.list-side a {
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
.list-side a:before {
    content: ">";
    color: #000;
    position: absolute;
    left: 0;
}
@media (max-width: 1024px) {
    .list-side.type-archive .datawrap {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .list-side.type-archive .datawrap .datattl {
        width: 100%;
    }
    .list-side.type-archive .datawrap .data {
        width: 48%;
    }
}
/*===================================
  各個別コンテンツ
===================================*/
/**
トップ
*/
/*ホームビジュアル（トップ）*/
.homevisual {
    position: relative;
}
.homevisual .img {
    max-height: 800px;
    position: relative;
}
.homevisual .img:before {
    content: "";
    display: block;
    padding-top: 50%;
    position: relative;
    z-index: -1;
}
.homevisual .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
    position: absolute;
    top: 0;
    left: 0;
}
/*IE対策*/
.homevisual .head {
    font-size: 36px;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute !important;
    top: 20%;
    left: 50%;
}
.homevisual .head .sb {
    margin-top: 30px;
    font-size: 16px;
}
@media (max-width: 599px) {
    .homevisual .head {
        font-size: 24px;
        top: 20%;
    }
    .homevisual .head .sb {
        margin-top: 10px;
        font-size: 14px;
    }
}
/* A-BiSUスライダー用 */
.mainimg {
    overflow: hidden;
    position: relative;
}
.mainimg img {
    width: 100%;
}
.mainimg .uk-slidenav-position {
    min-height: 300px;
    overflow: hidden;
    position: relative;
}
.mainimg .uk-slidenav-position:after {
    content: "";
    display: block;
    padding-top: 50%;
}
.mainimg .uk-slideshow {
    height: 100% !important;
    position: absolute;
    top: 0;
}
.mainimg .uk-slideshow li {
    height: 100% !important;
}
.mainimg .uk-slideshow .uk-flex {
    height: 100%;
}
.mainimg .uk-slideshow img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
}
/*IE対策*/
/* スリックスライダー（トップ） */
.slick01 {
    padding: 0 20px;
}
.slick01.slick-dotted {
    margin-bottom: 50px;
}
.slick01 .btn-slick {
    font-size: 30px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    z-index: 1;
}
.slick01 .btn-slick.btn-back {
    left: 0;
}
.slick01 .btn-slick.btn-next {
    right: 0;
}
.slick01 .slick-dots {
    bottom: -40px;
    left: 0;
}
@media (max-width: 599px) {
    .slick01 {
        padding: 0 10px;
    }
    .slick01 .btn-slick {
        font-size: 20px;
    }
}
/**
下層共通
*/
/* トップビジュアル（下層共通） */
.topvisual {
    position: relative;
}
.topvisual .img {
    min-height: 200px;
    max-height: 550px;
    position: relative;
}
.topvisual .img:before {
    content: "";
    display: block;
    padding-top: 40%;
    position: relative;
    z-index: -1;
}
.topvisual .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%;";
    position: absolute;
    top: 0;
    left: 0;
}
.topvisual .head {
    width: 96%;
    max-width: 1000px;
    font-weight: bold;
    font-size: 44px;
    color: var(--c-01);
    text-align: center;
    text-shadow: 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute !important;
    top: 50%;
    left: 50%;
}
@media (max-width: 599px) {
    .topvisual .head {
        font-size: 24px;
    }
}
/* パンくずリスト */
.breadcrumbs {
    padding: 30px 0;
    padding-top: 150px;
    z-index: 1;
    position: relative;
}

.breadcrumbs-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.breadcrumbs-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.breadcrumbs-list li {
    display: inline;
    font-size: 14px;
    letter-spacing: 1px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage a {
    font-weight: bold;
    color: var(--c-01);
}

.breadcrumbs-list li+li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: 0 10px 0 0px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .breadcrumbs {
        padding: 20px 0;
        font-size: 14px;
    }

    .breadcrumbs-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        align-items: flex-start;
        -ms-flex-align: start;
    }

    .breadcrumbs-list {
        width: 90%;
    }

    .breadcrumbs li {
        font-size: 12px;
    }

    .breadcrumbs li+li::before {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 599px) {
    .breadcrumbs {
        padding: 15px 0;
        font-size: 12px;
    }

    .breadcrumbs li+li::before {
        width: 6px;
        height: 6px;
    }
}
/* ページネーション */
.pagenation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagenation .item {
    margin: 0 10px;
}
.pagenation .prev {
    position: relative;
}
.pagenation .prev a:before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}
.pagenation .next {
    position: relative;
}
.pagenation .next a:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}
.pagenation a,
.pagenation .now {
    font-weight: bold;
}
.pagenation .number a,
.pagenation .now,
.pagenation .next a,
.pagenation .prev a {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2px 8px;
    font-size: 20px;
    color: #000;
    text-align: center;
    border-radius: 50%;
}
.pagenation .number a:hover,
.pagenation .next a:hover,
.pagenation .prev a:hover,
.pagenation .now {
    color: #fff;
    background: var(--c-01);
    opacity: 1;
}
@media (max-width: 599px) {
    .pagenation .item {
        margin: 0 5px;
    }
    .pagenation .prev {
        margin-right: 10px;
    }
    .pagenation .next {
        margin-left: 10px;
    }
}
/**
各下層ページ
*/
/* 記事一覧ページ */
.list-article .cate span {
    display: inline-block;
    margin: 0 5px 2px 0px;
    padding: 0 5px;
    color: #fff;
    background: #000;
}
.list-article .cate .cate1 {
    background: #00f;
}
/* 記事詳細ページ */
.articledtl01 .cate span {
    display: inline-block;
    margin: 0 5px 2px 0px;
    padding: 0 5px;
    color: #fff;
    background: #000;
}
.articledtl01 .cate .cate1 {
    background: #00f;
}
/* ギャラリー */
.list-gallery01 a {
    display: block;
    position: relative;
}
.list-gallery01 .img {
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.list-gallery01 .block-txt {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    visibility: hidden;
    overflow: hidden;
    padding: 10px;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
}
.list-gallery01 .cate {
    margin-bottom: 5px;
    font-size: 14px;
}
.list-gallery01 .head {
    font-size: 18px;
}
.list-gallery01 a:hover {
    opacity: 1;
}
.list-gallery01 a:hover .img {
    opacity: 0.5;
}
.list-gallery01 a:hover .block-txt {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 599px) {
    .list-gallery01 .block-txt {
        display: none;
    }
    .list-gallery01 .head {
        font-size: 14px;
    }
}
/* ギャラリー詳細 */
.gallerydtl01 .thumbnail {
    cursor: pointer;
}
/* フォーム */
.form .box {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    padding: 20px 0;
    border-bottom: 2px solid #999;
}
.form .datattl {
    width: 200px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-shrink: 0;
    font-weight: bold;
    color: #000;
}
.form .require {
    display: inline-block;
    margin-left: 10px;
    padding: 0 4px;
    font-size: 14px;
    color: #fff;
    line-height: 1.6em;
    background: #000;
}
.form .data {
    width: 100%;
    padding-left: 50px;
}
.form .data input {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #999;
}
.form .data input[type="radio"] {
    display: none;
}
.form .data input[type="radio"]+label {
    margin-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
    line-height: 200%;
    position: relative;
}
.form .data input[type="radio"]+label::before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border: 1px solid #303841;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 1px 1px 0 1px #999;
    position: absolute;
    top: 4px;
    left: 0;
}
.form .data input[type="radio"]:checked+label::after {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #303841;
    position: absolute;
    top: 7px;
    left: 3px;
}
.form .data input[type="radio"]:checked+label {
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.form .data input[type="number"] {
    width: 70px;
    margin-right: 10px;
}
.form .data select {
    padding: 5px;
    box-sizing: border-box;
    color: inherit;
    border: 1px solid #999;
}
.form .data textarea {
    width: 100%;
    height: 170px;
    padding: 5px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 1px solid #999;
}
.form .data01 div {
    display: inline-block;
}
.form .btn {
    margin-top: 30px;
}
.form .btn button {
    width: 200px;
    margin: 10px 20px;
    padding: 0.2em;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 2em;
    background: #000;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.form .btn button:hover {
    opacity: 0.6;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .form .item {
        flex-wrap: wrap;
    }
    .form .datattl {
        display: block;
        margin-bottom: 10px;
    }
    .form .data {
        padding-left: 0;
    }
}

/*# sourceMappingURL=style.css.map */

.formitem dd input[type="radio"] {
    padding-left: 50px;
}

.formitem dd input[type="radio"]+label::before {
    content: "";
    width: 25px;
    height: 25px;
    border: 2px solid var(--c-01);
    border-radius: 5px;
    background: #fff;
    position: absolute;
    top: 5px;
    left: 0;
}

.formitem dd input[type="radio"] label:hover {
    cursor: pointer;
}

.formitem dd input[type="radio"] {
    display: none;
}

.formitem dd input[type="radio"]:checked+label::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: var(--c-01);
    position: absolute;
    top: 5px;
    left: 4px;
    z-index: 1;
}

.formitem dd input[type="radio"]+label {
    display: inline-block;
    margin-left: 10px;
    padding: 5px 10px 5px 35px;
    position: relative;
}

.detail-content-text h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0.5em;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 2px;
    border-bottom: 3px solid  var(--c-01);
}

.detail-content-text h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0.5em 1em;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    background: var(--c-01);
}

.detail-content-text h4 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    color: var(--c-01);
    letter-spacing: 2px;
}
.detail-content-text ol {
    counter-reset: count 0;
}
.detail-content-text ol li {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    position: relative;
}
.detail-content-text ol li::before {
    content: counter(count) ". ";
    display: inline-block;
    counter-increment: count 1;
    color: var(--c-01);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}
.detail-content-text ul li {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    position: relative;
}

.detail-content-text ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    background: var(--c-01);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}
.detail-content-text ol li marker {
    display: none;
}

.detail-content-text iframe[src*="youtube"] {
    height: 100%;
    margin-top: 30px;

    aspect-ratio: 16 / 9;
}

.text-02 {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: inherit;

    -webkit-line-clamp: 2;
}

.d-none-tb,
.d-none-sp {
    display: block;
}
.d-b-tb,
.d-b-sp {
    display: none;
}
@media (max-width: 1024px) {
    .d-b-tb {
        display: block;
    }
    .d-none-tb {
        display: none;
    }
}
@media (max-width: 599px) {
    .d-none-sp {
        display: none;
    }
    .d-b-sp {
        display: block;
    }
    [class*="up-gapy-"]>*:last-child {
        padding-bottom: 0;
    }
}

.l-text2 {
    letter-spacing: 2px;
}
.l-text3 {
    letter-spacing: 3px;
}

.h-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h-box .l-box {
    flex-grow: 1;
    margin-right: 30px;
}
.h-box .r-box {
    max-width: 440px;
    flex-shrink: 0;
}

.h-box .tel-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    color: #fff;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt_49.webp');
    background-size: cover;
    background-position: center;
}

.h-box .tel-area .tel {
    width: 100%;
    margin-top: 10px;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.4;
    letter-spacing: 3px;
    text-align: center;
}

.h-box .tel-area .tel a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-box .tel-area .tel .img {
    max-width: 25px;
    margin-right: 15px;
    line-height: 0;
}

.h-box .add {
    padding: 5px 15px;
    font-size: 15px;
    letter-spacing: 3px;
    background: var(--c-02);
}

.h1-box {
    display: none;
}

.cats-btn {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 2%;
    z-index: 100;
}

.top-m .cats-btn {
  top: 50%;
}
 
.cats-btn.fix {
    transform: none;
    position: fixed;
    top: 40%;
    left: 0px;
}

.cats-btn.fix a {
    width: 140px;
    height: 140px;
}

.cats-btn.fix a>* {
    scale: 0.9;
}

.cats-btn.fix a::after {
    bottom: 10px;
}

.cats-btn .img {
    margin-bottom: 15px;
}

.cats-btn a {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    border-radius: 50%;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt_51.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cats-btn a::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    transform: translateX(-50%);
    position: absolute;
    bottom: 15px;
    left: 50%;
}

.cats-btn .item02 a {
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt_20.webp');
}

.cats-btn .item03 a {
    background-image: url('/upload/tenant_1/bg-3.webp');
}

.cats-btn a .sb-text {
    margin-top: 10px;
    padding: 3px 15px;
    font-weight: bold;
    font-size: 12px;
    color: var(--c-04);
    border-radius: 9999px;
    background: #fff;
}

.bg-01 {
    padding-top: 250px;
    background: var(--c-05);
}

.news-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.news-box {
    width: 50%;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
}

.news-box li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px;
}

.news-box .img-btn {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -70px;
    margin-bottom: 30px;
}

.news-box .img-btn .imgs {
    width: 150px;
    height: 150px;
    padding: 30px;
    border-radius: 10px;
    background: var(--c-06);
}

.news-box .img-btn .imgs img {
    max-width: 60px;
}

.news-box .img-btn .text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    font-weight: bold;
}

.news-box .img-btn .text-box .ja {
    font-size: 18px;
    letter-spacing: 2px;
}

.news-box .img-btn .btn a {
    margin-right: 30px;
    padding-bottom: 5px;
    color: var(--c-01);
    border-bottom: solid 1px var(--c-01);
    position: relative;
}

.news-box .img-btn .btn .img {
    width: 25px;
    height: 25px;
    padding: 5px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 0;
    right: -30px;
}

.news-box .item {
    display: flex;    
    flex-wrap: wrap;
}

.news-box .item .cat-area {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-right: 30px;
}

.news-box .item .cat-area .data {
    margin-right: 15px;
    letter-spacing: 3px;
    flex-shrink: 0;
}

.news-box .item .cat-area .cat span {
    padding: 0 5px;
    color: #fff;
    background: var(--c-01);
}

.ttl-deta{
      margin-bottom: 10px;
    padding-left: 15px;
    font-weight: bold;
    font-size: 20px;
    border-left: solid 5px var(--c-01);
}

.cal-box {
    width: 40%;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
}

.m-ttl {
    color: var(--c-03);
    text-align: center;
}

.m-ttl.c-w {
    color: #fff;
}

.m-ttl .ja {
    font-weight: bold;
    font-size: 40px;
}

.m-ttl .en {
    font-size: 28px;
}

.m-ttl .en::first-letter {
    text-transform: capitalize;
}

.cone-area {
    overflow: hidden;
    position: relative;
}

[class*="s-img"] {
    pointer-events: none;
    position: absolute;
}

.cone-area .m-logo {
    max-width: 200px;
    margin: 0 auto 50px;
}

.cone-area .s-img01 {
    max-width: 640px;
    transform: translateX(-50%);
    top: -15%;
    left: 53%;
}

.cone-area .s-img02 {
    max-width: 220px;
    top: 50%;
    left: 10%;
}

.cone-area .s-img03 {
    max-width: 215px;
    top: 60%;
    right: 10%;
}

.cone-area .s-img04 {
    max-width: 170px;
    top: 80%;
    left: 15%;
}

.hours-area {
    overflow: hidden;
    padding-top: 200px;
    position: relative;
}

.hours-area.new {
    margin-top: -150px;
    margin-bottom: -150px;
    padding-bottom: 200px;
}

.hours-area .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hours-area .bg-img img {
    object-fit: fill;
}

.hours-area.new .bg-img img {
    object-fit: cover;
}

.hours-area .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hours-area .box .border-b {
    padding: 10px;
    border-bottom: dotted 2px var(--c-02);
}

.hours-area .box .border-b:first-child {
    border-top: dotted 2px var(--c-02);
}
.hours-area .box .con {
    width: 30%;
}
.hours-area .box .time-area {
    width: 60%;
}

.hours-area .btn a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 22px;
    text-align: center;
    border-radius: 15px;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt02_2.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 3px 3px 10px #ababab;
}

.hours-area .btn.item02 {
    position: relative;
}

.hours-area .btn.item02 .s-img {
    max-width: 200px;
    position: absolute;
    top: -60%;
    right: -2%;
}

.hours-area .btn.item02 a {
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt02_1.webp');
}

.hours-area .btn a .t-box .ja {
    letter-spacing: 3px;
}
.hours-area .btn a .f {
    border-left: solid 1px #fff;
}

.hours-area .btn a .t-box .img {
    max-width: 23px;
    margin: 0 auto 10px;
}

.hours-area .btn a .t-box .img img {
    object-fit: contain;
}


.time-area .time .table {
    width: 100%;
    border-collapse: collapse;
}
.time-area .time .datattl01 {
    padding: 15px;
}
.time-area .time .datattl02,
.time-area .time .data {
    padding: 15px;
}
.time-area .time .data {
    color: var(--c-07);
    text-align: center;
}

.time-area .time .thead {
    border-top: solid 1px var(--c-02);
    border-bottom: solid 1px var(--c-02);
}
.time-area .time .tbody .item {
    border-bottom: solid 1px var(--c-02);
}
table th {
    font-weight: 500;
}

.pa-100 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-area {
    margin-bottom: -200px;
    background: #fff;
}

.contact-area .up-p-100 {
    padding-bottom: 300px;
}

.contact-area .b-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-area .b-box>div {
    width: 48%;
}

.opa-6 {
    opacity: 0.6;
}

.contact-area .b-box .img {
    overflow: hidden;
    border-radius: 50%;
}

.contact-area .b-box .item01 {
    margin-bottom: 10px;
}

.contact-area .b-box .item01 .img,
.contact-area .b-box .item02 .img {
    width: 30%;
}

.contact-area .b-box .item01 a,
.contact-area .b-box .item02 a {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-size: 22px;
    color: #fff;
    border-radius: 15px;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt02_1.webp');
    background-size: cover;
    background-position: center;
}

.contact-area .b-box .item01 .text-area,
.contact-area .b-box .item02 .text-area {
    width: 65%;
}

.contact-area .b-box .text-area .sb-ttl {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: solid 2px;
}

.news-box.blog .img-btn {
    margin-top: 0px;
}

.news-box.blog .img-btn .text-box {
    align-items: flex-start;
    padding-left: 15px;
    border-left: solid 5px var(--c-01);
}

.news-box.blog .item .cat-area .cat span {
    background: var(--c-07);
}

.feature-area {
    overflow: hidden;
    padding-top: 200px;
    position: relative;
}

.feature-area .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.feature-area .bg-img img {
    object-fit: fill;
}

.feature-area .inner {
    position: relative;
    z-index: 1;
}

.feature-area .box {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
}

.feature-area .sb-ttl {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 30px;
    color: var(--c-01);
    text-align: center;
    position: relative;
}

.feature-area .sb-ttl::after {
    content: "";
    width: 70px;
    height: 1px;
    background: var(--c-01);
    transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 50%;
}

.feature-area .ttl {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 2;
    text-align: center;
}

.feature-area .img {
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 15px;
}

.feature-area .text {
    margin-bottom: 30px;
    font-size: 14px;
}

.feature-area .s-img01 {
    max-width: 160px;
    top: 0;
    left: 0%;
}

.feature-area .s-img02 {
    max-width: 207px;
    top: 0;
    right: 0;
}

.m-btn .img {
    width: 20px;
    margin-bottom: 0;
    margin-right: 10px;
    line-height: 0;
}

.m-btn a,
.m-btn button {
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 15px;
    color: #fff;
    text-align: center;
    border-radius: 9999px;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt02_2.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 3px 3px 10px #ababab;
}

.m-btn.big a{
   max-width:400px;
}

.m-btn button {
    width: 100%;
    border: none;
}

.greeting-area {
    position: relative;
}

.greeting-area .img {
    padding-left: 65px;
    position: relative;
}

.greeting-area .img span {
    overflow: hidden;
    border-radius: 15px;
}

.greeting-area .img .sb-img {
    position: absolute;
    top: -80px;
    left: 0;
}

.greeting-area .name {
    margin-top: 30px;
    padding-left: 65px;
    font-size: 24px;
    letter-spacing: 3px;
    text-align: center;
}

.greeting-area .text {
    padding-bottom: 1px; /* 最終行の下にも罫線を引く */
    line-height: 3em; /* 文字の高さ */
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), /* 点線1の色 */
    linear-gradient(180deg, var(--c-02) 1px, transparent 1px); /* 点線2の色と太さ */
    background-size: 8px 100%, /* 点線1のサイズ */
    100% 3em; /* 点線2のサイズ */
    background-color: #fff; /* 背景色 */
    position: relative;
}

.greeting-area .text::after {
    content: "";
    width: 100%;
    border-top: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.greeting-area .s-img01 {
    max-width: 320px;
    pointer-events: none;
    top: 10%;
    right: 5%;
}

.greeting-area .s-img02 {
    max-width: 320px;
    pointer-events: none;
    top: 55%;
    right: 25%;
}

.medical-area {
    position: relative;
}

.medical-area .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.medical-area .bg-img img {
    object-fit: fill;
}

.medical-area .inner {
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.medical-area .card-01 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
}
.medical-area .card-01 li {
    width: 100%;
    max-width: 300px;
}

.medical-area .card-01 li a {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 30px;
    border-radius: 50%;
    background: #fff;
}

.medical-area .card-01 li .img {
    max-width: 79px;
    margin: 0 auto 30px;
}

.medical-area .card-02 li .img {
    max-width: 50px;
    margin: 0 auto 20px;
}

.medical-area li .text-box {
    text-align: center;
}

.medical-area li .ja {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 24px;
}

.medical-area li .en {
    font-size: 22px;
}

.medical-area .card-02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 50px;
}

.medical-area .card-02 li {
    width: 100%;
    max-width: 230px;
    margin: 0 50px 50px;
}

.medical-area .card-02 li a {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 30px;
    border-radius: 50%;
    background: #fff;
}

.medical-area .card-03 .ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
}
.medical-area .card-03 .ttl .img {
    width: 20px;
    margin-bottom: 0;
    margin-right: 10px;
    line-height: 0;
}

.medical-area .card-03 .box {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.medical-area .card-03 .text {
    width: 100%;
    padding: 10px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;;
}

.medical-area .card-03 .text::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--c-01);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.slick02 li {
    overflow: hidden;
    margin: 0 10px;
    border-radius: 15px;
}

.pick-area {
    position: relative;
}

.pick-area .inner {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.pick-area .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pick-area .bg-img img {
    object-fit: fill;
}

.pick-area a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: var(--c-01);
    position: relative;
}

.pick-area a .text-area {
    width: 100%;
    padding: 0 10px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    transform: translateX(-50%);
    position: absolute;
    bottom: 10px;
    left: 50%;
}

.pick-area a .text-area .ja {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pick-area a .text-area .ja .img {
    width: 20px;
    margin-bottom: 0;
    margin-right: 10px;
    line-height: 0;
    opacity: 1;
}

.pick-area a .text-area .en {
    color: #fcee21;
}

.pick-area a .img {
    opacity: 0.5;
}

.pick-area a .sb-img {
    max-width: 13px;
    position: absolute;
    bottom: 0px;
    right: 10px;
}

.pick-area .s-img01 {
    max-width: 215px;
    top: 7%;
    left: -5%;
}

.pick-area .s-img02 {
    max-width: 138px;
    bottom: -5%;
    right: -5%;
}
.pick-area.p-02 .s-img01 {
    max-width: 150px;
}
.pick-area.p-02 .s-img02 {
    max-width: 100px;
    bottom: -10%;
}

.qa-container {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
}
.qa-container:last-of-type {
    padding-bottom: 0;
}

.qa-container .m3 {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 24px;
    border-bottom: solid 3px #dfede3;
    position: relative;
}
.qa-container .m3::before {
    content: "";
    width: 20%;
    height: 3px;
    display: block;
    background-color: var(--c-01);
    position: absolute;
    bottom: -3px;
    left: 0;
}

.qa-list:not(:first-child) {
    margin-top: 20px;
}

.question-title {
    padding: 30px 65px;
    font-size: 16px;
    border-radius: 10px;
    background: var(--c-08);
    cursor: pointer;
    position: relative;
}

.question-title:before {
    content: "Q";
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 26px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--c-01);
    position: absolute;
    top: 20px;
    left: 12px;
}


.answer-text {
    display: none;
    margin-top: 10px;
    padding: 30px 65px;
    border-radius: 10px;
    background: var(--c-05);
    position: relative;
}

.answer-text:before {
    content: "A";
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 26px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--c-07);
    position: absolute;
    top: 20px;
    left: 12px;
}

.plmi span::before,
.plmi span::after {
    content: "";
    width: 15px;
    height: 3px;
    display: block;
    border-radius: 5px;
    background: var(--c-01);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 30px;
}

.plmi span::after {
    background: var(--c-01);
    transition: 0.5s;
    transform: translateY(-50%) rotate(90deg);
}

.open .plmi span::after {
    transition: 0.5s;
    transform: translateY(-50%) rotate(0);
}

.faq-area {
    position: relative;
}

.faq-area .s-img01 {
    max-width: 290px;
    bottom: -10%;
    left: 5%;
    z-index: -1;
}

.overview {
    margin-top: 100px;
    position: relative;
}

.overview .inner {
    position: relative;
    z-index: 1;
}

.overview .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.overview .bg-img img {
    object-fit: fill;
}

.overview .map {
    margin-top: -200px;
    margin-bottom: 80px;
    padding-top: 30%;
    border-radius: 10px;
}

.overview .table-cmp02 {
    color: #fff;
}

.overview .box {
    color: #fff;
}

.overview .f-btn {
    display: flex;
}

.overview .f-btn .btn {
    width: 100%;
    max-width: 230px;
    margin-right: 15px;
}

.overview .f-btn .btn a {
    color: #406788;
    border: solid 1px #fff;
    background: #fff;
}

.overview .f-btn .btn a:hover {
    color: #fff;
    background: #406788;
}

.overview .tel a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 40px;
    color: #fff;
    letter-spacing: 5px;
}

.overview .tel a::before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    margin-right: 15px;
    border-radius: 50%;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt-tel.webp');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
}

.overview .time-area,
.overview .time-area .time .data {
    color: #fff;
}

.overview .time-area .time .tbody .item {
    border-bottom: solid 1px #fff;
}


.overview .time-area .time .thead {
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
}

.footer .logo {
    max-width: 300px;
}

.footer .logo a {
    display: block;
}

.k-card {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px auto 0;
    padding: 15px 30px;
    border-radius: 30px;
    background: #fff;
}

.k-card .text {
    width: 28%;
    padding: 10px 0;
    border-right: solid 2px #ccc;
}

.k-card .img {
    width: 65%;
    max-width: 500px;
}

.s-m li {
    padding-left: 1.5em;
    position: relative;
}

.s-m li::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 6px;
    left: 0;
}

.f-nav {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.f-nav li {
    margin-bottom: 20px;
}

.f-nav .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.f-nav .bg-img img {
    object-fit: fill;
}

.f-nav .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 50px;
    position: relative;
    z-index: 1;
}

.f-nav .box01,
.f-nav .box02 {
    width: 48%;
}

.f-nav .box02 .s-ttl {
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-left: 1.5em;
    border-bottom: solid 1px;
    position: relative;
}

.f-nav .box02 .s-ttl::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 6px;
    left: 0;
}

.f-nav .box02 .s-ttl .img {
    max-width: 168px;
    position: absolute;
    bottom: -15px;
    right: 0;
}


@media (max-width: 1024px) {
    .cats-btn,
    .top-m .cats-btn{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none;
        position: fixed;
        top: initial;
        bottom: 0;
        left: 0;
        z-index: 100;
    }
    .cats-btn>div {
        width: 33.33%;
    }
    .cats-btn a {
        width: 100%;
        height: 100%;
        height: 60px;
        flex-wrap: wrap;
        flex-direction: row;
        align-content: center;
        border-radius: 0;
        background-image: url('/import/tenant_1/162.43.5.209/html/images/mt02_2.webp');
    }
    .cats-btn .item02 a {
        background-image: url('/import/tenant_1/162.43.5.209/html/images/mt02_1.webp');
    }
    .cats-btn .item03 a{
      background-image: url('/upload/tenant_1/bgc-cc.webp');
    }
    .cats-btn .img {
        margin-bottom: 0;
        margin-right: 15px;
    }
    .cats-btn a .sb-text {
                width: 90%;
        margin: 5px 10px 0;
    }
    .cats-btn a::after {
        transform: translate(0px, -50%);
        top: 50%;
        bottom: initial;
        left: initial;
        right: 5%;
    }
    #gnav .bg-img {
        display: none;
    }
    .bg-01 {
        padding-top: 100px;
    }
    .h-box .tel-area {
        display: none;
    }
    .news-box .img-btn {
        display: contents;
    }
    .news-box .img-btn .imgs {
        margin: -70px auto 30px;
    }

    .news-box .img-btn .btn {
        width: 100%;
        order: 1;
        margin-top: 30px;
        text-align: center;
    }

    .news-box {
        display: flex;
        flex-direction: column;
    }
    .cal-box {
        width: 45%;
    }
    .news-box .item {
        flex-wrap: wrap;
    }
    .news-box .item .cat-area {
        justify-content: flex-start;
        margin-bottom: 10px;
        margin-right: 0;
            flex-wrap: wrap;
    }
    .news-area {
        align-items: flex-start;
    }
    .hours-area .box .time-area {
        width: 55%;
    }
    .hours-area .box .con {
        width: 40%;
    }
    .time-area .time .datattl01 {
        padding: 15px 0px;
    }
    .time-area .time .datattl02,
    .time-area .time .data {
        padding: 15px 5px;
    }
    .contact-area .b-box,
    .news-box.blog {
        width: 100%;
    }

    .contact-area .b-box {
        display: flex;
        justify-content: space-between;
    }

    .contact-area .b-box>div {
        width: 48%;
    }

    .contact-area .b-box .item01 .img,
    .contact-area .b-box .item02 .img {
        max-width: 160px;
        margin: 0 auto -10px;
    }
    .contact-area .b-box .item01 .text-area,
    .contact-area .b-box .item02 .text-area {
        width: 100%;
        padding: 20px;
    }
    .contact-area .b-box .item01 a, 
    .contact-area .b-box .item02 a {
      padding: 15px;
    }
    .contact-area .b-box .text-area .sb-ttl{
      text-align: center;
    }
    .news-box.blog .img-btn .text-box {
        margin-top: 0;
        margin-bottom: 30px;
    }
    .medical-area .card-02 li {
        margin: 0 0px 50px;
    }
    .pick-area a .text-area {
        font-size: 18px;
    }
    .k-card .text {
        width: 35%;
    }
    .k-card .img {
        width: 60%;
        max-width: 500px;
    }
    .h-box .add {
        padding-top: 20px;
    }
    .hours-area .bg-img img {
        object-fit: cover;
    }
    .hours-area.new {
        margin-top: -150px;
    }
    .greeting-area .img .sb-img{
      top: -65px;
    left: 15px;
    max-width: 100px;
    }
}

@media (max-width: 599px) {
    .h-box {
        flex-wrap: wrap;
    }
    .h-box .l-box {
        margin-right: 0px;
    }
    .h-box .r-box {
        width: 100%;
        display: none;
    }
    .h-box .add {
        padding: 10px;
    }
    .pagettl {
        padding-right: 45px;
    }
    .header .logo {
        margin-bottom: 10px;
        text-align: center;
        display: none;
    }
    .homevisual .img:before {
        padding-top: 95%;
    }
    .news-box,
    .cal-box {
        width: 100%;
    }
    .cal-box {
        margin-top: 10px;
    }
    .m-ttl .ja {
        font-size: 26px;
    }
    .cone-area .s-img01 {
        max-width: 300px;
        top: -20px;
    }
    .cone-area .s-img02 {
        max-width: 120px;
    }
    .cone-area .s-img03 {
        max-width: 120px;
    }
    .hours-area .box .con,
    .hours-area .box .time-area {
        width: 100%;
    }
    .hours-area .box .con {
        margin-bottom: 30px;
    }
    .contact-area .b-box {
        flex-wrap: wrap;
    }
    .contact-area .b-box>div {
        width: 100%;
    }
    .contact-area .b-box .item02 {
        margin-bottom: 30px;
    }
    .bg-img img {
        object-fit: cover!important;
    }
    .hours-area {
        margin-top: -100px;
    }
    .hours-area.new {
        margin-top: 0px;
        padding-top: 30px;
    }
    .hours-area.new .bg-img {
        scale: 2;
    }
    .hours-area .btn.item02 .s-img {
        max-width: 150px;
        top: -45%;
    }
    .feature-area .s-img01,
    .feature-area .s-img02 {
        max-width: 80px;
        top: 90px;
    }
    .feature-area.ori .s-img01, 
    .feature-area.ori .s-img02{
      top: 0px;
    }
    .feature-area {
        padding-top: 100px;
    }
    .greeting-area .s-img01 {
        max-width: 120px;
        top: 60%;
    }
    .greeting-area .s-img02 {
        max-width: 120px;
        top: 70%;
    }
    .medical-area .card-01 li,
    .medical-area .card-02 li {
        max-width: 165px;
    }
    .medical-area .card-01 li a,
    .medical-area .card-02 li a {
        height: 165px;
        padding: 15px;
    }
    .medical-area .card-01 li .img,
    .medical-area .card-02 li .img {
        max-width: 50px;
        margin: 0 auto 10px;
    }
    .medical-area li .ja {
        font-size: 20px;
    }
    .medical-area li .en {
        font-size: 16px;
    }
    .medical-area .card-02 {
        margin-bottom: 0;
    }
    .pick-area .s-img01 {
        max-width: 85px;
        top: 0%;
        left: 0%;
    }
    .pick-area .s-img02 {
        max-width: 70px;
        right: 0;
    }
    .pick-area.p-02 .s-img01 {
        max-width: 85px;
    }
    .pick-area.p-02 .s-img02 {
        max-width: 70px;
        bottom: -5%;
        right: 0;
    }
    .pick-area a .text-area {
        padding: 0 5px;
        font-size: 15px;
    }
    .pick-area a .text-area .ja{
    font-size: 14px;
    }
    .faq-area .s-img01 {
        max-width: 150px;
        bottom: 0;
        left: 0%;
    }
    .overview .map {
        padding-top: 70%;
    }
    .k-card {
        width: 100%;
        flex-wrap: wrap;
    }
    .k-card .text,
    .k-card .img {
        width: 100%;
    }
    .k-card .text {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: solid 2px #ccc;
        border-right: 0;
    }
    .f-nav .box01,
    .f-nav .box02 {
        width: 100%;
    }

    .f-nav .box01 {
        margin-bottom: 50px;
    }
    .f-nav .box02 .s-ttl .img {
        max-width: 130px;
    }
    .cats-btn a .sb-text {
        display: none;
    }
    .cats-btn a::after {
        display: none;
    }
    .cats-btn .img {
        margin-bottom: 5px;
        margin-right: 0px;
    }
    .cats-btn .img img {
        max-height: 20px;
    }
    .cats-btn .text {
        width: 100%;
        font-size: 14px;
    }
    .f-nav {
        background: var(--c-05);
        margin-top: 0;
    }
    .f-nav .inner{
      padding-top: 0;
    }
    .medical-area .card-03 .ttl {
        font-size: 20px;
    }
    .medical-area {
        margin-top: -100px;
    }
    .greeting-area .name {
        margin-bottom: 30px;
        padding-left: 0;
    }
    .greeting-area .img .sb-img {
        max-width: 80px;
        top: -50px;
        left: 0;
    }
    .greeting-area .img {
        padding-left: 40px;
                width: 90%;
        margin: auto;
        padding-right: 40px;
    }
    .greeting-area.new [class*="s-img"] {
        display: none;
    }
    .contact-area .up-p-100 {
        padding: 50px 0 250px;
    }
}

/*装飾エフェクト*/
.deco-effect-01 {
    -webkit-animation: float-01 3s linear infinite;
    animation: float-01 3s linear infinite;
}

@-webkit-keyframes float-01 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes float-01 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.deco-effect-02 {
    opacity: 0;
    -webkit-filter: blur(2.4rem) brightness(1.3);
    filter: blur(2.4rem) brightness(1.3);
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: transform, filter, opacity;
    transition-property: transform, filter, opacity, -webkit-transform, -webkit-filter;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.deco-effect-02.mv {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation: fadein-object 1s 1 linear forwards;
    animation: fadein-object 1s 1 linear forwards;
}

@-webkit-keyframes late-open {
    to {
        opacity: 1;
        -webkit-filter: none;
        filter: none;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes late-open {
    to {
        opacity: 1;
        -webkit-filter: none;
        filter: none;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.deco-effect-03 {
    -webkit-transform-origin: bottom left 32px;
    transform-origin: bottom left 32px;
    -webkit-animation: swing02 linear 6s infinite;
    animation: swing02 linear 6s infinite;
}

.deco-effect-03.version-01 {
    -webkit-transform-origin: bottom left 32px;
    transform-origin: bottom left 32px;
    -webkit-animation: swing02 linear 10s infinite;
    animation: swing02 linear 10s infinite;
}

.deco-effect-03.version-02 {
    -webkit-transform-origin: bottom left 32px;
    transform-origin: bottom left 32px;
    -webkit-animation: swing02 linear 14s infinite;
    animation: swing02 linear 14s infinite;
}

@-webkit-keyframes swing02 {
    0%,
    50%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0vw);
        transform: rotate(0deg) translateX(0vw);
    }
    25% {
        -webkit-transform: rotate(5deg) translateX(-1vw);
        transform: rotate(5deg) translateX(-1vw);
    }
    75% {
        -webkit-transform: rotate(-5deg) translateX(1vw);
        transform: rotate(-5deg) translateX(1vw);
    }
}

@keyframes swing02 {
    0%,
    50%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0vw);
        transform: rotate(0deg) translateX(0vw);
    }
    25% {
        -webkit-transform: rotate(5deg) translateX(-1vw);
        transform: rotate(5deg) translateX(-1vw);
    }
    75% {
        -webkit-transform: rotate(-5deg) translateX(1vw);
        transform: rotate(-5deg) translateX(1vw);
    }
}

.deco-effect-04 {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-name: swing03;
    animation-name: swing03;
    -webkit-animation-duration: 4000ms;
    animation-duration: 4000ms;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-timing-function: steps(2, end);
    animation-timing-function: steps(2, end);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes swing03 {
    0%,
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

@keyframes swing03 {
    0%,
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

.deco-effect-05 {
    -webkit-animation: 5s linear infinite rotation01;
    animation: 15s linear infinite rotation01;
}

@-webkit-keyframes rotation01 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation01 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

[data-element-id] .deco-effect-01,
[data-element-id] .deco-effect-02,
[data-element-id] .deco-effect-03,
[data-element-id] .deco-effect-04,
[data-element-id] .deco-effect-05 {
    opacity: 1;
    filter: inherit;
    transform: inherit;
    -webkit-animation: inherit;
    animation: inherit;
}

.border15 {
    overflow: hidden;
    border-radius: 15px;
}

.check4 li {
    margin-bottom: 5px;
    padding-left: 1.5em;
    line-height: 2;
    position: relative;
}

.check4 li:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 10px;
    left: 0;
}

.check01 li {
    margin-bottom: 5px;
    padding-left: 1em;
    line-height: 2;
    position: relative;
}

.check01 li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-04);
    position: absolute;
    top: 15px;
    left: 0;
}

.check li {
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 18px;
    line-height: 2;
    position: relative;
}

.check li:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 8px;
    left: 0;
}

.check li:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 4px;
    left: 5px;
}

.text-l {
    margin-bottom: 10px;
    padding-left: 15px;
    font-weight: bold;
    font-size: 20px;
    border-left: solid 5px var(--c-01);
}

.c-logo-box {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 3px 3px 10px #ababab;
}

.s-headline {
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 20px;
    border-bottom: dashed 2px var(--c-01);
}
.s-headline2 {
    display: inline-block;
    margin-bottom: 10px;
    padding: 0.1rem 1rem;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    letter-spacing: 5px;
    white-space: nowrap;
    border-radius: 10px;
    background: var(--c-01);
}
.s-headline2:after {
    content: " ";
    margin-left: -5px;
}
.s-headline3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    font-size: 20px;
    border-bottom: dashed 2px var(--c-01);
    position: relative;
}
.s-headline3::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 8px;
    left: 0;
}
.s-headline4 {
    margin-bottom: 30px;
    padding: 0.4em 0.5em;
    font-weight: bold;
    font-size: 28px;
    color: white;
    letter-spacing: 3px;
    border-left: solid 5px var(--c-02);
    background: var(--c-01);
}

.table-01 {
    width: 100%;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 10px;
}

.table-01 tr {
    display: flex;
    flex-wrap: wrap;
}

.table-01 tr th,
.table-01 tr td {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 15px 40px;
    font-size: 18px;
    line-height: 2;
    text-align: center;
    text-align: left;
}
.table-01 tr th.new,
.table-01 tr td.new {
    width: 33.33%;
}

.table-01 tr .table-title {
    color: white;
    border-bottom: solid 1px #fff;
    background: var(--c-07);
}

.table-01 tr:last-child .table-title {
    border-bottom: none;
}

.table-01 tr td {
    border-bottom: solid 1px var(--c-02);
    background: #fff;
}

.table-01.new tr td {
    background: var(--c-09);
}

.table-01 tr:last-child td {
    border-bottom: none;
}

.table-02 {
    width: 100%;
    min-width: 800px;
    table-layout: fixed;
    overflow: hidden;
    border-collapse: collapse;
    border-radius: 30px;
    background-color: white;
}

.table-02 tr th,
.table-02 tr td {
    width: calc(100% / 2);
    padding: 1em;
    font-size: 18px;
}

.table-02 tr th {
    color: white;
    background-color: var(--c-01);
}

.table-02 tr .table-title {
    background-color: #ffe4cf;
}

.table-02 tr:nth-of-type(n+2) {
    border-top: 1px solid #fff;
}

.table-02 tr th+th {
    border-left: 1px solid #fff;
}

.table-02 tr:not(:last-child)  td+td {
    border-bottom: solid 1px #ffe4cf;
}

.c-sbttl {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    color: var(--c-01);
}

@media(max-width:599px) {
    .c-sbttl {
        font-size: 18px;
    }
    .text-l {
        font-size: 18px;
    }
    .table-01 tr th,
    .table-01 tr td {
        width: 60%;
            padding: 15px 10px;
    font-size: 16px;
        align-items: center;
    justify-content: center;
    }
    .table-01 tr .table-title{
      width: 40%;
    }
}

.cmn-flow-02 li+li {
    margin-top: 50px;
}

.tel-box a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 40px;
    color: var(--c-01);
    letter-spacing: 5px;
}

.tel-box a::before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    margin-right: 15px;
    border-radius: 50%;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt-tel.webp');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
}

.information .box {
    overflow: hidden;
    border: 1px solid var(--c-01);
    border-radius: 15px;
}

.information .box.new {
    padding: 0;
}

.information .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.information .item>* {
    padding: 20px;
}

.information .item .tit {
    width: 220px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 3px;
    background: var(--c-01);
}

.information .item+.item .tit {
    border-top: 1px solid #fff;
}

.information .item .txt {
    width: calc(100% - 220px);
    background: #fff;
}

.information .item+.item .txt {
    border-top: 1px solid var(--c-01);
}

.information .item+.item .txt a {
    border-radius: 0;
    background: none;
}


@media(max-width:599px) {
    .information .item .tit,
    .information .item .txt {
        width: 100%;
    }
    .tel-box a{
      font-size: 28px;
    }
}

.equipment-area {
    margin-bottom: -150px;
    padding-bottom: 200px;
}

.equipment-area .box {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 3px 3px 10px #ababab;
}

.d-box {
    padding: 30px;
    outline: 2px dashed white;
    outline-offset: -10px;
    border-radius: 15px;
    background: var(--c-08);
}

.access-area .map {
    margin-bottom: 30px;
    border-radius: 10px;
}

.blog-area .news-box {
    width: 100%;
}

.blog-box .item {
    padding: 10px;
    border-radius: 10px;
    background: #fff;
}

.blog-box .item .cat-area .data {
    margin-bottom: 10px;
}

.cat span {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 3px 5px;
    font-size: 14px;
    color: white;
    background: var(--c-07);
}

@media(max-width:599px) {
    .blog-box .only-sp-sld li {
        margin: 0 10px;
    }
}

.layout-list01 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    padding: 30px 20px;
    border-top: 2px solid var(--c-01);
}
.layout-list01 .item.up-d-none {
    display: none;
}

.layout-list01 .item:last-of-type {
    border-bottom: 2px solid var(--c-01);
}

.layout-list01 .box a {
    display: block;
    padding: 30px;
    border: 2px solid var(--c-01);
}

.layout-list01 dt {
    width: 200px;
    font-weight: bold;
    color: var(--c-01);
    line-height: 1.8;
}

.layout-list01 dd {
    width: calc(100% - 200px);
    padding-left: 20px;
    line-height: 1.8;
}

.layout-list01 dl dd dl {
    padding: 10px 0;
    border-bottom: 2px solid var(--c-01);
}

.layout-list01 dl dd dl:last-child {
    border-bottom: none;
}

@media (max-width: 599px) {
    .layout-list01 .item {
        padding: 10px 10px;
    }

    .layout-list01 dt,
    .layout-list01 dd {
        width: 100%;
    }

    .layout-list01 dd {
        font-size: 13px;
    }
}

.table_01 {
    width: 100%;
    table-layout: fixed;
}
.table_01 th {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    background: var(--c-01);
}
.table_01.sp-table th {
    width: 10%;
    text-align: center;
}
.table_01 td {
    padding: 10px 20px;
    background: var(--c-05);
}
.table_01 td.top {
    text-align: center;
    background: var(--c-02);
    width: 100%;
}
.table_01 th,
.table_01 td {
    box-sizing: border-box;
    border: 4px solid #fff;
}
.table_01 td.sb {
    background: var(--c-08);
}
.table_02 {
    width: 100%;
    table-layout: fixed;
}
.table_02 th {
    padding: 10px 20px;
    font-weight: bold;
}
.table_02 .tr_01 th {
    color: #fff;
    text-align: center;
    background: #ababab;
}
.table_02 tr {
    background: #e2e2e2;
}
.table_02 tr:nth-child(odd) {
    background: #f2f2f2;
}
.table_02 td {
    padding: 10px 20px;
}
.table_02 th,
.table_02 td {
    box-sizing: border-box;
    border: 4px solid #fff;
}
.table_02 tr th:nth-child(1) {
    width: 20%;
}
.table_03 {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 20px;
}
.table_03 thead th {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    text-align: center;
    background: #e6b263;
}
.table_03 tbody th {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    background: #f9ecde;
}
.table_03 tbody td {
    padding: 10px 20px;
    text-align: center;
    background: #f2f2f2;
}
.table_03 th,
.table_03 td {
    box-sizing: border-box;
    border: 4px solid #fff;
}
.table_03 th span {
    font-weight: normal;
    font-size: 12px;
}

.price-area .max {
    width: 100%;
}

@media (max-width: 599px) {
    .table_01 tr {
        display: flex;
        flex-wrap: wrap;
    }
    .table_01 th,
    .table_01 td {
             width: 50%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px 5px;
        font-size: 14px;
    }
    .table_01.sp-table th {
        width: 100%;
    }
}

.check-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 30px;
    background: #fff;
}


.check-box .check li {
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 18px;
    line-height: 2;
    position: relative;
}

.check-box .check li:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-01);
    position: absolute;
    top: 10px;
    left: 0;
}
.check-box .check li:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 9px;
    left: 5px;
}

.card-area .box {
    padding: 15px;
    border-radius: 15px;
    background: var(--c-09);
    box-shadow: 0px 2px 5px #a5a5a5;
}

.card-area .ttl {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 20px;
    text-align: center;
    border-bottom: dashed 2px var(--c-01);
}

.mt--10 {
    margin-top: -10px;
}

.c-news .news-box {
    width: 100%;
}

.table-03 {
    width: 100%;
    min-width: 1000px;
    table-layout: fixed;
    overflow: hidden;
    border-collapse: collapse;
    background-color: white;
}

.table-03 table {
    width: 100%;
}

.table-03 tr th,
.table-03 tr td {
    padding: 1em;
    font-size: 18px;
    text-align: center;
}

.table-03 tr th {
    color: white;
    background-color: var(--c-01);
}

.table-03 tr .table-title {
    background-color: #ffe4cf;
}

.table-03 tr:nth-of-type(n+2) {
    border-top: 1px solid #fff;
}

.table-03 tr th+th {
    border-left: 1px solid #fff;
}

.table-03 tr:not(:last-child)  td+td {
    border-bottom: solid 1px var(--c-02);
}
.table-03 .ttl {
    width: 44%;
    white-space: nowrap;
    background: var(--c-09);
}

.table-03 td:not(.ttl) {
    width: calc(56% / 3);
    text-align: center;
    background: var(--c-10);
}

.table-03.new td:not(.ttl) {
    width: calc(56% / 2);
}

.table-03 tr td+td {
    border-left: 1px solid var(--c-02);
}

@media (max-width: 1024px) {
    .table-03 tr th,
    .table-03 tr td {
        font-size: 16px;
    }
}
@media (max-width: 599px) {
.mt--10 {
    margin-top: -20px;
}
}
/*カテゴリー*/

.list-cate-01 .box {
    padding: 20px;
    border-radius: 15px;
}

.list-cate-01 .tit {
    margin-bottom: 1em;
    font-weight: bold;
    font-size: clamp(1.25rem, 1.193rem + 0.24vw, 1.375rem);
    color: var(--c-01);
    letter-spacing: 0.1em;
}
.blog-box .list-cate-01 .tit {
    color: var(--c-01);
}

.list-cate-01 li+li {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dad7d2;;
}

.list-cate-01 li>* {
    display: block;
    padding-right: 20px;
    position: relative;
    z-index: 0;
}

.list-cate-01 li>*:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #dad7d2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 5px;;
}

.f-t {
    margin-bottom: -200px;
    padding-bottom: 300px;
}

.bd-d {
    border-bottom: 2px solid var(--c-01);
}

.faq-a li a {
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 15px;
    color: #fff;
    text-align: center;
    border-radius: 9999px;
    background-image: url('/import/tenant_1/162.43.5.209/html/images/mt02_2.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 3px 3px 10px #ababab;
}

@media (max-width: 1024px) {
    .list-cate-01 {
        width: 48%;
    }
}

@media (max-width: 599px) {
    .list-cate-01 {
        width: 100%;
    }
}

.contact-box .box {
    background: #fff;
}

.contact-box dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.contact-box dt {
    width: 200px;
    display: flex;
    margin-right: 30px;
}

.contact-box dt .tit {
    width: 100%;
}

.contact-box dd {
    width: calc(100% - 230px);
}

.contact-box .form dt .label {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 2px 10px;
    font-size: 12px;
    color: #fff;
    border-radius: 5px;
    background: var(--c-01);
}

.contact-box .form .form_shape li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 20px;
}

.contact-box .form .form_shape input {
    display: none;
}

.contact-box .form .form_shape label {
    padding-left: 25px;
    line-height: 28px;
    position: relative;
    z-index: 0;
}

.contact-box .form .form_shape label:before {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    border: 2px solid;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-box .form .form_shape label:after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    display: none;
    border-radius: 50%;
    background: var(--back-color-03);
    position: absolute;
    top: 3px;
    left: 3px;
}

.contact-box .form .form_shape input:checked+label:after {
    display: block;
}

.contact-box .form dd input,
.contact-box .form dd textarea {
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    border: none;
    border: solid 1px #ccc;
    border-radius: 5px;
}

.contact-box .form .address-code dd input {
    width: 50%;
}

.contact-box .form .address {
    margin-bottom: 20px;
}

.contact-box .form .address .txt {
    display: inline-block;
    padding-left: 30px;
    position: relative;
}

.contact-box .form .address .txt input {
    width: 100px;
    position: relative;
    z-index: 0;
}

.contact-box .form dd.radiobtn {
    padding: 0.5em;
}

.contact-box .form dd.radiobtn label {
    display: inline-block;
    margin: 0.5em 0;
    padding: 0 10px 0 30px;
    position: relative;
}

.contact-box .form dd.radiobtn label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 0.2em;
    left: 0;
}

.contact-box .form dd.radiobtn label:hover {
    text-decoration: underline;
    cursor: pointer;
}

.contact-box .form dd.radiobtn input {
    display: none;
}

.contact-box .form dd.radiobtn input:checked+label {
    text-decoration: underline;
}

.contact-box .form dd.radiobtn input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--c-01);
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 2px;
    left: 2px;
}

.contact-box .form dd.radiobtn input+label {
    margin-left: 15px;
}

@media (max-width: 599px) {
    .contact-box dt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
    }

    .contact-box dt .tit {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .contact-box .form dt .label {
        margin-left: 1em;
    }

    .contact-box dt,
    .contact-box dd {
        width: 100%;
    }

    .contact-box dd {
        margin-top: 0.5em;
    }

    .contact-box .form dd.radiobtn {
        padding: 0.5em 0;
    }
}

#img-confirm img {
    display: none;
}

.contact-tel .tel-box a {
    justify-content: center;
}

.ins .m-btn a {
    font-size: 20px;
    color: #fff;
    letter-spacing: 3px;
    background: linear-gradient(60deg, rgba(86, 85, 205, 1) 0%, rgba(157, 59, 196, 1) 35%, rgba(220, 46, 116, 1) 65%, rgba(253, 179, 79, 1) 100%);
    box-shadow: none;
}

.ins .m-btn a i {
    font-size: 24px;
}

.blog-box li:nth-child(4){
  display: none;
}

.blog-box.lsc-no li:nth-child(4){
  display: block;
}

@media (max-width: 599px) {
  .blog-box li:nth-child(4){
  display: block;
}

.inner{
  width: 94%;
}
}

[data-element-id] .h1-box {
    display: block;
    margin-bottom: 50px;
    border: solid 4px #00ff50;
    position: relative;
}
[data-element-id] .h1-box:after {
    content: "h1の変更はこちらでお願いいたします。";
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #00ff50;
}

[data-element-id] .up-d-none {
    display: block;
    border: solid 4px black;
    position: relative;
}
[data-element-id] .up-d-none:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: black;
    text-shadow: initial;
}

[data-element-id].fead-order>* {
    opacity: 1;
    -webkit-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

[data-element-id] .gnav .list02 {
    visibility: visible;
    padding: 0;
    border: solid 2px #f48100;
    opacity: 1;
    position: relative;
    top: 0;
}

[data-element-id] .gnav .list02:after {
    content: "当院について";
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 black;
    background: #f48100;
}
[data-element-id] .gnav .list02.new:after {
    content: "診療案内";
}

[data-element-id] #gnav .bg-img{
  height: 150%;
    top: -50px;
}

[data-element-id] .gnav .list01{
      align-items: flex-start;
}

[data-element-id] .slick02{
  display: flex;
}

[data-element-id] .cats-btn{
     transform: none;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

[data-element-id] .up-sp-text {
    width: 100%;
    max-width: 375px;
    margin: auto;
}

[data-element-id] .homevisual .head{
      top: 35%;
}

[data-element-id] .homevisual .head .up-sp-text{
      font-size: 24px;
}

[data-element-id] .homevisual .head .up-sp-text .sb{
      font-size: 14px;
}

[data-element-id] .up-sp-text .m-ttl .ja {
    font-size: 26px;
}

[data-element-id] .pick-area a .text-area .up-sp-text{
      font-size: 15px;
}

[data-element-id] .topvisual .head .up-sp-text {
    font-size: 24px;
}

[data-element-id] .up-sp-text .text-l {
    font-size: 18px;
}

[data-element-id] .medical-area .card-02 li a{
      height: 350px;
}

[data-element-id] .news-box .item .cat-area .data{
      flex-shrink: 1;
}

.r-txt {
  font-size: 24px;
  text-align: center;
}

/* 2025/06/30 */
.header.ver02{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.header.ver02 .cats-btn {
  top: auto;
  bottom: auto;
  transform: none;
}

.header.ver02 .h-box .tel-area .tel .img {
  display: block;
  width: 25px;
  height: 25px;
}

.homevisual.ver02 .head {
  top: 50%;
}

.homevisual.ver02 .img:before {
  padding-top: 60%;
}

@media(max-width:1024px){
.header.ver02 .cats-btn {
  bottom: 0;
}

.header.ver02 .cats-btn .item01 .img {
  width: 21px;
  height: 29px;
}

.header.ver02 .cats-btn .item02 .img {
  width: 37px;
  height: 25px;
}

.header.ver02 .cats-btn .item02.ver02 .img {
  width: 29px;
  height: 30px;
}

.header.ver02 .cats-btn .item03 .img {
  width: 26px;
  height: 26px;
}

.header.ver02 .cats-btn .img::before {
  padding-top: 0;
}

.homevisual.ver02 .img img {
  object-fit: contain;
}
}

@media(max-width:599px) {
.header.ver02 .cats-btn .item00 .img {
  width: 19.33px;
  height: 19.98px;
}

.header.ver02 .cats-btn .item01 .img {
  width: 14.47px;
  height: 19.97px;
}

.header.ver02 .cats-btn .item02 .img {
  width: 29.59px;
  height: 19.98px;
}

.header.ver02 .cats-btn .item02.ver02 .img {
  width: 19.33px;
  height: 19.98px;
}
}
