:root {
    --theme-color01: #F08384;
    --theme-color01--a11y: #d70049;
    --theme-color02: #5DBC67;
    --theme-color03: #D9AC12;
    --theme-color04: #57C6EF;
}

/* --------------------start_地図から探す-------------------- */
#Map {
  height: 690px;
  background-image: url(../../common/senmon/images/map_d/okinawa_pc.svg);
}

.Map__items:not(:first-of-type) {
  display: block;
}

.Map__item--Kunitachi {
  top: 152px;
  left: 294px;
}

.Map__item--HeadquartersNakijinIeIsland {
  top: 169px;
  left: 0px;
}

.Map__item--onna {
  top: 221px;
  left: 0;
}

.Map__item--nago {
  top: 221px;
  left: 142px;
}

.Map__item--OkinawaCity {
  top: 273px;
  left: 0px;
}

.Map__item--UrumaIkeijimaKatsuragipeninsula {
  top: 273px;
  left: 142px;
}

.Map__item--KitayaYomitani {
  top: 327px;
  left: 41px;
}

.Map__item--GinowanUrasoe {
  top: 379px;
  left: 41px;
}

.Map__item--naha {
  top: 431px;
  left: 41px;
}

.Map__item--ItoumiTamakiChinenTomigusukuMizunori {
  top: 483px;
  left: 0px;
}

.Map__item--KeramaMunicipalityZamamiTokashiki {
  top: 206px;
  right: 380px;
}

.Map__item--miyako {
  top: 323px;
  right: 380px;
}

.Map__item--iriomote {
  top: 483px;
  left: 361px;
}

.Map__item--ishigaki {
  top: 483px;
  right: 380px;
}

.Map__item--yonaguni {
  top: 574px;
  left: 69px;
}

.Map__item--TaketomiObamaKuroshima {
  top: 574px;
  left: 403px;
}

.Map__item--ritou,
.Map__item--hontou {
  display: none;
}

.Map__item--churaumi {
	display: none;
}

/* --------------------end_地図から探す-------------------- */

/* --------------------start_他の都道府県-------------------- */
.SenmonLink__link-homen[href="/okinawa/"] {
  color: var(--corporate-color);
  pointer-events: none;
}
/* --------------------end_他の都道府県-------------------- */

.price_column_wapper {
  display: flex;
  justify-content: center;
}

.price_column {
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
  position: relative;
  width: 320px;
  padding: 20px;
  background: white;
  border-radius: 6px;
  box-shadow: 0px 0px 0px 1px #c3c3c3 inset,
    0 2.5rem 2rem -2rem rgb(0 0 0 / 10%);
  transition: box-shadow 0.3s;
}

.price_column h3 {
    color: var(--corporate-color);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.price_column:not(:last-child) {
  margin-right: 32px;
}

.price_column dl dd, .price_column dl dt span  {
    font-size: 1.4rem;
    font-weight: 400;
    color: #333;
}

.price_column dl dt {
    font-size: 2.0rem;
    color: #ff0000;
    margin-bottom: 10px;
}

.price_column dl dt span  {
    padding-right: 5px;
}

.price_column .Common21__line-btn {
    width: 100%;
    text-align: center;
    line-height: 1.3;
}

#gourmet, #heritage, #FeatureBnOkinawa .Common21__inner,#sec-map {
    margin-bottom: 60px;
}

.heritage_column_wapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.heritage__item {
    font-size: 1.6rem;
    font-weight: 400;
    display: flex;
    gap: 20px;
    width: calc((100% - 20px) / 2);
    padding: 20px;
    background: white;
    border-radius: 6px;
    box-shadow: 0px 0px 0px 1px #c3c3c3 inset,
    0 2.5rem 2rem -2rem rgb(0 0 0 / 10%);
}

.heritage__item figure {
    width: 45%;
}

.heritage__txt {
    width: 53%;
}

.heritage__item ul {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.heritage__item a {
    width: 100%;
}

.nobor {
    border-top: none;
}

/* start_block-weather */
#temperature {
    display: flex;
    justify-content: center;
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    gap: 0 20px;
  }

  #temperature .temperature {
    width: calc(100% / 4);
  }

  .temperature {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 8px 0;
    color: #6b6b6b;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 100px;
    box-shadow: 0px 0px 0px 1px #e5e5e5 inset;
    transition: box-shadow .5s;
  }

  .temperature.current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    display: block;
    width: 16px;
    height: 16px;
    background-color: gray;
    border: 3px solid gray;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
  }

  .temperature:hover::before {
    transition: background-image 0.5s;
  }

  .temperature.spring {
    background-color: #ebfaff;
  }

  .temperature.spring:hover,
  .temperature.spring.current {
    box-shadow: 0px 0px 0px 3px var(--theme-color04) inset;
  }

  .temperature.spring.current::after {
    background-color: #ebfaff;
    border-color: var(--theme-color04);
  }

  .temperature.summer {
    background-color: #ffe8e8;
  }

  .temperature.summer:hover,
  .temperature.summer.current {
    box-shadow: 0px 0px 0px 3px var(--theme-color01) inset;
  }

  .temperature.summer.current::after {
    background-color: #ffe8e8;
    border-color: var(--theme-color01);
  }

  .temperature.autumn {
    background-color: #F4FBF4;
  }

  .temperature.autumn:hover,
  .temperature.autumn.current {
    box-shadow: 0px 0px 0px 3px var(--theme-color02) inset;
  }

  .temperature.autumn.current::after {
    background-color: #F4FBF4;
    border-color: var(--theme-color02);
  }

  .temperature.winter {
    background-color: #fff9e6;
  }

  .temperature.winter:hover,
  .temperature.winter.current {
    box-shadow: 0px 0px 0px 3px var(--theme-color03) inset;
  }

  .temperature.winter.current::after {
    background-color: #fff9e6;
    border-color: var(--theme-color03);
  }

  /* 気温表 */
  table.temperatureTbl {
	border-collapse: collapse;
	width: 1024px;
	}

    .temperatureTbl caption {
      position: relative;
      margin-bottom: 15px;
      font-size: 2.1rem;
      font-weight: 600;
    }

    .temperatureTbl caption::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      display: block;
      width: calc(100% - 280px);
      height: 1px;
      background-color: #e5e5e5;
    }

    table.temperatureTbl th, table.temperatureTbl td {
        border: solid 1px #fff;
        text-align: center;
        }

    table.temperatureTbl th {
        background-color: #EEEEEE;
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        text-align: left;
        vertical-align: middle;
        text-align: center;
        white-space:  nowrap;
    }

    table.temperatureTbl td {
        font-size: 15px;
        line-height: 1.5;
        color: #333333;
        padding: 15px 10px;
        vertical-align: middle;
    }

    th.month {
        width: 80px;
    }

    th.average {
        width: 140px;
    }

    th.event {
        width: 220px;
    }

    .left {
        text-align: left !important;
    }

    .spring td {
        background-color:  #ebfaff;
    }

    .spring .emphasis {
        background-color: #B6EBFD;
        font-weight: 600;
    }

    .summer td {
        background-color:  #FFF5F5;
    }

    .summer .emphasis {
        background-color: #FDDBDB;
        font-weight: 600;
    }

    .autumn td {
        background-color:  #F4FBF4;
    }

    .autumn .emphasis {
        background-color: #D6F4D9;
        font-weight: 600;
    }

    .winter td {
        background-color:  #FFF9E6;
    }

    .winter .emphasis {
        background-color: #FCEDC0;
        font-weight: 600;
    }
/* end_block-weather */

.belongings {
    width: 1024px;
}

.belongings, .belongings td, .belongings th {
	border: 1px solid #e5e5e5;
	border-collapse: collapse;
}

.belongings td, .belongings th {
	padding: 10px;
}

.belongings th {
	background: #EEEEEE;
	text-align: center;
}

.belongings .even {
	background: #fbf8f0;
}

.belongings .odd {
	background: #fefcf9;
}

.midashi {
    vertical-align: middle;
    text-align: center;
    width: 150px;
    background: #e5f2f8;
}

.FeatureBn__item {
    padding: 15px;
}

#basicInfo {
    margin-top: 100px;
    margin-bottom: 60px;
}


/* エリア紹介枠 */
#Map{
  border-bottom: none;
  margin-bottom: 0px;
}

.MapArea{
  background-color: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 20px;
}

.MapArea .Tour{
  background-color: #ffffff;
}

.MapArea .Tour__txt{
  padding: 15px 15px 70px 15px;
}

.MapArea__txt-link-wrap{
  font-size: 1.4rem;
  position: absolute;
  left: 0px;
  bottom: 15px;
  padding: 15px 15px 0 15px;
}

.Tour:hover .MapArea__txt-link-wrap {
  text-decoration: underline;
}

.MapArea__txt-link {
  display: block;
  text-indent: -1.3rem;
  padding-left: 1.3rem;
}

.MapArea__txt-link:hover {
  text-decoration: underline;
}

.MapArea__txt-link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: rotate(45deg);
  vertical-align: 1px;
}

/* 観光マップ枠 */

.group-map{
	background-image: url(/attending/okinawa/images/map-okinawa.jpg);
}


.bt-okinawa1 {
    top: 231px;
    left: 528px;
}

.bt-okinawa2 {
    top: 35px;
    left: 488px;
}

.bt-okinawa3 {
    top: 394px;
    left: 450px;
}

.bt-okinawa4 {
    top: 327px;
    left: 280px;
}

.bt-okinawa5 {
    top: 26px;
    left: 737px;
}

.bt-okinawa6 {
top: 254px;
    left: 878px;
}

.bt-okinawa7 {
    top: 140px;
    left: 165px;
}

.bt-okinawa8 {
top: 365px;
    left: 166px;
}

.bt-okinawa9 {
    top: 25px;
    left: 20px;
}

.bt-okinawa10 {
    top: 253px;
    left: 20px;
}

/* start_block-map */
.group-map {
  position: relative;
  background-repeat: no-repeat;
  width: 1024px;
  height: 476px;
  margin-bottom: 40px;
}

.group-map.group-map_brd{
border: 1px solid #e5e5e5;
}

.map-link, .map-link2 {
display: inline-block;
font-weight: 600;
line-height: 1;
border: solid 1px #E45E61;
border-radius: 100px;
background-color: #fff;
padding: 10px 20px;
box-shadow: 0px 10px 7px -7px rgb(0 0 0 / 15%);
transition: background-color 0.5s, box-shadow 0.3s;
font-size:2rem;
}

.map-link:hover, .map-link2:hover {
background-color: #FFF5F5;
box-shadow: 0px 10px 7px -7px rgb(0 0 0 / 0%);
}

.map-link::before, .map-link2::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 16px;
  margin-right: 3px;
  vertical-align: -2px;
  background: url(/attending/okinawa/images/mark.svg) no-repeat center / contain;
}

li[class ^="bt-"] {
position: absolute;
}

.map-link_tourit {
display: inline-block;
font-weight: 600;
line-height: 1;
padding: 10px 20px;
font-size:1.4rem;
}

.map-link_tourit::before {
content: "●";
display: inline-block;
font-size:1.4rem;
color: #E45E61;
}

.bt-okinawa_tourit1 {
  top: 105px;
  left: 445px;
}

.bt-okinawa_tourit2 {
  top: 117px;
  left: 810px;
}

.bt-okinawa_tourit3 {
  top: 205px;
  left: 433px;
}

.bt-okinawa_tourit4 {
  top: 370px;
  left: 287px;
}

.bt-okinawa_tourit4 .map-link_tourit::after{
  content: "●";
  display: inline-block;
  font-size:1.4rem;
  color: #E45E61;
}

.bt-okinawa_tourit4 .map-link_tourit::before{
  content: "";
  display: inline-block;
  font-size:1.4rem;
  color: #E45E61;
}

.bt-okinawa_tourit5 {
  top: 368px;
  left: 366px;
}

.bt-okinawa_tourit6 {
  top: 435px;
  left: 350px;
}

.bt-okinawa_tourit7 {
  top: 300px;
  left: 380px;
}

.bt-okinawa_tourit8 {
  top: 126px;
  left: 470px;
}

.bt-okinawa_tourit9 {
  top: 36px;
  left: 240px;
}

.bt-okinawa_tourit10{
  top: 315px;
  left: 844px;
}

.bt-okinawa_tourit11{
  top: 200px;
  left: 100px;
}
.bt-okinawa_tourit12{
  display: none;
}
/* end_block-map */

.group-heading {
  width: 1024px;
  margin: 0 auto;
}