*:where(:not(html,iframe,canvas,img,svg,video,audio,input):not(svg *,symbol *)){all:unset;display:revert}*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}a,button{cursor:revert}ol,ul,menu,summary{list-style:none}ol{counter-reset:revert}img{max-inline-size:100%;max-block-size:100%}table{border-collapse:collapse}input,textarea{-webkit-user-select:auto}textarea{white-space:revert}meter{-webkit-appearance:revert;appearance:revert}:where(pre){all:revert;box-sizing:border-box}::placeholder{color:unset}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable="false"])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable="true"]){-webkit-user-drag:element}:where(dialog:modal){all:revert;box-sizing:border-box}::-webkit-details-marker{display:none}

/*
.chiron-hei-hk-<uniquifier> {
  font-family: "Chiron Hei HK", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

body {
  background-color: #fff;
  color: #333;
  font-family: 'Chiron Hei HK', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}
a {
  text-decoration: none;
}
header {
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  transition: all .4s;
  color: #333;
  background-color: #fff;
}
header > * {
  transition: all .3s;
  /* text-shadow: 0 0 3px rgba(0, 0, 0, 0.5); */
}
header h1,
header .headlogo {
  margin-left: 22px;
  font-size: 25px;
  transition: all .4s;
  font-weight: 500;
}
header nav {
  display: flex;
  align-items: center;
}
header nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav a{
  color: #333;
  font-size: 17px;
  font-weight: 500;
  padding: 0 1.8em;
  font-weight: 600;
  transition: all .4s;
}
header nav a:hover {
  color: #666;
}
/* header fixed */
header.shadow {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  color: #333;
}
header.shadow > * {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
header.fixed {
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
header.fixed h1,
header.fixed .headlogo {
  width: 300px;
}
header.fixed nav a {
  font-size: 17px;
  color: #333;
}
@media (max-width: 1000px) {
  header nav a{
    color: #333;
  }
}

/* toggle menu */

#nav_toggle {
  display: none;
  position: absolute;
  right: 13px;
  top: 6px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1;
  padding: 13px 10px 0;
}
#nav_toggle div {
  position: relative;
}
#nav_toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #222;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

header.fixed #nav_toggle span {
  background: #333;
}

#nav_toggle span:nth-child(1) {
  top: 0;
}

#nav_toggle span:nth-child(2) {
  top: 11px;
}

#nav_toggle span:nth-child(3) {
  top: 23px;
}

header .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 1.5em;
  margin-left: 1.8em;
}
header form .search {
  width: 120px;
  height: 27px;
  border-radius: 3px 0 0 3px;
  border: 1px solid #666;
}
header form .search:focus {
  outline: 0;
}
.submit-btn {
  background-color: #666;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.submit-btn::before {
  content: "\f002";
  font-family: "Font Awesome 7 Free";
  margin-right: 2px;
}

@media (max-width: 1000px) {
  header {
    height: 65px;
  }
  header h1,
  header .headlogo {
    font-size: clamp(18px, 2.5vw, 25px);
  }

  header nav {
      display: none;
  }

  header nav {
      position: absolute;
      z-index: -1;
      top: calc(-100vh - 50px);
      width: 100%;
      height: 100%;
      height: 100vh;
      text-align: center;
      padding: 0;
      display: block;
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
      background-color: rgba(255,255,255, 1);
  }
  header.open nav{
    top:0;
  }
  header.open nav ul {
      padding: 80px 0 0;
      font-size: 15px;
      flex-direction: column;
      line-height: 3;
  }
  header nav a {
    padding: 0 0;
  }
  header nav ul{
    flex-direction: column;
  }
  #nav_toggle {
      display: block;
  }
  header.open #nav_toggle span {
    background: #333;
  }
  
  .open #nav_toggle span:nth-child(1) {
      top: 11px;
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      transform: rotate(135deg);
  }

  .open #nav_toggle span:nth-child(2) {
      width: 0;
      left: 50%;
  }

  .open #nav_toggle span:nth-child(3) {
      top: 11px;
      -webkit-transform: rotate(-135deg);
      -moz-transform: rotate(-135deg);
      transform: rotate(-135deg);
  }

  .open header nav {
      /* header nav top + #mobile-head height */
      -moz-transform: translateY(calc(100vh + 40px));
      -webkit-transform: translateY(calc(100vh + 40px));
      transform: translateY(calc(100vh + 40px));
  }
  header form {
    margin: 1em auto 0;
    display: flex;
    justify-content: center;
  }
}

/* vi */
.arr {
  z-index: 1;
  position: absolute;
  bottom: 10px;
  right: 40px;
  height: 70px;
  width: 65px;
}

.arr p {
  font-size: 10px;
  color: #fff;
  text-align: left;
}
.arr img{
  width: 65px;
  height: 70px;
}

.arr img,
.arr p {
  animation: anime_ar 1.7s ease -0.8s infinite alternate;
  padding-bottom: 0;
}

@keyframes anime_ar {
  0% {
      opacity: .1;
      margin-top: 3px;
  }

  100% {
      opacity: 1;
      margin-top: 3px;
  }
}

/* top */
#top_vi {
  position: relative;
  width: 100vw;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 3em;
  /* background-image: url(../images/bg_hed_pt2.webp); */
  background-position: center 165px;
  background-size: 420px auto;
  background-color: rgba(225, 255, 185, 0);
  /* background-repeat: no-repeat; */
}
#top_vi article{
  height: calc(85vh + 0px);
  /* max-width: 1600px; */
  width: calc(100% - 60px);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#top_vi .slide_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(85vh + 0px);
}
#top_vi .slide_top .slick-list{
  border-radius: 20px;
  border: 15px solid #9dd0a0;
}
#top_vi .slide_top img {
  height: 85vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1);

}
#top_vi .title {
  text-align: center;
  
  color: #fff;
}
#top_vi .title{
  width: 90%;
  max-width: 1260px;
  margin: 0 auto 0;
  padding: 2em;
  border-radius: 50%;
}
#top_vi .title img {
  filter: drop-shadow(0 0 1px rgba(255,255,255,1));
}
/*
#top_vi .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(18, 75, 112, 0.15), rgba(0,0,0,0));
  z-index: 0;
}
*/
@media (max-width: 1050px) {
.vi .concept h2 {
  padding: 20vh 0 10px 0;
}
}
@media (max-width: 980px) {
.vi {
  background-position-x: 75%;
}
}

/* main top */
main#top {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5em 15px 0;
}
#top_vi article.front {
  max-width:815px;
  height: auto;
  margin: 5.5em auto 0;
  padding: 1em 1.8em;
  background-color:#d4ffd7;
  border-radius: 10px;
}
section#top_vi .front_txt {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1.45;
  text-align: center;
  flex-shrink: 0;
  width: 280px;
  margin-right: 1.5em;
}
section#top_vi .front_txt .txt p{
  font-size:clamp(13px, 3.5vw, 17px);
  font-weight: 600;
}
section#top_vi .front_txt .txt h2{
  font-size:clamp(28px, 5.5vw, 50px);
  letter-spacing: 0.08em;
  font-weight: 500;
}
section#top_vi .front_txt img {
  height: 115px;
  margin-left: 1.5em;
}
section#top_vi .summary {
  max-width: 575px;
  margin: .5em auto;
  text-align: justify;
}
.saku_wrap {
  text-align: center;
}
img.saku {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
img.line {
  max-width: 320px;
  width: 100%;
  margin: 2em auto;
}

@media (max-width: 980px) {
  main#top {
    padding: 1.5em 30px 0
  }
  #top_vi article {
    flex-direction: column;
  }
  section#top_vi .summary {
    margin: 1.5em auto .5em;
  }
  img.saku {
    padding: 0 15px;
  }
}

@media (max-width: 700px) {
  main#top .top_spot article {
    flex-direction: column;
  }
  main#top .top_spot article div.left,
  main#top .top_spot article div.right {
    width: 100%;
  }
  main#top .top_spot article div.left {
    margin-bottom: 40px;
  }
}


main#top h2.midashi {
  text-align: center;
  font-size: clamp(22px, 5vw, 30px);
  margin-top: 3em;
  margin-bottom: 1em;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
main#top h2.midashi span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: .7em;
  font-size: 14px;
}
main#top .top_spot article {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
main#top .top_spot article div {
  position: relative;
  height: 700px;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

main#top .top_spot article div a {
  transition: all .4s;
}
main#top .top_spot article div a:hover {
  opacity: .8;
}
main#top .top_spot article div h3{
  position: absolute;
  bottom:60px;
  right:25px;
  background-color: #fff;
  display: inline-block;
  padding: 8px .8em;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 7px;
}
main#top .top_spot article div h4 {
  background-color: #fff;
  padding: 3px .5em;
  position: absolute;
  bottom: 20px;
  right: 25px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
}
main#top .top_spot article .left a {
  display: block;
  height: 700px;
}
main#top .top_spot article .left img{
  width: 100%;
  height: 700px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
main#top .top_spot article .right {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main#top .top_spot article .right a {
  width: 100%;
  height: 330px;
  display: block;
  position: relative;
}
main#top .top_spot article .right a img {
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  width: 100%;
  height: 340px;
}
section.top_book {
  text-align: center;
}
section.top_book img{
  max-width: 540px;
  margin: 0 auto;
  border: 1px solid #ddd;
}
section.top_book .btn_book {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid #666;
  width: 270px;
  height: 50px;
  line-height: 1.2;
  margin: 1.5em auto 0;
  padding: 13px 0;
  transition: all .4s;
  background-image: url(../images/pdf.webp);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 220px center;
}
section.top_book .btn_book:hover {
  color: #999;
}
section.top_book .book_text {
  padding: 1.5em 15px;
}

/* top youtube */
section.externals {
  margin: 3em auto;
}
section.externals .yt {
  background-image: url(../images/bg_pink.webp);
  border: #ebfff4 5px solid;
  border-radius: 10px;
  padding: 2.5em 3em;
}
section.externals .yt a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebfff4;
  border-radius: 10px;
  max-width: 480px;
  padding: 1em 1.5em;
  margin: 1.8em auto 0;
  transition: all .4s;
}
section.externals .yt a:hover {
  background-color: #ddd;
}
section.externals .yt a .img {
  text-align: center;
  margin-right: 1.5em;
  flex-shrink: 0;
}
section.externals .yt a img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
}
section.externals .yt a h2 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: .7em;
  line-height: 1.2;
}
section.externals .yt a p {
  font-size: 14px;
  line-height: 1.8;
  padding-bottom: 1em;
}
section.externals .yt a p.youtube {
  padding-bottom: 0;
}
.yt_frame {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}
.yt_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.externals .letgojp a{
  margin: 2em auto;
  padding: 1.5em 2em;
  border-radius: 10px;
  border: 5px solid #ddd;
  transition: all .4s;
  text-align: center;
  display: block;
}
section.externals .letgojp a img {
  width: 160px;
}
section.externals .letgojp a h3 {
  font-size: 15px;
  font-weight: 600;
  padding: 0 0 .2em;
}
section.externals .letgojp a h2 {
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.45;
  font-weight: 700;
  padding: .5em 0 .7em;
  color: #185b7a;
}
section.top_model_course {
  margin: 5em auto 2em;
}
section.top_model_course a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 410px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  transition: all .4s;
}
section.top_model_course a:hover {
  opacity: .8;
}
section.top_model_course a img{
  border-radius: 20px;
  position: relative;
}
section.top_model_course a h2 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 500;
  height: 60px;
  padding: 0 1em;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  section.externals .yt a {
    flex-direction: column;
  }
  section.externals .yt a .img {
    margin: 0 auto .7em;
  }
  section.top_book img {
    width: 100%;
  }
  section.externals .yt {
    padding: 1.2em 1.5em;
  }
}



section.top_access {
  padding-bottom: 3em;
}
section.top_access .map {
  text-align: center;
}
section.top_access img{
  max-width: 800px;
  width: 100%;
  padding: 1em 15px;
  margin: 0 auto;
}
section.top_access .getting {
  max-width: 500px;
  margin: 0 auto;
}
section.top_access .getting dl {
  display: flex;
  align-items: center;
  margin: 1.3em 0 0;
  font-size: 17px;
}
section.top_access .getting dl dt {
  padding-left: 1em;
  display: flex;
  align-items: center;
}
section.top_access .getting .txt {
  padding-left: 62px;
}
section.top_access .getting dl i {
  color: #185b7a;
  margin: 0 .3em;
}
section.top_access .getting dl dt span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #185b7a;
  font-size: 17px;
  padding: 0;
  border-radius: 50%;
  height: 32px;
  width: 32px;
}
section.top_access .getting dl dt span i {
  color: #fff;
}
section.top_access .getting dl dd {
  padding-left: .7em;
}
.top_text {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 1.5em auto 0;
  padding: 1em 20px 1em;
  margin-bottom: 4em;
}
.top_text div{
  text-align: justify;
  font-size: 16px;
  padding-left: 2em;
}
.top_text img {
  max-width: 120px;
  width: 100%;
}

@media (max-width: 600px) {
  .top_text {
    flex-direction: column-reverse;
  }
  .top_text div {
    padding: 0 1.2em 1em;
  }
}

/* spots */
main#page {
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 0 15px 50px;
}
section#hed {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  text-align: center;
  position: relative;
  top:75px;
  margin-bottom: 75px;
}
section#hed h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}
.spots_unker {
  padding: 2em 1em;
}
.spots_unker ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.spots_unker ul li {
  margin: 0 1em;
}
.spots_unker ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5em;
  line-height: 1;
  font-size:18px;
  height: 55px;
  border-radius: 30px;
  font-weight: 500;
  background-color: #ddd;
  color: #185b7a;
  transition: all .4s;
  text-align: center;
}
.spots_unker ul li a img {
  height: 32px;
  margin-right: .6em;
}
.spots_unker ul li a:hover {
  background-color: #185b7a;
  color: #fff;
}


section#spots h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  padding: 4em 0 1.5em;
}
section#spots ul.list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 5em;
}
section#spots ul.list li img {
  width:49%;
  flex-shrink: 0;
  border-radius: 10px;
}
section#spots ul.list li .text {
  width: 49%;
  padding-left: 1em;
}
section#spots ul.list li .text h3 {
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  padding-bottom: .5em;
}
section#spots ul.list li .text p {
  font-size: 16px
}
section#spots ul.list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em 0 0;
  width:230px;
  height: 40px;
  border-radius: 12px;
  font-size:17px;
  border: 2px solid #ddd;
  transition: all .4s;
}
section#spots ul.list li a:hover {
  background-color: #185b7a;
  color: #fff;
}
section#spots ul.list li a i {
  padding-right: .3em;
}
/* feature */
section#hed.feature h1 {
  color:#333;
  padding: .2em 1em;
  height: 57px;
  font-size:clamp(22px, 3.5vw, 29px);
}
section.feature h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
}
main#page.feature {
  padding: 4em 15px 4em;
}
main#page.feature .feature_img {
  height: 480px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2em;
  margin-top: 1em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main#page.feature .feature_img h2 {
  background-color: #fff;
  font-size:24px;
  font-weight: 500;
  border-radius: 8px;
  padding: 6px .6em;
  line-height: 1.3;
  margin: 1em 1.2em 0 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
main#page.feature .feature_text {
  max-width: 900px;
  margin: 0 auto;
  padding: .5em 1em 2em;
}
main#page.feature .feature_title {
  max-width: 900px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  padding: .5em 1em .5em;
}
main#page.feature .feature_spec {
  max-width: 450px;
  margin: 0 auto;
  font-size: 15px;
  padding: .5em 1em .5em;
}
main#page.feature .feature_spec dl {
  display: flex;
  align-items: flex-start;
  border-bottom: 2px dashed #ddd;
  margin: 1.5em auto 2em;
}
main#page.feature .feature_spec dl dt {
  width:90px;
}
main#page.feature .feature_bar {
  max-width: 230px;
  margin: 4em auto 5em;
}

@media (max-width: 700px) {
  .spots_unker ul li a {
    flex-direction: column;
    height: auto;
    padding: .5em 1.5em .8em;
    font-size: clamp(13px, 3vw, 18px);
    line-height: 1.3;
  }
  .spots_unker ul li a img {
    margin: .1em auto .5em;
    flex-shrink: 0;
  }
  section#spots h2 {
    padding: 1.5em 0 1.5em;
    font-size:clamp(24px, 4.5vw, 32px);
  }
  section#hed h1 {
    font-size:clamp(29px, 6.5vw, 40px);
  }
  section#spots ul.list li {
    flex-direction: column;
  }
  section#spots ul.list li img {
    width: 100%;
  }
  section#spots ul.list li .text {
    width: 100%;
    padding: 1em 0 0;
  }
}
@media (max-width: 530px) {

}

/* footer */
footer {
  background-color: #eee;
}
footer .foot_contents {
  max-width: 1100px;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
  padding: 30px 20px 0;
}
footer .foot_logo {
  display: block;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
footer .menu {
  width: 100%;
}
footer h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 20px;
}
footer ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
  margin-bottom: 15px;
}
footer ul li {
  letter-spacing: 0.03em;
  font-size: 13px;
}
footer ul li a {
  display: inline-block;
  padding: 0 3em;
  line-height: 1;
  border-right: 1px solid #bbb;
}
footer ul li:last-child a {
  border-right: none;
}
footer .miyagi_logo {
  width: 40px;
  margin: .5em auto 0;
}
footer .miyagi {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  padding: .2em;
  text-align: center;
}
footer .miyagi img {
  padding: 0;
}
footer .copyright {
  font-size: 12px;
  text-align: center;
  padding-bottom: 10px;
}
@media (max-width: 1000px) {
  footer .txt {
    font-size: clamp(12px,1vw,1.5vw);
  }
  footer {
    padding-bottom: 100px;
  }
}
@media (max-width: 826px) {
  footer nav {
    display: none;
  }
  footer .foot_contents {
    flex-direction: column;
    justify-content: center;
  }
  footer .menu {
    width: 100%;
  }
}



/* pagenavi */
.wp-pagenavi {
	margin: 40px auto 100px;
	font-size: 12px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #77a0d1;
}
.wp-pagenavi a {
    color: #77a0d1;
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
	margin: 0 10px 0 0;
	border: solid 1px #ddd;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	line-height: 40px;
	text-align: center;
	box-sizing: border-box;
	justify-content: center;
	display: flex;
	align-items: center;
	transition: .3s;
}
.wp-pagenavi span.current {
    border: none;
    background: #2b4f5b;
    color: #fff;
}
.wp-pagenavi a.page {
	background: none;
}
.wp-pagenavi a.page:hover {
    background: #2b4f5b;
    color: #fff;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
    margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
    margin: 0 1.4em 0 0 !important;
    border-radius: 4px;
    padding: 10px 15px;
}

/* cookie */
.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: #a1803b;
  padding: 1.2em;
  box-sizing: border-box;
  z-index: 100;
  visibility: hidden;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-consent .cookie-text a{
  border-bottom: 1px solid #fff;
  margin-left: .5em;
}
.cookie-agree {
  color: #fff;
  background: #999;
  padding: .5em 1.5em;
  white-space: nowrap;
  border-radius: 4px;
  font-weight: 700;
}
.cookie-agree:hover {
  cursor: pointer;
}
.cc-hide {
  animation: hide .5s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* メディアクエリ */
@media screen and (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
}

/*fade*/
.fdup {
  transform: translate(0, 40px);
  transition: all 700ms;
  opacity: 0;
}

.fdup.effect {
  opacity: 1;
  transform: translate(0, 0);
}