@charset "UTF-8";

/* TOPページ */

.mv {
  position: relative;
  width: 100%;
  /* height: 100vh;
  min-height: 600px; */
  height: auto;
  aspect-ratio: 1 / 0.78;
  background: url(../img/top/mv.jpg) no-repeat center bottom / cover;
}

.mv_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: calc(var(--header-height-pc) + clamp(calc(79 / 1440 * 1240px), calc(79 / 1440 * 100vw), none)) 24px 40px;
  box-sizing: border-box;
  text-align: center;
  color: var(--color-text);
}

.mv_heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.mv_line {
  display: block;
  margin: 0;
}

.mv_line--2 {
  margin-top: clamp(calc(21 / 1440 * 1240px), calc(21 / 1440 * 100vw), none);
}

.mv_line--3 {
  margin-top: clamp(calc(41 / 1440 * 1240px), calc(41 / 1440 * 100vw), none);
}

/* 1行目：スマイルタウン */
.mv_brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

img.mv_st_logo {
display: block;
  /* width: auto;
  height: 40px;
  flex-shrink: 0; */
  /* width: 57px; */
  width: clamp(calc(57 / 1440 * 1240px), calc(57 / 1440 * 100vw), none);
}

.mv_project_name {
  white-space: nowrap;
  /* font-size: 18px; */
  font-size: clamp(calc(18 / 1440 * 1240px), calc(18 / 1440 * 100vw), none);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #fff;
}

/* 2行目：FVロゴ */
img.mv_fv_logo {
  display: block;
  width: clamp(calc(322 / 1440 * 1240px), calc(322 / 1440 * 100vw), none);
  height: auto;
  margin: 0 auto;
}

/* 3行目：キャッチ */
.mv_catch {
  display: inline-block;
  /* font-size: clamp(15px, 1.6vw, 18px); */
  font-size: clamp(calc(24 / 1440 * 1240px), calc(24 / 1440 * 100vw), none);
  /* font-weight: 500; */
  letter-spacing: 0.2em;
  line-height: 1.8;
  /*color: var(--color-text);*/
  color: #fff;
}

/* ローディング後リレー用 */
@keyframes mv_blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

.mv .action {
  opacity: 0;
}

.mv .action.blur {
  -webkit-filter: blur(6px);
  filter: blur(6px);
}

.mv .action.scrollin {
  opacity: 1;
}

.mv .action.mv_fade.scrollin,
.mv .action.blur.scrollin {
  animation: mv_blur 1.5s ease-in-out forwards;
  animation-delay: 0s;
}

.mv .mv_line--3.mv_fade.scrollin {
  animation: mv_blur 0.8s ease-in-out forwards;
}

.sec_placeholder {
  padding: 120px 0;
  background: #f5f4ef;
  text-align: center;
  color: #8a8a8a;
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* FV以降追従CTA */
.sec_side_conwrap {
  position: fixed;
  z-index: 900;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s ease, opacity 0.45s ease, visibility 0.45s ease;
}
.sec_side_conwrap.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.sec_side_con {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  /* font-weight: 500; */
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: #fff;
  transition: background-color 0.3s ease;
}
.sec_side_con--1 {
  background-color: var(--color-gold);
}
.sec_side_con--2 {
  background-color: var(--color-green);
}
.sec_side_con_ico {
  display: none;
}

@media all and (min-width: 681px) {
  .sec_side_conwrap {
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
    gap: 4px;
  }
  .sec_side_conwrap.is-visible {
    transform: translate(0, -50%);
  }
  body.open .sec_side_conwrap {
    transform: translate(100%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .sec_side_con {
    width: 130px;
    min-height: 66px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: 0;
  }
  .sec_side_con:hover {
    background-color: var(--color-text);
  }
}

@media all and (max-width: 680px) {
  .sec_side_conwrap {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    gap: 8px;
    padding: 15px 12px;
    box-sizing: border-box;
    background-color: #EEEEEA;
    transform: translateY(100%);
  }
  .sec_side_conwrap.is-visible {
    transform: translateY(0);
  }
  body.open .sec_side_conwrap {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .sec_side_con {
    flex: 1;
    min-height: 44px;
    padding: 0 8px 0 10px;
    justify-content: space-between;
    text-align: left;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    box-sizing: border-box;
}
  .sec_side_con_ico {
    display: block;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: url(../img/common/arrow_wr2.svg) no-repeat center / contain;
  }
}

@media all and (min-width: 681px) {
  .mv {
    min-width: 1240px;
  }
}

@media all and (max-width: 680px) {
  .mv {
    /* min-height: 100svh; */
    aspect-ratio: 1 / 1.78;
    background-image: url(../img/top/mv_sp.jpg);
  }

  .mv_inner {
    padding: calc(var(--header-height-sp) + clamp(63px, calc(63 / 375 * 100vw), none)) 20px 40px;
  }

  .mv_line--2 {
    margin-top: clamp(14px, calc(14 / 375 * 100vw), none);
  }

  .mv_line--3 {
    margin-top: clamp(12px, calc(12 / 375 * 100vw), none);
  }

  .mv_brand {
    gap: 10px;
  }

  img.mv_st_logo {
    display: block;
    width: clamp(42px, calc(42 / 375 * 100vw), none);
  }

  .mv_project_name {
    font-size: clamp(calc(15 / 375 * 100vw), calc(15 / 375 * 100vw), none);
  }

  img.mv_fv_logo {
    display: block;
    width: 100%;
    max-width: clamp(calc(234 / 375 * 100vw), calc(234 / 375 * 100vw), none);
    height: auto;
    margin: 0 auto;
  }

  .mv_catch {
    font-size: clamp(calc(18 / 375 * 100vw), calc(18 / 375 * 100vw), none);
    letter-spacing: 0.15em;
    line-height: 2;
  }

  .sec_placeholder {
    padding: 80px 0;
  }
}

/* CONCEPT */
.sec_concept {
  padding: 80px 0 0;
  background: #EEEEEA;
  color: var(--color-text);
}
.sec_concept_grid {
  display: grid;
}
.sec_concept_ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #C6B796;
}
.sec_concept_txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.2;
  text-align: justify;
}
/* .sec_concept_txt p + p {
  margin-top: 1.6em;
} */
.sec_concept_catch {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.09;
}
.sec_concept_fig {
  margin: 0;
}
.sec_concept_fig picture {
  display: block;
  width: 100%;
}
.sec_concept_fig img {
  display: block;
  width: 100%;
  height: auto;
}
.sec_concept_fig_cap {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  text-align: right;
}
.sec_concept_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.sec_concept_banner {
  display: block;
  margin-top: 72px;
  padding: 56px 24px 64px;
  background: #C3A876;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}
.sec_concept_banner_lead {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #EEEEEA;
}
.sec_concept_banner_logo {
  margin: 28px auto 0;
  width: min(100%, 320px);
}
.sec_concept_banner_logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.sec_concept_banner_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  width: 287px;
  height: 44px;
  box-sizing: border-box;
  padding: 0 calc(12px + 14px + 10px) 0 20px;
  border: 1px solid #EEEEEA;
  border-radius: 999px;
  font-size: 14px;
  /* font-weight: 500; */
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--color-gold);
  background-color: #EEEEEA;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.sec_concept_banner_btn_ico {
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  width: 14px;
  height: 11px;
  transform: translateY(-50%);
  background: url(../img/common/btn_arrow_br.svg) center / contain no-repeat;
  transition: transform 0.3s ease, background-image 0.3s ease;
}

@media all and (min-width: 681px) {
  .sec_concept {
    padding: 120px 0 40px;
    min-width: 1240px;
  }
  .sec_concept_grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 80px;
    row-gap: 120px;
    align-items: start;
}
  .sec_concept_ttl {
    grid-column: 1;
    grid-row: 1;
    left: 150px;
    position: relative;
  }
  .sec_concept_txt--1,
  .sec_concept_txt--2 {
    font-size: 15px;
    line-height: 3.2;
  }
  .sec_concept_txt--1 {
    grid-column: 1;
    grid-row: 1;
    margin-top: 55px;
    left: 150px;
    position: relative;
}
  .sec_concept_fig--1 {
    grid-column: 2;
    grid-row: 1;
    width: 408px;
    justify-self: end;
    margin-top: -6px;
    margin-right: 52px;
  }
  .sec_concept_fig--2 {
    grid-column: 1;
    grid-row: 2;
    width: 636px;
    margin-left: -110px;
}
.sec_concept_block--detail {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  /* padding-top: 12px; */
  margin-top: -210px;
}
  .sec_concept_catch {
    font-size: 22px;
  }
  .sec_concept_btns {
    gap: 16px;
    margin-top: 40px;
  }
  .sec_concept_banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 96px;
    margin-left: auto;
    margin-right: auto;
    width: 735px;
    height: 277px;
    padding: 32px 40px;
  }
  .sec_concept_banner_lead {
    font-size: 16px;
  }
  .sec_concept_banner_logo {
    margin-top: 20px;
    width: 326px;
  }
  .sec_concept_banner_btn {
    justify-content: flex-start;
    padding: 0 calc(17px + 14px + 16px) 0 22px;
    text-align: left;
  }
  .sec_concept_banner_btn_txt {
    text-align: left;
  }
  .sec_concept_banner_btn_ico {
    right: 17px;
  }
  .sec_concept_banner:hover {
    background-color: #9D8250;
  }
  .sec_concept_banner:hover .sec_concept_banner_btn_ico {
    transform: translateY(-50%) translateX(5px);
  }
}

@media all and (max-width: 680px) {
  .sec_concept {
    padding: 64px 0 0;
  }
  .sec_concept_grid {
    grid-template-columns: minmax(0, 1fr) 196px;
    /* row-gap: 28px; */
  }
  .sec_concept_ttl {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding-bottom: 0;
    letter-spacing: 0.05em;
}
  .sec_concept_fig--1 {
    grid-column: 2;
    grid-row: 1;
    width: 196px;
    min-width: 196px;
    align-self: end;
    justify-self: end;
    position: relative;
    right: -6.6vw;
}
  .sec_concept_txt--1 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 40px;
  }
  .sec_concept_fig--2 {
    grid-column: 1 / -1;
    grid-row: 3;
  }
  .sec_concept_block--detail {
    grid-column: 1 / -1;
    grid-row: 4;
  }
  .sec_concept_catch {
    margin-top: 35px;
    font-size: 20px;
    line-height: 1.85;
  }
  .sec_concept_fig--2_sp {
    margin-top: 28px;
    width: calc(100vw - 6.6vw);
    margin-top: 35px;
}
.sec_concept_txt{
  margin-top: 30px;
}
  .sec_concept_btns {
    margin-top: 28px;
  }
  .sec_concept_btns .btn_pill {
    flex: 1 1 calc(50% - 6px);
    width: auto;
    min-width: 0;
  }
  .sec_concept_btns .btn_pill_ico {
    right: 15px;
  }
  .sec_concept_banner {
    margin-top: 90px;
    padding: 28px 25px 28px;
}
  .sec_concept_banner_lead {
    font-size: 15px;
    line-height: 1.6;
}
  .sec_concept_banner_logo {
    width: min(100%, 260px);
  }
  .sec_concept_banner_btn {
    min-width: 0;
    width: 100%;
    font-size: 13px;
  }
}

/* FEATURE */
.sec_feature {
  padding: 64px 0 80px;
  background: #EEEEEA;
  color: var(--color-text);
}
.sec_feature_head {
  text-align: center;
}
.sec_feature_ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
.sec_feature_lead {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
.sec_feature_head_fig {
  margin: 28px 0 0;
}
.sec_feature_head_fig img {
  display: block;
  width: 100%;
  height: auto;
}
.sec_feature_list {
  margin-top: 48px;
}
.sec_feature_item {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sec_feature_item + .sec_feature_item {
  margin-top: 56px;
}
.sec_feature_fig {
  margin: 0;
}
.sec_feature_fig picture,
.sec_feature_fig img {
  display: block;
  width: 100%;
  height: auto;
}
.sec_feature_item_head {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
  position: relative;
  isolation: isolate;
}
.sec_feature_label {
  display: block;
  margin: 0;
  font-size: 16px;
  position: relative;
  z-index: 2;
  font-weight: 400;
}
.sec_feature_body {
  position: relative;
  overflow: visible;
}
.sec_feature_en {
  display: block;
  position: relative;
  margin: 13px 0 0;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #c6b796;
  position: relative;
  z-index: 1;
}
.sec_feature_en[data-char]::before {
  content: attr(data-char);
  position: absolute;
  top: -0.33em;
  left: auto;
  right: -0.11em;
  font-family: "Playfair Display", serif;
  font-size: 170px;
  font-weight: 400;
  line-height: 0.85;
  color: #E9E7DA;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.sec_feature_en.action_before[data-char]::before {
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.91s ease, filter 0.91s ease;
  transition-delay: 0.175s;
}
.sec_feature_en.action_before.scrollin[data-char]::before {
  opacity: 1;
  filter: blur(0);
}
.sec_feature_item_head,
.sec_feature_txt,
.sec_feature_btns {
  position: relative;
  z-index: 1;
}
.sec_feature_subttl {
  margin: 12px 0 0;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.33;
}
.sec_feature_txt {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
}
.sec_feature_btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
}
.sec_feature_item:not(.sec_feature_item--spec) .sec_feature_btns .btn_pill {
  width: 238px;
  max-width: 100%;
  min-width: 0;
  height: auto;
  min-height: 44px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.sec_feature_item--spec .sec_feature_btns .btn_pill {
  width: 292px;
  max-width: 100%;
  min-width: 0;
  height: auto;
  min-height: 44px;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 13px;
}

@media all and (min-width: 681px) {
  .sec_feature {
    padding: 96px 0 120px;
    min-width: 1240px;
  }
  .sec_feature_ttl {
    font-size: 28px;
  }
  .sec_feature_lead {
    margin-top: 16px;
    font-size: 16px;
  }
  .sec_feature_label {
    font-size: 18px;
  }
  .sec_feature_list {
    margin-top: 72px;
  }
  .sec_feature_item {
    flex-direction: row;
    align-items: center;
    gap: 110px;
    overflow: visible;
  }
  .sec_feature_item + .sec_feature_item {
    margin-top: 50px;
  }
  .sec_feature_item--townplan{
    left: 85px;
    position: relative;
  }
  .sec_feature_item + .sec_feature_item.sec_feature_item--townplan .sec_feature_body{
    top: -40px;
  }
  .sec_feature_item + .sec_feature_item.sec_feature_item--houseplan{
    margin-top: -105px;
  }
  .sec_feature_item + .sec_feature_item.sec_feature_item--houseplan .sec_feature_body{
    top: 35px;
  }
  .sec_feature_item + .sec_feature_item.sec_feature_item--spec {
    width: 875px;
    justify-content: space-between;
    margin: 140px auto 0;
    gap: 0;
}
  .sec_feature_item--spec .sec_feature_body {
    width: 442px;
  }
  .sec_feature_item--spec .sec_feature_subttl {
        margin-top: 12px;
        font-size: 34px;
        font-weight: 400;
        letter-spacing: 0;
    } 


  .sec_feature_item--reverse {
    flex-direction: row-reverse;
  }
  .sec_feature_fig {
    position: relative;
  }
  .sec_feature_body {
    min-width: 0;
    width: 320px;
    overflow: visible;
  }
  .sec_feature_item--location .sec_feature_fig {
    width: 567px;
    height: 604px;
  }
  .sec_feature_item--townplan .sec_feature_fig {
    width: 808px;
    height: 716px;
  }
  .sec_feature_item--houseplan .sec_feature_fig {
    width: 644px;
    height: 697px;
  }
  .sec_feature_item--spec .sec_feature_fig {
    width: 382px;
}
  .sec_feature_en {
    margin-top: 16px;
    font-size: 48px;
  }
  .sec_feature_en[data-char]::before {
    top: -0.4em;
    right: -0.25em;
    font-size: 320px;
  }
  .sec_feature_item--townplan .sec_feature_en::before {
    top: -85px;
  }
  .sec_feature_item--houseplan .sec_feature_en::before {
    top: 130px;
    right: -110px;
  }
  .sec_feature_subttl {
    margin-top: 12px;
    font-size: 26px;
  }
  .sec_feature_txt {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
}
  .sec_feature_btns {
    margin-top: 32px;
  }
  .sec_feature_item:not(.sec_feature_item--spec) .sec_feature_btns .btn_pill {
    width: 287px;
    font-size: 14px;
  }
  .sec_feature_item--houseplan .sec_feature_body {
    position: relative;
    top: 35px;
  }
  .sec_feature_item--spec .sec_feature_btns .btn_pill {
    width: 312px;
    font-size: 14px;
  }
}

@media all and (max-width: 680px) {
  .sec_feature_ttl {
    margin: 0;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.09em;
    line-height: 1.6;
    text-align: center;
  }
  .sec_feature_lead {
    margin: 12px 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .sec_feature_list .sec_feature_item:not(.sec_feature_item--spec) .sec_feature_btns .btn_pill {
    margin-left: auto;
    margin-right: auto;
  }
  .sec_feature_btns .btn_pill_ico {
    right: 12px;
  }
  .sec_feature_item .sec_feature_fig {
    width: calc(100vw - 6.6vw);
    margin-left: -6.6vw;
  }
  .sec_feature_item.sec_feature_item--reverse .sec_feature_fig {
    margin-left: 0;
  }
  .sec_feature_item--spec {
    margin-left: 3vw;
    margin-right: 3vw;
  }
  .sec_feature_item--spec .sec_feature_fig {
    width: 100%;
    margin-left: 0;
  }
  .sec_feature_item--spec .sec_feature_btns {
    align-items: center;
  }
}




.sec_location {
  background: #E4E4D8;
  padding: 50px 0 56px;
}
.sec_location_head {
  text-align: center;
}
.sec_location_subttl {
  font-size: 15px;
}
.sec_location_ttl {
  margin-top: 15px;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #C6B493;
}
.sec_location_layout {
  margin-top: 24px;
}
.sec_location_map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  border: 0;
}
.sec_location_info {
  margin-top: 15px;
}
.sec_location_access {
  color: #4b4b4b;
}
.sec_location_access--jrnanbu {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: none;
}
.sec_location_access--jrnanbu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #919191;
}
.sec_location_access--jrnanbu,
.sec_location_access--jrchuo,
.sec_location_address {
  text-decoration: none;
}
.sec_location_row {
  margin-top: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.sec_location_line {
  font-size: 18px;
  /* font-weight: 500; */
}
.sec_location_line_ttl {
  font-size: 16px;
  /* font-weight: 500; */
  display: block;
}
.sec_location_line_ttl--keio {
  margin-top: 0.7em;
}
.sec_location_line--keio {
  margin-top: 0.7em;
}
.sec_location_route {
  margin-top: 8px;
  font-size: 15px;
  /* font-weight: 500; */
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.sec_location_time_num {
  display: inline-block;
  font-size: 82px;
  font-weight: 700;
  line-height: 0.9;
  color: #C6B493;
  vertical-align: baseline;
}
.sec_location_time {
  display: flex;
  align-items: baseline;
  margin-top: 0;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #C6B493;
  white-space: nowrap;
}
/* .sec_location_time span {
  font-size: 64px;
  line-height: 0.95;
} */
.sec_location_time_unit {
  display: inline-block;
  margin-left: 2px;
  font-size: 28px;
  color: #4b4b4b;
}
.sec_location_time_unit2 {
  margin-left: 0;
}
.sec_location_time_inline {
  margin: 0 4px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #C6B493;
  vertical-align: -2px;
}
.sec_location_access--jrchuo .sec_location_route + .sec_location_route {
  margin-top: 2px;
}
.sec_location_address {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed #9d9d9d;
  font-size: 14px;
  text-align: center;
  line-height: 1.9;
}

.sec_location_box .tume{
  margin-left: -0.5em;
}

@media all and (min-width: 681px) {
  .sec_location {
    min-width: 1240px;
    padding: 75px 0 95px;
  }
  .sec_location_subttl {
    font-size: 18px;
  }
  .sec_location_ttl {
    margin-top: 14px;
    font-size: 48px;
  }
  .sec_location_layout {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 43px;
  }
  .sec_location_map {
    width: 907px;
    flex: 0 0 907px;
    max-width: 100%;
    height: 477px;
  }
  .sec_location_map iframe {
    width: 907px;
    max-width: 100%;
    height: 477px;
    aspect-ratio: unset;
  }
  .sec_location_info {
    width: 290px;
    margin-top: 0;
    flex-shrink: 0;
    padding-top: 10px;
  }
  .sec_location_row {
    margin-top: 2px;
    gap: 10px;
  }
  .sec_location_line {
    font-size: 18px;
    line-height: 1.45;
  }
  .sec_location_line_ttl + * {
    margin-top: 0.1em;
    display: block;
  }
  .sec_location_access--jrchuo .sec_location_line--route {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    letter-spacing: -0.02em;
    line-height: 0.6;
  }
  .sec_location_access--jrchuo .sec_location_line--route .sec_location_line_ttl {
    display: inline;
    font-size: inherit;
  }
  .sec_location_access--jrchuo .sec_location_line--route .sec_location_route_row {
    display: contents;
  }
  .sec_location_access--jrchuo .sec_location_line--route .sec_location_route_from {
    display: inline;
  }
  .sec_location_access--jrchuo .sec_location_line--route .sec_location_route_bus {
    width: 100%;
    margin-top: 0.05em;
    white-space: nowrap;
  }
  .sec_location_access--jrchuo .sec_location_route_bus .tume2 {
    margin-left: 0;
  }
  .sec_location_line--keio {
    margin-top: 1em;
  }
  .sec_location_line--2 {
    margin-top: 1em;
    line-height: 0.7;
  }
  .sec_location_access--jrchuo .sec_location_line--2 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
  .sec_location_access--jrchuo .sec_location_line--2 .sec_location_route_row {
    display: contents;
  }
  .sec_location_access--jrchuo .sec_location_line--2 .sec_location_route_from {
    display: inline;
  }
  .sec_location_access--jrchuo .sec_location_line--2 .sec_location_route_bus {
    width: 100%;
    margin-top: 0.05em;
  }
  .sec_location_access--jrchuo .sec_location_line--2 .tume3 {
    margin-left: 0;
  }
  .sec_location_route {
    margin-top: 0;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.65;
    top: -0.2em;
    position: relative;
  }
  .sec_location_time {
    font-size: 23px;
  }
  .sec_location_time span.tilde_mark {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    vertical-align: 11px;
    color: #525050;
    position: relative;
    top: -10px;
  }
  /* .sec_location_time_unit {
    font-size: 54px !important;
  } */
  .sec_location_time_inline {
    margin: 0 1px;
    font-size: 42px;
    font-weight: 700;
    vertical-align: -3px;
  }
  .sec_location_access--jrchuo .sec_location_route + .sec_location_route {
    margin-top: 8px;
  }
  .sec_location_address {
    margin-top: 19px;
    padding-top: 12px;
    font-size: 14px;
    line-height: 2.2;
  }
  .sec_location_line span.tilde_mark {
    font-size: 28px;
    font-weight: 400;
  }


}

@media all and (max-width: 680px) {
  .sec_location_access--jrnanbu {
    display: flex;
    align-items: center;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
      .sec_location_line {
        top: 0.3em;
        position: relative;
        line-height: 1.6;
      }
      span.sec_location_line_txt{
        font-size: 16px;
      }
      .sec_location_time{
        margin-left: 0.3em;
      }
      .sec_location_time_num {
        font-size: 61px;
        font-weight: 700;
        line-height: 1;
        top: -0.1em;
        margin-left: 0.04em;
        margin-right: 0;
      }
  }

  .sec_location_info {
    width: 325px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
  }

  .sec_location_address {
    order: -1;
    border-bottom: 1px dashed #9d9d9d;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-top: none;
    padding-top: 0;
    margin-top: 5px;
}
  span.tilde_mark {
    display: inline-block;
    font-size: 35px;
    color: #525050;
    top: -0.2em;
    position: relative;
  }
  .sec_location_time_unit {
    display: inline-block;
    font-size: 24px;
    top: -0.2em;
    position: relative;
  }
  .tume2 {
    margin-left: 0;
  }
  .tume3 {
    margin-left: 0;
  }
  .tume4 {
    margin-right: -0.4em;
  }
  .sec_location_access--jrchuo {
    margin-top: 10px;
  }
  .sec_location_access--jrchuo .sec_location_line {
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1.5;
  }
  .sec_location_access--jrchuo .sec_location_line--route .sec_location_line_ttl {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    margin-top: 0.75em;
  }
  .sec_location_access--jrchuo .sec_location_line--route:first-child .sec_location_line_ttl {
    margin-top: 0.2em;
  }
  .sec_location_access--jrchuo .sec_location_route_row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-top: -1em;
  }
  .sec_location_access--jrchuo .sec_location_route_from {
    flex: 0 1 auto;
    min-width: 0;
  }
  .sec_location_access--jrchuo .sec_location_route_bus {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: right;
  }
  .sec_location_access--jrchuo .sec_location_line--keio {
    margin-top: 0.35em;
  }
  .sec_location_access--jrchuo .sec_location_line--2 {
    margin-top: 1.35em;
  }
  .sec_location_access--jrchuo .sec_location_route_row--walk .sec_location_route_from {
    white-space: nowrap;
  }
  .foot {
    padding-bottom: 70px;
  }

  .sec_location_line span.tilde_mark {
    font-size: 28px;
    font-weight: 400;
    top: -0.1em;
  }




}