/*---------------------------
  access style
----------------------------- */

/* access section */
.access {
  margin-top: min(5vw, 50px);
}

.access__content {
  display: flex;
  flex-direction: column;
  margin-top: min(3vw, 30px);
}

.access__content-list {
  display: flex;
  flex-direction: column;
  gap: min(6vw, 60px);
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.access__content-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  justify-content: stretch;
  border-radius: 20px;
  overflow: hidden;
}

.access__content-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #56b0e5;
  width: 100%;
  color: #fff;
  padding: clamp(20px, 3.5vw, 35px);
  gap: 20px;
}

.access__content-item-title {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  display: inline-block;
  border-bottom: 2px solid #fff;
  padding-bottom: min(1vw, 10px);
}

.access__content-item-exp {
  font-size: clamp(0.7rem, 1.25vw, 1.06rem);
  line-height: 1.6;
  text-align: center;
}

.access__content-item-map {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
}
.access__content-item-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__content-item-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*--------------------------------
	TB用
----------------------------------- */
@media all and (max-width: 768px) {
}

/*--------------------------------
	SP用
----------------------------------- */
@media all and (max-width: 530px) {
  /* access section */
  .access {
    margin-top: min(5.81vw, 25px);
  }
  .access__content {
    margin-top: min(5.81vw, 25px);
  }
  .access__content-list {
    gap: min(8.14vw, 40px);
  }
  .access__content-header {
    padding: min(5.81vw, 25px);
    gap: min(4.65vw, 20px);
  }
  .access__content-item-title {
    font-size: min(5.12vw, 1.38rem);
    padding-bottom: min(2.33vw, 10px);
  }
  .access__content-item-exp {
    font-size: min(3.26vw, 0.84rem);
  }

  .access__content-item-map {
    padding-bottom: 75%;
  }
}
