@charset "utf-8";
body{
    background: #fff url(../img/background.png) no-repeat 50% 90px;
    background-size: contain;
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    margin: 0 auto;
}
a,a:link{
    text-decoration: none;
    color: #000;
}
@media screen and (min-width: 768px){
    a[href*="tel"]{
        pointer-events: none;
    }
}
h2{
    font-weight: 700;
    font-size: 90%;
}
em{
    color: #f00;
    font-style: normal;
}
header,
main{
    margin: 0 auto;
    display: block;
}
footer{
    margin: 0 auto;
    padding: 0;
}
table{
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background: #fff;
}
table tr th,
table tr td{
    padding: 5px 10px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    text-align: center;
}
table tr th{
    width: 10em;
    background: #f5f1ed;
    color: #002c7d;
}
table tr td{
    text-align: left;
}
br.tb{
    display: none;
}
br.sp{
    display: none;
}
p.sp{
    display: none;
}
span.sp{
    display: none;
}
img{
    max-width: 100%;
}
@media screen and (min-width: 481px) and (max-width: 999px) {
    main{
        width: auto;
    }
    br.tb{
        display: inline !important;
    }
}
@media screen and (max-width: 480px){
    body{
        background: #fff url(../img/background.png) no-repeat 50% 45px;
        background-size: contain;
    }
	header,
    main,
    footer{
        width: auto;
    }
    img{
        max-width: 100%;
    }
    br.pc{
        display: none;
    }
    br.sp{
        display: inline !important;
    }
    p.sp{
        padding: 1em 0 0 0;
        display: block;
        text-align: center;
    }
    span.sp{
        display: inline;
    }
    span.pc{
        display: none;
    }
    h2{
        font-size: 3vw;
    }
}


/* fadein */
.fadein {
    opacity : 0;
    transform : translate(0, 300px);
    transition : all 300ms;
}

.fadein.scroll {
    opacity : 1;
    transform : translate(0, 0);
}

/*
--------------------------------------------------------
header
--------------------------------------------------------
*/
header{
    height: auto;
}
header p#akigin{
    height: 90px;
    line-height: 100px;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    margin: 0;
    background: #fff;
}
header p#akigin img{
    width: 175px;
    padding: 0 50px;
    margin: 0;
}
header p.title{
    margin: 0 auto;
    max-width: 1000px;
    align-items: center;
}
header p.title img{
    width: auto;
    display: block;
    margin: 0 auto;
}
@media screen and (max-width: 480px){
    header{
        height: auto;
    }
    header p#akigin{
        height: 45px;
        line-height: 50px;
        vertical-align: middle;
        text-align: left;
        padding: 0;
        margin: 0;
    }
    header p#akigin img{
        width: 87.5px;
        padding: 0 25px;
        margin: 0;
    }
}
@media screen and (max-width: 999px){
}


/*
--------------------------------------------------------
section
--------------------------------------------------------
*/
/* section */
section{
    margin:0 auto;
    font-size: 90%;
    line-height: 1.7;
    font-feature-settings: "palt";
    letter-spacing:1px;
    text-align:justify;
    max-width: 1000px;
}
section::before,
section::after{
    content: '';
    display: block;
    height: 2em;
}
section header{
    height: auto;
    background: none;
}
section header h1{
    margin: 0 auto;
    z-index: 0;
    color: #005094;
    font-size: 120%;
    font-weight: 700;
    text-align: center;
}
section p,
section ul,
section ol,
section table,
section div,
section h2,section h3,section h4{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
section ol{
}
section ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
section ul li{
}


/* campaign */
section#campaign ul{
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section#campaign ul li{
    width: calc((100% - 20px) / 2);
}
section#campaign ul li:first-child{
    width: 100%;
}


/* appli */
section#appli h2{
    margin-top: 3em;
}

/* info */
section#info{
    margin-top: 3em;
}
section#appli header h1,
section#info header h1{
    background: #c71432;
    color: #fff;
    font-size: 200%;
    margin-bottom: 0.5em;
}
section#info ul{
    list-style: none;
    display: flex;
}
section#info ul li:nth-child(1){
    order: 2;
    margin-left: 30px;
} 
section#info ul li:nth-child(2){
    order: 1;
} 
section#info ul li:nth-child(3){
    order: 3;
    margin-left: 30px;
} 
section ul.disc{
    list-style:none;
}
section ul.disc li:before{
    content: '●';
    color: #c81432;
}
section ul.disc ol{
    list-style: none;
}
section ul.disc ol li:before{
    display: none;
}

section p.button{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
section p.button a{
    margin: 0 auto;
    padding: 0 30px;
    height: 3em;
    display: inline-block;
    border-radius: 1.5em;
    background: #c71432;
    color: #fff;
    font-size: 135%;
    font-weight: 900;
}
section p.button a{
    line-height: 1.2em;
}
section p.button.line a{
    line-height: 3em;
}
section p.button a span{
    font-size: 70%;
}
@keyframes btnOn {
    0% { opacity: 1; }
    100% { opacity: 0.5; }
}
@keyframes btnOff {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}
p.button a {
    animation: btnOff 0.5s 1 forwards;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}
p.button a:hover {
    animation: btnOn 0.5s 1 forwards;
    filter: drop-shadow(0 0 0 rgba(255,255,255,0));
}
section div.info h2{
    text-align: left;
    margin-top: auto;
    color: #000;
    font-size: 100%;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 120%;
    margin: 0.5em 0 -0.5em 0;
}



@media screen and (max-width: 1040px){
    section{
        width: auto;
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 100%;
    }
    section div.button p.button a{
        width: 30vw;
        font-size: 2vw;
        line-height: 6vw;
        height: 6vw;
        border-radius: 2.5vw;
    }
}

@media screen and (min-width: 481px) and (max-width: 941px){
    section#contact{
        width: auto;
    }
}
@media screen and (max-width: 480px){
    header{
    }
    section{
        font-size: 3.3vw;
    }
    section#appli header h1,
    section#info header h1{
        font-size: 5vw;
    }
    section#campaign ul{
        display: block;
    }
    section#campaign ul li{
        width: auto;
    }
    section#info ul{
        display: block;
    }
    section#info ul li{
        margin-bottom: 1em;
    }
    section#info ul li:nth-child(1),
    section#info ul li:nth-child(3){
        margin-left: 0;
    }  
    section p.comment{
        text-align: left;
        font-feature-settings: "palt";
        text-align:justify;
    }
    section div.button{
        display: block;
    }
    section div.button p.button{
        width: auto;
    }
    section div.button p.button a{
        width: auto;
        display: block;
        text-align: center;
        font-size: 4vw;
        line-height: 10vw;
        height: 10vw;
        border-radius: 5vw;
        padding: 0;
    }
}

/*
--------------------------------------------------------
footer
--------------------------------------------------------
*/
/* contact */
footer{
    margin-top: 60px;
}
footer p{
    color: #b28146;
    font-weight: 700;
    font-size: 120%;
    line-height: 1.4;
}

footer div.contact{
    margin: 0 0 50px 0;
}
footer div.contact p{
    margin: 0.5em auto;
    color: #000;
    font-weight: 400;
    font-size: 100%;
}
footer div.contact p.tel{
    margin: 0.5em auto 0 auto;
    font-weight: 700;
    font-size: 250%;
    font-family: 'Spartan', sans-serif;
    line-height: 1;
}

footer div.contact p.tel:before{
    content: '';
    width: 54px;
    height: 35px;
    margin: 0 5px 0 0;
    display: inline-block;
    background: url(../img/freedial.png);
    background-size: cover;
}

footer p.copyright{
    margin: 0;
    padding: 1em 0;
    background: #c71432;
    color: #fff;
    font-weight: normal;
}
@media screen and (min-width: 481px) and (max-width: 999px){
    footer{
        width: auto;
    }
}

@media screen and (max-width: 480px){
    footer{
        width: auto;
    }
    footer p{
        font-size: 100%;
    }
    footer div.contact p.tel:before{
        content: '';
        width: calc(54px * 0.8);
        height: calc(35px * 0.8);
    }
    footer div.contact p.tel{
        font-size: 190%;
    }
}
