@charset "UTF-8";

/*======================================================
ヘッダー
======================================================*/

/*------------------------------
下層ヘッダー
------------------------------*/

.header-in{
    margin: 0 auto;
    padding:10px 0;
}

.head-logo img{
    max-width:90px;
}

@media(max-width:767px){
    .head-logo{
        text-align: center;
        margin-bottom:10px;
    }
}


header .g-nav li a:link, header .g-nav li a:visited{
    color:#fff;
}

.head-sns{
    text-align:center;
}

.head-sns a{
    padding:0 6px;
    font-size:1.8rem;
}

@media(min-width:768px){
    .head-sns{
        text-align: right;
        margin-bottom:10px;
    }
}

/*------------------------------
ヘッダー固定
------------------------------*/
.clone-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    transition: .3s;
    transform: translateY(-100%);
    opacity:0.97;
}
.is-show {
    transform: translateY(0);
}






/*======================================================
ナビ設定
======================================================*/

.g-nav li a:link, .g-nav li a:visited{
    text-decoration: none;
}

.g-nav ul li{
    display: block;
    width: 130px;
}

.g-nav ul li a{
    //padding:0 20px;
    display: block;
    //width:130px;
}

.g-nav ul li a::last-child{
    padding:0;
}


.gNav a {
    position: relative;
    text-align: center;
    overflow: hidden;
    display: block;
    //padding: 10px 22px; //メニューに入るテキスト量によってpaddingは変更してください
}
.gNav a::after {
    display: block;
    content: "";
    width: 0%;
    background: #F05152;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.gNav a span {
    display: block;
    width: 100%;
    margin: 0 auto;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.gNav a span.en {
    display: none;
    white-space: nowrap;
    color: #ff6200;
}
.gNav a:hover::after {
    width: 100%;
    transform: scale(1.2);
}
.gNav a:hover span.ja {
    display: none;
}
.gNav a:hover span.en {
    display: inherit;
    text-shadow: 0 0 10px #fff;
    color:#d93300;
}

.gNav-page a:hover span.en{
    text-shadow: 0 0 10px #fff;
    color:#d93300;
}

/* スマホナビ設定 */

@media(max-width:767px){

    .g-nav {
        transition: all .6s;
        overflow-y: auto;
        padding-top: 50px;
        width: 300px;
        height: 100vh;
        z-index: 200;
        top: 0;
        right: -320px;
        background-color: rgba(38, 38, 38, 0.7);
        position: fixed;
    }
    
    .g-nav ul li{
        padding: 0;
        margin-left:0 !important;
        display: block;
        flex-basis: 100%;
    }
    
    .g-nav ul li a{
        padding:2em 0 2em 1em;
        display: block;
        border-bottom:1px solid #fff;
        width:100%;
    }
    
    .g-nav ul li a:hover{
        background: rgba(204, 204, 204, 0.5);
        cursor: pointer;
    }
    
    .g-nav ul li:first-child{
        border-top: 1px solid #fff;
    }

    .nav_btn {
        width: 44px;
        height: 44px;
        z-index: 300;
        top: 7px;
        right: 7px;
        cursor: pointer;
        /*position: absolute;*/
        position: fixed;
        background: url(../img/common/bg-br.jpg) repeat;
    }

    .hamburger_line {
        transition: all .6s;
        width: 34px;
        height: 2px;
        left: 5px;
        background-color: #fff;
        position: absolute;
    }

    .hamburger_line1 { top: 10px; }
    .hamburger_line2 { top: 21px; }
    .hamburger_line3 { top: 32px; }

    .nav_bg {
        opacity: 0;
        transition: all .6s;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        top: 0;
        left: 0;
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.4);
        cursor: pointer;
        position: fixed;
    }

    /* 表示された時用のCSS */
    .nav_open nav { right: 0; }

    .nav_open .nav_bg {
        opacity: 1;
        visibility: visible;
    }

    .nav_open .hamburger_line1 {
        transform: rotate(45deg);
        top: 20px;
    }

    .nav_open .hamburger_line2 {
        width: 0;
        left: 50%;
    }

    .nav_open .hamburger_line3 {
        transform: rotate(-45deg);
        top: 20px;
    }
}


/*-----------------------------
section
-----------------------------*/

.indent{
    text-indent: 1em;
}

.bg-br{
    background: url(../img/common/bg-br.jpg) repeat;
}

.bg-br p, .bg-br li,.bg-br dt, .bg-br dd{
    color:#fff;
}

.bg-be{
    background:#f8f2e7;
}

section{
    padding:40px 0;
}

@media(max-width:767px){
    section{
        
    }
}

.white-box{
    margin: 20px auto;
    -webkit-box-shadow: 4px 4px 4px 4px rgba(38, 38, 38, 0.4);
    box-shadow: 4px 4px 4px 4px rgba(38, 38, 38, 0.4);
    padding:30px 80px;
    background: rgba(255, 255, 255, 0.6);
}



/*-----------------------------
見出し
-----------------------------*/

.h2-sec{
    
    font-family: trajan-pro-3, serif;
    font-weight: 600;
    font-style: normal;
    font-size:3.6rem;
    line-height: 0.6;
    text-align: center;
    color:#38220c;
    margin-bottom:2em;
}

.h2-sec:first-letter{
    font-size:4.6rem;
}

.h2-sec span{
    font-size:1.4rem;
    font-family: sans-serif;
}


/*======================================================
フッター
======================================================*/

footer{
    background: #442a19;
    padding:20px;
	text-align: center;
}

.foot-logo img{
	width:70px;
	margin:10px;
}

footer p,footer copy{
	color:#fff;
	font-size:1.2rem;
}

@media only screen and (max-width: 767px){
    footer{
        border-top:1px solid #999;
        padding-top:20px;
        margin-top:20px;
    }
}

.foot-bar{
	background: #f747ba;
	font-size:12px;
	text-align: center;
	color:#fff;
	padding:4px;
}

.foot-in{
    //border-bottom:1px solid #ccc;
    margin-bottom:10px;
    padding-bottom:10px;
}

footer a:link,footer a:visited, footer a:hover{
    color:#fff;
}


/*------------------------------
TOPへ戻る
------------------------------*/

#pageTop {
    position: fixed;
    bottom: 20px;
    right: 0;
    font-size: 3.0rem;
    background: rgba(255, 139, 66, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

#pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
}

#pageTop a {
    display: block;
    z-index: 999;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}






