@charset "UTF-8";
.c-btn-01 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  padding: 12px 0;
  background-color: #ffffff;
  border: 1px solid #3FA7D1;
  color: #3FA7D1;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.c-btn-01::after {
  background-image: url("../images/common/icon-arrow_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
}

.c-btn-02 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  padding: 12px 0;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.c-btn-02::after {
  background-image: url("../images/common/icon-arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
}

/* =========================================================
overview
========================================================= */
.p-overview-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 10vh;
}
@media screen and (max-width: 767px) {
  .p-overview-mv {
    margin-bottom: 40px;
  }
}
.p-overview-mv_wrap {
  position: relative;
  width: 97%;
  height: 80vh;
  min-height: 500px;
  background-image: url("../images/common/mv-about.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-left: 3%;
  padding-left: 10%;
  border-bottom-left-radius: 120px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .p-overview-mv_wrap {
    height: 50vh;
    min-height: 360px;
    padding-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-overview-mv_wrap {
    width: 100%;
    margin-left: 0;
    height: 40vh;
    min-height: 280px;
    border-bottom-left-radius: 60px;
  }
}
.p-overview-mv_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 110, 140, 0.55);
  mix-blend-mode: multiply;
  z-index: 1;
}
.p-overview-mv_head {
  background-color: #ffffff;
  border-radius: 0 12px 12px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px 120px 20px 20px;
}
@media screen and (max-width: 991px) {
  .p-overview-mv_head {
    padding: 16px 60px 16px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-overview-mv_head {
    padding: 12px 30px 12px 16px;
  }
}
.p-overview-mv_ttl {
  color: #333333;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}
.p-overview-mv_ttl .en {
  color: #3FA7D1;
  display: block;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  margin-bottom: 4px;
}
.p-overview-cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 94%;
  max-width: 1280px;
  margin: 0 auto 10vh;
}
@media screen and (max-width: 991px) {
  .p-overview-cont {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-overview-cont {
    margin-bottom: 60px;
  }
}
.p-overview-sidenav {
  width: 25%;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
@media screen and (max-width: 991px) {
  .p-overview-sidenav {
    display: none;
  }
}
.p-overview-sidenav_ttl {
  border-bottom: 3px solid #333333;
  color: #333333;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
  padding-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: flex-end;
}
.p-overview-sidenav_item a {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-overview-sidenav_item a::before {
  background-image: url(../images/common/icon-arrow_right-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}
.p-overview-sidenav_item a:hover {
  color: #3FA7D1;
  background-color: #f8fcfe;
}
.p-overview-sidenav_item a:hover::before {
  transform: translateX(4px);
}
.p-overview-sidenav_item.is-current a {
  color: #3FA7D1;
  font-weight: 700;
  background-color: #f8fcfe;
}
.p-overview-sidenav_item.is-current a::before {
  background-image: url(../images/common/icon-arrow_right.svg);
  transform: translateX(4px);
}
.p-overview-box {
  width: 72%;
  /* Lead（改行対応・2行目横幅いっぱい下線対応） */
  /* タイムライン部分（レスポンシブ化） */
  /* 会社概要・概要リスト部分（レスポンシブ化） */
  /* アクセス・交通手段部分（レスポンシブ化） */
}
@media screen and (max-width: 991px) {
  .p-overview-box {
    width: 100%;
  }
}
.p-overview-box_head {
  border-bottom: 3px solid #333333;
  margin-bottom: 40px;
  padding-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-overview-box_head {
    margin-bottom: 24px;
    padding-bottom: 8px;
    min-height: auto;
  }
}
.p-overview-box_ttl {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1;
}
.p-overview-box_ttl::before {
  background-image: url(../images/common/icon-tooth.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: clamp(32px, 4vw, 44px);
  height: clamp(32px, 4vw, 44px);
  margin-right: 14px;
  flex-shrink: 0;
}
.p-overview-box_gp {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_gp {
    margin-bottom: 40px;
  }
}
.p-overview-box_subttl {
  border-left: 6px solid #3FA7D1;
  color: #333333;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_subttl {
    margin-bottom: 20px;
  }
}
.p-overview-box_subttl .en {
  color: #C4C4C4;
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  margin-top: 2px;
}
.p-overview-box_card img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_card img {
    margin-bottom: 20px;
  }
}
.p-overview-box_lead {
  color: #333333;
  display: block;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  position: relative;
  margin-bottom: 20px;
  margin-left: 30px;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_lead {
    margin-left: 24px;
    margin-bottom: 16px;
  }
}
.p-overview-box_lead span {
  position: relative;
  z-index: 2;
  background-image: linear-gradient(transparent 65%, #E6C003 65%);
  background-repeat: no-repeat;
  padding: 0 0.1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-overview-box_lead::before {
  background-image: url(../images/common/kira-orenge.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  position: absolute;
  top: 2px;
  left: -30px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-overview-box_lead::before {
    left: -24px;
  }
}
.p-overview-box_text {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 2;
}
.p-overview-box_timeline--cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-overview-box_timeline--cont {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.p-overview-box_timeline--list {
  position: relative;
  width: 60%;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_timeline--list {
    width: 100%;
  }
}
.p-overview-box_timeline--list::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  width: 2px;
  background: #e2e8f0;
}
.p-overview-box_timeline--item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 24px;
}
.p-overview-box_timeline--item:last-child {
  margin-bottom: 0;
}
.p-overview-box_timeline--item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #3FA7D1;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  z-index: 1;
}
.p-overview-box_timeline--time {
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: 700;
  color: #3FA7D1;
  min-width: 90px;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.5;
}
.p-overview-box_timeline--text {
  font-size: clamp(14px, 1.3vw, 16px);
  color: #333333;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.p-overview-box_timeline--image {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .p-overview-box_timeline--image {
    width: 100%;
  }
}
.p-overview-box_timeline--image img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_timeline--image img {
    margin-bottom: 0;
  }
}
.p-overview-box_summury--list {
  width: 100%;
  border-top: 2px solid #333333;
  border-bottom: 2px solid #333333;
}
.p-overview-box_summury--item {
  display: flex;
  flex-direction: row;
  padding: 40px 0;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 767px) {
  .p-overview-box_summury--item {
    flex-direction: column;
    padding: 20px 0;
    gap: 8px;
  }
}
.p-overview-box_summury--item dt {
  display: flex;
  align-items: center;
  width: 25%;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-overview-box_summury--item dt {
    width: 100%;
  }
}
.p-overview-box_summury--item dd {
  display: flex;
  align-items: center;
  width: 75%;
  font-size: clamp(14px, 1.3vw, 16px);
}
@media screen and (max-width: 767px) {
  .p-overview-box_summury--item dd {
    width: 100%;
  }
}
.p-overview-box_gmap {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_gmap {
    margin-bottom: 24px;
  }
}
.p-overview-box_gmap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.p-overview-box_method--item {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_method--item {
    margin-bottom: 24px;
  }
}
.p-overview-box_method--ttl {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_method--ttl {
    margin-bottom: 12px;
  }
}
.p-overview-box_method--ttl.car::before, .p-overview-box_method--ttl.bus::before, .p-overview-box_method--ttl.train::before {
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}
.p-overview-box_method--ttl.car::before {
  background-image: url(../images/common/icon-car.svg);
}
.p-overview-box_method--ttl.bus::before {
  background-image: url(../images/common/icon-bus.svg);
}
.p-overview-box_method--ttl.train::before {
  background-image: url(../images/common/icon-train.svg);
}
.p-overview-box_method--cont {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 2;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .p-overview-box_method--cont {
    padding-left: 0;
  }
}
.p-overview-box_method--cont .bold {
  font-weight: 700;
}
.p-overview-box_method--cont .red {
  color: #E6C003;
  margin-right: 6px;
}
/*# sourceMappingURL=style-summury.css.map */