/*====================================================
	// ID header
====================================================*/

#header {
    width: 100%;
    margin: auto;
    position: fixed;
    background: #fff;
/*    box-shadow: 0 3px 10px 0 rgba(0,0,0,0.4);*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2000;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
#header * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.inb {
    display: inline-block;
}
/* ////////// mobile tablet ////////// */

@media screen and (max-width: 959px) {
    header {
        height: 50px;
    }
}


/* ////////// pc ////////// */

@media screen and (min-width: 960px) {
    header {
/*        height: 60px;*/
        height: 50px;
    }
    #header {
/*        position: relative;*/
        background: #fff;
        border-bottom: solid 2px;
        border-color: #d30000;
/*        height: 60px;*/
        height: 50px;
    }
/*
    #header:before {
        position: absolute;
        display: block;
        content: '';
        width: 100%;
        height: 0;
        top: 100%;
        border-bottom: solid 2px;
        border-color: #d30000;
        z-index: 500;
        pointer-events: none;
    }
*/
    #header .inside {
        width: 98%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
    /* pc_end */
}

/*====================================================
     // CLASS .head-menu
====================================================*/



#header .head-menu {
    position: fixed;
    width: 100%;
    z-index: 100;
    font-size: 1.2rem;
/*    color: #fff;*/
}
#header .head-menu a, .head-menu img {
}
#header .head-menu {
    position: relative;
}
#header .head-menu ul li a:hover {
    text-decoration: none;
}
#header .head-menu .nav-items li.nav-btn .subNav-h {
/*    cursor: pointer;*/
    display: block;
} 
#header .head-menu .nav-items li.nav-btn:hover .subNav-h {
    color: #d30000;
} 
#header .head-menu .nav-items li.nav-btn:hover > a {
    color: #d30000;
    -webkit-transition: none;
    transition: none;
}
/* ////////// mobile tablet ////////// */
@media screen and (max-width: 959px) {
    #header .head-menu {
        position: fixed;
        background: none;
        border-bottom: solid 2px;
        border-color: #d30000;
    }
    #header .head-menu .logoImg {
        position: absolute;
/*        display: block;*/
        width: calc(100% - 70px);
		height: 100%;
/*        height: 22px;*/
        padding: 7px 10px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
    }
    #header .head-menu .logoImg img {
        width: auto;
		max-width: 220px;
		height: 40px;
    }
    #ver50th #header .head-menu .logoImg img {
		max-width: 260px;
		max-height: 31.35px;
    }
    #header .nav_box {
        width: 100%;
        margin-right: 0;
        height: auto;
        overflow: hidden;
        background: #fff;
    }
    #header .nav-h {
        display:block;
        text-decoration: none;
        z-index: 100;
        cursor: pointer;
        width: 40px;
        height: 40px;
        margin: 5px 10px 5px auto;
        position: relative;
    }
    #header .nav {
        width: 30px;
        height: 30px;
        position: absolute;
        top: 15px;
/*        right: -100px;*/
        display: none;
    }
    #header .nav ~ span.nav_icon {
        position: absolute;
        top: 18px;
        right: 15px;
        width: 30px;
        height: 1px;
        display: block;
    }
    #header .nav ~ span.nav_icon:before {
        content: '';
        position: absolute;
        display: block;
        top: -4px;
        left: 0px;
        width: 30px;
        height: 12px;
        border-top: solid 2px;
        border-bottom: solid 2px;
        z-index: 50;
        cursor: pointer;
        -webkit-transition: 0.2s all;  
                transition: 0.2s all;  
    }
    #header .nav ~ span.nav_icon:after {
        content: '';
        position: absolute;
        display: block;
        bottom: -17px;
        left: 0px;
        width: 30px;
        height: 2px;
        background-color: currentColor;
        cursor: pointer;
        -webkit-transition: 0.2s all;  
                transition: 0.2s all;  
    }
    #header input[type="checkbox"]#nav01:checked ~ span.nav_icon:before {
        content: '';
        position: absolute;
        top: 6px;
        width: 30px;
        height: 2px;
        border: none;
        background-color: currentColor;
        -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
        -webkit-transition: 0.2s all;  
                transition: 0.2s all;  
    }
    #header input[type="checkbox"]#nav01:checked ~ span.nav_icon:after {
        content: '';
        position: absolute;
        top: 6px;
        width: 30px;
        height: 2px;
        border: none;
        background-color: currentColor;
        -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
        -webkit-transition: 0.2s all;  
                transition: 0.2s all;  
    }
    #header .nav-p {
        position: absolute;
        float: left;
        clear: both;
        margin-left: 100%;
        width: 100%;
        top: calc(100% + 2px);
        left: 0;
        -webkit-transition: all .6s;
        transition: all .6s;
        background: rgba(255, 255, 255, 1);
        padding: 10px 0;
    }
    #header .nav-bg {
        position: absolute;
        content: '';
        display: block;
        width: 300%;
        height: 2000%;
        top: -0px;
        left: -100%;
        background: #666;
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -webkit-transition: all .6s;
        transition: all .6s;
        z-index: -10;
        pointer-events: none;
    }
    #header input[type="checkbox"]#nav01:checked + .nav-p {
        margin-left: 0;
    }
    #header input[type="checkbox"]#nav01:checked + .nav-p .nav-bg {
        left: 0;
        filter: alpha(opacity=60);
        -moz-opacity: 0.6;
        opacity: 0.6;
        -webkit-transition: all .6s;
        transition: all .6s;
        pointer-events: auto;
    }
    #header .head-menu ul {
        width: 94%;
        max-width: 340px;
        margin: 0 auto;
    }
    #header .head-menu ul li a, #header .head-menu .subNav-h, #header .closeBtn {
        display: block;
        padding: .5em 0 .5em 1em;
        position: relative;
    }
	#header .head-menu ul.nav-items {
		display: block;
	}
    #header .head-menu ul.nav-items li a:before, #header .head-menu .subNav-h:before {
        width: 0;
        height: 0;
        position: absolute;
        display: block;
        content: '';
        border: solid 6px transparent;
        top: -1px;
        bottom: 0;
        left: 0;
        margin: auto;
        border-top: solid 4px transparent;
        border-bottom : solid 4px transparent;
        border-left-color: currentColor;;
    }
    #header .head-menu .subNav .nav-inner li a:before {
        top: .7em;
        bottom: auto;
    }
    #header .schoolList .subNav .nav-inner .closeBtn {
        width: 100%;
        margin-top: 10px;
    }
    #header .subNav-close {
        position: relative;
        padding-left: 10px;
    }
    #header .closeBtn:before, #header .closeBtn:after {
        content: '';
        position: absolute;
        display: block;
    }
    #header .closeBtn:before {
        width: 14px;
        height: 0;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        border-bottom: solid 1px
    }
    #header .closeBtn:after {
        width: 9px;
        height: 9px;
        border-left: solid 1px;
        border-bottom: solid 1px;
        top: 0px;
        bottom: 0;
        left: 0;
        margin: auto;
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }
    #header .closeBtn:hover:before, #header .closeBtn:hover:after {
        border-color: #d30000;
    }
/*
    #header .head-menu ul li.column_block {
        display: none;
    }
    #header .head-menu ul li.nav-wind {
        border-top: dotted 1px #333;
        margin-top: .5em;
        padding-top: .5em;
    }
*/
    #header .subNav-close {
        display: block;
        cursor: pointer;
    }
    #header .closeBtn:hover {
        color: #d30000;
    }
}


/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
    #header .head-menu .logoImg {
		text-align: left;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
/*
        height: 36px;
        margin: 7px 10px;
*/
    }
}



/* ////////// PC ////////// */
@media print,
screen and (min-width: 960px) {

    #header .head-menu {
    }
    #header .nav_outer {
/*        display: table;*/
        width: 100%;
/*		height: 40px;*/
		height: 50px;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
    #header .head-menu .logoImg {
/*        display: table-cell;*/
/*        width: 200px;*/
		width: auto;
		height: 50px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-right: 10px;
		margin-bottom: 1px;
/*        padding: 12px 0;*/
    }
    #header .head-menu .logoImg a {
/*        width: 190px;*/
        height: 40px;
		display: block;
    }
	#header .head-menu .logoImg img {
		width: auto;
		height: 100%;
	}
    #header .head-menu .logoImg img:hover {
        opacity: 0.7;
        filter: alpha(opacity=70);
        -moz-opacity: 0.7;
    }
    #header .head-menu .nav_box {
/*        display: table-cell;*/
        vertical-align: bottom;
/*        padding-left: 10px;*/
        width: calc(100% - 100px);
/*        position: relative;*/
    }
    #header .head-menu .nav-items {
/*
        display: table;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
*/
/*        margin-bottom: -8px*/
    }
    #header .head-menu .nav-items li.nav-btn {
        float: left;
/*        border-right: dotted 1px;*/
        text-align: center;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        position: relative;
/*
        border-bottom: solid 4px;
        border-bottom-color: #fff;
*/
    }
/*
	#header .head-menu .nav-items li.nav-btn.schoolList {
		position: static;
	}
*/
    #header .head-menu .nav-items li.nav-btn:before {
        position: absolute;
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background: #d30000;
        left: 0;
        bottom: 1px;
        pointer-events: none;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        opacity: 0;
/*        cursor: pointer;*/
    }
    #header .head-menu .nav-items li.nav-btn:hover:before {
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        opacity: 1;
    }
    #header .head-menu .nav-items li.nav-btn > a {
        padding-bottom: 3px;
    }
    #header .head-menu .nav-items li.nav-btn:hover {
        border-bottom-color: #d30000;
    }
    #header .head-menu .nav-items li.nav-btn:last-child {
        border-right: none;
    }
    #header .head-menu .nav-items li.nav-btn a {
        display: block;
    }
    #header .head-menu .nav-items li.nav-btn .subNav-h {
        position: relative;
    }
/*
    #header .head-menu .nav-items li.nav-btn .subNav-h:before {
        position: absolute;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        cursor: pointer;
        pointer-events: auto !important
    }
*/
    #header .head-menu .nav-h, .head-menu .nav {
        display: none;
    }
}


/*====================================================
     //class .subNav
====================================================*/
#header input[type="checkbox"]#subNavSlide{
    display: none;
}
#header input[type="checkbox"].subNav-check {
    display: none;
}

/* ////////// mobile tablet ////////// */
@media screen and (max-width: 959px) {
    #header .nav_outer {
        position: relative;
    }
    #header input[type="checkbox"]#subNavSlide:checked ~ .nav-p {
        -webkit-transition: all 1.0s;
        transition: all 1.0s;
        margin-left: -100%;
        width: 100%;
    }
    #header .nav-inbox {
        position: relative;
    }
    #header .subNav {
        background: #fff;
        padding: 10px 0;
        position: fixed;
        width: 100%;
        left: 100%;
        top: 52px;
        padding-bottom: 42px;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        opacity: 0;
        -webkit-transition: all 1.0s;
        transition: all 1.0s;
        overflow-y: scroll;
        pointer-events: none;
    }
    #header .schoolList .subNav {
        height: 100%;
    }
    #header input[type="checkbox"].subNav-check:checked + .subNav {
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        opacity: 1;
        pointer-events: auto;
        left: 0;
        width: 100%;
        z-index: 20;
    }
}
/* ////////// PC ////////// */
@media print,
screen and (min-width: 960px) {
    #header .subNav-h {
        pointer-events: none;
    }
    #header .closeBtn {
        display: none;
    }
}



/*====================================================
     //class .nav-inner
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    #header .schoolList .subNav .nav-inner {
    }
    #header .schoolList .subNav .nav-inner li {
        margin-right: 1.5%;
        margin-left: 1.5%;
    }
    #header .schoolList .subNav .nav-inner li a {
        line-height: 1.2;
    }
    #header .schoolList .subNav .nav-inner li a:hover {
        color: #d30000;
    }
}

/* ////////// PC ////////// */
@media print,
screen and (min-width: 960px) {
    #header .subNav {
        width: 100%;
        position: absolute;
        top: 100%;
    -webkit-transition: 0.4s ease-in-out;  
            transition: 0.4s ease-in-out;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        opacity: 0;
        height: 0;
        overflow: hidden;
    }
    #header .schoolList .subNav {
        width: 200px;
        left: -50%;
        right: -50%;
        margin: auto;
    }
    #header .nav-inner li {
    -webkit-transition: 0.2s ease-in-out;  
            transition: 0.2s ease-in-out;
    }
    #header .nav-inner li:hover {
        background: #d30000;
    }
    #header .nav-inner li:hover a {
    }
    #header .nav-btn:hover .subNav {
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        opacity: 1;
        margin-top: 0;
        height: auto;
/*        padding-top: 2px;*/
        overflow: auto;
/*        padding-bottom: 20px;*/
    }
    #header .subNav .nav-inner {
        left: 0px;
        top: 2px;
        margin: auto;
        background: #fffcf2;
/*
        display: -webkit-box;
        display: -ms-flexbox;
        display: table;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: flex-start;
        flex-wrap: wrap;
*/
/*        position: relative;*/
        z-index: 30;
/*
        border-left: solid 1px;
        border-right: solid 1px;
        border-bottom: solid 1px;
*/
        border: solid 1px;
        border-top: none;
/*        border-top: solid 2px;*/
        border-color: #d30000;
    }
/*
    #header .schoolList .nav-inner li {
        width: 25%;
    }
*/
    #header .schoolList .nav-inner li.areaName:hover {
        background-color: #f7eed6;
        color: inherit;
    }
/*
    #header .lesson .nav-inner li {
        width: 50%;
    }
*/
    #header .service .nav-inner li {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    #header .head-menu .subNav  ul li a {
        display: block;
        padding: .5em 0 .5em 2em;
        position: relative;
        text-align: left;
    }
    #header .head-menu .subNav  ul li a:hover {
        color: #fff;
    }
    #header .head-menu .subNav  ul li a:before {
        width: 0;
        height: 0;
        position: absolute;
        display: block;
        content: '';
        border: solid 6px transparent;
        top: -1px;
        bottom: 0;
        left: 1em;
        margin: auto;
        border-top: solid 4px transparent;
        border-bottom : solid 4px transparent;
        border-left-color: currentColor;
    }
    #header .schoolList .subNav {
/*
		width: 100vw;
		max-width: 943px;
		margin: auto;
*/
        width: 943px;
        left: -374px;
    }
	#ver50th #header .schoolList .subNav {
		left: -414px
	}
	#header .service .subNav {
		width: 170px;
		right: 0;
	}
    #header .schoolList .subNav .nav-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
    #header .schoolList .nav-inner li {
        width: 25%;
    }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}


/*====================================================
     //class .header-inq
====================================================*/
#header .header-inq .link_box a:hover {
    text-decoration: none;
}
#header .header-inq dl {
    color: #d30000;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 959px) {
    #header .header-inq {
        margin: 20px auto;
        width: 90%;
        max-width: 360px;
        text-align: center;
        display: block;
    }
    #header .header-inq dl {
        border: solid 2px;
		font-weight: bold;
		display: block;
    }
    #header .header-inq dl dt {
        font-size: 1.8rem;
        margin: 8px 0;
    }
    #header .header-inq dl dd {
        margin: 8px 0;
    }
    #header .header-inq .tel {
        line-height: 1.2;
        font-size: 2.8rem;
    }
    #header .header-inq .tel img {
        width: 18px;
        vertical-align: -3px;
        margin: 5px;
    }

    #header .header-inq .link_box a {
        font-size: 1.6rem;
    }
    #header .header-inq .link_box a img {
        width: 30px;
        vertical-align: -8px;
        margin: 5px;
    }
    #header .header-inq .link_box a:hover {
        text-decoration: none;
    }
}

/* ////////// PC ////////// */
@media print,
screen and (min-width: 960px) {
    #header .header-inq {
        position: absolute;
        top: 2px;
        right: 0;
    }
    #header .header-inq dl {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
/*        display: table;*/
    }
    #header .header-inq dt {
		margin-right: 10px;
/*
        display: table-cell;
        vertical-align: middle;
*/
/*        width: 65px;*/
/*        font-size: 1.4rem;*/
    }
    #header .header-inq dd {
/*
        display: table-cell;
        vertical-align: middle;
*/
    }
    #header .header-inq .tel {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
        line-height: 1.0;
        font-size: 2.2rem;
		margin-right: 10px;
/*        width: 170px;*/
    }
	#header .header-inq .tel_link {
		vertical-align: -2px;
	}
    #header .header-inq .tel img {
        width: 14px;
        height: 20px;
/*        vertical-align: -1px;*/
        margin-right: 5px;
    }
    #header .header-inq .web {
		height: 2.0rem;
        width: 22px;
    }
    #header .header-inq .web img {
		width: auto;
		height: 100%;
/*        width: 22px;*/
    }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}



#header .schoolList .nav-inner li.areaName {
    width: 100%;
    cursor: default;
    background: #f7eed6;
    padding: 3px;        
}

/* ////////// mobile tablet ////////// */
@media screen and (max-width: 959px) {
    #header .schoolList .subNav .nav-inner .closeBtn {
        width: 100%;
        margin-top: 10px;
    }
    #header .schoolList .subNav {
        height: 100%;
    }
    #header .schoolList .subNav .nav-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: table;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #header .schoolList .subNav .nav-inner li {
        width: 47%;
        margin-right: 1.5%;
        margin-left: 1.5%;
    }
    #header .schoolList .subNav .nav-inner li a {
/*
        padding-top: .2em;
        padding-bottom: .2em;
*/
        font-size: .9em;
        line-height: 1.2;
    }
    #header .schoolList .nav-inner li.areaName {
        width: 100%;
        text-align: center;
        position: relative;
        margin-top: .5em;
        margin-bottom: .2em;
    }
    #header .schoolList .nav-inner li.areaName:before {
        position: absolute;
        content: '';
        display: block;
        width: 104%;
        height: 100%;
        left: -2%;
        top: 0;
        background: #f7eed6;
        z-index: -1;
    }
}

/* ////////// PC ////////// */
@media print,
screen and (min-width: 960px) {
}


/*====================================================
     //ID footer
====================================================*/
footer {
	background: #fff;
	position: relative;
	z-index: 1900;
}
footer .innerBox {
    padding: 20px 0;
}
footer #info_map {
    border-top: solid 2px;
/*    border-bottom: solid 2px;*/
    border-color: #d30000;
}
footer #info_map .logo {
	display: block;
    max-width: 300px;
    margin: 0 auto 16px 0;
}
footer #info_map .logo img {
	width: 100%;
}
footer #info_map .information dl {
    border: solid 1px;
    border-color: #d30000;
}
footer #info_map .information dl dt {
    background: #d30000;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: .3em
}
footer #info_map .information dl dd {
    text-align: center;
    padding: 0 .5em;
}
footer #info_map .information dl dd .tel {
    font-weight: bold;
    color: #d30000;
    font-size: 2.2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
footer #info_map .information dl dd .inq a {
    font-weight: bold;
    color: #d30000;
    font-size: 1.8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
footer #info_map .information dl dd div {
    margin: 5px 0;
}
footer #info_map .information dl dd .tel img {
    width: 1em;
    margin: .1em .3em 0 0;
}
footer #info_map .information dl dd .inq img {
    width: 1.5em;
    margin: 0 .3em 0 0;
}

#footer {
    background: #f8f4eb;
    margin: auto;
    font-size: 1.1rem;
}
footer * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
footer input[type="checkbox"].acco{
    display: none;/* チェックボックスの非表示 */
}
#footer .f-item li {
    display: inline-block;
    padding-right: 1.2em;
    position: relative;
}
#footer .f-item li:after {
    position: absolute;
    content: '\FF5C'; /*｜*/
    display: block;
    right: 0;
    top: 0;
}
#footer .f-item li:last-child:after {
    display: none;
}
#footer .f-item li a:hover {
    border-bottom: solid 1px;
    -webkit-transition: none;  
            transition: none;  
}
#footer .f-item .schoolTop {
    display: block;
}
#footer .f-item .schoolTop:after {
    display: none;
}
#footer .copyright {
    margin: 10px 0;
    text-align: right;
    font-size: .9rem;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    footer #info_map .innerBox {
        max-width: 400px;
    }
    footer #info_map .information dl dd .time {
        font-size: 1.1rem;
    }
    footer #info_map .information p {
        font-size: 1.0rem;
        margin-bottom: 20px;
    }
    footer #info_map .sitemap {
        font-size: 1.2rem;
    }
    #footer {
        background: #f8f4eb;
    }
    footer .accordion {
        display:table;
        position: relative;
        width: 96%;
        margin: 10px auto;
        height: auto;
        overflow: hidden;
    }
    footer .acco-h {
        display:block;
        position: relative;
        text-decoration: none;
        z-index: 3;
        cursor: pointer;
        font-weight: bold;
        background: #f8f4eb;
        position: relative;
        padding-left: 1.2em;
    }
    footer .acco-h:before {
        position: absolute;
        display: block;
        content: '';
        width: 0;
        height: 0;
        top: -.1em;
        bottom: 0;
        left: 2px;
        margin: auto;
        border: solid 8px transparent;
        border-top: solid 5px transparent;
        border-bottom : solid 5px transparent;
        border-left-color: currentColor;
    }
    footer input[type="checkbox"].acco:checked + .acco-h:before {
        content: '';
        top: .5em;
        bottom: 0;
        width: 0;
        margin: auto;
        border: solid 8px transparent;
        border-left: solid 5px transparent;
        border-right : solid 5px transparent;
        border-top-color: currentColor;
    }
    footer .acco-p {
        padding: 1em;
        position: relative;
        width: 100%;
        float: left;
        clear: both;
        margin-top: -120%;
        z-index: 1;
        -webkit-transition: all 2.0s;
        transition: all 2.0s;
    }
    footer input[type="checkbox"].acco:checked ~ .acco-p {
        margin-top: 0;
        opacity: 1;
        -webkit-transition: all 1.5s;
        -webkit-transition: all 1s;
        transition: all 1s;
    }
    footer #info_map #sns {
        width: 130px;
        margin-top: 1em;
    }
}

/* ////////// PC ////////// */
@media print,
screen and (min-width: 769px) {
    footer #info_map {
    }
    footer #info_map ul.flexBox {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    footer #info_map .information {
        width: 60%;
        max-width: 600px;
    }
    footer #info_map .information dl {
        display: table;
        width: 100%;
        max-width: 600px;
    }
    footer #info_map .information dl dt {
        font-size: 1.4rem;
        display: table-cell;
        vertical-align: middle;
        width: 6em;
    }
    footer #info_map .information dl dd {
        display: table-cell;
        text-align: center;
        padding: 0 .5em;
    }
    footer #info_map .information dl dd .tel {
        width: 50%;
        float: left;
        vertical-align: top;
    }
    footer #info_map .information dl dd .inq {
        width: 50%;
        float: left;
        padding: .1em 0;
    }
    footer #info_map .information .inq a:hover span {
        opacity: 0.8;
        filter: alpha(opacity=80);
        -moz-opacity: 0.8;
    -webkit-transition: 0.2s ease-in-out;  
            transition: 0.2s ease-in-out;  
    }
    footer #info_map .information dl dd .time {
        font-size: 1.2rem;
        clear: both;
    }
    footer #info_map .sitemap {
        width: 180px;
    }
    footer #info_map #sns {
        width: 100px;
    }
    footer #info_map #sns .linkBtn {
        width: 30px;
        height: 30px;
        padding: 0;
        border: none;
    }
    footer #info_map #sns .snsIcon {
/*        width: 40px;*/
    }
    footer .cate_box {
        display: table;
        width: 100%;
        margin: 10px 0;
    }
    footer .acco-h {
        display: table-cell;
        width: 100px;
        padding-right: 10px;
        text-align: center;
        cursor: default;
    }
    footer .cate_tit {
        display: block;
        background: #968e73;
        color: #fff;
        font-weight: bold;
    }
    footer .f-item {
        display: table-cell;
        width: calc(100% - 100px);
    }

}


/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
	footer #info_map .innerBox {
		max-width: 600px;
	}
    footer #info_map ul.flexBox {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
/*
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
*/
    }
    footer #info_map .information {
        width: 100%;
        max-width: none;
		margin-bottom: 20px;
    }
    footer #info_map .sitemap{
        width: 50%;
        margin: 0 .5em;
    }
}


/*====================================================
     //id ver50th
====================================================*/
#ver50th #header {
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

@media screen and (min-width:480px) and (max-width:768px) {
}

/* ////////// PC ////////// */
@media print,
screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}
