@charset "utf-8";
/* ------------------------------
    共通パーツ
------------------------------ */
*{
    margin: 0;
    padding: 0;
}
html { 
    font-size: 62.5%; 
}
body{
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* background-color: #fff5ea; */
    color: #788995;
}
p{
    letter-spacing: 0.1em;
}
a{
    text-decoration: none;
}
.strong{
    font-weight: 500;
}
.flex_box{
    display: flex;
    align-items: center;
}
.sp_only{
    display: none;
}

/* ------------------------------
    背景
------------------------------ */
.pc_background{
    background-color: #F6D775;
    position: fixed;
    width: 100%;
    height: 100vh;
}
.catchcopy{
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 320px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2em;
}
.include_sns{
    flex-direction: column;
    align-items: flex-start;
}
.catchcopy p{
    color: #fff;
    font-size: 3rem;
}
.logo{
    position: absolute;
    max-width: 850px;
    width: 100%;
    top: 40px;
    left: 0;
    z-index: -1;
}
.sns_icon{
    max-width: 204px;
    width: 100%;
    justify-content: space-between;
    margin: 20px 0 0;
}
.sns_icon img{
    max-width: 50px;
    width: 100%;
}

/* ------------------------------
    スクロール部分
------------------------------ */
.main_contents{
    max-width: 540px;
    /* padding: 24px 30px 90px 30px; */
    position: absolute;
    top: 110px;
    right: 8%;
    z-index: 30;
    background-color: #fff;
}
.contents_box{
    padding: 24px 30px 90px 30px;
}
.main_contents table{
    width: 100%;
}
.main_contents tbody{
    width: 100%;
}
.main_contents tr{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin: 0 0 1.4em;
}
.main_contents th{
    border-bottom: 1px solid #788995;
}
.main_contents th,
.main_contents td{
    width: 100%;
    color: #788995;
    text-align: start;
    font-weight: 300;
}
.main_contents td{
    line-height: 1.8;
}
.main_contents td .strong{
    color: #788995;
}
.main_contents td p{
    letter-spacing: 0.06em;
}
.strong a{
    color: #788995;
}
.tab img{
    max-width: 16px;
    width: 100%;
}
.map_link{
    color: #788995;
}
.map_icon{
    max-width: 16px;
    width: 100%;
}
.contact_link{
    width: 100%;
    color: #fff;
    background-color: #788995;
    padding: 14px 20px;
    transition: .6s;
}
.contact_link:hover{
    opacity: 0.7;
}
.contact_link .flex_box{
    max-width: 354px;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
}
.contact_link img{
    max-width: 50px;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .catchcopy p {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 1024px) {
    .pc_only{
        display: none;
    }
    .sp_only{
        display: block;
        background-color: #F6D775;
    }
    .sp_only .sp_logo{
        padding: 1em;
    }
    .main_contents{
        top: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        max-width: 440px;
        width: 100%;
    }
    .sp_fv_contents{
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1em;
        margin: 1em auto;
    }
    .sp_fv_contents .contents{
        padding: 1em 0;
    }
    .sp_fv_contents p{
        font-size: 1.8rem;
        color: #fff;
    }
}
@media screen and (max-width: 440px) {
    .contact_link p{
        font-size: 1.2rem;
    }
}