/**************************************

component.css

***************************************/

.c-wideTit{
    font-weight: bold;
    font-size: 36px;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.c-subTit{
    display: inline-block;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    background: #fff080;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.c-tit{ /* fontsizeとcolorを別途個別指定 */
    font-weight: bold;
    line-height: 2em ;
}
.c-txt{

}
.c-titUnderline{
    text-decoration-line: underline;
    text-underline-offset: 0.2em;
    font-weight: bold;
}
.c-titUnderline--orange{
    color: #f4901e;
}
.c-titUnderline--green{
    color: #24958d;
}
.c-txtUnderline{
    text-decoration-line: underline;
    text-underline-offset: -0.2em;
    text-decoration-thickness: 10px;
    text-decoration-skip-ink: none;
    text-decoration-color: #fff080;
}
@media screen and (max-width: 780px) {
    .c-wideTit{
        font-size: 24px;
    }
    .c-subTit{
        font-size: 19px;
        padding: 10px ;
    }
    .c-tit{
        line-height: 1.5em ;
    }
    .c-txtUnderline{
        text-decoration-thickness: 5px;
    }
}

/**********書き足し**********/

.c-wrapOuter{
    width: 100%;
    max-width: 1163px;
    margin: 0 auto;
}
@media screen and (max-width: 1163px) {
    .c-wrapOuter{
        width: 89.33%;
    }
}
  
.c-wrapInner{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
 }
@media screen and (max-width: 960px) {
    .c-wrapInner{
        width: 89.33%;
    }
}
  
@media screen and (max-width: 780px) {
    .c-wrapOuter{
        max-width: 89.33%;
    }
    
    .c-wrapInner{
        max-width: 89.33%;
    }
}

.c-midShow{
    display: none;
}
.c-spShow{
    display: none;
}
.c-spNone{
    display: block;
}
@media screen and (max-width: 960px) {
    .c-midShow{
        display: block;
    }
}
@media screen and (max-width: 780px) {
    .c-spShow{
        display: block ;
    }
    .c-spNone{
        display: none;
    }
}