*: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}

@font-face {
  font-family: 'noto';
  src: url('../font/NotoSansJP-Regular.woff2') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'noto';
  src: url('../font/NotoSansJP-Black.woff2') format('woff');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'raleway';
  src: url('../font/Raleway-SemiBold.woff2') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'raleway';
  src: url('../font/Raleway-Bold.woff2') format('woff');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'raleway';
  src: url('../font/Raleway-Black.woff2') format('woff');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: 'pop';
  src: url('../font/Poppins-Regular.woff2') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'pop';
  src: url('../font/Poppins-Medium.woff2') format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'pop';
  src: url('../font/Poppins-Bold.woff2') format('woff');
  font-weight: bold;
  font-display: swap;
}

body {
  background-color: #fff;
  color: #333;
  font-family: 'pop', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}
#load {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  position: fixed;
  z-index: 9999;
}
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;
  background-color: #fff;
  font-family: 'raleway', Arial, Helvetica, sans-serif;
}
header > * {
  transition: all .3s;
}
header h1,
header .headlogo {
  margin-left: 22px;
  font-size: 25px;
  transition: all .4s;
  font-weight: 600;
}
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: #999;
}
/* header fixed */
header.shadow {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
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;
}

@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;
  padding: 5px;
}
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: 25px;
  height: 100px;
  width: 45px;
}

.arr p {
  font-size: 10px;
  color: #fff;
  text-align: left;
}
.arr img{
  max-width: 20px;
  height: 70px;
}

.arr img,
.arr p {
  animation: anime_ar 1s 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;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#top_vi .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
}
#top_vi .slide img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#top_vi .title {
  text-align: center;
  font-family: 'raleway';
  color: #fff;
}
#top_vi .title h1{

  font-size:clamp(18px, 3.5vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  padding: 0 1em .5em;
  filter: drop-shadow(0 0 4px rgba(0,0,0,.3));
}
#top_vi .title h2{
  font-size:clamp(26px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  padding: 0 1em;
  filter: drop-shadow(0 0 4px rgba(0,0,0,.3));
}

@media (max-width: 1050px) {
.vi .concept h2 {
  padding: 20vh 0 10px 0;
}
}
@media (max-width: 980px) {
.vi {
  background-position-x: 75%;
}
}

/* top tourpackage */
main#top {
  background-color: #2b4f5b;
  overflow: hidden;
}
main#top h2 {
  background-color: #fff;
  color: #2b4f5b;
  font-size:18px;
  border-radius: 8px;
  padding: .5em 1em;
  font-weight: 600;
  font-family: 'raleway';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 42px;
  margin: 0 auto;
}
main#top h3 {
  text-align: center;
  font-size: clamp(22px, 2.5vw, 36px);
  padding: 1.5em 1em .3em;
  font-weight: 600;
}
main#top .top_tours {
  color: #fff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
}
main#top .top_tours a {
  position: relative;
  display: block;
  margin: 0 10px;
  font-family: 'raleway';
  height: 550px;
}
main#top .top_tours a img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top:0;
  left:0;
  z-index: 1;
}
main#top .top_tours a .txt {
  position: absolute;
  bottom:30px;
  left:3%;
  width: 94%;
  z-index: 1;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
main#top .top_tours a h4 {
  line-height: 1.35;
  color:#2b4f5b;
  font-size: 26px;
}
main#top .top_tours a h4 span {
  background-color: #fff;
  padding: .1em 5px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
main#top .top_tours a p {
  line-height: 1.35;
  padding: .1em 5px;
  background-color: #fff;
  color:#2b4f5b;
  font-size: 16px;
  margin-bottom: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
main#top .top_tours .slide-arrow {
  position: absolute;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #2b4f5b;
  opacity: .95;
  color: #fff;
  font-size:24px;
  border-radius: 50%;
  z-index: 99;
}
main#top .top_tours .slide-arrow.next-arrow {
  right: -40px;
  top:calc(50% - 40px);
}
main#top .top_tours .slide-arrow.prev-arrow {
  left: -40px;
  top:calc(50% - 40px);
}
main#top .top_tours .slide-arrow:hover {
  opacity: 1;
}
.slick-dots {
  bottom:-30px;
}
.slick-dots li.slick-active button::before {
  color:#fff;
  opacity: 1;
}
.slick-dots li button::before {
  color:#aaa;
  opacity: .5;
}
main#top .top_tours .btn a,
section.top_news .txt a{
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 60px;
  color: #2b4f5b;
  padding-right: 40px;
  background-image: url(../images/arr_btn.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 40px 90px;
  font-size: 18px;
  font-weight: 600;
  margin: 120px auto 70px;
}

@media (max-width: 1000px) {
  main#top .top_tours a img,
  main#top .top_tours a {
    height: 50vw;
  }
}
@media (max-width: 800px) {
  main#top .top_tours a p {
    font-size: clamp(12px, 2vw, 16px);
  }
  main#top .top_tours a h4 {
    font-size: clamp(18px, 2.5vw, 26px);
  }
  main#top .top_tours a .txt {
    bottom:13px;
  }
}
@media (max-width: 550px) {
  main#top .top_tours .btn a,
  section.top_news .txt a {
    font-size: clamp(14px, 2.5vw, 18px);
    width: 280px;
    height: 50px;
  }
}

/* top about */
section.top_about {
  margin: 100px auto;
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
section.top_about div {
  width: 49%;
}
section.top_about h2 {
  font-size: 36px;
  font-weight: 600;
  padding: 1.5em 0 .8em;
  width: 100%;
  background-color: transparent;
}
section.top_about p {
  line-height: 1.9;
  font-size: 17px;
  padding-right: 1em;
  padding-bottom: 1em;
}

@media (max-width: 1250px) {
  section.top_about {
    padding: 1em 20px;
  }
}
@media (max-width: 800px) {
  section.top_about {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    padding: 1em 2em;
  }
  section.top_about div {
    width: 100%;
  }
  section.top_about .img {
    text-align: center;
  }
  section.top_about div img{
    width: 70%;
    margin: 2em auto 0;
  }
}

/* top_news */
section.top_news {
  max-width: 1000px;
  margin: 50px auto 0;
  padding-bottom: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}
section.top_news .txt {
  width: 35%;
}
main#top section.top_news h2 {
  font-size: 26px;
  font-weight: 600;
  background-color: transparent;
  color: #fff;
  width: 100%;
  justify-content: flex-start;
  padding: 0 0 .2em;
  height: auto;
}
section.top_news .txt a{
  width: 210px;
  margin: 30px auto 0 0;
}
section.top_news .line {
  padding-top: 1em;
}
section.top_news .line dl {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2em;
}
section.top_news .line dl dt {
  width: 130px;
  flex-shrink: 0;
  height: 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1em;
  border: 1px solid #fff;
  border-radius: 4px;
}
section.top_news .line dl dd {
  text-align: left;
  margin-left: 1em;
  font-size: 16px;
}
section.top_news .line dl dd a {
  color: #fff;
}

@media (max-width: 800px) {
  section.top_news {
    flex-direction: column;
  }
  section.top_news .txt {
    width:100%;
  }
  main#top section.top_news h2 {
    justify-content: center;
    font-size: clamp(29px, 2.5vw, 36px);
  }
  section.top_news .txt a {
    margin: 30px auto 0;
  }
  section.top_news .line {
    width:100%;
  }
  section.top_news .line dl {
    flex-direction: column;
    margin-top: 1em;
  }
  section.top_news .line dl dt {
    margin-bottom: .3em;
  }
}

/* contact */

section.contact {
  max-width: 1000px;
  margin: 50px auto;
}
section.contact form {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.contact h2 {
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-family: 600;
  color: #2b4f5b;
  padding: 10px 1em 40px;
  font-weight: 600;
}
section.contact form div.box {
  width: 47%;
}
section.contact form p.midashi {
  color: #2b4f5b;
  font-size:16px;
  font-weight: 600;
  line-height: 1.9;
  padding-bottom: .2em;
  padding-top: 1.5em;
  border: 0;
}
section.contact form textarea {
  border: 1px solid #999;
  width: 100%;
  height: 250px;
}
section.contact form p.midashi span {
  color: #974c56;
  font-size: 13px;
  padding-left: .2em;
}
section.contact form input {
  border: 1px solid #999;
  height: 45px;
  width: 100%;
}
section.contact form .submit {
  width: 100%;
  text-align: center;
  padding-top: 30px;
}
section.contact form .submit input{
  width: 200px;
  height: 55px;
  background-color: #2b4f5b;
  border: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  border-radius: 8px;
  margin: 20px auto 20px;
  text-align: center;
  cursor: pointer;
  padding-right: 15px;
  background-image: url(../images/arr_btn_w.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 30px 50px;
  letter-spacing: 0.05em;
}
section.contact form .submit p {
  display: flex;
  flex-direction: column;
}
section.contact form .submit span label input{
  height: 18px;
  width: 18px;
  margin-right: 10px;
  position: relative;
  top: 2px;
  cursor: pointer;
}
section.contact form .submit span label a {
  color: #27726e;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 1050px) {
  section.contact h2 {
    font-size:clamp(30px, 2.5vw, 40px);
  }
  section.contact {
    padding: 0 2em;
  }
}
@media (max-width: 740px) {
  section.contact form {
    flex-direction: column;
  }
  section.contact form div.box {
    width: 100%;
  }
}

/* packages page */
main#page {
  max-width: 100%;
  padding: 65px 0 50px;
  text-align: left;
  margin: 0 auto;
}
main#page #page_hed {
  margin: 0 auto;
  max-width: 1200px;
  height: auto;
  min-height: 600px;
  background-size: cover;
  background-position: center center;
  aspect-ratio: 3/2;
  padding: 35px 30px;
  font-family: 'raleway';
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

main#page #page_hed .cat {
  background-color: #fff;
  color: #2b4f5b;
  padding: .2em 10px;
  line-height: 1.3;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 600;
  display: flex;
}
main#page #page_hed h1 {
  line-height: 1.45;
  margin-top: .2em;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  display: inline-block;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
main#page #page_hed h1 span {
  background-color: #fff;
  color: #2b4f5b;
  padding: .2em 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
main#page #summary {
  margin: 0 auto;
  max-width: 1200px;
}
main#page #summary h2 {
  font-family: 'raleway';
  color: #2b4f5b;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  padding: 1.1em 0 .6em;
  line-height: 1.45;
}
main#page #summary .summary {
  padding-bottom: 3em;
}
main#page #summary .img {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  margin-bottom: 3em;
}
main#page #summary .img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center center;
}
main#page #detail {
  width: 100%;
  padding: 3em 15px;
  background-color: #e3eff1;
}
main#page #detail h2 {
  text-align: center;
  font-weight: 600;
  color: #333;
  font-size: 34px;
  padding-bottom: 1.5em;
}
main#page #detail dl {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #aaa;
  padding-top: 1.5em;
  padding-bottom: 1em;
}
main#page #detail dl:last-child {
  border-bottom: none;
}
main#page #detail dl dt {
  width: 30%;
  font-size: 16px;
  font-weight: 600;
  color: #2b4f5b;
}
main#page #detail dl dd {
  width: 68%;
  font-size: 16px;
  line-height: 1.9;
}
main#page #detail dl dd p{
  padding-bottom: 1em;
}
main#page #detail dl dd strong {
  font-weight: bold;
}
main#page #detail dl dd iframe {
  width: 100%;
}

@media (max-width: 1250px) {
  main#page #summary {
    padding: 0 2em;
  }
  main#page #detail {
    padding: 3em 2em;
  }
}
@media (max-width: 740px) {
  main#page #detail dl {
    flex-direction: column;
  }
  main#page #detail dl dt {
    width: 100%;
    font-weight: 700;
    margin-bottom: 1em;
  }
  main#page #detail dl dd {
    width: 100%;
  }
  main#page #page_hed {
    aspect-ratio: auto;
  }
}

/* packages list */
section#packages {
  max-width: 1200px;
  padding: 2em 1em 3em;
  margin: 0 auto;
}

section#packages h2 {
  padding: 0 0 2.5em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#packages h2 span{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b4f5b;
  padding: 0 1.5em;
  border-radius: 25px;
  font-size: clamp(16px, 2vw, 22px);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

section#packages ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
section#packages ul li {
  margin-bottom: 1.5em;
  line-height: 1.45;
}
section#packages ul li h3 {
  font-size: 15px;
  color: #333;
  font-weight: 600;
}
section#packages ul li .cat {
  display: inline-block;
  font-size:11px;
  font-weight: 600;
  color: #2b4f5b;
  border: 1px solid #adc9d3;
  padding: .1em 1em;
  border-radius: 3px;
  margin: .2em 0 .5em;
}
section#packages ul li a {
  transition: all .4s;
}
section#packages ul li a:hover {
  opacity: .7;
}
section#packages ul li img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center center
}
a.unker {
  padding-top: 40px;
  display: block;
}

@media (max-width: 800px) {
  section#packages ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }
}
@media (max-width: 420px) {
  section#packages ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
  }
}


/* archive news */

.news_title h1 {
  margin: 50px auto;
  text-align: center;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  padding: 0 1.5em;
}
.news_title h1.activity {
  margin: 50px auto 0;
}
section.news_list {
  max-width: 1200px;
  padding: 2em 1em;
  margin: 0 auto;
}
section.news_list dl {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2em;
}
section.news_list dl dt {
  width: 130px;
  height: 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1em;
  border: 1px solid #999;
  border-radius: 4px;
  flex-shrink: 0;
}
section.news_list dl.search dt {
  letter-spacing: 0.02em;
}
section.news_list dl dd {
  text-align: left;
  margin-left: 1em;
  font-size: 16px;
}
section.news_list dl dd a {
  color: #333;
}

@media (max-width: 400px) {
  section.news_list dl {
    flex-direction: column;
  }
  section.news_list dl dt {
    margin-bottom: .5em;
  }
}

/* news single */
.news_single {
  max-width: 1100px;
  margin: 2em auto;
}
.news_single .time {
  font-size: 14px;
}
.news_single h1 {
  margin: 5px auto 40px;
  text-align: left;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  font-size: 32px;
}
.news_single article {
  padding: 0 0 8em;
}
.backlist {
  display: inline-block;
  margin-bottom: 2em;
  border: 1px solid #999;
  line-height: 1.2;
  padding: .7em 1em;
  border-radius: 4px;
}

@media (max-width: 1140px) {
  .news_single {
    padding: 0 2em;
  }
  .news_single h1 {
    font-size: clamp(22px, 2.5vw, 36px);
  }
}

.news_single article p {
  padding-bottom: 1em;
}
.news_single article b,
.news_single article strong{
  font-weight: 700;
}
.news_single article h2 {
  font-size: 25px;
  font-weight: 800;
  padding: 1em 0 .2em;
}
.news_single article h3 {
  font-size: 22px;
  font-weight: 600;
  padding: 1em 0 .2em;
}
.news_single article h4 {
  font-size: 18px;
  font-weight: 500;
  padding: .7em 0 .2em;
}


/* 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;
  font-family: 'raleway';
}
footer .menu {
  width: 100%;
}
footer h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'raleway';
  padding-bottom: 20px;
}
footer ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: 'raleway';
  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: 11px;
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 5px;
}
@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);
}