@charset "utf-8";

#wrapper {
    min-width: 320px;
}

.beige {
    color: #c6a878;
}

.blue {
    color: #001e4c;
}

.white {
    color: #fff;
}

.bg_beige {
    background-color: #c6a878;
}

.bg_lightbeige {
    background-color: #f1eee6;
}

.bg_blue {
    background-color: #001e4c;
}

.bg_white {
    background-color: #f1eee6;
}

@media (max-width: 599px) {
    .pic {
        width: 100%;
    }
}

.heading1 {
    font-size: 40px;
    line-height: 180%;
    margin-bottom: 3vw;
    letter-spacing: 5px;
    color: #c6a878;
    text-align: center;
}

@media (max-width: 1024px) {
    .heading1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}

@media (max-width: 599px) {
    .heading1 {
        font-size: 20px;
        letter-spacing: 2px;
    }
}

.heading2 {
    border-left: 7px solid #001e4c;
    color: #001e4c;
    font-size: 22px;
    padding-left: 8px;
    margin-bottom: 35px;
}

@media (max-width: 599px) {
    .heading2 {
        font-size: 18px;
        margin-bottom: 18px;
    }
}

.heading3 {
    color: #001e4c;
    font-size: 26px;
    padding-bottom: 15px;
    border-bottom: 1px solid #001e4c;
    margin-bottom: 35px;
}

@media (max-width: 599px) {
    .heading3 {
        font-size: 18px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
}

.sp_on {
    display: none;
}

@media (max-width: 599px) {
    .sp_on {
        display: block;
    }
}

.sp_no {
    display: block;
}

@media (max-width: 599px) {
    .sp_no {
        display: none;
    }
}

.txt {
    line-height: 200%;
}

.tac {
    text-align: center;
}

.tar {
    text-align: right;
}

/**
アスペクト比固定
*/
/*基本アスペクト
（下に続く比率クラスと合わせて使用）*/
.aspect {
    position: relative;
    display: block;
    overflow: hidden;
}

.aspect:before {
    display: block;
    content: '';
}

.aspect img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*IE対策*/
    font-family: 'object-fit cover object-position 50% 50%';
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

/*比率15％*/
.aspect.-ratio15:before {
    padding-top: 15%;
}

/*比率20％*/
.aspect.-ratio20:before {
    padding-top: 20%;
}

/*比率30％*/
.aspect.-ratio30:before {
    padding-top: 30%;
}

/*比率35％*/
.aspect.-ratio35:before {
    padding-top: 35%;
}

/*比率40％*/
.aspect.-ratio40:before {
    padding-top: 40%;
}

/*比率45％*/
.aspect.-ratio45:before {
    padding-top: 45%;
}

/*比率50％*/
.aspect.-ratio50:before {
    padding-top: 50%;
}

/*比率55％*/
.aspect.-ratio55:before {
    padding-top: 55%;
}

/*比率65％*/
.aspect.-ratio65:before {
    padding-top: 65%;
}

/*比率70％*/
.aspect.-ratio70:before {
    padding-top: 70%;
}

/*比率75％*/
.aspect.-ratio75:before {
    padding-top: 75%;
}

/*比率80％*/
.aspect.-ratio80:before {
    padding-top: 80%;
}

/*比率100％*/
.aspect.-ratio100:before {
    padding-top: 100%;
}

/*比率120％*/
.aspect.-ratio120:before {
    padding-top: 120%;
}

.buttonBox {
    position: relative;
}

.buttonBox .border {
    position: absolute;
    background: none;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.buttonBox a>.border:nth-of-type(2) {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 1px solid #001e4c;
}

.buttonBox a>.border:nth-of-type(3) {
    top: 0;
    right: 0;
    width: 0px;
    height: 0;
    border-right: 1px solid #001e4c;
}

.buttonBox a>.border:nth-of-type(4) {
    bottom: 0;
    right: 0;
    width: 0px;
    height: 0px;
    border-top: 1px solid #001e4c;
}

.buttonBox a>.border:nth-of-type(5) {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 0;
    border-left: 1px solid #001e4c;
}

.buttonBox a:hover {
    opacity: 1;
}

.buttonBox a:hover>.border:nth-of-type(2) {
    width: 100%;
}

.buttonBox a:hover>.border:nth-of-type(3) {
    height: 100%;
}

.buttonBox a:hover>.border:nth-of-type(4) {
    width: 100%;
}

.buttonBox a:hover>.border:nth-of-type(5) {
    height: 100%;
}

.buttonBox1 {
    position: relative;
    overflow: hidden;
}

.buttonBox1:before {
    content: "";
    display: block;
    width: 300px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0px;
    left: -300px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.buttonBox1 a:hover {
    opacity: 1;
    color: #fff;
}

.buttonBox1:hover:before {
    margin-left: 300%;
}

/* header*/
.header-left {
    width: 20%;
    max-width: 420px;
    z-index: 6;
}

.header-left .subtit {
    background-color: #00173a;
    display: block;
    padding: 15px 0;
}

@media (max-width: 599px) {
    .header-left {
        width: 42%;
    }

    .header-left .subtit {
        font-size: 10px;
        display: none;
    }
}

h1 a {
    display: block;
    padding: 40px 20px 190px;
}

h1 a img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    h1 a {
        padding-bottom: 50px;
    }
}

@media (max-width: 599px) {
    h1 a {
        padding: 20px;
        padding-bottom: 50px;
    }
}

/*.header-right {
  width: 80%;
  flex-grow: 1;
}*/

/*#gnav*/
#gnav {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-left: auto;
    padding: 20px calc(49% - 500px);
    background: #fff;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    position: fixed;
    top: -3px;
    left: 0;
    z-index: 5;
}

.fixed #gnav {
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);
}

.dropmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.dropmenu li a {
    display: block;
    padding: 0 20px;
    text-align: center;
    font-size: 16px;
}

.dropmenu li a .min {
    color: #c6a878;
    font-size: 12px;
    text-align: center;
    letter-spacing: 1px;
}

.dropmenu li a .ja {
    position: relative;
    display: inline-block;
}

.dropmenu li a .ja:after {
    content: "";
    bottom: -1px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #c6a878;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.dropmenu li a:hover {
    opacity: 1;
}

.dropmenu li:hover>a>.ja:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.dropmenu .dropdown {
    position: relative;
    overflow: hidden;
}

.dropmenu .dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    padding-top: 20px;
}

.dropmenu .dropdown ul li {
    overflow: hidden;
    width: 100%;
    height: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.dropmenu .dropdown ul li a {
    font-size: 12px;
    padding: 15px 10px;
    line-height: 140%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.dropmenu .dropdown ul li a .min {
    line-height: 200% !important;
    padding-top: 3px;
}

.dropmenu .dropdown:hover {
    overflow: visible;
}

.dropmenu .dropdown:hover ul {
    background: #fff;
}

.dropmenu .dropdown:hover li {
    height: auto;
    overflow: visible;
    border-top: 1px solid #ddd;
}

.dropmenu .dropdown:hover li a {
    opacity: 1;
}

@media (max-width: 1024px) {
    #gnav {
        padding: 0;
    }
}

@media (max-width: 599px) {
    #gnav {
        margin-top: 0;
        padding: 0;
    }
}

/*.mainimg*/
.mainimg {
    width: calc(100% - 120px);
    margin: -150px 0 0 auto;
    overflow: visible;
}

.mainimg .slide {
    position: relative;
}

.mainimg .slide .goldmark {
    position: absolute;
    top: 5vw;
    left: 5vw;
    width: 16vw;
    max-width: 245px;
}

.mainimg .slide .main-copy {
    font-size: 3vw;
    color: #001e4c;
    line-height: 150%;
    position: absolute;
    left: 5vw;
    top: 23vw;
}

@media (max-width: 1024px) {
    .mainimg {
        margin-top: -110px;
        width: 80%;
    }
}

@media (max-width: 599px) {
    .mainimg {
        width: 97%;
    }
}

/*.sidenav*/
.sidenav {
    position: fixed;
    top: 300px;
    right: 0;
    z-index: 3;
}

.sidenav li {
    margin-bottom: 5px;
}

.sidenav li a {
    display: block;
    padding: 40px 30px;
    background: #c6a878;
    position: relative;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
}

.sidenav li a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #f1eee6 transparent;
}

@media (max-width: 1024px) {
    .sidenav ul {
        display: none;
    }
}

.sidenav .contact a {
    padding-top: 65px;
}

.sidenav .contact a:before {
    content: "";
    display: block;
    position: absolute;
    background: url(/import/tenant_2/160.16.143.148/html/images/01index/img003.png) center center no-repeat;
    background-size: contain;
    width: 22px;
    height: 15px;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*.scrollnav*/
.scrollnav {
    position: absolute;
    left: -80px;
    display: block;
    width: 30px;
    height: 320px;
    top: auto;
    bottom: 28px;
}

.scrollnav a {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: relative;
    padding-top: 226px;
}

.scrollnav a:after {
    content: "";
    display: block;
    position: absolute;
    background: #c6a878;
    background-size: contain;
    width: 1px;
    height: 184px;
    top: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 1024px) {
    .scrollnav {
        height: 180px;
        left: -100px;
        bottom: -46px;
    }

    .scrollnav a {
        padding-top: 90px;
    }

    .scrollnav a:after {
        height: 80px;
    }
}

@media (max-width: 599px) {
    .scrollnav {
        display: none;
    }
}

/* .home-concept */
.home-concept {
    padding: 80px 0;
}

.home-concept-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.home-concept h2 {
    width: 15%;
    display: block;
    font-size: 40px;
    line-height: 1.5;
    color: #001e4c;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.home-concept h2 span {
    display: block;
}

.home-concept h2 .min {
    font-size: 14px;
}

.home-concept-item {
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.home-concept-item-img {
    width: 65%;
}

.home-concept-item-cont {
    width: 50%;
    margin-left: -15%;
}

.home-concept .home-concept-item .txt {
    padding: 50px 30px;
    background-color: #fff;
    z-index: 1;
    position: relative;
}

@media (max-width: 1024px) {
    .home-concept {
        padding: 50px 0;
    }

    .home-concept-box {
        display: block;
    }

    .home-concept h2 {
        width: 100%;
        font-size: 34px;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        margin-bottom: 30px;
    }

    .home-concept-item {
        width: 100%;
    }

    .home-concept .home-concept-item .txt {
        padding: 30px 20px;
    }
}

@media (max-width: 599px) {
    .home-concept h2 {
        font-size: 24px;
    }

    .home-concept-item-img,
    .home-concept-item-cont {
        width: 100%;
        margin-left: 0;
    }

    .home-concept .home-concept-item .txt {
        padding: 20px 0;
    }
}

/*home-reason*/
.home-reason {
    padding: 90px 0 0px;
}

.home-reason h2 {
    font-size: 40px;
    line-height: 180%;
    margin-bottom: 3vw;
    letter-spacing: 5px;
    color: white;
}

.home-reason h2 .big {
    font-size: 90px;
}

.home-reason h2 .tu {
    margin-left: -20px;
}

.point_list li {
    margin-bottom: 13%;
}

.point_list li a {
    display: block;
}

.point_list li .pic {
    border-bottom: 3px #c6a878 solid;
}

.point_list li .tit {
    padding: 30px 0;
    font-size: 24px;
    line-height: 150%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

@media (max-width: 599px) {
    .home-reason {
        padding: 30px 0;
    }

    .home-reason h2 {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .home-reason h2 .big {
        font-size: 45px;
    }

    .home-reason h2 .tu {
        margin-left: -10px;
    }

    .point_list li {
        width: 85%;
        margin: 0 auto;
        margin-bottom: 13%;
    }

    .point_list li .pic {
        width: 100%;
    }

    .point_list li .tit {
        padding: 20px 0;
        font-size: 18px;
    }
}

/*--home-commit--*/
.home-commit {
    padding: 90px 0 0;
}

.home-commit .heading1 {
    margin-bottom: 40px;
}

.home-commit .txt {
    font-size: 16px;
    margin-bottom: 60px;
}

.commit_list .box ul {
    border: solid 1px #001e4c;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 45px 12% 70px;
}

.commit_list .box .btn {
    width: 80%;
    margin: -45px auto 0;
}

.commit_list .box .btn a {
    padding: 20px 0px;
    font-size: 16px;
    display: block;
    cursor: pointer;
    position: relative;
}

.commit_list .box .btn a:after {
    content: "";
    display: block;
    position: absolute;
    background: url(/import/tenant_2/160.16.143.148/html/images/01index/img015.png) center center no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

.commit_list .box li {
    font-size: 16px;
    padding-left: 40px;
    position: relative;
    margin-bottom: 23px;
}

.commit_list .box li:after {
    content: "";
    display: block;
    position: absolute;
    background: url(/import/tenant_2/160.16.143.148/html/images/01index/img014.png) center center no-repeat;
    background-size: contain;
    width: 26px;
    height: 17px;
    top: 2px;
    left: 0px;
}

@media (max-width: 599px) {
    .home-commit {
        padding: 40px 0 60px;
    }

    .home-commit .heading1 {
        margin-bottom: 20px;
        line-height: 150%;
    }

    .home-commit .txt {
        font-size: 14px;
        text-align: left;
        margin: 0 auto;
        width: 90%;
        margin-bottom: 30px;
        line-height: 230%;
    }

    .home-commit .inner>ul {
        width: 85%;
    }

    .commit_list .box ul {
        padding: 30px 10% 50px;
    }

    .commit_list .box .btn a {
        padding: 12px 0;
        font-size: 14px;
    }

    .commit_list .box .btn {
        margin-top: -38px;
    }

    .commit_list .box {
        margin-bottom: 30px;
    }
}

/*--home-menu--*/
.home-menu {
    padding: 86px 0 56px;
}

.home-menu li {
    margin-bottom: 30px;
}

.home-menu li a {
    padding: 35px 0;
    text-align: center;
    display: block;
    background: #fff;
    height: 100%;
}

.home-menu li a .icon {
    margin-bottom: 25px;
    display: block;
}

@media (max-width: 599px) {
    .home-menu {
        padding: 50px 0 20px;
    }

    .home-menu li a {
        padding: 24px 0;
    }
}

/*--home-greet--*/
.home-greet h3 {
    margin-top: 20px;
    font-size: 34px;
    line-height: 180%;
    margin-bottom: 30px;
}

.home-greet .txt {
    line-height: 220%;
    margin-bottom: 35px;
}

.home-greet .b_btn {
    width: 80%;
    max-width: 250px;
    letter-spacing: 2px;
}

.home-greet .b_btn a {
    padding: 20px 0;
    position: relative;
    display: block;
    color: #fff;
}

.home-greet .b_btn a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 22px;
    height: 1px;
    background: #fff;
}

.home-greet .b_btn a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 22px;
    width: 10px;
    height: 3px;
    background: #fff;
}

.home-greet .right .tit {
    padding-top: 15px;
}

.home-greet .right .tit .min {
    padding-left: 15px;
}

@media (max-width: 599px) {
    .home-greet {
        padding: 40px 0 50px;
    }

    .home-greet h3 {
        font-size: 18px;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .home-greet .txt {
        font-size: 14px;
        margin: 0 auto;
        width: 90%;
        margin-bottom: 35px;
    }

    .home-greet .b_btn {
        margin: 0 auto;
    }

    .home-greet .right {
        margin-bottom: 10px;
    }

    .home-greet .flexb {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

/*--home-blognews--*/
.home-blognews {
    padding: 86px 0;
}

.home-blognews .box {
    padding: 45px 35px;
    border-top: 3px #001e4c solid;
    background: #fff;
}

.home-blognews .h3_area {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.home-blognews h3 {
    padding: 0 80px;
    font-size: 28px;
}

.home-blognews .blog_btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

.home-blognews .blog_btn a {
    display: block;
    padding-left: 20px;
    position: relative;
    text-decoration: underline;
}

.home-blognews .blog_btn a:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(/import/tenant_2/160.16.143.148/html/images/01index/img027.png) center center no-repeat;
    background-size: contain;
}

.home-blognews li {
    padding-bottom: 20px;
    padding-top: 25px;
    border-bottom: 1px #ddd solid;
    margin-bottom: 0px;
}

.home-blognews li:last-of-type {
    border-bottom: 0px;
}

.home-blognews li .day {
    letter-spacing: 2px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.home-blognews li .tit {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 10px;
}

.home-blognews li .tit a {
    font-size: 16px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .home-blognews {
        padding-bottom: 40px;
    }

    .home-blognews .box {
        width: 80%;
        max-width: 600px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 599px) {
    .home-blognews {
        padding: 35px 0 10px;
    }

    .home-blognews h3 {
        padding: 0;
        font-size: 24px;
    }

    .home-blognews .blog_btn {
        position: relative;
        top: auto;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        margin-top: 0px;
        text-align: center;
        right: auto;
        display: inline-block;
    }

    .home-blognews .h3_area {
        text-align: right;
        margin-bottom: 10px;
    }

    .home-blognews .box {
        width: 90%;
        padding: 30px 20px 15px;
    }

    .home-blognews li {
        padding-bottom: 12px;
        padding-top: 18px;
    }

    .home-blognews li .day {
        width: 100%;
    }

    .home-blognews li .tit {
        width: 100%;
    }

    .home-blognews li .tit a {
        font-size: 14px;
    }
}

/*--home-bnr--*/
.home-bnr {
    padding: 50px 0;
}

.home-bnr .doctor-bnr {
    display: inline-block;
}

.home-bnr .doctor-bnr a {
    display: block;
    text-align: center;
}

@media (max-width: 599px) {
    .home-bnr {
        padding: 20px 0;
    }

    .home-bnr .inner {
        width: 75%;
    }
}

/*--footer--*/
.footer-menu {
    padding: 70px 0 75px;
}

.footer-menu .left {
    width: 30%;
}

.footer-menu .left .logo {
    margin-bottom: 30px;
}

.footer-menu .left .logo a {
    display: block;
}

.footer-menu .left .tel a {
    color: #fff;
}

.footer-menu .left .address {
    line-height: 180%;
}

.footer-menu .left .time {
    margin-top: 40px;
}

.footer-menu .right {
    margin-top: 30px;
    width: 65%;
}

.footer-menu .right .tit {
    border: 1px #c6a878 solid;
    padding: 0px 0;
    display: block;
    margin-bottom: 20px;
}

.footer-menu .right ul {
    display: block;
    border-left: 1px #c6a878 solid;
    padding-left: 18px;
}

.footer-menu .right li {
    margin-bottom: 15px;
}

.footer-menu .right li a {
    display: block;
    color: #fff;
}

.footer-menu .right li:last-of-type a {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.footer-menu .clinic {
    width: 33%;
}

.footer-menu .menu {
    width: 62%;
}

.footer-menu .menu .left_ul {
    width: 60%;
}

.footer-menu .menu .right_ul {
    width: 35%;
}

.copy {
    padding: 30px 0;
    letter-spacing: 1px;
    font-size: 12px;
}

.footer-map:after {
    padding-top: 25%;
}

.totop {
    position: fixed;
    right: 30px;
    bottom: 50px;
}

.totop a {
    display: block;
    width: 58px;
    height: 58px;
    position: relative;
    background: #fff;
    border: 1px solid #001e4c;
}

.totop a:after {
    content: "";
    display: block;
    width: 7px;
    height: 37px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(/import/tenant_2/160.16.143.148/html/images/01index/img030.png) center center no-repeat;
    background-size: contain;
}

@media (max-width: 599px) {
    .footer-menu {
        padding: 50px 0;
    }

    .footer-menu .left {
        width: 85%;
        margin: 0 auto;
    }

    .footer-menu .left .logo {
        width: 60%;
        margin: 0 auto 30px;
    }

    .footer-menu .right {
        width: 95%;
    }

    .footer-menu .right ul {
        padding-left: 10px;
    }

    .footer-menu .right li a {
        padding-bottom: 12px;
        font-size: 13px;
    }

    .footer-menu .clinic {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-menu .menu {
        width: 100%;
    }

    .footer-menu .menu .left_ul {
        width: 58%;
    }

    .footer-menu .menu .right_ul {
        width: 40%;
    }

    .footer-map:after {
        padding-top: 50%;
    }

    .copy {
        padding: 15px 0;
        font-size: 12px;
    }
}

/*--under--*/
.under-header h1 a {
    padding-bottom: 40px;
}

.under-mainimg {
    width: 100%;
    position: relative;
    background: #fff;
}

.under-mainimg img {
    opacity: 0.3;
}

.under-mainimg h2 {
    font-size: 38px;
    line-height: 150%;
    position: absolute;
    left: 20%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.under-mainimg h2 .min {
    left: 200%;
}

@media (max-width: 1024px) {
    /*.under-mainimg {
    margin-left: 20%;
    margin-top: -122px;
  }*/

    .under-mainimg h2 {
        left: 7%;
    }
}

@media (max-width: 599px) {
    .under-mainimg {
        margin-left: 0;
        margin-top: 0;
    }

    .under-mainimg .pic {
        width: 100%;
    }

    .under-mainimg .header-right {
        display: none;
    }

    .under-mainimg h2 {
        font-size: 24px;
        line-height: 120%;
    }

    .under-mainimg h2 .min {
        font-size: 14px;
    }

    .under-header h1 a {
        padding-bottom: 30px;
    }
}

/*---pankuzu--*/
.pankuzu .inner {
    padding: 40px 0;
}

.pankuzu li {
    position: relative;
    display: inline-block !important;
    font-size: 16px;
    padding-left: 30px;
}

.pankuzu li:before {
    content: "";
    display: block;
    width: 7px;
    height: 10px;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(/import/tenant_2/160.16.143.148/html/images/02about/img016.png) center center no-repeat;
    background-size: contain;
}

.pankuzu li:first-of-type {
    padding-left: 0;
}

.pankuzu li:first-of-type:before {
    display: none;
}

/*--about1--*/
.about1 h3 {
    font-size: 40px;
    line-height: 180%;
    margin-bottom: 3vw;
    letter-spacing: 5px;
    margin-top: 3vw;
}

.about1 h3 .big {
    font-size: 90px;
}

.about1 h3 .big .tu {
    margin-left: -20px;
}

@media (max-width: 599px) {
    .about1 h3 {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .about1 h3 .big {
        font-size: 45px;
    }

    .about1 h3 .tu {
        margin-left: -10px;
    }
}

.about-link li {
    margin-bottom: 2%;
}

.about-link li a {
    display: block;
    padding: 0px 0;
    position: relative;
    font-size: 16px;
    height: 100%;
    min-height: 80px;
}

.about-link li a:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(/import/tenant_2/160.16.143.148/html/images/02about/img000.png) center center no-repeat;
    background-size: contain;
}

.about-link li a .text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

.about01_list {
    margin: 150px 0;
}

.about01_list li:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*--cmn_list--*/
.cmn_list li {
    margin-bottom: 130px;
}

.cmn_list h4 {
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 0px;
    display: block;
    padding-left: 100px;
    position: relative;
    line-height: 140%;
}

.cmn_list .num {
    font-size: 65px;
    padding-right: 5px;
    position: absolute;
    left: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cmn_list .txt {
    font-size: 16px;
    line-height: 220%;
}

@media (max-width: 599px) {
    .cmn_list h4 {
        font-size: 20px;
        padding-left: 70px;
    }

    .cmn_list h4 .num {
        font-size: 50px;
    }

    .cmn_list li {
        margin-bottom: 50px;
    }
}

/*--about2----*/
.about2 {
    padding: 150px 0;
}

.about2 .pic {
    margin-bottom: 45px;
}

.about2 .name {
    text-align: right;
    margin-bottom: 40px;
}

.about2 .name .min {
    padding-left: 20px;
}

.about2 .txt {
    position: relative;
    padding-top: 140px;
    padding-bottom: 70px;
    margin-top: -140px;
}

.about2 .txt:after {
    content: "";
    display: block;
    position: absolute;
    width: 200vw;
    height: 100%;
    background: #001e4c;
    top: 0;
    left: -100%;
    z-index: -1;
}

/*--about3----*/
.about3 {
    padding: 0px 0 150px;
}

.about3 .heading1 {
    text-align: left;
    margin-bottom: 2vw;
}

/*--about4----*/
.about4 {
    padding: 120px 0 120px;
    position: relative;
}

.about4 .inner {
    position: relative;
    z-index: 1;
}

.about4 .heading1 {
    color: #001e4c;
}

.about4 .num {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about4 .num:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 30px;
    height: 30px;
    background: url(/import/tenant_2/160.16.143.148/html/images/02about/img005.png) center center no-repeat;
    background-size: contain;
}

.about4 .txt {
    margin-top: 20px;
    font-size: 16px;
}

.about4 .box {
    background: #fff;
    border: 1px solid #001e4c;
    padding: 24px 10px 32px;
    position: relative;
}

.about4 .box:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #001e4c transparent;
}

.about4 .box:nth-of-type(even) {
    margin-top: 2%;
    margin-bottom: 4%;
}

.about4 .bkimg {
    height: 100%;
}

.about4 .bkimg img {
    opacity: 0.3;
    z-index: -1;
    height: 100%;
    font-family: 'object-fit cover object-position 50% 50%';
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

@media (max-width: 1024px) {
    .about01_list {
        margin-bottom: 100px;
    }

    .about2 {
        padding-top: 40px;
    }

    .about3 {
        padding-bottom: 100px;
    }

    .about4 {
        padding: 0px 0 100px;
    }

    .about4 .bkimg img {
        opacity: 1;
    }
}

@media (max-width: 599px) {
    .about01_list {
        margin: 50px 0;
    }

    .about2 {
        padding: 50px 0;
    }

    .about4 ul {
        width: 80%;
        margin: 40px auto;
    }
}

/*--common-bnr1--*/
.commonbnr1 {
    padding: 70px 0 50px;
}

.commonbnr1 .box {
    position: relative;
    background: #fff;
    border: 1px solid #001e4c;
    margin-bottom: 20px;
}

.commonbnr1 .box a {
    display: block;
}

.commonbnr1 .box:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 14px;
    width: 24px;
    height: 24px;
    background: url(/import/tenant_2/160.16.143.148/html/images/02about/img000.png) center center no-repeat;
    background-size: contain;
    z-index: 2;
}

.commonbnr1 .box img {
    opacity: 0.3;
}

.commonbnr1 .tit {
    display: block;
    padding: 20px 24px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 599px) {
    .commonbnr1 ul {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

/*--guide1--*/
.guide1 {
    padding: 150px 0 150px;
}

.guide1 .heading1 {
    text-align: left;
}

.guide1 dt {
    width: 15%;
    font-size: 18px;
}

.guide1 dd {
    width: 83%;
    font-size: 18px;
}

.guide1 ul {
    padding: 40px 0px 0px;
    max-width: 830px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.guide1 li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 27px;
    margin-bottom: 27px;
}

@media (max-width: 1024px) {
    .guide1 {
        padding: 100px 0;
    }
}

@media (max-width: 599px) {
    .guide1 {
        padding: 50px 0;
    }

    .guide1 dd {
        font-size: 16px;
        width: 100%;
    }

    .guide1 dt {
        font-size: 16px;
        width: 100%;
        padding-bottom: 8px;
    }

    .guide1 li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

/*--guide2--*/
.guide2 {
    padding: 65px 0;
}

.guide2 .heading1 {
    color: #fff;
    text-align: left;
    margin-bottom: 2vw;
}

.guide2 table {
    background: #fff;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.guide2 th {
    padding: 20px 0;
    color: #c6a878;
}

.guide2 td {
    width: 10%;
}

.guide2 th,
.guide2 td {
    font-size: 24px;
    text-align: center;
    border-bottom: 1px solid #001e4c;
}

.guide2 .comment {
    text-align: right;
    margin-top: 20px;
    display: block;
}

@media (max-width: 599px) {
    .guide2 {
        padding: 40px 0;
    }

    .guide2 th,
    .guide2 td {
        font-size: 16px;
    }
}

/*--guide3--*/
.guide3 {
    padding: 150px 0;
}

.guide3 .heading1 {
    text-align: left;
    margin-bottom: 3vw;
}

.guide3 .txt {
    margin-bottom: 40px;
    font-size: 16px;
}

.guide3 dl {
    margin-bottom: 30px;
}

.guide3 dt {
    margin-bottom: 10px;
    font-size: 16px;
}

.guide3 dd {
    font-size: 16px;
}

.guide3 .map {
    margin-bottom: 70px;
}

@media (max-width: 1024px) {
    .guide3 {
        padding: 100px 0;
    }
}

@media (max-width: 599px) {
    .guide3 {
        padding: 50px 0;
    }
}

/*--guide4--*/
.guide4 {
    padding: 150px 0;
}

.guide4 .heading1 {
    margin-bottom: 5vw;
}

.dl_list1 li {
    width: 46%;
    margin-bottom: 8%;
}

.dl_list1 .pic {
    margin-bottom: 25px;
}

.dl_list1 .tit {
    font-size: 20px;
    margin-bottom: 20px;
}

.dl_list1 .txt {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .guide4 {
        padding: 0px 0 100px;
    }
}

@media (max-width: 599px) {
    .guide4 .pic {
        width: 100%;
    }

    .dl_list1 .tit {
        font-size: 18px;
    }

    .dl_list1 li {
        width: 100%;
    }

    .dl_list1 .pic {
        width: 100%;
    }
}

.guide5 h3 {
    margin-bottom: 100px;
}

.guide5 li:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media (max-width: 599px) {
    .guide5 h3 {
        margin-bottom: 40px;
    }
}

.dl_list2 li {
    margin-bottom: 100px;
}

@media (max-width: 599px) {
    .dl_list2 .pic {
        margin-bottom: 20px;
        width: 100%;
    }

    .dl_list2 li {
        margin-bottom: 50px;
    }
}

/*guide6*/
.guide6 {
    padding: 60px 0;
}

.guide6 .heading1 {
    margin-bottom: 80px;
}

.guide6 .h1_undertxt {
    margin-bottom: 80px;
}

@media (max-width: 599px) {
    .guide6 {
        padding: 30px 0 50px;
    }

    .guide6 .heading1 {
        margin-bottom: 40px;
    }

    .guide6 .h1_undertxt {
        margin-bottom: 40px;
    }
}

/*feature1*/
.feature1 {
    padding: 70px 0;
    background: #f7f6f3;
    position: relative;
}

.feature1:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -69px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 210px;
    height: 70px;
    background: url(/import/tenant_2/160.16.143.148/html/images/04feature/img008.png) center center no-repeat;
    background-size: contain;
    z-index: 2;
}

.feature1 .heading1 {
    color: #001e4c;
}

/*feature2*/
.feature2 {
    padding: 100px 0 80px;
}

.feature2 .heading1 {
    color: #fff;
    border-bottom: 1px #fff solid;
}

.feature2 .nayamilist1 {
    margin-bottom: 70px;
    padding-top: 20px;
}

.nayamilist1 .tit {
    color: #fff;
    font-size: 20px;
    padding-left: 35px;
    padding-bottom: 12px;
    position: relative;
}

.nayamilist1 .tit:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
}

.nayamilist1 .txt {
    font-size: 14px;
    color: #fff;
    padding-left: 35px;
}

.nayamilist1 li {
    margin-bottom: 45px;
}

@media (max-width: 599px) {
    .nayamilist1 .tit {
        font-size: 16px;
    }

    .nayamilist1 .tit:after {
        width: 16px;
        height: 16px;
    }
}

/*feature3*/
.feature3 {
    padding: 150px 0 100px;
}

.feature3 .heading1 {
    margin-bottom: 4vw;
}

.feature3 .heading2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.feature3 li {
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .feature3 {
        padding: 100px 0 0px;
    }
}

@media (max-width: 599px) {
    .feature3 {
        padding: 50px 0 0px;
    }

    .feature3 .heading1 {
        margin-bottom: 30px;
    }

    .feature3 .heading2 {
        font-size: 18px;
    }
}

/*feature4*/
.feature4 {
    padding: 50px 0 150px;
}

.feature4 .heading1 {
    margin-bottom: 5vw;
}

.feature4 .heading3 {
    margin-bottom: 30px;
}

.feature4 li {
    margin-bottom: 100px;
}

.feature4 .pic {
    margin-bottom: 26px;
}

@media (max-width: 1024px) {
    .feature4 {
        padding-bottom: 50px;
    }
}

@media (max-width: 599px) {
    .feature4 .heading3 {
        margin-bottom: 18px;
    }

    .feature4 li {
        margin-bottom: 50px;
    }
}

/*gishi1*/
.gishi1,
.gishi3 {
    padding: 150px 0;
}

.gishi1 .pic,
.gishi3 .pic {
    margin-bottom: 30px;
}

@media (max-width: 1024px) {

    .gishi1,
    .gishi3 {
        padding: 80px 0;
    }
}

@media (max-width: 599px) {

    .gishi1,
    .gishi3 {
        padding: 50px 0;
    }
}

/*gishi2*/
.gishi2 li {
    margin-bottom: 130px;
}

.gishi2 h4 {
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 0px;
    display: block;
    padding-left: 100px;
    position: relative;
    line-height: 140%;
}

.gishi2 .num {
    font-size: 65px;
    padding-right: 5px;
    position: absolute;
    left: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gishi2 .txt {
    font-size: 16px;
    line-height: 220%;
}

@media (max-width: 1024px) {
    .gishi2 li {
        margin-bottom: 80px;
    }
}

@media (max-width: 599px) {
    .gishi2 h4 {
        font-size: 20px;
        padding-left: 60px;
    }

    .gishi2 h4 .num {
        font-size: 40px;
    }

    .gishi2 .heading1 {
        margin-bottom: 30px;
        font-size: 22px;
    }
}

.commonbnr2 .w100_bnr {
    position: relative;
    width: 95%;
    display: block;
    margin: 0 auto;
    border: 1px solid #001e4c;
    margin-bottom: 20px;
}

.commonbnr2 .w100_bnr .tit {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 160%;
    display: inline-block;
    width: auto;
}

.commonbnr2 .w100_bnr a {
    display: block;
    position: relative;
}

.commonbnr2 .w100_bnr a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 14px;
    width: 24px;
    height: 24px;
    background: url(/import/tenant_2/160.16.143.148/html/images/02about/img000.png) center center no-repeat;
    background-size: contain;
    z-index: 2;
}

@media (max-width: 599px) {
    .commonbnr2 .w100_bnr .tit {
        font-size: 16px;
        padding-right: 30px;
        left: 0;
    }

    .commonbnr2 .aspect.-ratio15:before {
        padding-top: 30%;
    }
}

/*souireba1*/
.souireba1 {
    padding: 150px 0;
}

.souireba1 .pic {
    margin-bottom: 30px;
}

.souireba1 .txt {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .souireba1 {
        padding: 100px 0;
    }
}

@media (max-width: 599px) {
    .souireba1 {
        padding: 50px 0;
    }

    .souireba1 .txt {
        font-size: 14px;
    }
}

/*check_list*/
.check_list {
    padding: 50px 0;
}

.check_list h3 {
    margin-bottom: 40px;
}

.check_list ul {
    display: block;
    max-width: 400px;
    width: 98%;
    margin: 0 auto;
}

.check_list li {
    padding-left: 20px;
    position: relative;
    color: #fff;
    margin-bottom: 15px;
    font-size: 17px;
}

.check_list li:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 8px;
    left: 0;
    background: #fff;
}

.gishi3 h3 {
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .gishi3 h3 {
        margin-bottom: 50px;
    }
}

@media (max-width: 599px) {
    .gishi3 h3 {
        margin-bottom: 30px;
    }
}

/*merit_box*/
.merit_box ul {
    margin-bottom: 100px;
}

.merit_box h4 {
    margin-bottom: 60px;
    padding: 8px 0;
}

.merit_box dt {
    border-bottom: 1px solid #c6a878;
    padding-bottom: 8px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    padding-left: 4px;
}

.merit_box dd {
    padding-left: 4px;
    line-height: 230%;
}

.merit_box dl {
    margin-bottom: 70px;
}

@media (max-width: 1024px) {
    .merit_box ul {
        margin-bottom: 50px;
    }
}

@media (max-width: 599px) {
    .merit_box dl {
        margin-bottom: 50px;
    }
}

.flow1 {
    padding: 130px 0;
    background: #f7f6f3;
}

.flow1 position relative:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -69px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 210px;
    height: 70px;
    background: url(/import/tenant_2/160.16.143.148/html/images/04feature/img008.png) center center no-repeat;
    background-size: contain;
    z-index: 2;
}

.flow1 .heading1 {
    margin-bottom: 50px;
}

.flow1 h4 {
    margin-bottom: 35px;
}

.flow1 .txt {
    margin-bottom: 45px;
    font-size: 16px;
    line-height: 230%;
}

.flow2 {
    padding: 150px 0 110px;
}

.flow2 li {
    margin-bottom: 50px;
}

.flow2 dl {
    display: block;
    padding: 30px;
    background: #fff;
}

.flow2 .tit {
    text-align: center;
    margin-bottom: 20px;
}

.flow2 .txt {
    line-height: 230%;
}

.flow3 {
    padding: 150px 0 100px;
}

.flow3 .heading1 {
    margin-bottom: 5vw;
}

.flow4 {
    padding: 0px 0 150px;
}

.flow4 .heading1 {
    margin-bottom: 5vw;
}

.flow4 h4 {
    border-bottom: 1px solid #001e4c;
    padding-bottom: 15px;
    margin-bottom: 40px;
    color: #001e4c;
    text-align: left;
    font-size: 30px;
}

.flow4 .pic {
    margin-bottom: 30px;
}

.flow4 .txt {
    margin-bottom: 50px;
    font-size: 16px;
}

.flow4 .sign {
    text-align: right;
    display: inline-block;
    width: 100%;
}

.price1 {
    padding-bottom: 100px;
}

.price1 .tit {
    border-bottom: 1px solid #001e4c;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 20px;
}

.price1 .komidashi {
    margin-bottom: 30px;
    line-height: 180%;
}

.price1>div>ul {
    padding-top: 30px;
}

.price1>div>ul>li {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.price1>div>ul>li:nth-of-type(even):after {
    content: "";
    display: block;
    width: 200vw;
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    background: #f7f6f3;
    z-index: -1;
}

.star_rank {
    margin-bottom: 30px;
}

.star_rank dt {
    padding: 3px 15px;
    text-align: center;
    margin-right: 10px;
}

.star_rank dl {
    margin-bottom: 5px;
}

.care1 .dl_list2 li h4 {
    padding-left: 0;
    border-left: 0px;
}

.care1 .dl_list2 li:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.care2.feature4 .heading3 {
    border-bottom: 0px;
}

.gishi3.bite3 dt {
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 0px;
    display: block;
    padding-left: 100px;
    position: relative;
    line-height: 140%;
}

.gishi3.bite3 .num {
    font-size: 65px;
    padding-right: 5px;
    position: absolute;
    left: 5px;
    top: 50%;
    padding-bottom: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gishi3.bite3 ul {
    margin-bottom: 0;
}

.bite4 {
    padding-bottom: 150px;
}

.access4 .tit {
    font-size: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid #001e4c;
    margin-bottom: 18px;
}

.access4 .en_list>li {
    margin-bottom: 80px;
}

.access4 .in_list>li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 190%;
}

.faq1 ul {
    margin-top: 150px;
}

.faq1 li {
    margin-bottom: 70px;
}

.faq1 .tit {
    position: relative;
    padding-left: 15px;
    padding-bottom: 15px;
    font-size: 18px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

.faq1 .tit:before {
    content: "Q";
    color: #c6a878;
    padding-right: 15px;
    font-size: 24px;
}

.faq1 .tit:after {
    content: "";
    display: block;
    width: 12px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(/import/tenant_2/160.16.143.148/html/images/15faq/img001.png);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.faq1 .tit.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 35%;
}

.faq1 .txt {
    padding: 20px 40px 50px;
    border-top: 1px solid #ddd;
    display: none;
}

.must {
    display: inline-block;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    margin-left: 10px;
    padding: 2px 10px;
    background-color: #ff4500;
}

.contact1 {
    padding: 100px 0 150px;
}

.contact1 .table {
    width: 98%;
    max-width: 850px;
    margin: 0 auto;
}

.contact1 dl {
    margin-bottom: 40px;
}

.contact1 dt {
    width: 30%;
    line-height: 36px;
    font-size: 16px;
    position: relative;
}

.contact1 dd {
    width: 70%;
    position: relative;
}

.contact1 dd .size1 {
    background: #ddd;
    border: solid 1px #001e4c;
    width: 100%;
    line-height: 36px;
}

.contact1 dd textarea {
    background: #ddd;
    border: solid 1px #001e4c;
    width: 100%;
}

.contact1 dd label {
    padding-left: 5px;
    padding-right: 30px;
    font-size: 16px;
}

.contact1 button {
    background: #001e4c;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 12px 0;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 20px;
    border: 0px;
    width: 98%;
    max-width: 186px;
}

.contact1 button:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 7px;
    height: 10px;
    background: url(/import/tenant_2/160.16.143.148/html/images/16contact/img001.png) center center no-repeat;
    background-size: contain;
    z-index: 2;
}

.contact-btns .more {
    margin: 0 15px;
}

.blog1 {
    padding: 60px 0 150px;
}

.blog1 .left li {
    margin-bottom: 60px;
}

.blog1 .left a {
    display: block;
}

.blog1 .left .pic {
    width: 25%;
}

.blog1 .left .txtarea {
    width: 72%;
}

.blog1 .left .day {
    margin-bottom: 10px;
}

.blog1 .left .cate {
    padding: 1px 15px;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px;
}

.blog1 .left .tit {
    padding: 10px 0 5px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog1 .right .menu_ul {
    margin-bottom: 80px;
}

.blog1 .right dt {
    position: relative;
    padding-left: 30px;
    font-size: 24px;
    margin-bottom: 24px;
}

.blog1 .right dt:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(/import/tenant_2/160.16.143.148/html/images/17blog/img005.png) center center no-repeat;
    background-size: contain;
    z-index: 2;
}

.blog1 .right dd li {
    padding-left: 30px;
    margin-bottom: 17px;
    position: relative;
}

.blog1 .right dd li:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 7px;
    height: 10px;
    background: url(/import/tenant_2/160.16.143.148/html/images/17blog/img006.png) center center no-repeat;
    background-size: contain;
    z-index: 2;
}

.blog1 .right dd li a {
    display: block;
    color: #001e4c;
    font-size: 16px;
}

.pagenav {
    margin-top: 100px;
    text-align: center;
}

.pagenav ul {
    text-align: center;
}

.pagenav li {
    display: inline-block !important;
    margin: 5px 1px !important;
    vertical-align: middle;
}

.pagenav li a {
    display: block;
    font-size: 18px;
    padding: 0 13px 15px;
}

.blog_detail1 .left .heading {
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.blog_detail1 .left .day_cate {
    margin-bottom: 50px;
}

.blog_detail1 .txt_area {
    padding-bottom: 50px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 50px;
}

.blog_detail1 .kiziwrap {
    margin-bottom: 200px;
}

.blog_detail1 .recowrap .heading {
    font-size: 36px;
    margin-bottom: 50px;
    border: 0px;
}

.blog_detail1 .recowrap .day_cate {
    margin-bottom: 0px;
}

.back {
    width: 80%;
    max-width: 180px;
}

.back a {
    padding: 12px 0px;
    font-size: 16px;
    display: block;
    cursor: pointer;
    position: relative;
    text-align: center;
    color: #fff;
    background: #001e4c;
}

.back a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 10px;
    background: url(/import/tenant_2/160.16.143.148/html/images/99blog_detail/img000.png) center center no-repeat;
    background-size: contain;
    z-index: 2;
}

/* 見たまま編集 */
[data-element-id] .home-concept .left h2 {
    position: absolute !important;
}
