@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');


/*  全体　基本設定
---------------------------------------------*/
html, body {
    font-size: 62.5%;
}

body {
    font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-feature-settings:normal;
    letter-spacing: 0.1em;
    text-align: center;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    color: #000;
    font-weight: 300;
}


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

a {
    display: inline-block;
    text-decoration: none;
    color: #03071f;
}

em {
    font-weight: bold;
    font-style: normal;
}

img {
    max-width: 100%;
}

a img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


figure {
  line-height: 0;
}

.disnon-pc {
  display: none;
}

.disnon-sp {
  display: block;
}


@media screen and (max-width: 768px) {

  .disnon-pc {
    display: block;
  }

  .disnon-sp {
    display: none;
  }
}


/* 　英語フォント
---------------------------------------------*/
.fontEn {
  font-family: 'Roboto Condensed', sans-serif;
}

/* 　コンテナー　設定
---------------------------------------------*/
#container {
  text-align: left;
}

.content {
  padding-top: 70px;
}



@media screen and (max-width: 768px) {
  .sectionInner {

  }

  .content {
    padding-top: 45px;
  }
}


/* 　ヘッダー　設定
---------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: 70px;
}

.header__logo {
    padding: 15px 0 0 30px;
    color: #03071f;
    font-size: 3.0rem;
}


@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    height: 45px;
  }

  .header__logo {
    padding: 8px 0 0 0;
    color: #03071f;
    font-size: 2.2rem;
    text-align: center;
  }

}

/*  メニュー
---------------------------------------------*/
.boxNav {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling : touch;
}

.boxNav__inner {
  padding: 20px 60px;
}

.boxNav__logo {
  font-size: 3.4rem;
  text-align: center;
}

.boxNav__estimate {
  width: 100%;
  margin: 20px 0 0;
  font-size: 1.8rem;
}

.boxNav__contact a {
  width: 100%;
  margin: 40px 0 0;
  padding: 15px;
  background: #03071f;
  color: #fff;
  font-size: 1.8rem;
}

.boxNav__contact a:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0.75;
}

.boxNav__list {
  margin: 40px 0 0;
}

.boxNav__list li {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 1.8rem;
}

.boxNav__list li a {
  position: relative;
  display: block;
  padding:0 0 20px 15px;
}

.boxNav__list li a::after {
  position: absolute;
  top: 30%;
  right: 0px;
  content: "";
  width: 15px;
  height: 1px;
  background: #03071f;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.boxNav__list li:hover {
  border-bottom: 1px solid #03071f;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.boxNav__list li:hover a::after {
  right: -10px;
}

@media screen and (max-width: 768px) {
  .boxNav {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling : touch;
  }

  .boxNav__inner {
    padding: 10px 30px 20px;
  }

  .boxNav__logo {
    font-size: 2.2rem;
    text-align: center;
  }

  .boxNav__estimate {
    width: 100%;
    margin: 20px 0 0;
    font-size: 1.8rem;
  }

  .boxNav__contact a {
    width: 100%;
    margin: 40px 0 0;
    padding: 15px;
    background: #03071f;
    color: #fff;
    font-size: 1.8rem;
  }

  .boxNav__contact a:hover {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0.75;
  }

  .boxNav__list {
    margin: 40px 0 0;
  }

  .boxNav__list li {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    font-size: 1.8rem;
  }

  .boxNav__list li a {
    position: relative;
    display: block;
    padding:0 0 20px 15px;
  }

  .boxNav__list li a::after {
    position: absolute;
    top: 30%;
    right: 0px;
    content: "";
    width: 15px;
    height: 1px;
    background: #03071f;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .boxNav__list li:hover {
    border-bottom: 1px solid #03071f;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .boxNav__list li:hover a::after {
    right: -10px;
  }
}

/*  ドロワーメニュー
---------------------------------------------*/
#drawer-checkbox {
    display: none;
}
#drawer-icon {
    cursor: pointer;
    display: inline-block;
    position: fixed;
    z-index: 999;
    top: 0px;
    right: 0px;
    width: 70px;
    height: 70px;
    background: #03071f;
}
#drawer-icon span {
    background:  #fff;
    display: block;
    height: 2px;
    left: 15%;
    margin: -5% 0 0 0;
    position: absolute;
    top: 50%;
    transition: all 0.3s ease-in-out;
    width: 70%;
}
#drawer-icon span::before,
#drawer-icon span::after {
    -webkit-transform: rotate(0);
    background: #fff;
    border-radius: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0%;
    margin: -5% 0 0 0;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
    width: 100%;
}
#drawer-icon span::before {
    margin-top: -25%;
}
#drawer-icon span::after {
    margin-top: 25%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
    background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
    content: "";
    display: block;
    height: 100%;
    left: 5%;
    margin: 0% 0 0 0%;
    position: absolute;
    top: 50%;
    width: 90%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}
#drawer-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right:0;
    z-index: 998;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: #f6f6f6;
    transition: all 0.3s ease-in-out 0s;
    transform: translateX(100%);
}
#drawer-checkbox:checked ~ #drawer-content {
    transform: translateX(0);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

#drawer-close {
    display: none;
    position: fixed;
    z-index: 39;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
    display: block;
    opacity: 0.3;
}


@media screen and (max-width: 768px) {
  #drawer-checkbox {
    display: none;
  }
  #drawer-icon {
    cursor: pointer;
    display: inline-block;
    position: fixed;
    z-index: 999;
    top: 0px;
    right: 0px;
    width: 45px;
    height: 45px;
    background: #03071f;
  }
  #drawer-icon span {
    background:  #fff;
    display: block;
    height: 2px;
    left: 15%;
    margin: -5% 0 0 0;
    position: absolute;
    top: 51%;
    transition: all 0.3s ease-in-out;
    width: 70%;
  }
  #drawer-icon span::before,
  #drawer-icon span::after {
    -webkit-transform: rotate(0);
    background: #fff;
    border-radius: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0%;
    margin: -5% 0 0 0;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  #drawer-icon span::before {
    margin-top: -25%;
  }
  #drawer-icon span::after {
    margin-top: 23%;
  }
  #drawer-checkbox:checked ~ #drawer-icon span {
    background: rgba(51, 51, 51, 0);
  }
  #drawer-checkbox:checked ~ #drawer-icon span::before,
  #drawer-checkbox:checked ~ #drawer-icon span::after {
    content: "";
    display: block;
    height: 100%;
    left: 5%;
    margin: 0% 0 0 0%;
    position: absolute;
    top: 50%;
    width: 90%;
  }
  #drawer-checkbox:checked ~ #drawer-icon span::before {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  #drawer-checkbox:checked ~ #drawer-icon span::after {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  #drawer-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right:0;
    z-index: 998;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: #f6f6f6;
    transition: all 0.3s ease-in-out 0s;
    transform: translateX(100%);
  }
  #drawer-checkbox:checked ~ #drawer-content {
    transform: translateX(0);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
  }

  #drawer-close {
    display: none;
    position: fixed;
    z-index: 39;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
  }
  #drawer-checkbox:checked ~ #drawer-close {
    display: block;
    opacity: 0.3;
  }

}

/* 　page top
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 10px;
  right: 30px;
  width: 50px;
}

@media screen and (max-width: 768px) {
  #pageTop {
    position: fixed;
    bottom: 25px;
    right: 2%;
    width: 30px;
  }
}

/* 　フッター 設定
---------------------------------------------*/
.footer {
  padding: 80px 0 0;
  background-image: url(/img/common/bg-footer.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.footer__contact {
  max-width: 980px;
  margin: 0 auto 80px;
  padding: 60px;
  background-color: rgba(144,144,144,0.7);
  color: #fff;
}

.footer__contactTitle {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 2.4rem;
}

.footer__contactTxt {
  font-size: 1.8rem;
}

.footer__contactBtnArea {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 580px;
  margin: 40px auto 0;
  justify-content: space-between;
}

.footer__contactBtnArea .btn * {
  border: none;
}

.footer__form {
  width: 250px;
  background: #fff;
}

.footer__estimate {
  width: 250px;
  background: #fff;
}


.footer__inner {
  padding: 80px 0 210px;
  background-color: rgba(3,7,31,0.8);
  color: #fff;
}

.footer__nav {
  margin: 0 0 60px;
}

.footer__nav ul {
  text-align: center;
}

.footer__nav li {
  display: inline-block;
  padding: 0 15px;
}

.footer__nav li a {
  color: #fff;
}

.footer__nav li a:hover {
  text-decoration: underline;
}

.footer .copyright {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 80px 0 0;
        background-image: url(/img/common/bg-footer.jpg);
        background-size: cover;
        background-position: center;
        text-align: center;
    }

    .footer__contact {
        max-width: 980px;
        margin: 0 4% 80px;
        padding: 30px;
        background-color: rgba(144,144,144,0.8);
        color: #fff;
    }

    .footer__contactTitle {
        margin-bottom: 40px;
        font-weight: 400;
        font-size: 2.4rem;
    }

    .footer__contactTxt {
        font-size: 1.8rem;
        text-align: left;
    }

    .footer__contactTxt br {
        display: none;
    }

    .footer__contactBtnArea {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        width: 100%;
        margin: 40px auto 0;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer__contactBtnArea .btn {
        margin-bottom: 20px;
    }

    .footer__contactBtnArea .btn * {
        border: none;
    }

    .footer__form {
        width: 250px;
        margin: 0 auto;
        background: #fff;
    }

    .footer__estimate {
        width: 250px;
        margin: 0 auto;
        background: #fff;
    }


    .footer__inner {
        padding: 80px 0 110px;
        background-color: rgba(3,7,31,0.8);
        color: #fff;
    }

    .footer__nav {
        margin: 0 0 30px;
        padding: 0 4%;
    }

    .footer__nav ul {
        text-align: left;
    }

    .footer__nav li {
        display: inline-block;
        margin-bottom: 10px;
        padding: 0 10px 0 0;
    }

    .footer__nav li a {
        color: #fff;
    }

    .footer__nav li a:hover {
        text-decoration: underline;
    }

    .footer .copyright {
        font-size: 1.2rem;
    }
}



/* 　ロード画面
---------------------------------------------*/
.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
/*  Loading
---------------------------------------------*/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 99998;
}
#loader {
  display: none;
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99999;
}


#loader .load-anime img {
  width: 218px;
  margin: 0 auto;
}

.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important;
}
.recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important;
}

.grecaptcha-badge {
	visibility: hidden;
}



