@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/
.error { color: red; margin-bottom: 15px; }
.errmsg { color: red; }
#loading { width: 100%; height: 100%; margin: 0; background: #fff; opacity: 1.0; position: fixed; top: 0; left: 0; z-index: 99999; }
#loading img { position:absolute; top:50%; left:50%;margin-top: -1.5px; margin-left: -70px; }

body {
    background-color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    color: #3C3C3C;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

body.fixed {
    overflow: hidden;
}

.red {
    color: #f00;
}

.hoverImg {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}
.hoverImg:hover {
    opacity: 0.8;
}

#wrapper {
    background: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
}

.inner{
    padding: 0 10%;
}

.innerMax{
    padding: 0 4.6%;
}

.boxFixed{
    display: none;
    position: fixed;
    max-width: 750px;
    bottom: 0;
}

.boxFixed .btnFixed{
    display: block;
    background: #0D4EA7;
    padding: 1.5%;
}

/*VALIDATE CONTACT*/
.error {
    display: block;
    color: red;
}

/* HEADER */
#header {
    width: 100%;
    background-color: #ffffff;
}

#header .boxHeader{
    display: flex;
    padding: 8px 4%;
}

#header .boxHeader .headerLeft{
    /* width: 50%; */
    width: 38.59%;
}

#header .boxHeader .headerLeft .textNote{
    font-size: 7.5px;
    font-weight: bold;
    margin-bottom: 10px;
}

#header .boxHeader .headerLeft .logo a{
    display: block;
    width: 84%;
    margin-bottom: 2px;
}

#header .boxHeader .headerLeft .heading{
		line-height: 1;
    font-weight: bold;
    font-size: 13px;
		letter-spacing: 0.1em;
		padding-left: 40px;
}

#header .boxHeader .headerRight{
    /* width: 47%; */
    width: 58.45%;
}

#header .boxHeader .headerRight .textSub{
    font-size: 6px;
    font-weight: bold;
    margin-bottom: 7px;
    text-align: right;
}

#header .boxHeader .headerRight .boxContact{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
}

#header .boxHeader .headerRight .boxContact .information{
    margin-right: 6px;
}

/* CONTENT */
#content {
    width: 100%;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.3);
}

/* FOOTER */
#footer {
    padding-top: 90px;
    width: 100%;
}

#footer .logoFt{
    max-width: 46%;
    margin: 0 auto 18px;
}

#footer .boxFt .listContactFt{
    margin-bottom: 17px;
}

#footer .boxFt .listContactFt .item{
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .boxFt .listContactFt .item + .item{
    margin-top: 5px;
}

#footer .boxFt .listContactFt .item .name{
    width: 25%;
    font-size: 10px;
    text-align: right;
    padding: 5px 5px 5px 0;
    border-right: 1px solid #3C3C3C;
}

#footer .boxFt .listContactFt .item .detail {
    width: 75%;
    padding-left: 5px;
}

#footer .boxFt .listContactFt .item  .detail .ad{
    font-size: 7px;
}

#footer .boxFt .listContactFt .item  .detail .call,
#footer .boxFt .listContactFt .item  .detail .mail{
    font-size: 10px;
}

#footer .boxFt .listContactFt .item  .detail .call a{
    color: #3273BE;
}

#footer .boxFt .listContactFt .item  .detail .mail a{
    color: #3C3C3C;
}

#footer .boxFt .links {
    display: flex;
    justify-content: center;
    margin-bottom: 29px;
}

#footer .boxFt .links li {
    line-height: 1;
    font-size: 10px;
    padding: 0 15px;
    border-right: 1px #3C3C3C solid;
    border-left: 1px #3C3C3C solid;
}

#footer .boxFt .links li a{
    color: #3273BE;
    line-height: 1;
    font-size: 10px;
}

#footer .copyright{
    padding: 7px 0;
    font-size: 10px;
    color: #FFFFFF;
    text-align: center;
    background: linear-gradient(145deg, rgba(50,115,190,1) 0%, rgba(124,199,237,1) 15%, rgba(50,115,199,1) 100%);
}

.sp {
    display: none;
}

/* STYLE */

@media(min-width:769px){

    #header .boxHeader .headerRight .textSub{
        font-size: 12px;
    }

    #header .boxHeader .headerLeft .textNote{
        font-size: 12px;
    }

    #header .boxHeader .headerLeft .heading{
        font-size: 24px;
    }

    #header .boxHeader .headerRight .boxContact {
        padding-left: 0;
    }

    #footer .boxFt .listContactFt .item .name {
        font-size: 20px;
        padding: 10px 10px 10px 0;
    }

    #footer .boxFt .listContactFt .item + .item {
        margin-top: 10px;
    }

    #footer .boxFt .listContactFt .item .detail .ad {
        font-size: 12px;
    }

    #footer .boxFt .listContactFt .item .detail .call, #footer .boxFt .listContactFt .item .detail .mail {
        font-size: 18px;
    }

    #footer .boxFt .links li a {
        font-size: 12px;
    }

    #footer .copyright {
        padding: 10px 0;
        font-size: 12px;
    }
}

