@charset "utf-8";
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}ins{background-color:#ff9;color:#000;text-decoration:none;}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}del{text-decoration:line-through;}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}table{border-collapse:collapse;border-spacing:0;}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0;}input,select{vertical-align:middle;}
img{vertical-align:bottom;}
ol,ul {list-style:none;}

/*----------------------------
  Fonts
----------------------------*/

html,body{
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 2;
  font-weight: 500;
  color: #000;
  background: #FFF;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
  word-wrap: break-word;
   -webkit-tap-highlight-color:rgba(0,0,0,0);
}
p {
 /*word-break: break-all;*/
}

i{
  margin-right: 6px;
}
.pc_only{
  display: block;
}
.sp_only{
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_only{
    display: none;
  }
  .sp_only{
    display: block;
  }
}
img{
  width: 100%;
  height: auto;
}

/*----------------------------------------------------
 絵文字
--------------------------------------------------- */
img.emoji {
  height: 1em;
  width: 1em;
  margin: 0 .05em 0 .1em;
  vertical-align: -0.1em;
}
/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link,
a:visited,
a:active{
    color: #FFF;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
a:hover{
    text-decoration: none;
}

/*----------------------------------------------------
 slick
--------------------------------------------------- */
:focus {
  outline: none;
}
.slick-slider{position: relative;display: block;box-sizing: border-box;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;-webkit-touch-callout: none;-khtml-user-select: none;-ms-touch-action: pan-y;touch-action: pan-y;-webkit-tap-highlight-color: transparent;}
.slick-list{position: relative;display: block;overflow: hidden;margin: 0;padding: 0;}
.slick-list:focus{outline: none;}
.slick-list.dragging{cursor: pointer;cursor: hand;}
.slick-slider .slick-track,
.slick-slider .slick-list{-webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0);-o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
.slick-track{position: relative;top: 0;left: 0;display: block;}
.slick-track:before,
.slick-track:after{display: table;content: '';}
.slick-track:after{clear: both;}
.slick-loading .slick-track{visibility: hidden;}
.slick-slide{display: none;float: left;height: 100%;min-height: 1px;}
[dir='rtl'] .slick-slide{float: right;}
.slick-slide img{display: block;}
.slick-slide.slick-loading img{display: none;}
.slick-slide.dragging img{pointer-events: none;}
.slick-initialized .slick-slide{display: block;}
.slick-loading .slick-slide{visibility: hidden;}
.slick-vertical .slick-slide{display: block;height: auto;border: 1px solid transparent;}
.slick-arrow.slick-hidden {display: none;}

.slick-prev{
  display: block;
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -7px;
  background: url(../img/common/prev.png) no-repeat;
  width: 59px;
  height: 15px;
  z-index: 10;
  border:none;
  text-indent: -9999px;
  cursor: pointer;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
         -o-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.slick-prev:hover{
  opacity: 0.5;
  -webkit-transform: scale3d(1,1,1) translate(-10px,0px) rotate(0deg);
     -moz-transform: scale3d(1,1,1) translate(-10px,0px) rotate(0deg);
      -ms-transform: scale3d(1,1,1) translate(-10px,0px) rotate(0deg);
       -o-transform: scale3d(1,1,1) translate(-10px,0px) rotate(0deg);
          transform: scale3d(1,1,1) translate(-10px,0px) rotate(0deg);
}
.slick-next{
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -7px;
  background: url(../img/common/next.png) no-repeat;
  width: 59px;
  height: 15px;
  z-index: 10;
  border:none;
  text-indent: -9999px;
  cursor: pointer;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
         -o-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.slick-next:hover{
  opacity: 0.5;
  -webkit-transform: scale3d(1,1,1) translate(10px,0px) rotate(0deg);
     -moz-transform: scale3d(1,1,1) translate(10px,0px) rotate(0deg);
      -ms-transform: scale3d(1,1,1) translate(10px,0px) rotate(0deg);
       -o-transform: scale3d(1,1,1) translate(10px,0px) rotate(0deg);
          transform: scale3d(1,1,1) translate(10px,0px) rotate(0deg);
}
.slide .slick-disabled{
  opacity: 0.2;
}
@media only screen and (max-width: 768px) {}
  .slide .slick-prev:hover{
    opacity: 1;
  }
  .slide .slick-next:hover{
    opacity: 1;
  }
  .slick-prev{

    top: 50%;
    left: 15px;
    margin-top: -15px;
    background: url(../img/common/prev.png) no-repeat;
    background-size: 30px auto;
    width: 30px;
    height: 30px;
    z-index: 10;
  }
  .slick-next{

    top: 50%;
    right: 15px;
    margin-top: -15px;
    background: url(../img/common/next.png) no-repeat;
    background-size: 30px auto;
    width: 30px;
    height: 30px;
    z-index: 10;
  }


@media only screen and (min-width: 769px) {
  #loading,
  #wrapper{
    /* display: none; */
  }
  #pc{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-size: 14px;
    line-height: 1.8;
  }
  #pc .inner{
    position: absolute;
    top: 50%;
    left:0;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(0%,-50%);
            transform: translate(0%,-50%);
  }
  #pc .inner .qr{
    width: 165px;
    margin: 0 auto;
  }

  #pc .inner .title{
    width: 500px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  #pc .inner  .btn_back{
    margin-top: 20px;
  }
  #pc .inner  .btn_back a{
    display: block;
    line-height: 45px;
    width: 300px;
    margin: 0 auto;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #FFF;
    margin: 0 auto;
    background: #464646;
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
  }
  #pc .inner  .btn_back a:after{
    content: '';
    position: absolute;
    top: 50%;
    right: 11px;
    background: url(../img/arrow.png) no-repeat;
    width: 24px;
    height: 6px;
    background-size: contain;
    margin-top: -3px;
  }
}

@media only screen and (max-width: 768px) {
  #pc{
    display: none;
  }
}

/*----------------------------------------------------
 loading
--------------------------------------------------- */
#loading{
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 12100;
  background: #FFF;
}
#loading:before{
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px ;
}
#loading.out{
  opacity: 0;
    -webkit-transition: all 0.6s 0.2s linear;
       -moz-transition: all 0.6s 0.2s linear;
        -ms-transition: all 0.6s 0.2s linear;
         -o-transition: all 0.6s 0.2s linear;
            transition: all 0.6s 0.2s linear;
}
#loading.out:before{
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
         -o-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
  -webkit-transform: scale(0,0) translate(-0%,0%);
     -moz-transform: scale(0,0) translate(-0%,0%);
      -ms-transform: scale(0,0) translate(-0%,0%);
       -o-transform: scale(0,0) translate(-0%,0%);
          transform: scale(0,0) translate(-0%,0%);
}
.loader{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0,0) translate(-0%,0px);
          transform: scale(0,0) translate(-0%,0px);
}
body.loadStart .loader{
    -webkit-transition: all 0.4s 0s ease-out;
       -moz-transition: all 0.4s 0s ease-out;
        -ms-transition: all 0.4s 0s ease-out;
         -o-transition: all 0.4s 0s ease-out;
            transition: all 0.4s 0s ease-out;
  -webkit-transform: scale(1,1) translate(-0%,0px);
          transform: scale(1,1) translate(-0%,0px);
}
body.pageLoad .loader{
    -webkit-transition: all 0.4s 0s ease-in;
       -moz-transition: all 0.4s 0s ease-in;
        -ms-transition: all 0.4s 0s ease-in;
         -o-transition: all 0.4s 0s ease-in;
            transition: all 0.4s 0s ease-in;
  -webkit-transform: scale(0,0) translate(-0%,0px);
          transform: scale(0,0) translate(-0%,0px);
}
.FormatLoader,
.FormatLoader:after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
}
.FormatLoader {
  margin: 0 auto;
  margin-top: -20px;
  position: relative;
  text-indent: -9999em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*----------------------------------------------------
  .block-top
--------------------------------------------------- */
.block-top{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  background: url(../img/top_bg.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  /*display: none;*/
    -webkit-transition: all 0.5s 0s linear;
       -moz-transition: all 0.5s 0s linear;
        -ms-transition: all 0.5s 0s linear;
         -o-transition: all 0.5s 0s linear;
            transition: all 0.5s 0s linear;
}
body.timelineStart .block-top{
  opacity: 0;
  visibility: hidden;
}

.block-top .inner{
/*  position: absolute;
  top: 50%;
  left:0;
  width: 100%;
  -webkit-transform: translate(0%,-50%);
          transform: translate(0%,-50%);*/
          padding: 38px 0;
          text-align: center;
}
.block-top .inner .lead{
  font-size: 11px;
  line-height: 16px;
  margin-bottom: 18px;
}
.block-top .inner .title{
  margin-bottom: 45px;
}
.block-top .inner p{
  font-size: 11px;
  line-height: 19px;
  width: 68.8vw;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 45px;
}
.block-top .inner .t{
  font-size: 11px;
  line-height: 19px;
  margin-bottom: 18px;
}
.block-top .inner .btn{
  overflow: hidden;
  letter-spacing: -0.4em;
}
.block-top .inner .btn li{
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  width: 43.2vw;
  margin: 0 2vw;
}
.block-top .inner .btn_back{
  margin-top: 20px;
}
.block-top .inner .btn_back a{
  display: block;
  line-height: 45px;
  width: 60%;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #FFF;
  margin: 0 auto;
  background: #464646;
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
.block-top .inner .btn_back a:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 11px;
  background: url(../img/arrow.png) no-repeat;
  width: 24px;
  height: 6px;
  background-size: contain;
  margin-top: -3px;
}
/*----------------------------------------------------
  #wrapper
--------------------------------------------------- */
#wrapper{
  overflow: hidden;
  position: relative;
  width: 100%;
}

.block_attention{
  position: fixed;
  top: 50%;
  left: 10%;
  right: 10%;
  width: 80%;
  max-width: 768px;
  background: #FFF;
  z-index: 100;
  text-align: center;
  transform: translate(-0%,-50%);
  padding: 20px 0;
  border-radius: 20px;
  margin: 0 auto;
}
.block_attention.out{
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 0s linear;
}

/*----------------------------------------------------
  .block-timeline
--------------------------------------------------- */
.block-timeline{
  position: relative;
  z-index: 1;
  /* display: none; */
}
/*.block-timeline .wareru{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
.block-timeline .wareru span{
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background:url(../img/wareru.png) no-repeat center center;
  background-size: cover;
  opacity: 0;
}
body.last_view .block-timeline .wareru span{
  -webkit-animation: wareru_loop 2.8s -0s 1 ease ;
  animation: wareru_loop 2.8s -0s 1 ease ;

}*/
@-webkit-keyframes wareru_loop {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  5% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  16% {
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes wareru_loop {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  5% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  16% {
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/*body.last_view .block-timeline .wareru{
  opacity: 1;
  visibility: visible;
    -webkit-transition: all 1s 0s ease;
       -moz-transition: all 1s 0s ease;
        -ms-transition: all 1s 0s ease;
         -o-transition: all 1s 0s ease;
            transition: all 1s 0s ease;
}*/
.block-timeline:after{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #FFF;
  opacity: 0;
  visibility: hidden;
}
body.last_view .block-timeline:after{
  opacity: 1;
  visibility: visible;
    -webkit-transition: all 1s 0s linear;
       -moz-transition: all 1s 0s linear;
        -ms-transition: all 1s 0s linear;
         -o-transition: all 1s 0s linear;
            transition: all 1s 0s linear;
}
.block-timeline .bg{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../img/top_bg.jpg) no-repeat center bottom;
  background-size: cover;
}
#timeline02.block-timeline .bg{
  background: url(../img/timeline_bg02.jpg) no-repeat center bottom;
  background-size: cover;
}
body.timelineStart .block-timeline .bg{
  opacity: 1;
    -webkit-transition: all 0.8s 0s ease;
            transition: all 0.8s 0s ease;
}
.block-timeline .tap{
  position: fixed;
  bottom: 40px;
  left: 50%;
  width: 160px;
  z-index: 9;
  margin-left: -80px;
  opacity: 0;
  -webkit-transform: translate(0%,20px);
          transform: translate(0%,20px);
}
body.timelineStart .block-timeline .tap{
  opacity: 1;
  -webkit-transform: translate(0%,-0%);
          transform: translate(0%,-0%);
    -webkit-transition: all 0.8s 1.5s ease;
            transition: all 0.8s 1.5s ease;

}
body.timelineStart .block-timeline .tap.out{
  opacity: 0;
    -webkit-transition: all 0.8s 0s ease;
            transition: all 0.8s 0s ease;
}
.block-timeline .taparea{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.block-timeline .header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 50px;
  background: rgba(255,255,255,0.85);
  -webkit-transform: translate(0%,-101%);
          transform: translate(0%,-101%);
}
body.timelineStart .block-timeline .header{
  -webkit-transform: translate(0%,-0%);
          transform: translate(0%,-0%);
    -webkit-transition: all 0.8s 0s ease;
            transition: all 0.8s 0s ease;
}
.block-timeline .header img{
  width: 140px;
  margin: 17px 0 0 20px;
}

.block-timeline .header a.sound{
  width: 100px;
  height: 32px;
  display: block;
  position: absolute;
  top: 8px;
  right: 10px;
  background: url(../img/sound_on.png) no-repeat right center;
  background-size: contain;
}
.block-timeline .header a.sound span{
  line-height: 32px;
  padding-right: 0px;
  font-size: 12px;
  color: #000;
}
body.sound_on .block-timeline .header a.sound{
  background: url(../img/sound_off.png) no-repeat right center;
  background-size: contain;
}

.block-timeline .inner{
  position: relative;
  z-index: 1;
  padding: 0 20px;
  padding-bottom: 200px;
  padding-top: 70px;
  max-width: 768px;
  margin: 0 auto;
}
.block-timeline .inner .talk_column{
  margin-bottom: 15px;
  display: none;
  opacity: 0;
  -webkit-transform: translate(0%,10px);
          transform: translate(0%,10px);
}
.block-timeline .inner .talk_column.view{
  opacity: 1;
  -webkit-transform: translate(0%,0px);
          transform: translate(0%,0px);
    -webkit-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block-timeline .inner .talk_column header{

}
.block-timeline .inner .talk_column header i.s{
  display: inline-block;
  vertical-align: top;
  width: 32px;
  height: 32px;
  background: url(../img/icon.png) no-repeat center center;
  background-size: cover;
}
.block-timeline .inner .talk_column header i.m{
  display: inline-block;
  vertical-align: top;
  width: 32px;
  height: 32px;
  background: url(../img/icon2.png) no-repeat center center;
  background-size: cover;
}
#timeline02.block-timeline .inner .talk_column header i .m{
  background: url(../img/icon2.png) no-repeat center center;
  background-size: cover;
}
.block-timeline .inner .talk_column header span{
  display: inline-block;
  vertical-align: 5px;
  line-height: 1;
  font-size: 12px;
  margin-left: 5px;
  color: #000;
}
#timeline02.block-timeline .inner .talk_column header span{
  color: #333333;
}
.block-timeline .inner .talk_column .pop{
  background: #66ccd3;
  display: inline-block;
  padding: 8px 15px;
  margin-left: 45px;
  margin-top: -8px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  position: relative;
  max-width: 60%;
}
#timeline02.block-timeline .inner .talk_column .pop{
  background: #fe7f7f;
}
.block-timeline .inner .talk_column .pop:before{
  content: "";
  position: absolute;
  top: 2px;
  left: -8px;
  width: 18px;
  height: 16px;
  background: url(../img/tip.png) no-repeat center center;
  background-size: contain;
}
#timeline02.block-timeline .inner .talk_column .pop:before{
  background: url(../img/tip3.png) no-repeat center center;
  background-size: contain;
}
.block-timeline .inner .talk_column .pop span{
  color: #000;
  font-size: 14px;
  line-height: 19px;
  display: block;
}
.block-timeline .inner .talk_column .coming{
  display: none;
}
.block-timeline .inner .talk_column.coming_column .coming{
  display:block;
  padding: 8px 15px;
  margin-left: 45px;
  margin-top: -8px;
  position: relative;
}
.block-timeline .inner .talk_column.coming_column .pop{
  display: none;
}
.block-timeline .inner .talk_column.coming_column .image{
  display: none;
}
.block-timeline .inner .talk_column.coming_column.coming_end .pop{
  display: inline-block;
}
.block-timeline .inner .talk_column.coming_column.coming_end .coming{
  display: none;
}
.block-timeline .inner .talk_column .coming i.i1{
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-animation: coming_loop 1s 0.0s infinite linear;
  animation: coming_loop 1s 0.0s infinite linear;
}
.block-timeline .inner .talk_column .coming i.i2{
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-animation: coming_loop 1s -0.2s infinite linear;
  animation: coming_loop 1s -0.2s infinite linear;
}
.block-timeline .inner .talk_column .coming i.i3{
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-animation: coming_loop 1s -0.3s infinite linear;
  animation: coming_loop 1s -0.3s infinite linear;
}
@-webkit-keyframes coming_loop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes coming_loop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.block-timeline .inner .talk_column .image{
  display: inline-block;
 /* margin-left: -20px;*/
  margin-top: 10px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  position: relative;
    overflow: hidden;
  /* width : -webkit-calc(100% + 40px) ;
   width : calc(100% + 40px) ;*/
}
.block-timeline .inner .self_column{
  margin-bottom: 15px;
  text-align: right;
  display: none;
  opacity: 0;
  -webkit-transform: translate(0%,10px);
          transform: translate(0%,10px);
}
.block-timeline .inner .self_column.view{
  opacity: 1;
  -webkit-transform: translate(0%,0px);
          transform: translate(0%,0px);
    -webkit-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block-timeline .inner .self_column.delay_talk.view{
  opacity: 1;
  -webkit-transform: translate(0%,0px);
          transform: translate(0%,0px);
    -webkit-transition: all 0.5s 2s ease;
            transition: all 0.5s 2s ease;
}

.block-timeline .inner .self_column .pop{
  background: #c8c8c8;
  display: inline-block;
  padding: 8px 15px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  margin-right: 8px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  position: relative;
  max-width: 64%;
}

.block-timeline .inner .self_column .coming{
  display: none;
}
.block-timeline .inner .self_column.coming_column .coming{
  display:block;
  padding: 8px 15px;
  margin-right: 8px;
  position: relative;
}
.block-timeline .inner .self_column.coming_column.coming_end .coming{
  display: none;
}
.block-timeline .inner .self_column.coming_column .pop{
  display: none;
}
.block-timeline .inner .self_column.coming_column.coming_end .pop{
  display: inline-block;
}
.block-timeline .inner .self_column .coming i.i1{
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-animation: coming_loop 1s 0.0s infinite linear;
  animation: coming_loop 1s 0.0s infinite linear;
}
.block-timeline .inner .self_column .coming i.i2{
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-animation: coming_loop 1s -0.2s infinite linear;
  animation: coming_loop 1s -0.2s infinite linear;
}
.block-timeline .inner .self_column .coming i.i3{
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-animation: coming_loop 1s -0.3s infinite linear;
  animation: coming_loop 1s -0.3s infinite linear;
}
.block-timeline .inner .self_column .image{
  display: block;
  position: relative;
  overflow: hidden;
 /*  width : -webkit-calc(100% + 40px) ;
   width : calc(100% + 40px) ;
  margin-left: -20px;*/
}
.block-timeline .inner .self_column.coming_column .image{
  display: none;
}
.block-timeline .inner .self_column.coming_column.coming_end .image{
  display: block;
}

.block-timeline .inner .self_column .pop:before{
  content: "";
  position: absolute;
  top: 2px;
  right: -8px;
  width: 18px;
  height: 16px;
  background: url(../img/tip2.png) no-repeat center center;
  background-size: contain;
}
.block-timeline .inner .self_column .pop > span{
  color: #000;
  font-size: 14px;
  line-height: 19px;
  display: block;
  text-align: left;
}
.block-timeline .inner .icon{
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin: 0 1px;
}
.block-timeline .inner .icon.icon01{
  background: url(../img/icon01.png) no-repeat center center;
  background-size: contain;
}
.block-timeline .inner .icon.icon02{
  background: url(../img/icon02.png) no-repeat center center;
  background-size: contain;
}
.block-timeline .inner .icon.icon03{
  background: url(../img/icon03.png) no-repeat center center;
  background-size: contain;
}
.block-timeline .inner .icon.icon04{
  background: url(../img/icon04.png) no-repeat center center;
  background-size: contain;
}
.block-timeline .inner .icon.icon05{
  background: url(../img/icon05.png) no-repeat center center;
  background-size: contain;
}
.block-timeline .inner .icon.icon06{
  background: url(../img/icon06.png) no-repeat center center;
  background-size: contain;
}
.block-timeline .inner .icon.icon07{
  background: url(../img/icon07.png) no-repeat center center;
  background-size: contain;
}

.block-timeline .inner .talk_column .keybord{
  display: inline-block;
  margin-top: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: #FFF;
  text-align: center;
  padding: 20px 0;
  width: 100%;
}

input[type="button"],input[type="text"],input[type="submit"],input[type="image"],textarea,select{
   -webkit-appearance: none;
   -moz-appearance: none;
   border-radius: 0;
}

.block-timeline .inner .talk_column .keybord input{
  display: block;
  margin: 0 auto;
  width: 85%;
  padding: 10px;
  font-size: 14px;
  background: #FFF;
  color: #000;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  border: 1px #d8d8d8 solid;
  margin-bottom: 10px;
}
.block-timeline .inner .talk_column .keybord button{
  display: block;
  margin: 0 auto;
  width: 20%;
  padding: 3px;
}
.block-timeline .inner .talk_column .keybord a.send_btn{
  display: block;
  margin: 0 auto;
  width: 20%;
  padding: 3px;
  background: #00ccd3;
  font-size: 14px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
#timeline02.block-timeline .inner .talk_column .keybord a.send_btn{
  background: #fe7f7f;
}

/*alert*/
.block-timeline .alert_column{
  position: fixed;
  top: 10px;
  left: 2.5%;
  right: 2.5%;
  width: 95%;
  max-width: 768px;
  margin: 0 auto;
  background: #FFF;
  z-index: 70;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-transform: translate(0%,-110px);
          transform: translate(0%,-110px);
    -webkit-transition: all 0.3s 0s ease;
            transition: all 0.3s 0s ease;
}
#alert02.alert_column{
  top: 95px;
  -webkit-transform: translate(0%,-210px);
          transform: translate(0%,-210px);
}
#alert04.alert_column{
  top: 95px;
  -webkit-transform: translate(0%,-210px);
          transform: translate(0%,-210px);
}
.block-timeline .alert_column.view{
  -webkit-transform: translate(0%,-0%);
          transform: translate(0%,-0%);

}
.block-timeline .alert_column header{
  position: relative;
  margin: 10px 0 0 10px;
}
.block-timeline .alert_column header:after{
  content: "現在";
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 10px;
  color: #000;
  line-height: 1;
}
.block-timeline .alert_column header i{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  background: url(../img/news.png) no-repeat ;
  background-size: contain;
}
.block-timeline .alert_column header span{
  font-size: 12px;
  color: #000;
  font-weight: bold;
  line-height: 1;
  padding-left: 30px;
    display: inline-block;
    vertical-align: 4px;
}
.block-timeline .alert_column p{
  color: #000;
  padding: 0px 0 5px 10px;
}



/*----------------------------------------------------
  #last
--------------------------------------------------- */
#last{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: url(../img/top_bg.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #000;
  visibility: hidden;
  opacity: 0;
}
body.last_view #last{
  visibility: visible;
  opacity: 1;
    -webkit-transition: all 1s 1s ease;
            transition: all 1s 1s ease;
}
#last .inner{
  position: absolute;
  top: 50%;
  left:0;
  right: 0;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translate(0%,-50%);
          transform: translate(0%,-50%);
}
#last .header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 50px;
    text-align: left;
  background: rgba(255,255,255,0.85);
}
#last .header img{
  width: 140px;
  margin: 17px 0 0 20px;
}
#last .inner .title{
  margin-bottom: 20px;
}
#last .inner p{
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 45px;
}
#last .inner .t{
  font-size: 11px;
  line-height: 19px;
  margin-bottom: 40px;
}
#last .inner .contact a{
  display: block;
  line-height: 45px;
  width: 60%;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #FFF;
  margin: 0 auto;
  background: #ff646e;
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  margin-bottom: 18px;
}
#last .inner .contact a:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 11px;
  background: url(../img/arrow.png) no-repeat;
  width: 24px;
  height: 6px;
  background-size: contain;
  margin-top: -3px;
}
#last .inner .btn a{
  display: block;
  line-height: 45px;
  width: 60%;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #FFF;
  margin: 0 auto;
  background: #464646;
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
#last .inner .btn a:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 11px;
  background: url(../img/arrow.png) no-repeat;
  width: 24px;
  height: 6px;
  background-size: contain;
  margin-top: -3px;
}
#last .inner .Share{
  font-size: 14px;
  margin-bottom: 20px;
}
#last .inner .sns_t{
  font-size: 14px;
  margin-bottom: 10px;
}
#last .inner .sns{
  margin-top: -20px;
}
#last .inner .sns li{
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  width: 30px;
}
#last .inner .sns li a{
  color: #000;
  font-size: 34px;
}
#last .inner .sns li.line{
  width: 30px;
}
#last .inner .sns li img{
  vertical-align: middle;
}

.block-timeline .inner .talk_column .next_btn {
  margin-top: 20px;
  position: relative;
  padding-top: 20px;
  text-align: center;
}

.block-timeline .inner .talk_column .next_btn a {
  display: inline-block;
  width: 35vw;
  max-width: 200px;
  border: 2px #000 solid;
  line-height: 40px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 700;
  margin: 0 10px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  text-align: center;
}
.block-timeline .inner .talk_column .next_btn a.hide{
  /* background: #ccc; */
  opacity: 0.2;
}

.block_attention .icon__sound {
  margin-left: 7vw;
}
.block_attention .icon__sound::before{
  width: 10vw;
  height: 32px;
  display: block;
  position: absolute;
  top: 18px;
  /* right: 10px; */
  left: 5vw;
  content: "";
  background: url(../img/sound_on.png) no-repeat right center;
  background-size: contain;
}

.footer {
  height: 50px;
  line-height: 50px;
  background: #707070;
  color: #fff;
  font-weight: normal;
  font-size: 10px;
  z-index: 1000;
  width: 100%;
  letter-spacing: 0.05em;
  text-align: right;
}
.timelineStart .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.footer .auto {
  display: none;
}
.footer .auto a {
  text-decoration: none !important;
  display: inline-block;
}
.footer .auto a img {
  width: 62.5px;
}
