@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
}

.wrap {
    overflow: hidden;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.parent {
    padding: 80px 5vw;
}

.child {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
/*終わり*/


/*<header class="header">*/
.header {
    padding: 0 5vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 10;
}

.header-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.header-logo-wrap {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 160px;
    width: 100%;
}

.header-nav ul {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 40px;
    color: #81CBC7;
    font-weight: 600;
    font-size: 18px
}
/*終わり*/


/*<footer class="footer">*/
.footer-ul-01 {
    background-color: #81CBC7;
    padding: 32px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px
}

.footer-ul-01 li {
    line-height: 1;
    border-right: solid 1px #fff;
    padding: 0 24px;
}

.footer-ul-01 li:last-child {
    border-right: none;
}

.footer-flex {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.footer-con-l {
    width: 50%;
    border-right: solid 1px #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 40px;
    padding: 16px 40px;
}

.footer-con-r {
    width: 50%;
    padding: 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-txt-04 {
    color: #81CBC7;
    font-size: 20px;
    font-weight: 600;
}

.f-contact-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 180px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(90deg, #81CBC7 4%, #ACDCDA 80%);
    border-radius: 50vh;
    color: #fff;
    font-weight: 600;
}

.f-mail-icon {
    max-width: 16px;
}

.footer-ul-02 {
    background-color: #666;
    padding: 32px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px
}

.footer-ul-02 li {
    line-height: 1;
    border-right: solid 1px #fff;
    padding: 0 24px;
}

.footer-ul-02 li:last-child {
    border-right: none;
}

.copyright {
    background-color: #666;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding-bottom: 8px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  
  

/*<header class="header">*/
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }
/*終わり*/  
}