@charset "UTF-8";

/* リセット */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ベース */
html {
  background:url(../img/common/web_bg.jpg)0 0 no-repeat;
  background-size:cover;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.6;
  background: transparent;
}

a img {
  width: 100%;
  height: auto;
  display: block;
}

/* ラッパー */
.l-section {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}
.l-section img {
  max-width: 100%;
  height: auto;
  display: block;
}
.l-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* ユーティリティ */
.u-mt20 { margin-top: 20px; }
.u-mb20 { margin-bottom: 20px; }
.u-text-center { text-align: center; }
