@charset "UTF-8";
/* //////////////////////////////////////////////////

　サイト全般のスタイル

////////////////////////////////////////////////// */
/*
  変数
-------------------------------------------------- */
/*
  mixin
-------------------------------------------------- */
/*
  FONT
-------------------------------------------------- */
body {
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック","Yu Gothic","游ゴシック体","YuGothic",sans-serif;
  font-size: 16px;
  font-weight: bold; }

p, li {
  line-height: 2; }

dt, dd, th, td, address {
  line-height: 1.6; }

a {
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

i, em {
  font-style: normal; }

input, textarea, select {
  font-size: 16px; }

.itaric {
  font-style: italic; }

@media screen and (max-width: 768px) {
  body {
    font-size: 85%; } }
/*
  LAYOUT
-------------------------------------------------- */
@media screen and (max-width: 768px) {
  #wrapper {
    overflow: hidden; } }

.container {
  margin: auto;
  width: 1040px;
  padding-left: 20px;
  padding-right: 20px; }
  @media screen and (max-width: 768px) {
    .container {
      width: auto; } }

/*
  HEADER
-------------------------------------------------- */
#header {
  background: #28b4fa; }
  #header .logo {
    float: left;
    padding-top: 20px; }
  #header .entry {
    float: right;
    background: #fa2b28;
    border-radius: 0 0 8px 8px;
    padding: 20px 40px; }
  @media screen and (max-width: 768px) {
    #header {
      margin-bottom: 10px; }
      #header .logo {
        padding-top: 10px;
        margin-left: -10px;
        width: 110px; }
      #header .entry {
        margin-right: -10px;
        padding: 15px 30px; } }

/*
  FOOTER
-------------------------------------------------- */
#footer .logo {
  padding: 120px 0; }
  #footer .logo li {
    margin: 35px 25px 0; }
#footer .info {
  padding: 60px 0;
  background: #164a95;
  font-size: 0.84em; }
  #footer .info h1 {
    margin-bottom: 0.6em; }
@media screen and (max-width: 768px) {
  #footer .logo {
    padding: 50px 0; }
    #footer .logo li {
      margin: 15px 10px 0; }
  #footer .info {
    padding: 25px 0; } }

#pagetop {
  position: fixed;
  z-index: 10;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  transition: all .4s; }
  #pagetop.active {
    opacity: 1; }
  @media screen and (max-width: 768px) {
    #pagetop {
      bottom: 40px;
      right: 10px; } }

/*
  MODULE
-------------------------------------------------- */
/* BUTTON */
.btn {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  transition: all .2s;
  backface-visibility: hidden; }
  .btn:hover {
    opacity: .7;
    text-decoration: none; }
    .btn:hover img {
      opacity: 1; }

/* inview */
.inview {
  opacity: 0;
  visibility: hidden; }
  .inview.view {
    visibility: visible;
    animation-name: bounce;
    animation-duration: 450ms;
    animation-timing-function: linear;
    animation-fill-mode: forwards; }
  @media screen and (max-width: 768px) {
    .inview {
      opacity: 1; } }

@keyframes bounce {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0); }
  50% {
    opacity: 0.9;
    transform: scale(1.1); }
  80% {
    opacity: 1;
    transform: scale(0.89); }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0); } }
