﻿@charset "utf-8";



/*スマホサイト**********************************************************************/
@media screen and (max-width:680px) {



/* ↓調整これから↓ */

header {
    height: 45px;
    background-color: #27969a;
    box-shadow: 0px 0px 6px #000;
    /*▼headerを上部固定しない場合は外す*/
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    z-index: 999;
    /*▲headerを上部固定しない場合は外す*/
}

h1 img {
    display: block;
    margin: 9px auto 0px auto;
    width: 300px;
    height: 28px;
}



}










/*PCサイトベース（メニューだけスマホ用を表示）**************************************/
@media screen and (min-width:681px) and ( max-width:1500px) {



/* ↓調整これから↓ */

header {
    height: 70px;
    background-color: #27969a;
    box-shadow: 0px 0px 6px #000;
    /*▼headerを上部固定しない場合は外す*/
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    z-index: 999;
    /*▲headerを上部固定しない場合は外す*/
}

h1 img {
    display: block;
    margin: 15px auto 0px auto;
    width: 470px;
    height: 40px;
}



}










/*PCサイト（メニューは展開）********************************************************/
@media screen and (min-width:1501px) {



/* ↓調整完了↓ */

header {
    height: 70px;
    background-color: #27969a;
    box-shadow: 0px 0px 6px #000;
    /*▼headerを上部固定しない場合は外す*/
	position: fixed;
    top: 0;
    left:0;
	width: 100%;
    z-index: 999;
    /*▲headerを上部固定しない場合は外す*/
}

h1 img {
    display: block;
    margin: 15px auto 0px auto;
    width: 470px;
    height: 40px;
}



}


