/* ------------------------------------------------------------------------
    Main Layout
------------------------------------------------------------------------  */
header {
    position:relative;
    top: 0;
	width: 100%;
	z-index: 20;
	transition: background-color .4s linear;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
#SITE_CONTAINER {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100vh;
}
main {
    position: relative;
}
@media screen and (min-width:769px){
	main {
	}
}
footer {
    width:100%;
}


/* ------------------------------------------------------------------------
    Header
------------------------------------------------------------------------  */

header {
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all .4s;
    background-color: rgba(255,255,255,1);
}
header .HD_container{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-left: var(--container-side);
	padding-right: var(--container-side);
}
/* Header Name */
header .Hd_logo{
    width: 100px;
}
header .Hd_Contents{
    display: flex;
    align-items: center;
    width: calc(100% - 120px);
    justify-content: flex-end;
    column-gap:1em;
}
/* LANG */
header .Hd_Contents .Lang{
    border: 1px solid var(--sub2-color);
    display: flex;
    width: 6em;
    height: 40px;
    border-radius: 3px;
    box-sizing: border-box;
}
header .Hd_Contents .Lang .Item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-size: .875em;
    transition: all .6s;
}
header .Hd_Contents .Lang .Item.active{
    cursor: default;
    pointer-events: none;
    background: var(--sub2-color);
    color: #fff;
}

header .Contact {
    width: 90px;
    font-size: .875em;
}
header .Contact .Btn{
    min-width: inherit !important;
}
@media screen and (min-width:769px){
    header .Hd_logo{
        width: 185px;
    }
    header .Hd_Contents{
        width: calc(100% - 205px);
    }
    header .Contact {
        width: 200px;
    }
    
    /* hover */
    header .Hd_Contents .Lang .Item:hover{
        background: var(--sub2-color);
        color: #fff;
    }
}

/* Scroll */
header.Scrl{
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgba(255,255,255,.8);
}
header.Scrl .Header_Logo img{
   height: 34px; 
}




/* ------------------------------------------------------------------------
    PAGETITLE
------------------------------------------------------------------------  */
#PAGE_TITLE{
    position: relative;
    width: 100%;
    height: 200px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
#PAGE_TITLE:before,
#PAGE_TITLE:after{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
}
#PAGE_TITLE:before{
    background-image: url("../images/page_title_image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    z-index: -2;
}
#PAGE_TITLE:after{
    background: var(--color-mask);
    z-index: -1;
}
@media screen and (min-width:769px){
    #PAGE_TITLE{
        height: 350px;
    }
}

#PAGE_TITLE .container{
    color: #fff;
    text-align: center;
}
#PAGE_TITLE .container p{
    font-size: 30px;
    margin-bottom: 12px;
    text-shadow: 1px 2px 5px #000;
}
#PAGE_TITLE .container h2{
    font-size: 1.5em;
    text-shadow: 1px 2px 5px #000;
}
@media screen and (min-width:769px){
    #PAGE_TITLE .container p{
        font-size: 40px;
    }
}

/* ------------------------------------------------------------------------
    nav
------------------------------------------------------------------------  */

/* ------------------------------------------------------------------------
    main
------------------------------------------------------------------------  */
main {
    margin-bottom: var(--space-20);
}

/* ------------------------------------------------------------------------
    footer
------------------------------------------------------------------------  */
footer {
    background: #565656;
    padding: 20px 0;
    color: #fff;
    font-size: 12px;
}
footer a{
    color: #fff;
}
footer .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap:20px;
    margin-bottom: 20px;
}
footer .container > *{
    width: 100%;
}
footer .container .Ft_Info{
}
footer .container .Ft_Menu{
    text-align: center;
}
footer .container .Ft_Info h3 span{
    font-size: 1.5em;
}
footer .Copy {
    font-size: 10px;
    text-align: center;
}
@media screen and (min-width:769px){
    footer .container .Ft_Info{
        max-width: calc(100% - 300px);
    }
    footer .container .Ft_Menu{
        text-align: right;
        max-width: 300px;
    }
    footer .Copy {
        text-align: right;
        font-size: 12px;
    }
}


/* ------------------------------------------------------------------------
    Page-Top
------------------------------------------------------------------------  */
#PG-Top {
}
