@charset "UTF-8";

/* CSS Document */

.img100 {
  width: 100%;
}

.display_none {
  display: none;
}

.red {
  color: #d70917;
}

.gray {
  color: #626A84;
}

.white {
  color: #ffffff;
  border: #ffffff;
}

.disable {
  color: #dddddd;
}

.center {
  text-align: center;
}

a {
  transition: .3s;
  color: #3757ab;
  text-decoration: none;
  padding-bottom: 1%;
  cursor: pointer;
}

a:hover {
  transition: .3s;
  color: #a729ad;
  text-decoration: none;
  padding-bottom: 1%;
}

.lh1 {
  line-height: 1em;
}


/*googlemap*/

.ggmap {
  position: relative;
  margin: 5% 0 5% 0;
  padding-bottom: 56.25%;
  padding-top: 40px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ----------------------fade------------------------- */


/* fadeUp */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
  opacity: 0;
}


/*========= LoadingのためのCSS ===============*/


/* Loading背景画面設定　*/

#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #FED429;
  text-align: center;
  color: #fff;
}


/* Loading画像中央配置　*/

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* Loading アイコンの大きさ設定　*/

#splash_logo img {
  width: 260px;
}

@media screen and (min-width:961px) {
  /* ------------------------------------


font


------------------------------------ */
  .font_xxxxl {
    font-size: 120px;
  }
  .font_xxxl {
    font-size: 80px;
  }
  .font_xxl {
    font-size: 40px;
  }
  .font_xl {
    font-size: 32px;
  }
  .font_l {
    font-size: 24px;
  }
  .font_m {
    font-size: 16px;
  }
  .font_s {
    font-size: 14px;
  }
  .font_xs {
    font-size: 12px;
  }
  .font_xxs {
    font-size: 10px;
  }
  .bold {
    font-weight: bold;
  }
  /* ------------------------------------


margin


------------------------------------ */
  .margin_t_xxl {
    margin-top: 80px;
  }
  .margin_t_xl {
    margin-top: 40px;
  }
  .margin_t_l {
    margin-top: 24px;
  }
  .margin_t_m {
    margin-top: 16px;
  }
  .margin_t_s {
    margin-top: 8px;
  }
  .margin_b_xxl {
    margin-bottom: 80px;
  }
  .margin_b_xl {
    margin-bottom: 40px;
  }
  .margin_b_l {
    margin-bottom: 24px;
  }
  .margin_b_m {
    margin-bottom: 16px;
  }
  .margin_b_s {
    margin-bottom: 8px;
  }
  .margin_tb_xxl {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .margin_tb_xl {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .margin_tb_l {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .margin_tb_m {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .margin_tb_s {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

@media screen and (max-width:960px) {
  /* ------------------------------------


font


------------------------------------ */
  .font_xxxl {
    font-size: 56px;
  }
  .font_xxl {
    font-size: 56px;
  }
  .font_xl {
    font-size: 16px;
  }
  .font_l {
    font-size: 18px;
  }
  .font_m {
    font-size: 16px;
  }
  .font_s {
    font-size: 14px;
  }
  .font_xs {
    font-size: 12px;
  }
  .font_xxs {
    font-size: 10px;
  }
  .bold {
    font-weight: bold;
  }
  /* ------------------------------------


margin


------------------------------------ */
  .margin_t_xxl {
    margin-top: 24px;
  }
  .margin_t_xl {
    margin-top: 40px;
  }
  .margin_t_l {
    margin-top: 24px;
  }
  .margin_t_m {
    margin-top: 16px;
  }
  .margin_t_s {
    margin-top: 8px;
  }
  .margin_b_xxl {
    margin-bottom: 80px;
  }
  .margin_b_xl {
    margin-bottom: 24px;
  }
  .margin_b_l {
    margin-bottom: 20px;
  }
  .margin_b_m {
    margin-bottom: 16px;
  }
  .margin_b_s {
    margin-bottom: 8px;
  }
  .margin_tb_xxl {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .margin_tb_xl {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .margin_tb_l {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .margin_tb_m {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .margin_tb_s {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}