@charset "UTF-8";
body {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #00293C;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  background-color: #EAE8E4;
  font-weight: bold;
}

#container {
  background-color: #EAE8E4;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.8rem;
  }
}
* {
  box-sizing: border-box;
}

a {
  color: #00293C;
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

#splash-logo {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3F9EB4;
}

h1 {
  text-transform: uppercase;
  font-size: 1.5rem;
  position: absolute;
  top: 20% !important;
  left: 10%;
  letter-spacing: 0.2em;
  font-weight: bold;
}
h1 img {
  width: 70px;
}

.logo {
  width: 70px;
}

h1 a {
  color: #00293C;
}

h2 {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
    font-weight: bold;
  }
}
#header {
  position: fixed;
  height: 100px;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EAE8E4;
  top: 0;
}

@media screen and (max-width: 550px) {
  h1 {
    font-size: 1.2rem;
    top: 32%;
    font-weight: bold;
  }
}
#pc-nav span.bgtend::before {
  background: #00293C;
}

#pc-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  margin: 0 0 0 5%;
  position: absolute;
  right: 15%;
  top: 40%;
}
#pc-nav ul li {
  margin: 0 10px;
}
#pc-nav ul a {
  padding: 0 10px;
}

@media screen and (max-width: 980px) {
  #pc-nav {
    display: none;
  }
}
/*===========================================================*/
/*機能編  5-1-12 クリックしたらナビが下から上に出現 */
/*===========================================================*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  bottom: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #3F9EB4;
  /*動き*/
  transition: all 0.6s;
}

@media screen and (min-width: 980px) {
  #g-nav {
    display: none;
  }
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #00293C;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*===========================================================*/
/*機能編  5-2-5	MENUが×に */
/*===========================================================*/
.openbtn {
  position: fixed;
  z-index: 99999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 80px;
  height: 70px;
  border-left: 2px solid #00293C;
}

h2 {
  font-weight: bold;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
}

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
  height: 2px;
  background: #00293C;
  width: 30%;
  opacity: 0;
  top: 22px;
  left: 20px;
}

.openbtn span:nth-of-type(2) {
  top: 22px;
  left: 18px;
  text-transform: uppercase;
  color: #00293C;
  font-size: 0.9rem;
}

@media screen and (max-width: 550px) {
  .openbtn span:nth-of-type(2) {
    font-size: 0.8rem;
  }
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
  opacity: 1;
}

.openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 30px;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 40px;
  left: 30px;
  transform: translateY(-6px) rotate(45deg);
}

@media screen and (min-width: 980px) {
  .openbtn {
    display: none;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.contactform {
  padding: 0 7px;
}

form {
  max-width: 700px;
  margin: 0 auto;
}

.alert {
  max-width: 700px;
  margin: 0 auto;
}

.form_contents {
  color: #464646;
  margin: 20px 0 0 0;
  text-align: left;
}

.confirm_form {
  max-width: 700px;
  margin: 80px auto 0 auto;
  padding: 0 5%;
  text-align: center;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.confirm_form_contents {
  color: #636363;
  margin: 20px 0 7px 0;
  text-align: center;
}

.C_Btn {
  text-align: right;
}

.btn {
  margin: 50px 0;
  background-color: #56bcd3;
  padding: 15px 60px;
}
.btn a {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.btn:hover {
  background-color: #15D2DB;
  color: #00293C;
}
.btn:hover a:hover {
  color: #00293C;
}

.form_conclusion {
  text-align: center;
  margin: 200px 0 30px 0;
}

#Contact {
  margin-top: 100px;
}

#ContactMain {
  margin-top: 100px;
}

.confirm {
  margin-top: 200px;
}

.Btn- {
  text-align: center;
}

.btn {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

h2 {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  line-height: 2rem;
  border-bottom: solid #F5D57E;
  padding: 0 7px;
}

.subtitle {
  font-size: 13px;
  margin: 0 0 100px 0;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .subtitle {
    margin: 0 0 50px 0;
  }
}
.center {
  text-align: center;
}/*# sourceMappingURL=contactform.css.map */