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

* {
    font-family: source-han-sans-japanese, sans-serif;
    color: #000;
    box-sizing: border-box;
    word-break: break-all;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.085em;
    text-align: justify;
}

.sp {
    display: none !important;
}

.gothic {
    font-family: source-han-sans-japanese, sans-serif;
}

.mincho,
ul.mincho li,
h2,
dl.number_list dt::before {
    font-family: source-han-serif-japanese, serif;
    font-weight: 400;
}

a,
.op {
    transition: .5s;
}

.op:hover {
    opacity: 0.7;
}

br {
    line-height: inherit;
}

span,
a,
strong,
small {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.linkwrap {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.body-wrap {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.sp {
    display: none;
}

/*  header-------------------------------------*/
header {
    position: fixed;
    background: rgba(255, 255, 255, 0.92);
    width: 100%;
    height: 110px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

header .logo {
    position: relative;
    width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .5s;
}

header .logo:hover {
    opacity: 0.7;
}

header .logo img {
    width: 250px;
}

header h1:before,
header .logo p.catch:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    content: "";
    background: #000;
    width: 1px;
    height: 30px;
    display: inline-block;
}

header h1,
header .logo p.catch {
    position: relative;
    width: 210px;
    font-size: 10px;
    letter-spacing: 0;
}

.link_wrap {
    width: 366px;
    height: 41px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 130px;
}

.link_wrap li {
    position: relative;
}

.link_wrap .tel {
    font-size: 16px;
}

.link_wrap .tel:hover {
    color: #333;
}

.link_wrap .fb {
    content: "";
    background-size: contain;
    width: 30px;
    height: 30px;
    transition: .5s;
}

.link_wrap .fb:hover {
    background-size: contain;
}

.link_wrap .web {
    background: #FFF;
    border: #000 1px solid;
    width: 120px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.link_wrap .web:hover {
    background: #FFE8EF;
}

.menu-btn {
    cursor: pointer;
    background: #FFF;
    width: 120px;
    height: 41px;
    padding: 0 15px 0 25px;
    border: #000 1px solid;
    border-radius: 4px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-btn p {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    left: 20px;
    line-height: 1;
    font-size: 15px;
    transition: .5s;
}

.menu-btn p.off {
    opacity: 0;
}

.menu-btn .inner {
    width: 15px;
    height: 10px;
    position: relative;
}

.menu-btn .inner span {
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0px;
    transition: .5s;
}

.menu-btn .inner span:nth-of-type(1) {
    top: 0;
    height: 1px;
}

.menu-btn .inner span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-btn .inner span:nth-of-type(3) {
    bottom: 0;
}

.menu-btn.active p.on {
    opacity: 0;
    visibility: hidden;
}

.menu-btn.active p.off {
    opacity: 1;
}

.menu-btn.active .inner span:nth-of-type(1) {
    transform: rotate(-45deg);
    top: 4px;
    left: 0px;
}

.menu-btn.active .inner span:nth-of-type(2) {
    transform: rotate(180deg);
    opacity: 0;
}

.menu-btn.active .inner span:nth-of-type(3) {
    transform: rotate(45deg);
    bottom: 5px;
    left: 0px;
}

nav.active {
    opacity: 1;
    visibility: visible;
}

nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9998;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

nav div.wrap {
    position: relative;
    width: 550px;
    height: 100%;
    background: #FFE8EF;
    margin-left: auto;
    overflow: scroll;
    padding: 100px 0 0;
}

nav div.wrap img {
    transition: .5s;
}

nav div.wrap img:hover {
    opacity: 0.7;
}

nav .link_wrap {
    position: absolute;
    top: 20px;
    right: 150px;
    margin: 0;
}

nav .link_wrap .tel,
nav .link_wrap .fb {
    margin-bottom: 1px;
}

nav .link_wrap .tel a {
    transition: .5s;
}

nav .link_wrap .tel a:hover {
    color: #FFF;
}

nav .link_wrap .fb:hover {
    background-size: contain;
}

nav img.img {
    width: 340px;
    margin: 30px auto 40px;
    display: block;
}

nav .menu_wrap {
    width: 330px;
    margin: 0 auto;
}

nav ul.menu {
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 20px;
    border-top: #EFCED4 1px dashed;
    border-bottom: #EFCED4 1px dashed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav ul.menu li {
    position: relative;
    font-size: 15px;
    width: 100%;
    padding: 15px 0;
    transition: .5s;
}

nav ul.menu li.sub {
    position: relative;
    font-size: 13px;
    width: 100%;
    padding: 15px 0 15px 20px;
    transition: .5s;
}

nav p {
    transition: .5s;
}

nav p:hover,
nav ul.menu li:hover {
    opacity: 0.5;
}

.foot_info {
    padding: 100px 0 95px;
}

.foot_info .logo {
    width: 350px;
    margin: 0 auto 90px;
    display: block;
}

.foot_info .flex_wrap {
    width: 1105px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.foot_info .map_box {
    width: 600px;
    height: 330px;
}

.map_box iframe {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

.foot_info .text_box {
    width: 400px;
}

.foot_info .text_box img {
    transition: .5s;
}

.foot_info .text_box img:hover {
    opacity: 0.7;
}

.foot_info .text_box p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.foot_info .text_box p.tel {
    font-size: 26px;
    margin-bottom: 30px;
    transition: .5s;
}

.foot_info .text_box p.tel a:hover {
    color: #333;
}

.foot_info .text_box .link+.link {
    margin-top: 10px;
}

.map {
    width: 100%;
    height: 300px;
    margin-bottom: -10px;
}

/* spnav */
input#sp-nav {
    display: none;
}

label.sp-btn {
    display: none;
}

/*  footer------------------------------------- #FFE8EF */
footer {
    background: #FFE8EF;
}

footer .sitemap {
    width: 1100px;
    margin: 0 auto;
    padding: 50px 0 45px;
    display: flex;
    justify-content: space-between;
}

footer dl {
    width: auto;
    height: auto;
}

footer dl dt {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 18px;
    transition: .5s;
}

footer dl dt.b_none {
    border: none;
}

footer ul.treat {
    width: 250px;
    display: flex;
    flex-wrap: wrap;
}

footer ul.treat li {
    width: 50%;
}

footer ul li {
    position: relative;
    color: #666;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 2.2;
    transition: .5s;
}

footer dl dt:hover,
footer ul li:hover {
    opacity: 0.7;
}

footer .copy {
    background: #cfffdf;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #333;
}

.sp-fix {
    display: none;
}


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

    * {
        font-size: 15px;
        letter-spacing: 0.06em;
    }

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    body {
        font-size: 1.07em;
    }

    header {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    header {
        height: 70px;
        padding: 0 20px;
    }

    header .logo {
        width: 250px;
        display: block;
        padding-top: 3px;
    }

    header .logo img {
        width: 272px;
        padding: 0;
        z-index: 9999;
    }

    header h1:before {
        content: "";
        width: 209px;
        height: 1px;
        top: -2px;
        left: 0;
    }

    header h1,
    header .logo p.catch {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        font-size: 8px;
        letter-spacing: 0;
    }

    .menu-btn {
        width: 70px;
        height: 70px;
        background: #FFE8EF;
        border: none;
        top: 0;
        right: 0;
        padding: 0;
    }

    .menu-btn p {
        font-size: 8pt;
        top: 55%;
        transform: translateY(50%);
        left: 13px
    }

    .menu-btn .inner {
        width: 25px;
        height: 20px;
        margin: 0 auto 20px;
    }

    .menu-btn.active .inner span:nth-of-type(1) {
        transform: rotate(-45deg);
        top: 10px;
        left: 0px;
    }

    .menu-btn.active .inner span:nth-of-type(3) {
        transform: rotate(45deg);
        bottom: 9px;
        left: 0px;
    }

    .link-wrap .tel {
        font-size: 16px;
        text-align: center;
    }

    nav div.wrap {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 50px 0 0;
    }

    nav .link_wrap {
        top: 95px;
        left: 50%;
        transform: translateX(-50%);
        width: 260px;
    }

    nav .link_wrap .tel,
    nav .link_wrap .fb {
        text-align: center;
        margin-bottom: 0;
        font-size: 20px;
    }

    nav .link_wrap .fb {
        width: 45px;
        height: 45px;
    }

    nav img.img {
        width: 295px;
        margin: 115px auto 30px;
    }

    nav .menu_wrap {
        width: calc(100% - 45px);
        margin: 30px auto 0px;
    }

    nav .menu_wrap p.mincho {
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    nav ul.menu {
        width: 100%;
        margin: 10px auto 0;
        padding: 10px 30px;
        border-bottom: none;
    }

    nav ul.menu li {
        width: 100%;
        padding: 5px 0;
    }

    /* foot_info */
    .foot_info {
        padding: 40px 20px 45px;
    }

    .foot_info .logo {
        width: 175px;
        margin: 0 auto 30px;
    }

    .foot_info .flex_wrap {
        width: 100%;
        margin: 0;
        display: block;
    }

    .foot_info .map_box {
        width: 100%;
        margin-bottom: 70px;
    }

    .foot_info .map_box iframe {
        height: 100%;
    }

    .foot_info .text_box {
        width: 100%;
        padding: 35px 0 0;
    }

    .foot_info .text_box p {
        margin-bottom: 20px;
        line-height: 1.8;
        padding-left: 30px;
    }

    .foot_info .text_box p.tel {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .foot_info .text_box .link+.link {
        margin-top: 10px;
    }

    .map {
        height: 250px;
        margin-bottom: -10px;
    }

    /*  footer-------------------------------------*/
    footer {
        padding-bottom: 80px;
    }

    footer .sitemap {
        width: 100%;
        margin: 0;
        padding: 50px 35px 30px;
        flex-wrap: wrap;
    }

    footer dl {
        width: 33%;
    }

    footer dt {
        margin-top: 10px;
    }
    
    footer ul.treat {
        width: 270px;
    }

    footer .copy {
        height: 60px;
        padding-bottom: 3px;
    }

    footer .copy a {
        text-align: center;
        letter-spacing: 0;
        line-height: 1.7;
    }

    .sp-fix {
        width: 100%;
        display: flex;
        background: #FFE8EF;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 3;
    }

    .sp-fix li {
        flex-basis: calc(100%/3);
        height: 72px;
    }

    .sp-fix li:not(:last-child) {
        border-right: 1px solid #fff;
    }

    .sp-fix li a {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
        text-align: center;
        font-size: 20px;
        letter-spacing: 0.1em;
        height: 100%;
        color: #FFF;
        padding: 15px 5px 0;
        box-sizing: border-box;
    }

    .sp-fix li img {
        display: block;
        margin: 0 auto;
        width: 20px;
        height: auto;
    }

    .sp-fix li:nth-child(2) img {
        width: 24px;
    }

    .sp-fix li:nth-child(3) img {
        width: 22px;
    }

    .sp-fix li p {
        margin-top: 3px;
        color: #FFF;
        font-size: 15px;
        font-weight: 700;
    }

}



@media screen and (max-width:320px) {
    footer ul li {
        font-size: 11px;
    }

    header .logo img {
        width: 210px;
    }

    nav ul.menu li,
    nav .menu_wrap p.mincho {
        font-size: 12px;
    }

    .foot_info .text_box p {
        padding-left: 0;
    }
}