@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}
/*----------------------------------------


article


----------------------------------------*/
article {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow-x: clip;
}
article h1,
article h2,
article h3,
article h4,
article h5 {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  article > section {
    padding-top: 6.6666666667vw;
  }
}

/*----------------------------------------


section


----------------------------------------*/
section {
  position: relative;
}
section._bg {
  position: relative;
  background: #F2F2F2;
}
section._bor {
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  section._bor {
    border-radius: 6.4vw;
  }
}
section._bor_t {
  border-radius: 3rem 3rem 0 0;
}
@media screen and (max-width: 767px) {
  section._bor_t {
    border-radius: 6.4vw 6.4vw 0 0;
  }
}
section._bor_t._bg_w {
  position: relative;
  background: #fff;
}
section._bor_t._bg_w::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  background: #F2F2F2;
  left: 0;
  top: 0;
  z-index: -1;
}
section._bor_t._bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  background: #fff;
  left: 0;
  top: 0;
  z-index: -1;
}
section .inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  section .inner {
    width: calc(100% - 8vw);
  }
}
section p + p {
  margin-top: 1.5em;
}

/*----------------------------------------


tab


----------------------------------------*/
.tabs .tab {
  cursor: pointer;
}

.panels .panel {
  display: none;
}
.panels .panel.active {
  display: block;
}

/*----------------------------------------


list


----------------------------------------*/
ol,
ul.disc {
  margin-left: 2em;
}

ul.disc li {
  list-style: disc outside;
}

ul.non_style {
  list-style: none;
}

/*----------------------------------------


font


----------------------------------------*/
.fo600 {
  font-weight: 600 !important;
}

.fo700 {
  font-weight: 700 !important;
}

.fo500 {
  font-weight: 500 !important;
}

.fo400 {
  font-weight: normal !important;
}

.enfont {
  font-family: "customDin", sans-serif;
  letter-spacing: 0;
}

.jp_default {
  font-family: "Noto Sans JP", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  letter-spacing: 0;
}

.txt_l {
  text-align: left !important;
}

.txt_c {
  text-align: center !important;
}

.txt_r {
  text-align: right !important;
}

.txt_j {
  text-align: justify;
}

sup {
  font-size: 75%;
}

.margin_auto {
  margin-inline: auto;
}

.letter0 {
  letter-spacing: 0 !important;
}

.nowrap {
  white-space: nowrap;
}

.note {
  font-size: 1.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .note {
    font-size: 3.2vw;
  }
}

.mt0 {
  margin-top: 0em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.mb5 {
  margin-bottom: 5em !important;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
._fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}
._fadein.on {
  opacity: 1;
  transform: translateX(0);
}

._fade {
  opacity: 0;
  transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}
._fade.on {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  nav {
    position: relative;
    display: flex !important;
    justify-content: flex-end;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    top: -101vh;
    left: 0;
    width: 100%;
    padding: 10% 0 8vw;
    z-index: 100;
    box-sizing: border-box;
    background: #fff;
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  nav.is-open {
    top: 0;
  }
}
nav ul.gnav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  nav ul.gnav {
    display: block;
  }
}
nav ul.gnav li {
  position: relative;
  height: 100%;
  width: 11.8rem;
}
@media screen and (max-width: 767px) {
  nav ul.gnav li {
    width: 100%;
    text-align: left;
  }
}
nav ul.gnav li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  nav ul.gnav li a {
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 3.7333333333vw;
    padding: 0;
    height: 15.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  nav ul.gnav li a.current {
    background: #F2F2F2;
  }
}
nav ul.gnav li:hover span {
  opacity: 1;
  transform: translateY(0);
}

/*----------------------------------------


nav_switch


----------------------------------------*/
@media screen and (min-width: 768px) {
  .nav_switch {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .nav_switch {
    display: block;
    position: fixed;
    width: 6.4vw;
    height: 6.4vw;
    right: 2.6666666667vw;
    top: 0.2em;
    cursor: pointer;
    z-index: 9999999;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .nav_switch span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    background: #707070;
  }
  .nav_switch span:nth-of-type(1) {
    top: 2.2vw;
  }
  .nav_switch span:nth-of-type(2) {
    top: 4.5vw;
  }
  .nav_switch span:nth-of-type(3) {
    top: 6.8vw;
  }
  .nav_switch.is-open span:nth-of-type(1) {
    top: 4.5vw;
    transform: rotate(-45deg);
  }
  .nav_switch.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .nav_switch.is-open span:nth-of-type(3) {
    top: 4.5vw;
    transform: rotate(45deg);
  }
}
/*----------------------------------------


hero


----------------------------------------*/
@media screen and (max-width: 767px) {
  .hero {
    padding-top: 0 !important;
  }
}
.hero_contents {
  height: clamp(46.5rem, 33.6956521739vw, 60rem);
}
@media screen and (max-width: 767px) {
  .hero_contents {
    height: 58.6666666667vw;
  }
}
.hero_contents .inner {
  display: flex;
  align-items: center;
  height: 100%;
  inset: 0;
}
.hero_contents .inner h1 {
  color: #fff;
  line-height: 1.3;
  font-size: 3.6rem;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .hero_contents .inner h1 {
    font-size: 6.4vw;
  }
}
.hero .catch {
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .hero .catch {
    margin: 10.6666666667vw 0 8vw;
  }
}

.area {
  padding: 10rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .area {
    padding: 10.6666666667vw 0 8vw;
  }
}
.area_main {
  margin: 0 auto 5em;
}
@media screen and (max-width: 767px) {
  .area_main {
    margin: 0 auto 3em;
  }
}
.area_main h2 {
  font-size: 4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .area_main h2 {
    font-size: 7.4666666667vw;
    text-align: center;
    margin-bottom: 6.6666666667vw;
  }
}
.area_contents._row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .area_contents._row {
    display: block;
  }
}
.area_contents._row picture {
  border-radius: 2rem;
  border: 1px solid #cdcdcd;
  overflow: hidden;
  align-items: self-start;
}
@media screen and (max-width: 767px) {
  .area_contents._row picture {
    border-radius: 4.2666666667vw;
    margin-top: 1.5em;
  }
}
.area_contents._row figure figcaption {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .area_contents._row figure figcaption {
    font-size: 4vw;
  }
}
.area_content {
  line-height: 1.8;
}
.area .movie {
  max-width: 48rem;
  margin: 5em auto 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .area .movie {
    max-width: 90%;
    margin: 1.5em auto 0;
  }
}
.area .movie iframe {
  width: 100%;
  height: 100%;
}
.area_details {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .area_details {
    padding: 8vw 0;
  }
}
.area_details_contents {
  background: #fff;
  padding: 4rem;
  border-radius: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: 4rem 0;
  align-items: self-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .area_details_contents {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .area_details_contents {
    border-radius: 4.2666666667vw;
    display: block;
    padding: 14.6666666667vw 3.3333333333vw 8vw;
  }
}
.area_details_contents._bg {
  background: #F2F2F2;
}
@media screen and (max-width: 767px) {
  .area_details_contents._phs {
    padding-top: 8vw;
  }
}
.area_details_contents._main {
  background: transparent;
  padding: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 4em;
}
@media screen and (max-width: 767px) {
  .area_details_contents._main {
    margin-bottom: 3em;
  }
}
.area_details_contents._main .area_details_content h3 {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .area_details_contents._main .area_details_content h3 {
    font-size: 6.4vw;
    text-align: center;
  }
}
.area_details_contents._main picture {
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .area_details_contents._main picture {
    border-radius: 4.2666666667vw;
    margin-top: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  .area_details_content {
    padding-bottom: 10rem;
  }
}
.area_details_content h3 {
  font-size: 2.4rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .area_details_content h3 {
    font-size: 5.3333333333vw;
    text-align: center;
  }
}
.area_details figure figcaption {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .area_details figure figcaption {
    font-size: 4vw;
  }
}
.area_details picture {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .area_details picture {
    border-radius: 1.6vw;
    margin-top: 1.5em;
  }
}
.area_details .logo {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .area_details .logo {
    position: absolute;
    left: 4rem;
    bottom: 2.5rem;
  }
}
.area_details .logo picture {
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .area_details .logo picture {
    border-radius: 0;
  }
}
.area_details .logo a {
  display: flex;
  font-size: 1.5rem;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .area_details .logo a {
    font-size: 4vw;
  }
}
.area_details .logo a img {
  display: block;
  width: 1.5rem;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .area_details .logo a img {
    width: 4vw;
  }
}
.area_details .logo a:hover {
  opacity: 0.7;
}

/*----------------------------------------


  voice


----------------------------------------*/
.voice {
  padding: 6rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 4vw 0 16vw;
  }
  .voice._bg {
    padding-top: 16vw;
  }
}
.voice h3 {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .voice h3 {
    font-size: 6.4vw;
    text-align: center;
    margin-bottom: 1em;
  }
}
.voice_contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: 2em 0;
}
@media screen and (max-width: 767px) {
  .voice_contents {
    display: block;
  }
}
.voice_content h4 {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .voice_content h4 {
    margin-bottom: 1.2rem;
  }
}
.voice picture {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .voice picture {
    border-radius: 1.6vw;
    margin-top: 1.5em;
  }
}
.voice_details h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .voice_details h3 {
    font-size: 4vw;
    text-align: left;
  }
}
.voice_details h3:nth-of-type(n+2) {
  margin-top: 2.5em;
}

/*----------------------------------------


  ensen


----------------------------------------*/
.ensen {
  padding: 3rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .ensen {
    padding: 4vw 0 16vw;
  }
}
.ensen .title {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .ensen .title {
    font-size: 5.3333333333vw;
    text-align: center;
  }
}
.ensen_contents {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .ensen_contents {
    margin-top: 8vw;
  }
}
.ensen_content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .ensen_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.3333333333vw;
  }
}
.ensen_content li {
  border-radius: 1.2rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: #cdcdcd;
}
@media screen and (max-width: 767px) {
  .ensen_content li {
    border-radius: 3.2vw;
  }
}
.ensen_content li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.ensen_content li a::before {
  position: absolute;
  content: "";
  background: #000;
  opacity: 0.35;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.ensen_content li a picture {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.ensen_content li a p {
  position: relative;
  z-index: 3;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ensen_content li a p {
    font-size: 4vw;
  }
}
.ensen_content li a p::before {
  position: absolute;
  content: "";
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  width: 1rem;
  height: 1rem;
  top: 50%;
  right: -1rem;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 767px) {
  .ensen_content li a p::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    right: -2.6666666667vw;
  }
}
.ensen_content li a:hover::before {
  opacity: 0;
}
.ensen_content li a:hover p::before {
  right: -1.5rem;
}

/*----------------------------------------


link


----------------------------------------*/
.link {
  padding: 3rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .link {
    padding: 4vw 0 16vw;
  }
}
.link .title {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .link .title {
    font-size: 5.3333333333vw;
    text-align: center;
  }
}
.link_contents {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .link_contents {
    margin-top: 6.6666666667vw;
  }
}
.link_content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .link_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 8vw 3.3333333333vw;
  }
}
.link_content li a {
  position: relative;
}
.link_content li a picture {
  aspect-ratio: 1/1;
  border: 1px solid #cdcdcd;
  border-radius: 1.2rem;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .link_content li a picture {
    border-radius: 3.2vw;
  }
}
.link_content li a p {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #707070;
  margin-bottom: 1em;
  height: 5.3rem;
}
@media screen and (max-width: 767px) {
  .link_content li a p {
    font-size: 3.2vw;
    height: 14.1333333333vw;
  }
}
.link_content li a:hover picture {
  opacity: 0.7;
}

.top {
  /*----------------------------------------


    lonav


  ----------------------------------------*/
  /*----------------------------------------


    access


  ----------------------------------------*/
  /*----------------------------------------


    ensen


  ----------------------------------------*/
}
.top section .title {
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top section .title {
    font-size: 5.3333333333vw;
    margin-bottom: 4.6666666667vw;
    text-align: center;
  }
}
.top .hero_contents {
  background: url(../images/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .top .hero_contents {
    background: url(../images/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}
.top .lonav {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .top .lonav {
    position: relative;
    overflow: auto;
  }
}
.top .lonav_contents {
  background: #F2F2F2;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 0.5em 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top .lonav_contents {
    width: 100%;
    gap: 1.4em;
    border-radius: 2.1333333333vw;
  }
}
.top .lonav_contents li {
  position: relative;
}
.top .lonav_contents li:not(:first-child):before {
  position: absolute;
  content: "";
  background: #707070;
  width: 1px;
  height: 70%;
  left: -1em;
  top: 15%;
}
@media screen and (max-width: 767px) {
  .top .lonav_contents li:not(:first-child):before {
    left: -0.7em;
  }
}
.top .lonav_contents li a {
  display: block;
  font-size: 1.7rem;
  color: #707070;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top .lonav_contents li a {
    font-size: 4vw;
  }
}
.top .lonav_content {
  position: relative;
}
.top .lonav_content p {
  margin-top: 1.8em;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top .lonav_content p {
    font-size: 2vw;
  }
}
.top .access {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .top .access {
    padding: 10.6666666667vw 0 8vw 0;
  }
}
.top .access h2 {
  font-size: 4rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .top .access h2 {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .top .access_contents_ph {
    position: relative;
    left: -4vw;
    width: 100vw;
    overflow-x: scroll;
  }
}
.top .access_contents picture {
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .top .access_contents picture {
    width: 160vw;
    margin-bottom: 2em;
  }
}
.top .ensen_contents_ph {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top .ensen_contents_ph {
    position: relative;
    left: -4vw;
    width: 100vw;
    overflow-x: scroll;
    margin-bottom: 3em;
  }
}
.top .ensen_contents_ph picture {
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .top .ensen_contents_ph picture {
    width: 200vw;
    margin-bottom: 1em;
  }
}
.top .ensen_contents_btns {
  position: absolute;
  width: 100%;
  left: 0;
  top: 51%;
  height: 49%;
}
@media screen and (max-width: 767px) {
  .top .ensen_contents_btns {
    width: 200vw;
  }
}
.top .ensen_contents_btn {
  position: absolute;
  width: 11.5rem;
  height: 3.6rem;
}
@media screen and (max-width: 767px) {
  .top .ensen_contents_btn {
    width: 20vw;
    height: 6vw;
    margin-top: -1.3333333333vw;
  }
}
.top .ensen_contents_btn._ebina {
  left: 1.5%;
  top: 0;
}
.top .ensen_contents_btn._yamato {
  left: 21%;
  top: 0;
}
.top .ensen_contents_btn._futamatagawa {
  left: 36.5%;
  top: 0;
}
.top .ensen_contents_btn._yumegaoka {
  left: 15.5%;
  top: 35%;
}
.top .ensen_contents_btn._izumino {
  left: 28.5%;
  top: 35%;
}
.top .ensen_contents_btn._tsurugamine {
  left: 49%;
  top: 0;
}
.top .ensen_contents_btn._hoshikawa {
  left: 61%;
  top: 13%;
}
.top .ensen_contents_btn._yokohama {
  left: 77%;
  top: 13%;
}
.top .ensen_contents_btn::before {
  position: absolute;
  content: "";
  background: #000;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  left: 0.3rem;
  top: 0.3rem;
}
.top .ensen_contents_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #956134;
  color: #fff;
  border-radius: 9999px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top .ensen_contents_btn a {
    font-size: 2.4vw;
  }
}
.top .ensen_contents_btn a:hover {
  background-color: #fff;
  color: #956134;
}

.yumegaoka .hero_contents {
  background: url(../images/yumegaoka/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .yumegaoka .hero_contents {
    background: url(../images/yumegaoka/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}
.yumegaoka .area_details_contents .logo._yumegaoka_soratos picture {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .yumegaoka .area_details_contents .logo._yumegaoka_soratos picture {
    width: 40vw;
  }
}

.yokohama .hero_contents {
  background: url(../images/yokohama/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .yokohama .hero_contents {
    background: url(../images/yokohama/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}
.yokohama .area_details_contents .logo._yokohama_front picture {
  width: 18rem;
}
@media screen and (max-width: 767px) {
  .yokohama .area_details_contents .logo._yokohama_front picture {
    width: 41.3333333333vw;
  }
}

.hoshikawa .hero_contents {
  background: url(../images/hoshikawa/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .hoshikawa .hero_contents {
    background: url(../images/hoshikawa/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}
.hoshikawa .area_details_contents .logo._qlay picture {
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .hoshikawa .area_details_contents .logo._qlay picture {
    width: 38.6666666667vw;
  }
}

.futamatagawa .hero_contents {
  background: url(../images/futamatagawa/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .futamatagawa .hero_contents {
    background: url(../images/futamatagawa/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}
.futamatagawa .area_details_contents .logo._joinus_terrace picture {
  width: 21.7rem;
}
@media screen and (max-width: 767px) {
  .futamatagawa .area_details_contents .logo._joinus_terrace picture {
    width: 40vw;
  }
}

.ebina .hero_contents {
  background: url(../images/ebina/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .ebina .hero_contents {
    background: url(../images/ebina/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}

.izumino .hero_contents {
  background: url(../images/izumino/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .izumino .hero_contents {
    background: url(../images/izumino/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}

.tsurugamine .hero_contents {
  background: url(../images/tsurugamine/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .tsurugamine .hero_contents {
    background: url(../images/tsurugamine/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}
.tsurugamine .area_details_contents .logo._zoo picture {
  width: 21.8rem;
}
@media screen and (max-width: 767px) {
  .tsurugamine .area_details_contents .logo._zoo picture {
    width: 42.6666666667vw;
  }
}

.yamato .hero_contents {
  background: url(../images/yamato/webp/fv_ph.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .yamato .hero_contents {
    background: url(../images/yamato/webp/fv_ph_sp.webp) no-repeat center center/cover;
  }
}/*# sourceMappingURL=style.css.map */