@charset "utf-8";

@import url('extra.css');


/*config*/
:root {
    --main-width: 1280px;
    /*メインカラム*/
    --main-color: #003d64;
    /*ブルー*/
    --sub-color: #007290;

    --color-yel: #fdfd5d;
    --color-gold: #827a46;
}

/* ////////////////////////////////////////////
*                 BASE
* //////////////////////////////////////////// */

/* clearfix
------------------------------------------*/
.clear {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

.slider {
    opacity: 0;
    transition: opacity .3s linear;
}

.slider.slick-initialized {
    opacity: 1;
}

/* base
------------------------------------------*/

html {
    height: 100%;
    font-size: 62.5%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden
}

@media screen and (max-width:991px) {
    html {
        font-size: 52.5%;
    }
}

@media screen and (max-width:768px) {
    html {
        font-size: 50.5%;
    }
}

@media screen and (max-width:575px) {
    html {
        font-size: 40.5%;
    }
}

body {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    */
    /*font-family: "メイリオ" ,"Meiryo", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/

    color: #111;
    font-feature-settings: "palt";
    letter-spacing: 0.07em;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    /*Chrome,Safari*/
    -ms-text-size-adjust: 100%;
    /*EgdeMobile*/
    -moz-text-size-adjust: 100%;
    /*firefox*/
}


.font-min {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}


.bold {
    font-weight: bold;
}

a {
    color: #111;
    text-decoration: none;
}

a:hover {
    opacity: 0.5;
}

/* use hover animation */
a,
a:hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.arrow {
    position: relative;
}

.arrow::after {
    content: "";
    position: absolute;
    display: block;
    transition: all .3s;
    width: 15px;
    height: 25px;
    top: 50%;
    right: 40px;
    box-shadow: 1px -1px 0 transparent;
    border-top: solid 1px #111;
    border-right: solid 1px #111;
    transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}

.arrow:hover::after {
    right: 32px;
    height: 35px;
    text-decoration: none !important;
}

@media screen and (max-width:768px) {
    .arrow::after {
        right: 20px;
    }

    .arrow:hover::after {
        right: 12px;
    }
}

/* ////////////////////////////////////////////
*                 common
* //////////////////////////////////////////// */
.inner {
    max-width: var(--main-width);
    margin: 0 auto;
    padding: 0;
    position: relative;
}


.main-common-tit {
    font-size: 6rem;
    letter-spacing: 0.12em;
    margin-bottom: 5vmax;
    position: relative;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    line-height: 1.6;
}

.main-common-tit::after {
    position: absolute;
    bottom: -0.5em;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 2px;
    content: "";
    background: #282828;
}

.main-common-tit span.en {
    font-size: 2.2rem;
    font-family: 'Crimson Text', serif;
}

@media screen and (max-width:768px) {
    .main-common-tit::after {
        width: 20px;
        height: 1px;
    }

    .main-common-tit {
        font-size: 6vw;
    }

    .main-common-tit span.en {
        font-size: 3vw;
    }
}

.bloc {
    padding: 4vmax 0;
}

.mb-1em {
    margin-bottom: 1em;
}

.mb-2em {
    margin-bottom: 2em;
}

/* ////////////////////////////////////////////
*                 header
* //////////////////////////////////////////// */
#header {
    padding: 0 20px;
    width: 100%;
    z-index: 9999;
    background: var(--sub-color);
    color: #fff;
}

#header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: fixedanime 1s 0s both;
    animation: fixedanime 1s 0s both
}

@keyframes fixedanime {
    0% {
        opacity: (.1);
        transform: translateY(-100px)
    }

    70% {
        opacity: (.1)
    }

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

.header-logo-pc {
    display: block
}

#header-inner {
    max-width: var(--main-width);
    margin: 0 auto;
    height: 115px;
}

#header-logo {
    max-width: 360px;
    margin-right: 50px;
}


#gnav {
    margin: 0;
    height: 100%;
    position: relative;
}

#gnav>ul {
    height: 100%;
}

#gnav a:hover {
    text-decoration: none;
    color: var(--main-color);
    opacity: 1;
}

#gnav>ul>li {
    padding: 0 0;
    height: 100%;
    position: relative;
    font-size: 1.8rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

#gnav>ul>li>a {
    padding: 0 1.5vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: bold;
    color: #fff;
    z-index: 3;
}

#gnav>ul>li.current>a,
#gnav>ul>li>a:hover {
    color: #fff;
}

#gnav>ul>li>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2;
    background: var(--main-color);
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.4s;
}

#gnav>ul>li.current>a::before,
#gnav>ul>li>a:hover::before {
    transform: scale(1);
    z-index: -1;
}


#gnav li .sub-menu,
#lower-gnav li .sub-menu {
    display: none;
    position: absolute;
    z-index: 999;
    width: 300px;
    top: 115px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
}

#lower-gnav li .sub-menu {
    top: 70px;
}

.fixed #lower-gnav li .sub-menu {
    top: 100px;
}

#gnav li .sub-menu li a,
#lower-gnav li .sub-menu li a {
    text-align: left;
    padding: 0.4em 1em;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--main-color);
    color: #fff;
    font-size: 1.6rem;
}

#gnav li .sub-menu li a:hover,
#lower-gnav li .sub-menu li a:hover {
    opacity: 0.8;
}

#gnav li .sub-menu li a::before,
#lower-gnav li .sub-menu li a::before {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    padding-right: 0.5em;
}

/* ////////////////////////////////////////////
*                 breadcrumbs
* //////////////////////////////////////////// */
.breadcrumbs {
    padding: 1em;
    text-align: left;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;

}

.breadcrumbs a,
.breadcrumbs a:hover {
    color: var(--main-color);
}

@media screen and (max-width:991px) {
    .breadcrumbs {
        margin-top: 80px;

    }
}

/* ////////////////////////////////////////////
*                 content
* //////////////////////////////////////////// */
.home #content {
    margin-bottom: 0vmax;
}

#content {}

/* side-cta
------------------------------------------*/
.side-cta {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    z-index: 99;
}

@media screen and (max-width:991px) {
    .side-cta {
        display: none;
    }
}

/* mainimage
------------------------------------------*/
#mainimage {
    position: relative;
    z-index: 1;
    display: block;
}

#mainimage .mainimage-badge {
    position: absolute;
    bottom: 4vmax;
    right: 6vmax;
    padding: 0;
    z-index: 4;
    text-align: center;
    max-width: 335px;

}

#mainimage .mainimage-copy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 6vmax;
    padding: 0;
    z-index: 3;
    text-align: center;
    max-width: 33%;
}

#mainimage .mainimage-copy .main-01 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 1em;
}

#mainimage .mainimage-copy .main-02 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin: 1.2em 0;
}

#mainimage .mainimage-copy .main-03 {
    font-size: 2.9rem;
    line-height: 1.2;
    padding: 0.5em;
    color: var(--sub-color);
    border-top: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
}



#mainimage .slick-slide {
    position: relative;
}

#mainimage .slick-slide .copyimg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media screen and (min-width: 768px) and (max-width: 1635px) {
    #mainimage .slick-slide {
        text-align: center;
        height: 90vh;
    }

    #mainimage .slick-slide .bgimg img {
        height: 90vh;
        margin: auto;
        max-height: 100%;
        max-width: 100%;
        object-fit: cover;
        width: 100%;
    }

    #mainimage .mainimage-badge {
        max-width: 30%;

    }

    #mainimage .slick-slide .copyimg img {
        height: 70vh;
    }
}

@media screen and (max-width:768px) {
    #mainimage .slick-slide {
        height: auto;
    }

    #mainimage .slick-slide .bgimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #mainimage .mainimage-badge {
        max-width: 35%;
        bottom: 2vmax;
        right: 2vmax;

    }

    #mainimage .slick-slide .copyimg {
        left: 20%;
    }

    #mainimage .slick-slide .copyimg img {
        height: 60vh;
    }



}

.sp-mainimage-copy {
    font-size: 2.9rem;
    color: #fff;
    background: var(--sub-color);
    padding: 1em;
}

/* news
------------------------------------------*/
.main-news {
    position: relative;
    padding: 4vmax 4vmax;
    display: block;
    background: #eff4f6;

}

@media screen and (min-width:768px) {
    .main-news .main-common-tit::after {
        right: auto;
    }
}

.main-news-inner {}


.main-news-list {
    flex-grow: 1;
    max-width: 900px;
}

.main-news-list li {
    padding: 1.5em 0;
    border-bottom: 1px solid #929292;
    text-align: left;

}

.main-news-list li .date {
    margin-right: 1.5em;
    display: inline-block;
    padding: 0 0.5em;

}

.main-news-list li a {
    display: flex;
    padding-right: 3em;

}

.main-news-list li a:hover {
    opacity: 1;

}

/* concept
------------------------------------------*/

.main-concept {
    padding: 6vmax 0;
    position: relative;
    z-index: 2;
}

.main-concept::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 90%;
    background: #fff url("../images/main-concept-bg.png")no-repeat center center / cover;
    z-index: -1;

}

.main-concept-inner {
    padding: 0 3vmax;

}

.main-concept-text {
    max-width: 960px;
    margin: 3vmax auto;
    font-size: 2rem;
}

.main-concept .main-common-tit {
    margin-bottom: 0;
    line-height: 1;
}

.main-concept .main-common-tit::after {
    display: none;
}

.main-concept-slide {
    margin-top: 6vmax;
}

.main-concept-slide .slick-slide {
    margin: 10px;
}

@media screen and (max-width:768px) {
    .main-concept {
        padding: 6vmax 0 0 0;
    }

    .main-concept-slide .slick-slide {
        margin: 3px;
    }
}

/* about
------------------------------------------*/

.main-about {
    padding: 6vmax 0 0 0;
    position: relative;
    z-index: 2;
}

@media screen and (max-width:991px) {
    .main-about {
        padding: 6vmax 3vmax 0 3vmax;
    }
}

.main-about::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 60%;
    background: #eff4f6;
    z-index: -1;

}

.main-about-access-left {
    max-width: 51%;
}

.main-about-access-right {
    max-width: 44%;

}

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

    .main-about-access .logo {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 2vmax;
    }

    .main-about-access .bnr {
        gap: 10px;
    }


    .main-about-access-left,
    .main-about-access-right {
        max-width: 100%;

    }

    .main-about-access-right {
        padding: 4vmax 2vmax 2vmax 2vmax;

    }
}

.main-about-inner {
    max-width: 2000px;
    margin: 0 auto;
}

.main-about-text {
    font-size: 2rem;
}

.main-about-ttl {
    font-size: 5rem;
    color: var(--color-gold);
    line-height: 1.4;
    margin-bottom: 1.5em;
}

@media screen and (max-width:768px) {
    .main-about-inner {
        margin-bottom: 4vmax;
    }

    .main-about-ttl {
        font-size: 3rem;
    }
}

.main-about-access {
    max-width: 1280px;
    position: relative;
    z-index: 2;
    padding: 3vmax 2vmax;
    margin: 3vmax auto;
}

.main-about-access::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 2vmax);
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: -1;

}

.main-about-access .ttl {
    font-size: 3.6rem;
    border-left: 6px solid var(--sub-color);
    color: var(--sub-color);
    text-align: left;
    padding-left: 0.5em;
    margin-top: -1em;
    margin-bottom: 1em;
    line-height: 1.2;
}

@media screen and (max-width:768px) {
    .main-about-access .ttl {
        text-align: center;
        position: relative;
        border-left: none;
    }

}


.table-hours {
    margin: 0 0 0.8em 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}

.table-hours th {
    padding: 1em;
    background: #eff4f6;
    border-right: #ccc 1px solid;
}

.table-hours td {
    padding: 1em;
    border-top: #ccc 1px solid;
    border-right: #ccc 1px solid;
    color: var(--sub-color);
}


.table-hours .time {
    width: 30%;
    text-align: right;
    color: #111;
}

.main-about-access .map iframe {
    width: 100%;
    aspect-ratio: 1/0.6;
}

.main-about-access .map-text {
    line-height: 1.6;
}


.main-about-access .map-text-02 {
    background: var(--sub-color);
    color: #fff;
    font-size: 2.4rem;
    padding: 0.2em 1em;
}


/* recommend
------------------------------------------*/

.main-recommend {
    padding: 3vmax 0 0 0;
    position: relative;
    z-index: 2;
}

.main-recommend-mv {
    padding: 3vmax 0;
    position: relative;

}


@media screen and (max-width:991px) {
    .main-recommend-mv {
        padding: 6vmax 3vmax;

    }
}

#implant {
    background: #ebf1f4 url("../images/main-implant-mv.png")no-repeat top center /contain;
}


#orthodontic {
    background: #ebf1f4 url("../images/main-orthodontic-mv.png")no-repeat top center /contain;

}

.main-recommend-mv-inner {
    font-size: 2rem;
}

.main-recommend-mv-inner .ttl {
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1.4;
}

.main-recommend-mv-inner .main-common-tit::after {
    right: auto;
}

.main-recommend-inner {
    position: relative;
    z-index: 2;
    margin-bottom: 6vmax;
    background: #fff;
}

.main-recommend-inner::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    z-index: -1;

}

#implant .main-recommend-inner::after {
    background: url("../images/main-implant-bg.png")no-repeat top center /cover;

}

#orthodontic .main-recommend-inner::after {
    background: rgba(39, 126, 161, 0.8);

}

.main-recommend-copy {
    padding: 3vmax 0;
    color: var(--color-yel);
}

.main-recommend-copy .ttl {
    font-size: 3.6rem;
    line-height: 1.4;
    padding: 0 2vmax 0 0;
}

.main-recommend-copy .ttl-s {
    font-size: 2.5rem;
}

.main-recommend-copy .num {
    font-size: 10rem;
    line-height: 1;
}


.main-recommend-copy .num-s {
    font-size: 5.4rem;
}

.main-recommend-copy .cap {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.4;
}

.main-recommend-copy .text {
    font-size: 2.3rem;
    border-left: 1px solid #fff;
    padding: 0 2vmax;
}


@media screen and (max-width:991px) {
    .main-recommend-inner::after {
        height: 35%;
        left: auto;
        right: 0;

    }

    #implant .main-recommend-inner::after {
        background: #5298b4 url("../images/main-implant-bg-sp.png")no-repeat top right /cover;

    }

    .main-recommend-copy .ttl {
        font-size: 2.6rem;
    }

    .main-recommend-copy .ttl-s {
        font-size: 2rem;
    }

    .main-recommend-copy .num {
        font-size: 8rem;
    }

    .main-recommend-copy .num-s {
        font-size: 4rem;
    }

    .main-recommend-copy .cap {
        font-size: 2rem;
    }

    .main-recommend-copy .text {
        font-size: 1.8rem;
        border-left: none;
        padding: 0 0;
    }
}

.main-recommend-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 3vmax;
}

.main-recommend-list li {
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 30px;
}

@media screen and (max-width:991px) {
    .main-recommend-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .main-recommend-copy {
        padding: 3vmax;
    }

    .main-recommend-list {
        margin: 0 3vmax 3vmax 3vmax;
    }

    .main-recommend-list li {
        padding: 1em;
    }
}


/* service
------------------------------------------*/
.main-service {
    position: relative;
    padding: 4vmax 0;
    max-width: 1920px;
    margin: 0 auto;
}

.main-service .subttl {
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1.4;
    margin-bottom: 1.5em;
}

.main-service-once {
    display: flex;
    background: #eff4f6;
    margin-bottom: 4vmax;
}

.main-service-img {
    max-width: 40%;
    margin-bottom: 4vmax;

}

@media screen and (max-width:768px) {
    .main-service-img {
        max-width: 30%;

    }

    .main-service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;

    }
}

.main-service-text {
    flex-grow: 1;
    text-align: left;

}

.main-service-text .ttl {
    padding: 2vmax;
    font-size: 4.5rem;
    color: var(--sub-color);
    display: flex;
    align-items: center;
    line-height: 1;
    background: #fff;

}

.main-service-text .ttl .num {
    color: #bbdae2;
    font-size: 9.3rem;
    font-style: italic;
    margin-right: 0.5em;

}

@media screen and (max-width:768px) {
    .main-service-text .ttl {
        font-size: 3.5rem;

    }

    .main-service-text .ttl .num {
        font-size: 7.3rem;

    }
}

.main-service-list {
    border-top: 2px solid var(--sub-color);
    padding: 3vmax;
}

.main-service-list ul {
    max-width: 910px;
}

.main-service-list li {
    border-bottom: 1px solid #ccc;
    padding: 1.5em 0;
    line-height: 1.8;
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
}

.main-service-list li:first-of-type {
    padding-top: 0;
}


.main-service-list .service {
    color: var(--sub-color);
    font-size: 2.6rem;
    display: block;
}

.main-service-list .service::before {
    content: "■";
    margin-right: 0.3em;
}


.main-service-list .arrow::after {
    border-top: solid 1px var(--sub-color);
    border-right: solid 1px var(--sub-color);
}

/* message
------------------------------------------*/
.main-message {
    background: #e9f4fe url("../images/main-message-bg.png")no-repeat right top;
    background-attachment: fixed;
    padding: 4vmax 3vmax;
}

@media screen and (max-width:991px) {
    .main-message {
        background: #e9f4fe url("../images/main-message-bg.png")no-repeat right center;
        background-size: cover;
        background-attachment: scroll;
    }
}

.main-message .ttl {
    color: var(--sub-color);
    font-size: 4.5rem;
    line-height: 1.4;
}

@media screen and (max-width:768px) {
    .main-message .ttl {
        font-size: 3.5rem;
    }
}

.main-message .text {
    font-size: 2.4rem;
}


/* feature
------------------------------------------*/
.main-feature {
    background: #f2f2f2;
    padding: 4vmax 0;
    max-width: 1920px;
    margin: 0 auto;
    counter-reset: number;
    position: relative;
}

.main-feature::before {
    background: #d6e9ed;
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 28%;
    height: 100%;
    z-index: 2;
}

.main-feature-inner {
    counter-reset: counts;
}

.main-feature-once {
    display: flex;
    margin-bottom: 10vmax;
    margin-top: 4vmax;
    position: relative;
    z-index: 3;
}

.main-feature-once:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.main-feature-img {
    max-width: 40%;
    margin-top: -3vmax;
    position: relative;
    z-index: 4;
}

.main-feature-img::before {
    position: absolute;
    counter-increment: counts;
    content: 'FEATURE 0'counter(counts);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    transform: rotate(90deg);
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    color: #a8a8a8;
    font-size: 2.2rem;
}

.main-feature-once:nth-of-type(2n) .main-feature-img::before {
    left: -100px;
    right: auto;
}

.main-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.main-feature-img::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -60px;
    width: 40%;
    height: 60px;
    z-index: -1;
    background: #fff;

}

.main-feature-once:nth-of-type(2n) .main-feature-img::after {
    left: 0;
    right: auto;
}

.main-feature-text {
    flex-grow: 1;
    text-align: left;

}

.main-feature-text-inner {
    max-width: 80%;
    height: 100%;
    position: relative;
    z-index: 2;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

}

.main-feature-once:nth-of-type(2n) .main-feature-text-inner {
    margin-left: 20%;
}

.main-feature-text-inner::before {
    counter-increment: number;
    content: '0'counter(number);
    font-size: 6rem;
    color: var(--sub-color);
    position: absolute;
    right: 30px;
    top: -1em;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;

}


.main-feature-text-inner::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -60px;
    width: 100%;
    height: 60px;
    z-index: -1;
    background: #fff;

}

.main-feature-text .text {
    max-width: 600px;
    padding: 3vmax;

}

.main-feature-text .ttl {
    font-size: 2.8rem;
    color: var(--sub-color);

}

@media screen and (max-width:991px) {
    .main-feature {
        background: #fff;
    }

    .main-feature::before {
        display: none;
    }

    .main-feature-once {
        display: block;
        margin-top: 0;
        margin-bottom: 0;
    }

    .main-feature-img {
        max-width: 100%;
        margin-top: 0;
    }

    .main-feature-img::before,
    .main-feature-img::after {
        display: none;

    }

    .main-feature-text-inner {
        max-width: 100%;
        display: block;

    }

    .main-feature-text-inner::before {
        position: relative;
        right: auto;
        left: 0;
        top: 0;
        text-align: center;
        display: block;
    }

    .main-feature-once:nth-of-type(2n) .main-feature-text-inner {
        margin-left: 0;
    }

    .main-feature-text .text {
        padding-top: 0;
        max-width: 100%;
    }


}

/* ////////////////////////////////////////////
*                 footer
* //////////////////////////////////////////// */
#footer {}


.footer-cta {
    width: 100%;
    padding: 4vmax 3vmax;
    background: url("../images/main-contact-bg.png") no-repeat center center /cover;
    color: #fff;
}


.footer-cta .main-common-tit::after {
    background: #fff;

}

.footer-cta .subttl {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.6;
}

.footer-cta .subttl .str {
    color: var(--color-yel);
}

.footer-cta-btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media screen and (max-width:768px) {
    .footer-cta {
        padding: 6vmax 3vmax;
        background: #5298b4;
    }

    .footer-cta-btn {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        max-width: 70%;
    }
}

.footer-cta-btn li {
    background: #fff;
    display: inline-block;
}

.footer-desc {
    padding: 4vmax 0;
}

.footer-map iframe {
    width: 100%;
    aspect-ratio: 3/2;

}

.footer-add {
    max-width: 500px;
}

.footer-add .icon {
    font-size: 2.4rem;
    color: var(--sub-color);
    border: 1px solid var(--sub-color);
    text-align: center;
}

.footer-time {
    max-width: 660px;
    flex: 1;
}


.footer-time .table-hours .time {
    text-align: center;
}

.color-sub {
    color: var(--sub-color);
}

.footer-nav-wrap {
    background: #5298b4;
    color: #fff;
    padding: 3vmax;
    text-align: left;
}

.footer-nav>li {
    margin: 1em 0;
}

.footer-nav li a {
    color: #fff;
}

.footer-nav>li {
    margin: 1em 0;
}

.footer-nav>li>a::before {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.3em;
}

.footer-nav .sub-menu {
    column-count: 2;
    margin: 0 1.5em;
}

.footer-nav .sub-menu>li>a::before {
    content: ' - ';
    margin-right: 0.3em;
}

.cpr {
    padding: 2vmax 2vmax;
    font-size: 10px;
}

@media screen and (max-width:768px) {
    .footer-desc {
        padding: 4vmax 3vmax;
    }

    .footer-logo img {
        max-width: 70%;
    }

    .footer-add .icon {
        display: inline-block;
        padding: 0 4em;
        margin-bottom: 2vmax;
    }

    #drawer-menu ul.sub-menu {
        display: flex;
        column-count: 2;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #drawer-menu ul..sub-menu li {
        /* width: 50%; */
        box-sizing: border-box;
    }
    #drawer-menu ul.sub-menu li a {
      padding: 0.75em 0;
      padding-left: 0px;
      padding-left: 1em;
      text-indent: -1em;
      line-height: 1.4;
    }
}

/* ////////////////////////////////////////////
*                 sp-footer-cta
* //////////////////////////////////////////// */
.sp-footer-cta {
    display: none;
}

@media screen and (max-width:768px) {
    #footer {
        padding-bottom: 60px;
    }

    .sp-footer-cta {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 99;
        width: 100%;
        height: 60px;
        display: flex;
    }

    .sp-footer-cta a {
        background: #004a82;
        color: #fff;
        font-size: 2.4rem;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }

    .sp-footer-cta a::before {
        content: "";
        width: 22px;
        height: 22px;
        background: url("../images/sp-footer-cta-01.png") no-repeat center center /contain;
        margin-right: 0.5em;
    }


    .sp-footer-cta a:last-of-type {
        border-right: none;
    }

    .sp-footer-cta a:last-of-type::before {
        background: url("../images/sp-footer-cta-02.png") no-repeat center center /contain;

    }
}

/* ////////////////////////////////////////////
*                 pagetop-btn-wrap
* //////////////////////////////////////////// */
.pagetop-btn-wrap {
    display: none;
    position: fixed;
    bottom: 3vmax;
    right: 3vmax;
    z-index: 99;
}

.pagetop-btn {
    position: relative;

}

.pagetop-btn::before {
    content: '\f062';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    display: block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 70px;
    font-size: 25px;
    color: var(--sub-color);
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.8) 0px 7px 29px 0px;
}

@media screen and (max-width:768px) {
    .pagetop-btn-wrap {
        bottom: 100px;
        right: 15px;
    }

    .pagetop-btn::before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 40px;
        font-size: 15px;
    }
}


/* ////////////////////////////////////////////
*                 lower-entry
* //////////////////////////////////////////// */
#page-header {
    height: 400px;
    margin: 0;
    background: url("../images/page-header.png") no-repeat center center /cover;
}

#lower-header {
    background: rgba(255, 255, 255, 0.8);
}

#lower-header-inner {
    max-width: var(--main-width);
    margin: 0 auto;
    height: 150px;
}

#lower-header.fixed {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.3);
    -webkit-animation: fixedanime 1s 0s both;
    animation: fixedanime 1s 0s both
}

#lower-header.fixed #lower-header-inner {
    height: 100px;
}


#lower-header.fixed #lower-header-tel {
    display: none !important;
}

#lower-header.fixed .logo {
    max-width: 20%;
}

#page-header h1 {
    max-width: var(--main-width);
    margin: 0 auto;
    text-align: left;
    font-size: 5rem;
    letter-spacing: 0.12em;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    height: 250px;
    display: flex;
    align-items: center;

}

#lower-gnav>ul>li {
    font-size: 1.8rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    padding: 1em;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.fixed .lower-header-inner,
.fixed #lower-gnav,
.fixed #lower-gnav-menu {
    height: 100%;
}

@media screen and (max-width:991px) {
    #lower-header {
        display: none !important;
    }

    #page-header {
        height: 200px;
    }

    #page-header h1 {
        font-size: 4.2rem;
        height: 100%;
        padding-bottom: 1em;
        letter-spacing: 0.05em;
        text-align: center;
        justify-content: center;
        align-items: flex-end;

    }
}

/* ////////////////////////////////////////////
*               sidenav
* //////////////////////////////////////////// */

.side-nav-title {
    background: var(--sub-color);
    padding: 0.5em 1em;
    border-radius: 5px;
    color: #fff;
}

.side-nav-list {
    margin: 1em;
}

.side-nav-list li {
    margin: 1em;
}

.side-nav-list li a::before {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.5em;
}

/* ////////////////////////////////////////////
*                 post
* //////////////////////////////////////////// */

.morebtn {
    display: inline-block;
    position: relative;
    padding-right: 60px;
    color: var(--sub-color);
    font-size: 2rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.morebtn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 22px;
    height: 22px;
    margin: auto;
    border-radius: 20px;
    background-color: var(--sub-color);
}

.morebtn::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 6px solid transparent;
    border-right: 0 solid transparent;
    border-left: 9px solid #fff;
    border-bottom: 6px solid transparent;
    box-sizing: border-box;
}


/* ////////////////////////////////////////////
*                sphone-nav
* //////////////////////////////////////////// */

#sp-header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: linear-gradient(to bottom, #fff 0%, #fff 85%, transparent 100%);
}

#sp-header-logo {
    max-width: 240px;
    margin-right: 50px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

#gnav-trigger {
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    z-index: 999;
    flex-basis: 80px;
    flex-shrink: 0;
    cursor: pointer;
}

#gnav-trigger::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

#panel-btn {
    background: var(--main-color);
}

#panel-btn:hover {
    color: var(--main-color);
    opacity: 1;
}

#panel-btn-text {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 17px;
    width: 100%;
    font-size: 10px;
    text-align: center;
}

#panel-btn-text::before {
    content: "MENU";
    color: var(--main-color);
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.is-drawer-open #panel-btn-text::before {
    content: "CLOSE"
}

#panel-btn-icon {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 30px;
    width: 30px;
    height: 2px;
    background: var(--main-color);
    transition: .2s
}

#panel-btn-icon:after,
#panel-btn-icon:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--main-color);
    transition: .3s
}

#panel-btn-icon:before {
    margin-top: -10px
}

#panel-btn-icon:after {
    margin-top: 8px
}

#panel-btn .close {
    background: 0 0
}

#panel-btn .close:after,
#panel-btn .close:before {
    margin-top: 0
}

#panel-btn .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg)
}

#panel-btn .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg)
}


#drawer-bg {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    background: #eff4f6;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

#drawer-menu {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 101
}


#drawer-menu li {
    display: block;
    padding: 0 1em;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

#drawer-menu li a {
    display: block;
    padding: 0.75em 1em;
    font-size: 2.4rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;

}

#drawer-menu li a .areaname {}

#drawer-menu li a::before {
    content: '\f138';
    font-weight: bold;
    font-family: 'Font Awesome 5 Pro';
    padding-right: 0.5em;
    color: var(--main-color);
}

.is-drawer-open #drawer-bg {
    display: block;
    animation-duration: .5s;
    animation-name: fadein
}

.is-drawer-open #drawer-menu {
    display: block;
}

/* has children
------------------------------------------*/
#drawer-menu li.menu-item-has-children a {
    display: inline-block;
    position: relative;
}

#drawer-menu li.menu-item-has-children::after {
    position: absolute;
    right: 2vmax;
    top: 0;
    content: '\f107';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    padding-right: 0.5em;
    font-size: 4vmax;
}

#drawer-menu li.menu-item-has-children.open::after {
    content: '\f106';
}

#drawer-menu ul.sub-menu {
    display: none;
    margin: 0 1em;
}

#drawer-menu ul.sub-menu li {
    display: block;
    position: relative;
}

#drawer-menu ul.sub-menu li a::before {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    padding-right: 0.5em;
    color: var(--main-color);
}

/* ////////////////////////////////////////////
*                entry
* //////////////////////////////////////////// */
.post main {
    margin-bottom: 5vmax;
}

.blog-title {
    font-size: 1.8rem;
    margin: 0 0 1.5em 0;
    padding: 2em 0;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: left;
}

.blog-title .ttl::before {
    content: '\f0a9';
    font-weight: bold;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.5em;
    color: var(--main-color);
}

.blog-title .post-date {
    font-size: 1.2rem;
    color: var(--main-color);
}

.post .entry-content {
    margin-bottom: 8vmax;
    font-size: 1.8rem;
}

.post .entry-content p {
    margin-bottom: 1em;
}

.post-nav a {
    color: var(--main-color);

}

.entry-content {
    text-align: left;
}

.entry-content a:hover,
.entry-content a:focus {
    color: inherit;
    text-decoration: underline;
}

.entry-content .page-title {
    color: var(--main-color);
    font-size: 3rem;
    margin: 0 0 1.5em 0;
    padding: 1em 0;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/*
.entry-title,
.entry-content h2:not([class]) {
    font-size: 5rem;
    margin: 1.5em 0;
    padding: 1em 0 0.2em 0;
    position: relative;
    text-align: center;
    color: var(--sub-color);
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.entry-title::after,
.entry-content h2:not([class])::after {
    position: absolute;
    bottom: -0em;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 2px;
    content: "";
    background: var(--sub-color);
}

.entry-content h3:not([class]) {
    font-size: 2.4rem;
    margin: 0 0 1em 0;
    padding: 0.5em 0;
    border-bottom: 1px dotted #ccc;
    position: relative;
    text-align: left;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    font-weight: 900;
}

.entry-content h3:not([class])::before,
.entry-content .title-h3::before {
    content: '\f138';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    color: var(--main-color);
    margin-right: 0.5em;
}

.entry-content h4:not([class]) {
    color: #715959;
    padding: 0 1em 0.5em 0.2em;
    font-size: 2.4rem;
    margin: 0vmax 0 1em 0;
    position: relative;
}

.entry-content h4:not([class])::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #ccc;
    content: "";
    display: block;
}

.entry-content h4:not([class])::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 25%;
    background: -webkit-linear-gradient(25deg, rgba(244, 174, 50, 1) 0%, rgba(253, 62, 99, 1) 100%);
    content: "";
    display: block;
    z-index: 2;
}

.entry-content h5:not([class]) {
    color: #715959;
    font-size: 1.8rem;
    margin: 1vmax 0 0.5em 0;
    position: relative;
}

.entry-content h5:not([class])::before {
    content: '\f138';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    color: #5f89d2;
    margin-right: 0.5em;
}
.entry-content table {
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
*/

/* ////////////////////////////////////////////
*                contact
* //////////////////////////////////////////// */

.confirm-show {
    display: none;
}

.mw_wp_form_confirm .confirm-show {
    display: block;
}

.table-contact p {
    margin: 0 0 0 0;
}

.table-contact {
    margin: 0 0 0.8em 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}

.table-contact th {
    padding: 1em;
    width: 30%;
    background: var(--sub-color);
    border: #ccc 1px solid;
    vertical-align: middle;
}

.table-contact th .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-contact .hissu {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    font-size: 1.4rem;
    padding: 0.15em 0.5em;
}

.table-contact td {
    padding: 1em;
    border: #ccc 1px solid;
    background: #fff;
    text-align: left;
}

.table-contact td ul li {
    margin: 0 0 0 20px;
    list-style: outside disc;
}

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

    .table-contact th,
    .table-contact td {
        display: block;
        width: 100%;
    }
}

button,
input,
textarea {
    background-color: transparent;
    border-style: none;
    color: inherit;
    font-size: 1.8rem;
}

textarea,
input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.3em;
    width: 100%;
}

.form-btn {
    text-align: center;
    margin: 4vmax;
}

.form-btn input {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    padding: 0.3em 2em;
    margin-left: 1em;
    font-size: 2rem;
    border-radius: 5px;
    font-weight: bold;
}

.form-btn input {
    display: inline-block !important;
    padding: 0.5em 2em;
    background: var(--main-color);
    color: #fff;
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.form-btn input:hover {
    color: #fff;
}

.form-btn input::after {
    content: '\f0a9';
    font-weight: bold;
    font-family: 'Font Awesome 5 Pro';
    margin-left: 0.5em;
}

/* ////////////////////////////////////////////
*                case- archive
* //////////////////////////////////////////// */

#case .local-nav {
    background: #5a96b5;
    padding: 4vmax 0;
    margin: 0 0 2vmax 0;
}

#case .local-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

#case .local-nav ul li {
    border-left: 1px solid #fff;
    padding: 0.3em 6vw;
}

#case .local-nav ul li:last-of-type {
    border-right: 1px solid #fff;
}

#case .local-nav ul li a {
    font-size: 2rem;
    color: #fff;
}


@media screen and (max-width:768px) {
    #case .local-nav {
        padding: 0;
        background: none;
    }

    #case .local-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

    #case .local-nav ul li {
        border-left: none;
        background: #5298b4;
    }

    #case .local-nav ul li::before {
        content: '\f107';
        font-weight: 300;
        font-family: 'Font Awesome 5 Pro';
        padding-right: 0.5em;
        color: #fff;
    }
}

.case-section {
    padding: 4vmax 2vmax;
}

.case-section:nth-of-type(2n) {
    background: #f4f5f8;
}

.case-cat-ttl {
    font-size: 5rem;
    margin: 0 0 1em 0;
    padding: 0 0 0.2em 0;
    position: relative;
    text-align: center;
    color: var(--sub-color);
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.case-cat-ttl::before {
    position: absolute;
    bottom: 0em;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 2px;
    content: "";
    background: var(--sub-color);
}

.case-once {
    padding: 2vmax;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    font-size: 2rem;
    margin-bottom: 2vmax;
}

.case-once .image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: center;
}

.case-once .ttl {
    text-align: center;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 2.4rem;
    color: var(--sub-color);
}

.case-once .data {
    margin: 1em 0;
    text-align: left;
}

.case-once .btn {
    display: block;
    background: #22859f;
    color: #fff;
    padding: 0.3em;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    position: relative;
}

.case-once .btn::after {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: '\f0da';
    font-weight: 700;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.3em;
}

/* ////////////////////////////////////////////
*                case - single
* //////////////////////////////////////////// */

.case-single-title {
    text-align: center;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 4.5rem;
    color: var(--sub-color);
    margin-bottom: 1em;
}

.case-single {
    max-width: 1000px;
    margin: 0 auto 6vmax auto;
    font-size: 2rem;
    padding-top: 4vmax;
}

@media screen and (max-width:768px) {
    .case-single {
        padding: 0 2vmax;
    }
}

.case-single .image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4vmax;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 2.4rem;
}

.case-single .subttl {
    font-size: 2.4rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.case-single .subimage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 4vmax;
}

.case-single .subimage li {
    text-align: center;
}

.case-single .data {
    margin-bottom: 4vmax;
}

.case-single .data li {
    padding: 0.3em 1em;
    border-bottom: 1px solid #ccc;
    font-size: 2rem;
    text-align: left;
}

.case-single .fee-table {
    margin-bottom: 4vmax;
    text-align: left;

}

.case-single .fee-table table {
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.case-single .fee-table table th,
.case-single .fee-table table td {
    text-align: left;
    border: #ccc 1px solid;
    padding: 0.6em 1em;
}

.case-single .fee-table table th {
    background: #e3ebf0;
    width: 40%;
}

.case-single .risk-text {
    border: 1px solid #ccc;
    padding: 1.5em;
    text-align: left;
}

.case-slide-wrap {
    background: #f4f5f8;
    padding: 4vmax 0;
}

.case-slide-list {
    margin-bottom: 2vmax;
}

.case-slide-list li {
    padding: 0 1vmax;
}


.case-slide-wrap .btn-all {
    display: inline-block;
    border: 1px solid #22859f;
    color: #22859f;
    background: #fff;
    padding: 0.3em 4em;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    position: relative;
    border-radius: 3px;
}

.case-slide-wrap .btn-all::after {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: '\f0da';
    font-weight: 700;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.3em;
}