@charset "utf-8";

/*----------------------------------------------------------------------------------------------
	top
----------------------------------------------------------------------------------------------*/
#movie_base {
  z-index: 0;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(2px);
  z-index: 3;
}
.is_scroll #header {
  background-color: rgba(255, 255, 255, .95);
}

.top_mv_set {
  position: relative;
}

.top_mv_set video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top_mv_in {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
}

.mv-swiper {
  position: relative;
}

.mv-replay {
  position: absolute;
  bottom: 40px;
  left: -10px;
  z-index: 2;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .6s ease;
}

.mv-replay img {
  display: block;
  width: 167px;
  height: auto;
}

.mv-replay.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: .5s;
  left: 0;
}

.mv-replay img {
  transition: all .5s ease;
}

.mv-replay:hover img {
  filter: brightness(0.5);
}

@media (max-width: 800px) {
  .mv-replay {
    bottom: 20px;
  }
  .mv-replay img {
    width: 120px;
  }
}

.mv-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family:
  'garamond', sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .4em;
  color: #d3d3d3;
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.mv-scroll > span {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 0 12em;
}
.mv-scroll > span::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  width: .5px;
  height: 80%;
  background-color: #d3d3d3;
  animation: mv-scroll 2s infinite;
}
@keyframes mv-scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media (max-width: 800px) {
  .mv-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    font-size: 12px;
  }
  .mv-scroll > span {
    padding: 0 0 6em;
  }
}

.top_point {
  padding: 70px 5% 70px;
  text-align: center;
  background: #181c19;
  /* opacity : 0.82; */
}

.top-cta_set {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 30px;
}

a.top-cta_btn {
  width: 458px;
  display: flex;
  gap: .4em;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 3.0;
  letter-spacing: 0.2em;
  background: #950a0a;
  transition: all .5s ease;
  justify-content: center;
  align-items: center;
}

a.top-cta_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: .5px;
  background: #fff;
  background-size: 100%;
  transition: all .5s ease;
}
a:hover.top-cta_btn::after  {
  right: 15px;
}

a:hover.top-cta_btn {
  padding-left: .5em;
}

a.top-cta_btn.top-cta_btn01 {
  background: #644b27;
  background: radial-gradient(circle, #644b27 0%, #352613 100%);
}

a.top-cta_btn.top-cta_btn02 {
  background: #811713;
  background: radial-gradient(circle, #811713 0%, #4E0A0A 100%);
}


@media (max-width: 800px) {
  .top_mv_txt01 {
    padding: 0 8% 0 10%;
  }
  .top_point {
    padding: 40px 10% 40px;
    text-align: center;
    background: #050c16;
  }
  
  .top-cta_set {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 30px;
  }

  a.top-cta_btn {
    width: 75%;
    display: flex;
    gap: .4em;
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 3.5;
    letter-spacing: 0.2em;
    background: #950a0a;
    transition: all .5s ease;
    justify-content: center;
    align-items: center;
  }

  a.top-cta_btn::after {
    content: '';
    position: absolute;
    /* top: 46%; */
    right: 20px;
    width: 20px;
    /* height: 7px; */
    /* background: url(../img/btn_arrow_white.svg) no-repeat; */
    background-size: 100%;
    transition: all .5s ease;
  }
  a:hover.top-cta_btn::after  {
    right: 15px;
  }

  a:hover.top-cta_btn {
    padding-left: .5em;
  }

  a.top-cta_btn:nth-child(1) {
    /* background: #776346; */
    /* background: radial-gradient(circle, rgba(119, 99, 70, 1) 0%, rgba(38, 30, 19, 1) 100%); */
  }

}


/* modal */

#modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000000003;
}

.modal-box {
  position: absolute;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 9px 18px rgba(0, 0, 0, .36);
}

#modal__btn {
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 25px;
  color: #1e854f;
  background: #ffffff;
  border: .5px solid #1e854f;
  cursor: pointer;
  z-index: 1001;
  border-radius: 100%;
  position: absolute;
  top: -20px;
  right: -20px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#modal__btn:hover {
  background: #404253;
}

.modal_txt02 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.modal__morebtn {
  width: 50%;
  margin: 0 auto;
}

a.modal_txt01__btn {
  display: block;
  text-align: center;
  padding: 0 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  text-decoration: none;
  color: #fff;
}

.btn_reflection_in {
  display: block;
  -webkit-transition: all .7s ease;
  transition: all .7s ease;
  overflow: hidden;
  position: relative;
}

.modal-banner {
  background: #fff;
}

.banner-cp2026-wp {
  position: absolute;
  width: 17.8%;
  top: -4%;
  left: -4%;
}

@media screen and (max-width: 1110px) {
  .modal-box {
    width: 75%;
    padding: 0;
  }

  #modal__btn {
    top: -20px;
    right: -20px;
  }

  a.modal_txt01__btn {
    transform: translateY(0);
    margin: 0 0 0;
    font-size: 22px;
  }

  .sp_ml10 {
    margin-left: .5em;
  }

  .modal__morebtn {
    width: 75%;
    margin: 0 auto;
  }

}


/* トップセクション - 情報エリア */
.top-sec-info {
  text-align: center;
}
.top-sec-info_ttl {
  font-family: 'garamond', sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.info_kokuchi {
  margin-top: 30px;
}
.top_info_cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 46px;
}

.top-txt-price {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.top-txt-price::after {
  content: '';
  display: block;
  width: .5px;
  height: 85px;
  background-color: #000;
}

/* トップセクション - concept */
.top-sec-concept {
  position: relative;
  padding: 5vw 0;
  background: url(../../img/01top/concept_01.jpg) no-repeat center top;
  background-size: cover;
  text-align: center;
  margin-top: 200px;
  min-height: 60.4vw;
  color: #fff;
  display: flex;
}

.top-sec-concept_in01 {
  width: 61%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-sec-concept_in02 {
  width: 39%;
  display: flex;
  flex-direction: column;
  text-align: justify;
}

.concept_img_set {
  width: 80%;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

.sec-ttl02 {
  font-family: 'garamond', sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  align-items: flex-start;
  gap: .3em;
}

.sec-ttl02 span {
  font-family: 'Zen Old Mincho', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}

.top-sec-concept_ttl02 {
  font-size: clamp(20px, 2.5vw, 41px);
  line-height: 1.3;
  letter-spacing: .05em;
  margin-top: .5em;
}

.top-sec-concept_txt01 {
  font-size: 19px;
  line-height: 2;
  margin-top: 2em;
}

.btn-coming-soon {
  margin-top: 50px;
}

.top-sec-overview {
  width: 100%;
}

.top-sec-overview img {
  width: 100%;
  height: auto;
}


/* トップセクション - ロケーション */
.top-sec-location {
  position: relative;
  padding: 120px 0;
  text-align: center;
}

.bg_beige {
  background: #f0f1f0;
}

.top-sec-ttl_lv02_border {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
  align-items: center;
}

.top-sec-ttl_lv02_border::before {
  content: "";
  display: block;
  width: .5px;
  height: 85px;
  background: #000;
  margin-bottom: 1em;
}

.ttl_en {
  font-family: 'garamond', sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.ttl_jp {
  font-family: 'Zen Old Mincho', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
  font-size: 13px;
  letter-spacing: 0;
}

.top_ttl_lv03 {
  font-size: clamp(20px, 2.5vw, 41px);
  margin-top: 1em;
  letter-spacing: .1em;
}

.top-sec-location-list {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  margin-top: 80px;
  display: flex;
  gap: 40px 2.7%;
}

.top-sec-location-list-item {
  width: calc((100% - 5.4%) / 3);
  text-align: justify;
}

.top-sec-location-list-item__txt {
  margin-top: 30px;
}

.coming-soon {
  text-align: center;
  margin-top: 80px;
}

/* トップセクション - アクセス */
.top-sec-access {
  width: 100%;
  position: relative;
  padding: 100px 0;
  background: linear-gradient(90deg, #f0f1f0 0%, #f0f1f0 77.2%, #fff 77.2%, #fff 100%);
  margin-top: 180px;
}

.top-sec-access-set {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  display: flex;
  gap: 2.0%;
}

.top-sec-access_txt01 {
  margin-top: 50px;
  flex: 1;
  padding-right: 6%;
}

.top-sec-access .coming-soon {
  text-align: justify;
  margin-top: 80px;
}

.top-sec-access-set_02 {
  width: 58%;
}

.top-sec-towndesign_txt01 {
  margin-top: 60px;
  font-size: 19px;
  line-height: 1.8;
}


/* トップセクション - 子育て環境 */
.top-sec-childcare {
  position: relative;
  padding: 120px 0;
  text-align: center;
  margin-top: 180px;
}

.top-sec-childcare-list-item {
  width: calc((100% - 8.1%) / 4);
  text-align: justify;
}

/* トップセクション - プラン */
.top-sec-plan {
  position: relative;
  padding: 120px 0;
  text-align: center;
}

.top-plan-lead01 {
  font-size: 19px;
  line-height: 2;
  margin-top: 2em;
}

.top-sec-plan-set {
  background: #f0f1f0;
  padding: 70px 0 120px;
  margin-top: 80px;
}

.top_ttl_lv04 {
  font-size: clamp(18px, 2.1vw, 34px);
  letter-spacing: .1em;
}

.top-sec-plan-list {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  margin-top: 48px;
  display: flex;
  gap: 40px 0;
}

.top-sec-plan-list-item {
  width: calc((100%) / 4);
  text-align: justify;
}

.top-sec-plan-list-item__txt {
  font-size: 19px;
  margin-top: 1em;
  text-align: justify;
}

/* トップセクション - クオリティ */
.top-sec-quality {
  width: 100%;
  height: 37.5vw;
  position: relative;
  background: url(../../img/01top/toyota-quality_01.jpg) no-repeat top center;
  background-size: cover;
  margin-top: 180px;
  color: #fff;
  text-align: justify;
  display: flex;
  align-items: center;
}

.top-sec-quality-set_01 {
  margin-left: 60%;
}

.top-sec-quality-set_01 .top-sec-concept_ttl02 {
    margin-top: 1em;
}

.top-sec-quality-set_01 .coming-soon {
  text-align: justify;
}

/* SP 
----------------------------------------------------------- */
@media (max-width: 800px) {

  /* トップセクション - 情報エリア SP */
  .top-sec-info {
    text-align: center;
  }
  .top-sec-info_ttl {
    font-family: 'garamond', sans-serif;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 0.1em;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .top-txt-price {
    padding: 0 10%;
    margin-top: 15px;
  }
  .top-txt-price::after {
    content: '';
    display: block;
    width: .5px;
    height: 55px;
    background-color: #000;
  }
  .info_kokuchi {
    margin-top: 30px;
    padding: 0 12%;
  }
  .top_info_cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }


  /* トップセクション - concept */
  .top-sec-concept {
    position: relative;
    padding: 80px 0 60px;
    background: url(../../img/01top/concept_01_sp.jpg) no-repeat center top;
    background-size: cover;
    text-align: center;
    margin-top: 60px;
    min-height: 273vw;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top-sec-concept_in01 {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top-sec-concept_in02 {
    width: 85%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 70px;
  }

  .concept_img_set {
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
  }

  .concept_img01 {
    width: 50%;
  }

  .concept_img02 {
    width: calc(50% - 15px);
  }

  .sec-ttl02 {
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0.1em;
    display: flex;
    gap: .3em;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .sec-ttl02 span {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
  }

  .top-sec-concept_ttl02 {
    font-size: clamp(16px, 7.5vw, 22px);
    line-height: 1.3;
    letter-spacing: .05em;
    margin-top: 1em;
  }

  .top-sec-concept_txt01 {
    font-size: 15px;
    line-height: 2;
    margin-top: 2em;
  }

  .btn-coming-soon {
    width: 65%;
    margin-inline: auto;
    margin-top: 50px;
  }

  .top-sec-overview {
    width: 100%;
  }

  .top-sec-overview img {
    width: 100%;
    height: auto;
  }


  /* トップセクション - ロケーション */
  .top-sec-location {
    position: relative;
    padding: 80px 0;
    text-align: center;
  }

  .bg_beige {
    background: #f0f1f0;
  }

  .top-sec-ttl_lv02_border {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 5px;
    align-items: center;
  }

  .top-sec-ttl_lv02_border::before {
    content: "";
    display: block;
    width: .5px;
    height: 45px;
    background: #000;
    margin-bottom: 1em;
  }

  .ttl_en {
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0.15em;
  }

  .ttl_jp {
    font-size: 11px;
    letter-spacing: 0;
  }

  .top_ttl_lv03 {
    font-size: clamp(16px, 6.5vw, 22px);
    margin-top: 1.5em;
    letter-spacing: .1em;
  }

  .top-sec-location-list {
    width: clamp(300px, 90%, 1400px);
    margin-inline: auto;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2.7%;
  }

  .top-sec-location-list-item {
    width: calc((100% - 2.7%) / 2);
    text-align: justify;
  }

  .top-sec-location-list-item__txt {
    margin-top: 15px;
  }

  .coming-soon {
    width: 55%;
    margin-inline: auto;
    text-align: center;
    margin-top: 60px;
  }

  /* トップセクション - アクセス */
  .top-sec-access {
    width: 100%;
    position: relative;
    padding: 0 0 80px;
    background: linear-gradient(0deg, #f0f1f0 0%, #f0f1f0 85.2%, #fff 85.2%, #fff 100%);
    margin-top: 80px;
  }

  .top-sec-access-set {
    width: clamp(300px, 90%, 1400px);
    margin-inline: auto;
    display: flex;
    gap: 30px;
    flex-direction: column-reverse;
    align-items: center;
  }

  .top-sec-access_txt01 {
    margin-top: 30px;
    flex: 1;
    padding-right: 0;
    padding: 0 5%;
  }

  .top-sec-access .coming-soon {
    width: 55%;
    margin-inline: auto;
    text-align: center;
    margin-top: 40px;
  }

  .top-sec-access-set_02 {
    width: 90%;
  }

  .top-sec-access-set_01 {
    text-align: center;
  }

  .top-sec-towndesign_txt01 {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 30px;
  }

  .good_design_award2025_sp {
    margin-top: 30px;
    padding: 0px 5%;
  }


  /* トップセクション - 子育て環境 */
  .top-sec-childcare {
    position: relative;
    padding: 80px 0;
    text-align: center;
    margin-top: 80px;
  }

  .top-sec-childcare-list-item {
    width: calc((100% - 2.7%) / 2);
    text-align: justify;
  }

  /* トップセクション - プラン */
  .top-sec-plan {
    position: relative;
    padding: 80px 0;
    text-align: center;
  }

  .top-plan-lead01 {
    font-size: 19px;
    line-height: 2;
    margin-top: 2em;
  }

  .top-sec-plan-set {
    background: #f0f1f0;
    padding: 30px 0 80px;
    margin-top: 50px;
  }

  .top_ttl_lv04 {
    font-size: clamp(18px, 2.1vw, 34px);
    letter-spacing: .1em;
  }

  .top-sec-plan-list {
    width: clamp(300px, 90%, 1400px);
    margin-inline: auto;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 40px 0;
  }

  .top-sec-plan-list-item {
    width: 100%;
  }

  .top-sec-plan-list-item__txt {
    font-size: 19px;
    margin-top: 1em;
    text-align: justify;
  }

  /* トップセクション - クオリティ */
  .top-sec-quality {
    width: 100%;
    height: 132.5vw;
    position: relative;
    background: url(../../img/01top/toyota-quality_01_sp.jpg) no-repeat top center;
    background-size: cover;
    margin-top: 80px;
    color: #fff;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .top-sec-quality-set_01 {
    margin-left: 0;
    padding-top: 80px;
    text-align: center;
  }

  .top-sec-quality-set_01 .top-sec-concept_ttl02 {
      margin-top: 1.2em;
  }

  .top-sec-quality-set_01 .coming-soon {
    text-align: center;
    width: 55%;
    margin-inline: auto;
    margin-top: 30px;
  }

}




/* トップ　スキップボタン */

.video-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.responsive-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#posterImage img {
  -webkit-transition: all 2s;
  transition: all 2s;
  opacity: 0;
}

#posterImage.is_view img {
  opacity: 1;
}

.video-skip-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  border: 1px solid #5e5e5ec9;
  padding: 0.9em 2em .6em;
  color: #fff;
  background: #191919f2;
  border-radius: 0;
  font-size: 13px;
  font-family: 'garamond';
  text-transform: uppercase;
  letter-spacing: .2em;
  line-height: 1;
  cursor: pointer;
}
.video-skip-btn:hover {
  background: #363636;
}

@media (max-width: 800px) {
  .video-skip-btn {
    font-size: 11px;
  }
}


.p-top_information {
  margin-top: 120px;
  max-width: 1020px;
  margin-inline: auto;
}

.top_information {
  display: flex;
  padding: 0 1em 1em;
  border-bottom: 0.5px solid #000;
  margin-bottom: 0.7em;
  font-size: 20px;
  text-align: justify;
}

.top_information dt {
  width: 7em;
}

.top_information dd {
  width: calc(100% - 7em);
}

.top-mov {
  width: clamp(300px, 90%, 600px);
  margin-inline: auto;
  margin-top: 120px;
}

#movset,
.movset {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .p-top_information {
    max-width: 90%;
    margin-top: 40px;
    padding-bottom: 25px;
  }
  .top_information {
    display: flex;
    margin-top: 15px;
    flex-direction: column;
    padding: 0 0 1em;
    font-size: 16px;
  }
  .top_information dt {
    width: 6em;
  }
  .top_information dd {
    margin-top: 0.7em;
    width: 100%;
  }

  .top-mov {
    width: clamp(300px, 90%, 600px);
    margin-inline: auto;
    margin-top: 40px;
  }
}


/* info 
-------------------------------------------*/
.info__box {
  position: relative;
  /* margin-top: 2.5em; */
  width: 49.5em;
  margin-inline: auto;
}
@media screen and (max-width: 800px) {
  .info__box {
    margin-top: 4.533333vw;
    width: 100%;
  }
}
.info__wrap {
  border: 0.0166em solid #231815;
  padding-inline: 2.5em;
  overflow-y: scroll;
  position: relative;
  min-height: 6em;
  max-height: 12.8125em;
}
@media screen and (max-width: 800px) {
  .info__wrap {
    padding-inline: 3.4666666vw;
    max-height: 31.7333vw;
  }
}
.info__arrow {
  position: absolute;
  bottom: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25em;
  height: 0.625em;
  padding: 0;
  border: none;
  background-color: transparent;
  /* background-image: url("../img/top/info_arrow.svg"); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.info__arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.info .dl-horizontal {
  display: flex;
  justify-content: flex-start;
  border-bottom: 0.0166em solid #fff;
  min-height: 8.375em;
  flex-wrap: wrap;
  padding: 1em 0;
}
.info .dl-horizontal dt {
  font-size: 0.8125em;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #231815;
  flex-shrink: 0;
  width: 16%;
  border-bottom: 0.4px solid #231815;
  padding-top: 0.8em;
  padding-bottom: 1.6em;
}
@media screen and (max-width: 800px) {
  .info .dl-horizontal dt {
    font-size: 2.6666vw;
    width: 20%;
  }
}
.info .dl-horizontal dd {
  font-size: 0.8125em;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #231815;
  margin-inline-start: 0;
  text-align: justify;
  width: 84%;
  border-bottom: 0.4px solid #231815;
  padding-top: 0.8em;
  padding-bottom: 1.6em;
}
@media screen and (max-width: 800px) {
  .info .dl-horizontal dd {
    font-size: 2.6666vw;
    width: 80%;
  }
}