@charset "utf-8";
/* CSS Document */

/* リセット
----------------------------------------------------------*/

*, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
      margin: 0;
      padding: 0;
    }

html {
      font-size: 62.5%; /* 1emを10pxにする */
    }

body, div, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
	margin:0;
	padding:0;
}

body {
  color: #313131;
  font-size: 1.4rem;/* 14px */
  font-family:  "メイリオ", Meiryo, "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",'Avenir','Helvetica Neue','Helvetica','Arial', sans-serif;
    -webkit-text-size-adjust: 100% !important;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
      -o-text-size-adjust: 100%;
      text-size-adjust: 100%;
    line-height: 1;
}


article, header, footer, aside, figure, figcaption, nav, section { 
  display:block;
}

section {
    box-sizing: border-box;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
      font-weight: normal;
      font-size: 100%;
    }

ul, ol {
      list-style: none;    
    }

p {
    font-size: 100%;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

fieldset, img {
	border:0;
}

img{
	vertical-align:bottom;
	margin:0;
	padding:0;
    border: none;
}

caption, th {
	text-align:left;
}

sup, sub {
	font-size: 71%;
	line-height: 1;
}

sup {
	vertical-align:text-top;
}

sub {
	vertical-align:text-bottom;
}

.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

input, button, textarea, select, optgroup, option {
	font-family:inherit;
	font-size:inherit;
	font-style:inherit;
	font-weight:inherit;
}

input, button, textarea, select {
 *font-size:100%;
}


select, input, button, textarea{
	font-size: 99%;
}

a:link {
	color:#009;
}

a:visited {
	color:#006;
}

a:hover {
	color:#0FB2E4;
    text-decoration: underline;
}
 a:activ {
 color:#F00;
}

img {
  height: auto;
  max-width: 100%;
  transition: .7s;
}

a:hover img {
  opacity: 0.7;
}

/* ここまでリセット
----------------------------------------------------------*/


.wrapper {
    width: 100%;
}


/*トップに戻る
----------------------------------------------------------*/


p#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  background: #ccc;
  opacity: 0.6;
}

p#page-top a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  text-decoration: none;
    line-height: 45px;
}

p#page-top a::before {
    font-family: "Font Awesome 5 Free";
    content: "\f139";
    font-size: 30px;
    color: #fff;
    position: absolute;
        top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    text-align: center;
}

p#page-top:hover {
    opacity: 0.9;
} 
