@charset "UTF-8";
/*--------------------------------
header
--------------------------------*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #333;
    justify-content: space-between;
    display: flex;
    font-family: sans-serif;
    background: #fff;
    z-index: 10;
}
/* トップボタンのスタイル */
#scrollToTopBtn {
    display: none;   /* トップボタンの非表示 */
    position: fixed;
    bottom: 20px;
    right: 20px;
    /*background-color: #009475;
    color: #fff;*/
    border: none;
    border-radius: 50%;
    padding: 0px 0px;
    cursor: pointer;
    z-index: 999;
    /*width: 100px;
    height: 100px;*/
}

/* トップボタンの表示/非表示 */
#scrollToTopBtn.active {
    display: block;   /* ボタンの表示 */
}
/* トップボタン画像*/
.topimg{
    width: 70px;
    height: 70px;
    display: block;
}
a:hover {
    opacity: 0.6;
  }
.logo{
    max-width: 220px;
    width: 100%;
    padding: 10px;
}
.nav{
    display: flex;
    font-size: 1.6rem;
}
.nav-list{
    gap: 50px;
    margin-right: 50px;
}
.nav-link,
.nav-sub-link{
    color: #333;
}
.nav-item{
    display: flex;
}
.nav-link{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.nav-link::before{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%,0);
    width: 0;
    height: 2.5px;
    background: #73CBB6;
    transition: .2s ease;
}
.nav-link:hover::before{
    width: 50%;
}
.nav-sub-item{
    display: flex;
}
.nav-sub-link{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #333;
    padding: 0 20px;
    transition: .2s ease;
    list_policy_list    border-left: 1px solid #333;
}
.nav-sub-item:not(:nth-of-type(1)) .nav-sub-link{
    border-left: 1px solid #fff;
}
.nav-sub-link:hover{
    background: #fff;
    color: #333;
}
.sp-menu{
    display: none;
}
@media screen and (max-width: 1000px){
    .nav{
        position: absolute;
        top: 60px;
        right: 0;
        flex-direction: column;
        width: 100%;
        background: #fff;
        transform: translateX(100%);
        transition: .4s ease;
    }
    .active .nav{
        transform: translateX(0);
    }
    .nav-list{
        margin: 0;
        width: 100%;
        gap: 0;
    }
    .nav-item{
        width: 100%;
    }
    .nav-sub-item{
        width: 100%;
    }
    .nav-sub-link{
        width: 100%;
        border-left:none;
        padding: 20px 0;
    }
    .nav-sub-item:not(:nth-of-type(1)) .nav-sub-link{
        border-top: 1px solid #fff;
        border-left: none;
    }
    .nav-link{
        padding: 20px 0;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #333;
    }
    .sp-menu{
        display: block;
        width: 40px;
        height: 60px;
    }
}
.sp-menu{
    position: relative;
    margin-right: 5px;
}
.sp-menu span{
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    width: 100%;
    height: 2px;
    background: #333;
    display: block;
    transition: .2s ease;
}
.sp-menu::before,
.sp-menu::after{
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    background: #333;
    transition: .2s ease;
}
.sp-menu::before{
    top: 25px;
}
.sp-menu::after{
    bottom: 25px;
}
.active .sp-menu  span{ 
    opacity: 0;
}
.active .sp-menu::before{
    top: 29px;
    transform:rotate(25deg);
}
.active .sp-menu::after{
    bottom: 29px;
    transform:rotate(-25deg);
}


main{
    margin-top: 60px;
}
.container{
    max-width: 1160px;
    padding: 0 40px;
    margin: 0 auto;
}

/* トップビュー */
.area_top_view{
    background: url()no-repeat center center;
    background-size: cover;
    position: relative;
}
.area_top_view::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.20); */
  }
.area_top_view > .container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.area_top_view p{
    color: #333;
    z-index: 1;
}
.area_top_view .menu{
    font-weight: 500;
    font-style: normal;
    font-size: 21px;
    line-height: 1;
    letter-spacing: .05em;   
}
.area_top_view .menu span {
    padding: 0.2rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(transparent 60%, #73CBB6 60%);
    font-weight: bold;
    font-size: 26px;
}
.area_top_view .ttl{
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 1.19318;
    letter-spacing: .05em;    
    margin: 10px 0 0;
}
.area_top_view .ttl span{
    font-weight: bold;
    font-size: 44px;
}
.area_top_view .discription{
    font-size: 16px;
    margin: 7px 0 0;
}
.area_top_view .submenu{
    font-size: 18px;
    margin: 50px 0 0;
}
.submenu a{
    color: #333;
}
/* フッターナビ */
footer{
    background: #f2f2f2;
    /* background: #fff; */
}
footer > .container{
    max-width: none;
    margin: 0 auto;
    padding: 10px 0 30px 0;
}
.footer_ttl{
    display: flex;
    justify-content: space-between;
}
.nav_footer{
}
.list_nav_footer{
    display: flex;
    align-items: center;
    justify-content: center;
}
.list_nav_footer > li{
    padding: 0 15px;
}
.area_copy{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* エリアポリシー */
[class*="area_policy"]{
    padding: 80px 0;
}
/* バックグラウンド */
.bg_lightgrey{
    background-color: #f2f2f2;
}
/* ヘッド */
.head_policy{
    flex-direction: column;
    margin: 0 auto 40px auto;
    align-items: center;    
}
.head_policy .ttl{
    font-size: 40px;
    line-height: .75;
    letter-spacing: .02em;
    margin: 0 0 40px;
}
/* バックグラウンド */
.bg_lightgrey{
    background-color: #f2f2f2;
}
/* ボディ */
.body_policy{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.subttl{
    font-size: 22px;
    line-height: 1.29545;
    letter-spacing: .05em;
    margin: 20px 0;
}
.body_inner_policy{
margin: 40px 0;
}
.body_inner_policy .discription{
margin: 40px 0;
}
.discription{
    font-size: 18px;
    line-height: 2.33333;
    letter-spacing: .19em;
}
.color{
    color: #41B196;
}
.strong{
    font-weight: bold;
}
.area_policy .discription{    
    letter-spacing: .05em;
}
.list_policy{
    font-size: 18px;
    line-height: 2.33333;
    letter-spacing: .05em;
}
.list_policy .list_policy_li{
    margin: 80px 0;
}
.list_policy_li .subttl{
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    background: transparent;/*背景透明に*/
    border-left: solid 5px #41B196;/*左線*/
}
/*利用規約*/
.list_policy_ul li{
    list-style: initial;
    margin-left: 1.5em;
}
/*プライバシーポリシー*/
.list_policy_ol li{
    font-size: 18px;
    line-height: 2.33333;
    letter-spacing: .05em;
}
.list_policy_ol_list{
    list-style: decimal;
    margin-left: 1.5em;        
}
.list_policy_ol_ol li {
    list-style-type: none;
    counter-increment: cnt;
}
.list_policy_ol_ol li::before {
    content: "("counter(cnt)")";
}
/*=====================
プライバシーポリシー
=====================*/
.area_policy_privacypolicy .list_policy_list{
    padding-left: 1em;
}
@media screen and (max-width: 767px){
    .br_sp{        
        display: initial;
    }
    .area_top_view > .container {
        padding: 25px;
        height: initial;
    }
    .area_top_view .menu{
        font-size: 14px;
    }
    .area_top_view .ttl{
        font-size: 30px;
    }
    .area_top_view .ttl span{
        font-size: 28px;
    }
    .discription{
        font-size: 16px;
        line-height: 2;
        letter-spacing: .07em;
    }
    .area_top_view .submenu{
        font-size: 16px;
        padding: 1em 0 0;
    }
    /* フッター */
    /* トップボタン画像*/
    .topimg{
        position: fixed;
        bottom: 65px;
        right: 20px;
        width: 50px;
        height: 50px;
        display: block;
        }
    
    .list_nav_footer{
        display: block;
        padding: 0 25px;
    }
    .list_nav_footer > li{
        font-size: 16px;
        line-height: 2;
        letter-spacing: .01em;
        font-weight: 500;
        font-style: normal;
        text-align: left;
    }
    footer a {        
        color: #333;
    }
    [class*="area_policy"] {
        padding: 20px 0;
    }
    .area_policy .container{
        padding: 0 25px;
    }
    .head_policy .ttl {
        font-size: 28px;
    }

    .list_policy .list_policy_li {
        margin: 40px 0px;
    }
    .list_policy_ol li {
        font-size: 16px;
        line-height: 2;
        letter-spacing: .07em;
    }
    
}