@charset "utf-8";
/* CSS Document */

/*共通*/
body {
  -webkit-text-size-adjust: 100%;
  letter-spacing: 1px;
}
.cp_cont {
  display: none;
}
.text-wrap {
  display: inline-block;
}
.container {
  max-width: 1024px;
  margin: auto;
  position: relative;
}
img {
    max-width: 100%;
    height: auto;
}
.pc_block {
  display: block;
}
.sp_block {
  display: none;
}
.center {
  text-align: center;
}
button:hover {
    cursor: pointer;
}
/* ==========================
アニメーション
============================= */
/* 通常のスクロールフェードイン機能を実装する際には、フェードインさせたい要素にクラス.fadeinを、
　　その親要素にクラス.fadein_outerを指定してください。 */
.fadein_outer {}
.fadein_outer .fadein {
  opacity: -1;
  transform: translate(0, 50px);
  transition: all 500ms;
}
/* 横からのフェードインにしたいときは親要素にクラス .left or .rifgt も一緒に使ってください。 */
.fadein_outer.left,
.fadein_outer.right {
  overflow: hidden;
}
.fadein_outer.left .fadein {
  opacity: 0.1;
  transform: translate(-200px, 0);
  transition: all 800ms;
}
.fadein_outer.right .fadein {
  opacity: 0.1;
  transform: translate(200px, 0);
  transition: all 800ms;
}
/* 画面内に入った状態 */
.fadein_outer .fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/* 同列要素などを時間差で表示させたい場合、上記記述に追記が必要です。
　　親要素にクラス.fadein_outerだけでなく、クラス.delayも入れてください。必要に応じて下記量産ください */
.fadein_outer.delay .fadein:nth-child(2) {
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
}
.fadein_outer.delay .fadein:nth-child(3) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
.fadein_outer.delay .fadein:nth-child(4) {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}
.fadein_outer.delay .fadein:nth-child(5) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
.fadein_outer.delay .fadein:nth-child(6) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
.fadein_outer.delay .fadein:nth-child(7) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
.fadein_outer.delay .fadein:nth-child(8) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}


/* ==========================
共通footer
============================= */

.fotter_contents {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 90px;
}
.contact_area {
    box-sizing: border-box;
    width: 50%;
    padding: 75px 0;
    font-size: 2.4rem;
    text-align: center;
    color: #fff;

}
.area_left {
    background: #5CBCEF;
}
.area_right {
    background:  #8ACEF3;
}
.footer_bottom {
    box-sizing: border-box;
    width: 370px;
    margin-top: 20px;
    padding: 15px 0;
    border: none;
    border-radius: 30px;
    background: #fff;
    margin: 20px auto 0;
}
.footer_bottom img {
    max-height: 114px;
}
.copyright {
    text-align: center;
    color: #707070;
    font-size: 1.2rem;
    padding: 10px;
}
/* ==========================
front_buttom 固定ボタン
============================= */
#btn_download {
    position: fixed;
    right: 2%;
    bottom: 3%;
    z-index: 99;
    max-width: 211px;
}
#btn_download a {
    display: inline-block;
}
#btn_download img {
    text-align: center;
    margin: auto;
}
#page_top {
    width: auto;
    height: auto;
    position: fixed;
    bottom: 2%;
    border-radius: 50%;
    right: 2%;
    z-index: 999999;
}
#back-top a {
    position: relative;
    display: block;
    width: 57px;
    height: 56px;
    margin: 0 auto 0;
}
#back-top a::before {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 40px;
  top: 3px;
  bottom: 0;
  right: 0;
  left: 0;
}
/* ========================================================= */
/* ============================
レスポンシブ対応
============================= */
@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
  header {
      width: 100%;
  }
  main {
  }
  /* ==========================
共通パーツ
============================= */
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
  .section {
    padding: 30px 5%;
  }
  
  

.fotter_contents {
    display: block;
}
.contact_area {
    box-sizing: border-box;
    width: 100%;
    padding: 50px 0;
    font-size: 2.0rem;
}
.footer_bottom {
    box-sizing: border-box;
    width: 87%;
    margin: 20px auto 0;
}
.footer_bottom img {
    display: block;
    width: auto;
    margin: auto;
}
.copyright {
    text-align: center;
    color: #707070;
    font-size: 1.0rem;
    padding: 10px 5px;
}
#btn_download {
    max-width: 100px;
}
  }
@media print {
  body {
    zoom: 90%;
    width: 1200px;
    margin: auto;
  }
  div#back-top,
  p.ft_cata,
  p.ft_movie {
    display: none;
  }
  .hd_menu {
    position: relative;
}
.mainvisual {
    margin: 0;
}
}
@page {
  size: A4;
  margin: 5mm 5mm;
}
