@charset "UTF-8";

/*-------------------------------------------
  access
-------------------------------------------*/
.access {
  background: #F6F5F5;
}

.access-body {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.access-col {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.access-inner {
  width: 47.5%;
}

.access-logo {
  width: 40%;
  margin: 0 auto 30px auto;
}

.access-list {
  width: 100%;
}

.access-list>dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.access-list>dl>dt {
  width: 120px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
  border-bottom: 1px solid #ccc;
}

.access-list>dl>dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 120px);
  padding: 15px;
  box-sizing: border-box;
  line-height: 1.6;
  border-bottom: 1px solid #ccc;

}

.access-list__sub {
  font-size: 1.2rem;
}

.access-sns {
  display: flex;
  flex-direction: row !important;
  justify-content: flex-start !important;
}

.access-sns>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.access-sns>a:not(:last-of-type) {
  margin-right: 20px;
}

.access-sns>a>img {
  width: 80%;
  margin: 0 auto 5px auto;
}

.access-sns>a>span {
  font-size: 1rem;
}

.access-imgWrap {
  width: 50%;
  position: relative;
}

.access-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.swiper_main {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

.swiper_thumbnail {
  width: 100%;
}

.swiper-wrapper {
  height: auto;
}

.swiper-slide {
  width: 100% !important;
  height: auto !important;
  position: relative;
}

.swiper_main .swiper-slide::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 90%;
}

.swiper_thumbnail .swiper-slide::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.swiper_thumbnail {
  width: 100%;
}

.swiper_thumbnail .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.swiper_thumbnail .swiper-slide {
  position: relative;
  width: 18% !important;
  cursor: pointer;
}

.swiper_thumbnail .swiper-slide:not(:nth-of-type(5n)) {
  margin-right: calc(10%/4)
}

.swiper_thumbnail .swiper-slide img {
  border-radius: 10px;
}


@media screen and (max-width:1280px) {
  .swiper_main .swiper-slide::after {
    padding-top: 105%;
  }
}

@media screen and (max-width:1024px) {
  .access-body {
    width: 65%;
  }

  .access-col {
    flex-direction: column-reverse;
  }

  .access-imgWrap {
    width: 100%;
    margin-bottom: 50px;
  }

  .access-inner {
    width: 100%;
  }
}

@media screen and (max-width:896px) {
  .access-body {
    width: 75%;
  }
}

@media screen and (max-width:786px) {
  .access-body {
    width: 80%;
  }
}

@media screen and (max-width:680px) {
  .access-body {
    width: 85%;
  }
}

@media screen and (max-width:480px) {
  .access-list>dl>dt {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    padding: 10px 10px 0 10px;
    border-bottom: none;
  }

  .access-list__main {
    font-weight: bold;
  }

  .access-list__sub {
    margin-left: 8px;
  }

  .access-list>dl>dd {
    width: 100%;
    padding: 10px 10px 15px 10px;
  }
}