@charset "UTF-8";

/* CSS Document */

html {
  font-size: 62.5%;
  overflow: auto;
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

body {
  font-size: 140%;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}


/* ---------------------------------------- */


/*container*/


/* ---------------------------------------- */

html, body {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.4;
  word-wrap: break-word;
}

#container {
  overflow-x: hidden;
  width: 100%;
  height: auto;
}

.inner {
  width: 90%;
  margin: 0 auto;
}

#container img {
  width: 100%;
  height: auto;
}

.main_container{
	margin: 60px 0 0 0;
}
/* ------------------------------------------------------------------ */


/* header */


/* ------------------------------------------------------------------ */


/*----------------------------------------- 
共通パーツ
----------------------------------------- */

header {
  height: 65px;
	position: relative;
	border-bottom: 2px #8A8A8A double;
}

.top_nav {
  position: relative;
}

.header_logo {
  position: absolute;
  top: 20px;
  left: 5%;
}


/*menu*/

.menu {
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  z-index: 99;
}

.menu__line {
  background: #000;
  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: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
}

.gnav__wrap {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.gnav__menu__item {
  margin: 40px 0;
}

.gnav__menu__item a {
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  padding: 40px;
  text-decoration: none;
  transition: .5s;
}

.gnav__menu__item a:hover {
  color: #666;
}


/* ------------------------------------------------------------------ */


/* footer */


/* ------------------------------------------------------------------ */

footer {
  width: 100%;
}