body {
  font-family: "Noto Sans Japanese" ,sans-serif;
  line-height: 1.8;
  font-size: 16px;
  background: #fff;
  color: #525252;
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
}
a {
  color: #ECA326;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  text-decoration: none !important;
  /*color: #ECA326 !important;*/
}

.font_questrial{
  font-family: "Questrial";
}

.clearboth{
  clear: both;
}

/*ふわっと*/
.fuwatAnime {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.5s;
  -ms-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fuwatAnime;
  -ms-animation-name: fuwatAnime;
  animation-name: fuwatAnime;
  visibility: visible !important;
}

@-webkit-keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fuwatAnimeDisp{
  visibility: hidden;
}

/*---------- error page ------------*/
.error_page_text {
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  top: 400px;
  left:10%;
  position: absolute;
  width: 90%;
  z-index: 2;
  color: #555;
  text-shadow: 2px 2px 10px #999;
}
@media screen and (max-width: 640px) {
  .error_page_text {
    font-size: 20px;
  }
}

/*---------- simple header ------------*/
.inner {
    /*width: 980px;*/
		width:100%;
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}

/* header */
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 0 0;
		background-color: rgba(255,255,255,0.7);
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #333;
    text-decoration: none;
}
#top-head a:hover {
  text-decoration: none !important;
  color: #ECA326 !important;
}

#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
    margin: 0 2%;
}
#top-head .logo img{
    height: 50px;
		margin: 8px 0;
}
#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
		font-weight: bold;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
    padding: 0 1em;
}

/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    /*padding: 0 20px;*/
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
#sheader_space{
	height:70px;
}
@media screen and (max-width: 768px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
				background: rgba(255,255,255,.7);
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
    }
		#mobile-head .logo img{
			height: 40px;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
				background: rgba(0,0,0,.7);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
				padding: 0 0;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 13px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }

		#sheader_space{
			height:60px;
		}
}

/*---------- page top button ------------*/
/*パソコン・スマホ共通のCSS*/
#PageTopBtn {
position: fixed; /*ボタンの配置場所を固定*/
bottom: -10px; /*下からのボタンの配置場所を指定*/
right: 10px; /*右からのボタンの配置場所を指定*/
z-index: 20;
}
#PageTopBtn a {
display: block; /*配置の調整*/
text-decoration: none; /*文字の下線を消す*/
color: #fff; /*文字の色*/
background: #ECA326; /*ボタンの背景色*/
text-align: center; /*文字を中央に配置*/
border-radius: 50%; /*ボタンの角を少し丸くする*/
outline: none; /*クリックしたときの黒い枠を消す*/
}
#PageTopBtn a:hover {
text-decoration: none;
background: #F7DD43; /*マウスオーバー時の背景色
color: #fff !important; /*文字の色*/
}
#PageTopBtn {
font-size: 28px; /*文字のサイズ*/
}
#PageTopBtn a {
width: 50px; /*ボタンの幅*/
height: 50px; /*ボタンの高さ*/
}

/*---------- footer ------------*/
#footermargin {
	height: 50px;
	line-height: 50px;
}
#footerwrapper01 {
  margin-top: 2em;
  padding-top: 1em;
  overflow: auto;
	/*height: 60px;*/
	background-color: #393737;
}
#footerlogo {
	float: left;
	margin: 14px 0 0 2em;
}
#footerlogo img{
  max-height: 40px;
  max-width: 150px;
}
#footertitle{
  float: left;
  color: #FFF;
  font-size: 0.9em;
  margin: 25px 0 0 10px;
}
#footerinq {
  float: left;
  margin: 20px 0 0 3em;
  font-size: 13px;
  color: #fff;
}
#footerinq .coason_logo{
  height: 20px;
}
#footerinq .icon{
  margin-left: 20px;
}
#footerinq a{
  color:#fff;
}
#footerssl {
  float: left;
  margin: 14px 0 0 2em;
}
#footerssl #ssl_seal{
  float: left;
}
#footerssl #ssl_seal input[type=image]{
  width: 90px;
}
#footerssl #ssl_des{
  float: left;
  margin-left: 5px;
  font-size: 11px;
  color: #ddd;
  letter-spacing: -0.3px;
  line-height: 1.5em;
}

#footercopyright {
  text-align: right;
	font-size: 12px;
	color: #fff;
	margin: 5px 1em;
}

#footerwrapper01 .saiyo_mark{
  margin: 0 35px;
	text-align:left;
  color: #fff;
	font-size: 14px;
}
#footerwrapper01 .saiyo_mark img{
  width: 100px;
  margin: 0 5px -7px 5px;
  display: inline-block;
}

@media screen and (max-width: 640px) {
	#footerlogo {
		margin: 14px 0 0 1em;
	}
	#footerlogo img{
		height: 30px;
	}
  #footertitle{
    margin: 15px 0 0 10px;
  }
	#footercopyright {
		font-size: 11px;
	}
}
