@charset "utf-8";
/*==========================================================================

   width settings

==========================================================================*/
body {
	min-width: 1020px; /* 幅狭時のスクロールで見切り調整 */
}
.container {
	width: 1020px;
	margin-right: auto;
	margin-left: auto;
}


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

   outline settings

==========================================================================*/
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, .8);
	z-index: 100;
}
#main {
    margin-top: 63px;
}
#footer {
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #3cb6bf;
}


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

   layout settings

==========================================================================*/
.row {
	display: table;
	width: 100%;
}
.col {
	display: table-cell;
	vertical-align: top;
}


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

   header

==========================================================================*/
.gnav-list {
	padding: 15px 0;
    text-align: center;
}
.gnav-item {
    display: inline-block;
}
.gnav-item + .gnav-item {
    margin-left: 15px;
}
.gnav-item a {
    position: relative;
    display: block;
    padding: 10px 10px 7px;
    color: #000;
    text-decoration: none;
}
.gnav-item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.gnav-item.on a::after {
  transform: scale(1, 1);
}


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

   footer

==========================================================================*/
.copyright {
    font-size: 14px;
    font-weight: bold;
    color: #3cb6bf;
}
.pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
}
