@charset "UTF-8";

/********************** header PC **********************/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 10;
  background: #fff;
  box-shadow: 0 0 4px rgb(115 115 115 / 30%);
}
.Hlogo {
  width: 160px;
  height: 55px;
}
.Hmenu {
  padding: 0 20px;
  font-size: 16px;
  line-height: 16px;
}
.Hmenu a {
    font-weight: 600;
}
.Hmenu a span {
    font-weight: 400;
}
.Hmenu a:hover {
  color: #00649F;
}
.Hbtn {
  width: 64px;
  height: 55px;
  padding: 0 12px 0 12px;
}
.btn-contact01 {
  position: fixed;
  top: 260px;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 5;
}
.btn-contact02 {
  position: fixed;
  top: 360px;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 5;
}
.bg-suna {
  background: url(/assets/images/common/bg-suna.jpg) top center / cover;
}
.breadcrumb {
  font-size: .9rem;
  padding: 5px 0;
}


/*READ MOREボタン設定*/
.BTN01 a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 200;
  color: #00649F;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  border: solid 1px #00649F;
  transition: all 0.6s ease 0s;
  /*letter-spacing: .15rem;*/
  background: #fff;
}
.BTN01 a:after {
  position: absolute;
  top: 13px;
  right: 5px;
  content: "";
  background: url(/assets/images/common/icon-arrow.png) no-repeat center center / contain;
  width: 8px;
  height: 14px;
  transition: all 0.6s ease 0s;
}
.BTN01 a:hover {
  background: #00649F;
  color: #fff;
  border: solid 1px #00649F;
  transition: all 0.6s ease 0s;
}
.BTN01 a:hover:after {
  top: 19px;
  right: 0;
  background: #fff;
  width: 20px;
  height: 1px;
  transition: all 0.6s ease 0s;
}

.BTN02 a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 200;
  color: #fff;
  background: #808080;
  width: 250px;
  height: 60px;
  line-height: 58px;
  /*text-align: center;*/
  padding-left: 15px;
  font-family: 'Oswald', sans-serif;
  border: solid 1px #fff;
  transition: all 0.6s ease 0s;
  letter-spacing: .15rem;
}
.BTN02 a:after {
  position: absolute;
  top: 29px;
  right: 0;
  content: "";
  background: #fff;
  width: 20px;
  height: 1px;
  transition: all 0.6s ease 0s;
}
.BTN02 a:hover {
  background: #fff;
  color: #000;
  border: solid 1px #000;
  transition: all 0.6s ease 0s;
}
.BTN02 a:hover:after {
  background: #fff;
  width: 5px;
  height: 1px;
  transition: all 0.6s ease 0s;
}



main {
  margin-top: 80px;
}
.pt-80 {
  padding-top: 80px;
}

.title-box {
  height: 78px;
  background: url(/assets/images/common/bg-nuri.png) no-repeat bottom center / 130px 38px;
}

.icon-tel {
    width: 50px;
    height: 65px;
    margin: 0 auto;
}
.BTN03 {
  background: #00649F;
  position: relative;
  width: 450px;
  height: 110px;
}
.BTN04 {
    position: relative;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 5px;
}

.bg-footer {
  background: #707070;
}
.bg-footer a {
  color: #fff;
}
.Flogo {
  width: 180px;
}


/*ページャー設定*/
.page-next {
  text-align: center;
  margin: 60px 0;
}
.pager__item {
    border: solid 1px #ccc;
    padding: 5px 10px;
    color: #ccc;
    margin: 0 3px;
}
.pager__item:hover {
    border: solid 1px #00649F;
    color: #fff;
    background: #00649F;
}
.pager__item-current {
    border: solid 1px #00649F;
    color: #fff;
    background: #00649F;
}

/* 共通のfadeIn */
.fadeIn-all {
animation-name: fadeInAnime;/*1で解説*/
animation-fill-mode:backwards;/*2で解説*/
animation-duration:1.5s;/*3で解説*/
animation-timing-function:ease;/*5で解説*/
animation-delay: 0.5s;/*6で解説*/
animation-direction:normal;/*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.fadeInTrigger {
  opacity: 0;
}
/* 共通のfadeUp */
.fadeUp-all {
animation-name: fadeUpallAnime;
animation-duration:1s;/*3で解説*/
animation-timing-function:ease;/*5で解説*/
animation-delay: 0.3s;/*6で解説*/
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpallAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/* 共通のテキストアニメ */
/*========= テキストを滑らかに出現させるためのCSS ===============*/
span.smoothText-all {
overflow: hidden;
display: block;
}
/* アニメーションで傾斜がついている文字列を水平に戻す*/
span.smoothTextTrigger-all{
transition: .8s ease-in-out;
transform: translate3d(0,100%,0) skewY(12deg);
transform-origin: left;
display: block;
}
span.smoothTextTrigger-all.smoothTextAppear-all{
    transform: translate3d(0,0,0) skewY(0);
}




/*PCのみ*/
@media (min-width: 768px) {

}



/*SPのみ*/
@media (max-width: 768px) {

    .sp_menu{
      position: fixed;
      z-index: 99;
      top: 80px;
      width: 100%;
      font-size: 1em;
      line-height:3.5em;
      text-align: center;
      background-color: #00649F;
      display: none;
      padding: 10px 0;
    }
    .sp_menu a{
      text-decoration: none;
      color: #fff;
    }
    .icon-tel {
      width: 25px;
    }
    .BTN03 {
      width: 100%;
      height: 100px;
      margin-bottom: 15px;
    }
    .Flogo {
      width: 150px;
      margin-right: 0;
    }

}