@charset "UTF-8";

/*====================================
       header
======================================*/


/*----- ヘッダーロゴ・ヘッダー全体のレイアウト -----*/

/* ヘッダーロゴ */
.h-logo{
  margin-right: auto;
}

.h-logo img{
  width: 100%;
  max-width: 180px;
}

.header {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0px;
  left: 0;
  z-index: 999;
  padding: 15px;
  transition: all 1s;
  background: #fff;
}

/* ヘッダーの幅 */
.h-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}


/*======================================*/
/*======================================*/

/* スマホ対応　レスポンシブ */

@media (max-width:767px){
	
.header {
	top: 0;
	padding: 15px 0px;
	 height: 150px;
	background: none;
	background-image: linear-gradient(180deg, #fff, transparent 70%);
}
	
.header .h-logo {
	max-width: 120px;
	line-height: 1;
}
}





/*----- お問い合わせボタン -----*/

.header .h-btn {
  background-image: var(--bg-gradient-darkBlue);
  font-size: 1.4rem;
  width: 173px;
  height: 50px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  color: #0066cc;
  line-height: 50px;
}

/* マウスがボタンの上に重なった時 */
.header .h-btn:hover {
  opacity: .5;
}

/* テキストと「>」の幅 */
.header .h-btn div{
  padding-right: 5px;
  color: #fff;
}

/*「>」生成 */
.header .h-btn span {
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
  	transform: rotate(45deg);
}


/*======================================*/
/*======================================*/

/* スマホ対応　レスポンシブ */

@media (max-width:767px){
	
.header .h-btn {
	font-size: 1rem;
	width: 140px;
	height: 38px;
	line-height: 38px;
	margin-left: 10px;
}
}

@media (max-width: 340px){
  .header .h-btn {
    font-size: .5rem;
	line-height: 18px;
  }
}


