html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #ffffff;
  background-color: rgb(27, 65, 122);
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  color: #ffffff;
  background-color: #000000;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader span {
  color: #65bef5;
}

.loader .txt {
  font-size: 45px;
  font-weight: bold;
  color: rgb(30, 50, 93);
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 800px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 1020px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1220px;
  }
}

.header {
  background-color: rgba(101, 190, 245, 0.9);
  z-index: 99;
}

@media (max-width: 767px) {
  .header {
    height: 434px;
  }
}

@media (min-width: 768px) {
  .header {
    height: 226px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .header {
    height: 183px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .header {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.movie::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  /* 必ず「0」に指定 */
  padding-top: 56.25%;
  /* ココを指定 */
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* 必ず「100%」に指定 */
}

@media (max-width: 767px) {
  .movie {
    top: 0px;
  }
}

@media (min-width: 768px) {
  .movie {
    top: 226px;
  }
}

@media (min-width: 992px) {
  .movie {
    top: 183px;
  }
}

@media (min-width: 1200px) {
  .movie {
    top: 70px;
  }
}

* {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-family: 'Roboto', sans-serif;

}

/* ナビゲーションのかたまり */
.header-nav {
  position: relative;
  float: left;
  margin: 0;
  z-index: 99;
}

.header-nav ul {
  position: absolute;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ナビゲーションの区切り線 */
.header-nav ul li {
  position: relative;
  float: left;
  border-left: 4px solid rgb(40, 40, 40);
}

/* 下に出てくる箱の左端位置 */
.header-nav ul li ul {
  margin-left: -4px;
}

.header-nav>ul {
  position: relative;
}

/* ナビゲーションの区切り線（右端） */
.header-nav>ul>li:last-child {
  border-right: 4px solid rgb(40, 40, 40);
}

/* 下に出てくる箱 */
.header-nav>ul>li>.header-nav-link+ul li {
  width: 110px;
  opacity: 0;
  height: 0;
  margin-top: -48px;
  border-bottom: 2px solid rgb(40, 40, 40);
}

/* 下に出てくる箱の間隔 */
.header-nav>ul>li:hover .header-nav-link+ul>li {
  opacity: 1;
  height: auto;
  margin-top: 0;
}

/* 下に出てくる箱の中身 */
.header-nav .header-nav-link {
  float: left;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 300;
  padding: 15px;
  width: 80px;
}

@media (max-width: 767px) {
  .header-nav .header-nav-link {
    width: 100%;
  }
}

/* 下に出てくる箱を出すときのレスポンス */
.header-nav .header-nav-link:hover {
  background-color: rgb(40, 40, 40) !important;
}

/* ナビゲーションの間隔 */
.header-nav .header-nav-top-link {
  padding: 25px 15px 25px;
}

/* 下に出てくる箱の色 */
.header-nav ul li:hover .header-nav-link {
  background-color: #858585;
}

.header-nav ul li:hover .header-nav-top-link {
  background-color: rgba(40, 40, 40, 0.8);
}

/* 下に出てくる箱の上端位置 */
.header-nav>ul>li>.header-nav-top-link+ul {
  top: 70px;
  font-size: 10px;
}

.header-nav>ul>li:hover .header-nav-sub-link {
  background-color: #777777;
  font-size: 10px;
}

.header-logo>.header-logo-name {
  float: left;
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: bold;
  padding: 14px 0;
  text-decoration: none;
}

.header-logo>.header-logo-name:hover {
  color: rgb(0, 40, 100);
}

@media (max-width: 767px) {
  .header-nav>ul>li {
    width: 100%;
    border-right: 4px solid rgb(40, 40, 40);
    border-bottom: 2px solid rgb(40, 40, 40);
  }

  .header-nav>ul>li:first-child>a {
    font-size: 18px;
    font-weight: 400;
  }

  .header-nav>ul>li:last-child {
    border-bottom: none;
  }

  .header-nav>ul>li>.header-nav-top-link+ul {
    position: relative;
    top: 0px;
    left: 4px;
    width: 100%;
  }

  .header-nav>ul>li>.header-nav-top-link+ul li {
    position: relative;
    float: left;
    border-left: none;
    width: 100%;
  }
}

.header-list li {
  float: right;
  padding: 33px 20px;
}

.main {
  padding: 0 80px;
}

@media (max-width: 767px) {
  .main {
    padding-top: 100px;
  }
}

@media (min-width: 768px) {
  .main {
    padding-top: 326px;
  }
}

@media (min-width: 992px) {
  .main {
    padding-top: 283px;
  }
}

@media (min-width: 1200px) {
  .main {
    padding-top: 170px;
  }
}

.copy-container h1 {
  font-size: 100px;
}

.copy-container h2 {
  font-size: 30px;
}

.copy-container span {
  color: #65bef5;
}

.copy-container a {
  color: #65bef5;
}

.copy-container a:hover {
  color: #e32929;
}

.contents {
  height: 300px;
  padding-top: 80px;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .contents {
    height: 1000px;
  }
}

.section-title {
  border-bottom: 2px solid #dee7ec;
  font-size: 28px;
  padding-bottom: 15px;
  margin-bottom: 50px;
}

.contents-item {
  float: left;
  margin-right: 40px;
}

.contents-item p {
  font-size: 24px;
  margin-top: 30px;
}

.contents-item img {
  height: 200px;
}

.contact-form {
  padding-top: 80px;
  margin-top: 100px;
}

/* inputとtextareaのCSSを指定してください */
input,
textarea {
  width: 400px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 20px;
  font-size: 18px;
  border: 1px solid #dee7ec;
}

/* contact-submitのCSSを指定してください */
.contact-submit {
  background-color: #dee7ec;
  color: #889eab;
}

.footer {
  background-color: rgb(40, 40, 40);
  color: #fff;
  height: 180px;
  padding: 50px;
}

.footer-logo {
  float: left;
  font-size: 32px;
}

.footer-list {
  float: right;
}

.footer-list li {
  padding-bottom: 20px;
}

/* 以下のまとまりは TOP ボタンの設定 */
/* ボタンのデザイン設定　後から飛び出してほしいので translate で画面外に放り出しておく */
#scroll_top_btn {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  cursor: pointer;
  z-index: 99;
  opacity: 0.5;
  transform: translateY(100px);
  transition: all .2s;
}

#scroll_top_btn:hover {
  opacity: 1;
}

#scroll_top_btn a {
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#scroll_top_btn a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0aa';
  font-size: 60px;
  color: #ffffff;
}

/* ボタンに .on が付与されることでボタンが画面内に入ってくる */
#scroll_top_btn.on {
  transform: translateY(0);
}

.movie {
  width: 100%;
  height: auto;
  position: relative;
}

.shadow {
  text-shadow:
    1px 1px 0px #000, -1px -1px 0px #000,
    -1px 1px 0px #000, 1px -1px 0px #000,
    1px 0px 0px #000, -1px 0px 0px #000,
    0px 1px 0px #000, 0px -1px 0px #000;
  margin: 0;
}

.col-xs-12,
.col-sm-2,
.col-md-3,
.col-lg-4,
.col-sm-10,
.col-md-8,
.col-lg-6 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

@media (min-width: 768px) {

  .col-sm-2,
  .col-sm-10 {
    float: left;
  }

  .col-sm-2 {
    width: 16.666666666666664%;
  }

  .col-sm-10 {
    width: 83.33333333333334%;
  }
}

@media (min-width: 992px) {

  .col-md-3,
  .col-md-8 {
    float: left;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-8 {
    width: 66.66666666666666%;
  }

  .col-md-offset-1 {
    margin-left: 8.333333333333332%;
  }
}

@media (min-width: 1200px) {

  .col-lg-4,
  .col-lg-6 {
    float: left;
  }

  .col-lg-4 {
    width: 33.33333333333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333333333333332%;
  }
}