@charset "utf-8";

/*共通------------------------------- */
html {
  font-size: 16px;
}

.wrap {
  overflow: hidden;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS ゴシック", "MS Gothic", sans-serif;
  line-height: 1.6;
  color: #000;
  overflow-y: auto;
}


a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}


img {
  max-width: 100%;
  object-fit: cover
}


.wirapper {
  max-width: 1000px;
  margin: auto;
  justify-content: center;
}



/*文字------------------------------- */

h1 {
  text-align: center;
  color: #000;
  font-weight: 350;
  letter-spacing: 0.5rem;
}

h1 img {
  width: 225px;
}

h2.title_sec2,
h3.news_t {
  text-align: left;
  font-size: 4rem;
  color: #CCE7F2;
  font-weight: 150;
  line-height: 1;
  letter-spacing: 0.35rem;
  margin: -1.5rem 0;
}

h2.title_sec3 {
  font-size: 1.2rem;
  color: #000;
}

h2.title_sec3 span {
  color: #26BAEB;
}


h2.title_sec4 {
  text-align: center;
  color: #26BAEB;
}


h2.sec_itiran {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

h2.title_sec6 {
  text-align: center;
  color: rgb(38, 186, 235);
}


.small {
  font-size: 0.85rem;
}

.large {
  font-size: 1.35rem;
  font-weight: 600;
}


.nltxt {
  white-space: pre-wrap;
  letter-spacing: 0.2rem;
}

.bold {
  font-weight: bold;
}

span.br {
  display: inline-block;
}


/*ボタン設定----------------------------*/

/*白ボタン*/
.float {
  position: relative;
  top: 0;
  padding: 5px 20px;
  display: inline-block;
  border: 1px solid #fff;
  color: #000;
  transition: all .3s;
  margin-top: 3rem;
  border-radius: 30px;
  background-color: #fff;

}

.float:hover {
  top: -3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/*青ボタン*/
.float2 {
  position: relative;
  top: 0;
  padding: 5px 20px;
  display: inline-block;
  border: 1px solid #26BAEB;
  color: #fff;
  transition: all .3s;
  margin-top: 1rem;
  border-radius: 30px;
  background-color: #26BAEB;
}


.float2:hover {
  top: -3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


/*紺ボタン*/
p.fl_btn {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 200;
  color: #fff;
}


.float3 {
  position: relative;
  top: 0;
  padding: 25px 25px;
  display: inline-block;
  border: 1px solid #0087BD;
  color: #fff;
  text-align: center;
  transition: all .3s;
  margin: 1rem auto;
  border-radius: 15px;
  background-color: #0087BD;
}


.float3:hover {
  top: -3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}



/* 動き（下からフェード）------------------------------- */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
  opacity: 0;
}


/*ナビゲーション設定----------------------------*/
.wrapnav {
  height: 60px;
  margin: auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}


.logo img {
    width: 250px;
}

#g-nav {
  right: 0;
  margin-bottom: 0.5rem;
}

/* pc　749px以上 */
@media (min-width: 749px) {
  nav ul {
    display: flex;
    padding-top: 0.3rem;
    margin-left: 4rem;
  }

  nav ul li a {
    display: block;
    color: #000;
    padding: 0.6rem;
  }


  nav ul li a:hover {
    color: #0087BD;

  }
	.pcnone{display: none;}
}

/* スマホ　749px以下 */
@media (max-width: 750px) {

  #g-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }


  .circle-bg {
    position: fixed;
    z-index: 100;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #76D4F2;
    transform: scale(0);
    top: -100px;
    left: calc(50% - 50px);
    transition: all .6s;
  }

  .circle-bg.circleactive {
    transform: scale(50);
  }


  #g-nav-list {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav.panelactive #g-nav-list {
    display: block;
  }



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

  #g-nav.panelactive ul {
    opacity: 1;
  }


  #g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }


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

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


  /*ボタンのためのCSS*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #0087BD;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

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

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

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

}



/*お問い合わせ------------------------------ */

#sec06 {
  padding: 3.5rem;
  display: block;
}


.contact {
  justify-content: center;
  text-align: center;
  margin: auto;
}


/* フッター------------------------------- */
footer {
  padding: 3rem 0;
}

.footerinner {
  color: #000;
  font-size: 0.875rem;
  text-align: center;
  padding-top: 0.5rem 0;
}