@charset "UTF-8";

* {
    box-sizing: border-box;
    padding: 0;
    border-width: 0px;
    border-style: solid;
    margin: 0;
    line-height: 1;
    list-style-type: none;
}

html,
body {
    width: 100%;
}

html {
    overflow: auto;
}

body {
    color: #434343;
    background-color: #FFFEF8;
    font-size: 100%;
    line-height: 1.7;
    -webkit-text-size-adjust: 100%;
    font-family: 'Zen Maru Gothic', sans-serif;
    overflow: hidden;
}

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

h2 {
    color: #E67E7E;
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.75rem;
    line-height: 2.5rem;
    font-weight: 500;
}

.inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.inner.first_content{
    margin-top: 200px;
}

p {
    font-size: 16px;
    line-height: 24px;
}

section {
    margin-bottom: 5rem;
}

.for_sp {
    display: none;
}

@media screen and (max-width:750px) {
    h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .inner.first_content{
        margin-top: 100px;
    }

    .for_sp {
        display: block;
    }

    .for_pc {
        display: none;
    }
}

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

a:hover {
    opacity: .7;
}

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

/* メニュー */
.box_header {
    position: fixed;
    width: 100%;
    z-index: 999;
    overflow: hidden;
}

.box_header .logo_item {
    background: #ffffff;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.box_header .logo_item a.logo_w{
    width: 100%;
    max-width: 300px;
}

.box_header .logo_item img.logo {
    max-height: 72px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.box_header .logo_item p.left_img img {
    width: 100%;
    max-width: 240px;
    height: auto;
    position: absolute;
    top: -65%;
    left: -4%;
    mix-blend-mode: multiply;
}

.box_header .logo_item p.right_img img {
    width: 100%;
    max-width: 240px;
    height: auto;
    position: absolute;
    top: -65%;
    right: -4%;
    mix-blend-mode: multiply;
}

nav.header_nav {
    background: #E67E7E;
}

nav.header_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0;
}

nav.header_nav ul li {
    border-right: 1px solid #fff;
    padding: 0 20px;
}

nav.header_nav ul li:last-of-type {
    border-right: none;
}

nav.header_nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: .25rem .5rem;
}

/* メニュー END */

/* PC固定contact */
.contact_pc {
    position: fixed;
    bottom: 1.5rem;
    right: 1rem;
}

.contact_pc img {
    max-width: 120px;
}

/* PC固定contact END */

/* SPメニュー */
@media screen and (max-width:750px) {
    .box_header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        background: #ffffff;
    }

    .box_header .logo_item {
        height: 72px;
    }

    .box_header .logo_item img.logo {
        margin: 0 auto 0 10px;
        max-width: 280px;
        min-width: 240px;
        width: 100%;
    }

    .menu-btn {
        /* position: fixed;
    top: 10px;
    right: 10px; */
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }

    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #707070;
        position: absolute;
    }

    .menu-btn span:before {
        bottom: 8px;
    }

    .menu-btn span:after {
        top: 8px;
    }

    #menu-btn-check:checked~.menu-btn span {
        background-color: rgba(255, 255, 255, 0);
    }

    #menu-btn-check:checked~.menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #menu-btn-check:checked~.menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    #menu-btn-check {
        display: none;
    }

    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        background-color: #F8E1E7;
        overflow: scroll;
    }

    .menu-content ul {
        padding: 2rem 1rem 200px;
    }

    .menu-content ul li {
        border-bottom: solid 1px #ffffff;
        list-style: none;
        margin-bottom: 1.5rem;
    }

    .menu-content ul li a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        color: #E67E7E;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        margin-bottom: 1rem;
        position: relative;
    }

    .menu-content ul li a::before {
        content: "";
        width: 7px;
        height: 7px;
        border-top: solid 2px #ffffff;
        border-right: solid 2px #ffffff;
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 16px;
    }

    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 72px;
        left: 100%;
        z-index: 80;
        background-color: #F8E1E7;
        transition: all 0.5s;
    }

    #menu-btn-check:checked~.menu-content {
        left: 0;
    }

}

/* SPメニュー END */

/* sp下固定tel/mail */
.contact_sp {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.contact_sp ul {
    display: flex;
}

.contact_sp ul li {
    width: 33.333%;
}

.contact_sp ul li a {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    color: #ffffff;
    padding: 10px;
    font-size: 14px;
    min-height: 63px;
}

.contact_sp ul li.tel a {
    background: #E67E7E;
}

.contact_sp ul li.mail a {
    background: #75B9B9;
}

.contact_sp ul li.line a {
    background: #32af55;
}

.contact_sp ul li p.tel_test {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    color: #ffffff;
    padding: 10px;
    font-size: 14px;
    line-height: 1.25rem;
    text-align: center;
    background: #E67E7E;
}
/* sp下固定tel/mail END */

/* フッター */
footer {
    background: #ffffff;
}

footer .box_footer {
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto 2rem;
    padding-top: 3rem;
}

footer .box_footer .logo {
    height: fit-content;
    width: 100%;
    max-width: 450px;
}

footer .box_footer .logo img {
    width: 100%;
    max-width: 400px;
}

footer .box_footer .logo p {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: -.05em;
}

footer .footer_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

/* footer .footer_nav ul {} */

footer .footer_nav ul li {
    margin-bottom: .75rem;
}

footer .footer_nav ul li a {
    display: block;
    padding: .25rem;
    text-decoration: none;
    color: #434343;
}

footer .n_logo {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 0;
    padding-bottom: 3rem;
}

footer .n_logo img {
    max-width: 300px;
}

footer .copy {
    background: #E67E7E;
    color: #ffffff;
    text-align: end;
    padding: 6px;
}

footer .copy small {
    width: 100%;
    max-width: 1000px;
}

@media screen and (min-width:751px) {
  footer .n_logo {
      margin-top: -90px;
  }
}

@media screen and (max-width:750px) {
    footer {
        margin-top: 1rem;
    }

    footer .box_footer {
        display: block;
        text-align: center;
    }

    footer .box_footer .logo {
        margin: 0 auto 2rem;
        display: block;
    }

    footer .footer_nav {
        display: block;
    }

    footer .n_logo {
        padding-bottom: 0;
    }

    footer .n_logo img {
        margin: 0 auto;
        display: block;
    }

    footer .copy {
        background: #ffffff;
        color: #707070;
        text-align: center;
        padding-bottom: 6rem;
    }

}

/* フッター END */

/* ご相談・お問い合わせ */
section.contact {
    text-align: center;
}

section.contact .inner h3 {
    color: #E67E7E;
    margin-bottom: 1rem;
    font-family: 'Zen Maru Gothic', sans-serif;
}

section.contact .contact_item {
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

section.contact .contact_item a {
    width: 32.2%;
    max-width: 322px;
    min-height: 280px;
    background-size: cover;
}

section.contact .contact_item a h4 {
    font-size: 1.75rem;
    line-height: 2rem;
    margin: 5rem auto 1rem;
    font-weight: 400;
}

section.contact .contact_item a p {
    font-size: 1rem;
    line-height: 1.75rem;
}

section.contact .contact_item a p.s_text {
    font-size: 14px;
    line-height: 1.5rem;
    margin-top: 1rem;
}

section.contact .contact_item a.tel {
    background: url(../images/tel_bgimg.svg) no-repeat;
    background-position: center;
    background-size: contain;
    color: #ffffff;
}

section.contact .contact_item a.tel p.tel_no {
    background: #ffffff;
    color: #D46262;
    padding: 10px 1rem;
    width: 90%;
    margin: 1rem auto;
    border-radius: 40px;
    font-size: 2rem;
    font-weight: 500;
}

section.contact .contact_item a.mail {
    background: url(../images/mail_bgimg.svg) no-repeat;
    background-position: center;
    background-size: contain;
    color: #ffffff;
}

section.contact .contact_item a.line {
    background: url(../images/line_bgimg.svg) no-repeat;
    background-position: center;
    background-size: contain;
    color: #ffffff;
}
section.contact .contact_item a.line h4 {
    margin-bottom: .5rem;
}
section.contact .contact_item a.line p {
    margin-top: .25rem;
}
section.contact .contact_item a.line p.s_text {
}

@media (max-width: 1111px) and (min-width: 751px) {
    section.contact .contact_item a {
        width: 100%;
    }
}

@media screen and (max-width:750px) {
    section.contact .contact_item a {
        width: 100%;
        min-height: 248px;
        background-size: cover !important;
        background-position: center top !important;
        border-radius:  0 0 10px 10px;
    }

    section.contact .contact_item a h4 {
        margin: 4.75rem auto .5rem;
        font-size: 1.5rem;
        font-weight: 500;
    }

    section.contact .contact_item a.tel p.tel_no {
        font-size: 1.5rem;
        padding: 6px;
        margin: 0 auto 6px;
        max-width: 320px;
    }

    section.contact .contact_item a p.s_text {
        margin: 0;
    }

    section.contact .contact_item a.line p.s_text {
        margin-bottom: .5rem;
    }
}

/* ご相談・お問い合わせ END */

/* 電話番号取得前まで */
section.contact .contact_item div {
    width: 50%;
    max-width: 484px;
    min-height: 360px;
    background-size: cover;
}

section.contact .contact_item div h4 {
    font-size: 1.75rem;
    line-height: 2rem;
    margin: 8.5rem auto 1rem;
    font-weight: 400;
}

section.contact .contact_item div p {
    font-size: 1rem;
    line-height: 1.75rem;
}

section.contact .contact_item div p.s_text {
    font-size: 14px;
    line-height: 1.5rem;
    margin-top: 1rem;
}

section.contact .contact_item div.tel {
    background: url(../images/tel_bgimg.svg) no-repeat;
    background-position: center;
    background-size: contain;
    color: #ffffff;
}

section.contact .contact_item div.tel p.tel_no {
    background: #ffffff;
    color: #D46262;
    padding: 10px 1rem;
    width: 90%;
    margin: 1rem auto;
    border-radius: 40px;
    font-size: 2rem;
    font-weight: 500;
}

@media (max-width: 1111px) and (min-width: 751px) {
    section.contact .contact_item div {
        width: 100%;
    }
}

@media screen and (max-width:750px) {
    section.contact .contact_item div {
        width: 100%;
        min-height: 248px;
    }

    section.contact .contact_item div h4 {
        margin: 5.25rem auto .5rem;
        font-size: 1.5rem;
        font-weight: 500;
    }

    section.contact .contact_item div.tel p.tel_no {
        font-size: 1.5rem;
        padding: 6px;
        margin: 0 auto 6px;
        max-width: 320px;
    }

    section.contact .contact_item div p.s_text {
        margin: 0;
    }
}

/*  2024/07/23追記 */
.f_logo li {
    margin-bottom: 10px;
}
@media (max-width:750px) {
     .f_logo {
        margin-bottom: 8vw;
    }
     .f_logo li {
        margin-bottom: 0;
    }
    .f_logo .sns img {
        width: 5.3vw;
    }
}