/*------------------------------
	LAYOUT
------------------------------*/
/*PC*/
#wrapper{
    position: relative;
}
#side{
    max-width: 466px;
    width: 22%;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 2%;
    padding-top: 22px;
}
#side .side_inner{
    position: fixed;
}
#side .side_inner.fixed{
    top: 10px;
}
main{
    background-color: #f2f4f5;
    width: 73.5%;
    position: absolute;
    top: 0;
    left: 24%;
    padding-left: 2.5%;
    padding-top: 32px;
    padding-bottom: 200px;
    min-height: 1000px;
}
#main{
    max-width: 1186px;
}
#main .subNav{
    text-align: right;
    margin-bottom: 20px;
    padding-right: 1em;
}
#main .subNav li{
    display: inline-table;
    font-size: 1.3rem;
    padding-right: 1em;
    padding-left: 1em;
    border-right: 1px solid #007bc2;
}
#main .subNav li a{
    color: #007bc2;
}
#main .subNav li:first-child{
    border-left: 1px solid #007bc2; 
}
/*TABLET*/
@media screen and (max-width: 1024px) {
    #side{
        width: 100%;
        max-width: 100%;
        top: 0;
        left: 0;
        padding-left: 0;
        padding-top: 0;
        height: 15vw;
        z-index: 10;
        position: fixed;
        background-color: #FFFFFF;
        border-bottom: 1px solid #000000;
    }
    #side .side_inner{
        position: static;
    }
    main{
        width: 100%;
        top: 15vw;
        left: 0;
        padding-left: 0%;
        padding-top: 4vw;
        padding-bottom: 10vw;
        min-height: 80vh;
    }
    #main{
        max-width: 100%;
        padding-bottom: 20vw;
    }
    #main .subNav{
        display: none;
    }
    #mainWrap{
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }
}
/*SP*/
@media screen and (max-width: 750px) {
    #side{
        height: 17vw;
    }
    main{
        top: 17vw;
    }
}

/*------------------------------
	SIDE
------------------------------*/
/*PC*/
.maindiscription{
    font-size: 1.2rem;
    color: #595959;
    padding-bottom: 12px;
}
.globalNav{
    padding-top: 140px;
    padding-bottom: 80px;
}
#side .side_inner.fixed .globalNav{
    padding-top: 45px;
    padding-bottom: 25px;
}
.globalNav li{
    font-family: vdl-logog, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 2.6;
}
.globalNav li a{
    color: #000000;
}
.globalNav li a:hover{
    color: #007bc2;
}
.globalNav li.top{
    padding-bottom: 40px;
    position: relative;
}
.globalNav li.top::before{
    border-bottom: 1px solid #007bc2;
    width: 60px;
    position: absolute;
    bottom: 18px;
    content: "";
}
.globalNav li.company{
    padding-top: 40px;
    position: relative;
}
.globalNav li.company::before{
    border-bottom: 1px solid #007bc2;
    width: 60px;
    position: absolute;
    top: 20px;
    content: "";
}
.address{
    font-size: 1.2rem;
    line-height: 1.8;
}
.address .company_name{
    font-size: 1.4rem;
}
.address .tel{
    color:#007bc2;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.5;
}
.address .tel .button01{
    display: none;
}
.address .copyright{
    padding-top: 20px;
}
.globalNav .subNav{
    display: none;
}
.toggle{
    display: none;
}
/*TABLET*/
@media screen and (max-width: 1024px) {
    .maindiscription{
        font-size: 1.2vw;
        padding-bottom: 0;
        padding-left: 2%;
    }
    .maindiscription br{
        display: none;
    }
    .logo{
        width: 18%;
        padding-left: 2%;
        padding-top: .5vw;
    }
    #side button{
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
        font-family: vdl-logog, sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    .scroll_prevent {
        position: fixed;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0px;
    }
	.toggle {
		display: block;
        position: absolute;
		right: 3%;
		top: 0;
		width: 6vw;
		height: 6vw;
		cursor: pointer;
		z-index: 2;
    }	
	.toggle span {
		display: block;
		position: absolute;
		width: 6vw;
		border-bottom: solid 5px #007bc2;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
        left: 0;
        right: 0;
        margin: auto;
    }
	.toggle span:nth-child(1) {
		top: 3vw;
    }
	.toggle span:nth-child(2) {
		top: 5vw;
    }
	.toggle.active span:nth-child(1) {
		top: 4vw;
		left: 0vw;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
    }
	.toggle.active span:nth-child(2){
		top: 4vw;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
    }
	.toggle .menu{
        color: #007bc2;
        top: 7vw;
        left: 0;
        right: 0;
        margin: auto;
        position: absolute;
        font-size: 1.5vw;
        font-weight: normal;
    }
	.toggle .menu.close{
        display: none;
    }
	.toggle .menu.close.active{
        display: block;
    }
	.toggle .menu.open.active{
        display: none;
    }
	.onanimation{
        display: block;
    }
    .global_menu.openNav{
        display: block;
        animation-name:navshow;
        animation-duration:0.75s;
        opacity: 1;
        text-align:left;
    }
    #header .global_menu{
        padding-right: 0;
    }
    .global_menu {
        position: fixed;
        right: 0;
        top: 15vw;
        width:100%;
        z-index: 3;
        opacity: 1;
        display: none;
        background: #ffffff;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10vw;
        padding-right: 0;
        height: 82%;
        border-top: 1px solid #000000;
    }
    .globalNav{
        padding-top: 5vw;
        padding-bottom: 10vw;
        width: 90%;
        padding-left: 5%;
    }
    #side .side_inner.fixed .globalNav{
        padding-top: 5vw;
        padding-bottom: 10vw;
    } 
    .globalNav li{
        font-size: 2.2vw;
        line-height: 3;
    }
    .globalNav li.top{
        padding-bottom: 4vw;
    }
    .globalNav li.top::before{
        width: 4em;
        bottom: 2vw;
    }
    .globalNav li.company{
        padding-top: 4vw;
    }
    .globalNav li.company::before{
        width: 4em;
        top: 2vw;
    }
    .globalNav .subNav{
        display: block;
        padding-top: 5vw;
    }
    .address{
        width: 90%;
        padding-left: 5%;
        font-size: 1.6vw;
        line-height: 1.8;
    }
    .address .company_name{
        font-size: 1.8vw;
    }
    .address .tel{
        font-size: 2.5vw;
        display: flex;
    }
    .address .tel .button01{
        display: inline-block;
        font-size: 2.0vw;
        line-height: 2;
    }
    .address .tel .button01{
        margin-left: .5em;
    }
    .address .copyright{
        padding-top: 2vw;
    }
}
/*SP*/
@media screen and (max-width: 750px) {
    .maindiscription{
        font-size: 2.5vw;
        padding-left: 2%;
    }
    .logo{
        width: 17%;
        padding-left: 2%;
        padding-top: .5vw;
    }
	.toggle {
		right: 2.5%;
		top: 0;
		width: 8vw;
		height: 12vw;
    }	
	.toggle span {
		width: 8vw;
		border-bottom: solid 3px #007bc2;
    }
	.toggle span:nth-child(1) {
		top: 5vw;
    }
	.toggle span:nth-child(2) {
		top: 8vw;
    }
	.toggle.active span:nth-child(1) {
		top: 6vw;
    }
	.toggle.active span:nth-child(2){
		top: 6vw;
    }
	.toggle .menu{
        top: 10vw;
        font-size: 10px;
    }
    .global_menu {
        top: 17vw;
    }
    .globalNav li{
        font-size: 4.2vw;
    }
    .address{
        font-size: 3.4vw;
    }
    .address .company_name{
        font-size: 4.0vw;
    }
    .address .tel{
        font-size: 6vw;
    }
    .address .tel .button01{
        font-size: 3.8vw;
        line-height: 2;
        margin-top: 1vw;
    }
    .address .copyright{
        padding-top: 2vw;
        padding-bottom: 3vw;
    } 
}
/*------------------------------
	FIX BUTTON
------------------------------*/
.fixed_button{
    position: fixed;
    right: 8px;
    top: 120px;
    z-index: 10;
}
.fixed_button li{
    line-height: 40px;
    width: 170px;
    font-family: vdl-logog, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-align: center;
}
.fixed_button li a{
    color: #FFFFFF;
    display: block;
    background-color: #007bc2;
    display: block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: .3s;
}
.fixed_button li:first-child{
    margin-bottom: 25px;
}
.fixed_button li:first-child a{
    background-color: #1399c2;
}
.fixed_button li a:hover{
    opacity: 85%;
}

/*TABLET*/
@media screen and (max-width: 1024px) {
    .fixed_button{
        right: 0;
        left: 0;
        margin: auto;
        top: auto;
        bottom: 0;
        width: 100%;
        border-top: 1px solid #000000;
        background-color: #FFFFFF;
    }
    .fixed_button ul{
        display: flex;
        padding-top: 10px;
        width: 98%;
        margin-right: auto;
        margin-left: auto;
    }
    .fixed_button li{
        line-height: 4;
        width: 32%;
        font-size: 1.6vw;
        margin-bottom: 20px;
        margin-right: 1%;
    }
    .fixed_button li:first-child{
        margin-bottom: 0;
        margin-right: 3%;
    }
    .fixed_button li:last-child{
        margin-right: 0;
    }
}
/*SP*/
@media screen and (max-width: 750px) {
    .fixed_button li{
        line-height: 3;
        font-size: 2.8vw;
        margin-bottom: 2vw;
    }
}

/*------------------------------
	PAGE TOP
------------------------------*/
#page_top{
    position: fixed;
    right: 2%;
    z-index:1;
}
/*TABLET*/
@media screen and (max-width: 1024px) {
    #page_top{
        width: 5%;
    }
}
/*SP*/
@media screen and (max-width: 750px) {
    #page_top{
        width: 10%;
    }
}

/*------------------------------
	PAGE TITLE
------------------------------*/
.pageTit{
    border-bottom: 1px solid #007bc2;
    font-size: 5.4rem;
    font-family: vdl-logog, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #007bc2;
    padding-top: 85px;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

/*TABLET*/
@media screen and (max-width: 1024px) {
    .pageTit{
        font-size: 5.0vw;
        padding-top: 0;
        padding-bottom: 1vw;
        margin-bottom: 3vw;
    }
}
/*SP*/
@media screen and (max-width: 750px) {
    .pageTit{
        font-size: 5.5vw;

    }
}

