@charset "utf-8";

/* COMMON
---------------------------------------------------------------------------- */	
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Raleway&display=swap);


body{
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    color:#333;
    background-color:#faf9f7;
}
a{
    text-decoration:underline; 
    color: #333;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
a:hover{ text-decoration: none; }

@media screen and (max-width:768px){
    body{
        font-size: 14px;
    }
}

/* 分類：幅調整モジュール
----------------------------------------------------------------------------- */
.w5{ width:5% !important; }
.w10{ width:10% !important; }
.w15{ width:15% !important; }
.w20{ width:20% !important; }
.w25{ width:25% !important; }
.w30{ width:30% !important; }
.w35{ width:35% !important; }
.w40{ width:40% !important; }
.w45{ width:45% !important; }
.w50{ width:50% !important; }
.w55{ width:55% !important; }
.w60{ width:60% !important; }
.w65{ width:65% !important; }
.w70{ width:70% !important; }
.w75{ width:75% !important; }
.w80{ width:80% !important; }
.w85{ width:85% !important; }
.w90{ width:90% !important; }
.w95{ width:95% !important; }
.w100{ width:100% !important; }

/* 背景色
----------------------------------------------------------------------------- */
.bg-orange{
    background: rgba(255,210,138,1);
}
.bg-red{
    background:#ffd0cc!important;    
}

/* 文字色
----------------------------------------------------------------------------- */
.fc-red{
    color:#fc65ac!important;
}

/* header
---------------------------------------------------------------------------- */
.header{
    background: rgb(255,168,160);
    background: linear-gradient(131deg, rgba(255,168,160,1) 0%, rgba(255,210,138,1) 100%);
    color:#fff;
    padding:10px 15px;
    margin:0 auto 15px;
    box-shadow: 0px 3px 5px -3px rgba(0,0,0,0.3);
}
.header .inner{
    display: table;
}
.header-logo,
.header-ctrl{
    display: table-cell;
}

/* ロゴ */
.header-logo{
    font-size: 18px;
    font-weight: bold;
}

/* ヘッダーコントロール */
.header-ctrl{
    text-align: right;
}

.header-ctrl span{
    font-size: 13px;
}

.header-ctrl button{
    background-color:transparent;
    border:1px solid #fff;
    color: #fff;
    min-width: 120px;
    height:30px;
    line-height: 30px;
    border-radius: 15px;
    text-align:center;
    margin-left:10px;
}

@media screen and (max-width:768px){
    .header{
        
    }
}



/* wrap
---------------------------------------------------------------------------- */
.wrap{
    width:100%;
}
@media screen and (max-width:768px){
    .wrap{
        
    }
}



/* topicPath
---------------------------------------------------------------------------- */
.topicpath{
}
.topicpath ol{

}
.topicpath ol li{
}
.topicpath ol li:last-child{
    background-image:none;
}
@media screen and (max-width:768px){
    .topicpath{
        display:none;
    }
}

/* main
---------------------------------------------------------------------------- */
.main{
    padding:0 15px 15px;
}
@media screen and (max-width:768px){
    .main{
        
    }
}


/* footer
---------------------------------------------------------------------------- */
.footer{
    background-color:#fff;
}
@media screen and (max-width:768px){
    .footer{
    }
}

/* LOGIN
---------------------------------------------------------------------------- */

.login-box{
    width:320px;
    height:450px;
    position:absolute;
    margin:auto;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 5px -3px rgb(0 0 0 / 30%);
    overflow: hidden;
}

.login-box-ttl{
    background: rgb(255,168,160);
    background: linear-gradient(131deg, rgba(255,168,160,1) 0%, rgba(255,210,138,1) 100%);
    color:#fff;
    padding:10px 15px;
    text-align: center;
}

.login-box-main{
    padding: 30px 15px;
}
.login-box-main table{
    margin:0 auto 30px;
}
.login-box-main table th,
.login-box-main table td{
    padding:5px 10px;
}