@charset "utf-8";
@font-face{
    font-family:'Noto Sans JP';
    font-style:normal;
    font-weight:400;
    font-display:swap;
    src:url(/fonts/NotoSansJP-Regular.otf) format('opentype');
}@font-face{font-family:'Noto Sans JP';
    font-style:normal;
    font-weight:700;
    font-display:swap;
    src:url(/fonts/NotoSansJP-Bold.otf) format('opentype');
}
*{
	position:relative;
	box-sizing:border-box;
}

body,input,select,textarea{
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	font-size:15px;
	line-height:1.5;
	letter-spacing:0.08em;
	color:#333;
}

h1,h2,h3,h4,h5,h6{
}

a{
	color:rgb(47, 68, 160);
}

.btn{

}

.btn a{
	display:inline-block;
	padding:1em;
	color:#fff;
	background:#455473;
	border: 1px solid #455473;
	transition: .2s;
}

.btn a:hover{
	color:#455473;
	background:#fff;
}

/* css animation (prefixes are cut) */
.animation {
	opacity:0;
}

.fadeup {
	transform-origin:center top;
	animation:fadeup 1s both;
}

.slidein_left {
	transform-origin:right center;
	animation:slidein_left 1s both;
}

.slidein_right {
	transform-origin:left center;
	animation:slidein_right 1s both;
}

.d3 {animation-delay:.3s;}
.d5 {animation-delay:.5s;}
.d10 {animation-delay:1s;}
.d15 {animation-delay:1.5s;}
.d20 {animation-delay:2s;}
.d25 {animation-delay:2.5s;}
.d30 {animation-delay:3s;}
.d35 {animation-delay:3.5s;}
.d40 {animation-delay:4s;}
.d45 {animation-delay:4.5s;}
.d50 {animation-delay:5s;}
.d55 {animation-delay:5.5s;}
.d60 {animation-delay:6s;}

@keyframes fadeup {
	0% {
		transform:translate(0,2em);
		opacity:0;
	}
	100% {
		transform:translate(0,0);
		opacity:1;
	}
}

@keyframes slidein_left {
	0% {
		transform:translate(-2em,0);
		opacity:0;
	}
	100% {
		transform:translate(0,0);
		opacity:1;
	}
}

@keyframes slidein_right {
	0% {
		transform:translate(2em,0);
		opacity:0;
	}
	100% {
		transform:translate(0,0);
		opacity:1;
	}
}

img.alignright{
	display: block;
	margin: 0 0 0 auto;
}
img.alignleft{
	display: block;
	margin: 0 auto 0 0;
}
img.aligncenter{
	display: block;
	margin: 0 auto;
}

/* header */

header{
    display: flex;
    height: 100vh;
    overflow: hidden;
                                        /* ドット（水玉）模様のCSS */
    background-color   : rgba(255, 255, 255, 0.10);
    background-image   : radial-gradient(#666 3%, transparent 19%),
                        radial-gradient(#666 3%, transparent 19%);
    background-position: 0 0, 3px 3px;
    background-size    : 6px 6px;
}

header > div{
    width:40%;
}

header > div.cercle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:4em 0;
    margin-top:-7%;
    width: 60%;
    height:140%;
    border-radius: 0 50% 50% 0;
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: cover;
}

video{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    z-index: -10;
    opacity:0;
    transition:.3s;
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    width: 100%;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

header > div.cercle:before{
    position: absolute;
    content:'';
    margin: auto;
    width:100%;
    height:100%;
    background-color: rgba(255,255,255,.8);
    top: 0;
    left: 0;
    z-index: 10;

}

header > div.cercle div{
    z-index: 100;
}

header > div.cercle h1{
    width:463px;
    height:150px;
    text-indent:-100%;
    background-image:url(/img/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
}

header > div.cercle p{
    padding:1em 2em;
    color: #455473;
    text-align:left;
}

header > div.cercle p strong{
    display: inline-block;
    margin:0 .5em;
    font-weight: bold;
    font-size:230%;
}

header ul{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding:4em 0;
    height: 100%;
}


header ul li:first-of-type,
header ul li:last-of-type{
    left:-5%;
}

header ul li:nth-child(3),
header ul li:nth-child(4){
    left:5%;
}
/*
header ul li:before{
    position: absolute;
    content:'';
    margin: auto;
    width:0;
    height:100%;
    background:#fff;
    top:0;
    left:0;
    transition:.2s;
    transform: skewX(10deg);
}
*/

header ul li a{
    display: inline-block;
    padding: 1em;
    color:#fff;
    font-weight: bold;
    font-size:130%;
    transition:.2s;
}
header ul li a:hover{
    color: #455473;
    text-shadow: #fff 0.16em 0 0, #fff -0.16em 0 0, #fff 0 -0.16em 0, #fff 0 0.16em 0, #fff 0.16em 0.16em 0, #fff -0.16em 0.16em 0, #fff 0.16em -0.16em 0, #fff -0.16em -0.16em 0, #fff 0.08em 0.16em 0, #fff -0.08em 0.16em 0, #fff 0.08em -0.16em 0, #fff -0.08em -0.16em 0, #fff 0.16em 0.08em 0, #fff -0.16em 0.08em 0, #fff 0.16em -0.08em 0, #fff -0.16em -0.08em 0, #fff 0.08em 0.08em 0, #fff -0.08em 0.08em 0, #fff 0.08em -0.08em 0, #fff -0.08em -0.08em 0;
}

header ul li a span.paon-logo{
    display: inline-block;
    margin-right: .3em;
    width: 115px;
    background-image: url(/img/paon-logo-w.svg);
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent:-100%;
    overflow:hidden;
    top: 0.3em;
}

header ul li:hover:before{
    width:120%;
}


#gmap{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:400px;
    overflow:hidden
}

/* content */
.wrapper{
    background:#fff;

}

section{
    padding:1em;
}

section a{
    text-decoration:underline;
}

section .btn a,
section a:hover{
    text-decoration:none;
}

#news h2,
#promotion h2{
    display: table;
    margin: 0 auto 1.5em;
    border:2px solid #455473;
    border-radius: 4px;
}

#news h2:before,
#promotion h2:before{
    position: absolute;
    content: '';
    margin: auto;
    height:200%;
    width:10px;
    background:#fff;
    transform: rotate(-50deg);
    top:0;
    bottom:0;
    left:0;
    right:0;
}


#news h2 span,
#promotion h2 span{
    display: inline-block;
    padding:.7em 2em;
    font-size:130%;
    color: #455473;
}

#news h2 span:before,
#promotion h2 span:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-left: 12px solid #FFF;
    z-index: 2;
  }
  

#news h2 span:after,
#promotion h2 span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -29px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-left: 14px solid #455473;
    z-index: 1;
  }

#news{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#news ul{
    padding:1em;
    width:100%;
    max-width: 750px;
}

#news ul li{
    padding:.5em 0;
    border-bottom:1px dotted #666;
}

#news ul li .date{
    display: inline-block;
    width:11em;
}

#news ul li#more{
    text-align:right;
    padding:1em 0;
    border-bottom:0;
}

#news,
#promotion{
    padding:3em 0;
}

#promotion
{
    background:rgba(69, 84, 115);

}

#promotion h2:before{
    display: none;
}

#promotion h2{
    border-color: #fff;
}

#promotion h2 span{
    color:#fff;
}

#promotion h2 span:before{
    border-left: 12px solid transparent;
}

#promotion h2 span:after{
    border-left: 14px solid #fff;
}

section .half_box{
    display: flex;
    margin:auto;
    max-width:1020px;
}

section .half_box > *{
    padding:1em;
    width:50%;
}

section img{
    max-width:100%;
    height:auto;
}

#promotion .half_box{
    background:rgba(255, 255, 255,.9);
}

#promotion .half_box .left_inner{
    padding:2em;
    text-align:center;
}

#promotion h3{
    margin-bottom:1.5em;
    padding:1em 1em 1em 35px;
    color: #455473;
    font-size:120%;
    border-bottom:2px dotted #455473;
}

#promotion h3:before {
    content: "";
    position: absolute;
    background: #455473;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 28px;
    left: 8px;
  }

section p {
    margin-bottom:1.5em;
}

section .btn{
    text-align:center;
}

.wrapper2{
        /* ドット（水玉）模様のCSS */
        background-color   : rgba(255, 255, 255, 0.10);
        background-image   : radial-gradient(#666 3%, transparent 19%),
                                radial-gradient(#666 3%, transparent 19%);
        background-position: 0 0, 3px 3px;
        background-size    : 6px 6px;
    padding-top:4em;
}

#lifestyle{
    background:rgba(255, 255, 255,.95);
max-width: 1020px;
margin: auto;
overflow: hidden;

}

#lifestyle h2{
    max-width: 1020px;
    margin: auto;
    padding:1em;
    font-size:150%;
    color: #412913;
}

#lifestyle h2 > span > span{
    display: block;
    font-size:70%;
}

#lifestyle h2::before{
    position: absolute;
    content: '';
    margin: auto;
    width:2000px;
    height:1px;
    background: #412913;
    bottom:0;
    right:-85px;
}

#lifestyle h2::after{
    position: absolute;
    content: '';
    margin: auto;
    width:1px;
    height:500px;
    background: #412913;
    top:0;
    right:10px;
}

#lifestyle .right_inner .btn a{
    background: #412913;
    border-color:#412913;
}

#lifestyle .right_inner .btn a:hover{
    color: #412913;
    background-color:#fff;
}

#lifestyle .right_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#lifestyle .right_inner > *{
    z-index: 10;
}

#lifestyle .right_inner:after{
    position:absolute;
    content: '';
    margin: auto;
    width: 100px;
    height: 250px;
    background: rgb(215 171 127 / 30%);
    top:14px;
    right:-50px;
    z-index: 1;
}

/* page */
#page header{
    justify-content: space-between;
    height:auto;
}

#page header h1 a{
    display: block;
    height: 100%;
    width: 100%;
}

#page header > div{
    width: auto;
}

#page header > div.cercle{
    margin:1em;
    padding: 0;
    border-radius: 0;
}

#page header > div.cercle:before{
    display: none;
}

#page header > div.cercle h1{
    width:250px;
    height:60px;
}

#page header ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:0 1em;
    height: 100%;
}

#page header ul li{
}

#page header ul li:first-of-type,
#page header ul li:last-of-type{
    left:0;
}

#page header ul li:nth-child(3),
#page header ul li:nth-child(4){
    left:0;
}

#page header ul li a{
    display: block;
    color:#455473;
    font-weight: bold;
    font-size:100%;
    transition:.2s;
}

#page header ul li a:hover{
    text-decoration: underline;
    text-shadow: none;
}

div#breadcrumb{
    font-size:94%;
}

div#breadcrumb ul{
    margin-bottom:0 !important;
    border:0 !important;
    text-align:right;
}

div#breadcrumb ul li{
    display:inline;
}

div#breadcrumb ul li span{
    display:inline-block;
}

#page .content{
    max-width:1280px;
    margin: auto;
    padding:1em 3em;
}

.content h2{
    display: table;
    margin: 3em auto;
    border:2px solid #455473;
    border-radius: 4px;
}

.content h2:before{
    position: absolute;
    content: '';
    margin: auto;
    height:200%;
    width:10px;
    background:#fff;
    transform: rotate(-50deg);
    top:0;
    bottom:0;
    left:0;
    right:0;
}


.content h2 span{
    display: inline-block;
    padding:.7em 2em;
    font-size:130%;
    color: #455473;
}

.content h2 span:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-left: 12px solid #FFF;
    z-index: 2;
  }
  

  .content h2 span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -29px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-left: 14px solid #455473;
    z-index: 1;
  }

.content h3{
    position: relative;
    margin-bottom:1.3em;
    padding: 1.5rem 1rem;
    font-weight: bold;
    color: #455473;
    font-size:130%;
  }
  
  .content h3:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-image: -webkit-repeating-linear-gradient(135deg, #455473, #455473 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #455473, #455473 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

.content h4 {
    font-weight: 700;
    padding: .5em 1em .5em 1.5em;
    margin-bottom: 1.5em;
    position: relative;
    border-radius: 4px;
  }
  .content h4::before {
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    content: '';
    width: 6px;
    border-radius: 3px;
    height: calc(100% - 1em);
    background-color: #455473;
  }


  .content table.flex_box,
  .content table.flex_box > tbody{
    display: block;
  }
  .content table.flex_box > tbody > tr{
    display: flex;
    justify-content: space-between;
  }

  .content table.flex_box > tbody > tr > td{
    display: block;
    padding:1em;
    width: 100%;
  }

  .content table.flex_box > tbody > tr > td:first-of-type{
    padding-left: 0;
  }
  .content table.flex_box > tbody > tr > td:last-of-type{
    padding-right: 0;
  }

  .content table:not(.flex_box) th{
    vertical-align: middle;
  }

  .content table:not(.flex_box) td,
  .content table:not(.flex_box) th{
    padding:.5em;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
  }

  
  .content table td :last-child,
  .content table th :last-child{
    margin-bottom:0;
  }

  #page header .paon-logo{
    background-image: url(/img/paon-logo-b.svg);
  }

  #page .content :not(#breadcrumb) ul {
    border: solid 2px #455473;
    border-radius: 5px;
    margin-bottom:1.5em;
    padding: 0.5em 1em 0.5em 3em;
    position: relative;
  }
  
  #page .content :not(#breadcrumb) ul li {
    padding: 0.5em 0;
    list-style-type: none!important;
  }
  
  #page .content :not(#breadcrumb) ul li:before {
    
    font-family: "FontAwesome";
    content: "\f138";
    position: absolute;
    left : -1.2em;
    color: #455473;
  }

  #page .content form{
    max-width:600px;
    margin:0 auto 1.5em;
    padding:1em;
    background:#eee;
    border-radius: 4px;
  }

  #page .content form input[type="text"],
  #page .content form input[type="email"],
  #page .content form textarea{
    padding:.3em;
    background:#fff;
    border:1px solid #ccc;
    border-radius: 4px;
  }

  #page .content form textarea{
    width: 100%;
  }

  #page .content form .wpcf7-checkbox label{
    display: inline-block;
    margin:.5em;
  }

  #page .content form .wpcf7-checkbox input{
    margin-right:.2em;
  }

div.screen-reader-response{
  display: none;
}


  #page .content form input[type="submit"]{
    display: block;
    margin: auto;
    padding:1em 3em;
    color:#fff;
    background: #455473;
    border:1px solid #455473;
    border-radius: 4px;
    transition: .2s;
  }

  #page .content form input[type="submit"]:hover{
    color: #455473;
    background:#fff;
  }

/* footer */

#contact .half_box > *{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(69, 84, 115, .95);
    margin:1em;
    width:calc(100% - 2em);
    overflow: hidden;
}

#contact h2{
    margin-bottom:1.5em;
}

#contact h2 span{
    display: block;
    padding:.5em 1em .5em 60px;
    color: #455473;
    font-size:130%;
}

#contact  h2:before{
    position:absolute;
    content: '';
    width:120%;
    height:100%;
    background: #fff;
    top:0;
    left:10px;
    transform:skewX(20deg);
}

#contact h2:after{
    position:absolute;
    content: '';
    width:20px;
    height:calc(100% + 6px);
    background: transparent;
    border:3px solid #455473;
    top:-3px;
    left:25px;
    transform:skewX(20deg);
}

#contact p{
    font-size:90%;
    color:#fff;
}

#contact p.btn a{
    background: #fff;
    border-color: #fff;
    color: #455473;
}

#contact p.btn a:hover{
    background: #455473;
    color: #fff;
}

#access,
#gmap{
    padding:0;
}

#access .half_box{
    position: absolute;
    margin: auto;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 100;
    height:300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color:#455473;
    max-width:1020px;
    width:100%;
}

#access h2{
    font-size:130%;
}

#access .half_box .left_inner{
    width: auto;
    background:rgba(255,255,255,.9);

}


#footnav{
    padding:1em;
}

#footnav ul{
    display:flex;
    max-width: 1020px;
    justify-content: space-between;
    margin: 0 auto 1.5em;
}

#footnav ul li{
    display:block;
    margin:.5em;
}

#footnav ul li a{
    color: #333;
    text-decoration: none;
}

address{
    display: flex;
    justify-content: flex-end;
    max-width: 1020px;
    margin: auto;
}

footer > p{
    text-align:center;
}

@media screen and (max-width:1400px){
    #page header{
        flex-wrap: wrap;
    }
    #page header nav{
        width: 100%;
    }
    #page header nav ul{
        flex-wrap: wrap;
        justify-content: flex-start;
    }

}
@media screen and (max-width:1000px){
    #top header{
        justify-content: space-between;
        flex-direction: column;
    }
    #top header > div.cercle{
        width: 100%;
        height: auto;
        margin-top:0;
        padding: 2em 0;
        border-radius:0;
    }
    header > div.cercle p{
        padding:.5em;
    }
    #top header ul{
        flex-direction: row;
        flex-wrap:wrap;
        justify-content: flex-start;
        align-items: center;
    }
    #top header ul li{
        left: auto !important;
    }
    #news h2, #promotion h2{
        max-width: calc(100% - 1em);
    }
    #news h2 span,#promotion h2 span{
        padding: .7em;
    }
}

@media screen and (max-width:820px){
    .half_box,
    .content table.flex_box > tbody > tr{
        display: block !important;
    }
    .half_box > *,
    .content table.flex_box > tbody > tr > *{
        width: 100% !important;
        margin:0 !important;
        padding: 0 1em;
    }
    #footnav ul{
        display: block;
    }
    #footnav ul li{
        margin-bottom: 1.5em;
    }
    #access .half_box{
        position: relative;
        height: auto;
    }
}


#nav_toggle{
    display: none;
}

#gnav_overlay{
    display: none;
}


@media screen and (max-width:540px){
    header {
        height: 80vh;
    }
    header > div.cercle h1{
        width: 100%;
        height: 0;
        padding-top:12%;
    }
    #top header > div.cercle{
        display: block;
        padding:1em;
    }
    header > div.cercle p{
        font-size:80%;
        padding:.5em 0 0;
    }
    header > div.cercle p br{
        display: none;
    }
    header > div.cercle p:last-child{
        display: none;
    }

    #top header ul{
        display: block;
        padding:1em;
    }

    #top header ul li:first-of-type{
        display: none;
    }

    #top header ul li a{
        font-size:100%;
        color: #455473;
        text-shadow: #fff 0.16em 0 0, #fff -0.16em 0 0, #fff 0 -0.16em 0, #fff 0 0.16em 0, #fff 0.16em 0.16em 0, #fff -0.16em 0.16em 0, #fff 0.16em -0.16em 0, #fff -0.16em -0.16em 0, #fff 0.08em 0.16em 0, #fff -0.08em 0.16em 0, #fff 0.08em -0.16em 0, #fff -0.08em -0.16em 0, #fff 0.16em 0.08em 0, #fff -0.16em 0.08em 0, #fff 0.16em -0.08em 0, #fff -0.16em -0.08em 0, #fff 0.08em 0.08em 0, #fff -0.08em 0.08em 0, #fff 0.08em -0.08em 0, #fff -0.08em -0.08em 0;
    }
    #top header ul li a span.paon-logo{
        background-image:none;
        width: auto;
        text-indent: 0;
    }

    #news h2 span:before, #promotion h2 span:before,
    #news h2 span:after, #promotion h2 span:after{
        display: none;
    }

    #lifestyle h2{
        font-size:130%
    }

    #contact h2 span{
        padding-right: 0;;
        font-size:100%;
    }

    #page header nav {
        position: fixed;
        padding: 0 2em;
        height: 100%;
        top: 0;
        right: -101%;
        z-index: 500;
        background-color: rgba(255, 255, 255, .9);
        opacity: 1;
        transition:.3s;
        -webkit-animation: none;
        animation: none;
    }

    #page header nav.open {
        right:0;
        box-shadow: 2px 2px 200px #eee;
    }


    #page header nav>ul {
        display: block
    }

    #page header nav ul ul {
        position: relative;
        width: 100%;
        left: 0
    }

    #page header nav ul a {
        text-align:left;
    }

    #page header nav {
        width: auto;
        z-index: 9980
    }

    #page header nav > ul{
        display:block;
        padding-top:80px;
    }

    #page #close_toggle {
        display: block;
        padding: 1em;
        text-align: right
    }

    #page header #nav_toggle {
        position: fixed;
        display: block;
        padding: 1em 0 1em 1.5em;
        height: 42px;
        width: 42px;
        color: #333;
        font-size: 80%;
        font-weight: bold;
        text-align: center;
        box-sizing: border-box;
        top: 20px;
        right: 1em;
        z-index: 9999;
        cursor: pointer;
    }

    #page header #nav_toggle #nav_toggle_icon {
        position: absolute;
        display: block;
        margin: -1px 0 0 -2.5em;
        width: 14px;
        height: 2px;
        background: #333;
        transition: .2s;
        top: 50%;
        right: 1em
    }

    #page header #nav_toggle #nav_toggle_icon:before,
    #page header #nav_toggle #nav_toggle_icon:after {
        position: absolute;
        display: block;
        content: "";
        width: 14px;
        height: 2px;
        background: #333;
        transition: .3s;
        top: 50%;
        left: 0
    }

    #page header #nav_toggle #nav_toggle_icon:before {
        margin-top: -6px
    }

    #page header #nav_toggle #nav_toggle_icon:after {
        margin-top: 4px
    }

    #page header #nav_toggle #nav_toggle_icon.close{
        background:transparent;
    }

    #page header #nav_toggle #nav_toggle_icon.close:before,
    #panel-btn .close:after {
        margin-top: 0
    }

    #page header #nav_toggle #nav_toggle_icon.close:before {
        margin-top: -1px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }

    #page header #nav_toggle #nav_toggle_icon.close:after {
        margin-top: -1px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg)
    }

    #page header nav ul li a.current {
        border-radius: 0
    }
    #page .content,
    #page header nav{
        padding:1em;
    }
    #gmap{
        height: 250px;
    }
}