.ico-arrow:before, .exhibition__list-wrap:before {
  display: block;
  content: '';
  position: absolute;
}

.top-inner {
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 40px);
}

@media print, screen and (min-width: 1024px) {
  .top-inner {
    width: calc(100% - 80px);
  }
}

.title-s strong,
.title-s span {
  display: block;
  text-align: center;
}

.title-s strong {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: -0.1em;
}

@media print, screen and (min-width: 768px) {
  .title-s strong {
    font-size: 4rem;
  }
}

.title-s span {
  font-size: 1.3rem;
  font-weight: 700;
}

@media print, screen and (min-width: 768px) {
  .title-s span {
    font-size: 1.6rem;
  }
}

.title-m strong,
.title-m span {
  display: block;
}

.title-m strong {
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: -0.1em;
  color: #007AA5;
}

@media print, screen and (min-width: 768px) {
  .title-m strong {
    font-size: 6.1rem;
  }
}

.title-m span {
  margin-top: 5px;
  font-size: 1.9rem;
  font-weight: 700;
}

@media print, screen and (min-width: 768px) {
  .title-m span {
    margin-top: 12px;
    font-size: 2.2rem;
  }
}

.ico-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #07222b;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s;
}

.ico-arrow:before {
  top: calc(50% - 2px);
  left: calc(50% - 3px);
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.ico-arrow.white {
  background-color: #fff;
}

.ico-arrow.white:before {
  border-top: 1px solid #07222b;
  border-right: 1px solid #07222b;
}

@media print, screen and (min-width: 768px) {
  .ico-arrow {
    width: 24px;
    height: 24px;
  }
}

.more-link-btn a,
.more-link-btn button {
  position: relative;
  display: block;
  color: #07222b;
  border: none;
  border-bottom: 3px solid #ccc;
  background: none;
  text-decoration: none;
  padding: 12px 40px 12px 15px;
  font-size: 1.3rem;
  z-index: 1;
}

.more-link-btn a .ico-arrow,
.more-link-btn button .ico-arrow {
  right: 15px;
  width: 18px;
  height: 18px;
}

@media print, screen and (min-width: 768px) {
  .more-link-btn a,
  .more-link-btn button {
    padding: 18px 40px 18px 15px;
    font-size: 1.5rem;
  }
}

.device-tab .more-link-btn a:active,
.device-tab .more-link-btn button:active,
.device-sp .more-link-btn a:active,
.device-sp .more-link-btn button:active {
  color: #007AA5;
  background: #F1F6FB;
  border-color: #007AA5;
}

.device-tab .more-link-btn a:active .ico-arrow,
.device-tab .more-link-btn button:active .ico-arrow,
.device-sp .more-link-btn a:active .ico-arrow,
.device-sp .more-link-btn button:active .ico-arrow {
  background-color: #007AA5;
}

.device-pc .more-link-btn a:hover,
.device-pc .more-link-btn button:hover {
  color: #007AA5;
  background: #F1F6FB;
  border-color: #007AA5;
}

.device-pc .more-link-btn a:hover .ico-arrow,
.device-pc .more-link-btn button:hover .ico-arrow {
  background-color: #007AA5;
}

@keyframes mvCurrent {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes mvCurrentImgSp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-16%);
  }
}

@keyframes mvCurrentImg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-6%);
  }
}

.portal .mv {
  position: relative;
}

.portal .mv-slider {
  height: calc(100vh - 60px);
}

.portal .mv-slider.wait {
  pointer-events: none;
}

@media print, screen and (min-width: 768px) {
  .portal .mv-slider {
    height: calc(100vh - 128px);
    min-height: 500px;
  }
}

.portal .mv-slider .slick-list,
.portal .mv-slider .slick-track {
  height: 100%;
}

.portal .mv-slider__item {
  position: absolute !important;
  opacity: 1 !important;
  left: 0 !important;
  height: 100% !important;
  transition: none !important;
  background-color: #fff;
}

.portal .mv-slider__item.slide-out {
  width: 0% !important;
  transition: width 0.4s linear !important;
}

@media print, screen and (min-width: 768px) {
  .portal .mv-slider__item.slide-out {
    transition: width 0.45s linear !important;
  }
}

@media print, screen and (min-width: 1024px) {
  .portal .mv-slider__item.slide-out {
    transition: width 0.62s linear !important;
  }
}

.portal .mv-slider__item__wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .portal .mv-slider__item__wrap {
    min-height: 500px;
    padding-top: 0;
  }
}

.portal .js-stop .mv-img {
  animation-play-state: paused;
}

.portal .slide-moving .mv-img {
  animation-name: mvCurrentImgSp;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@media print, screen and (min-width: 768px) {
  .portal .slide-moving .mv-img {
    animation-name: mvCurrentImg;
  }
}

.portal .mv-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 110vw;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media print, screen and (min-width: 768px) {
  .portal .mv-img {
    background-image: url(../img/top/mv01.jpg);
  }
}

.portal .kinbi_01 .mv-img {
  background-image: url(../img/top/mv_kinbi_01_sp.jpg);
}

.portal .kinbi_02 .mv-img {
  background-image: url(../img/top/mv_kinbi_02_sp.jpg);
}

.portal .migishi_01 .mv-img {
  background-image: url(../img/top/mv_migishi_01_sp.jpg);
}

.portal .migishi_02 .mv-img {
  background-image: url(../img/top/mv_migishi_02_sp.jpg);
}

.portal .asahikawa_01 .mv-img {
  background-image: url(../img/top/mv_asahikawa_01_sp.jpg);
}

.portal .asahikawa_02 .mv-img {
  background-image: url(../img/top/mv_asahikawa_02_sp.jpg);
}

.portal .obihiro_01 .mv-img {
  background-image: url(../img/top/mv_obihiro_01_sp.jpg);
}

.portal .obihiro_02 .mv-img {
  background-image: url(../img/top/mv_obihiro_02_sp.jpg);
}

.portal .hakodate_01 .mv-img {
  background-image: url(../img/top/mv_hakodate_01_sp.jpg);
}

.portal .hakodate_02 .mv-img {
  background-image: url(../img/top/mv_hakodate_02_sp.jpg);
}

@media print, screen and (min-width: 768px) {
  .portal .kinbi_01 .mv-img {
    background-image: url(../img/top/mv_kinbi_01.jpg);
  }
  .portal .kinbi_02 .mv-img {
    background-image: url(../img/top/mv_kinbi_012.jpg);
  }
  .portal .migishi_01 .mv-img {
    background-image: url(../img/top/mv_migishi_01.jpg);
  }
  .portal .migishi_02 .mv-img {
    background-image: url(../img/top/mv_migishi_02.jpg);
  }
  .portal .asahikawa_01 .mv-img {
    background-image: url(../img/top/mv_asahikawa_01.jpg);
  }
  .portal .asahikawa_02 .mv-img {
    background-image: url(../img/top/mv_asahikawa_02.jpg);
  }
  .portal .obihiro_01 .mv-img {
    background-image: url(../img/top/mv_obihiro_01.jpg);
  }
  .portal .obihiro_02 .mv-img {
    background-image: url(../img/top/mv_obihiro_02.jpg);
  }
  .portal .hakodate_01 .mv-img {
    background-image: url(../img/top/mv_hakodate_01.jpg);
  }
  .portal .hakodate_02 .mv-img {
    background-image: url(../img/top/mv_hakodate_02.jpg);
  }
}

.portal .mv-copy {
  position: absolute;
  top: calc(89.5% - 130px);
  left: 0;
  width: 100vw;
  padding: 0 20px;
  z-index: 2;
}

.portal .mv-copy a {
  display: inline-block;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .portal .mv-copy {
    top: 52%;
    padding: 0 0 0 4vw;
  }
}

@media print, screen and (min-width: 1240px) {
  .portal .mv-copy {
    top: 56%;
  }
}

.portal .mv-copy__en {
  display: none;
  pointer-events: none;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 6.2vw;
  line-height: 1.2;
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  .portal .mv-copy__en {
    font-size: 4.8rem;
    line-height: 1.15;
  }
}

@media print, screen and (min-width: 1240px) {
  .portal .mv-copy__en {
    font-size: 6.2rem;
  }
}

.portal .mv-copy__place {
  margin: 8px 0 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-15px);
  transition-property: opacity, transform;
  transition-duration: 0s;
  transition-delay: 0s;
  transition-timing-function: ease-out;
}

.portal .mv-copy__place span {
  display: inline-block;
  position: relative;
  min-width: 250px;
  padding: 15px 45px 15px 15px;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #fff;
  background-color: rgba(0, 122, 165, 0.9);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.portal .mv-copy__place span .ico-arrow {
  right: 15px;
  transition: background-color 0.2s ease;
}

.portal .mv-copy__place span .ico-arrow:before {
  border-color: #007AA5;
  transition: border-color 0.2s ease;
}

@media print, screen and (min-width: 768px) {
  .portal .mv-copy__place {
    margin: 20px 0 0;
  }
  .portal .mv-copy__place span {
    min-width: 340px;
    padding: 20px 55px 20px 20px;
    font-size: 2rem;
  }
  .portal .mv-copy__place span .ico-arrow {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

@media print, screen and (min-width: 1024px) {
  .portal .mv-copy__place span {
    min-width: 380px;
  }
}

.portal .slide-moving .mv-copy__place {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition-duration: 0.5s, 0.75s;
  transition-delay: 1.2s;
  transition-timing-function: ease-out;
}

.portal .slide-out .mv-copy__place {
  opacity: 0;
  transform: translateX(-15px);
  transition-duration: 0s;
  transition-delay: 0.7s;
}

.portal .mv-copy__link a {
  position: relative;
  display: inline-block;
  padding: 5px 35px 5px 0;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}

@media print, screen and (min-width: 1024px) {
  .portal .mv-copy__link a {
    padding: 8px 50px 8px 0;
    font-size: 1.3rem;
  }
}

.portal .mv-copy__link .ico-arrow {
  right: 0;
  width: 22px;
  height: 22px;
}

.portal .mv-indicator {
  position: absolute;
  bottom: 17px;
  right: 100px;
  width: 120px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
}

@media print, screen and (min-width: 768px) {
  .portal .mv-indicator {
    width: 216px;
  }
}

.portal .mv-indicator span {
  position: relative;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #07222b;
  animation-name: mvIndicator;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.portal .js-stop .mv-indicator span {
  animation-play-state: paused;
}

.portal .mv-copy__eng {
  pointer-events: none;
  position: absolute;
  padding: 0 20px;
  bottom: calc(10.3% + 130px);
  font-family: "Poppins", sans-serif;
  font-size: 6.2vw;
  line-height: 1.2;
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  .portal .mv-copy__eng {
    padding: 0 0 0 4vw;
    font-size: 4.8rem;
    line-height: 1.15;
    bottom: 48%;
  }
}

@media print, screen and (min-width: 1240px) {
  .portal .mv-copy__eng {
    font-size: 6.2rem;
    bottom: 45%;
  }
}

.portal .mv-slider-control {
  position: absolute;
  bottom: 0;
  right: 0;
}

.portal .mv-slider-control .basic-control__autoplay {
  width: 80px;
  height: 30px;
  padding: 6px 15px 6px 36px;
  font-size: 1.2rem;
  white-space: nowrap;
}

.portal .mv-slider-control .basic-control__autoplay:before {
  left: 17px;
}

@keyframes mvIndicator {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes mvBar {
  0% {
    transform: translateY(-100%);
  }
  70% {
    transform: translateY(350%);
  }
  100% {
    transform: translateY(350%);
  }
}

.device-tab .mv-copy a:active .mv-copy__place span,
.device-sp .mv-copy a:active .mv-copy__place span {
  color: #007AA5;
  background-color: rgba(255, 255, 255, 0.9);
}

.device-tab .mv-copy a:active .mv-copy__place span .ico-arrow,
.device-sp .mv-copy a:active .mv-copy__place span .ico-arrow {
  background-color: #007AA5;
}

.device-tab .mv-copy a:active .mv-copy__place span .ico-arrow:before,
.device-sp .mv-copy a:active .mv-copy__place span .ico-arrow:before {
  border-color: #fff;
}

.device-pc .mv-copy a:hover .mv-copy__place span {
  color: #007AA5;
  background-color: rgba(255, 255, 255, 0.9);
}

.device-pc .mv-copy a:hover .mv-copy__place span .ico-arrow {
  background-color: #007AA5;
}

.device-pc .mv-copy a:hover .mv-copy__place span .ico-arrow:before {
  border-color: #fff;
}

.top-banner {
  padding: 30px 0 50px;
}

@media print, screen and (min-width: 1024px) {
  .top-banner {
    padding: 60px 0 80px;
  }
}

.top-banner__wrap {
  position: relative;
}

.top-banner-slider__item {
  padding: 0 10px;
}

.top-banner-slider__item a {
  display: block;
  position: relative;
}

.top-banner-slider__item a:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #007AA5;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

@media print, screen and (min-width: 768px) {
  .top-banner-slider__item {
    width: 392px;
  }
}

.top-banner-slider-control {
  margin-top: 15px;
}

@media print, screen and (min-width: 1024px) {
  .top-banner-slider-control {
    margin-top: 25px;
  }
}

.no-slick {
  display: flex;
  justify-content: center;
  padding: 0 30px;
}

.device-tab .top-banner-slider__item a:active:after,
.device-sp .top-banner-slider__item a:active:after {
  opacity: 1;
}

.device-pc .top-banner-slider__item a:hover:after {
  opacity: 1;
}

.news-important {
  padding: 0 0 50px;
}

@media print, screen and (min-width: 768px) {
  .news-important {
    padding: 0 0 80px;
  }
}

.news-important__inner {
  position: relative;
  padding: 25px 20px;
  background-color: #fff3f7;
}

@media print, screen and (min-width: 768px) {
  .news-important__inner {
    padding: 30px;
  }
}

@media print, screen and (min-width: 1024px) {
  .news-important__inner {
    padding: 40px 50px 40px;
  }
}

.news-important__title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-align: center;
  color: #D60000;
  line-height: 1;
}

@media print, screen and (min-width: 768px) {
  .news-important__title {
    margin-bottom: 25px;
    font-size: 2.5rem;
  }
}

.news-important__list {
  max-width: 920px;
  margin: 0 auto;
}

.news-important__item:not(:first-child) {
  margin-top: 10px;
}

.news-important__item a {
  display: block;
  padding: 10px 15px;
  color: #D60000;
  text-decoration: none;
  background: #fff;
  border: 1px solid #D60000;
  border-left-width: 7px;
  transition: none;
}

.news-important__item .date {
  font-size: 1.2rem;
}

@media print, screen and (min-width: 768px) {
  .news-important__item a {
    padding: 10px 25px 10px 30px;
  }
  .news-important__item dl {
    display: flex;
  }
  .news-important__item .date {
    padding-top: 3px;
    font-size: 1.3rem;
  }
  .news-important__item .title {
    padding-left: 25px;
    font-size: 1.6rem;
  }
}

.device-tab .news-important a:active,
.device-sp .news-important a:active {
  text-decoration: underline;
}

.device-pc .news-important a:hover {
  text-decoration: underline;
}

.exhibition {
  position: relative;
  padding: 40px 0 0;
  overflow: hidden;
  background-color: #F1F6FB;
}

@media print, screen and (min-width: 768px) {
  .exhibition {
    padding: 70px 0 0;
  }
}

.exhibition .exhibition-tab {
  margin-top: 20px;
  padding-top: 25px;
  background-color: #fff;
}

@media print, screen and (min-width: 768px) {
  .exhibition .exhibition-tab {
    margin-top: 55px;
    padding-top: 50px;
  }
}

.exhibition__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(5%);
}

@media print, screen and (min-width: 768px) {
  .exhibition__bg {
    transform: translateY(15%);
  }
}

.exhibition__inner {
  position: relative;
}

.exhibition__list-wrap {
  position: relative;
  padding-bottom: 50px;
}

.exhibition__list-wrap:before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 20px);
  background-color: #fff;
}

@media print, screen and (min-width: 768px) {
  .exhibition__list-wrap {
    padding-bottom: 80px;
  }
  .exhibition__list-wrap:before {
    height: calc(100% - 40px);
  }
}

.exhibition__title {
  text-align: center;
}

.exhibition__btn {
  margin: 20px auto 0;
  width: 220px;
}

.exhibition__btn a,
.exhibition__btn button {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .exhibition__btn {
    margin-top: 60px;
  }
}

@media print, screen and (min-width: 1240px) {
  .exhibition__btn {
    margin-top: 60px;
  }
}

.map {
  background: #f2f2f2;
  padding: 40px 0;
}

@media print, screen and (min-width: 768px) {
  .map {
    padding: 80px 0 0;
  }
}

.map__inner {
  position: relative;
}

.map__title {
  text-align: center;
  margin-bottom: 10px;
}

@media print, screen and (min-width: 1024px) {
  .map__title {
    margin-bottom: 22px;
  }
}

.map-main {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

@media print, screen and (min-width: 1024px) {
  .map-main {
    margin-top: -4%;
  }
}

@media print, screen and (min-width: 1240px) {
  .map-main {
    margin-top: -70px;
  }
}

.map-main__bg {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.map-main__bg img {
  width: 100%;
}

.map-main__list {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.map-main__list__item {
  position: absolute;
}

.map-main__list__item .pin {
  display: none;
  pointer-events: none;
}

.map-main__list__item.sapporo {
  bottom: 46.2%;
  right: 69.2%;
}

.map-main__list__item.asahikawa {
  bottom: 59.8%;
  left: 41.8%;
}

.map-main__list__item.obihiro {
  top: 54.7%;
  left: 54%;
}

.map-main__list__item.hakodate {
  bottom: 25%;
  right: 80.2%;
}

.map-main__list__item.kushiro {
  display: none;
}

.map-main__list__item .name {
  position: absolute;
  color: #D60000;
  font-weight: bold;
  font-size: 3vw;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
}

@media print, screen and (min-width: 768px) {
  .map-main__list__item:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #D60000;
    z-index: -1;
    pointer-events: none;
  }
  .map-main__list__item .pin {
    position: absolute;
    display: block;
    width: 28px;
  }
  .map-main__list__item .pin img {
    width: 28px;
    height: 41px;
  }
  .map-main__list__item .name {
    font-size: 1.4rem;
  }
  .map-main__list__item.sapporo {
    bottom: 42.5%;
    right: 55.5%;
    width: 27%;
    height: 20%;
  }
  .map-main__list__item.sapporo .pin {
    right: -14px;
    bottom: 0;
  }
  .map-main__list__item.sapporo .pin.migishi {
    right: 8px;
  }
  .map-main__list__item.sapporo .name {
    right: -4px;
    bottom: 43px;
  }
  .map-main__list__item.sapporo:before {
    right: 0;
    bottom: 25px;
    border-top: none;
    border-right: none;
  }
  .map-main__list__item.sapporo:after {
    content: '';
    display: block;
    position: absolute;
    width: 39%;
    height: 100%;
    right: 0;
    bottom: 25px;
    border-left: 1px solid #D60000;
    z-index: -1;
  }
  .map-main__list__item.asahikawa {
    bottom: 55.5%;
    left: 51.5%;
    width: 25%;
    height: 12%;
  }
  .map-main__list__item.asahikawa .pin {
    left: -14px;
    bottom: 0;
  }
  .map-main__list__item.asahikawa .name {
    left: -15px;
    bottom: 43px;
  }
  .map-main__list__item.asahikawa:before {
    border-right: none;
    border-bottom: none;
  }
  .map-main__list__item.obihiro {
    top: 58.7%;
    left: 58.2%;
    width: 10%;
    height: 20%;
  }
  .map-main__list__item.obihiro .pin {
    left: -14px;
    top: -40px;
  }
  .map-main__list__item.obihiro .name {
    left: -15px;
    top: -55px;
  }
  .map-main__list__item.obihiro:before, .map-main__list__item.obihiro:after {
    left: -32%;
    top: -25px;
  }
  .map-main__list__item.obihiro:before {
    border-top: none;
    border-right: none;
  }
  .map-main__list__item.obihiro:after {
    content: '';
    display: block;
    position: absolute;
    width: 39%;
    height: 100%;
    border-top: 1px solid #D60000;
    z-index: -1;
  }
  .map-main__list__item.hakodate {
    bottom: 23.2%;
    right: 60.7%;
    width: 20%;
    height: 7%;
  }
  .map-main__list__item.hakodate .pin {
    right: -14px;
    bottom: 0;
  }
  .map-main__list__item.hakodate .name {
    right: -15px;
    bottom: 43px;
  }
  .map-main__list__item.hakodate:before {
    bottom: 25px;
    right: 0;
    border-top: none;
    border-right: none;
    border-left: none;
  }
  .map-main__list__item.kushiro {
    display: block;
    bottom: 42%;
    left: 68.5%;
    width: 10%;
    height: 6%;
  }
  .map-main__list__item.kushiro .pin {
    left: -14px;
    bottom: 0;
  }
  .map-main__list__item.kushiro .name {
    left: -15px;
    bottom: 43px;
  }
  .map-main__list__item.kushiro:before {
    bottom: 25px;
    left: 0;
    border-top: none;
    border-right: none;
    border-left: none;
  }
}

.map-main__list__link {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .map-main__list__link {
    display: block;
    position: absolute;
    width: 15.33333%;
  }
}

.map-main__list__link a {
  position: relative;
  display: block;
  color: #07222b;
  text-decoration: none;
  background-color: #fff;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.12);
  transition-property: transform box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.map-main__list__link a:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #007AA5;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s;
  pointer-events: none;
}

.map-main__list__link .name {
  position: relative;
  padding: 6% 6%;
  padding-right: calc(6% + 23px);
  font-weight: bold;
  font-size: 1vw;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.map-main__list__link .name .ico-arrow {
  right: 5%;
  width: 12px;
  height: 12px;
}

@media print, screen and (min-width: 1240px) {
  .map-main__list__link .name {
    font-size: 1.4rem;
  }
  .map-main__list__link .name .ico-arrow {
    width: 18px;
    height: 18px;
  }
}

.map-main__list__link.migishi {
  top: 28%;
  left: 7%;
}

.map-main__list__link.kinbi {
  top: 28%;
  left: 23.5%;
}

.map-main__list__link.asahikawa {
  top: 28%;
  left: 73.5%;
}

.map-main__list__link.obihiro {
  top: 69%;
  left: 62.6%;
}

.map-main__list__link.hakodate {
  top: 66%;
  left: 7%;
}

@media print, screen and (min-width: 1240px) {
  .map-main__list__link.migishi, .map-main__list__link.hakodate {
    left: 10%;
  }
  .map-main__list__link.kinbi {
    left: 26.5%;
  }
}

.map-main__list__link.kushiro {
  width: 12.6%;
  min-width: 130px;
  bottom: calc(42% + 12.5px);
  left: 73.5%;
}

.map-main__list__link.kushiro .name {
  text-align: center;
  padding: 6%;
}

.device-pc .map-main__list__link a:hover {
  transform: translateY(2px);
  box-shadow: 0px 0px 0px transparent;
}

.device-pc .map-main__list__link a:hover:after {
  opacity: 1;
}

.map-main__pin {
  position: absolute;
  width: 5%;
  z-index: 2;
  transform: translateX(-50%);
  transform-origin: bottom center;
}

.map-main__pin.pin1 {
  bottom: 47%;
  left: 36%;
}

.map-main__pin.pin2 {
  bottom: 47%;
  left: 32%;
}

.map-main__pin.pin3 {
  bottom: 60.7%;
  left: 45.2%;
}

.map-main__pin.pin4 {
  bottom: 26%;
  left: 23%;
}

.map-main__pin.pin5 {
  bottom: 46%;
  left: 57.2%;
}

.map-link-sp__item {
  margin-bottom: 10px;
}

.map-link-sp__item a {
  position: relative;
  display: flex;
  width: 100%;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.4;
  color: #07222b;
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.map-link-sp__item .imgs {
  width: 34.7%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.map-link-sp__item .imgs:before {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  padding-top: 78.81356%;
}

.map-link-sp__item .imgs.kinbi {
  background-image: url(../img/top/map_ph_kinbi.jpg);
}

.map-link-sp__item .imgs.migishi {
  background-image: url(../img/top/map_ph_migishi.jpg);
}

.map-link-sp__item .imgs.asahikawa {
  background-image: url(../img/top/map_ph_asahikawa.jpg);
}

.map-link-sp__item .imgs.obihiro {
  background-image: url(../img/top/map_ph_obihiro.jpg);
}

.map-link-sp__item .imgs.hakodate {
  background-image: url(../img/top/map_ph_hakodate.jpg);
}

.map-link-sp__item .name {
  width: calc(100% - 34.7%);
  position: relative;
  background-position: left 20px center;
  background-size: 22px auto;
  background-repeat: no-repeat;
}

.map-link-sp__item .name span {
  display: flex;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  align-items: center;
}

.map-link-sp__item .ico-arrow {
  width: 16px;
  height: 16px;
  top: inherit;
  bottom: 8px;
  right: 8px;
  transform: none;
}

.map-link-sp__item:nth-child(1) .name {
  background-image: url(../img/top/map_pin01.svg);
}

.map-link-sp__item:nth-child(2) .name {
  background-image: url(../img/top/map_pin02.svg);
}

.map-link-sp__item:nth-child(3) .name {
  background-image: url(../img/top/map_pin03.svg);
}

.map-link-sp__item:nth-child(4) .name {
  background-image: url(../img/top/map_pin04.svg);
}

.map-link-sp__item:nth-child(5) .name {
  background-image: url(../img/top/map_pin05.svg);
}

.device-tab .map-link-sp__item a:active,
.device-sp .map-link-sp__item a:active {
  background-color: #F1F6FB;
}

.link {
  padding: 40px 0;
}

@media print, screen and (min-width: 1024px) {
  .link {
    padding: 80px 0;
  }
}

.link__title {
  font-size: 1.7rem;
  text-align: center;
  color: #007AA5;
}

@media print, screen and (min-width: 768px) {
  .link__title {
    font-size: 3rem;
  }
}

.link-banner__list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin: 10px -5px 0;
}

.link-banner__list li {
  width: 50%;
  margin-top: 10px;
  padding: 0 5px;
}

.link-banner__list li img {
  width: 100%;
}

.link-banner__list li a {
  display: block;
  position: relative;
}

.link-banner__list li a:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #007AA5;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s;
  pointer-events: none;
}

@media print, screen and (min-width: 768px) {
  .link-banner__list {
    width: calc(100% + 20px);
    margin: 10px -10px 0;
  }
  .link-banner__list li {
    width: 33.333%;
    margin-top: 20px;
    padding: 0 10px;
  }
}

@media print, screen and (min-width: 1024px) {
  .link-banner__list li {
    width: 20%;
  }
}

.device-tab .link-banner__list a:active:after,
.device-sp .link-banner__list a:active:after {
  opacity: 1;
}

.device-pc .link-banner__list a:hover:after {
  opacity: 1;
}

.link-text__list {
  margin-top: 25px;
}

.link-text__list li a {
  position: relative;
  display: block;
  padding: 16px 45px 16px 12px;
  text-decoration: none;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #07222b;
  border-bottom: 3px solid #ccc;
}

.link-text__list li .ico-arrow {
  right: 15px;
}

@media print, screen and (min-width: 768px) {
  .link-text__list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin: 30px -10px 0;
  }
  .link-text__list li {
    width: 50%;
    padding: 0 10px;
  }
  .link-text__list li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 24px 50px 24px 15px;
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 1024px) {
  .link-text__list li {
    width: 25%;
  }
}

.device-tab .link-text__list a:active,
.device-sp .link-text__list a:active {
  color: #007AA5;
  background: #F1F6FB;
  border-color: #007AA5;
}

.device-tab .link-text__list a:active .ico-arrow,
.device-sp .link-text__list a:active .ico-arrow {
  background-color: #007AA5;
}

.device-pc .link-text__list a:hover {
  color: #007AA5;
  background: #F1F6FB;
  border-color: #007AA5;
}

.device-pc .link-text__list a:hover .ico-arrow {
  background-color: #007AA5;
}
