/* @import url("https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;600;700;900&family=Zen+Kaku+Gothic+Antique:wght@300;400;700;900&display=swap"); */

.catch,
#Wrapper_page #island_mv ul li a,
#Wrapper_page #islandsVisualFull h1 span,
#new_theme ul li a h4 span,
#content>.search form h2 .catch,
#content>.search form .hottag h3 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

.min-catch,
#special_block ul li span {
  font-family: 'Kaisei HarunoUmi', serif;
}

.gothic,
html body,
.article_data .text p {
  font-family: 'Noto Sans JP', sans-serif;
}

.mincho,
#Wrapper_page #island_mv ul li a,
#Wrapper_page #island_mv ul li h5,
#Wrapper_page #okinawa_ritou .text,
#Wrapper_page #island_list .list_link h3,
#Wrapper_page #tourist_spots .article_data .text h3,
#Wrapper_page #tourist_spots .article_data .text p,
#Wrapper_page #island_access_data .data_areas>div h3 b,
#Wrapper_page #island_info .map_data .text h3 span,
#new_article .article_data .text h3,
#area_map .map,
.article_data .text h3,
.single_head h1,
.page-concept #content h2 {
  font-family: 'Noto Serif JP', serif;
}

.pc {
  display: block;
}

.pc.inline {
  display: inline;
}

.sp {
  display: none;
}

@keyframes anime1 {
  from {
    opacity: .5;
    transform: scale(0.9, 0.9);
  }

  to {
    opacity: 1;
    transform: scale(1, 1);
  }
}

@keyframes anime2 {
  from {
    color: #589c94;
  }

  to {
    color: #eda966;
  }
}

#loading {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  transition: .5s;
}

#loading #load_sanpo {
  animation: anime1 1s ease 0s infinite alternate;
  transform-origin: center;
}

#loading #load_sanpo p {
  animation: anime2 1s ease 0s infinite alternate;
  font-family: cursive;
  font-size: 200%;
  padding: 3% 0;
  color: #589c94;
}

#loading.end {
  transition: all .5s ease;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

@media screen and (min-width: 1300px) {
  html body {
    font-size: 16px;
  }
}

@media screen and (max-width: 1300px) {
  html body {
    font-size: 1.2vw;
  }
}

@media screen and (max-width: 767px) {
  html body {
    font-size: 2vw;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  html body {
    font-size: 3.5vw;
  }
}

html body * {
  box-sizing: border-box;
}

html img {
  max-width: 100%;
}

html a {
  transition: .3s;
}

html a:hover {
  text-decoration: .3s;
}

.single .inner,
.inner {
  max-width: 1300px;
  margin: auto;
  padding: 0 2%;
  width: 100%;
}

.header_nav {
  position: fixed;
  width: 100%;
  max-width: 100vw;
  z-index: 10000;
  background: white;
  top: 0;
}

.header {
  padding: 5px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header .gNavLogo {
  width: 25%;
}

.header nav {
  width: 60%;
  padding: 0 1%;
  margin: auto;
}

.header nav ul {
  display: flex;
  justify-content: flex-end;
}

.header nav ul li {
  padding: 0 2%;
  min-width: 100px;
  text-align: center;
}

@media screen and (max-width: 1300px) {
  .header nav ul li {
    min-width: inherit;
  }
}

.header nav ul li a {
  color: #333;
}

.header nav ul li a:hover {
  color: #444;
}

.header nav ul li.has_sub {
  cursor: pointer;
  position: relative;
}

.header nav ul li.has_sub .viw_sub_btn {
  position: relative;
  margin-right: 10px;
  display: inline-block;
}

.header nav ul li.has_sub .viw_sub_btn:after {
  content: "";
  width: 8px;
  height: 0;
  padding-top: 8px;
  border-left: 1px solid #888;
  border-bottom: 1px solid #888;
  position: absolute;
  top: 20%;
  right: -15%;
  transform: rotate(-45deg);
  transition: .3s;
}

.header nav ul li.has_sub .viw_sub_btn:hover:after {
  top: 25%;
  transition: .3s;
}

.header nav ul ul.sub_list {
  display: none;
  position: absolute;
  width: 120%;
  top: 120%;
  left: 50%;
  background: white;
}

.header nav ul ul.sub_list li {
  transition: .3s;
  padding: 10px;
}

.header nav ul ul.sub_list li:hover {
  transition: .3s;
  background-color: #eee;
}

.header nav ul ul.sub_list a {
  padding: 5% 0;
  display: block;
  margin-right: 10px;
  position: relative;
}

.header nav ul ul.sub_list a:after {
  content: "";
  width: 8px;
  height: 0;
  padding-top: 8px;
  border-left: 1px solid #888;
  border-bottom: 1px solid #888;
  position: absolute;
  top: 45%;
  right: -5px;
  transform: rotate(-135deg);
  transition: .3s;
}

.header nav ul ul.sub_list a:hover:after {
  right: 0;
  transition: .3s;
}

.header nav ul ul.sub_list.view {
  display: block;
  position: absolute;
}

.header .search_block {
  width: 15%;
}

.header .search_block form {
  display: flex;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 15px;
  margin-left: 10%;
}

.header .search_block form .text {
  width: 100%;
  border: none;
  background: none;
  padding: 2% 10%;
}

.header .search_block form .submit {
  background: none;
  border: none;
  background-image: url("../img/2022/search.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  padding: 2% 10%;
}

.header .topsns,
.header .sns {
  width: 10%;
  display: flex;
  justify-content: center;
}

.header .topsns a,
.header .sns a {
  padding: 0 5%;
  display: block;
}

div#mainImage>img.mvlogo {
  max-width: 300px;
}

.keyword_block {
  padding: 2% 0;
  max-height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.keyword_block h2 {
  width: 150px;
  text-align: center;
  border-right: 1px solid #ccc;
  margin-right: 50px;
}

.keyword_block.view .word_block {
  display: block;
}

.keyword_block .word_block {
  overflow: hidden;
  width: calc(100% - 200px);
  display: none;
}

.keyword_block .word_block a {
  color: #888;
}

.scroll_set {
  overflow: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.scroll_set::-webkit-scrollbar {
  height: 0px;
  transition: .3s;
}

.scroll_set:active::-webkit-scrollbar {
  height: 1px;
}

.scroll_set::-webkit-scrollbar-track {
  background-color: darkgrey;
}

.scroll_set::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.scroll_set>div {
  width: 100%;
}

.scroll_set .hidden_block {
  display: flex;
  flex-wrap: wrap;
}

.scroll_set .hidden_block a {
  display: inline-block;
  margin-right: 30px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

.scroll_set .hidden_block a:hover {
  text-decoration: none;
  color: #333;
}

.scroll_set .hidden_block a span {
  display: block;
  color: #333;
  text-align: left;
  font-size: 110%;
  padding: 5% 0;
}

.scroll_set .hidden_block a:focus {
  outline: none;
}

#topWrapper section#sp_serach {
  background: #5baada;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

#topWrapper section#sp_serach form {
  background-color: white;
  display: flex;
  justify-content: center;
  border: 1px solid #5baada;
  border-radius: 15px;
  margin-left: 10%;
}

#topWrapper section#sp_serach form .text {
  width: 100%;
  border: none;
  background: none;
  padding: 2% 10%;
}

#topWrapper section#sp_serach form .submit {
  background: none;
  border: none;
  background-image: url("../img/2022/search_blue.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: 2% 10%;
  margin: 2%;
}

#Wrapper_page {
  margin-top: 100px;
}

#Wrapper_page .header_nav {
  top: 0;
}

#Wrapper_page #island_mv .slick-prev:before,
#Wrapper_page #island_mv .slick-next:before {
  width: 40px;
  height: 0;
  padding-top: 40px;
  display: block;
  color: #333;
  content: "";
  border-right: 3px solid #ccc;
  border-bottom: 3px solid #ccc;
  transform: rotate(-45deg);
}

#Wrapper_page #island_mv .slick-next {
  right: 50px;
  z-index: 3;
}

#Wrapper_page #island_mv .slick-prev {
  z-index: 3;
  left: 50px;
}

#Wrapper_page #island_mv .slick-prev:before {
  transform: rotate(135deg);
}

@media screen and (min-width: 1300px) {
  #Wrapper_page #island_mv .slider-area {
    overflow: hidden;
  }

  #Wrapper_page #island_mv .slick-slide {
    max-width: 1300px;
    width: 100% !important;
  }

  #Wrapper_page #island_mv .slick-current {
    max-width: 1300px;
    width: 100% !important;
    margin: auto;
  }

  #Wrapper_page #island_mv .slick-next {
    right: calc(50% - 550px);
  }

  #Wrapper_page #island_mv .slick-prev {
    left: calc(50% - 550px);
  }
}

#Wrapper_page #island_mv img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
}

#Wrapper_page #island_mv ul li {
  position: relative;
}

#Wrapper_page #island_mv ul li .btns {
  position: absolute;
  left: 5%;
  bottom: 5%;
  min-width: 250px;
}

#Wrapper_page #island_mv ul li a,
#Wrapper_page #island_mv ul li h5 {
  display: block;
  background: white;
  padding: 4% 2%;
  line-height: 150%;
  margin-bottom: 3%;
  color: #5bacdc;
  font-weight: bold;
  font-size: 130%;
  position: relative;
}

#Wrapper_page #island_mv ul li a {
  bottom: 5%;
  font-size: 100%;
  font-weight: normal;
  background: inherit;
  border: 1px solid white;
  color: white;
}

#Wrapper_page #island_mv ul li a:after {
  content: "";
  width: 10px;
  height: 0;
  padding-top: 10px;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
}

#Wrapper_page #island_mv ul li a:hover:after {
  right: 10px;
}

#Wrapper_page #okinawa_ritou {
  padding: 5%;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 40%, #f0f6f9 40%);
}

#Wrapper_page #okinawa_ritou .text {
  width: 60%;
  margin: auto;
  color: #5bacdc;
  line-height: 200%;
  margin-bottom: 5%;
}

#Wrapper_page #okinawa_ritou .text h3 {
  font-size: 200%;
  margin-bottom: 3%;
}

#Wrapper_page #okinawa_ritou .text p {
  text-align: left;
  display: block;
}

#Wrapper_page #island_list h2 {
  display: flex;
  align-items: center;
  color: #5baddd;
  margin-bottom: 5%;
}

#Wrapper_page #island_list h2 strong {
  font-size: 250%;
  display: inline-block;
}

#Wrapper_page #island_list h2 span {
  display: inline-block;
  font-weight: normal;
  margin-left: 5%;
}

#Wrapper_page #island_list .list_link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(to right, #5baddd, #5baddd 3px, transparent 3px, transparent 8px);
  background-size: 8px 2px;
  background-position: left top;
  background-repeat: repeat-x;
  line-height: 140%;
}

#Wrapper_page #island_list .list_link a:before {
  content: "#";
}

#Wrapper_page #island_list .list_link h3 {
  display: block;
  width: 20%;
}

#Wrapper_page #island_list .list_link h3 span {
  display: block;
  color: #a4937f;
}

#Wrapper_page #island_list .list_link ul {
  display: flex;
  width: 80%;
  flex-wrap: wrap;
}

#Wrapper_page #island_list .list_link ul li {
  padding: 1%;
  min-width: 15%;
}

#Wrapper_page #island_list .list_link ul li a {
  color: #3e3a39;
}

#Wrapper_page #island_list .list_link h3,
#Wrapper_page #island_list .list_link ul {
  padding: 2%;
  box-sizing: border-box;
  text-align: left;
}

#Wrapper_page #islandsVisualFull h1 {
  background: inherit;
  color: white;
}

#Wrapper_page #islandsVisualFull h1 span {
  font-weight: normal;
}

#Wrapper_page #islandsVisualFull .readB {
  width: 100%;
  margin: 0 0 0;
  padding: 2% 0;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
}

#Wrapper_page #islandsVisualFull .readB p {
  width: 80%;
  margin: auto;
  text-align: left;
  display: block;
}

#Wrapper_page #tourist_spots {
  padding: 5% 0;
  text-align: center;
  position: relative;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 60%, #eae7e2 60%);
}

#Wrapper_page #tourist_spots h2 {
  padding: 0 0;
  line-height: 200%;
  letter-spacing: 2px;
  color: #a5947f;
}

#Wrapper_page #tourist_spots h2 strong {
  display: block;
  font-size: 300%;
  margin-bottom: 1%;
}

#Wrapper_page #tourist_spots ul {
  padding: 5% 0;
}

#Wrapper_page #tourist_spots .slick-track {
  margin: 0;
}

#Wrapper_page #tourist_spots .slick-slide {
  counter-increment: number 1;
}

#Wrapper_page #tourist_spots .slick-prev,
#Wrapper_page #tourist_spots .slick-next {
  display: none !important;
}

#Wrapper_page #tourist_spots .slick-slide:nth-of-type(1) .article_data .image:after {
  background-color: #f1aeae;
}

#Wrapper_page #tourist_spots .slick-slide:nth-of-type(2) .article_data .image:after {
  background-color: #78acd1;
}

#Wrapper_page #tourist_spots .slick-slide:nth-of-type(3) .article_data .image:after {
  background-color: #c4b797;
}

#Wrapper_page #tourist_spots .article_data {
  width: 80%;
  display: flex;
  margin-bottom: 5%;
  margin-left: 15%;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
}

#Wrapper_page #tourist_spots .article_data>div {
  width: 100%;
}

#Wrapper_page #tourist_spots .article_data .image,
#Wrapper_page #tourist_spots .article_data .text {
  width: 100%;
}

#Wrapper_page #tourist_spots .article_data a {
  color: #3e3a39;
}

#Wrapper_page #tourist_spots .article_data:before {
  content: counter(number) " ";
  color: white;
  position: absolute;
  left: 4%;
  top: 1.5%;
  z-index: 2;
  font-size: 150%;
  font-weight: bold;
}

#Wrapper_page #tourist_spots .article_data .image {
  width: 100%;
  display: flex;
  background: white;
  position: relative;
  overflow: hidden;
}

#Wrapper_page #tourist_spots .article_data .image:after {
  content: "";
  width: 100px;
  height: 0px;
  padding-top: 100px;
  background-color: #b0b0b1;
  position: absolute;
  top: -50px;
  left: -50px;
  transform: rotate(45deg);
}

#Wrapper_page #tourist_spots .article_data .image img {
  max-width: 100%;
  min-height: 500px;
  object-fit: cover;
  margin: auto;
}

#Wrapper_page #tourist_spots .article_data .image a {
  display: inline-block;
  margin: auto;
}

#Wrapper_page #tourist_spots .article_data .text {
  text-align: left;
}

#Wrapper_page #tourist_spots .article_data .text h3 {
  font-size: 110%;
  margin-bottom: 5% !important;
}

#Wrapper_page #tourist_spots .article_data .text p {
  line-height: 200%;
  margin-bottom: 10% !important;
}

#Wrapper_page #tourist_spots .article_data .text .line {
  display: flex;
  justify-content: space-between;
  position: relative;
}

#Wrapper_page #tourist_spots .article_data .text .line span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 2px;
  background: white;
}

#Wrapper_page #tourist_spots .article_data .text .line span:nth-of-type(1) {
  padding-right: 15px;
  color: #717071;
}

#Wrapper_page #tourist_spots .article_data .text .line span:nth-of-type(2) {
  padding-left: 15px;
  color: #b0b0b1;
}

#Wrapper_page #tourist_spots .article_data .text .line:before {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid #ccc;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
}

#Wrapper_page #tourist_spots .article_data .text .categoris {
  padding: 2% 0;
}

#Wrapper_page #tourist_spots .article_data .text .categoris span {
  color: #717071;
  display: inline-block;
  padding-right: 5%;
  line-height: 150%;
}

#Wrapper_page #tourist_spots .article_data .text .categoris span:before {
  content: "#";
}

#Wrapper_page #tourist_spots .addbtns {
  position: absolute;
  top: 8%;
  right: 10%;
  max-width: inherit;
  width: inherit;
  justify-content: flex-end;
}

#Wrapper_page #tourist_spots .addbtns a {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#Wrapper_page #tourist_spots .addbtns a div {
  min-width: auto;
}

#Wrapper_page #tourist_spots .addbtns a span.next {
  width: 60px;
}

#Wrapper_page #island_access_data {
  background-color: #f0f6f9;
  padding: 3% 0;
  position: relative;
  margin-bottom: 5%;
}

#Wrapper_page #island_access_data h2 {
  display: flex;
  align-items: center;
  color: #5baddd;
}

#Wrapper_page #island_access_data h2 strong {
  font-size: 250%;
  display: inline-block;
}

#Wrapper_page #island_access_data h2 span {
  display: inline-block;
  font-weight: normal;
  margin-left: 5%;
}

#Wrapper_page #island_access_data .data_areas {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 3% 0 0;
  margin-bottom: 3%;
}

#Wrapper_page #island_access_data .data_areas>div {
  display: block;
  width: 33%;
  text-align: left;
  box-sizing: border-box;
  padding: 1%;
}

#Wrapper_page #island_access_data .data_areas>div h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 3%;
}

#Wrapper_page #island_access_data .data_areas>div h3 span {
  width: 40px;
}

#Wrapper_page #island_access_data .data_areas>div h3 b {
  display: block;
  margin-left: 2%;
  color: #5baddd;
  font-size: 130%;
}

#Wrapper_page #island_access_data .data_areas>div .data {
  margin-left: 50px;
  color: #5baddd;
  line-height: 150%;
}

#Wrapper_page #island_access_data .data_areas.access_view>div {
  width: 50%;
}

#Wrapper_page #island_access_data .addbtns {
  position: absolute;
  top: 5%;
  right: 5%;
  width: inherit;
  justify-content: flex-end;
  min-width: 300px;
}

#Wrapper_page #island_access_data .addbtns a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#Wrapper_page #island_access_data .addbtns a div {
  min-width: auto;
}

#Wrapper_page #island_access_data .addbtns a span.next {
  width: 60px;
}

#Wrapper_page #island_info {
  margin-bottom: 5%;
}

#Wrapper_page #island_info h2 {
  display: flex;
  align-items: center;
  color: #5baddd;
  margin-bottom: 5%;
}

#Wrapper_page #island_info h2 strong {
  font-size: 250%;
  display: inline-block;
}

#Wrapper_page #island_info h2 span {
  display: inline-block;
  font-weight: normal;
  margin-left: 5%;
}

#Wrapper_page #island_info .map_data {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

#Wrapper_page #island_info .map_data .map {
  width: 70%;
}

#Wrapper_page #island_info .map_data .text {
  width: 30%;
  background: #f2f2f2;
  padding: 3%;
  text-align: left;
}

#Wrapper_page #island_info .map_data .text h3 {
  margin-bottom: 3%;
}

#Wrapper_page #island_info .map_data .text h3 span {
  color: #5baddd;
  font-size: 150%;
}

#Wrapper_page #island_info .map_data .text h4 {
  color: #5baddd;
  margin-bottom: 15%;
}

#Wrapper_page #island_info .map_data .text a {
  color: #444444;
}

#Wrapper_page #around_the_island {
  padding: 5% 0;
  text-align: center;
  position: relative;
}

#Wrapper_page #around_the_island:before {
  content: "";
  width: 100%;
  height: 300px;
  background-color: #f3f3f3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

#Wrapper_page #around_the_island .inner {
  z-index: 2;
  position: relative;
}

#Wrapper_page #around_the_island h2 {
  padding: 0 0;
  line-height: 200%;
  letter-spacing: 2px;
  color: #a5947f;
}

#Wrapper_page #around_the_island h2 strong {
  display: block;
  font-size: 300%;
  margin-bottom: 1%;
}

#Wrapper_page #around_the_island .around_ritou_block {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

#Wrapper_page #around_the_island .around_ritou_block .around_box {
  display: block;
  width: 23%;
  padding: 1%;
  box-sizing: border-box;
  margin: 1%;
  text-align: left;
}

#Wrapper_page #around_the_island .around_ritou_block .around_box .img-background {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
}

#Wrapper_page #around_the_island .around_ritou_block .around_box .img-background img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

#Wrapper_page #around_the_island .around_ritou_block .around_box dd {
  line-height: 150%;
}

#Wrapper_page #around_the_island .around_ritou_block .around_box dd h3 {
  margin: 2% auto 3%;
  color: #a5947f;
}

#Wrapper_page #around_the_island .around_ritou_block .around_box dd p {
  position: relative;
  color: #333;
  overflow: hidden;
  height: 77px;
  padding-right: 7%;
}

#Wrapper_page #around_the_island .around_ritou_block .around_box dd p:after {
  content: "";
  background-image: url("../img/2022/arrow_btn.png");
  position: absolute;
  bottom: 9%;
  right: 0;
  width: 7%;
  height: 0;
  padding-top: 7%;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1300px) {
  #Wrapper_page #around_the_island .around_ritou_block .around_box dd p {
    height: 5.5vw;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box dd p:after {
    bottom: 4%;
    width: 8%;
    padding-top: 8%;
  }
}

#Wrapper_page #around_the_island .around_ritou_block .around_box .category_view {
  display: none;
}

#special_block {
  padding: 5% 0;
  text-align: center;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 40%, #eae7e2 40%);
}

#special_block .inner {
  position: relative;
}

#special_block .inner .addbtns {
  position: absolute;
  top: 10px;
  right: 3%;
  width: 60px;
}

#special_block h2 {
  padding: 0 0;
  line-height: 200%;
  letter-spacing: 2px;
  color: #a5947f;
}

#special_block h2 strong {
  display: block;
  font-size: 300%;
  margin-bottom: 1%;
}

#special_block .block {
  display: block;
  width: 100%;
}

#special_block ul {
  display: block;
  width: 100%;
  padding: 1% 0;
}

#special_block ul li {
  position: relative;
  display: flex;
  padding: 0 10px;
}

#special_block ul li img {
  border: 2px solid white;
}

#special_block ul li span {
  display: flex;
  position: absolute;
  top: 20%;
  width: 60%;
  height: 60%;
  background: rgba(0, 0, 0, 0.4);
  left: 20%;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: normal;
  line-height: 150%;
  text-shadow: 1px 1px #333;
  font-size: 120%;
}

#mainSlides .slick-prev,
#mainSlides .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  z-index: 1000;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

#mainSlides .slick-prev {
  left: 0px;
}

#mainSlides .slick-next {
  right: 0px;
}

#mainSlides .slick-prev:before,
#mainSlides .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #333;
  display: block;
  width: 20px;
  height: 0;
  padding-top: 20px;
  border-left: 1px solid #717071;
  border-bottom: 1px solid #717071;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#mainSlides .slick-prev:before {
  content: '';
  transform: rotate(45deg);
}

#mainSlides .slick-next:before {
  content: '';
  transform: rotate(-135deg);
}

#mainSlides .slick-prev:hover,
#mainSlides .slick-prev:focus,
#mainSlides .slick-next:hover,
#mainSlides .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

#mainSlides .slick-prev:hover:before,
#mainSlides .slick-prev:focus:before,
#mainSlides .slick-next:hover:before,
#mainSlides .slick-next:focus:before {
  opacity: 1;
}

#mainSlides .slick-prev.slick-disabled:before,
#mainSlides .slick-next.slick-disabled:before {
  opacity: .25;
}

.addbtns {
  display: flex;
  max-width: 100px;
  align-items: center;
  justify-content: center;
}

.addbtns span {
  display: inline-block;
  width: 100%;
  background-image: url("../img/2022/arrow_left.png");
  height: 0;
  padding-top: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  cursor: pointer;
  margin: 0 2px;
  opacity: .5;
  transition: .3s;
}

.addbtns span:hover {
  opacity: 1;
}

.addbtns span.prev {
  transform: scale(-1, 1);
}

#new_article .inner {
  position: relative;
  text-align: left;
}

#new_article h2 {
  display: flex;
  align-items: center;
  color: #5baddd;
  margin-bottom: 5%;
}

#new_article h2 strong {
  font-size: 250%;
  display: inline-block;
}

#new_article h2 span {
  display: inline-block;
  font-weight: normal;
  margin-left: 5%;
}

#new_article .article_data {
  display: flex;
  margin-bottom: 5%;
  flex-wrap: wrap;
}

#new_article .article_data>div {
  width: 100%;
}

#new_article .article_data:nth-of-type(1) {
  width: 100%;
}

#new_article .article_data:nth-of-type(1) .text {
  margin-left: 2%;
}

#new_article .article_data:nth-of-type(1) .text h3 {
  color: #5baddd;
}

#new_article .article_data:nth-of-type(n+2) {
  width: 30%;
  display: inline-block;
  vertical-align: top;
  margin-right: 4.5%;
}

#new_article .article_data:nth-of-type(n+2) .image,
#new_article .article_data:nth-of-type(n+2) .text {
  width: 100%;
}

#new_article .article_data:nth-of-type(n+2) .image img {
  min-height: 300px;
}

#new_article .article_data:nth-of-type(4) {
  margin-right: 0;
}

#new_article .article_data .image {
  width: 65%;
  display: flex;
}

#new_article .article_data .image img {
  max-width: 100%;
  min-height: 500px;
  object-fit: cover;
  margin: auto;
  width: 100%;
}

#new_article .article_data .image a {
  width: 100%;
  display: inline-block;
  margin: auto;
}

#new_article .article_data .text {
  width: 33%;
  text-align: left;
}

#new_article .article_data .text a {
  color: #717071;
}

#new_article .article_data .text h3 {
  font-size: 110%;
  margin-bottom: 5% !important;
  color: #5baddd;
  font-weight: bold;
}

#new_article .article_data .text p {
  line-height: 200%;
  margin-bottom: 10% !important;
}

#new_article .article_data .text .line {
  display: flex;
  justify-content: space-between;
  position: relative;
}

#new_article .article_data .text .line span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 2px;
  background: white;
}

#new_article .article_data .text .line span:nth-of-type(1) {
  padding-right: 15px;
  color: #717071;
}

#new_article .article_data .text .line span:nth-of-type(2) {
  padding-left: 15px;
  color: #b0b0b1;
}

#new_article .article_data .text .line:before {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid #ccc;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
}

#new_article .article_data .text .categoris {
  padding: 2% 0;
}

#new_article .article_data .text .categoris span {
  color: #717071;
  display: inline-block;
  padding-right: 5%;
  line-height: 150%;
}

#new_article .article_data .text .categoris span:before {
  content: "#";
}

#new_article .addbtns {
  position: absolute;
  top: 0;
  right: 5%;
  max-width: inherit;
  width: inherit;
  justify-content: flex-end;
}

#new_article .addbtns a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#new_article .addbtns a div {
  min-width: auto;
}

#new_article .addbtns a span.next {
  width: 60px;
}

#area_map {
  padding: 5%;
  background-color: #f1f7fa;
  position: relative;
  padding-right: 0;
  margin-right: 0;
}

#area_map h2 {
  display: flex;
  align-items: center;
  color: #5baddd;
  margin-bottom: 5%;
}

#area_map h2 strong {
  font-size: 250%;
  display: inline-block;
}

#area_map h2 span {
  display: inline-block;
  font-weight: normal;
  margin-left: 5%;
}

#area_map .inner {
  width: 100%;
  max-width: inherit;
  margin-right: 0;
  padding-right: 0;
}

#area_map .addbtns {
  position: absolute;
  top: 5%;
  right: 5%;
  width: inherit;
  justify-content: flex-end;
}

#area_map .addbtns a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#area_map .addbtns a div {
  min-width: auto;
}

#area_map .addbtns a span.next {
  width: 60px;
}

#area_map .map {
  background: white;
  overflow-x: scroll;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #5baddd #ccc;
}

#area_map .map::-webkit-scrollbar {
  height: 4px;
}

#area_map .map::-webkit-scrollbar-track {
  background-color: #ccc;
}

#area_map .map::-webkit-scrollbar-thumb {
  background-color: #5baddd;
}

#area_map .map .map_text {
  position: absolute;
  width: 30%;
  top: 5%;
  left: 5%;
  color: #5baddd;
}

#area_map .map .map_text h3 {
  font-size: 120%;
  margin-bottom: 5%;
}

#area_map .map .map_text p {
  line-height: 200%;
  text-align: left;
}

#area_map .image {
  width: 190vw;
  overflow: hidden;
  position: relative;
}

#area_map svg g {
  position: relative;
  z-index: 1;
}

#area_map svg g path {
  z-index: 3;
}

#area_map .image path {
  transition: .3s;
}

#area_map .image path.view,
#area_map .image g.view * {
  transition: .3s;
  fill: #5baddd;
}

#area_map .image #hontou path.view,
#area_map .image #hontou g.view * {
  fill: #c4b797 !important;
}

#area_map .link_block {
  position: absolute;
  transition: .3s;
  opacity: 1;
  color: #5baddd;
  padding: 10px;
}

#area_map .link_block .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5%;
}

#area_map .link_block .title h3 {
  font-weight: normal !important;
  margin-bottom: 0 !important;
}

#area_map .link_block .title span {
  margin-left: 5%;
  font-size: 80%;
  color: #a5947f;
}

#area_map .link_block .links {
  display: flex;
  flex-wrap: wrap;
}

#area_map .link_block .links li {
  font-weight: normal;
  font-size: 90%;
  width: 33%;
  display: block;
  box-sizing: border-box;
}

#area_map .link_block .links li a {
  display: block;
  padding: 3%;
  box-sizing: border-box;
  margin: auto;
}

#area_map .show path {
  fill: #5baddd;
  transition: .3s;
}

#area_map #miyako_text {
  top: 45%;
  left: 24%;
  width: 15%;
}

#area_map #yaeyama_text {
  top: 54%;
  left: 5%;
  width: 15%;
}

#area_map #hontou_text {
  top: 40%;
  left: 45%;
  width: 18%;
}

#area_map #hontou_text .links li {
  width: 20%;
}

#area_map #kume_text {
  top: 13%;
  left: 40%;
  width: 15%;
}

#area_map #miyako-map,
#area_map #hontou-map,
#area_map #yaeyama-map {
  cursor: pointer;
}

#area_map .swipe {
  width: calc(100vw - var(--scrollbar-size));
  height: 90px;
  position: sticky;
  z-index: 10;
  transition: all .3s ease;
}

#area_map .swipe.end .swipe_block {
  opacity: 0;
  transition: all .3s ease;
}

#area_map .swipe .swipe_block {
  position: absolute;
  right: 0;
  top: 110px;
  width: 100px;
  background-color: #599bc4;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 1% 0;
}

#area_map .swipe .swipe_block img {
  width: 60%;
  padding: 3%;
  animation: 3s swipe_move infinite;
}

@keyframes swipe_move {

  0%,
  100% {
    transform: translatex(5px);
  }

  50% {
    transform: translatex(-5px);
  }
}

#new_theme {
  padding: 5% 0;
  text-align: center;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 40%, #eae7e2 40%);
}

#new_theme .inner {
  position: relative;
  margin-right: 0;
  padding: 0;
  max-width: 94%;
}

#new_theme .inner .addbtns {
  position: absolute;
  top: 10px;
  right: 3%;
  width: 60px;
}

#new_theme h2 {
  padding: 0 0;
  line-height: 200%;
  letter-spacing: 2px;
  color: #a5947f;
}

#new_theme h2 strong {
  display: block;
  font-size: 300%;
  margin-bottom: 1%;
}

#new_theme ul {
  padding: 5% 0;
}

#new_theme ul li a {
  margin: 0 5%;
  position: relative;
  display: inline-block;
  color: white;
  text-shadow: 0px 0px 5px #aaa;
}

#new_theme ul li a:hover p:after {
  right: 5px;
  transition: .3s;
}

#new_theme ul li a h4 {
  position: absolute;
  left: 10%;
  top: 20%;
  margin: auto;
  width: 80%;
  font-size: 200%;
  line-height: 150%;
}

#new_theme ul li a h4 span {
  font-size: 70%;
  display: block;
}

#new_theme ul li a p {
  position: absolute;
  left: 20%;
  bottom: 5%;
  margin: auto;
  width: 60%;
  border: 1px solid white;
  padding: 5%;
  box-sizing: border-box;
}

#new_theme ul li a p:after {
  position: absolute;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  content: "";
  width: 10px;
  height: 0;
  padding-top: 10px;
  transform: rotate(-45deg);
  top: calc(50% - 5px);
  right: 15px;
}

#new_theme .slick-slide {
  counter-increment: number 1;
}

#new_theme .slick-prev,
#new_theme .slick-next {
  display: none !important;
}

@media screen and (max-width: 1300px) {
  #new_theme .inner {
    max-width: 100%;
  }
}

#infomation_top {
  padding: 5% 0;
  position: relative;
  padding-right: 0;
  margin-right: 0;
  box-sizing: border-box;
}

#infomation_top .inner {
  position: relative;
}

#infomation_top.topic_archive {
  padding: 0 0 5%;
}

#infomation_top.topic_archive .topics_title {
  background-color: #f3f3f3;
}

#infomation_top.topic_archive .topics_title h2 {
  padding: 5% 0;
  justify-content: center;
  flex-direction: column;
}

#infomation_top.topic_archive .topics_title h2 strong,
#infomation_top.topic_archive .topics_title h2 span {
  line-height: 120%;
}

#infomation_top.topic_archive .topics_title h2 span {
  margin: 0;
}

#infomation_top h2 {
  display: flex;
  align-items: center;
  color: #5baddd;
  margin-bottom: 5%;
}

#infomation_top h2 strong {
  font-size: 250%;
  display: inline-block;
}

#infomation_top h2 span {
  display: inline-block;
  font-weight: normal;
  margin-left: 5%;
}

#infomation_top dl {
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
  margin: auto !important;
}

#infomation_top dl dt,
#infomation_top dl dd {
  padding: 3%;
  box-sizing: border-box;
}

#infomation_top dl dt {
  width: 15%;
  text-align: right;
  color: #5baddd;
}

#infomation_top dl dd {
  text-align: left;
  background-image: linear-gradient(to right, #5baddd, #5baddd 3px, transparent 3px, transparent 8px);
  background-size: 8px 2px;
  background-position: left top;
  background-repeat: repeat-x;
  width: 85%;
}

#infomation_top dl dd:last-child {
  background-image: linear-gradient(to right, #5baddd, #5baddd 3px, transparent 3px, transparent 8px), linear-gradient(to left, #5baddd, #5baddd 3px, transparent 3px, transparent 8px);
  background-position: left top, right bottom;
}

#infomation_top .addbtns {
  position: absolute;
  top: 10px;
  right: 10%;
  max-width: inherit;
  width: inherit;
  justify-content: flex-end;
}

#infomation_top .addbtns a {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#infomation_top .addbtns a div {
  min-width: auto;
}

#infomation_top .addbtns a span.next {
  width: 60px;
}

.topic2023 .news_tab {
  display: flex;
  border-bottom: 2px solid #5baddd;
}

.topic2023 .news_tab a {
  min-width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1% 2%;
  border: 1px solid #ccc;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  position: relative;
  bottom: -1px;
  margin-right: 1%;
  cursor: pointer;
}

.topic2023 .news_tab a.on,
.topic2023 .news_tab a:hover {
  background-color: #5baddd;
}

.topic2023 .news_tab a.on span,
.topic2023 .news_tab a:hover span {
  color: white;
}

.topic2023 .tab_view {
  display: none;
}

.topic2023 .tab_view.top {
  display: block;
}

.topic2023 .topic_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: dashed 1px #ddd;
  padding: 1% 0;
  transition: .3s;
}

.topic2023 .topic_list:hover {
  background-color: #eee;
  transition: .3s;
}

.topic2023 .topic_list:hover .text .title {
  text-decoration: none;
  transition: .3s;
}

.topic2023 .topic_list .image {
  width: 20%;
  padding: 0 2%;
  box-sizing: border-box;
}

.topic2023 .topic_list .image img {
  max-height: 130px;
  object-fit: cover;
}

.topic2023 .topic_list .text {
  width: 80%;
  box-sizing: border-box;
  text-align: left;
}

.topic2023 .topic_list .text .time {
  font-size: 90%;
  margin-bottom: 2%;
}

.topic2023 .topic_list .text .cate_name {
  margin-left: 3%;
  color: #777;
}

.topic2023 .topic_list .text .new {
  margin-left: 1%;
  display: inline-block;
  border: solid 1px #c8161d;
  color: #c8161d;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 80%;
  line-height: 120%;
  position: relative;
  top: -2px;
}

.topic2023 .topic_list .text .title {
  margin-bottom: 1%;
  display: inline-block;
  color: #006dba;
  text-decoration: underline;
  transition: .3s;
}

.topic2023 .topic_list .text p {
  font-size: 90%;
  display: block;
  padding-right: 1%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #555;
}

footer {
  background: inherit;
  padding: 0 0 1%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footerBanner {
  padding: 8em 0 7.9em;
  background-color: #fff;
  text-align: left;
  font-size: 10px;
  color: #20303C;
}

/* @media screen and (min-width: 768px) and (max-height: 915px) {
  .footerBanner {
    font-size: calc(10 / 809 * (100vh - 106px));
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) and (max-height: 885px) {
  .footerBanner {
    font-size: calc(10 / 809 * (100vh - 76px));
  }
}

@media screen and (max-width: 767px) {
  .footerBanner {
    font-size: calc(10 / 390 * 100vw);
  }
} */

@media screen and (min-width: 768px) and (max-height: 1321px) {
  .footerBanner {
    font-size: calc(10 / 1215 * (100vh - 106px));
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) and (max-height: 1291px) {
  .footerBanner {
    font-size: calc(10 / 1215 * (100vh - 76px));
  }
}

@media screen and (max-width: 767px) {
  .footerBanner {
    padding: 4em 0;
    font-size: calc(10 / 390 * 100vw);
  }
}

.footerBanner__container {
  max-width: 131.8em;
  margin: 0 auto;
  padding: 0 4em;
}

@media screen and (max-width: 767px) {
  .footerBanner__container {
    padding: 0 1.6em;
  }
}

.footerBanner__titleImg {
  display: block;
  width: 35.49em;
  height: auto;
  margin-bottom: 3.24em;
}

@media screen and (max-width: 1023px) {
  .footerBanner__titleImg {
    width: 24.6em;
  }
}

@media screen and (max-width: 767px) {
  .footerBanner__titleImg {
    width: 22.4em;
    margin: 0 auto;
    margin-bottom: 1em;
  }
}

.footerBanner__title {
  margin-left: calc(51 / 1238 * 100%);
  font-size: 2.6em;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .footerBanner__title {
    font-size: 2em;
  }
}

@media screen and (max-width: 767px) {
  .footerBanner__title {
    text-align: center;
    font-size: 1.5em;
    line-height: calc(24 / 15);
  }
}

.footerBanner__section {
  margin-top: 5em;
}

.footerBanner__section:first-of-type {
  margin-top: 8em;
}

@media screen and (max-width: 767px) {

  .footerBanner__section,
  .footerBanner__section:first-of-type {
    margin-top: 3em;
  }
}

.footerBanner__heading {
  display: flex;
  align-items: center;
  column-gap: 0.9em;
  padding: 0.4em;
}

@media screen and (max-width: 767px) {
  .footerBanner__heading {
    column-gap: 0.75em;
    padding: 0.2em 0 0.2em 0.3em;
  }
}

.footerBanner__headingIcon {
  width: 2.6em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .footerBanner__headingIcon {
    width: 1.86em;
  }
}

.footerBanner__headingText {
  font-size: 2em;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .footerBanner__headingText {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 767px) {
  .footerBanner__headingText {
    font-size: 1.5em;
  }
}

.footerBanner__list {
  max-width: 115.5em;
  padding: 0 1px 1px 0;
  margin: 2em 0 0;
}

@media screen and (max-width: 767px) {
  .footerBanner__list {
    margin: 1em 0 0;
  }
}

.footerBanner__item {
  position: relative;
}

.footerBanner__item.--lg::before {
  content: "";
  display: block;
  padding-top: calc(130 / 377 * 100%);
}

.footerBanner__item.--sm::before {
  content: "";
  display: block;
  padding-top: calc(100 / 377 * 100%);
}

.footerBanner__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #c5c5c5;
}

footer #footer {
  background: inherit;
}

footer #footer small {
  margin: auto;
  color: #717071;
}

footer #footer .footlink {
  background-color: #e9e9e9;
  padding: 1%;
  margin: 0 auto 2%;
}

footer #footer .footlink .flex {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer #footer .footlink .flex a {
  display: block;
  width: auto;
  padding: 0 20px;
  color: #a5947f;
  font-size: 90%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  footer #footer .footlink .flex a {
    padding: 0 16px;
  }
}

footer #footer .footlink .flex a:nth-of-type(even) {
  color: #5baddd;
}

footer #footer .footlink .flex a:hover {
  color: white;
  text-shadow: 0 0 5px #333;
}

footer #footer .footlink .flex a span,
footer #footer .footlink .flex a p {
  display: block;
}

footer #footer .footer_logo {
  max-width: 300px;
  margin: 2% auto;
}

.instagram {
  margin-bottom: 10%;
}

.instagram h2 {
  display: flex;
  align-items: center;
  color: #5baddd;
  margin-bottom: 5%;
  justify-content: center;
  flex-direction: column;
}

.instagram h2 strong {
  font-size: 250%;
  line-height: 120%;
  display: inline-block;
}

.instagram h2 div {
  font-size: 120%;
  line-height: 180%;
}

.instagram #sbi_images {
  display: inline-grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.instagram #sbi_images .sbi_item {
  width: 100% !important;
}

.instagram #sbi_images .sbi_item:nth-of-type(1) {
  grid-row: 1/3;
  grid-column: 1/3;
}

.instagram #sbi_images .sbi_item:nth-of-type(5) {
  grid-row: 2;
  grid-column: 4;
}

.instagram #sbi_images .sbi_item:nth-of-type(6) {
  grid-row: 1/3;
  grid-column: 5/7;
}

.instagram #sbi_images .sbi_item:nth-of-type(11) {
  grid-row: 1/3;
  grid-column: 9/11;
}

.instagram #sbi_images .sbi_item a {
  height: 0 !important;
  padding-top: 100%;
}

.instagram #sbi_images .sbi_item a img {
  max-width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.instagram #sbi_images .sbi_item a i,
.instagram #sbi_images .sbi_item a svg {
  display: none !important;
}

@media all and (max-width: 1024px) {
  .instagram #sbi_images {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .instagram #sbi_images .sbi_item:nth-of-type(11) {
    display: none !important;
  }
}

@media all and (max-width: 600px) {
  .instagram #sbi_images {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .instagram #sbi_images .sbi_item:nth-of-type(6) {
    grid-row: inherit;
    grid-column: inherit;
  }

  .instagram #sbi_images .sbi_item:nth-of-type(10) {
    grid-row: 3/5;
    grid-column: 3/5;
  }
}

#post_cat_archive {
  padding: 5% 0;
  text-align: center;
  position: relative;
  min-height: 50vh;
}

#post_cat_archive:before {
  content: "";
  width: 100%;
  height: 300px;
  background-color: #f3f3f3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

#post_cat_archive .inner {
  position: relative;
  z-index: 2;
}

#post_cat_archive h2 {
  padding: 0 0;
  line-height: 200%;
  letter-spacing: 2px;
  margin-bottom: 5%;
  color: #a5947f;
}

#post_cat_archive h2 strong {
  display: block;
  font-size: 300%;
  margin-bottom: 1%;
}

#post_cat_archive .post_cat_list {
  display: flex;
  flex-wrap: wrap;
}

#content .wp-pagenavi span,
#content .wp-pagenavi a,
.wp-pagenavi span,
.wp-pagenavi a {
  border: none;
  padding: 10px;
  color: #717071;
}

#content .wp-pagenavi span.current,
#content .wp-pagenavi a.current,
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  position: relative;
  background-color: inherit;
  color: #717071;
}

#content .wp-pagenavi span.current:after,
#content .wp-pagenavi a.current:after,
.wp-pagenavi span.current:after,
.wp-pagenavi a.current:after {
  content: "";
  border-bottom: 3px solid #717071;
  position: absolute;
  bottom: 15%;
  left: 26%;
  width: 50%;
}

#content .wp-pagenavi span.nextpostslink,
#content .wp-pagenavi span.previouspostslink,
#content .wp-pagenavi a.nextpostslink,
#content .wp-pagenavi a.previouspostslink,
.wp-pagenavi span.nextpostslink,
.wp-pagenavi span.previouspostslink,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  color: #717071;
}

#content .wp-pagenavi span.last,
#content .wp-pagenavi span.first,
#content .wp-pagenavi span.pages,
#content .wp-pagenavi a.last,
#content .wp-pagenavi a.first,
#content .wp-pagenavi a.pages,
.wp-pagenavi span.last,
.wp-pagenavi span.first,
.wp-pagenavi span.pages,
.wp-pagenavi a.last,
.wp-pagenavi a.first,
.wp-pagenavi a.pages {
  padding: 2px 10px;
  margin: 0 10px;
  font-size: 80%;
  background: #f3f3f3;
}

#content>.search {
  margin: 5% auto;
}

#content>.search form {
  background: inherit;
  border: 1px solid #888;
  padding: 5%;
}

#content>.search form h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 3%;
  display: none;
}

#content>.search form h2 #Wrapper_page #island_mv ul li a,
#Wrapper_page #island_mv ul li #content>.search form h2 a,
#content>.search form h2 #Wrapper_page #islandsVisualFull h1 span,
#Wrapper_page #islandsVisualFull h1 #content>.search form h2 span,
#content>.search form h2 #new_theme ul li a h4 span,
#new_theme ul li a h4 #content>.search form h2 span,
#content>.search form h2 .catch,
#content>.search form h2 .hottag h3,
#content>.search form .hottag h2 h3 {
  font-weight: normal;
  display: block;
  letter-spacing: .2px;
}

#content>.search form h2 span {
  padding: 0;
  margin: 0;
  line-height: 300%;
  display: block;
}

#content>.search form .cate {
  width: 100%;
  display: flex;
}

#content>.search form .cate li {
  width: 100%;
  height: inherit;
}

#content>.search form .cate li:first-child {
  margin-left: 0 !important;
}

#content>.search form .cate li a {
  padding: 4% 0;
  border: 4px solid #888;
  border-radius: 5px;
}

#content>.search form .cate li a:before {
  content: "#";
}

#content>.search form .cate li a.on,
#content>.search form .cate li a:hover {
  color: white !important;
}

#content>.search form .cate li a.gourmet {
  border-color: #abc516;
  color: #abc516;
}

#content>.search form .cate li a.gourmet.on,
#content>.search form .cate li a.gourmet:hover {
  background-color: #abc516 !important;
}

#content>.search form .cate li a.activity {
  border-color: #1eaa39;
  color: #1eaa39;
}

#content>.search form .cate li a.activity.on,
#content>.search form .cate li a.activity:hover {
  background-color: #1eaa39 !important;
}

#content>.search form .cate li a.gift {
  border-color: #d4ae40;
  color: #d4ae40;
}

#content>.search form .cate li a.gift.on,
#content>.search form .cate li a.gift:hover {
  background-color: #d4ae40 !important;
}

#content>.search form .cate li a.stay {
  border-color: #f18c1d;
  color: #f18c1d;
}

#content>.search form .cate li a.stay.on,
#content>.search form .cate li a.stay:hover {
  background-color: #f18c1d !important;
}

#content>.search form .cate li a.event {
  border-color: #e95541;
  color: #e95541;
}

#content>.search form .cate li a.event.on,
#content>.search form .cate li a.event:hover {
  background-color: #e95541 !important;
}

#content>.search form .cate li a.tour {
  border-color: #a5947f;
  color: #a5947f;
}

#content>.search form .cate li a.tour.on,
#content>.search form .cate li a.tour:hover {
  background-color: #a5947f !important;
}

#content>.search form #keyword {
  display: none;
}

#content>.search form input[type="submit"] {
  border: 1px solid #888;
  border-radius: 5px;
  background: inherit;
  width: 15%;
  margin-left: 2.5%;
  color: #333;
  cursor: pointer;
}

#content>.search form .jsSelect {
  width: 82.5% !important;
  border: 1px solid #888;
  border-radius: 5px;
}

#content>.search form .jsSelect:before {
  display: none;
}

#content>.search form #islandList {
  padding: 0;
  margin-top: 1%;
  margin-bottom: 2%;
}

#content>.search form #islandList .area-islands {
  display: flex;
  flex-wrap: wrap;
}

#content>.search form #islandList .area-islands label.radio-btn {
  font-size: 100%;
  width: 20%;
  margin: 0;
  padding: 1%;
  box-sizing: border-box;
}

#content>.search form .hottag {
  margin: 2% 0 0;
}

#content>.search form .hottag h3 {
  font-size: 130%;
  text-align: left;
  border-bottom: 1px solid #888;
  margin-bottom: 2%;
  line-height: 200%;
}

#content>.search form .hottag a {
  display: inline-block;
  color: #888;
  padding: 1% 3% 1% 1%;
}

#content .info a {
  word-break: break-all;
}

.article_data {
  display: inline-block;
  margin-bottom: 5%;
  flex-wrap: wrap;
  width: 25%;
  padding: 1%;
  box-sizing: border-box;
  vertical-align: top;
}

.article_data>div {
  width: 100%;
}

.article_data:nth-of-type(4) {
  margin-right: 0;
}

.article_data .image {
  width: 100%;
  display: flex;
  margin-bottom: 2%;
}

.article_data .image img {
  max-width: 100%;
  min-height: 250px;
  object-fit: cover;
  margin: auto;
}

.article_data .image a {
  display: inline-block;
  margin: auto;
}

.article_data .text {
  width: 100%;
  text-align: left;
}

.article_data .text a {
  color: #717071;
}

.article_data .text h3 {
  font-size: 110%;
  line-height: 160%;
  margin-bottom: 5% !important;
  min-height: 3.8vw;
  color: #3e3a3a;
}

.article_data .text p {
  line-height: 120%;
  color: #3e3a3a;
  margin-bottom: 5% !important;
}

.article_data .text .line {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.article_data .text .line span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 2px;
  background: white;
}

.article_data .text .line span:nth-of-type(1) {
  padding-right: 15px;
  color: #717071;
}

.article_data .text .line span:nth-of-type(2) {
  padding-left: 15px;
  color: #b0b0b1;
}

.article_data .text .line:before {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid #ccc;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
}

.article_data .text .categoris {
  padding: 2% 0;
}

.article_data .text .categoris span {
  color: #717071;
  display: inline-block;
  padding-right: 5%;
  line-height: 150%;
}

.article_data .text .categoris span:before {
  content: "#";
}

.article_data .cat-items-sdgs {
  display: flex;
  flex-wrap: wrap;
}

.article_data .cat-items-sdgs p {
  width: 15%;
}

.totop {
  display: none;
}

.archive {
  letter-spacing: inherit;
  display: flex;
  flex-wrap: wrap;
}

.single_head {
  text-align: left;
}

.single_head h1 {
  padding: 2% 0;
  font-size: 150%;
  line-height: 150%;
}

.single_head .category_view {
  margin-bottom: 2%;
  position: relative;
}

.single_head .category_view .line {
  display: flex;
  align-items: center;
}

.single_head .category_view .line>span:first-child {
  margin-right: 20px;
}

.single_head .category_view .line span {
  display: block;
}

.single_head .category_view .line span a {
  border: 2px solid #666;
  padding: 5px 20px;
  color: #666;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}

.single_head .category_view .line span a.shima-gourmet {
  border: 2px solid #abc516;
  color: #abc516;
}

.single_head .category_view .line span a.shima-activity {
  border: 2px solid #1eaa39;
  color: #1eaa39;
}

.single_head .category_view .line span a.shima-gift {
  border: 2px solid #d4ae40;
  color: #d4ae40;
}

.single_head .category_view .line span a.shima-stay {
  border: 2px solid #f18c1d;
  color: #f18c1d;
}

.single_head .category_view .line span a.shima-event {
  border: 2px solid #e95541;
  color: #e95541;
}

.single_head .category_view .line span a.shima-guide {
  border: 2px solid #a5947f;
  color: #a5947f;
}

.single_head .category_view .categoris {
  display: flex;
  padding: 1% 0;
  flex-wrap: wrap;
}

.single_head .category_view .categoris a {
  margin-right: 15px;
  color: #666;
}

.single_head .category_view .categoris a span {
  line-height: 150%;
}

.single_head .category_view .categoris a span:before {
  content: "#";
}

.single_head .cat-items-sdgs {
  position: absolute;
  display: flex;
  top: -50%;
  right: 0;
}

.single_head .cat-items-sdgs p {
  max-width: 70px;
}

.single_mv_img {
  position: relative;
  margin-bottom: 3%;
}

.single_mv_img .image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: 50% 100%;
}

.single_mv_img .text {
  background: #abc516;
  padding: 2% 0;
}

.single_mv_img .text.shima-gourmet {
  background-color: #abc516;
}

.single_mv_img .text.shima-activity {
  background-color: #1eaa39;
}

.single_mv_img .text.shima-stay {
  background-color: #f18c1d;
}

.single_mv_img .text.shima-event {
  background-color: #e95541;
}

.single_mv_img .text.shima-guide {
  background-color: #a5947f;
}

.single_mv_img .text.shima-gift {
  background-color: #d4ae40;
}

.single_mv_img .text .inner {
  color: white;
  text-align: left;
  line-height: 200%;
  font-size: 110%;
}

.single2022 .post_view p {
  text-align: left;
  padding: 2% 10%;
  display: block;
  font-size: 110%;
}

.single2022 .post_view p>iframe,
.single2022 .post_view p>img {
  margin: 0 -10%;
  max-width: 120%;
  width: 120%;
  height: auto;
}

.single2022 .post_view p>iframe {
  margin-top: 10%;
  min-height: 400px;
}

.single2022 .post_view h2,
.single2022 .post_view h3,
.single2022 .post_view h4,
.single2022 .post_view h5,
.single2022 .post_view h6 {
  word-break: break-all;
  display: block;
  line-height: 120%;
  white-space: inherit !important;
}

.single2022 .post_view h2 span,
.single2022 .post_view h3 span,
.single2022 .post_view h4 span,
.single2022 .post_view h5 span,
.single2022 .post_view h6 span {
  font-size: inherit !important;
}

.single2022 .post_view div[id^="gallery-"] img {
  border: none !important;
  height: auto;
}

.single2022 .topsns ul,
.single2022 .sns ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single2022 .topsns ul li,
.single2022 .sns ul li {
  padding: 0;
  margin: 1% !important;
}

.single2022 .topsns ul li a,
.single2022 .sns ul li a {
  min-width: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
}

.single2022 .pre_next {
  margin-bottom: 5%;
  border-top: 1px solid #afafb0;
  border-bottom: 1px solid #afafb0;
  padding: 3% 0;
}

.single2022 .pre_next .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single2022 .pre_next .inner>div {
  width: 100%;
}

.single2022 .pre_next .inner>div a {
  color: #666;
  display: inline-block;
}

.single2022 .pre_next .inner>div span.list_link:before {
  content: "#";
}

.single2022 .pre_next .inner>div.pre {
  position: relative;
}

.single2022 .pre_next .inner>div.pre a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single2022 .pre_next .inner>div.pre a:before {
  content: "";
  transform: scale(-1, 1);
  display: inline-block;
  background-image: url(../img/2022/arrow_left.png);
  height: 0;
  padding-top: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  cursor: pointer;
  margin: 0 2px;
  opacity: .5;
  transition: .3s;
  width: 40px;
}

.single2022 .pre_next .inner>div.center {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.single2022 .pre_next .inner>div.center span:before {
  content: "#";
}

.single2022 .pre_next .inner>div.center .shima-gourmet {
  color: #abc516;
}

.single2022 .pre_next .inner>div.center .shima-activity {
  color: #1eaa39;
}

.single2022 .pre_next .inner>div.center .shima-stay {
  color: #f18c1d;
}

.single2022 .pre_next .inner>div.center .shima-event {
  color: #e95541;
}

.single2022 .pre_next .inner>div.center .shima-guide {
  color: #a5947f;
}

.single2022 .pre_next .inner>div.center .shima-gift {
  color: #d4ae40;
}

.single2022 .pre_next .inner>div.next {
  position: relative;
}

.single2022 .pre_next .inner>div.next a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single2022 .pre_next .inner>div.next a:after {
  content: "";
  display: inline-block;
  background-image: url(../img/2022/arrow_left.png);
  height: 0;
  padding-top: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  cursor: pointer;
  margin: 0 2px;
  opacity: .5;
  transition: .3s;
  width: 40px;
}

#sec_article {
  padding: 5% 0;
  position: relative;
  text-align: center;
}

#sec_article:before {
  content: "";
  width: 100%;
  height: 300px;
  background-color: #f3f3f3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

#sec_article .inner {
  z-index: 2;
  position: relative;
}

#sec_article .inner h2 {
  padding: 0 0;
  line-height: 200%;
  letter-spacing: 2px;
  margin-bottom: 5%;
}

#sec_article .inner h2 strong {
  display: block;
  font-size: 250%;
  margin-bottom: 1%;
}

#sec_article .inner h2.shima-gourmet {
  color: #abc516;
}

#sec_article .inner h2.shima-activity {
  color: #1eaa39;
}

#sec_article .inner h2.shima-stay {
  color: #f18c1d;
}

#sec_article .inner h2.shima-event {
  color: #e95541;
}

#sec_article .inner h2.shima-guide {
  color: #a5947f;
}

#sec_article .inner h2.shima-gift {
  color: #d4ae40;
}

.article_cat_mv img {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}

#island-article {
  position: relative;
  margin-bottom: 10%;
}

#island-article:before {
  content: "";
  width: 100%;
  height: 300px;
  display: block;
  position: absolute;
  background-color: #f0f6f9;
}

#island-article .inner,
#island-article h2 {
  position: relative;
  z-index: 2;
}

#island-article h2 {
  color: #5baddd;
  padding: 2% 0;
  line-height: 200%;
}

#island-article h2 strong {
  font-size: 200%;
}

#island-article h2 span {
  display: block;
}

#island-article .previouspostslink,
#island-article .nextpostslink {
  color: #5baddd;
}

.breadcrumb {
  display: none;
}

.page-concept #headArea {
  display: none;
}

.page-concept #content {
  padding: 5%;
}

.page-concept #content p {
  margin-bottom: 5%;
  line-height: 200%;
  text-align: left;
  display: block;
}

.page-concept #content p img {
  margin-bottom: 5%;
}

.page-concept #content h2 {
  font-weight: normal;
  display: inline-block;
  text-align: center;
  color: #5baddd;
  text-decoration: underline;
  line-height: 200%;
  margin-bottom: 5%;
  text-underline-offset: 50%;
  text-decoration-thickness: from-font;
}

.page-kankou-list #island-article:before {
  background-color: #eae7e2;
}

.page-kankou-list #island-article h2 {
  color: #a5947f;
}

.kanko-info_mv_img ul.slick img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center bottom;
}

.kanko-info_mv_img ul.thumbnail img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center bottom;
}

#content .detail_data {
  margin: 10% auto;
}

#content .detail_data .info>table tr>th {
  width: 14em;
}

@media screen and (max-width: 1300px) {

  footer #footer small,
  .single .inner,
  #content,
  .inner {
    width: 100%;
  }

  #content {
    overflow: hidden;
    padding: 0 3%;
    box-sizing: border-box;
  }

  #infomation_top .addbtns {
    top: 0vw;
    right: 5%;
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .traveling_plan {
    width: 100%;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  html {
    margin-top: 0 !important;
  }

  .header {
    justify-content: center;
  }

  .header .gNavLogo {
    width: 40%;
  }

  .header .topsns,
  .header .sns,
  .header .search_block {
    display: none;
  }

  .header .close {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1;
  }

  .header nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    padding: 0;
    margin: 0;
  }

  .header nav.view {
    display: block;
  }

  .header nav>ul {
    width: 80vw;
    height: 100vh;
    background: white;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 10vw;
    position: relative;
    z-index: 2;
  }

  .header nav>ul li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .header nav>ul li a {
    display: block;
    text-align: left;
    padding: 4%;
    padding-left: 10vw;
  }

  .header nav>ul li a:hover {
    background-color: #eee;
  }

  .header nav>ul li.has_sub .viw_sub_btn {
    display: none;
  }

  .header nav>ul li.has_sub .sub_list {
    display: block;
    position: relative;
    width: 100%;
    top: inherit;
    left: inherit;
    background: none;
  }

  .header nav>ul li.has_sub .sub_list li {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
  }

  .header nav>ul li.has_sub .sub_list li a {
    padding: 4%;
    padding-left: 10vw;
    margin-right: auto;
  }

  .header nav>ul li.has_sub .sub_list li a:after {
    display: none;
  }

  .header .menu-btn {
    position: fixed;
    top: 1vw;
    left: 1vw;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }

  .header .menu-btn span,
  .header .menu-btn span:before,
  .header .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #adadae;
    position: absolute;
  }

  .header .menu-btn span:before {
    bottom: 8px;
  }

  .header .menu-btn span:after {
    top: 8px;
  }

  #topWrapper section#sp_serach {
    display: flex;
    padding: 2% 0;
    margin-bottom: 0;
    max-height: 100px;
  }

  #topWrapper section#sp_serach form {
    border-radius: 55px;
    max-height: 8vw;
  }

  #topWrapper section#sp_serach .search_block {
    width: 70vw;
    display: none;
  }

  #topWrapper section#sp_serach .topsns,
  #topWrapper section#sp_serach .sns {
    display: flex;
    width: 20vw;
    align-items: center;
    justify-content: center;
  }

  #topWrapper section#sp_serach .topsns a,
  #topWrapper section#sp_serach .sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
  }

  #topWrapper #mainSlides {
    margin-bottom: 0;
  }

  div#mainImage>img.mvlogo {
    max-width: 20vw;
    margin: auto;
  }

  .keyword_block {
    padding: 5% 0;
  }

  .keyword_block h2 {
    width: 25vw;
    margin-right: 5vw;
    padding-right: 5vw;
  }

  .keyword_block .word_block {
    width: calc(100% - 35vw);
  }

  #special_block h2 strong {
    font-size: 200%;
  }

  #special_block ul li img {
    border: 5px solid white;
    height: 30vw;
    width: 100vw;
    object-fit: cover;
  }

  #new_article h2 strong {
    font-size: 200%;
  }

  #new_article .article_data:nth-of-type(1) .text {
    margin-left: 0%;
  }

  #new_article .article_data,
  #new_article .article_data:nth-of-type(n+2) {
    flex-direction: column;
  }

  #new_article .article_data .image,
  #new_article .article_data .text,
  #new_article .article_data:nth-of-type(n+2) .image,
  #new_article .article_data:nth-of-type(n+2) .text {
    width: 100%;
    margin-left: 0;
  }

  #new_article .article_data .image,
  #new_article .article_data:nth-of-type(n+2) .image {
    margin-bottom: 3%;
  }

  #new_article .article_data .image img,
  #new_article .article_data:nth-of-type(n+2) .image img {
    min-height: inherit;
    height: 50vw;
  }

  #new_article .article_data .text,
  #new_article .article_data:nth-of-type(n+2) .text {
    padding: 0 10%;
  }

  #new_article .article_data .text h3,
  #new_article .article_data .text p,
  #new_article .article_data:nth-of-type(n+2) .text h3,
  #new_article .article_data:nth-of-type(n+2) .text p {
    margin-bottom: 3% !important;
  }

  #new_article .article_data .text p,
  #new_article .article_data:nth-of-type(n+2) .text p {
    line-height: 120%;
  }

  #new_article .article_data .text .categoris span,
  #new_article .article_data:nth-of-type(n+2) .text .categoris span {
    font-size: 80%;
    line-height: 150%;
  }

  #new_article .article_data:nth-of-type(n+2) {
    width: 49%;
    padding: 1%;
    box-sizing: border-box;
    margin: 0;
  }

  #new_article .article_data:nth-of-type(n+2) .text {
    padding: 0;
  }

  #new_article .article_data:nth-of-type(4) {
    display: none;
  }

  #new_article .addbtns {
    right: 0;
  }

  #new_article .addbtns a span.next {
    width: 9vw;
    padding-top: 4vw;
  }

  #area_map {
    padding: 5%;
  }

  #area_map .addbtns {
    top: 2%;
  }

  #area_map .map {
    background-color: inherit;
    overflow-x: inherit;
  }

  #area_map .map .sp_scroll_set {
    overflow-x: scroll;
    background-color: white;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  #area_map .map .sp_scroll_set .image {
    width: 400%;
  }

  #area_map .map .map_text {
    padding: 5%;
    margin-bottom: 5%;
    background-color: white;
  }

  #area_map .map .map_text {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    padding: 5%;
  }

  #area_map .map .map_text .links li {
    width: 20%;
  }

  #area_map .map .map_text .links li a {
    padding: 10% 2%;
  }

  #area_map .map #hontou_text .links li {
    width: 25%;
  }

  #area_map .map #yaeyama_text {
    top: 40%;
  }

  #area_map .map #miyako_text {
    top: 10%;
    left: 8%;
    width: 15%;
  }

  #area_map .swipe {
    height: auto;
  }

  #area_map .swipe .swipe_block {
    top: 25vh;
    width: 15vw;
  }

  #new_theme .inner .addbtns {
    top: -5%;
  }

  #new_theme .inner .slick-list {
    padding: 0 10vw 0 5vw !important;
  }

  #new_theme .inner li {
    margin: 0;
  }

  #new_theme ul li a h4 {
    font-size: 120%;
  }

  #new_theme ul li a p {
    width: 80%;
    font-size: 70%;
    left: 10%;
    padding: 2%;
  }

  #infomation_top {
    padding: 5% 0;
    position: relative;
    padding-right: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  #infomation_top h2 {
    display: flex;
    align-items: center;
    color: #5baddd;
    margin-bottom: 5%;
  }

  #infomation_top h2 strong {
    font-size: 250%;
    display: inline-block;
  }

  #infomation_top h2 span {
    display: inline-block;
    font-weight: normal;
    margin-left: 5%;
  }

  #infomation_top dl {
    display: flex;
    flex-wrap: wrap;
    width: 100% !important;
    margin: auto !important;
  }

  #infomation_top dl dt {
    position: relative;
    top: 6vw;
    left: 0;
    height: 0;
  }

  #infomation_top dl dd {
    width: 100%;
    padding-left: 28%;
    box-sizing: border-box;
  }

  #infomation_top .addbtns {
    top: 0;
    right: 0;
  }

  .topic2023 {
    margin: 0;
    width: 100%;
  }

  .topic2023 .news_tab a {
    min-width: 19.2%;
    padding: 2% 1%;
    line-height: 120%;
  }

  .topic2023 .topic_list {
    margin: 5% 0;
  }

  .topic2023 .topic_list .image {
    width: 35%;
  }

  .topic2023 .topic_list .image img {
    max-height: 80px;
  }

  .topic2023 .topic_list .text {
    width: 65%;
  }

  footer {
    padding-bottom: 11vw;
    background-color: #e6e6e6;
  }

  footer #footer .footlink .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  footer #footer .footlink .flex a {
    text-align: left;
    width: auto;
    padding: 1% 2.5%;
    font-size: 80%;
  }

  footer #footer .footlink .flex a p {
    border-bottom: .2px solid #a5947f;
  }

  .totop {
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    display: block;
    width: 100%;
    z-index: 10;
  }

  .totop a {
    display: inline-block;
    margin: auto;
    width: 10vw;
    height: 0;
    padding-top: 10vw;
  }

  #Wrapper_page #island_mv img {
    height: 30vh;
  }

  #Wrapper_page #island_mv .slick-prev {
    left: 3vw;
  }

  #Wrapper_page #island_mv .slick-next {
    right: 3vw;
  }

  #Wrapper_page #island_mv .slick-prev:before,
  #Wrapper_page #island_mv .slick-next:before {
    width: 3vw;
    padding-top: 3vw;
  }

  #Wrapper_page #island_mv ul li .btns {
    min-width: 100%;
    left: 0;
    bottom: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #Wrapper_page #island_mv ul li .btns h5,
  #Wrapper_page #island_mv ul li .btns a {
    display: inline-block;
    margin: 1%;
    padding: 1%;
    min-width: 30vw;
    font-size: 100%;
    min-height: 5vh;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #Wrapper_page #okinawa_ritou {
    background-color: #f0f6f9;
  }

  #Wrapper_page #okinawa_ritou .text {
    width: 100%;
  }

  #Wrapper_page #okinawa_ritou .text h3 {
    font-size: 150%;
  }

  #Wrapper_page #island_list {
    padding: 5%;
    background-color: #f4f4f4;
  }

  #Wrapper_page #island_list h2 strong {
    font-size: 150%;
  }

  #Wrapper_page #island_list .list_link {
    background: white;
    padding: 3%;
    display: block;
    border-image: inherit;
    margin-bottom: 3%;
  }

  #Wrapper_page #island_list .list_link h3,
  #Wrapper_page #island_list .list_link ul {
    width: 100%;
  }

  #Wrapper_page #island_list .list_link h3 {
    font-size: 130%;
    text-align: center;
  }

  #Wrapper_page #island_list .list_link h3 span {
    font-size: 60%;
  }

  #Wrapper_page #island_list .list_link li {
    width: 33%;
  }

  #Wrapper_page #island_list .list_link li a {
    padding: 5% 0;
    display: block;
  }

  #Wrapper_page #islandsVisualFull {
    height: 50vh;
  }

  #Wrapper_page #islandsVisualFull h1 {
    color: #606060;
  }

  #Wrapper_page #islandsVisualFull .readB {
    background-color: rgba(0, 0, 0, 0.15);
  }

  #Wrapper_page #islandsVisualFull .readB p {
    width: 90%;
  }

  #Wrapper_page #tourist_spots h2 {
    line-height: 200%;
  }

  #Wrapper_page #tourist_spots h2 strong {
    font-size: 180%;
  }

  #Wrapper_page #tourist_spots .slick-list {
    padding: 0 30% 0 0 !important;
  }

  #Wrapper_page #tourist_spots .addbtns {
    top: 4vw;
    right: 1%;
    font-size: 60%;
  }

  #Wrapper_page #tourist_spots .addbtns a span.next {
    width: 5vw;
    background-position: center;
  }

  #Wrapper_page #tourist_spots .article_data {
    width: 90%;
    margin-left: 0%;
    margin-right: 5%;
  }

  #Wrapper_page #tourist_spots .article_data .image img {
    min-height: 60vw;
  }

  #Wrapper_page #island_access_data {
    padding: 5% 0;
  }

  #Wrapper_page #island_access_data h2 {
    line-height: 200%;
  }

  #Wrapper_page #island_access_data h2 strong {
    font-size: 180%;
  }

  #Wrapper_page #island_access_data .addbtns {
    top: 5.5vw;
    right: 1%;
    font-size: 60%;
  }

  #Wrapper_page #island_access_data .addbtns a span.next {
    width: 5vw;
    background-position: center;
  }

  #Wrapper_page #island_access_data .data_areas>div,
  #Wrapper_page #island_access_data .data_areas.access_view>div {
    padding: 5%;
    width: 100%;
  }

  #Wrapper_page #new_article {
    padding: 10% 0;
  }

  #Wrapper_page #new_article h2 {
    line-height: 200%;
  }

  #Wrapper_page #new_article h2 strong {
    font-size: 180%;
  }

  #Wrapper_page #new_article .addbtns {
    top: 1vw;
    right: 1%;
    font-size: 60%;
  }

  #Wrapper_page #new_article .addbtns a span.next {
    width: 5vw;
    background-position: center;
  }

  #Wrapper_page #new_article .article_data .text {
    padding: 0;
  }

  #Wrapper_page #new_article .article_data .text h3 {
    font-size: 140%;
  }

  #Wrapper_page #island_info h2 {
    line-height: 200%;
  }

  #Wrapper_page #island_info h2 strong {
    font-size: 180%;
  }

  #Wrapper_page #island_info .map_data {
    flex-direction: column-reverse;
  }

  #Wrapper_page #island_info .map_data .text,
  #Wrapper_page #island_info .map_data .map {
    width: 100%;
  }

  #Wrapper_page #island_info .map_data .text {
    min-height: 30vh;
  }

  #Wrapper_page #island_info .map_data .text h3,
  #Wrapper_page #island_info .map_data .text h4 {
    margin: 0;
    border-left: 1px solid #5baddd;
    padding-left: 3%;
  }

  #Wrapper_page #island_info .map_data .text h4 {
    margin-bottom: 5%;
  }

  #Wrapper_page #island_info .map_data .text p {
    border-left: 1px solid #5baddd;
    padding-left: 3%;
    display: block;
  }

  #Wrapper_page #around_the_island:before {
    content: "";
    width: 100%;
    height: 20vh;
    background-color: #f3f3f3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }

  #Wrapper_page #around_the_island .inner {
    z-index: 2;
  }

  #Wrapper_page #around_the_island h2 {
    line-height: 200%;
  }

  #Wrapper_page #around_the_island h2 strong {
    font-size: 180%;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box {
    width: 100%;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .img-background {
    padding-top: 50%;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box dd p {
    height: 16vw;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box dd p:after {
    bottom: 0%;
    width: 6%;
    padding-top: 6%;
    background-repeat: no-repeat;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view {
    display: block;
    margin-bottom: 10%;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view .line {
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view .line span {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 2px;
    background: white;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view .line span:nth-of-type(1) {
    padding-right: 15px;
    color: #717071;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view .line span:nth-of-type(2) {
    padding-left: 15px;
    color: #b0b0b1;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view .line:before {
    content: "";
    width: 100%;
    height: 1px;
    border-top: 1px solid #ccc;
    position: absolute;
    top: calc(50% + 1px);
    left: 0;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view .categoris {
    padding: 2% 0;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view .categoris span {
    color: #717071;
    display: inline-block;
    padding-right: 5%;
    line-height: 150%;
  }

  #Wrapper_page #around_the_island .around_ritou_block .around_box .category_view .categoris span:before {
    content: "#";
  }

  #Wrapper_page .post_cat_mv {
    height: 20vh;
  }

  #Wrapper_page .post_cat_mv img {
    height: 20vh;
    object-fit: cover;
  }

  #Wrapper_page #post_cat_archive:before {
    height: 30vw;
  }

  #Wrapper_page #post_cat_archive h2 strong {
    font-size: 200%;
  }

  #Wrapper_page #post_cat_archive .article_data {
    width: 100%;
  }

  #Wrapper_page #post_cat_archive .article_data .image a {
    width: 100%;
  }

  #Wrapper_page #post_cat_archive .article_data .image img {
    min-height: 30vw;
    width: 100%;
  }

  #Wrapper_page #post_cat_archive .article_data .text {
    margin: 0;
  }

  #Wrapper_page #post_cat_archive .article_data .text p {
    margin-bottom: 0 !important;
  }

  #content>.search {
    position: relative;
  }

  #content>.search form {
    width: calc(100% + 30px);
    margin: auto -15px;
    border: none;
    background: #f3f3f3;
  }

  #content>.search form h2 {
    margin: 0 0 3% 0;
    display: block;
  }

  #content>.search form h2 span {
    line-height: 100%;
  }

  #content>.search form h2 #Wrapper_page #island_mv ul li a,
  #Wrapper_page #island_mv ul li #content>.search form h2 a,
  #content>.search form h2 #Wrapper_page #islandsVisualFull h1 span,
  #Wrapper_page #islandsVisualFull h1 #content>.search form h2 span,
  #content>.search form h2 #new_theme ul li a h4 span,
  #new_theme ul li a h4 #content>.search form h2 span,
  #content>.search form h2 .catch,
  #content>.search form h2 .hottag h3,
  #content>.search form .hottag h2 h3 {
    font-size: 150%;
  }

  #content>.search form .cate {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  #content>.search form .cate li {
    width: 33%;
  }

  #content>.search form .cate li:first-child {
    margin: 0.5em 1% !important;
  }

  #content>.search form .jsSelect {
    width: 96% !important;
    margin-bottom: 0 !important;
  }

  #content>.search form input[type="submit"] {
    position: absolute;
    right: 3%;
    bottom: 38vw;
    width: 20%;
  }

  #content>.search form #islandList {
    margin-top: 5%;
  }

  #content>.search form #islandList .area-islands label.radio-btn {
    width: 33%;
    padding: 3% 0;
  }

  #content>.search form .hottag {
    max-height: 46vw;
    overflow: hidden;
  }

  #content>.search form .hottag h3 {
    width: 70%;
  }

  .article_data {
    width: 100%;
    margin-bottom: 10%;
  }

  .article_data .text {
    margin-left: 0;
  }

  .article_data .text h3 {
    min-height: inherit;
    margin-bottom: 2% !important;
  }

  .article_data .text p {
    margin-bottom: 2% !important;
  }

  .single_mv_img .image img {
    max-height: 30vh;
  }

  .single_mv_img .text .inner {
    padding: 2% 5%;
    line-height: 160%;
  }

  .single_head .category_view .line span a {
    padding: 2% 3vw;
  }

  .single_head .category_view .categoris a {
    margin-right: inherit;
    padding-right: 3vw;
  }

  .single_head .cat-items-sdgs {
    top: 0%;
    position: inherit;
  }

  .single_head .cat-items-sdgs>p {
    max-width: 10vw;
  }

  #content .post_view h2 {
    padding: 0 3%;
    border-left: 5px solid #ddd;
    margin: 5% !important;
    width: auto !important;
    font-size: 4.5vw !important;
    font-family: 'Noto Serif JP', serif;
  }

  #content .post_view h2 span {
    font-size: inherit;
  }

  #content .post_view.shima-gourmet h2 {
    border-color: #abc516;
  }

  #content .post_view.shima-activity h2 {
    border-color: #abc516;
  }

  #content .post_view.shima-gift h2 {
    border-color: #d4ae40;
  }

  #content .post_view.shima-stay h2 {
    border-color: #f18c1d;
  }

  #content .post_view.shima-event h2 {
    border-color: #e95541;
  }

  #content .post_view.shima-guide h2 {
    border-color: #a5947f;
  }

  #content .post_view p {
    padding: 2% 5%;
    font-size: 3.5vw !important;
  }

  #content .post_view p>iframe,
  #content .post_view p>img {
    margin: 0 -5%;
    max-width: 110%;
    width: 110%;
    height: auto;
  }

  #content .post_view p>iframe {
    min-height: 50vh;
  }

  #content .sns {
    margin: 0;
    padding: 2% 0;
  }

  .single2022 .pre_next {
    padding: 7% 0;
  }

  .single2022 .pre_next .inner>div.pre a:before,
  .single2022 .pre_next .inner>div.next a:after {
    width: 5vw;
    background-position: center;
    padding-top: 3vw;
  }

  #sec_article:before {
    height: 30vh;
  }

  #sec_article .inner h2 strong {
    font-size: 200%;
  }

  #sec_article .inner .article_data {
    width: 50%;
  }

  #sec_article .inner .article_data .image img {
    min-height: 45vw;
  }

  #sec_article .inner .article_data .text .categoris {
    font-size: 80%;
  }

  footer {
    overflow: hidden;
  }

  .page-kankou-list h2 strong {
    font-size: 200%;
  }

  .page-kankou-list #island-article:before {
    height: 30vw;
  }

  .page-kankou-list .article_data {
    width: 50%;
  }

  .page-kankou-list .article_data .image img {
    min-height: 45vw;
  }

  .page-kankou-list .article_data .text .categoris {
    font-size: 80%;
  }

  #content .detail_data .info>table tr {
    border-bottom: 1px solid white;
    display: block;
    padding: 2% 0;
  }

  #content .detail_data .info>table tr>* {
    border: none;
  }

  #content .detail_data .info>table tr>th,
  #content .detail_data .info>table tr>td {
    width: 100%;
    display: block;
    padding: 0 2% !important;
  }

  #content .detail_data .info>table tr>td {
    padding-left: 5% !important;
  }

  .kanko-info_mv_img ul.slick img {
    max-height: inherit;
  }

  .kanko-info_mv_img ul.thumbnail img {
    max-height: 10vh;
  }
}

#headAreaInner h1 {
  line-height: 1.2;
}

@media screen and (max-width: 986px) and (orientation: portrait) {
  #headArea {
    background-color: #5bbfe1;
    margin-bottom: 8vw;
  }

  #headArea:after {
    border-top-color: #5bbfe1;
  }

  #headAreaInner {
    width: 100%;
  }

  #headAreaInner h1 {
    padding-right: 0;
  }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
  #infomation_top {
    padding: 0;
    padding-top: 5%;
  }

  #infomation_top .addbtns {
    top: 8vw;
  }

  #infomation_top h2 {
    padding-bottom: 10%;
  }

  .single2022 .pre_next .inner>div.center {
    flex-direction: column;
  }
}

#content .WYSIWYG h1 {
  font-size: 3rem;
}

#content .WYSIWYG h1,
#content .WYSIWYG h3,
#content .WYSIWYG h4,
#content .WYSIWYG h5,
#content .WYSIWYG h6 {
  font-weight: 900;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 2%;
}

#content .WYSIWYG h3 {
  font-size: 1.5rem;
}

#content .WYSIWYG h4 {
  font-size: 1.2rem;
}

#content .WYSIWYG h5 {
  font-size: 1rem;
}

#content .WYSIWYG h6 {
  font-size: .8rem;
}

#content .WYSIWYG ul {
  all: initial;
  list-style: initial;
  list-style-type: initial;
  text-align: left;
  padding: 2% 10%;
  display: block;
}

#content .WYSIWYG ol {
  all: initial;
  list-style: initial;
  list-style-type: initial;
  text-align: left;
  padding: 2% 10%;
  display: block;
}

#content .WYSIWYG a {
  text-decoration: initial;
}

#content .WYSIWYG strong {
  font-weight: bold;
}

#content .WYSIWYG em {
  font-style: italic;
}

#content .WYSIWYG .wp-block {
  margin-left: auto;
  margin-right: auto;
}

#content .WYSIWYG blockquote.wp-block-quote {
  border-left: 0.25em solid currentColor;
  margin: 2% 8%;
  padding-left: 1em;
  position: relative;
}

#content .WYSIWYG blockquote.wp-block-quote p {
  padding: 0;
}

#content .WYSIWYG blockquote.wp-block-quote:after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

#content .WYSIWYG .wp-block-pullquote {
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  margin-top: 1.75em;
  margin-bottom: 1.75em;
  color: currentColor;
}

#content .WYSIWYG .wp-block-pullquote .wp-block-pullquote__citation {
  color: inherit;
  white-space: pre-wrap;
  min-width: 1px;
}

#content .WYSIWYG .wp-block-pullquote blockquote p {
  line-height: 1.6;
  font-size: 180%;
  font-weight: bold;
  text-align: center;
}

#content .WYSIWYG .wp-block-pullquote:after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 2px transparent;
}

#content .WYSIWYG .wp-block-table table td,
#content .WYSIWYG .wp-block-table table th {
  text-align: left;
  border: 1px solid;
  padding: .5% 1%;
}

#content .WYSIWYG figcaption {
  font-size: 90%;
  margin-bottom: 3%;
}

#content .WYSIWYG .wp-block-gallery,
#content .WYSIWYG .blocks-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#content .WYSIWYG .wp-block-gallery .blocks-gallery-item,
#content .WYSIWYG .blocks-gallery-grid .blocks-gallery-item {
  margin: 0 1em 1em 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-self: flex-start;
  width: calc(50% - 1em);
}

#content .WYSIWYG .wp-block-gallery .blocks-gallery-item:last-child,
#content .WYSIWYG .blocks-gallery-grid .blocks-gallery-item:last-child {
  margin-right: 0;
}

#content .WYSIWYG .wp-block-gallery .blocks-gallery-item figure,
#content .WYSIWYG .blocks-gallery-grid .blocks-gallery-item figure {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

#content .WYSIWYG .wp-block-gallery .blocks-gallery-item img,
#content .WYSIWYG .blocks-gallery-grid .blocks-gallery-item img {
  height: 100%;
  flex: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

#content .WYSIWYG .wp-block-gallery.columns-3 .blocks-gallery-item,
#content .WYSIWYG .blocks-gallery-grid.columns-3 .blocks-gallery-item {
  width: calc(33.3333333333% - 0.6666666667em);
  margin-right: 1em;
}

#content .WYSIWYG .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
#content .WYSIWYG .blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n) {
  margin-right: 0;
}

#content .WYSIWYG .wp-block-gallery.columns-3 .blocks-gallery-item:last-child,
#content .WYSIWYG .blocks-gallery-grid.columns-3 .blocks-gallery-item:last-child {
  margin-right: 0;
}

#content .WYSIWYG .wp-block-gallery.is-cropped .blocks-gallery-item,
#content .WYSIWYG .blocks-gallery-grid.is-cropped .blocks-gallery-item {
  align-self: inherit;
}

#content .WYSIWYG .wp-block-buttons .wp-block-button.is-style-outline a.wp-block-button__link,
#content .WYSIWYG .wp-block-buttons .wp-block-button.is-style-outline a.wp-block-file__button,
#content .WYSIWYG .wp-block-file .wp-block-button.is-style-outline a.wp-block-button__link,
#content .WYSIWYG .wp-block-file .wp-block-button.is-style-outline a.wp-block-file__button {
  color: inherit;
  border: 2px solid inherit;
}

#content .WYSIWYG .wp-block-media-text__media img,
#content .WYSIWYG .wp-block-media-text__media video,
#content .WYSIWYG .wp-block-media-text__media img,
#content .WYSIWYG .wp-block-media-text__media video {
  max-width: unset;
  width: 100%;
  vertical-align: middle;
}

#content .WYSIWYG .wp-block-media-text__media img {
  max-width: 100%;
  height: auto;
}

#content .WYSIWYG .wp-block-media-text__content .has-large-font-size {
  font-size: 200%;
  font-weight: bold;
}

@media all and (max-width: 767px) and (orientation: portrait) {
  #content .WYSIWYG .wp-block-media-text__content .has-large-font-size {
    font-size: 200% !important;
    text-align: center;
  }
}

#content .WYSIWYG .wp-block-columns .wp-block-column p {
  padding: 0;
  margin: revert;
}

#content .WYSIWYG .cat-item a {
  justify-content: flex-start;
  color: revert;
}

#content .WYSIWYG .cat-item a:after {
  display: none;
}

#content .WYSIWYG .cat-item a:link {
  color: revert;
}

#content .WYSIWYG .page_nav {
  margin: 7% auto;
}

#content .WYSIWYG .page_nav .post-page-numbers {
  padding: .5% 1%;
  background-color: black;
  color: white;
  display: inline-block;
  border: 1px solid black;
  margin: 2% 0;
}

@media all and (max-width: 767px) and (orientation: portrait) {
  #content .WYSIWYG .page_nav .post-page-numbers {
    padding: 1% 3%;
  }
}

#content .WYSIWYG .page_nav .post-page-numbers.current {
  color: black;
  background-color: white;
}

#content .WYSIWYG .wp-block-social-links {
  list-style-type: revert;
  box-sizing: revert;
  padding: 0;
  margin: auto;
  position: relative;
  overflow-wrap: break-word;
  display: flex;
  flex-wrap: wrap;
  text-indent: 0;
  font-size: 24px;
}

#content .WYSIWYG .wp-block-social-links .wp-social-link {
  margin: 4px 8px 4px 0;
  line-height: 0;
  position: relative;
  overflow-wrap: break-word;
}

#content .WYSIWYG .wp-block-tag-cloud a {
  text-decoration: underline;
}

#content .WYSIWYG .wp-block-query ul {
  list-style: none;
  list-style-type: none;
}

#content .WYSIWYG .wp-block-query .columns-3 {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow-wrap: break-word;
  padding: 0;
}

#content .WYSIWYG .wp-block-query .columns-3 .blocks-gallery-item {
  width: calc(33.3333333333% - 0.6666666667em);
  margin-right: 1em;
}

#content .WYSIWYG .wp-block-query .columns-3 .blocks-gallery-item:nth-of-type(3n) {
  margin-right: 0;
}

#content .WYSIWYG .wp-block-query .columns-3 .blocks-gallery-item:last-child {
  margin-right: 0;
}

#content .WYSIWYG .twitter-tweet {
  margin: auto;
}

#content .WYSIWYG blockquote.wp-embedded-content {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

#content .WYSIWYG iframe.wp-embedded-content {
  min-height: 600px;
  position: relative !important;
}

#content .WYSIWYG .is-provider-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

#content .WYSIWYG .is-provider-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}