@charset "UTF-8";
/* ====================================================
*  ベース・レイアウトのスタイル
* ================================================== */
/*----- reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*----- base */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  color: #222222;
  font-size: 1.5rem;
  font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2.475rem;
  background-color: #eeeeee;
  overflow: hidden;
  position: relative;
  -webkit-text-size-adjust: none;
}

a {
  color: #222222;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

a, button, input[type=button], input[type=reset], input[type=submit] {
  touch-action: manipulation;
  transition: border .15s linear, color .15s linear, background-color .15s linear;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

.wrap {
  width: 100%;
  position: relative;
  min-height: 100%;
}

.inner {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1060px) {
  .inner {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

/*
*  footer
* ----------------------------------------*/
#footer-global {
  text-align: center;
  height: 30px;
  line-height: 30px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #000;
}

/* ====================================================
*  汎用的に使用できるスタイル
* ================================================== */
/*
*  helper
* ----------------------------------------*/
/*----- clearfix */
.clear {
  overflow: hidden;
  *zoom: 1;
}

/*----- インライン要素化、ブロック要素化 */
.ib {
  display: inline-block !important;
}

.db {
  display: block !important;
}

/*----- ブロック要素の位置 */
.f-l {
  float: left !important;
}

.f-r {
  float: right !important;
}

/*----- 文字位置：横 */
.t-c {
  text-align: center !important;
}

.t-r {
  text-align: right !important;
}

.t-l {
  text-align: left !important;
}

/*----- 文字位置：縦 */
.va-t {
  vertical-align: top !important;
}

.va-m {
  vertical-align: middle !important;
}

.va-b {
  vertical-align: bottom !important;
}

/*----- 文字の太さ */
.fw-n {
  font-weight: normal !important;
}

.fw-b {
  font-weight: bold !important;
}

/*----- コンテンツの中心に配置 */
.t-center {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*----- リスト */
.ol {
  list-style: decimal;
  padding-left: 20px;
}
.ol li + li {
  padding-top: 20px;
}

.ul {
  overflow: hidden;
  *zoom: 1;
}
.ul li {
  float: left;
}

/*----- リンク */
.a-arrow-n:before {
  font-family: 'fontello';
  content: '\F105';
  font-size: 110%;
  padding-right: 4px;
}

.a-arrow-b:before {
  font-family: 'fontello';
  content: '\E801';
  font-size: 110%;
}

/*----- 画像 */
.img-full {
  width: 100% !important;
}

/*----- 背景色 */
.bg-white {
  background-color: #fff !important;
}

/*----- ボーダー 1px solid */
.br-gray {
  border: 1px solid #d0d0d0 !important;
}

.br-gray-t {
  border-top: 1px solid #d0d0d0 !important;
}

.br-gray-r {
  border-right: 1px solid #d0d0d0 !important;
}

.br-gray-b {
  border-bottom: 1px solid #d0d0d0 !important;
}

.br-gray-l {
  border-left: 1px solid #d0d0d0 !important;
}

/* ====================================================
*  ページの要素
* ================================================== */
/*
*  page
* ----------------------------------------*/
/*----- 一つ目のブロック */
.first {
  width: 100vw;
  height: 100vh;
  background: url(../img/first.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
.first h1 {
  position: absolute;
  top: 10px;
  left: 10px;
}
.first h1 img {
  width: auto;
  height: 54px;
}
.first .first-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 720px;
  height: 170px;
  text-align: center;
}
.first .first-wrap p {
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
.first .first-wrap p.big-text {
  font-size: 4.2rem;
  margin-bottom: 5px;
}
.first .first-wrap p.box-text {
  font-size: 2.8rem;
  border: 2px solid #fff;
  padding: 12px 24px;
  margin-top: 30px;
  display: inline-block;
}
.first .first-wrap > img {
  width: auto;
  height: 45px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .first h1 img {
    height: 36px;
  }
  .first .first-wrap {
    width: 100%;
    height: 180px;
  }
  .first .first-wrap p.big-text {
    font-size: 3.5rem;
    margin-bottom: 0;
  }
  .first .first-wrap p.box-text {
    font-size: 2.0rem;
    padding: 10px 16px;
    margin-top: 10px;
  }
  .first .first-wrap > img {
    height: 40px;
  }
}

/*----- 二つ目のブロック */
.second {
  position: relative;
  padding: 100px 0;
  text-align: center;
}
.second .inner {
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 80px;
  padding-bottom: 80px;
}
.second p + p {
  margin-top: 30px;
}
.second .big-text {
  width: auto;
  height: 55px;
}
.second .small-text {
  width: auto;
  height: 140px;
}
@media screen and (max-width: 1060px) {
  .second .small-text {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .second {
    padding: 60px 0;
  }
  .second .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .second .big-text, .second .small-text {
    width: 100%;
    height: auto;
  }
}

/* 背景画像 */
.second-bg {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
}
.second-bg ul {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}
.second-bg li {
  display: table-cell;
}
.second-bg li:nth-child(1) {
  background: url(../img/second-bg-L.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.second-bg li:nth-child(2) {
  background: url(../img/second-bg-C.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.second-bg li:nth-child(3) {
  background: url(../img/second-bg-R.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*----- 三つ目のブロック */
.third {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
}
.third .row {
  overflow: hidden;
  *zoom: 1;
  margin: 0 -30px;
}
.third .col-6 {
  width: 50%;
  float: left;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 60px;
  overflow: hidden;
  *zoom: 1;
}
.third .col-6 h3 {
  color: #fff;
  font-size: 1.7rem;
  padding: 5px 10px;
  margin-bottom: 15px;
}
.third .col-6:nth-child(1) h3 {
  background-color: #fa6d32;
}
.third .col-6:nth-child(2) h3 {
  background-color: #5bb7f4;
}
.third .col-6:nth-child(3) h3 {
  background-color: #99d50d;
}
.third .col-6:nth-child(4) h3 {
  background-color: #ffbf2c;
}
.third .col-6:nth-child(5) h3 {
  background-color: #7670f5;
}
.third .col-6:nth-child(6) h3 {
  background-color: #000000;
}
.third .col-6 .logo {
  display: block;
  margin-bottom: 15px;
  width: auto;
  height: 50px;
}
.third .col-6 p {
  font-weight: bold;
  line-height: 1.7;
}
.third .col-6 p > img {
  float: right;
  width: 200px;
  margin: 4px 0 10px 10px;
}
.third .col-6 p + a {
  margin-top: 20px;
}
@media screen and (max-width: 1060px) {
  .third .row {
    margin: 0 -20px;
  }
  .third .col-6 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .third .col-6 .logo {
    width: 90%;
    height: auto;
  }
  .third .col-6 p {
    overflow: hidden;
    *zoom: 1;
  }
  .third .col-6 p > img {
    width: 45%;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 768px) {
  .third {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .third .col-6 {
    width: 100%;
    float: inherit;
    margin-bottom: 30px;
  }
  .third .col-6 h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .third .col-6 p {
    font-size: 1.4rem;
  }
  .third .col-6 p + a {
    margin-top: 10px;
  }
}

/*----- button */
.btn {
  font-weight: bold;
  font-size: 1.7rem;
  border: 2px solid transparent;
  display: inline-block;
  line-height: 1;
  padding: 8px 12px;
}
.btn + .btn {
  margin-left: 6px;
}
@media screen and (max-width: 1060px) {
  .btn {
    display: block;
    padding: 15px 12px;
  }
  .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* サイズ大きめ */
.btn-big {
  font-size: 3.0rem;
  padding: 30px 100px;
  border: 5px solid transparent;
  line-height: 1.3;
}
@media screen and (max-width: 1060px) {
  .btn-big > span {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .btn-big {
    font-size: 2.0rem;
    padding: 20px;
  }
}

/* 矢印付き */
.btn-arrow:before {
  font-family: 'fontello';
  content: '\F006';
  padding-right: 6px;
}

/* 黒ボタン */
.btn-black {
  color: #fff;
  border-color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}

/* 白ボタン */
.btn-white {
  border-color: #000;
  background-color: #fff;
}
.btn-white:hover {
  color: #fff;
  background-color: #000;
}
