@charset "UTF-8";
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.c-mpCarousel {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 820px) {
  .c-mpCarousel {
    flex-direction: column;
  }
}
.p-top .c-mpCarousel {
  background: #ffffff;
  padding: 15px 20px;
  border-top: 5px solid #F8F8F8;
}
@media screen and (max-width: 820px) {
  .p-top .c-mpCarousel {
    padding-top: 0;
    padding: 15px;
  }
}
.c-mpCarousel .mCSB_container {
  display: flex;
  margin-bottom: 0 !important;
}
.c-mpCarousel .mCSB_scrollTools {
  visibility: hidden;
  pointer-events: none;
  height: 0 !important;
}
.c-mpCarousel__nav {
  white-space: nowrap;
  flex-shrink: 0;
  flex-grow: 0;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.8;
  white-space: wrap;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .c-mpCarousel__nav {
    width: 100%;
    padding-left: 0;
  }
}
.c-mpCarousel__nav li {
  margin-right: 1em;
}
@media screen and (max-width: 820px) {
  .c-mpCarousel__nav li {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 5px;
    margin-right: 5px;
  }
}
.c-mpCarousel__nav a {
  width: 100%;
  text-align: center;
  border-radius: 7px;
  background: #efefef;
  color: #222;
  display: inline-block;
  padding: 0.2em 0.5em;
  box-sizing: border-box;
  position: relative;
}
.c-mpCarousel__nav a.is-active {
  background: #3C3C3C;
  color: #ffffff;
}
@media screen and (min-width: 821px) {
  .c-mpCarousel__nav a.is-active::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top: 4px solid #3C3C3C;
  }
}
.c-mpCarousel__arrow {
  position: absolute;
  top: 50%;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: #3C3C3C url(/svg/icn-arrow.svg) no-repeat center center/12px 12px;
  z-index: 2;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08);
  transition: opacity 0.4s;
}
.c-mpCarousel__arrow.ext-prev {
  left: 9px;
}
.c-mpCarousel__arrow.ext-next {
  right: 9px;
  transform: scale(-1, 1);
}
.c-mpCarousel__arrow.is-disable {
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 820px) {
  .c-mpCarousel__arrow {
    top: auto;
    bottom: 55px;
  }
}
.c-mpCarousel__wrapper {
  display: flex;
  overflow: hidden;
  flex-shrink: 1;
  flex-grow: 1;
  margin-top: 10px;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .c-mpCarousel__wrapper {
    width: 100%;
  }
}
.c-mpCarousel__item {
  display: flex;
  justify-content: flex-start;
}
.c-mpCarousel__item + .c-mpCarousel__item {
  margin-left: 120px;
}
.c-mpCarousel__list {
  display: flex;
  padding: 10px 20px;
  transition: border-color 0.4s;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
}
.c-mpCarousel__list::before, .c-mpCarousel__list::after {
  content: "";
  display: block;
  width: 2px;
  height: 6px;
  background: transparent;
  transition: background-color 0.4s;
  position: absolute;
  bottom: 0;
  border-radius: 2px;
}
.c-mpCarousel__list::before {
  left: 0;
}
.c-mpCarousel__list::after {
  right: 0;
}
.is-active .c-mpCarousel__list {
  border-bottom: 2px solid #3C3C3C;
  position: relative;
}
.is-active .c-mpCarousel__list::before, .is-active .c-mpCarousel__list::after {
  background-color: #3C3C3C;
}
.c-mpCarousel__list li {
  white-space: nowrap;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 820px) {
  .c-mpCarousel__list li {
    letter-spacing: -0.03em;
  }
}
.c-mpCarousel__list li:nth-child(1) a span {
  background-image: url(/svg/icn-rank_1.svg);
}
.c-mpCarousel__list li:nth-child(2) a span {
  background-image: url(/svg/icn-rank_2.svg);
}
.c-mpCarousel__list li:nth-child(3) a span {
  background-image: url(/svg/icn-rank_3.svg);
}
.c-mpCarousel__list li:nth-child(4) a span, .c-mpCarousel__list li:nth-child(5) a span {
  color: #222;
  background-image: url(/svg/icn-rank_4.svg);
}
.c-mpCarousel__list li + li {
  margin-left: 2em;
}
.c-mpCarousel__list li a {
  position: relative;
  display: block;
  display: block;
}
.c-mpCarousel__list li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 19px;
  height: 19px;
  top: 0;
  left: 50%;
  margin-left: -25px;
  font-size: 12px;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  color: #ffffff;
  line-height: 1;
  border-radius: 50%;
}
.c-mpCarousel__list li a:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 0.5em;
}
.c-mpCarousel__list li a.ext-woman:before {
  background-image: url(/svg/multiply/icn-multiply_woman.svg);
}
.c-mpCarousel__list li a.ext-unisex:before {
  background-image: url(/svg/multiply/icn-multiply_unisex.svg);
}
.c-mpCarousel__list li a.ext-solo:before {
  background-image: url(/svg/multiply/icn-multiply_solo.svg);
}
.c-mpCarousel__list li a.ext-couple:before {
  background-image: url(/svg/multiply/icn-multiply_couple.svg);
}
.c-mpCarousel__list li a.ext-family:before {
  background-image: url(/svg/multiply/icn-multiply_family.svg);
}
.c-mpCarousel__list li a.ext-student:before {
  background-image: url(/svg/multiply/icn-multiply_student.svg);
}
.c-mpCarousel__list li a.ext-global:before {
  background-image: url(/svg/multiply/icn-multiply_global.svg);
}
.c-mpCarousel__list li a.ext-luxury:before {
  background-image: url(/svg/multiply/icn-multiply_luxury.svg);
}
.c-mpCarousel__list li a.ext-included_utilities:before {
  background-image: url(/svg/multiply/icn-multiply_included_utilities.svg);
}
.c-mpCarousel__list li a.ext-library:before {
  background-image: url(/svg/multiply/icn-multiply_library.svg);
}
.c-mpCarousel__list li a.ext-bigbath:before {
  background-image: url(/svg/multiply/icn-multiply_bigbath.svg);
}
.c-mpCarousel__list li a.ext-parkingcar:before {
  background-image: url(/svg/multiply/icn-multiply_parkingcar.svg);
}
.c-mpCarousel__list li a.ext-parkingcycle:before {
  background-image: url(/svg/multiply/icn-multiply_parkingcycle.svg);
}
.c-mpCarousel__list li a.ext-shortterm:before {
  background-image: url(/svg/multiply/icn-multiply_shortterm.svg);
}
.c-mpCarousel__list li a.ext-lowprice:before {
  background-image: url(/svg/multiply/icn-multiply_lowprice.svg);
}
.c-mpCarousel__list li a.ext-freelent:before {
  background-image: url(/svg/multiply/icn-multiply_freelent.svg);
}
.c-mpCarousel__list li a.ext-noguarantor:before {
  background-image: url(/svg/multiply/icn-multiply_noguarantor.svg);
}
.c-mpCarousel__list li a.ext-designers:before {
  background-image: url(/svg/multiply/icn-multiply_designers.svg);
}
.c-mpCarousel__list li a.ext-large:before {
  background-image: url(/svg/multiply/icn-multiply_large.svg);
}
.c-mpCarousel__list li a.ext-medium:before {
  background-image: url(/svg/multiply/icn-multiply_medium.svg);
}
.c-mpCarousel__list li a.ext-small:before {
  background-image: url(/svg/multiply/icn-multiply_small.svg);
}
.c-mpCarousel__list li a.ext-privateroom:before {
  background-image: url(/svg/multiply/icn-multiply_room.svg);
}
.c-mpCarousel__list li a.ext-dormitory:before {
  background-image: url(/svg/multiply/icn-multiply_dormitory.svg);
}
.c-mpCarousel__list li a.ext-compartment:before {
  background-image: url(/svg/multiply/icn-multiply_compartment.svg);
}
.c-mpCarousel__list li a.ext-shareroom:before {
  background-image: url(/svg/multiply/icn-multiply_shareroom.svg);
}
.c-mpCarousel__list li a.ext-singleroom:before {
  background-image: url(/svg/multiply/icn-multiply_singleroom.svg);
}
.c-mpCarousel__list li a.ext-semiprivate:before {
  background-image: url(/svg/multiply/icn-multiply_semiprivate.svg);
}
.c-mpCarousel__list li a.ext-furnished:before {
  background-image: url(/svg/multiply/icn-multiply_furnished.svg);
}
.c-mpCarousel__list li a.ext-privatekitchen:before {
  background-image: url(/svg/multiply/icn-multiply_privatekitchen.svg);
}
.c-mpCarousel__list li a.ext-sharedkitchen:before {
  background-image: url(/svg/multiply/icn-multiply_sharedkitchen.svg);
}
.c-mpCarousel__list li a.ext-bathroomkitchen:before {
  background-image: url(/svg/multiply/icn-multiply_bathroomkitchen.svg);
}
.c-mpCarousel__list li a.ext-rooftop:before {
  background-image: url(/svg/multiply/icn-multiply_rooftop.svg);
}
.c-mpCarousel__list li a.ext-garden:before {
  background-image: url(/svg/multiply/icn-multiply_garden.svg);
}
.c-mpCarousel__list li a.ext-loft:before {
  background-image: url(/svg/multiply/icn-multiply_loft.svg);
}
.c-mpCarousel__list li a.ext-smokingroom:before {
  background-image: url(/svg/multiply/icn-multiply_smoking.svg);
}
.c-mpCarousel__list li a.ext-nosmoking:before {
  background-image: url(/svg/multiply/icn-multiply_nosmoking.svg);
}
.c-mpCarousel__list li a.ext-field:before {
  background-image: url(/svg/multiply/icn-multiply_field.svg);
}
.c-mpCarousel__list li a.ext-new_building:before {
  background-image: url(/svg/multiply/icn-multiply_new.svg);
}
.c-mpCarousel__list li a.ext-renovation:before {
  background-image: url(/svg/multiply/icn-multiply_renovation.svg);
}
.c-mpCarousel__list li a.ext-theater:before {
  background-image: url(/svg/multiply/icn-multiply_theater.svg);
}
.c-mpCarousel__list li a.ext-hotspring:before {
  background-image: url(/svg/multiply/icn-multiply_hotspring.svg);
}
.c-mpCarousel__list li a.ext-gym:before {
  background-image: url(/svg/multiply/icn-multiply_gym.svg);
}
.c-mpCarousel__list li a.ext-music:before {
  background-image: url(/svg/multiply/icn-multiply_music.svg);
}
.c-mpCarousel__list li a.ext-karaoke:before {
  background-image: url(/svg/multiply/icn-multiply_karaoke.svg);
}
.c-mpCarousel__list li a.ext-sports:before {
  background-image: url(/svg/multiply/icn-multiply_sports.svg);
}
.c-mpCarousel__list li a.ext-garage:before {
  background-image: url(/svg/multiply/icn-multiply_garage.svg);
}
.c-mpCarousel__list li a.ext-workspace:before {
  background-image: url(/svg/multiply/icn-multiply_workspace.svg);
}
.c-mpCarousel__list li a.ext-pet:before {
  background-image: url(/svg/multiply/icn-multiply_pet.svg);
}
.c-mpCarousel__list li a.ext-deliverylocker:before {
  background-image: url(/svg/multiply/icn-multiply_deliverylocker.svg);
}
.c-mpCarousel__list li a.ext-consultation_instruments:before {
  background-image: url(/svg/multiply/icn-multiply_consultation_instruments.svg);
}
.c-mpCarousel__list li a.ext-office:before {
  background-image: url(/svg/multiply/icn-multiply_office.svg);
}
.c-mpCarousel__list li a.ext-engineer:before {
  background-image: url(/svg/multiply/icn-multiply_engineer.svg);
}
.c-mpCarousel__list li a.ext-entrepreneur:before {
  background-image: url(/svg/multiply/icn-multiply_entrepreneur.svg);
}
.c-mpCarousel__list li a.ext-creator:before {
  background-image: url(/svg/multiply/icn-multiply_creator.svg);
}
.c-mpCarousel__list li a.ext-designer:before {
  background-image: url(/svg/multiply/icn-multiply_designer.svg);
}
.c-mpCarousel__list li a.ext-cartoonist:before {
  background-image: url(/svg/multiply/icn-multiply_cartoonist.svg);
}
.c-mpCarousel__list li a.ext-artist:before {
  background-image: url(/svg/multiply/icn-multiply_artist.svg);
}
.c-mpCarousel__list li a.ext-logding:before {
  background-image: url(/svg/multiply/icn-multiply_logding.svg);
}
.c-mpCarousel__list li a.ext-nature:before {
  background-image: url(/svg/multiply/icn-multiply_nature.svg);
}
.c-mpCarousel__list li a.ext-stock:before {
  background-image: url(/svg/multiply/icn-multiply_stock.svg);
}
.c-mpCarousel__list li a.ext-socialresidence:before {
  background-image: url(/svg/multiply/icn-multiply_socialresidence.svg);
}
.c-mpCarousel__list li a.ext-sharehouse:before {
  background-image: url(/svg/multiply/icn-multiply_sharehouse.svg);
}
.c-mpCarousel__list li a.ext-furnished_apart:before {
  background-image: url(/svg/multiply/icn-multiply_furnished_apart.svg);
}
.c-mpCarousel__list li a.ext-apart:before {
  background-image: url(/svg/multiply/icn-multiply_apart.svg);
}
.c-mpCarousel__list li a.ext-open:before {
  background-image: url(/svg/multiply/icn-multiply_open.svg);
}
.c-mpCarousel__list li a.ext-campaign:before {
  background-image: url(/svg/multiply/icn-multiply_campaign.svg);
}
.c-mpCarousel__list li a.ext-gakuwari:before {
  background-image: url(/svg/multiply/icn-multiply_gakuwari.svg);
}
.c-mpCarousel__list li a.ext-monthly:before {
  background-image: url(/svg/multiply/icn-multiply_monthly.svg);
}
.c-mpCarousel__list li a.ext-worldwide:before {
  background-image: url(/svg/multiply/icn-multiply_worldwide.svg);
}
.c-mpCarousel__list li a.ext-soundproof_room:before {
  background-image: url(/svg/multiply/icn-multiply_soundproof_room.svg);
}
.c-mpCarousel__list li a.ext-motorbikes_parking:before {
  background-image: url(/svg/multiply/icn-multiply_motorbikes_parking.svg);
}
.c-mpCarousel__list li a.ext-netflix:before {
  background-image: url(/svg/multiply/icn-multiply_netflix.svg);
}

#top #wrapper {
  background-color: #ffffff;
}

.p-keymovie {
  position: relative;
  overflow: hidden;
  background: #000;
}
.p-keymovie:not(.ext-sales) {
  max-height: min(56.25vw, 450px);
}
.p-keymovie.ext-sales {
  height: auto;
  padding-top: 0;
  background: url(https://owner.oakhouse.jp/common/images/mv.jpg) no-repeat center center/cover;
}
.p-keymovie.ext-sales::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}
.p-keymovie.ext-image {
  height: auto;
  padding-top: 0;
}
.p-keymovie.ext-image img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(1.05);
}
.p-keymovie.ext-image a {
  display: block;
  position: relative;
  opacity: 1 !important;
}
.p-keymovie.ext-image.is-animated img {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s, transform 0.8s;
}
@media screen and (min-width: 821px) {
  .p-keymovie.ext-image.is-animated a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .p-keymovie.ext-image.is-animated a:hover::before {
    opacity: 0.2;
    transition: opacity 0s;
  }
}
.p-keymovie .slick-prev, .p-keymovie .slick-next {
  border: none;
  background: none;
  position: absolute;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%) rotate(180deg);
  transition: transform 0.4s, opacity 0.4s;
  text-indent: -10000px;
  outline: none;
  width: 42px;
  height: 42px;
  background: url(/svg/icn-arrow_carousel.svg) no-repeat center center/contain;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 1280px) {
  .p-keymovie .slick-prev, .p-keymovie .slick-next {
    display: none;
  }
}
.p-keymovie .slick-prev.slick-disabled, .p-keymovie .slick-next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}
.p-keymovie .slick-prev {
  margin-left: -620px;
}
.p-keymovie .slick-prev:hover {
  transform: translate(0, -50%) rotate(180deg) scale(1.2);
}
.p-keymovie .slick-next {
  margin-left: 578px;
  transform: translate(0, -50%);
}
.p-keymovie .slick-next:hover {
  transform: translate(0, -50%) scale(1.2);
}
.p-keymovie .slick-dots {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 15px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .p-keymovie .slick-dots {
    bottom: 10px;
  }
}
.p-keymovie .slick-dots button {
  opacity: 0.5;
  border: 0;
  background-color: #ffffff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  overflow: hidden;
  text-indent: -1000000px;
  padding: 0;
  font-size: 1px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 820px) {
  .p-keymovie .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
.p-keymovie .slick-dots li {
  flex-shrink: 0;
  flex-grow: 0;
}
.p-keymovie .slick-dots li + li {
  margin-left: 15px;
}
.p-keymovie .slick-active button {
  opacity: 1;
}
.p-keymovie__item {
  position: relative;
}
.p-keymovie__player {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s;
}
.is-loaded .p-keymovie__player:after {
  opacity: 0;
}
.p-keymovie__player:after {
  opacity: 1;
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: transparent url(/svg/icn-loading_white.svg) no-repeat center center/30px 30px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.p-keymovie__player video {
  width: 100%;
  height: 56.25vw;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: opacity 1s;
  vertical-align: bottom;
  opacity: 0;
}
.is-play .p-keymovie__player video {
  opacity: 1;
}
.slick-active .p-keymovie__player {
  opacity: 1;
}
.p-keymovie__inner {
  height: 100%;
  width: 100%;
  max-width: 1160px;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  z-index: 2;
  padding: 0 40px;
}
@media screen and (max-width: 820px) {
  .p-keymovie__inner {
    padding: 15px;
  }
}
.ext-sales .p-keymovie__inner {
  position: relative;
}
.ext-image .p-keymovie__inner {
  padding: 0;
  position: relative;
  display: block;
}
@media screen and (max-width: 820px) {
  .ext-image .p-keymovie__inner {
    padding: 0;
  }
}
.p-keymovie__text {
  display: block;
  content: attr(data-caption);
  width: 100%;
  box-sizing: border-box;
  z-index: 3;
  color: #ffffff;
  font-weight: normal;
  font-size: 48px;
  text-align: left;
  padding: 0;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-top: -0.2em;
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 1s 0.4s, transform 1s 0.4s;
}
.slick-active .p-keymovie__text {
  opacity: 1;
  transform: none;
}
.p-keymovie__text strong {
  font-size: 32px;
}
@media screen and (max-width: 820px) {
  .p-keymovie__text {
    line-height: 1.1;
  }
}
@media screen and (max-width: 760px) {
  .p-keymovie__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 760px) and (min-width: 560px) {
  .p-keymovie__text {
    font-size: 38px;
  }
  .p-keymovie__text strong {
    font-size: 30px;
  }
}
@media screen and (max-width: 760px) {
  .p-keymovie__text strong {
    font-size: 18px;
  }
}
.p-keymovie__button {
  display: flex;
  align-items: center;
  margin-top: 30px;
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 1s 0.6s, transform 1s 0.6s;
}
.slick-active .p-keymovie__button {
  opacity: 1;
  transform: none;
}
.p-keymovie__button a:not(.c-button) {
  color: #ffffff;
  text-decoration: underline;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 760px) {
  .p-keymovie__button a:not(.c-button) {
    font-size: 14px;
  }
}
@media screen and (max-width: 760px) {
  .p-keymovie__button {
    margin-top: 15px;
  }
}
.p-keymovie .c-button {
  border-radius: 31px;
  box-sizing: border-box;
  border: none;
  margin-right: 15px;
  padding: 4px 30px;
  display: flex;
  align-items: center;
}
.p-keymovie .c-button img {
  margin-right: 10px;
}
@media screen and (max-width: 760px) {
  .p-keymovie .c-button {
    padding: 3px 15px;
    font-size: 12px;
    height: auto;
  }
}
@media screen and (max-width: 760px) and (min-width: 560px) {
  .p-keymovie .c-button {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .p-keymovie .c-button img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
}

.c-top__section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 40px 45px;
  box-sizing: border-box;
}
.c-top__section:first-child {
  margin-top: 0;
}
@media screen and (max-width: 820px) {
  .c-top__section {
    padding: 25px 15px;
  }
}

.c-top__title {
  display: flex;
  font-weight: bold;
  align-items: center;
  margin-bottom: 32px;
  white-space: nowrap;
  flex-wrap: wrap;
  font-weight: normal;
  font-size: 16px;
}
.c-top__title strong {
  font-size: 32px;
  margin-right: 16px;
}
@media screen and (max-width: 820px) {
  .c-top__title {
    font-size: 14px;
    margin-bottom: 15px;
    white-space: normal;
  }
  .c-top__title strong {
    font-size: 24px;
  }
}

.c-top__card {
  flex-grow: 1;
  flex-shrink: 1;
  background: #ffffff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08);
  display: flex;
}
.c-top__card a {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.c-top__card p.ext-image {
  width: 100%;
  position: relative;
}
.c-top__card p.ext-image img {
  position: relative;
  width: 100%;
  height: auto;
}
.c-top__card p.ext-text {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 15px 20px;
  font-size: 16px;
}
.c-top__card p.ext-text strong {
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 820px) {
  .c-top__card p.ext-text {
    padding: 15px;
  }
}
.c-top__card + .c-top__card {
  margin-left: 1.8518518519%;
}

.c-top__banner a {
  display: inline-block;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08);
  vertical-align: bottom;
  text-align: center;
  width: 100%;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}
.c-top__banner a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  font-weight: bold;
}
.c-top__banner a > img {
  z-index: 1;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}
.c-top__banner + .c-top__banner {
  margin-left: 1.8518518519%;
}
@media screen and (max-width: 820px) {
  .c-top__banner a span {
    font-size: 18px;
    padding: 0 15px;
    text-align: left;
  }
  .c-top__banner a img {
    width: 100%;
    height: auto;
  }
}

.p-top {
  background: #F8F8F8;
  max-width: 100%;
}
.p-top .c-top__title {
  white-space: normal;
}
.p-top > .c-top__title {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .p-top {
    padding: 0 0 15px;
  }
  .p-top .c-top__title {
    margin: 0 15px;
  }
  .p-top .c-top__title strong {
    font-size: 22px;
  }
}

.p-sales {
  color: #222;
  padding-top: 70px;
}
.p-sales__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.p-sales__lead strong {
  position: relative;
  font-size: min(28px, 2.5454545455vw);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08);
  color: #222;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 20px;
}
@media screen and (max-width: 820px) {
  .p-sales__lead strong {
    font-size: 24px;
  }
}
.p-sales__lead strong::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top-color: #ffffff;
  left: 50%;
  bottom: -24px;
  transform: skew(45deg);
}
.p-sales__lead strong img {
  margin: 0 0 0 0.2em;
}
.p-sales__lead strong span {
  font-size: min(24px, 2.1818181818vw);
  margin: 0 0.2em;
}
.p-sales__lead strong em {
  color: #284894;
  font-size: min(36px, 3.2727272727vw);
}
.p-sales__lead > span {
  margin-top: 24px;
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: min(24px, 2.1818181818vw);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.p-sales__list {
  max-width: 1080px;
  display: flex;
  font-size: 16px;
  align-items: stretch;
  justify-content: space-between;
  margin: 2em auto 0;
}
.p-sales__list strong {
  font-size: 16px;
}
.p-sales__list li {
  width: 31.6666666667%;
  background: #ffffff;
  border-radius: 8px;
  padding: 1em;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
.p-sales__list li > div {
  height: 141px;
  overflow: hidden;
  margin: -1em -1em 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.p-sales__list li strong {
  display: block;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: #284894;
}
.p-sales__title {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
  color: #ffffff;
}
.p-sales__casets {
  max-width: 1080px;
  display: flex;
  font-size: 16px;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
}
.p-sales__casets strong {
  font-size: 18px;
  margin-top: 1em;
  display: block;
}
.p-sales__casets li {
  width: 31.6666666667%;
  background: #ffffff;
  padding: 1em;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08);
}
.p-sales__casets li + li {
  margin-left: 2.5%;
}
.p-sales__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.p-sales__status {
  font-size: 14px;
  color: #E35D54;
}
.p-sales__category {
  position: absolute;
  left: 0.5em;
  top: 0.5em;
  padding: 0.3em 0.5em;
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  z-index: 10;
}
.p-sales__category.ext-shareLarge {
  background: #D4748E;
}
.p-sales__category.ext-shareMiddle {
  background: #284894;
}
.p-sales__category.ext-shareSmall {
  background: #50A0AA;
}
.p-sales__detail {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
.p-sales__detail dt, .p-sales__detail dd {
  margin-bottom: 2px;
  padding: 0.2em 0.5em;
  box-sizing: border-box;
}
.p-sales__detail dt {
  width: 40%;
  font-weight: bold;
  background: #F8F8F8;
  border-radius: 5px;
}
.p-sales__detail dd {
  width: 60%;
}
.p-sales__more {
  margin-top: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-sales__more .c-button {
  width: 100%;
  max-width: 480px;
  min-height: 60px;
  justify-content: center;
  align-items: center;
  background-color: #284894;
  margin-right: 0;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}
.p-sales__more .c-button img {
  width: 1em;
  height: auto;
  margin-right: 0.5em;
}
.p-sales__more .c-button:after {
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.6s;
}
.p-sales__more .c-button:hover {
  opacity: 1 !important;
}
.p-sales__more .c-button:hover:after {
  opacity: 0.2;
  transition: opacity 0.2s;
}

.p-search {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-weight: bold;
  line-height: 1;
  box-sizing: border-box;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .p-search {
    flex-direction: column;
    padding: 15px;
    margin: 0;
  }
}
.p-search__count {
  font-size: 14px;
}
.p-search__count span {
  font-size: 16px;
}
.p-search__form {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
}
@media screen and (max-width: 820px) {
  .p-search__form {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}
.p-search__form .c-input {
  flex-grow: 1;
  flex-shrink: 1;
}
@media screen and (min-width: 821px) {
  .p-search__form .c-input {
    margin-left: 57px;
  }
}
.p-search__form .c-button {
  margin-left: 12px;
  display: flex;
  align-items: center;
}
.p-search__form .c-button img {
  margin-right: 8px;
}

.p-message {
  max-width: 1080px;
  margin: 37px auto 0;
}
.p-message .c-top__title .c-button {
  font-size: 14px;
  margin-left: auto;
}
.p-message .c-top__title .c-button img {
  width: 20px;
  height: auto;
  vertical-align: text-bottom;
  margin-left: 5px;
}
@media screen and (max-width: 820px) {
  .p-message .c-top__title .c-button {
    margin: 8px auto 0;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .p-message {
    margin-top: 15px;
  }
}
.p-message__list {
  display: flex;
}
.p-message__list li {
  width: 31.6666666667%;
}
@media screen and (max-width: 820px) {
  .p-message__list {
    box-sizing: border-box;
  }
  .p-message__list li {
    width: calc(100% - 30px);
    margin: 15px 7.5px;
  }
  .p-message__list .c-top__card + .c-top__card {
    margin-left: 7.5px;
  }
  .p-message__list .slick-slide {
    height: auto;
  }
  .p-message__list .slick-initialized .slick-slide {
    display: flex;
  }
  .p-message__list .slick-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .p-message__list .slick-prev,
  .p-message__list .slick-next {
    -webkit-appearance: none;
    padding: 0;
    position: absolute;
    top: 50%;
    margin-top: -18px;
    left: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #ffffff;
    display: inline-block;
    outline: none;
    color: white;
    border: none;
    border-radius: 50%;
    z-index: 100;
    text-indent: -10000px;
    background: #3C3C3C url("/svg/icn-arrow.svg") no-repeat center center;
    background-size: 12px 12px;
  }
  .p-message__list .slick-prev.slick-disabled,
  .p-message__list .slick-next.slick-disabled {
    display: none !important;
  }
  .p-message__list .slick-next {
    left: auto;
    right: 0;
    transform: scaleX(-1);
    text-indent: 10000px;
  }
}

.p-alert {
  max-width: 1080px;
  margin: 0 auto 30px;
  background: #ffffff;
  padding: 10px 20px;
  box-sizing: border-box;
}
.p-message + .p-alert {
  margin: 30px auto 0;
}
.p-alert h3 {
  color: #E35D54;
  font-weight: bold;
}
.p-alert p {
  margin-top: 0.3em;
}
.p-alert p a {
  text-decoration: underline;
}
@media screen and (max-width: 820px) {
  .p-alert {
    margin: 0 0 15px;
  }
}

.p-compare table {
  width: 100%;
}
.p-compare table th, .p-compare table td {
  text-align: center;
  font-size: 14px;
  vertical-align: middle;
  padding: 0.7em 20px;
  box-sizing: border-box;
  width: 13.1481481481%;
  white-space: nowrap;
}
.p-compare table th img, .p-compare table td img {
  display: block;
  margin: 0 auto;
  max-width: 107px;
  width: auto;
  height: auto;
}
.p-compare table th {
  font-weight: bold;
}
.p-compare table tr.ext-alt th, .p-compare table tr.ext-alt td {
  background: #F8F8F8;
  min-height: 20px;
}
.p-compare table tr.ext-separate th, .p-compare table tr.ext-separate td {
  background-color: #ffffff;
}
.p-compare table td.ext-highlight {
  color: #E35D54;
  font-weight: bold;
}
.p-compare table th.ext-higlight {
  background: #E35D54;
  position: relative;
  border-right: 2px solid #E35D54;
  border-left: 2px solid #E35D54;
}
.p-compare table tr:last-child .p-compare__item + td {
  border-bottom: 2px solid #E35D54;
}
.p-compare table tr.ext-total th, .p-compare table tr.ext-total td {
  border-top: 2px solid #d1d1d1;
}
.p-compare__viewport {
  overflow-x: scroll;
  overflow-y: hidden;
}
.p-compare__company {
  background: #d1d1d1;
  color: #ffffff;
  white-space: normal;
}
.p-compare__category {
  background: #F8F8F8;
  border-right: 20px solid #ffffff;
}
.p-compare__item + td {
  border-right: 2px solid #E35D54;
  border-left: 2px solid #E35D54;
}
@media screen and (max-width: 820px) {
  .p-compare {
    padding-left: 0;
    padding-right: 0;
  }
  .p-compare .c-top__title {
    margin-left: 15px;
    margin-right: 15px;
  }
  .p-compare table {
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
  }
  .p-compare table th, .p-compare table td {
    font-size: 14px;
    padding: 0.5em 15px;
    width: auto;
    white-space: nowrap;
  }
  .p-compare table th img {
    width: 100%;
    height: auto;
  }
  .p-compare tr.ext-alt th, .p-compare tr.ext-alt td {
    min-height: 15px;
  }
  .p-compare__category {
    border-right: 15px solid #ffffff;
  }
}

.p-term {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-term.ext-alt {
  flex-direction: row-reverse;
}
@media screen and (max-width: 820px) {
  .p-term.ext-alt .c-top__banner a span {
    font-size: 16px;
  }
}
.p-term .c-top__title {
  display: block;
  white-space: normal;
}
.p-term .c-top__title strong {
  display: block;
  white-space: normal;
}
@media screen and (max-width: 820px) {
  .p-term {
    flex-direction: column;
  }
  .p-term.ext-alt {
    flex-direction: column;
  }
}
.p-term__text {
  width: 38.8888888889%;
}
@media screen and (max-width: 820px) {
  .p-term__text {
    width: 100%;
  }
}
.p-term__text p + p {
  margin-top: 40px;
  text-align: center;
}
.p-term__text .c-button {
  min-width: 200px;
}
.p-term__list {
  width: 59.2592592593%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .p-term__list {
    width: 100%;
    margin-top: 20px;
  }
}
.p-term__list .c-top__banner {
  width: 48.4375%;
  margin-left: 3.125%;
}
.ie .p-term__list .c-top__banner {
  margin-left: 2.96875%;
}
.ie .p-term__list .c-top__banner.ext-extend + .c-top__banner {
  margin-left: 0;
}
.ie .p-term__list .c-top__banner.ext-extend + .c-top__banner + .c-top__banner {
  margin-left: 2.96875%;
}
.p-term__list .c-top__banner:nth-child(odd) {
  margin-left: 0;
}
.p-term__list .c-top__banner:nth-child(n+3) {
  margin-top: 3.125%;
}
.p-term__list .c-top__banner a span {
  text-align: left;
  line-height: 1.2;
}
.p-term__list .c-top__banner.ext-extend {
  width: 100%;
}
.p-term__list .c-top__banner.ext-extend + .c-top__banner {
  margin-left: 0;
  margin-top: 3.125%;
}
.p-term__list .c-top__banner.ext-extend + .c-top__banner + .c-top__banner {
  margin-left: 3.125%;
}
.p-term__list .c-top__banner.ext-extend a {
  max-height: 142px;
  overflow: hidden;
}
.p-term__list .c-top__banner.ext-extend img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 820px) {
  .p-term__list .c-top__banner {
    width: calc(50% - 5px);
  }
  .p-term__list .c-top__banner:nth-child(even) {
    margin-left: 10px;
  }
  .p-term__list .c-top__banner:nth-child(n+3) {
    margin-top: 10px;
  }
  .p-term__list .c-top__banner.ext-extend {
    width: 100%;
  }
  .p-term__list .c-top__banner.ext-extend + .c-top__banner {
    margin-left: 0;
    margin-top: 10px;
  }
  .p-term__list .c-top__banner.ext-extend + .c-top__banner + .c-top__banner {
    margin-left: 10px;
  }
  .p-term__list .c-top__banner.ext-extend a {
    max-height: 142px;
    overflow: hidden;
  }
}
.p-term__list + .u-sp_only {
  margin-top: 20px;
}
.p-term__list + .u-sp_only .c-button {
  min-width: 200px;
  font-size: 18px;
  border-radius: 23px;
}
.p-term__search {
  display: flex;
}
.p-term__search .c-top__banner {
  width: 32.037037037%;
  margin-left: 1.8518518519%;
}
.p-term__search .c-top__banner:first-child {
  margin-left: 0;
}
.p-term__search .c-top__banner a {
  max-height: 125px;
}
.p-term__search .c-top__banner a span {
  font-size: 18px;
}
.p-term__search .c-top__banner img {
  height: auto;
  width: 100%;
}
.p-term__search.ext-multiply .c-top__banner a span {
  text-align: left;
}
@media screen and (max-width: 820px) {
  .p-term__search {
    width: 100%;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .p-term__search .c-top__banner {
    width: 100%;
    margin-left: 0;
  }
  .p-term__search .c-top__banner:nth-child(even) {
    margin-left: 0;
  }
  .p-term__search .c-top__banner:nth-child(n+1) {
    margin-top: 10px;
  }
  .p-term__search .c-top__banner a {
    max-height: 100px;
  }
  .p-term__search .c-top__banner a img {
    transform: translate(-50%, -7%);
  }
}

.p-area__list {
  display: flex;
  flex-wrap: wrap;
}
.p-area__list .c-top__banner {
  width: 18.5185185185%;
}
.ie .p-area__list .c-top__banner {
  margin-left: 1.7592592593%;
}
.p-area__list .c-top__banner:nth-child(5n+1) {
  margin-left: 0;
}
.p-area__list .c-top__banner:nth-child(n+6) {
  margin-top: 1.8518518519%;
}
.p-area__list .c-top__banner span {
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .p-area__list .c-top__banner {
    width: calc(50% - 5px);
    margin: 0;
  }
  .ie .p-area__list .c-top__banner {
    margin-left: 0;
  }
  .p-area__list .c-top__banner:nth-child(5n+1), .p-area__list .c-top__banner:nth-child(n+6) {
    margin-left: 0;
    margin-top: 0;
  }
  .p-area__list .c-top__banner:nth-child(n+3) {
    margin-top: 10px;
  }
  .p-area__list .c-top__banner:nth-child(even) {
    margin-left: 10px;
  }
  .ie .p-area__list .c-top__banner:nth-child(even) {
    margin-left: 9px;
  }
}

.p-help {
  background: #F8F8F8;
  margin: 30px auto;
}
.p-help__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-help .c-top__title {
  margin-bottom: 0;
  flex-shrink: 1;
  flex-grow: 1;
}
.p-help .c-button {
  font-size: 24px;
  font-weight: bold;
  padding: 0 20px;
  line-height: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
}
.p-help .c-button img {
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  .p-help {
    margin: 15px auto;
  }
  .p-help__inner {
    padding: 20px 15px;
    flex-direction: column;
    align-items: stretch;
  }
  .p-help .c-top__title {
    margin-bottom: 15px;
  }
  .p-help .c-button {
    font-size: 18px;
    width: 100%;
    box-sizing: border-box;
    line-height: 45px;
    height: 45px;
    justify-content: center;
  }
}

.p-feature .c-top__banner {
  text-align: left;
  margin-left: 0;
  margin-top: 1.8518518519%;
}
.p-feature .c-top__banner span {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 29px;
  line-height: 1;
  padding: 0 40px;
}
.p-feature .c-top__banner span strong {
  font-size: 49px;
  margin-bottom: 0.2em;
}
.p-feature .c-top__banner span img {
  width: 29px;
  height: 29px;
  margin-left: 0.3em;
}
@media screen and (max-width: 820px) {
  .p-feature .c-top__banner a {
    height: 157px;
  }
  .p-feature .c-top__banner a img {
    height: 100%;
    width: auto;
  }
  .p-feature .c-top__banner span {
    font-size: 20px;
    padding: 0 15px;
  }
  .p-feature .c-top__banner span strong {
    font-size: 30px;
  }
  .p-feature .c-top__banner span img {
    width: 20px;
    height: 20px;
  }
}
.p-feature__list {
  margin-top: 20px;
  display: flex;
}
.p-feature__list li {
  width: 31.6666666667%;
}
@media screen and (max-width: 820px) {
  .p-feature__list {
    margin-top: 15px;
    flex-direction: column;
  }
  .p-feature__list li {
    width: 100%;
  }
  .p-feature__list .c-top__card + .c-top__card {
    margin-left: 0;
    margin-top: 15px;
  }
}

.p-topic__caset {
  display: flex;
  align-items: center;
}
.p-topic__caset + .p-topic__caset {
  margin-top: 60px;
}
.p-topic__caset h2 {
  font-size: 20px;
  font-weight: bold;
  width: 18.5185185185%;
}
.p-topic__caset ul {
  flex-grow: 1;
  flex-shrink: 1;
  width: 79.6296296296%;
}
.p-topic__caset ul li a {
  width: 100%;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  background: #F8F8F8;
  vertical-align: bottom;
}
.p-topic__caset ul li:nth-child(even) a {
  background-color: #ffffff;
}
.p-topic__caset ul li span, .p-topic__caset ul li em, .p-topic__caset ul li strong {
  padding: 0 10px;
  text-decoration: none;
}
.p-topic__caset ul li em {
  color: #E35D54;
}
.p-topic__caset ul li span:last-child {
  text-decoration: underline;
}
@media screen and (max-width: 820px) {
  .p-topic__caset {
    flex-direction: column;
  }
  .p-topic__caset + .p-topic__caset {
    margin-top: 50px;
  }
  .p-topic__caset h2 {
    font-size: 18px;
    font-weight: bold;
    width: 100%;
  }
  .p-topic__caset ul {
    width: 100%;
    margin-top: 15px;
  }
  .p-topic__caset ul li {
    font-size: 14px;
  }
  .p-topic__caset ul li a {
    padding: 0 7.5px;
    height: 40px;
    line-height: 40px;
  }
  .p-topic__caset ul li span, .p-topic__caset ul li em, .p-topic__caset ul li strong {
    padding: 0 7.5px;
  }
}

.p-keyvisual {
  background: url(/images/rwd/search/img-keyvisual_search.jpg) no-repeat center center/cover;
  height: 300px;
  position: relative;
}
.p-keyvisual span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  .p-keyvisual {
    height: 192px;
  }
  .p-keyvisual span {
    font-size: 24px;
    padding: 0 15px;
  }
}

.p-name {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.p-name > div {
  margin-right: 20px;
  flex-grow: 1;
  flex-shrink: 1;
}
.p-name__form {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
}
.p-name__form .c-input {
  flex-grow: 1;
  flex-shrink: 1;
}
.p-name__form .c-button {
  margin-left: 12px;
  display: flex;
  align-items: center;
}
.p-name__form .c-button img {
  margin-right: 8px;
}
.p-name__banner {
  width: 49.0740740741%;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-name {
    flex-direction: column;
  }
  .p-name > div {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  .p-name__form {
    width: 100%;
  }
  .p-name__banner {
    width: 100%;
  }
}

.p-category .c-top__banner {
  text-align: left;
}
.p-category .c-top__banner span {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  padding: 0 40px;
}
.p-category .c-top__banner span strong {
  display: inline-block;
  font-size: 32px;
  margin-bottom: 6px;
}
.p-category .c-top__banner span img {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
@media screen and (max-width: 820px) {
  .p-category .c-top__banner a {
    height: 157px;
  }
  .p-category .c-top__banner a > img {
    height: 100%;
    width: auto;
  }
  .p-category .c-top__banner a span {
    font-size: 14px;
    padding: 0 15px;
  }
  .p-category .c-top__banner a span strong {
    display: inline-block;
    font-size: 24px;
  }
  .p-category .c-top__banner a span img {
    width: 14px;
    height: 14px;
  }
  .p-category__more {
    margin-top: 20px;
  }
  .p-category__more .c-button {
    min-width: 200px;
    font-size: 18px;
    border-radius: 23px;
  }
}
.p-category__item + .p-category__item {
  margin-top: 100px;
}
@media screen and (max-width: 820px) {
  .p-category__item + .p-category__item {
    margin-top: 50px;
  }
}

.p-oakfellows {
  margin-top: 20px;
}
.p-oakfellows a {
  display: flex;
  align-items: stretch;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08);
  vertical-align: bottom;
  width: 100%;
  font-weight: bold;
  flex-direction: row-reverse;
}
.p-oakfellows a > div {
  width: 55%;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 30px 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .p-oakfellows a > div {
    padding: 20px 35px;
  }
}
@media screen and (max-width: 820px) {
  .p-oakfellows a {
    flex-direction: column;
  }
  .p-oakfellows a > div {
    width: 100%;
    padding: 17px 15px;
  }
}
.p-oakfellows__title {
  line-height: 1;
}
.p-oakfellows__title strong {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 49px;
  display: block;
}
.p-oakfellows__title span {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .p-oakfellows__title strong {
    font-size: 39px;
  }
  .p-oakfellows__title span {
    font-size: 16px;
  }
}
@media screen and (max-width: 820px) {
  .p-oakfellows__title strong {
    font-size: 30px;
  }
  .p-oakfellows__title span {
    font-size: 14px;
    letter-spacing: -0.05em;
  }
}
.p-oakfellows__list {
  font-size: 16px;
  margin-top: 25px;
}
.p-oakfellows__list li {
  background: #F8F8F8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 3px 20px 3px 3px;
  line-height: 1.4;
}
.p-oakfellows__list li + li {
  margin-top: 10px;
}
.p-oakfellows__list li span {
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
@media screen and (max-width: 960px) {
  .p-oakfellows__list {
    margin-top: 17px;
    font-size: 14px;
  }
  .p-oakfellows__list li {
    padding: 3px 10px 3px 3px;
  }
  .p-oakfellows__list li span {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }
}
@media screen and (max-width: 820px) {
  .p-oakfellows__list li {
    letter-spacing: -0.04em;
  }
  .p-oakfellows__list li + li {
    margin-top: 7px;
  }
  .p-oakfellows__list li span {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
}
.p-oakfellows__image {
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
  width: 45%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  font-size: 20px;
  align-items: flex-start;
  justify-content: center;
  background: url(/images/rwd/top/img-oakfellows.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  line-height: 1;
}
.p-oakfellows__image img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  .p-oakfellows__image {
    font-size: 14px;
  }
  .p-oakfellows__image img {
    width: 14px;
    height: 14px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 820px) {
  .p-oakfellows__image {
    width: 100%;
    padding: 10px;
    min-height: 142px;
    align-items: flex-end;
  }
}

.sp_biznavi .p-help {
  background: transparent;
}