@charset "utf-8";
/*----------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td ,figure{
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

a, a:link {
  text-decoration: none;
  transition: .3s;
  -webkit-transition: .3s;
}

a:visited, a:hover, a:active {
  color: inherit;
}

* {
  box-sizing: border-box;
}
/*------------------------------------------------------------
共通
------------------------------------------------------------*/
body {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: #FFF;
  font-feature-settings: palt;
  font-smoothing: antialiased;
  letter-spacing: 0.03em;
font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic', YuGothic,"Noto Sans JP", 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', meiryo, "ＭＳ Ｐゴシック", Verdana, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.wrapper{
	height: 100%;
}

/*------------------------------------------------------------
PCメニュー
------------------------------------------------------------*/
header{
	position: fixed;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 88px;
}
.logoArea{
	margin: 20px 0 0 3vw;
    position: absolute;
	max-width: 300px;
	z-index: 1111;
}
.logoArea p{
color: #fff;
	font-size: 1rem;
}
h1{
	font-size: 1.6rem;
	color: #fff;
	font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic', YuGothic,"Noto Sans JP", 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', meiryo, "ＭＳ Ｐゴシック", Verdana, sans-serif;
	margin-top: 5px;
}
.gmenu ul {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 10;
  right: 3.5em; 
  margin-top: 36px;
}

.gmenu ul li a {
  font-size: 1.6rem;
  color: #222;
  transition:  all ease .5s;
  -webkit-transition:  all ease .5s;
  -moz-transition:  all ease .5s;
	margin-right:1em;
}
.gmenu ul li a:hover{
  opacity: .5;
  transition:  all ease .5s;
  -webkit-transition:  all ease .5s;
  -moz-transition:  all ease .5s;
}
/*----------------------------------------------------------------------
共通
----------------------------------------------------------------------*/

footer{
	color: #222;
	padding: 60px 5%;
}

footer .C_name{
	margin-bottom: 10px;
}
footer .C_name img{
	width: 100%;
	max-width: 200px;
	height: auto;
}
footer .C_name02{
}
footer .C_name04{
	margin-bottom: 5px;
}
footer .mail{
}
footer .copy{
	text-align: right;
	color: #505050
}

@media (min-width: 767.98px) and (max-width: 1023.99px) {
	header{
	position: fixed;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 0;
}
	
  .gmenu ul li a {
    font-weight: 700;
    font-size: 1.4vw;
  }
}
@media all and (min-width: 767.99px) {
	header{
	position: fixed;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 0;
	z-index: 9999999999;
}
  .pc {
    display: block!important;
  }
  .sp {
    display: none !important;
  }
  .pcMenu {
    display: block!important;
  }
  .spMenu {
    display: none !important;
  }
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
@media all and (max-width: 1023px) {
		header{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 0;
			z-index: 9999999999;
}
  body {
    min-width: inherit;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block!important;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
  .menu {
    height: 20px;
    position: fixed;
    right: 5%;
    top: 26px;
    width: 30px;
    z-index: 99;
    cursor: pointer;
  }
  /*スマホ時のメニューバー*/
  .pcMenu {
    display: none!important;
  }
  .spMenu {
    display: block !important;
  }
  .menu__line {
    background: #066190;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
  }
  .menu__line--center {
    top: 9px;
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 8px;
    transform: rotate(45deg);
    background: #fff;
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 10px;
    transform: rotate(135deg);
    background: #fff;
  }
  /*gnav*/
  .gnav {
    background: #066190;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
    overflow-y: scroll;
	      top: 0;
  }
  .gnav__wrap {
    height: 100%;
    width: 100%;
    display: flex;
    position: relative;
  }
  .gnav__menu {
    position: absolute;
    top: 100px;
    display: block;
    width: 100%;
    padding: 10px;
  }
  .gnav__menu__item {
    padding: 0 15px;
  }
  .gnav__menu__item a {
    color: #fff;
    text-decoration: none;
    transition: .5s;
    display: block;
    padding: 20px 0;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.13em;
    position: relative;
  }
	
.logoArea {
	display: inline-block;
  }
}


@media all and (max-width: 767px) {
footer{
	color: #222;
	padding: 30px 2%;
}
footer .C_name{

}
footer .C_name img{

}
footer .C_name04{
	margin-bottom: 5px;
}
footer .copy{
	text-align:center;
	color: #505050;
	margin-top: 33px;
}
}