/* *******************
  Common
********************* */
div, p{
    margin: 0;
    font-family: 'Noto Sans JP';
}
.btn-primary{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px 8px 16px;
    gap: 8px;
    
    width: 280px;
    height: 56px;
    background: #0695F0;
    box-shadow: 0px 0px 24px rgba(31, 32, 35, 0.1);
    border-radius: 100px;
}
.btn-primary:hover,
.btn-primary:active{
    text-decoration: none;
    background: #0695F0;
    color: #FFFFFF;
    border-color: #0695F0;
}
.btn-primary:focus{
    text-decoration: none;    
    background: #0579C4;
    border-radius: 100px;    
    border-color: #0579C4;
}
@media (hover: hover) {
    .btn-primary:hover{
        text-decoration: none;
        background: #0695F0;
        background: #045D97;
        border-radius: 100px;
        color: #FFFFFF;
    }
}
@media (hover: none){
    .btn-primary:active{
        text-decoration: none;
        background: #0579C4;
        border-radius: 100px;        
        color: #FFFFFF;
    }
}
.btn-primary>div{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
}
.btn-primary div p{
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    padding-top: 4px;
}
.btn-primary>div>img{
    width: 18px;
    height: 18px;
}
#contents{
    background-color: #FFFFFF;
}
#contents section{
    width: 100%;
    background-color: #FFFFFF;
    padding: 56px 16px;
}
@media (min-width: 960px) {
    #contents section{
        padding: 56px 16px 112px;
    }
}
#contents [class$="-inner"] {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    margin: 0 auto;

    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1F2023;
}
#contents [class$="-inner"] [class$="-title"]{
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 32px;
    line-height: 51px;
    text-align: center;
}
#contents img{
    height: auto;
}
#contents .catchphrase .large{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;    
}
#contents .catchphrase .catchcopy{
    margin-top: 8px;
    line-height: 1.3;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;    
}
#contents .catchphrase .emphasis{
    background: -webkit-linear-gradient(-90deg, #1ABCFE, #A259FF);
    color: #0695F0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}
#contents .catchphrase .description{
    color: #727478;
}
/* *******************
  header    Not include menu part
********************* */
.header{
    width: 100%;
    border-bottom: 1px solid #DDDFE3;
}
.header-inner{
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    align-items: center;
    height: 48px;
    background-color: #FFFFFF;
    pointer-events: auto;
}
.header-inner #logo a {
    padding: 12px 15px;
}
.header-inner #logo a img{
    width: 64px;
    height: auto;
}
.header_spacer{
    height: 48px;
}

