* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.content {
  width: 98%;
  max-width: 1024px;
  margin: 0 auto;
}

.header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  border-bottom: solid 1px #03827D;
}

main {
  margin-top: 60px;
}

.header_body {
  display: flex;
}

.header_logo {
  margin: 0 1rem;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_logo img {
  width: 200px;
  height: auto;
}




.nav_pc {
  width: 100%;
  color: #03827D;
  background-color: #fff;
  margin: 0 0 0 auto;
}

.nav_pc ul {
  list-style: none;
  margin: 0;
}

.nav_pc a {
  text-decoration: none;
  color: #03827D;
  font-size: 16px;
  transition: all .3s;
}

.nav_pc-items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}

.nav_pc-item {
  height: 60px;
  padding: 0 30px;
  position: relative;
  transition: all .3s;
}

.nav_pc-item:hover {
  opacity: 0.9;
  background-color: #03827D;
}

.nav_pc-item:hover > a {
  color: #fff;
}

.nav_pc-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.nav_pc-child {
  display: none;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}

.nav_pc-item:hover .nav_pc-child {
  display: block;
}

.nav_pc-child-item {
  background-color: #03827D;
  height: 60px;
  transition: all .3s;
  position: relative;
}

.nav_pc-child-item:hover {
  opacity: 0.9;
  background-color: #03827D;
}

.nav_pc-child-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}


/* header_mobile */
.header_sp_nav {
  display: none;
}

@media screen and (max-width: 950px) {
  main {
    margin-top: 50px;
  }

  .nav_pc {
    display: none;
  }

  .header_logo {
    height: 50px;
  }

  .nav_pc ul {
    height: 50px;
  }

  .header_logo img {
    width: 120px;
  }

  .header_sp_nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .2s ease-in-out;
  }

  #hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 25px;
    margin: auto 1rem auto auto;
  }

  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #03827D;
    transform: translateY(-50%);
  }

  #hamburger::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #03827D;
  }

  #hamburger::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #03827D;
  }

  .header_sp_nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    list-style-type: none;
    margin: 0;
  }

  .header_sp_nav li {
    margin: 0;
    padding: 0;
  }

  .header_sp_nav li span {
    font-size: 15px;
    color: #fff;
  }

  .header_sp_nav li a, .header_sp-nav li span {
    display: block;
    padding: 15px 0;
    color: #03827D;
  }

  /* close-icon */
  .header_sp_nav .close {
    position: relative;
    padding-left: 20px;
  }

  .header_sp_nav .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #03827D;
    transform: rotate(45deg);
  }

  .header_sp_nav .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #03827D;
    transform: rotate(-45deg);
  }

  .toggle {
    transform: translateY(0);
    opacity: 1;
  }
}


/* footer */
.footer {
  background-color: #f6f6f6;
  padding: 2rem 0;
}

.footer_sns {
  list-style: none;
  display: flex;
  flex-flow: column;
  margin: 0 0 1rem;
}

.footer_sns_msg {
  text-align: center;
}

.footer_sns_link {
  list-style: none;
  display: flex;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}

.footer_sns_link-item {
  display: block;
  margin: 0.2rem auto;
  max-width: 75px;
  min-width: 60px;
}

.footer_sns_link-item a, .footer_sns_link-item a:link, .footer_sns_link-item a:visited, .footer_sns_link-item a:hover, .footer_sns_link-item a:active {
  color: #fff;
  display: block;
  background-color: #000000;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 2rem;
  padding: .5rem;
}


.footer_pc_nav {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 0 0 2rem;
  border-bottom: 1px solid #000000;
  margin: 0 0 1rem;
}

.footer_pc_nav li {
  display: block;
  margin: 0 1rem 0 0;
  font-size: 0.9rem;
}

.footer_pc_nav a {
  color: #000000;
  text-decoration: none;
}

.footer_copyright {
  font-size: 11px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 950px) {
  .footer {
    padding: 1rem 0;
  }

  .footer_pc_nav {
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #000000;
    padding: 0 0 0.5rem;
    margin: 0 0 0.5rem;
    text-align: center;
  }

  .footer_pc_nav li {
    margin: 0 0 0.2rem;
  }
}

/* page-top float button */
#pageTop {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 1000;
}

#pageTop i {
  padding-top: 6px
}

#pageTop a {
  display: block;
  padding: 3px 0 0 1px;
  border-radius: 30px;
  width: 35px;
  height: 35px;
  background-color: #03827D;
  opacity: 0.7;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* pager desine */
.pagination {
  margin: 0 0 32px;
}

.page-numbers {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 2rem;
  margin-left: 0.3rem;
  text-decoration: none;
  border: 1px solid #03827D;
  color: black;
}

.dots {
  border: none;
}

.current {
  background-color: #03827D;
  color: #fff;
}