@charset "UTF-8";
/* CSS Document */

/*-------------------------------------------
目次
-------------------------------------------*/
.inde {
  background-color: #e9e1d1;
  padding: 40px 0;
}
.inde .inner {
  display: flex;
}
.inde .text .section-title-l {
  margin-bottom: 20px;
}
.inde .text .section-title-l .ja {
  display: block;
  font-size: 22px;
  font-weight: 700;
}
.inde .text .section-title-l .en {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
.inde .b-description {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.inde .info {
  font-size: 16px;
  margin-right: auto;
}
.inde .info dt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.inde .info dd {
  margin-bottom: 10px;
}

/*-------------------------------------------
Access
-------------------------------------------*/
.access {
  background-color: #e9e1d1;
  padding: 50px 0;
}
.access .inner {
  display: flex;
}
.access .text .section-title-l {
  margin-bottom: 20px;
}
.access .text .section-title-l .ja {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.access .text .section-title-l .en {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
.access .b-description {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.access .info {
  font-size: 14px;
  margin-right: auto;
}
.access .info dt {
  font-weight: bold;
  margin-bottom: 5px;
}
.access .info dd {
  margin-bottom: 20px;
}
.access .btn {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
}
.access .btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 18px;
}
.access .map {
  width: 100%;
  max-width: 580px;
  height: 360px;
  margin: 0 40px;
}
.access .map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {

  /*-------------------------------------------
  目次
  -------------------------------------------*/
  .inde {
    padding: 40px 0;
  }
  .inde .inner {
    flex-direction: column-reverse;
  }
  .inde .info dd:last-child {
    margin-bottom: 0;
  }
	
  /*-------------------------------------------
  Access
  -------------------------------------------*/
  .access {
    padding: 50px 0;
  }
  .access .inner {
    flex-direction: column-reverse;
  }
  .access .info dd:last-child {
    margin-bottom: 0;
  }
  .access .map {
    height: 240px;
    margin: 0 0 20px;
  }
}