@charset "UTF-8";
/* sp_navi */
/* ============================================ */
.sp_header {
  display: block;
  position: absolute;
  width: 100%;
  height: 65px;
  z-index: 40;
  padding-top: 15px;
}

.pc_navi {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp_header {
    height: 65px;
    padding: 15px 0;
  }
}
@media screen and (min-width: 1000px) {
  .sp_header {
    display: none;
  }
}
/* top_logo */
.sp_logo {
  padding-left: 15px;
}
.sp_logo h1 {
  width: 230px;
  height: 35px;
}
.sp_logo h1 a {
  display: block;
  width:180px;
  /* height: 100%; */
  text-indent: -99999px;
  overflow: hidden;
  background: url(../images/common/logo.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (min-width: 768px) {
  .sp_logo h1 {
    width: 300px;
    height: 38px;
  }
}
/* ハンバーガーボタン */
.sp_navi_area {
  position: absolute;
  right: 15px;
  top: 2px;
}

@media screen and (min-width: 768px) {
  .sp_navi_area {
    position: absolute;
    right: 20px;
    top: 13px;
  }
}
.openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 45px;
  height: 50px;
  border-radius: 5px;
  z-index: 99999;
}

@media screen and (min-width: 768px) {
  .openbtn1 {
    width: 53px;
    height: 62px;
  }
}
/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 70%;
}

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

@media screen and (min-width: 768px) {
  .openbtn1 span:nth-of-type(1) {
    top: 9px;
    height: 3px;
  }
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

@media screen and (min-width: 768px) {
  .openbtn1 span:nth-of-type(2) {
    top: 18px;
    height: 3px;
  }
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

@media screen and (min-width: 768px) {
  .openbtn1 span:nth-of-type(3) {
    top: 27px;
    height: 3px;
  }
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background: #fff;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
  background: #fff;
}

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

.openbtn1::after {
  content: "MENU";
  color: #fff;
  position: absolute;
  bottom: -8px;
  font-size: 10px;
  font-weight: 600;
  right: -3px;
}

@media screen and (min-width: 768px) {
  .openbtn1::after {
    bottom: 6px;
    font-size: 11px;
    right: 1px;
  }
}
.openbtn1.active::after {
  color: #fff;
}

/* SP_navi_li */
/* ============================================ */
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  bottom: -120%;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #2E90C3;
  /*動き*/
  transition: all 0.6s;
  opacity: 0.8;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #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: #fff;
  text-decoration: none;
  padding: 20px;
  display: block;
  /* text-transform: uppercase; */
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
#g-nav li a span {
  display: block;
  font-size: 2rem;
  line-height: 0.5;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 7px;
}

/* pc_navi */
/* ============================================ */
@media screen and (min-width: 1000px) {
  .pc_navi {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-left: 55px;
    padding-right: 55px;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    height: 180px;
    transition-duration: 0.4s;
  }
}
.top_logo {
  margin-top: 10px;
}
.top_logo h1 {
  width: 230px;
  /* height: 56px; */
}
.top_logo h1 a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -99999px;
  overflow: hidden;
  background: url(../images/common/logo.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (min-width: 768px) {
  .top_logo {
    margin-top: 0;
  }
}
.pc_navi_logo {
  width: 150px;
  display: inline-block;
}

.pc_na_li {
  width: calc(100% - 305px);
  display: flex;
  float: right;
  justify-content: flex-end;
  margin-top: 20px;
  margin-bottom: 20px;
}
.pc_na_li a {
  text-decoration: none;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  display: block;
  position: relative;
  height: 100%;
  letter-spacing: 0.05em;
  transition-duration: 0.3s;
  color: #fff;
}
.pc_na_li a span {
  display: block;
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}
.pc_na_li li {
  text-align: center;
  position: relative;
  margin-right: 18px;
}
@media screen and (min-width: 768px) {
  .pc_na_li {
    width: 100%;
    display: flex;
    float: right;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
  .pc_na_li a {
    text-decoration: none;
    text-align: center;
    padding: 10px 18px;
    font-size: 1.4rem;
    line-height: 1.6;
    display: block;
    position: relative;
    height: 100%;
    letter-spacing: 0.05em;
    transition-duration: 0.3s;
  }
  .pc_na_li a span {
    display: block;
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
  }
  .pc_na_li li {
    text-align: center;
    position: relative;
    margin-right: 0;
  }
  .pc_na_li li:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1340px) {
  .pc_na_li a span {
    display: block;
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 0;
    /* font-weight: bold; */
  }
}
.pc_na_li.current a,
.pc_na_li a:hover {
  color: #1C479C;
}

.page_pc_na_li.current a,
.page_pc_na_li a:hover {
  color: #fff;
}

.pc_na_li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #1C479C;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}

.pc_na_li.current a::after,
.pc_na_li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

.pc_f_navi {
  width: 100%;
  font-size: 14px;
  margin-top: 25px;
  margin-bottom: 0;
}

/* ==================================
p a g e - t o p
================================= */
.page_top {
  height: 270px;
  position: relative;
  background-color: #1C479C;
  margin-bottom: 40px;
}
.page_top h1 {
  font-size: 4.5rem;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.page_top h1 span {
  font-weight: normal;
  font-size: 2rem;
  display: block;
  margin-top: 10px;
  letter-spacing: 0.1rem;
}

@media screen and (min-width: 768px) {
  .page_top {
    height: 330px;
    margin-bottom: 120px;
  }
  .page_top h1 {
    font-size: 5rem;
    bottom: 30px;
    left: 20px;
    color: #fff;
    letter-spacing: 0.2rem;
  }
  .page_top h1 span {
    font-size: 2.2rem;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .page_top h1 {
    left: 55px;
  }
}
/*
#header {
  transition-duration: 0.3s;
}

.header-wrapper {
  transition-duration: 0.4s;
}
*/
#header.fixed .header-wrapper {
  position: fixed;
  z-index: 50;
  width: 100%;
}

#header.fixed .sp_header {
  transition-duration: 0.4s;
}

#header.fixed .header-wrapper .sp_header {
  background: rgb(248, 249, 249);
  height: 62px;
  box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.5);
}

#header.fixed .header-wrapper .sp_header .openbtn1 span{
  background: black;
}

#header.fixed .header-wrapper .sp_header .openbtn1::after{
  color: black;
}


#header.fixed .header-wrapper .header-logo {
  transition-duration: 0.4s;
}

#header.fixed .header-wrapper .sp_logo h1, #header.fixed .header-wrapper .header-logo p {
  width: 200px;
}

@media screen and (min-width: 768px) {
  #header.fixed .header-wrapper .sp_header {
    position: fixed;
    z-index: 50;
    width: 100%;
  }
  #header.fixed .header-wrapper .sp_header .sp_logo h1 {
    transition-duration: 0.4s;
    height: 34px;
  }
  #header.fixed .header-wrapper .sp_header .sp_logo h1, #header.fixed .header-wrapper .header-logo p {
    width: 235px;
  }
  #header.fixed .header-wrapper .sp_header .sp_navi_area {
    top: 7px;
    transition-duration: 0.4s;
  }
  #header.fixed .header-wrapper .sp_header .sp_navi_area .openbtn1 {
    width: 47px;
    height: 62px;
    transition-duration: 0.4s;
  }
  #header.fixed .header-wrapper .sp_header .sp_navi_area .openbtn1 span:nth-of-type(1) {
    top: 8px;
    transition-duration: 0.4s;
  }
  #header.fixed .header-wrapper .sp_header .sp_navi_area .openbtn1 span:nth-of-type(2) {
    top: 16px;
    transition-duration: 0.4s;
  }
  #header.fixed .header-wrapper .sp_header .sp_navi_area .openbtn1 span:nth-of-type(3) {
    top: 25px;
    transition-duration: 0.4s;
  }
  #header.fixed .header-wrapper .sp_header .sp_navi_area .openbtn1::after {
    bottom: 8px;
    right: -3px;
    transition-duration: 0.4s;
  }
}
@media screen and (min-width: 1340px) {
  #header.header-wrapper {
    position: fixed;
    z-index: 50;
    width: 100%;
  }
  #header.fixed .header-wrapper .pc_navi {
    background: rgb(248, 249, 249);
    height: 80px;
    box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.5);
  }
  #header.fixed .header-wrapper .header-logo {
    margin-top: 0px;
  }
  #header.fixed .header-wrapper .header-logo h1, #header.fixed .header-wrapper .header-logo p {
    width: 200px;
  }

  #header.fixed .header-wrapper .pc_na_li a {
    color: black;
    font-size: 1rem;
  }


  #header.fixed .header-wrapper .pc_na_li a span {
    font-size: 1.7rem;
  }
}