@charset "UTF-8";
/* 
scss 基本設定ファイル
*/
/* ====================================================
フォントファミリー
==================================================== */
/* ゴシック体
------------------------------------------*/
/* 明朝体
------------------------------------------*/
/* ====================================================
メディアクエリ
==================================================== */
/* ====================================================
カラーコード
==================================================== */
/*
トップページ専用スタイル
*/
body {
  position: relative; }

#global-foot {
  margin-top: 0; }

/* ====================================================
ローディング
==================================================== */
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 9999;
  color: #74A261; }
  #loader-bg #loading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100%;
    font-weight: bold;
    font-size: 3.2em; }
    @media screen and (min-width: 481px) {
      #loader-bg #loading {
        font-size: 2.3em; } }
    @media screen and (min-width: 768px) {
      #loader-bg #loading {
        font-size: 3.2em; } }
    @media screen and (min-width: 1024px) {
      #loader-bg #loading {
        font-size: 4.6em; } }
    #loader-bg #loading span {
      display: inline-block;
      margin: 0 -.075em;
      animation: loading .7s infinite alternate; }
      #loader-bg #loading span:nth-child(2) {
        animation-delay: .1s; }
      #loader-bg #loading span:nth-child(3) {
        animation-delay: .2s; }
      #loader-bg #loading span:nth-child(4) {
        animation-delay: .3s; }
      #loader-bg #loading span:nth-child(5) {
        animation-delay: .4s; }
@keyframes loading {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0.8); } }
/* ====================================================
ホームトップ
==================================================== */
#home-top {
  padding-top: 3em;
  text-align: center; }
  @media screen and (min-width: 768px) {
    #home-top {
      padding-top: 3.8em; } }
  #home-top .top-img {
    width: 85%;
    margin: 0 auto; }

/* ====================================================
チャプター
==================================================== */
/* チャプター1
------------------------------------------*/
.chapter1 .message {
  line-height: 2.6;
  text-align: center;
  opacity: 0; }
.chapter1 .fadebox {
  opacity: 1; }
  .chapter1 .fadebox .fadein {
    opacity: 0;
    animation: fadein 6s ease forwards; }
@keyframes fadein {
  100% {
    opacity: 1; } }
  .chapter1 .fadebox .txt01 {
    animation-delay: 0s; }
  .chapter1 .fadebox .txt02 {
    animation-delay: 0.25s; }
  .chapter1 .fadebox .txt03 {
    animation-delay: 0.5s; }
  .chapter1 .fadebox .txt04 {
    animation-delay: 0.75s; }
  .chapter1 .fadebox .txt05 {
    animation-delay: 1s; }
  .chapter1 .fadebox .txt06 {
    animation-delay: 1.25s; }
  .chapter1 .fadebox .txt07 {
    animation-delay: 1.5s; }
  .chapter1 .fadebox .txt08 {
    animation-delay: 1.75s; }
  .chapter1 .fadebox .txt09 {
    animation-delay: 2s; }

/* チャプター4
------------------------------------------*/
@media screen and (min-width: 768px) {
  .chapter4 .timelinebox {
    display: flex;
    justify-content: space-between; } }
.chapter4 .timelinebox > li {
  width: 100%;
  max-width: 330px;
  margin: 0 auto 3em;
  text-align: center; }
  .chapter4 .timelinebox > li:last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 768px) {
    .chapter4 .timelinebox > li {
      text-align: left;
      margin: 0; }
      .chapter4 .timelinebox > li:first-child {
        width: 58%;
        max-width: none;
        flex: 1;
        padding-right: 12%; }
      .chapter4 .timelinebox > li:last-child {
        width: 30%; } }

/* コンタクトフォーム
------------------------------------------*/
#contact {
  padding-top: 4em;
  margin-top: -1.6em; }
  @media screen and (min-width: 768px) {
    #contact {
      padding-top: 3.2em; } }
  #contact .explain {
    padding-bottom: 3.4em;
    text-align: center; }
  #contact .require {
    color: #DE2726; }
