html,
body {
  height: 100%;
}

body {
  font-family: dnp-shuei-gothic-gin-std, "Noto Sans JP", sans-serif;
  height: 100%;
}

body.is_noscroll {
  overflow: hidden;
}



/*--------------------------------------------------
top_news
--------------------------------------------------*/
.top_news--pc {
  display: block;
}

@media screen and (max-width: 1000px) {
  .top_news--pc {
    display: none;
  }
}

.top_news--sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .top_news--sp {
    display: block;
  }

  .top_news--pc {
    display: none;
  }
}


.top_news {
  margin-top: 20px;
  position: relative;
  /* bottom: 40px;
  left: 40px; */
  z-index: 2;
  width: 320px;
  padding: 10px 0 0;
  padding-bottom: 40px;
}

.top_news_switch {
  display: none;
}

.top_news_prev,
.top_news_next {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  z-index: 1;
  cursor: pointer;
}

.top_news_prev {
  background: url(../img/icon_arrow_B.png) center / contain no-repeat;
  right: 40px;
}

.top_news_next {
  background: url(../img/icon_arrow_C.png) center / contain no-repeat;
  right: 0;
}

.top_news_list {
  position: relative;
  height: 50px;
}

.top_news_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: .3s opacity;
  pointer-events: none;
}

.top_news_item.is_active {
  opacity: 1;
  pointer-events: all;
}

.top_news_title {
  color: #00A0A5;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.top_news_date {
  color: #6F6F6F;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  padding: 0 0 0 70px;
  margin: -22px 0 9px;
}

.top_news_name {
  color: #275A5B;
  font-size: 13px;
  height: 1.5em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .top_news {
    position: fixed;
    bottom: auto;
    left: auto;
    top: 80px;
    right: 14px;
    width: 109px;
    max-height: 50px;
    padding: 0;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    transition: .3s;
  }

  .top_news::before {
    content: "News";
    color: #00A0A5;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }

  /* .top_news::after{
    content: "";
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  } */
  .top_news.is_active {
    width: 200px;
    max-height: 200px;
    padding: 4px 20px;
    border-radius: 8px;
  }

  .top_news.is_active::before {
    display: none;
  }

  .top_news_switch {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(../img/icon_plus.png) right 14px center / 18px auto no-repeat;
  }

  .top_news.is_active .top_news_switch {
    width: 30px;
    height: 30px;
    top: -10px;
    left: -10px;
    background-position: center;
    transform: rotate(45deg);
  }

  .top_news_prev,
  .top_news_next {
    display: none;
  }

  .top_news_list {
    height: auto;
    opacity: 0;
  }

  .top_news.is_active .top_news_list {
    transition: .3s opacity;
    opacity: 1;
  }

  .top_news_item {
    position: static;
    opacity: 1;
    pointer-events: all;
    padding: 12px 0;
  }

  .top_news_item:not(:last-of-type) {
    border-bottom: 1px solid #E0E0E0;
  }

  .top_news_title {
    font-size: 12px;
  }

  .top_news_date {
    font-size: 10px;
    padding: 0 0 0 44px;
    margin: -16px 0 2px;
  }

  .top_news_name {
    font-size: 11px;
  }
}



/*--------------------------------------------------
top_sidebar
--------------------------------------------------*/
.top_sidebar {
  position: fixed;
  top: 15%;
  left: 0;
  bottom: 0;
  overflow-y: scroll;
  width: 400px;
}

.top_sidebar_inner {
  width: 100%;
  height: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.top_sidebar_copy {
  color: #00A0A5;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 40px;
  padding-top: 40px;
}

.top_sidebar_text {
  color: #00A0A5;
  line-height: 2;
}

.top_sidebar_close {
  display: none;
}

@media (max-width: 1000px) {
  .top_sidebar {
    width: auto;
    z-index: 99;
    top: 77px;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .3s opacity;
    padding: 60px 0;
    overflow: auto;
  }

  .top_sidebar::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .2;
    background: #061819;
    z-index: -1;
  }

  .top_sidebar_inner {
    width: 326px;
    height: auto;
    max-width: calc(100% - 30px);
    border-radius: 16px;
    padding: 40px 28px;
    margin: 0 auto;
  }

  .top_sidebar.is_active {
    opacity: 0;
    pointer-events: none;
  }

  .top_sidebar_copy {
    font-size: 26px;
    margin: 0 0 30px;
  }

  .top_sidebar_text {
    font-size: 14px;
  }

  .top_sidebar_close {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px auto 0;
    width: 110px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #fff;
    background: #00A0A5;
    color: #fff;
    cursor: pointer;
  }
}

/*--------------------------------------------------
top_modal
--------------------------------------------------*/


.top_modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, .3);
  pointer-events: none;
  opacity: 0;
  transition: .4s opacity;
}

.top_modal.is_active {
  opacity: 1;
  pointer-events: all;
}

.top_modal_content {
  width: 800px;
  background: #fff;
  overflow: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.top_modal_inner {
  padding: 200px 40px;
}

.top_modal_en {
  color: #275A5B;
  font-size: 56px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.top_modal_ja {
  color: #275A5B;
  font-weight: bold;
  margin: 0 0 50px;
}

.top_modal_text {
  color: #275A5B;
  max-width: 300px;
  line-height: 2;
  margin: 0 0 100px;
}

.top_modal_nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 150px;
  row-gap: 10px;
}

.top_modal_link {
  color: #275A5B;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 5px 0 5px 40px;
  background: url(../img/icon_arrow_A.png) left center / 28px auto no-repeat;
}

.top_modal_image {
  width: 400px;
  position: absolute;
  top: 110px;
  right: 30px;
}

.top_modal_close {
  position: absolute;
  bottom: 40px;
  left: 710px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: url(../img/icon_close.png) center center / 30px auto no-repeat;
}

@media (max-width: 1000px) {
  .top_modal {
    top: 77px;
  }

  .top_modal_content {
    width: calc(100% - 40px);
  }

  .top_modal_inner {
    padding: 60px 20px;
  }

  .top_modal_en {
    font-size: 40px;
  }

  .top_modal_ja {
    font-size: 14px;
    margin: 0 0 20px;
  }

  .top_modal_image {
    position: static;
    width: auto;
    padding: 0 40px;
  }

  .top_modal_text {
    font-size: 14px;
    max-width: none;
    margin: 0 0 40px;
  }

  .top_modal_nav {
    display: block;
    max-height: none;
  }

  .top_modal_link {
    font-size: 14px;
    padding: 10px 0 10px 34px;
    background-size: 24px auto;
  }

  .top_modal_close {
    top: 20px;
    right: 50px;
    bottom: auto;
    left: auto;
  }
}

#top_modal_01 .top_modal_content {
  background: #F2F8FF;
}

#top_modal_02 .top_modal_content {
  background: #EFFAF9;
}

#top_modal_03 .top_modal_content {
  background: #FFF5F0;
}

#top_modal_04 .top_modal_content {
  background: #EFFCF6;
}

#top_modal_05 .top_modal_content {
  background: #EDF9FF;
}

#top_modal_06 .top_modal_content {
  background: #FDFDEF;
}

#top_modal_07 .top_modal_content {
  background: #FEFAFF;
}



/*--------------------------------------------------
top_container
--------------------------------------------------*/
.top_map {
  width: calc(100% - 400px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden auto;
}

.top_map.is_noscroll {
  overflow: hidden;
}

.top_map_wrap {
  position: relative;
}

.top_map_canvas {
  display: block;
}

.top_map_button {
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #fff;
  background: #FF6200;
  width: 54px;
  height: 54px;
  border-radius: 27px;
  letter-spacing: 0.05em;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  z-index: 1;
  transition: .3s width, .3s padding;
  color: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

@keyframes popup {
  0% {
    transform: translate(-50%, calc(-50% + 40px)) scale(0.8);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.0);
  }

  80%,
  100% {
    opacity: 1;
  }
}

.top_map.is_active .top_map_button {
  pointer-events: all;
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.top_map_button::before {
  content: "";
  border: 5px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}

.top_map_button::after {
  content: "";
  border: 5px solid transparent;
  border-top: 10px solid #FF6200;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -3px);
}

.top_map_button:hover {
  width: 160px;
  color: #fff;
  background: #FF6200;
}

.top_map_button div {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.top_map_button div::before {
  border-radius: 50%;
  content: "";
  width: 100%;
  height: 100%;
  background: #FF6200 url(../img/icon_search.png) center / 19px auto no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: .4s opacity;
}

.top_map_button:hover div::before {
  opacity: 0;
}

.top_map_button:nth-of-type(1) {
  top: 24.0%;
  left: 20.5%;
  animation-delay: .1s !important;
}

.top_map_button:nth-of-type(2) {
  top: 56.5%;
  left: 12.0%;
  animation-delay: .4s !important;
}

.top_map_button:nth-of-type(3) {
  top: 32.0%;
  left: 44.0%;
  animation-delay: .3s !important;
}

.top_map_button:nth-of-type(4) {
  top: 64.0%;
  left: 28.0%;
  animation-delay: .7s !important;
}

.top_map_button:nth-of-type(5) {
  top: 40.0%;
  left: 66.5%;
  animation-delay: .6s !important;
}

.top_map_button:nth-of-type(6) {
  top: 63.0%;
  left: 43.5%;
  animation-delay: .2s !important;
}

.top_map_button:nth-of-type(7) {
  top: 75.5%;
  left: 67.5%;
  animation-delay: .5s !important;
}

@media (max-width: 1000px) {
  .top_map {
    padding: 77px 0 0;
    position: relative;
    width: auto;
    height: 100%;
    display: grid;
    align-items: flex-end;
  }

  .top_map_button {
    width: 43px;
    height: 43px;
  }

  .top_map_button div::before {
    background-size: 15px auto;
  }
}