/* リセットCSS */

* {
    margin: 0;
    padding: 0;
}

*,
 ::before,
 ::after {
    border-style: solid;
    box-sizing: border-box;
    border-width: 0;
}

body {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    line-height: 150%;
    font-size: 16px;
    text-rendering: optimizeSpeed;
    color: #240F0F;
    overflow-x: hidden;
    background: #FFFAFD;
}

.is-fixed body {
    overflow: hidden;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    text-decoration-skip-ink: auto;
}

img {
    width: 100%;
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@media screen and (max-width: 1188px) {
    html {
        font-size: 1.4134275618vw;
    }
}

@media (min-width: 600px) {
    /* a[href^="tel:"] {
         pointer-events: none;
     }*/
}

.pc-dn {
    display: none;
}

.sp-dn {
    display: block;
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    html {
        font-size: 16px;
    }
    .pc-dn {
        display: block;
    }
    .sp-dn {
        display: none;
    }
}

@media screen and (max-width: 380px) {
    html {
        font-size: 4.2105263158vw;
    }
}

a,
button,
.btn {
    cursor: pointer;
    transition: 0.3s;
}

a:hover,
button:hover,
.btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    a:hover,
    button:hover,
    .btn:hover {
        opacity: 1;
    }
}


/*---▼header▼---*/

#header {
    position: fixed;
    z-index: 3;
    width: 100%;
    background: #FFFAFD;
    height: 6.25rem;
    top: 0;
}

.header_inner {
    height: 6.25rem;
    max-width: calc(1348px + 3rem);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.header_inner .logo_font {
    color: #000;
    font-family: "Zen Maru Gothic";
    font-size: 2.1875rem;
    font-weight: 400;
    line-height: normal
}

.header_inner .navi_inner .navi_sec {
    padding-left: 1.56rem;
}

.header_inner .navi_sec .navi_list {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.header_inner .navi_sec .navi_list li {
    text-align: center;
}

.header_inner .navi_sec .navi_list li a {
    color: #fff;
    text-align: center;
    font-family: "Barlow Semi Condensed";
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.05625rem;
    text-transform: uppercase;
}

.header_inner .navi_sec .navi_list li a span {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.04375rem;
    display: block;
}

.header_inner .header_tel a {
    color: #C86893;
    font-size: 2.1875rem;
    font-weight: 500;
    line-height: normal;
}

.header_inner .header_tel a span {
    font-size: 1.25rem;
}

.header_inner .header_tel p {
    color: #5B5B5B;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 120%;
}


/*.fixed-header {
     position: fixed;
     top: -80px;
     left: 1.5rem;
     z-index: 3;
     transition: all 0.3s ease-in-out;
     visibility: hidden;
     height: 5.1875rem;
 }
 
 .fixed-header .header_inner {
     position: relative;
     padding: 0 1.5rem;
 }
 
 .fixed-header .header_inner::before {
     content: "";
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: -1;
     height: 5.1875rem;
     background: #fff;
     transform: skewX(-15deg);
     filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25));
 }
 
 .fixed-header .header_inner .navi_sec .navi_list {
     padding-left: 2rem;
 }
 
 .fixed-header .header_inner .navi_sec .navi_list li a {
     color: #D60100;
 }
 
 .fixed-header .header_inner .navi_sec .navi_list li a span {
     color: #231815;
 }
 
 .fixed-header.is-show {
     top: 1.62rem;
     visibility: visible;
 }
 /*.content {
    padding: 200px 100px 800px;
    font-size: 24px;
    text-align: center;
}
*/

@media screen and (max-width: 768px) {
    /*上から出てくるヘッダー非表示*/
    .fixed-header.is-show {
        display: none;
    }
    .fixed-header {
        display: none;
    }
    .header_inner {
        width: 100%;
        height: 60px;
    }
    .header_inner a.logo_link {
        position: fixed;
        z-index: 999999;
        background: none;
        top: 0.5rem;
        padding: 0rem 0 0.0 0.5rem;
    }
    .header_inner .navi_list a {
        font-size: 1.5rem;
    }
    .header_inner .navi_child {
        display: none!important;
    }
    .header_inner .navi_sec .navi_list li a {
        color: #d60001;
        font-size: 1.5rem;
    }
    .header_inner .navi_sec .navi_list li a span {
        color: #222223;
        font-size: 0.7125rem;
        display: inline-block;
        padding-left: 1rem;
    }
    .header_inner .navi_sec .navi_list li {
        text-align: justify;
        margin-bottom: 1rem;
        padding-bottom: 0;
        border-bottom: none;
    }
    .header_inner .navi_child li:first-child {
        margin-top: 1rem;
    }
    .header_inner .navi_child li:last-child {
        margin-bottom: 0;
    }
    .header_inner .navi_list a.content {
        color: #131F33B2;
    }
    .header_inner .navi_list a.content img,
    .header_inner .navi_parent .navi_parent_a::after {
        display: none;
    }
    h1.title img {
        width: 0.89619rem;
        height: 3.8125rem;
        flex-shrink: 0;
        display: inline-block;
        margin: 0 0.5rem;
        padding-top: 1.5rem;
    }
    .header_inner .navi_sec {
        display: none;
        position: fixed;
        width: 100%;
        top: 0;
        right: 0;
        border-radius: 0;
        height: 100vh;
        background: #ffff;
    }
    .header_inner .navi_sec .navi_list {
        display: block;
        width: 100%;
        border-radius: 0;
        padding-top: 6.5rem;
        background: none;
    }
    header #nav_toggle {
        position: fixed;
        top: 0.4rem;
        right: 0.5rem;
        z-index: 9999;
        cursor: pointer;
        transition: all 400ms;
        -webkit-transition: all 400ms;
        width: 3.5rem;
        height: 3.5rem;
        padding: 1.15rem 1rem;
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.56);
        box-shadow: 0px 0px 12px 0px rgba(19, 31, 51, 0.05);
        backdrop-filter: blur(38px);
    }
    header #nav_toggle div {
        position: relative;
    }
    header #nav_toggle span {
        position: absolute;
        width: 1.5rem;
        right: 0;
        left: 0;
        height: 2px;
        background: #131F33;
        -webkit-transition: all 400ms;
        transition: all 400ms;
    }
    header #nav_toggle span:nth-child(1) {
        top: 0;
    }
    header #nav_toggle span:nth-child(2) {
        top: 9px;
    }
    header #nav_toggle span:nth-child(3) {
        top: 18px;
    }
    header.open #nav_toggle span {
        background: #131F33;
    }
    header.open #nav_toggle span:nth-child(1) {
        transform: rotate(132deg);
        -webkit-transform: rotate(132deg);
        top: 10px;
    }
    header.open #nav_toggle span:nth-child(2) {
        opacity: 0;
    }
    header.open #nav_toggle span:nth-child(3) {
        transform: rotate(224deg);
        -webkit-transform: rotate(224deg);
        top: 10px;
    }
    .header_inner .logo_font {
        font-size: 1.6rem;
        margin-top: 0.5rem;
    }
    .header_inner {
        width: 100%;
        height: 60px;
        flex-direction: column;
    }
    .header_tel {
        text-align: center;
    }
    .header_inner .header_tel a {
        font-size: 1.8rem;
        line-height: 85%;
    }
    .header_inner .header_tel p {
        font-size: 0.7rem;
    }
}


/*---▼footer▼---*/

footer {
    background: #F3F3F3;
    padding-top: 4.94rem;
    padding-bottom: 4.12rem;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
}

.footer_inner .left_area .footer_logo {
    color: #C86893;
    font-size: 2.8125rem;
    font-weight: 500;
    line-height: normal;
}

.footer_inner .left_area p.tel_text {
    margin-top: 2.81rem;
    font-size: 1.83813rem;
    font-weight: 500;
    line-height: 120%;
    margin-left: -1rem;
}

.footer_inner .left_area a.tel_link {
    color: #C86893;
    font-size: 3.21694rem;
    font-weight: 500;
    line-height: 100%;
    display: block;
}
.footer_inner .left_area a.web_link {
display: inline-flex
;
    align-items: center;
    justify-content: center;
    background: #bdd06e;
    color: #fff;
    gap: 1rem;
    padding: 0.6rem 3rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
}
.footer_inner .left_area a.tel_link span {
    font-size: 1.83825rem;
}

.footer_inner img.logo {
    width: 7.7575rem;
    height: 3.625rem;
}

.biz-hour {
    display: block;
    border-collapse: collapse;
    overflow-x: scroll;
    margin-bottom: 2.13rem;
}

.biz-hour th {
    border-top: 1px solid #240F0F;
}

.biz-hour th,
.biz-hour td {
    padding: 1.87rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #240F0F;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    width: 100%;
}

.pink {
    color: #c76893;
}

footer .right_area p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 150%;
}

footer .right_area p:last-child {
    margin-top: 1rem;
}


/* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */

@media screen and (max-width: 559px) {
    .biz-hour th,
    .biz-hour td {
        padding: 10px 10px;
    }
}

.biz-hour th {
    font-weight: normal;
}


/* 「土」の文字色 
 
 .biz-hour th.sat {
     color: #3db2da;
 }*/


/* 「日」の文字色
 
 .biz-hour th.sun {
     color: #e66a6a;
 }
  */

#footer .copy {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04688rem;
}
    .copy a{
        color:#7b7b7b;
    }

@media screen and (max-width: 1024px) {
    .footer_inner .left_area .footer_logo {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding-top: 2.94rem;
        padding-bottom: 4.44rem;
    }
    .footer_inner {
        flex-direction: column;
        align-items: center;
    }
    .left_area {
        text-align: center;
    }
    .footer_inner .left_area .footer_logo {
        font-size: 1.5rem;
    }
    .footer_inner .left_area p.tel_text {
        margin-top: 1.81rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
        margin-left: 0;
    }
    .footer_inner .left_area a.tel_link {
        font-size: 2.21694rem;
    }
    .biz-hour {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .biz-hour th,
    .biz-hour td {
        font-size: 0.9rem;
    }
    footer .right_area p {
        font-size: 0.9rem;
    }
    .copy{
        margin-top: 1rem;
    }
    .copy p {
        text-align: center;
        margin-top: 2rem;
        font-size: 0.8rem;
        opacity: 0.8;
    }
}
