@charset "UTF-8";
/* Scss Document */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: Helvetica, 'Noto Sans JP','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.75;
  /*letter-spacing: 0.05em;*/
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
}
ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 1;
    animation-duration: .5s;
    animation-name: flash;
  }

  @keyframes flash {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
h1, h2, h3, h4, h5, h6, h7, h8 {
  font-weight: normal;
}

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.sp_none {
  display: none !important;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .pc_none {
    display: none !important;
  }

  .sp_none {
    display: inline-block !important;
  }
}
/* ---------------------------------------------------
 Loding
--------------------------------------------------- */
.loadingAnim {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .3s;
  background-color: #fff;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  -ms-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line {
  /*line-height: 1;*/
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 2px;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #e70164;
  will-change: transform, width;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
/* ---------------------------------------------------
 Common
--------------------------------------------------- */
.common_content {
  width: 100%;
  padding: 0 3%;
}

.title {
  text-align: center;
}
.title .en {
  font-size: 2.6em;
  line-height: 0.8;
}
.title .jp {
  font-size: 1.1em;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .common_content {
    width: 100%;
    min-width: 960px;
    padding: 0 90px;
  }

  .title .en {
    font-size: 3.5em;
  }
}
/* ---------------------------------------------------
 Main
--------------------------------------------------- */
#Main {
  width: 100%;
  height: 85vh;
  position: relative;
}
#Main .bg_content {
  width: 100%;
  height: 85vh;
  background: url("../images/bg_gray_2.jpg") fixed;
  background-size: 140px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
#Main .wt_bottom {
  background: #fff;
  width: 100%;
  height: 21vh;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#Main .visual_box {
  width: 100%;
  height: 85vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  text-align: center;
}
#Main .visual_box img {
  max-height: 85vh;
  max-width: 100%;
  height: auto;
  width: auto;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Main {
    width: 100%;
    min-width: 960px;
    height: 100vh;
  }
  #Main .bg_content {
    width: 100%;
    height: 100vh;
    background-size: 230px;
  }
  #Main .wt_bottom {
    height: 38vh;
  }
  #Main .visual_box {
    width: 100%;
    height: 100vh;
  }
  #Main .visual_box img {
    max-height: 100vh;
    max-width: 100%;
    height: auto;
    width: auto;
  }
}
/* ---------------------------------------------------
 Intro
--------------------------------------------------- */
#Intro {
  text-align: center;
}
#Intro .midashi {
  margin-bottom: 20px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Intro {
    margin-top: 40px;
    text-align: center;
  }
  #Intro .midashi {
    width: 780px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  #Intro .midashi img {
    min-width: 780px;
  }
  #Intro p {
    font-size: 1.4em;
  }
}
/* ---------------------------------------------------
 Outline
--------------------------------------------------- */
#Outline {
  width: 100%;
  margin: 80px 0;
  padding-top: 60px;
  padding-bottom: 60px;
  background: url("../images/bg_gray.jpg");
}
#Outline ul.details_list {
  width: 90%;
  margin: 40px auto 20px;
}
#Outline ul.details_list li {
  display: flex;
  padding: 10px 0;
}
#Outline ul.details_list li .item {
  width: 30%;
  font-weight: 600;
}
#Outline ul.details_list li .content {
  width: 70%;
}
#Outline .map {
  width: 90%;
  height: 300px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
#Outline .map iframe {
  width: 100%;
  height: 300px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Outline {
    margin: 90px 0;
    padding-top: 90px;
    padding-bottom: 90px;
  }
  #Outline ul.details_list {
    width: 630px;
    margin: 60px auto 30px;
  }
  #Outline ul.details_list li {
    padding: 10px 0;
    font-size: 1.2em;
  }
  #Outline ul.details_list li .item {
    width: 20%;
  }
  #Outline ul.details_list li .content {
    width: 80%;
  }
  #Outline .map {
    width: 630px;
  }
  #Outline .map iframe {
    height: 300px;
  }
}
/* ---------------------------------------------------
 Topics
--------------------------------------------------- */
#Topics .title {
  margin: 100px 0 40px;
}
#Topics .topic {
  margin: 0 auto;
  width: 87%;
  position: relative;
  padding: 30px 3%;
  border-top: solid 1px #e70164;
  text-align: center;
}
#Topics .topic:last-child {
  border-bottom: solid 1px #e70164;
}
#Topics .topic:before, #Topics .topic:after {
  content: '';
  position: absolute;
  top: 25px;
  width: 1px;
  height: -webkit-calc(100% + -50px);
  height: calc(100% + -50px);
  background-color: #e70164;
}
#Topics .topic:before {
  left: -8%;
}
#Topics .topic:after {
  right: -8%;
}
#Topics .topic h4 {
  color: #e70164;
  font-weight: 600;
  font-size: 1.2em;
}
#Topics .topic__1 p {
  padding: 30px 0 0 0;
}
#Topics .topic__2 p,
#Topics .topic__3 p {
  padding: 15px 0;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Topics .title {
    margin: 120px 0 60px;
  }
  #Topics .topic {
    width: 90%;
    padding: 60px;
  }
  #Topics .topic:before {
    left: -50px;
  }
  #Topics .topic:after {
    right: -50px;
  }
  #Topics .topic h4 {
    font-size: 1.6em;
  }
  #Topics .topic__2 p,
  #Topics .topic__3 p {
    padding: 15px 0 40px;
  }
}
/* ---------------------------------------------------
 Message
--------------------------------------------------- */
#Message {
  text-align: center;
  width: 90%;
  margin: 60px auto 0;
}
#Message .message_tx {
  font-size: 1.2em;
  line-height: 1.5;
  font-weight: 600;
  background: url("../images/kazari_left.jpg") no-repeat left bottom;
  background-size: contain;
}
#Message .message_tx .inBox {
  background: url("../images/kazari_right.jpg") no-repeat right bottom;
  background-size: contain;
}
#Message .logo_baseyard {
  width: 50%;
  margin: 30px auto;
}
#Message .zombie_copyright {
  text-align: center;
  font-size: .8em;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Message {
    width: 890px;
    margin: 90px auto 60px;
  }
  #Message .message_tx {
    font-size: 2em;
    line-height: 2;
    height: 140px;
  }
  #Message .message_tx .inBox {
    height: 140px;
  }
  #Message .logo_baseyard {
    width: 200px;
    margin: 30px auto;
  }
  #Message .zombie_copyright {
    text-align: center;
    font-size: .8em;
  }
}
/* ---------------------------------------------------
 Twitter
--------------------------------------------------- */
#Twitter {
  background: #4d9ae9;
  border-radius: 5px;
  padding: 5%;
  width: 94%;
  margin: 60px auto 0;
}
#Twitter .tx {
  font-size: 1.1em;
  padding: 10px;
}
#Twitter .acount {
  display: flex;
  padding: 0 0 20px 0px;
}
#Twitter .acount .icon {
  width: 40px;
  padding-right: 10px;
}
#Twitter .acount p {
  font-weight: 600;
  color: #fff;
}
#Twitter .time_line {
  width: 100%;
  height: 460px;
  overflow: scroll;
  border-radius: 5px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Twitter {
    padding: 20px;
    width: 490px;
    margin: 0;
    float: right;
  }
  #Twitter .tx {
    padding: 20px;
    font-size: 1.3em;
  }
  #Twitter .acount {
    display: flex;
    padding: 0 20px 30px 20px;
  }
  #Twitter .acount .icon {
    width: 66px;
    padding-right: 15px;
  }
  #Twitter .acount p {
    font-weight: 600;
    color: #fff;
  }
  #Twitter .time_line {
    height: 600px;
  }
}
/* ---------------------------------------------------
 Attention
--------------------------------------------------- */
#Attention .info_box {
  background: #eee;
  border-radius: 5px;
  width: 94%;
  padding: 8%;
  margin: 40px auto 20px;
}
#Attention .info_box .title {
  color: #e70164;
  font-size: 1.1em;
  border-bottom: 2px solid #e70164;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-weight: 600;
}
#Attention .info_box ul.info_list {
  margin-top: 20px;
}
#Attention .info_box ul.info_list li {
  position: relative;
  padding: 0 0 5px 18px;
  vertical-align: middle;
}
#Attention .info_box ul.info_list li:before {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 1em;
  height: 1em;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}
#Attention .note_box {
  width: 88%;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Attention {
    padding-right: 530px;
  }
  #Attention .info_box {
    width: 100%;
    padding: 50px;
    margin: 0 0 20px 0;
  }
  #Attention .info_box .title {
    text-align: left;
    margin-bottom: 30px;
    font-size: 1.2em;
  }
  #Attention .info_box ul.info_list {
    margin-top: 20px;
  }
  #Attention .info_box ul.info_list li {
    position: relative;
    padding: 0 0 5px 18px;
    vertical-align: middle;
  }
  #Attention .info_box ul.info_list li:before {
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 1em;
    height: 1em;
    background: #000;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
  }
  #Attention .note_box {
    width: 100%;
    margin: 40px auto 0;
  }
}
.copyRight {
  font-size: .8em;
  text-align: center;
  padding: 40px 0;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .copyRight {
    text-align: right;
    padding: 40px 90px;
  }
}
