@charset "utf-8";
/* CSS Document */

* {
    line-height: 1;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

img {
    border: 0;
    vertical-align: top;
    object-fit: cover;
}


/*clearfix*/
.clearfix:after {
    content: " ";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
}

* html .clearfix {
    display: inline-block;
}

/* no ie mac \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.clearfix {
    overflow: hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    word-wrap: break-word;
}

/*body*/

body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
}


li {
    list-style-type: none;
}

a {
    text-decoration: none;
    transition: .5s;
}

a:hover {
    opacity: 0.75;
    transition: .5s;
}

/* basefont */
:root {
    --base-font: "Noto Sans JP", sans-serif;
    --title-font: "Zen Maru Gothic", sans-serif;
    --title-font2: "M PLUS Rounded 1c", sans-serif;
    --subtitle-font: "Josefin Sans", sans-serif;
    --number-font: "Roboto", sans-serif;

    --base-font-size: 16px;

    --base-weight: 400;
    --base-weight2: 500;
    --base-weight3: 600;

    --color-base: #000;
    --color-main: #50b47c;
    --color-sub: #009245;
    --color-sub2: #39b54a;
    --color-sub3: #006837;
    --color-sub4: #754c24;
    --color-sub5: #c38532;
    --color-sub6: #ff7e68;
    --color-back1: #fef8f7;
    --color-back2: rgba(140, 198, 63, 0.25);
    --color-back3: rgba(158, 229, 216, 0.1);
    --color-back4: #5cb985;
    --color-back5: #dcf0e5;
    --color-back6: #def2fb;
}


.contents-box {
    font-family: var(--base-font);
    font-weight: var(--base-weight);
    clear: both;
    margin-right: auto;
    margin-left: auto;
    font-size: var(--base-font-size);
    color: var(--color-base);
    line-height: 1;
}

.contents-box p {
    font-family: var(--base-font);
    font-weight: var(--base-weight);
    font-size: var(--base-font-size);
    color: var(--color-base);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.contents-box p br.sp-view {
    display: none;
}

.contents-box a {
    color: var(--color-base);
    font-weight: var(--base-weight2);
}

.contents-box p a {
    color: var(--color-base);
    font-weight: var(--base-weight2);
}

/* animation_box */

.animation_box {
    transition: 1s ease;
    opacity: 0;
    transition-delay: .5s;
    transform: translateY(0px);
}

.animation_box-left {
    transform: translateX(-100px);
}

.animation_box-right {
    transform: translateX(100px);
}

.animation_box2 {
    transition-delay: 1s;
}

.animation_box3 {
    transition-delay: 1.5s;
}

.animation_box4 {
    transition-delay: 2s;
}

.animation_box.effect {
    opacity: 1;
    transform: translate(0px);
}



/*header*/

.header-wrap {
    z-index: 9999999;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    align-items: flex-start;
    transition: .5s;
    padding: 0px 20px;
}

.header .header-left img,
nav .box-menu > h2 img {
    height: 75px;
    width: auto;
}

.header .header-left {
    padding-top: 20px;
}

.header .header-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px 20px;
}

.header .header-right h6 {
    font-family: var(--number-font);
    font-weight: var(--base-weight2);
    color: var(--color-main);
    font-size: 45px;
    line-height: 1.2;
    position: relative;
    padding-left: 65px;
}

.header .header-right h6::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background-image: url("../images/common/icon-tel.svg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 60px;
    height: 50px;
}


/*メニュー部分*/
nav {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    overflow: auto;
    background-color: #FFF;
}

nav .box-menu {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-image: url("../../common/images/common/back-contents.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

nav .box-menu > h2 {
    position: absolute;
    left: 20px;
    top: 20px;
}

nav .box-menu > h2 a:hover {
    opacity: 1;
}

nav .box-menu-wrap {
    width: 600px;
    padding: 25px 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
}


nav .box-menu-wrap ul li a {
    font-family: var(--title-font);
    font-weight: var(--base-weight);
    color: var(--color-sub);
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    display: block;
    text-align: left;
    padding: 20px 25px;
    position: relative;
    padding-left: 30px;
}

nav .box-menu-wrap ul li a span {
    font-family: var(--number-font);
    font-weight: var(--base-weight2);
    color: var(--color-main);
    font-size: 18px;
    line-height: 0.9;
    letter-spacing: 0em;
    display: inline-block;
    padding-left: 15px;
}

nav .box-menu-wrap ul li a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 34px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-sub);
}

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

    nav .box-menu-wrap {
        width: 100%;
        padding: 80px 0px 0px;
    }

    nav .box-menu-wrap ul li {
        border-top-style: solid;
        border-color: #ccc;
        border-width: 1px;
    }

    nav .box-menu-wrap ul li:last-child {
        border-bottom-style: solid;
    }

    nav .box-menu-wrap ul li a {
        padding: 17px 25px;
    }
}


/*開閉ボタン*/
#nav_toggle {
    display: inline-block;
    vertical-align: top;
    float: right;
    width: 80px;
    height: 80px;
    position: relative;
    top: 0px;
    right: 0px;
    z-index: 10000000000;
    background-color: var(--color-main);
    padding: 28px 20px;
    margin-right: 0px;
    margin-top: 0px;
    cursor: pointer;
    border-radius: 0px 0px 10px 10px;
}

#nav_toggle div {
    position: relative;
}

#nav_toggle span {
    display: block;
    height: 1px;
    background: #FFF;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#nav_toggle span:nth-child(1) {
    top: 0px;
}

#nav_toggle span:nth-child(2) {
    top: 12px;
}

#nav_toggle span:nth-child(3) {
    top: 24px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}


/*main-img*/

.main-img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.main-img .box-img {
    clip-path: url(#clip);
}

.main-img img {
    width: 100%;
    height: auto;
}

.main-img .box-text {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px 10%;
}

.main-img h2 {
    font-family: var(--number-font);
    font-weight: var(--base-weight3);
    color: var(--color-sub3);
    letter-spacing: 0.05em;
    line-height: 0.8;
    font-size: 80px;
}

.main-img h3 {
    font-family: var(--title-font);
    font-weight: var(--base-weight2);
    color: var(--color-main);
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    padding-top: 15px;
}


/* contents */

.contents {
    width: 100%;
}

.contents img {
    width: 100%;
    height: auto;
}

.contents p {
    line-height: 2;
}

.maincontents-inner {
    width: 100%;
    padding: 90px 0px 120px;
    position: relative;
}

.maincontents-inner::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background-image: url("../../common/images/common/back-contents.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 100%;
    height: 1250px;
    z-index: -1;
    margin-top: -100px;
}

.maincontents-inner .inner-wrap {
    width: 100%;
    position: relative;
}

.maincontents-inner .inner-wrap section:not(:last-child) {
    margin-bottom: 150px;
}

.maincontents-inner .inner-wrap section .box-inner {
    width: 100%;
    overflow: hidden;
    border-radius: 120px 120px 0px 0px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-top: 80px;
    position: relative;
}


.inner-wrap section .box-inner > div:not(:last-child) {
    margin-bottom: 80px;
}


/* layout */

.layout-80 {
    width: 80%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.layout-85 {
    width: 85%;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

.layout-1060 {
    width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.layout-1100 {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.layout-1180 {
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
}


/* box-title-page */

.inner-wrap section .box-inner > div.box-title-page {
    text-align: left;
    margin-bottom: 70px;
}

.box-title-page h2 {
    font-family: var(--number-font);
    font-weight: var(--base-weight3);
    color: var(--color-sub3);
    font-size: 68px;
    line-height: 0.9;
    letter-spacing: 0.05em;
}

.box-title-page h3 {
    font-family: var(--title-font);
    font-weight: var(--base-weight2);
    color: var(--color-main);
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    padding-top: 20px;
}

.box-title-page2 {
    margin-bottom: 50px;
    width: 100%;
    text-align: center;
}

.box-title-page2 h3,
.box-title-page2 h4,
.contents .box-title-page2 p {
    font-family: var(--title-font);
    font-weight: var(--base-weight2);
    color: var(--color-sub);
    line-height: 1.4;
}

.box-title-page2 h3 {
    font-size: 40px;
    letter-spacing: 0.2em;
}

.box-title-page2 h4 {
    font-size: 23px;
    padding-top: 5px;
}

.contents .box-title-page2 p {
    color: var(--color-base);
    font-size: 18px;
    padding-top: 30px;
}

/* link */

.link01 a {
    display: inline-block;
    padding: 20px 60px;
    border-radius: 60px;
    background-color: var(--color-sub2);
    font-weight: var(--base-weight2);
    color: #FFF;
    line-height: 1.2;
    letter-spacing: 0.1em;
    position: relative;
    text-align: center;
}

.link01 a:hover {
    opacity: 1;
    background-color: var(--color-sub);
}

.link01 a::before {
    content: "";
    position: absolute;
    right: 25px;
    top: 0px;
    background-image: url("../../common/images/common/link-arrow01.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 22px;
    width: 22px;
    height: 100%;
    transition: .5s;
}

.link01 a:hover::before {
    right: 15px;
}

/*layout-time*/

.layout-time {
    width: 100%;
}

.layout-time table {
    width: 100%;
}

.layout-time tr {
    border-bottom-style: solid;
    border-color: rgba(66, 33, 11, 0.5);
    border-width: 1px;
}

.layout-time td {
    padding: 15px 5px;
    font-weight: var(--base-weight);
    color: var(--color-sub5);
    font-size: var(--base-font-size);
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.layout-time td:first-child {
    width: 35%;
    white-space: nowrap;
    color: var(--color-sub4);
    letter-spacing: 0.5em;
    text-align: center;
}

.layout-time tr:first-child td {
    color: var(--color-base);
}

.layout-time tr:not(:first-child) td:first-child {
    letter-spacing: 0.05em;
}

.layout-time p {
    color: var(--color-sub4);
    text-align: left;
    padding-top: 15px;
}

.layout-time p span {
    color: var(--color-sub6);
}

/* box-time2 */

.box-time2 {
    overflow: hidden;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #FFF;
    margin-bottom: 80px;
}

.box-time2 h2 {
    width: 30%;
    background-color: var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.box-time2 h2 img {
    width: 55%;
}

.box-time2 .layout-time {
    flex: 1;
    padding: 25px 30px;
}


/* layout-treatment */

.layout-treatment {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px 1.5%;
    text-align: center;
}

.layout-treatment .box {
    width: 23.8%;
}

.layout-treatment .box a {
    width: 100%;
    height: 140px;
    background-color: #FFF;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 30%;
}

.layout-treatment .box a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 60%;
    width: 47%;
    height: 100%;
}

.layout-treatment .t01 a::before {
    background-image: url("../../common/images/common/icon-t01.svg");
    background-size: auto 60%;
}

.layout-treatment .t02 a::before {
    background-image: url("../../common/images/common/icon-t02.svg");
    background-size: auto 45%;
}

.layout-treatment .t03 a::before {
    background-image: url("../../common/images/common/icon-t03.svg");
    background-size: auto 45%;
}

.layout-treatment .t04 a::before {
    background-image: url("../../common/images/common/icon-t04.svg");
    background-size: auto 25%;
}

.layout-treatment .t05 a::before {
    background-image: url("../../common/images/common/icon-t05.svg");
    background-size: auto 45%;
}

.layout-treatment .t06 a::before {
    background-image: url("../../common/images/common/icon-t06.svg");
    background-size: auto 40%;
}

.layout-treatment .t07 a::before {
    background-image: url("../../common/images/common/icon-t07.svg");
    background-size: auto 50%;
}

.layout-treatment h5 {
    font-family: var(--title-font);
    font-weight: var(--base-weight);
    font-size: 26px;
    line-height: 1.2;
}

.layout-treatment h6 {
    font-family: var(--number-font);
    font-weight: var(--base-weight);
    font-size: 12px;
    line-height: 1.2;
    padding-top: 10px;
}

/* treatment-color */

.treatment-color .box:nth-child(1) a,
.treatment-color .box:nth-child(3) a,
.treatment-color .box:nth-child(6) a {
    background-color: var(--color-back5);
}

.treatment-color .box:nth-child(2) a,
.treatment-color .box:nth-child(4) a,
.treatment-color .box:nth-child(5) a,
.treatment-color .box:nth-child(7) a {
    background-color: var(--color-back6);
}


/*pagetop_btn*/

.pagetop_btn {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}

.pagetop_btn a {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.pagetop_btn a:hover {
    opacity: 0.75;
}

.pagetop_btn img {
    height: 70px;
    width: auto;
}



/*footer*/

footer {
    width: 100%;
}

/* footer-map */

.footer-map {
    width: 100%;
    text-align: center;
}

.footer-map .box-detail {
    background-color: var(--color-back2);
    padding: 25px 0px;
    border-top-style: solid;
    border-color: #cee7b2;
    border-width: 34px;
    position: relative;
}

.footer-map .box-detail::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background-image: url("../images/common/access.svg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 100%;
    height: 65px;
    margin-top: -65px;
}

.footer-map iframe {
    width: 100%;
    height: 450px;
}

.footer-map p {
    color: var(--color-sub3);
    line-height: 1.2;
    font-size: 18px;
}

/* footer-guide */

.footer-guide {
    padding: 60px 0px;
}

.footer-guide .box-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-guide .box-detail {
    flex: 1;
}

.box-time {
    width: 650px;
}

.box-time .layout-time {
    padding: 25px 30px;
    border-radius: 30px;
    background-color: var(--color-back1);
}

.footer-guide h2 {
    margin-bottom: 20px;
}

.footer-guide h2 img {
    width: auto;
    height: 80px;
}

.footer-guide h3,
.footer-guide h3 a {
    font-family: var(--number-font);
    font-weight: var(--base-weight2);
    color: var(--color-main);
    font-size: 55px;
    line-height: 1.2;
}

.footer-guide h3 {
    position: relative;
    display: inline-block;
    padding-left: 65px;
}

.footer-guide h3::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 5px;
    background-image: url("../images/common/icon-tel.svg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 60px;
    height: 50px;
}

.footer-guide h4,
.f-copy p {
    line-height: 1.2;
}

.footer-guide h4 {
    padding-top: 10px;
    font-weight: var(--base-weight2);
}

.f-copy p {
    font-size: 12px;
}

.footer-img img {
    width: 100%;
    height: auto;
    max-height: 340px;
}


/**
 * for SmartPhone
 */
@media screen and (min-width: 768px) {

    body {
        min-width: 1360px;
    }

    a[href^="tel:"] {
        pointer-events: none;
    }

    #header .sp-view {
        display: none;
    }

}

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

    html {
        scroll-padding-top: 80px;
    }

    /* basefont */
    :root {
        --base-font-size: 14px;
    }


    .contents-box p br.sp-view {
        display: inline-block;
    }


    /*header*/

    .header {
        padding: 0px 10px;
    }

    .header .header-left img,
    nav .box-menu > h2 img {
        height: 40px;
    }

    .header .header-left {
        padding-top: 10px;
    }

    .header-right h6 {
        display: none;
    }

    /* nav-pc */

    .nav-pc {
        display: none;
    }


    /*開閉ボタン*/
    #nav_toggle {
        width: 50px;
        height: 50px;
        padding: 17px 12px 0px;
        margin-right: 0px;
        margin-top: 0px;
        top: 0px;
        right: 0px;
    }

    #nav_toggle span:nth-child(1) {
        top: 0px;
    }

    #nav_toggle span:nth-child(2) {
        top: 8px;
    }

    #nav_toggle span:nth-child(3) {
        top: 16px;
    }

    /*開閉ボタンopen時*/
    .open #nav_toggle span:nth-child(1) {
        top: 8px;
    }

    .open #nav_toggle span:nth-child(3) {
        top: 8px;
    }


    .nav-pc {
        display: none;
    }

    nav .box-menu {
        justify-content: center;
        align-items: flex-start;
        background-image: none;
    }

    nav .box-menu > h2 {
        left: 10px;
        top: 10px;
    }

    nav .box-menu-wrap ul li a {
        font-size: 20px;
        padding-left: 40px;
    }

    nav .box-menu-wrap ul li a span {
        font-size: 14px;
        padding-left: 10px;
    }

    nav .box-menu-wrap ul li a::before {
        left: 20px;
        top: 27px;
        width: 8px;
        height: 8px;
    }


    /*main-img*/

    .main-img img {
        min-height: 200px;
    }

    .main-img .box-text {
        padding-top: 5px;
    }

    .main-img h2 {
        font-size: 30px;
    }

    .main-img h3 {
        font-size: 14px;
        padding-top: 10px;
    }


    /* contents */

    .contents {
        width: 100%;
    }

    .contents p {
        line-height: 1.8;
    }

    .maincontents-inner .box-img {
        text-align: center;
    }

    .maincontents-inner .box-img img {
        max-width: 400px;
    }

    .maincontents-inner {
        padding: 45px 0px 70px;
    }

    .maincontents-inner::before {
        height: 850px;
        margin-top: -350px;
    }

    .maincontents-inner .inner-wrap section:not(:last-child) {
        margin-bottom: 70px;
    }

    .maincontents-inner .inner-wrap section .box-inner {
        border-radius: 50px 50px 0px 0px;
        padding-top: 50px;
    }

    .inner-wrap section .box-inner > div:not(:last-child) {
        margin-bottom: 60px;
    }

    /* layout */

    .layout-80,
    .layout-85,
    .layout-1060,
    .layout-1100,
    .layout-1180 {
        width: 88%;
    }

    /* box-title-page */

    .inner-wrap section .box-inner > div.box-title-page {
        margin-bottom: 40px;
    }

    .box-title-page h2 {
        font-size: 35px;
    }

    .box-title-page h3 {
        font-size: 20px;
        padding-top: 12px;
    }

    .box-title-page2 {
        margin-bottom: 35px;
    }

    .box-title-page2 h3 {
        font-size: 26px;
        letter-spacing: 0.15em;
    }

    .box-title-page2 h4 {
        font-size: 18px;
        padding-top: 2px;
    }

    .contents .box-title-page2 p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0px;
        padding-top: 25px;
    }

    /* link */

    .link01 a {
        padding: 17px 60px;
    }

    /*layout-time*/

    .layout-time td {
        letter-spacing: 0em;
        font-size: 3vw;
    }

    .layout-time td:first-child {
        letter-spacing: 0.4em;
    }

    .layout-time tr:not(:first-child) td:first-child {
        letter-spacing: 0em;
    }

    .layout-time p {
        font-size: 3vw;
    }

    /* box-time2 */

    .box-time2 {
        border-radius: 20px;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .box-time2 h2 {
        width: 100%;
        padding: 20px 0px 15px;
    }

    .box-time2 h2 img {
        width: 35%;
    }

    .box-time2 .layout-time {
        width: 100%;
        padding: 0px 5% 15px;
    }



    /* layout-treatment */

    .layout-treatment {
        gap: 10px 4%;
    }

    .layout-treatment .box {
        width: 48%;
    }

    .layout-treatment .box a {
        height: 80px;
        border-radius: 12px;
    }

    .layout-treatment .box a::before {
        width: 40%;
    }

    .layout-treatment h5 {
        font-size: 18px;
    }

    .layout-treatment h6 {
        font-size: 10px;
        padding-top: 5px;
    }

    /*treatment-color */

    .treatment-color .box:nth-child(4n) a,
    .treatment-color .box:nth-child(4n+1) a {
        background-color: var(--color-back5);
    }

    .treatment-color .box:nth-child(4n+2) a,
    .treatment-color .box:nth-child(4n+3) a {
        background-color: var(--color-back6);
    }



    /*btn-top*/

    .pagetop_btn {
        /*    bottom: 10%;*/
        bottom: 10px;
        right: 10px;
    }

    .pagetop_btn img {
        height: 50px;
    }



    /*footer*/

    footer {
        text-align: center;
    }

    /* footer-map */

    .footer-map .box-detail {
        padding: 20px 0px;
        border-width: 20px;
    }

    .footer-map .box-detail::before {
        height: 50px;
        margin-top: -50px;
    }

    .footer-map iframe {
        width: 100%;
        height: 200px;
    }

    .footer-map p {
        font-size: 15px;
    }

    /* footer-guide */

    .footer-guide {
        padding: 50px 0px;
    }

    .footer-guide .box-inner {
        justify-content: center;
        gap: 30px;
    }

    .footer-guide .box-detail {
        width: 100%;
    }

    .box-time {
        width: 100%;
    }

    .box-time .layout-time {
        padding: 20px 6%;
        border-radius: 20px;
    }

    .footer-guide h2 img {
        height: 60px;
    }

    .footer-guide h3,
    .footer-guide h3 a {
        font-size: 36px;
    }

    .footer-guide h3 {
        padding-left: 45px;
    }

    .footer-guide h3::before {
        top: 5px;
        height: 34px;
    }

    .footer-guide h4 {
        line-height: 1.6;
    }


    .f-copy p {
        padding-top: 30px;
        font-size: 11px;
    }

    .footer-img img {
        min-height: 100px;
    }



}
