@charset: 'utf-8';

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
}

body {
  position: relative;
  font-family: Helvetica Neue, YuGothic, "Yu Gothic", 游ゴシック, sans-serif;
  font-size: 14px;
  color: #fff;
  background: url('/img/contact_bg.jpg') center fixed;
  background-size: cover;
}

a {
  color: #fff;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
}

.bg-movie {
    z-index: -1;
}

.bg-overlay {
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 2.5s ease-in;
}

.bg-overlay.complete {
  background-color: rgba(0,0,0,0.5);
}

.wrap {
  position: relative;
  z-index: 1;
  padding: 0;
}

.content {
  margin: 0 auto;
  padding: 50px;
  max-width: 800px;
  box-sizing: border-box;
}

.logo {
  position: fixed;
  width: 150px;
  top: 50px;
  left: 50px;
}

h1 {
  max-width: 700px;
  margin: 20vh auto;
  padding: 70px 0;
  text-align: center;
  font-size: 40px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

h2.heading {
  margin: 60px 0 50px;
  font-size: 25px;
  font-family: Helvetica Neue, Midashi Go MB1, YuGothic, "Yu Gothic", 游ゴシック, sans-serif;
  text-align: center;
}

.text {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 2.0;
}


.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.youtube-webview {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.event-list {
  padding: 0;
  list-style-type: none;
}

.event-list li {
  padding-bottom: 15px;
  font-size: 15px;
}

.event-list li + li {
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.dl-link {
  color: #fff;
  text-align: center;
}

.dl-combo {
  display: flex;
}

.dl-combo .thumb-wrap {
  width: 270px;
  margin-right: 30px;
}

.dl-combo .thumb {
  box-sizing: border-box;
  width: 100%;
  border: 10px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.dl-combo .dl-content {
  flex: 1;
}

.dl-combo .text {
  margin-top: -8px;
  margin-bottom: 0;
}

.dl-btn {
  margin-top: 25px;
  color: #fff;
  text-align: center;
}

.dl-btn a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid #fff;
  margin: 0 auto;
  padding: 15px 50px;
  transition: all 0.3s ease-out;
}

.dl-btn a:hover {
  background-color: #fff;
  color: #333;
}

.dl-btn .dl-icon {
  display: inline-block;
  width: 25px;
  margin-right: 10px;
  vertical-align: -10px;
}

#icon_dl_path {
  stroke: #fff;
  transition: all .3s ease-out;
}

.dl-btn a:hover #icon_dl_path {
  stroke: #333;
}

.mail-link {
  color: #fff;
  text-align: center;
}


.mail-link a {
  display: block;
  width: 340px;
  margin: 0 auto;
  padding: 20px;
  transition: all 0.3s ease-out;
  font-size: 18px;
  border: 1px solid #fff;
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.mail-link a:hover {
  background-color: #fff;
  color: #333;
}

.mail-link .mail-icon {
  display: inline-block;
  width: 24px;
  margin-right: 5px;
  vertical-align: -2px;
}

.mail-link a #icon_mail_path {
  transition: all .3s ease-out;
  stroke: #fff;
}

.mail-link a:hover #icon_mail_path {
  stroke: #333;
}

h2.copy {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 16px;
  color: #fff;
  font-family: Helvetica Neue, Midashi Go MB1, YuGothic, "Yu Gothic", 游ゴシック, sans-serif;
  text-align: center;
}

.company {
  font-size: 14px;
  text-align: center;
}

.company a {
  color: #fff;
}

br.sp-only {
  display: none;
}

/* responsive  */
@media screen and (max-width: 1200px) {
  .logo {
    position: absolute;
    /*top: auto;
    left: auto;
    margin: 30px auto 0;*/
  }
}

@media screen and (max-width: 480px) {
  br.sp-only {
    display: inline;
  }

  .wrap {
    padding: 0;
  }

  .bg-movie {
    display: none;
  }

  .logo {
    position: relative;
    top: auto;
    left: auto;
    margin: 30px auto 0;
  }

  h1 {
    width: 200px;
    margin: 20vh auto;
    padding: 10px;
    font-size: 16px;
  }

  .text {
    font-size: 14px;
  }
  
  .dl-combo {
    display: block;
  }

  .dl-combo .thumb-wrap {
    margin: 0 auto;
  }

  .dl-combo .text {
    margin-top: 20px;
  }

  .dl-btn .dl-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    vertical-align: -7px;
    width: 20px;
  }


  .content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 15px;
    background-color: rgba(0,0,0, .5);
  }

  .dl-link a,
  .mail-link a {
    width: 250px;
    padding: 15px;
  }

}