@charset "UTF-8";
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
BASE
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

main {
  display: block;
}

@media (min-width: 751px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}

@media (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}

@media (min-width: 1024px) {
  .pcOnly {
    display: block;
  }
  .notPc {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .pcOnly {
    display: none !important;
  }
  .notPc {
    display: block;
  }
}

@media (min-width: 1024px) {
  .pcOnly-in {
    display: inline-block;
  }
  .notPc-in {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .pcOnly-in {
    display: none !important;
  }
  .notPc-in {
    display: inline-block;
  }
}

.ipad {
  display: none;
}

@media (min-width: 750px) and (max-width: 1024px) {
  .ipad {
    display: block;
  }
}

body {
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: auto;
  font-size: 14px;
  font-family: noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

a {
  color: #000000;
}
.orange{
  color: #FF6600;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
MODULE
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/*
  ボタン類
ーーーーーーーーーーーーーーーーーー*/
/*-- 汎用ボタン --*/
.c-btn-general {
  max-width: 335px;
  height: 60px;
  background: #192d4a;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 auto;
  position: relative;
  letter-spacing: 1px;
  transition: 0.3s;
}

.c-btn-general a {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #ffffff;
}

.c-btn-general a:hover {
  opacity: 1;
}

.c-btn-general::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #3c4d65;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-btn-general.is-over::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn-general.is-remove::before {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.c-btn-general.-btn-arrow a::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 20px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-btn-general.-outerlink a {
  background: url(../images/common/icon_outerlink.png) no-repeat right 11px bottom 9px/15px;
}

.c-btn-general {
  position: relative;
}

.c-btn-general.-del {
  background: #818181;
}

/*-- 汎用ボタン　小 --*/
.c-btn-general.-sm a::after {
  top: 20px;
}

/*-- 汎用ボタン　大 --*/
.c-btn-general.-btn-large {
  height: 60px;
  background-color: #192d4a;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: left;
      justify-content: left;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 auto;
  position: relative;
  letter-spacing: 1px;
}

@media (min-width: 751px) {
  .c-btn-general.-btn-large {
    max-width: 525px;
  }
}

.c-btn-general.-btn-large a {
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding-left: 48px;
}

.c-btn-general.-btn-large.-btn-arrow a::after {
  content: "";
  position: absolute;
  right: 20px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-btn-general__sub {
  font-size: 10px;
  position: absolute;
  right: 40px;
  letter-spacing: 0;
}

.c-btn-general.-centering a {
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 0;
}

/*-- アクションボタンwrap --*/
/*-- アクションボタン 上2つをwrap --*/
.c-wrap-actionBtn__communication {
  width: 100%;
}

@media (min-width: 751px) {
  .c-wrap-actionBtn__communication {
    margin-bottom: 14px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media (max-width: 750px) {
  .c-wrap-actionBtn__communication {
    margin-bottom: 10px;
    display: block;
  }
}

/*-- 見学予約をする　ボタン --*/
.c-btn-reserve {
  position: relative;
}

@media (min-width: 751px) {
  .c-btn-reserve {
    width: calc(50% - 7px);
  }
}

@media (max-width: 750px) {
  .c-btn-reserve {
    width: 100%;
    margin-bottom: 10px;
  }
}

.c-btn-reserve a {
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #5e96db;
  color: #ffffff;
  transition: 0.3s ease-out;
}

.c-btn-reserve a:after {
  content: "";
  position: absolute;
  top: 28px;
  right: 20px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-btn-reserve a:hover {
  opacity: 0.8;
}

/*-- 資料請求する　ボタン --*/
.c-btn-document {
  position: relative;
}

@media (min-width: 751px) {
  .c-btn-document {
    width: calc(50% - 7px);
  }
}

@media (max-width: 750px) {
  .c-btn-document {
    width: 100%;
  }
}

.c-btn-document a {
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #2fb183;
  color: #ffffff;
  transition: 0.3s ease-out;
}

.c-btn-document a:after {
  content: "";
  position: absolute;
  top: 28px;
  right: 20px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-btn-document a:hover {
  opacity: 0.8;
}

@media (max-width: 750px) {
  .c-btn-document.-sm {
    max-width: 335px;
    margin: auto;
  }
}

.c-btn-document.-sm a:after {
  top: 20px;
}

/*-- お気に入り物件に追加　ボタン --*/
.c-btn-favorite {
  position: relative;
}

@media (min-width: 751px) {
  .c-btn-favorite {
    margin-bottom: 22px;
  }
}

@media (max-width: 750px) {
  .c-btn-favorite {
    margin-bottom: 28px;
  }
}

.c-btn-favorite a {
  width: 100%;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #68c8e4;
  color: #ffffff;
  transition: 0.3s ease-out;
  letter-spacing: 1px;
}

.c-favorite__star {
  width: 20px;
  margin-right: 5px;
}

.c-btn-favorite a:hover {
  opacity: 0.8;
}

.c-btn-favorite__star {
  color: #ffffff;
  margin-right: 5px;
  width: 24px;
}

/*-- お電話でのお問い合わせ --*/
.c-contactPhone-info {
  color: #000000;
  line-height: 1.6;
}

@media (min-width: 751px) {
  .c-contactPhone-info {
    margin-bottom: 7px;
    font-size: 15px;
  }
}

@media (max-width: 750px) {
  .c-contactPhone-info {
    margin-bottom: 10px;
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 750px) {
  .c-contactPhone-num__wrap {
    text-align: center;
  }
}

.c-contactPhone-num {
  position: relative;
  display: inline-block;
}

@media (min-width: 751px) {
  .c-contactPhone-num {
    font-size: 30px;
    background: url(../images/common/freedial.png) no-repeat left/38px;
    padding-left: 48px;
  }
}

@media (max-width: 750px) {
  .c-contactPhone-num {
    font-size: 20px;
    background: url(../images/common/freedial.png) no-repeat left/24px;
    padding-left: 30px;
    text-align: center;
  }
}

.c-reference-num {
  font-weight: 500;
}

@media (min-width: 751px) {
  .c-reference-num {
    font-size: 18px;
  }
}

@media (max-width: 750px) {
  .c-reference-num {
    font-size: 13px;
  }
}

/*-- すべての物件にチェックをつける　ボタン --*/
.c-checkbox {
  display: none;
}

.c-btn-check__label {
  cursor: pointer;
  height: 50px;
  background-color: #eef2f5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: opacity 0.3s;
}

@media (min-width: 751px) {
  .c-btn-check__label {
    width: 280px;
  }
}

.c-btn-check__label:hover {
  opacity: 0.8;
}

.c-btn-check__text {
  color: #192d4a;
  font-size: 13px;
}

.c-btn-check span::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #ffffff;
  transition: background 0.2s;
}

@media (min-width: 751px) {
  .c-btn-check span::before {
    left: 16px;
  }
}

@media (max-width: 750px) {
  .c-btn-check span::before {
    left: 17%;
  }
}

/*-- チェックした物件をまとめて資料請求　ボタン --*/
.c-btn-allDocument a {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #ffffff;
  background: #2fb183;
  transition: opacity 0.3s ease-out;
  font-size: 13px;
}

@media (min-width: 751px) {
  .c-btn-allDocument a {
    width: 280px;
  }
}

.c-btn-allDocument a:hover {
  opacity: 0.8;
}

/*-- next prev　ボタン　共通 --*/
.c-btnArrow {
  text-align: center;
  cursor: pointer;
}

.arrow-circle:hover,
.c-btnArrow:hover .arrow-circle {
  opacity: 0.8;
}

.arrow-circle {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  border-radius: 50%;
  background-color: #192d4a;
  position: relative;
  transition: 0.3s ease-out;
}

.arrow-next .arrow-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.arrow-prev .arrow-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/*-- next prev　大ボタン --*/
.btnArrow-L .arrow-circle {
  width: 30px;
  height: 30px;
}

.btnArrow-L.arrow-next .arrow-circle::after {
  margin-left: -4px;
  margin-top: -3px;
  width: 5px;
  height: 5px;
}

.btnArrow-L.arrow-prev .arrow-circle::after {
  margin-left: -2px;
  margin-top: -3px;
  width: 5px;
  height: 5px;
}

.arrow-text {
  display: block;
  margin-top: 5px;
  color: #000000;
  font-size: 12px;
}

/*-- next prev　中ボタン --*/
.btnArrow-M .arrow-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #192d4a;
  position: relative;
  transition: 0.3s ease-out;
}

.btnArrow-M.arrow-next .arrow-circle::after {
  margin-left: -4px;
  margin-top: -3px;
  width: 4px;
  height: 4px;
}

.btnArrow-M.arrow-prev .arrow-circle::after {
  margin-left: -1px;
  margin-top: -2px;
  width: 4px;
  height: 4px;
}

/*-- next prev　小ボタン --*/
.btnArrow-S .arrow-circle {
  width: 20px;
  height: 20px;
}

.btnArrow-S.arrow-next .arrow-circle::after {
  margin-left: -3px;
  margin-top: -2px;
  width: 3px;
  height: 3px;
}

.btnArrow-S.arrow-prev .arrow-circle::after {
  margin-left: -1px;
  margin-top: -2px;
  width: 3px;
  height: 3px;
}

/*
  資料請求フォームテーブル　th幅185px
ーーーーーーーーーーーーーーーーーー*/
.c-attention {
  font-size: 13px;
  text-align: right;
}

@media (min-width: 751px) {
  .c-attention {
    margin: 0 60px 5px 0;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-attention {
    margin: 0 0 5px;
  }
}

@media (max-width: 750px) {
  .c-attention {
    margin: 0 20px 15px 0;
  }
}

.c-table {
  color: #000000;
}

@media (min-width: 751px) {
  .c-table {
    max-width: 1186px;
    margin: 0 auto;
    width: calc(100% - 60px);
  }
}

@media (max-width: 750px) {
  .c-table {
    width: 100%;
  }
}

.c-table th {
  background: #192d4a;
  color: #ffffff;
  text-align: left;
  font-weight: 500;
  position: relative;
  vertical-align: middle;
}

@media (min-width: 751px) {
  .c-table th {
    width: 18%;
    padding: 10px 40px;
    font-size: 16px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-table th {
    width: 25%;
    padding: 10px 40px;
  }
}

@media (max-width: 750px) {
  .c-table th {
    display: block;
    width: 100%;
    padding: 23px 20px;
  }
}

@media (min-width: 751px) {
  .c-table td {
    width: 82%;
    background: #f3f3f3;
    padding: 10px 40px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-table td {
    width: 75%;
    background: #f3f3f3;
    padding: 10px 40px;
  }
}

@media (max-width: 750px) {
  .c-table td {
    display: block;
    width: 100%;
    background: #f3f3f3;
    padding: 20px;
  }
}

@media (min-width: 751px) {
  .c-table__firstRow th {
    vertical-align: bottom;
    padding-bottom: 30px;
  }
}

@media (min-width: 751px) {
  .c-table__firstRow td {
    padding-top: 60px;
  }
}

.c-table__td.-flex::after {
  content: "";
  display: block;
  clear: both;
}

.c-table__td.-flex > div {
  float: left;
}

@media (min-width: 751px) {
  .c-table__required {
    position: absolute;
    top: 74px;
  }
}

.c-tableInnerList.-mt20 {
  margin-top: 20px;
}

@media (min-width: 751px) {
  .c-tableInnerList.-tableTop {
    margin-top: 40px;
  }
}

@media (max-width: 750px) {
  .c-tableInnerList.-tableTop {
    margin-top: 20px;
  }
}

.c-tableInnerList__label {
  display: inline-block;
  cursor: pointer;
}

.c-tableInnerList__text {
  font-size: 13px;
  font-weight: 500;
}

.c-checkbox + .c-tableInnerList__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 18px;
  padding-bottom: 3px;
}

@media (max-width: 750px) {
  .c-checkbox + .c-tableInnerList__text {
    font-size: 13px;
  }
}

.c-table label {
  margin-bottom: 20px;
  display: inline-block;
  cursor: pointer;
}

.c-checkbox + span {
  position: relative;
  padding-left: 30px;
  display: block;
  height: 18px;
  padding-top: 2px;
  font-weight: 500;
}

.c-checkbox + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #ffffff;
  transition: background 0.2s;
}

.c-checkbox:checked + span::after {
  display: block;
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 8px;
  height: 4px;
  border-left: 1px solid #818181;
  border-bottom: 1px solid #818181;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-table__text {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: #ffffff;
  font-size: 13px;
}

@media (min-width: 751px) {
  .c-table__text {
    height: 50px;
    width: 60%;
    padding-left: 30px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-table__text {
    width: 80%;
  }
}

@media (max-width: 750px) {
  .c-table__text {
    height: 45px;
    width: 100%;
    padding-left: 20px;
  }
}

::-webkit-input-placeholder {
  color: #d6d6d6;
  font-weight: bold;
}

::placeholder {
  color: #d6d6d6;
  font-weight: bold;
}

@media (min-width: 751px) {
  .c-table__text.text80 {
    width: 80%;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-table__text.text80 {
    width: 50%;
  }
}

@media (max-width: 750px) {
  .c-table__text.text80 {
    width: 100%;
  }
}

@media (min-width: 751px) {
  .c-table__text.text30 {
    width: 30%;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-table__text.text30 {
    width: 50%;
  }
}

@media (max-width: 750px) {
  .c-table__text.text30 {
    width: 50%;
  }
}

.c-table__textArea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 751px) {
  .c-table__textArea {
    padding: 20px 30px;
    min-height: 250px;
  }
}

@media (max-width: 750px) {
  .c-table__textArea {
    padding: 20px;
  }
}

.c-table__textArea::-webkit-input-placeholder {
  color: #d6d6d6;
}

.c-table__textArea::placeholder {
  color: #d6d6d6;
}

@media (min-width: 751px) {
  .c-table__textArea.text80 {
    width: 80%;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-table__textArea.text80 {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .c-table__textArea.text80 {
    width: 100%;
    min-height: 335px;
  }
}

.c-table__bottom th {
  vertical-align: top;
  padding-top: 26px;
}

@media (min-width: 751px) {
  .c-table__bottom td {
    padding-bottom: 50px;
  }
}

@media (max-width: 750px) {
  .c-table__bottom td {
    padding-bottom: 20px;
  }
}

.c-table__attention {
  font-size: 10px;
  color: #f2c523;
  vertical-align: top;
  margin-left: 3px;
}

/*
  さらに詳しく絞り込むフォームテーブル　th幅135px
ーーーーーーーーーーーーーーーーーー*/
.thsmall.c-table th {
  background: #192d4a;
  color: #ffffff;
  text-align: left;
  font-weight: 500;
  position: relative;
}

@media (min-width: 751px) {
  .thsmall.c-table th {
    width: 14%;
    padding: 10px 40px;
    font-size: 16px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .thsmall.c-table th {
    width: 25%;
    padding: 10px 40px;
  }
}

@media (max-width: 750px) {
  .thsmall.c-table th {
    display: block;
    width: 100%;
    padding: 20px 30px;
  }
}

.c-tableInnerList.-threeColumn {
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 751px) {
  .c-tableInnerList.-threeColumn > li {
    margin-right: 50px;
  }
}

@media (max-width: 750px) {
  .c-tableInnerList.-threeColumn > li {
    margin-right: 20px;
  }
}

.c-radio {
  display: none;
}

.c-radio + span {
  position: relative;
  display: block;
  padding-left: 29px;
  line-height: 19px;
}

.c-radio + span:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  box-sizing: border-box;
  border-radius: 50%;
  transition: background 0.2s;
}

.c-radio + span:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #ffffff;
  box-sizing: border-box;
  border-radius: 50%;
  transition: background 0.2s;
}

.c-radio:checked + span:after {
  background: #192d4a;
}

.c-select__outer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media (max-width: 750px) {
  .c-select__outer {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.c-select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  border: none;
  outline: none;
  height: 45px;
  padding: 0 0 0 20px;
  cursor: pointer;
  color: #000000;
  font-size: 13px;
}

@media (min-width: 751px) {
  .c-select {
    width: 156px;
  }
}

@media (max-width: 750px) {
  .c-select {
    width: 100%;
  }
}

@media (min-width: 751px) {
  .c-select-prefectures {
    padding-left: 30px;
  }
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
          appearance: none;
}

.c-selectWrap {
  position: relative;
  display: inline-block;
  background: #ffffff;
}

@media (max-width: 750px) {
  .c-selectWrap {
    width: 45%;
  }
}

.c-selectWrap::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 15px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

.c-select__line {
  font-size: 16px;
}

@media (min-width: 751px) {
  .c-select__line {
    margin: 0 16px;
  }
}

@media (max-width: 750px) {
  .c-select__line {
    margin: 0 12px;
  }
}

.c-tableInnerList.-fiveColumn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13px;
}

@media (min-width: 751px) {
  .c-tableInnerList.-fiveColumn li {
    width: 20%;
  }
}

@media (max-width: 750px) {
  .c-tableInnerList.-fiveColumn li {
    width: 50%;
    margin-bottom: 10px;
  }
}

.c-calendarWrap {
  background: url(../images/common/icon_calendar.png) no-repeat right 12px center/32px #ffffff;
}

.c-calendar {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  height: 50px;
  width: 244px;
}

@media (min-width: 751px) {
  .c-calendar {
    padding-left: 30px;
  }
}

@media (max-width: 750px) {
  .c-calendar {
    padding-left: 20px;
  }
}

.c-tableInnerList__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 18px;
}

.c-linkPrevLabel {
  width: 18px;
  margin-right: 12px;
}

.c-linkPrevLabel .c-tableInnerList__text {
  padding-left: 18px;
}

.c-linkPrevLabel + a {
  padding: 2px 0 3px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 750px) {
  .c-linkPrevLabel + a {
    font-size: 10px;
  }
}

/*
  見出し類
ーーーーーーーーーーーーーーーーーー*/
.c-mainTtl {
  text-align: center;
}

@media (min-width: 751px) {
  .c-mainTtl {
    margin-bottom: 80px;
  }
}

@media (max-width: 750px) {
  .c-mainTtl {
    margin-bottom: 40px;
  }
}

.c-mainTtl__main {
  line-height: 43px;
  letter-spacing: 1px;
  font-family: baskerville-urw, serif;
  font-weight: 400;
  font-style: normal;
  color: #192d4a;
}

@media (min-width: 751px) {
  .c-mainTtl__main {
    font-size: 36px;
    margin-bottom: 16px;
  }
}

@media (max-width: 750px) {
  .c-mainTtl__main {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.c-mainTtl__sub {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}

@media (min-width: 751px) {
  .c-mainTtl__sub {
    font-size: 13px;
  }
}

@media (max-width: 750px) {
  .c-mainTtl__sub {
    font-size: 10px;
  }
}

.c-revTtl {
  background-color: #192d4a;
  text-align: center;
}

@media (min-width: 751px) {
  .c-revTtl {
    padding: 80px 0 75px;
  }
}

@media (max-width: 750px) {
  .c-revTtl {
    padding: 30px 0 40px;
  }
}

.c-revTtl__main {
  line-height: 43px;
  letter-spacing: 1px;
  font-family: baskerville-urw, serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}

@media (min-width: 751px) {
  .c-revTtl__main {
    font-size: 36px;
    margin-bottom: 16px;
  }
}

@media (max-width: 750px) {
  .c-revTtl__main {
    font-size: 26px;
    margin-bottom: 2px;
  }
}

.c-revTtl__sub {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}

@media (min-width: 751px) {
  .c-revTtl__sub {
    font-size: 13px;
  }
}

@media (max-width: 750px) {
  .c-revTtl__sub {
    font-size: 11px;
  }
}

.c-contsTtl {
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  color: #192d4a;
  margin-bottom: 30px;
}

@media (min-width: 751px) {
  .c-contsTtl {
    font-size: 24px;
  }
}

@media (max-width: 750px) {
  .c-contsTtl {
    font-size: 18px;
  }
}

.c-contsTtl__sub {
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  color: #192d4a;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (min-width: 751px) {
  .c-contsTtl__sub {
    font-size: 18px;
  }
}

@media (max-width: 750px) {
  .c-contsTtl__sub {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.c-hospitalityTtl {
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 3px;
  color: #00316c;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 40px;
}

@media (min-width: 751px) {
  .c-hospitalityTtl {
    height: 60px;
    font-size: 24px;
    line-height: 35px;
    background: url(../images/common/c-hospitalityTtl.png) no-repeat 0/60px;
    padding: 0 0 0 68px;
  }
}

@media (max-width: 750px) {
  .c-hospitalityTtl {
    height: 45px;
    font-size: 18px;
    line-height: 26px;
    background: url(../images/common/c-hospitalityTtl.png) no-repeat 0/45px;
    padding: 0 0 0 54px;
  }
}

/*
  ページャー
ーーーーーーーーーーーーーーーーーー*/
.c-listNav__pager {
  width: 28%;
  margin: 70px auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.c-listNav__pagerItem a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 40px;
  height: 40px;
  background: #f3f3f3;
  color: #192d4a;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 4px;
  transition: 0.3s ease-out;
}

.pager-current a {
  background: #192d4a;
  color: #ffffff;
  transition: 0.3s ease-out;
  opacity: 1 !important;
}

.c-listNav__pagerItem a:hover {
  background: #192d4a;
  color: #ffffff;
}

.pager-arrow__prev a {
  position: relative;
  transition: 0.3s ease-out;
}

.pager-arrow__prev a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-bottom: 1px solid #192d4a;
  border-right: 1px solid #192d4a;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-left: -1px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
}

.pager-arrow__prev a:hover::before {
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.pager-arrow__next a {
  position: relative;
}

.pager-arrow__next a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-bottom: 1px solid #192d4a;
  border-right: 1px solid #192d4a;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: -5px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
}

.pager-arrow__next a:hover::before {
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
@media (max-width: 750px) {
  .c-listNav__pager {
    width: 100%;
    flex-wrap: wrap;
  }
  .c-listNav__pagerItem a {
    margin-bottom: 3px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  コンポーネントスタイル


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  入力ステータス
ーーーーーーーーーーーーーーーーーー*/
.c-inputState__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

@media (min-width: 751px) {
  .c-inputState__wrap {
    margin: 0 auto 80px;
  }
}

@media (max-width: 750px) {
  .c-inputState__wrap {
    margin: 0 auto 50px;
  }
}

.c-inputState__circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6d6d6;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.c-inputState__circle.inputState-current {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #192d4a;
  position: relative;
  margin-bottom: 8px;
  margin-left: 0;
  margin-top: 0;
  background: #ffffff;
}

.c-inputState__circle.inputState-current::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #192d4a;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -5px;
}

.c-inputState__line {
  width: 60px;
  height: 1px;
  background: #d6d6d6;
  margin: 15px 12px;
}

/*
  物件リスト.
ーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .c-list__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media (max-width: 750px) {
  .c-list__wrap {
    display: block;
  }
}

.c-list {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom:10px;
}
.c-list .c-prptyCard__body
{
    position:relative;
}
@media (min-width: 751px) {
  .c-list {
    width: 49%;
    margin-bottom: 40px;
    min-height:673px;
  }
}

@media (max-width: 750px) {
  .c-list {
    width: 100%;
    margin-bottom: 20px;
  }
}

.c-list a {
  background:none !important;
  padding: 0 !important;
  display: inline-block;
  color: #000000;
  opacity: 1 !important;
  transition: background 0.3s;
}

.c-list a:hover {
  background: rgba(238, 242, 245, 0.8);
}

.c-list__img {
  width: 100%;
  display: block;
  margin: 12px auto;
}

.c-list__img,
.c-prptyCard__body > * {
  transition: opacity 0.3s;
}

.c-list a:hover .c-list__img,
.c-list a:hover .c-prptyCard__body > * {
  opacity: 0.8;
}

.c-list__text {
  line-height: 1.4;
  color: #000000;
  margin-bottom: 16px;
  word-break:break-all;
}

.c-list__category {
  background: #0a2c50;
  color: #ffffff;
  padding: 6px 15px;
  display: inline-block;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 8px;
}

  .c-list__category
  {
    position:absolute;
    top:0;
    right:0;
  }
@media (min-width: 751px) {
  .c-list__category {
    font-size: 13px;
  }
}

@media (max-width: 750px) {
  .c-list__category {
    font-size: 8px;
  }
}

.c-list__price {
  color: #192d4a;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

@media (min-width: 751px) {
  .c-list__price {
    font-size: 44px;
  }
}

@media (max-width: 750px) {
  .c-list__price {
    font-size: 38px;
  }
}

.c-price__en {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 15px;
  color: #000000;
}

.c-list__station {
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 500;
}

.c-list__textDetail {
  font-size: 13px;
  line-height: 1.4;
}

.c-list__check .c-list-check__text {
  color: #192d4a;
  display: inline-block;
  transition: opacity 0.3s;
  cursor: pointer;
}

.c-list__check .c-list-check__text:hover {
  opacity: 0.8;
}

.c-list__btnWrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 20px;
  opacity: 1 !important;
}

@media (min-width: 751px) {
  .c-list__btnWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: flex-end;
  }
}

@media (max-width: 750px) {
  .c-list__btnWrap {
    display: block;
  }
}

.c-list__btn {
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: opacity 0.3s;
}

@media (min-width: 751px) {
  .c-list__btn {
    width: 30%;
    height: 60px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-list__btn {
    font-size: 11px;
  }
}

@media (max-width: 750px) {
  .c-list__btn {
    width: 50%;
    height: 60px;
    margin-bottom: 10px;
    font-size: 13px;
    margin-left: auto !important;
  }
}

.c-list__btn:hover {
  opacity: 0.8;
}

.c-list__btnFavorite {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
  background-color: #68c8e4;
  font-size: 13px;
}

@media (max-width: 750px) {
  .c-list__btnFavorite {
    margin-bottom: 10px;
  }
}

.c-list__viewDetail {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
  color: #192d4a;
  position: relative;
  font-size: 13px;
  height:30px;
}

.c-list__viewDetail::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 20px;
  border-bottom: 1px solid #192d4a;
  border-right: 1px solid #192d4a;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-list__star {
  width: 18px;
  margin-right: 4px;
}

.property-info-item {
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #696969;
}

.property-info-item:last-child {
}

.property-info-title, .property-info-txt {
  float: left;
}

.property-info-title {
  width: 23%;
}

.property-info-title::before {
  content: '■';
}

.property-info-txt {
  min-width: 27%;
}
.cf:after	{ content: "" !important; display: block !important; clear: both !important; height: 0 !important; visibility: hidden !important; }
/*
 ログイン関連
ーーーーーーーーーーーーーーーーーー*/
.c-membership__inner {
  background: #f3f3f3;
  margin: 0 auto 50px;
  font-size: 13px;
}

@media (min-width: 751px) {
  .c-membership__inner {
    padding: 60px 100px;
    width: 70%;
    max-width: 910px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-membership__inner {
    padding: 60px 70px 50px;
    width: 80%;
  }
}

@media (max-width: 750px) {
  .c-membership__inner {
    padding: 40px 20px;
    width: 90%;
  }
}

.c-membership__info {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 500;
}

.c-membership__input {
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 751px) {
  .c-membership__input {
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 750px) {
  .c-membership__input {
    display: block;
  }
}

.c-membership__ttl {
  background: #192d4a;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 500;
}

@media (min-width: 751px) {
  .c-membership__ttl {
    width: 30%;
  }
}

@media (max-width: 750px) {
  .c-membership__ttl {
    width: 100%;
    height: 50px;
  }
}

.c-membership__action {
  background: #ffffff;
}

@media (min-width: 751px) {
  .c-membership__action {
    width: 70%;
  }
}

@media (max-width: 750px) {
  .c-membership__action {
    width: 100%;
  }
}

.c-membership__action .c-table__text {
  width: 100%;
}

.c-membership__num {
  font-size: 10px;
  text-align: right;
  margin-bottom: 20px;
}

.c-membership__validation {
  text-align: center;
}

/*
  フォーム下　プライバシーポリシー
ーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .sec-privacy {
    width: calc(100% - 100px);
    max-width: 894px;
    margin: 80px auto 0;
  }
}

@media (max-width: 750px) {
  .sec-privacy {
    width: calc(100% - 40px);
    margin: 66px auto 0;
  }
}

.c-secInner {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 751px) {
  .c-secInner {
    margin-bottom: 50px;
  }
}

@media (max-width: 750px) {
  .c-secInner {
    margin-bottom: 30px;
  }
}

.c-privacy {
  background: #f3f3f3;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 751px) {
  .c-privacy__inner {
    padding: 50px 30px 50px 50px;
    height: 330px;
  }
}

@media (max-width: 750px) {
  .c-privacy__inner {
    padding: 30px 20px 0;
    height: 420px;
    overflow-y: scroll;
    margin-right: 10px;
    margin-top: 10px;
  }
}

.c-privacy__ttl {
  margin-bottom: 30px;
  display: block;
}

.c-privacy__headText {
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  max-width: 90%;
}

@media (min-width: 751px) {
  .c-privacy__headText {
    margin: 0 auto 50px;
  }
}

@media (max-width: 750px) {
  .c-privacy__headText {
    margin: 0 auto 30px;
  }
}

.c-privacy__text {
  font-size: 13px;
  line-height: 1.38;
}

.mCSB_scrollTools {
  opacity: 1 !important;
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #666666;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 10px;
  height: 10px;
  background-color: #192d4a !important;
  margin-left: 3px;
}

.c-privacy__inner::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 2px;
}

.c-privacy__inner::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

@media (max-width: 750px) {
  .mCSB_draggerContainer {
    display: none;
  }
}

@media (max-width: 750px) {
  .mCSB_inside > .mCSB_container {
    margin-right: 10px;
  }
}

.mCSB_scrollTools .mCSB_dragger {
  height: 10px !important;
}

.c-privacy__check {
  margin: 0 auto 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

@media (max-width: 750px) {
  .c-privacy__check {
    padding-top: 50px;
  }
}

.c-privacy__checkText {
  cursor: pointer;
}

/*
  ムービーバナー
ーーーーーーーーーーーーーーーーーー*/
.c-movieBnr {
  width: 100%;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%), #ededed;

}

.c-movieBnr__inner {
  width: calc(100% - 80px);
  max-width: 1186px;
  margin: 0 auto;
}

@media (min-width: 751px) {
  .c-movieBnr__inner {
    padding: 90px 0 20px;
  }
}

.c-movieBnr__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

@media (min-width: 751px) {
  .c-movieBnr__item {
    width: 24.5%;
    margin-bottom: 70px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .c-movieBnr__item {
    width: 49%;
    margin-bottom: 50px;
  }
}

@media (max-width: 750px) {
  .c-movieBnr__item {
    width: 100%;
    margin-bottom: 40px;
  }
}

.c-movieBnr__img {
  margin-bottom: 15px;
}

.c-movieBnr__text {
  font-size: 16px;
  color: #192d4a;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.c-movieBnr__textNum {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #000000;
}

.slick-movieBtn-prev {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
  position: absolute;
  left: -30px;
  top: 30%;
  width: 20px;
  height: 20px;
  z-index: 8;
  border: none;
  border-radius: 50%;
  background-color: #192d4a;
}

.slick-movieBtn-next {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
  position: absolute;
  right: -30px;
  top: 30%;
  width: 20px;
  height: 20px;
  z-index: 8;
  border: none;
  border-radius: 50%;
  background-color: #192d4a;
}

.c-slick-movieBtn.-prev {
  position: relative;
}

.c-slick-movieBtn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  width: 4px;
  height: 4px;
}

.c-slick-movieBtn.-prev::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: -2px;
  margin-left: -1px;
}

.c-slick-movieBtn.-next::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(-45deg);
  margin-top: -2px;
  margin-left: -3px;
}

.c-lead {
  font-weight: 500;
  color: #192d4a;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 751px) {
  .c-lead {
    margin-bottom: 40px;
    font-size: 16px;
  }
}

@media (max-width: 750px) {
  .c-lead {
    margin-bottom: 34px;
    font-size: 13px;
  }
}

.c-property-list {
  width: calc(100% - 40px);
  max-width: 1186px;
  margin-right: auto;
  margin-left: auto;
}

.c-property-list__item {
  position: relative;
  background: #eef2f5;
}

@media (min-width: 751px) {
  .c-property-list__item {
    display: -ms-flexbox;
    display: flex;
    padding: 20px 20px 20px 50px;
  }
}

@media (max-width: 750px) {
  .c-property-list__item {
    padding: 65px 20px 32px;
  }
}

@media (min-width: 751px) {
  .c-property-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {
  .c-property-list__item:not(:last-child) {
    margin-bottom: 18px;
  }
}

.c-property-list__check {
  position: absolute;
  left: 20px;
}

@media (min-width: 751px) {
  .c-property-list__check {
    top: 20px;
  }
}

@media (max-width: 750px) {
  .c-property-list__check {
    top: 25px;
  }
}

@media (max-width: 750px) {
  .c-property-list__check .c-checkbox + span::before {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 750px) {
  .c-property-list__check .c-checkbox:checked + span::after {
    top: 9px;
    left: 9px;
    width: 12px;
    height: 7px;
  }
}

.c-property-list__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

@media (min-width: 751px) {
  .c-property-list__image {
    max-width: 210px;
    height: 140px;
  }
}

@media (max-width: 750px) {
  .c-property-list__image {
    margin-bottom: 20px;
  }
}

.c-property-list__image:before {
  content: "";
  display: block;
  padding-top: 66.67%;
}

.c-property-list__image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

@media (min-width: 751px) {
  .c-property-list__conts {
    width: 100%;
    margin-left: 18px;
    margin-right: 24px;
  }
}

@media (max-width: 750px) {
  .c-property-list__conts {
    margin-bottom: 24px;
  }
}

.c-property-list__contsHead {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: flex-end;
  border-bottom: 1px solid #818181;
}

@media (min-width: 751px) {
  .c-property-list__contsHead {
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
}

@media (max-width: 750px) {
  .c-property-list__contsHead {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}

.c-property-list__contsTtl {
  font-weight: bold;
  font-size: 13px;
  color: #192d4a;
}

.c-property-list__contsDay {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 751px) {
  .c-property-list__contsDay {
    font-size: 10px;
  }
}

@media (min-width: 751px) {
  .c-property-list__contsBody {
    display: -ms-flexbox;
    display: flex;
  }
}

.c-property-list__category {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 120px;
  height: 30px;
  font-weight: bold;
  font-size: 13px;
  background: #192d4a;
  color: #ffffff;
  letter-spacing: 1px;
}

@media (min-width: 751px) {
  .c-property-list__category {
    margin-right: 14px;
  }
}

@media (max-width: 750px) {
  .c-property-list__category {
    margin-bottom: 8px;
  }
}

.c-property-list__price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
}

@media (min-width: 751px) {
  .c-property-list__price {
    margin-bottom: 12px;
  }
}

@media (max-width: 750px) {
  .c-property-list__price {
    margin-bottom: 8px;
  }
}

.c-property-list__priceMain {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
  color: #192d4a;
  margin-right: 3px;
  letter-spacing: -1px;
}

@media (min-width: 751px) {
  .c-property-list__priceMain {
    font-size: 28px;
  }
}

@media (max-width: 750px) {
  .c-property-list__priceMain {
    font-size: 38px;
  }
}

.c-property-list__priceSub {
  position: relative;
  bottom: 4px;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 750px) {
  .c-property-list__priceSub {
    font-weight: bold;
  }
}

.c-property-list__station {
  margin-bottom: 8px;
  font-size: 13px;
}

@media (min-width: 751px) {
  .c-property-list__station {
    font-weight: bold;
  }
}

@media (max-width: 750px) {
  .c-property-list__station {
    font-weight: 500;
  }
}

.c-property-list__text {
  line-height: 1.5;
  font-size: 13px;
}

@media (min-width: 751px) {
  .c-property-list__foot {
    -ms-flex: none;
        flex: none;
    width: 214px;
    margin-left: auto;
  }
}

@media (max-width: 750px) {
  .c-property-list__foot {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}

.c-property-list__foot > div {
  width: 100%;
  transition: opacity 0.3s;
}

@media (min-width: 751px) {
  .c-property-list__foot > div {
    height: 44px;
  }
}

@media (max-width: 750px) {
  .c-property-list__foot > div {
    height: 60px;
  }
}

.c-property-list__foot > div:hover {
  opacity: 0.8;
}

@media (min-width: 751px) {
  .c-property-list__foot > div:not(:last-child) {
    margin-bottom: 5px;
  }
}

@media (max-width: 750px) {
  .c-property-list__foot > div:not(:last-child) {
    margin-top: 10px;
  }
}

.c-property-list__foot > div > button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  color: #ffffff;
}

.c-property-list__foot > div > a,
.c-property-list__foot > div > button {
  height: 100%;
  font-size: 13px;
}

.c-property-list__btn.-doc {
  width: 100%;
}

.c-property-list__foot.-two {
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 751px) {
  .c-property-list__foot.-two {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media (min-width: 751px) {
  .c-property-list__foot.-two > div {
    height: 62px;
  }
}

.c-bnr__mirakare a {
  display: block;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  コンポーネントスタイル 2


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  物件情報
ーーーーーーーーーーーーーーーーーー*/
/* 物件情報 */
.c-prptyCard a {
  display: block;
  height: 100%;
  background: #eef2f5;
}

@media (min-width: 1024px) {
  .c-prptyCard a {
    padding: 40px 40px 32px;
  }
}

@media (max-width: 1023px) {
  .c-prptyCard a {
    padding: 32px 20px;
  }
}

.c-prptyCard__head {
  position: relative;
  margin-bottom: 16px;
}

.c-prptyCard__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.c-prptyCard__image::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}

.c-prptyCard__image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(1, 1);
          transform: translate3d(0, 0, 0) scale(1, 1);
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.c-prptyCard a:hover .c-prptyCard__image img {
  -webkit-transform: translate3d(0, 0, 0) scale(1.05, 1.05);
          transform: translate3d(0, 0, 0) scale(1.05, 1.05);
}

@media (min-width: 1024px) {
  .c-prptyCard__info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
        align-items: flex-end;
    margin-bottom: 10px;
  }
}

@media (max-width: 1023px) {
  .c-prptyCard__info {
    position: relative;
    margin-bottom: 12px;
  }
}

.c-prptyCard__cat {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 12px;
  background: #192d4a;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #ffffff;
}

@media (max-width: 1023px) {
  .c-prptyCard__cat {
    margin-bottom: 10px;
  }
}

.c-prptyCard__cat.-s {
  width: 100px;
  height: 25px;
}

.c-prptyCard__cat.-l {
  width: 120px;
  height: 30px;
}

.c-prptyCard__memberOnly {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100px;
  height: 28px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: bold;
  z-index: 10;
  margin: 0 0 -28px auto;
  pointer-events: none;
}

.c-prptyCard__iconWrap {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  top:0;
  left:0;
}

.c-prptyCard__icon {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 30px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: bold;
  z-index: 10;
  pointer-events: none;
  background: #000;
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 600;
  font-style: normal;
  padding:0 10px;
}

.c-prptyCard__icon.-news {
  background-color: #FF9595;
  color: #FFFFFF;
}

.c-prptyCard__icon.-precedown {
  background-color: #FFFFFF;
  border:1px solid #FF9595;
  color: #FF9595;
}

.no-portal-icon {
  position: absolute;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: bold;
  z-index: 10;
  pointer-events: none;
  background: #000;
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 600;
  font-style: normal;
  padding:0 10px;
  background-color: #FFAF69;
  color: #FFFFFF;
  bottom:0;
  right:0;
}

@media (max-width: 750px) {
  .home-newArvl__contsHead .c-prptyCard__icon {
  }
}

@media (min-width: 1024px) {
  .c-prptyCard__price {
    margin-bottom: 16px;
  }
}

@media (max-width: 1023px) {
  .c-prptyCard__price {
    margin-bottom: 12px;
  }
}

.c-prptyCard__priceMain {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
  font-size: 44px;
}

.c-prptyCard__priceSub {
  font-weight: bold;
  font-size: 16px;
  margin-left: 3px;
}

.c-prptyCard__day {
  margin-left: auto;
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1023px) {
  .c-prptyCard__day {
    position: absolute;
    top: 22px;
    right: 0;
  }
}

.c-prptyCard__name {
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
}

.c-prptyCard__text {
  font-size: 13px;
  line-height: 1.8;
}

.c-prptyCardLink {
  width: calc(100% - 60px);
  max-width: 1186px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 751px) {
  .c-prptyCardLink {
    margin: auto;
  }
}

.c-prptyCardLink .c-link__href {
  margin-left: auto;
}

/* 物件情報 */
.c-prptyCardList {
  margin: auto;
}

@media (min-width: 751px) {
  .c-prptyCardList {
    width: calc(100% - 160px);
    max-width: 1186px;
  }
}

@media (max-width: 750px) {
  .c-prptyCardList {
    width: calc(100% - 40px);
  }
}

/* 物件情報 小 */
@media (min-width: 751px) {
  .c-prptyCardList.-sm .c-prptyCard {
    margin-right: 7px;
  }
}

@media (min-width: 751px) {
  .c-prptyCardList.-sm .c-prptyCard a {
    padding: 20px;
  }
}

@media (max-width: 750px) {
  .c-prptyCardList.-sm .c-prptyCard a {
    padding: 28px 18px;
  }
}

.c-prptyCardList.-sm .c-prptyCard__price {
  margin-bottom: 9px;
}

@media (max-width: 750px) {
  .c-prptyCardList.-sm .c-prptyCard__priceMain {
    font-size: 38px;
  }
}

/* 物件情報 矢印 */
.c-prptyCardList .c-btnArrow {
  position: absolute;
  z-index: 2;
}

@media (min-width: 751px) {
  .c-prptyCardList .c-btnArrow {
    top: 50%;
  }
}

@media (max-width: 750px) {
  .c-prptyCardList .c-btnArrow {
    top: calc(28vw + 10px);
  }
}

@media (min-width: 751px) {
  .c-prptyCardList .arrow-next {
    right: -60px;
  }
}

@media (max-width: 750px) {
  .c-prptyCardList .arrow-next {
    right: -15px;
  }
}

@media (min-width: 751px) {
  .c-prptyCardList .arrow-prev {
    left: -60px;
  }
}

@media (max-width: 750px) {
  .c-prptyCardList .arrow-prev {
    left: -15px;
  }
}

.c-prptyCard__Registration
{
    padding-top: 12px;
    padding-bottom: 13px;
    color: #192d4a;
}
.c-list__categoryRegistration
{
    background-color:#5E96DB;
    color:#FFFFFF;
    width: 95px;
    margin-left:auto;
    font-size: 13px;
    padding: 6px 15px;
    font-weight: 500;
    margin-bottom: 8px;
}
.c-list__textRegistration
{
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 500;
    line-height:1.5;
}
.c-list__btnRegistration
{
    border:0;
    color:#192d4a;
    background-color:#D8F0FE;
    width:calc(100% - 10%);
    text-align:center;
    font-size: 18px;
    font-weight: 500;
    padding:10px 0;
    margin:0 auto;
    cursor:pointer;
    display: block;
}
@media (max-width: 750px) {
  .c-prptyCard__Registration
  {
      padding-top: 8px;
      padding-bottom: 9px;
      color: #192d4a;
  }
  .c-list__categoryRegistration
  {
    width: 80px;
    font-size: 8px;
  }
  .c-list__textRegistration
  {
    font-size: 13px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ローディングアニメーション


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  ローディングアニメーション
ーーーーーーーーーーーーーーーーーー*/
.home .header {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  transition: background 0.4s, -webkit-transform 0.3s cubic-bezier(0.3, 0.58, 0.05, 0.98);
  transition: transform 0.3s cubic-bezier(0.3, 0.58, 0.05, 0.98), background 0.4s;
  transition: transform 0.3s cubic-bezier(0.3, 0.58, 0.05, 0.98), background 0.4s, -webkit-transform 0.3s cubic-bezier(0.3, 0.58, 0.05, 0.98);
}

.header.is-show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.home .floatBtn {
  transition: -webkit-transform 0.3s cubic-bezier(0.3, 0.58, 0.05, 0.98);
  transition: transform 0.3s cubic-bezier(0.3, 0.58, 0.05, 0.98);
  transition: transform 0.3s cubic-bezier(0.3, 0.58, 0.05, 0.98), -webkit-transform 0.3s cubic-bezier(0.3, 0.58, 0.05, 0.98);
}

@media (min-width: 1024px) {
  .home .floatBtn {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@media (max-width: 1023px) {
  .home .floatBtn {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.floatBtn.is-show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.kvSlider {
  opacity: 0;
  transition: opacity 1.2s;
}

.kvSlider.is-show {
  opacity: 1;
}

.kv__img {
  opacity: 0;
}

.kv__ttl {
  opacity: 0;
  -webkit-transform: translate3d(0, 18px, 0);
          transform: translate3d(0, 18px, 0);
  transition: 0.4s cubic-bezier(0.3, 0.58, 0.05, 0.98);
}

.kv__ttl.is-show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.kv__logo {
  opacity: 0;
  -webkit-transform: translate3d(0, 12px, 0);
          transform: translate3d(0, 12px, 0);
  transition: 0.4s cubic-bezier(0.3, 0.58, 0.05, 0.98);
}

.kv__logo.is-show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media (min-width: 1024px) {
  .kvNews {
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .kvCount {
    opacity: 0;
  }
}

.kvScroll {
  opacity: 0;
  transition: opacity 0.2s;
}

.kvNews.is-show {
  opacity: 1;
  transition: opacity 0.3s;
}

.kvCount.is-show {
  opacity: 1;
  transition: opacity 0.3s;
}

.kvScroll.is-show {
  opacity: 1;
}

/*
  スライダー
ーーーーーーーーーーーーーーーーーー*/
.kvSlider .slick-list,
.kvSlider .slick-track {
  height: 100%;
}

.kvSlider__img {
  height: 100%;
}

.kvSlider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  pointer-events: none;
  transition: -webkit-transform 10s linear;
  transition: transform 10s linear;
  transition: transform 10s linear, -webkit-transform 10s linear;
}

.kvSlider .slick-slide img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.kvSlider .slick-slide.is-zoomOut img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.kvSlider .slick-slide.is-first img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  transition: -webkit-transform 0s linear;
  transition: transform 0s linear;
  transition: transform 0s linear, -webkit-transform 0s linear;
}

.kvSlider .slick-slide.is-first.is-zoomOut img {
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 10s linear;
  transition: transform 10s linear;
  transition: transform 10s linear, -webkit-transform 10s linear;
}

/*
  出現アニメーション
ーーーーーーーーーーーーーーーーーー*/
/*
 fadeIn-anime：その場で透過度が1になり表示される
 slideUp-anime：fadeIn-animeに上方向への移動が追加されている
*/
.fadeIn-anime {
  opacity: 0;
  transition: opacity 1.2s;
}

.fadeIn-anime.is-anime {
  opacity: 1;
}

.slideUp-anime {
  opacity: 0;
  -webkit-transform: translateY(1vw);
          transform: translateY(1vw);
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
}

@media (max-width: 750px) {
  .slideUp-anime {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}

.slideUp-anime.is-anime {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*
  ・anime-no○
  リスト要素など、出現タイミングをずらしたい時に使用する
  PCでは横並びの要素もSPでは縦並びになるため、
  あえて別のクラスとしている
*/
@media (min-width: 751px) {
  .anime-no2 {
    transition-delay: 0.14s;
  }
  .anime-no3 {
    transition-delay: 0.21s;
  }
  .anime-no4 {
    transition-delay: 0.28s;
  }
  .anime-no5 {
    transition-delay: 0.35s;
  }
  .anime-no6 {
    transition-delay: 0.42s;
  }
  .anime-no7 {
    transition-delay: 0.49s;
  }
  .anime-no8 {
    transition-delay: 0.56s;
  }
  .anime-no9 {
    transition-delay: 0.63s;
  }
  .anime-no10 {
    transition-delay: 0.7s;
  }
}

@media (max-width: 750px) {
  .anime-no2-sp {
    transition-delay: 0.2s;
  }
  .anime-no3-sp {
    transition-delay: 0.3s;
  }
  .anime-no4-sp {
    transition-delay: 0.4s;
  }
  .anime-no5-sp {
    transition-delay: 0.5s;
  }
  .anime-no6-sp {
    transition-delay: 0.6s;
  }
  .anime-no7-sp {
    transition-delay: 0.7s;
  }
  .anime-no8-sp {
    transition-delay: 0.8s;
  }
  .anime-no9-sp {
    transition-delay: 0.9s;
  }
  .anime-no10-sp {
    transition-delay: 1s;
  }
}

/*
  テキストホバーアニメーション
ーーーーーーーーーーーーーーーーーー*/
.c-textLink-anime {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.c-textLink-anime::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #ffffff;
}

/*
  画像 マスクアニメーション
ーーーーーーーーーーーーーーーーーー*/
.home-service__image img {
  opacity: 0;
}

.mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.mask-white {
  background: #ffffff;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mask-blue {
  background: #00316c;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

/* マスクが被る */
.mask-white.is-mask-anime {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  transition-duration: 0.5s;
}

.mask-blue.is-mask-anime {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  transition-delay: 0.3s;
  transition-duration: 0.5s;
}

/* マスクが外れる */
.mask-white.is-mask-remove {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.mask-blue.is-mask-remove {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition-delay: 0s;
  transition-duration: 0.6s;
}

.home-service__image.is-anime img {
  opacity: 1;
  transition-delay: 0.7s;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
LAYOUT
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ヘッダースタイル


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  ヘッダー
ーーーーーーーーーーーーーーーーーー*/
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .header {
    height: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 1023px) {
  .header {
    height: 60px;
  }
}

.headerLogo {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

@media (min-width: 1024px) {
  .headerLogo {
    width: 300px;
    padding: 0 18px;
    margin-right: 4px;
  }
}

@media (max-width: 1023px) {
  .headerLogo {
    padding-left: 10px;
  }
}

@media (min-width: 1024px) {
  .headerLogo a {
    width: 210px;
  }
}

@media (max-width: 1023px) {
  .headerLogo a {
    width: 168px;
  }
}

/*
  ヘッダー ナビゲーション
ーーーーーーーーーーーーーーーーーー*/
.headerNav__list {
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1024px) {
  .headerNav__list {
    padding-right: 36px;
  }
}

@media (min-width: 1024px) {
  .headerNav__item:not(:last-child) {
    margin-right: 22px;
  }
}

.headerNav__link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  opacity: 1 !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 80px;
  padding: 0 3px;
  color: #192d4a;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}

.headerNav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #ffffff;
  transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.headerNav__link:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.headerNav__link::after {
  top: calc(50% + 10px);
  background: #192d4a;
}

/*
  ヘッダー 電話番号
ーーーーーーーーーーーーーーーーーー*/
.headerTel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #ffffff;
  color: #00316c;
  margin-left: auto;
  white-space: nowrap;
  padding-right: 40px;
  padding-top: 2px;
  transition: color 0.3s;
}

@media (max-width: 1100px) {
  .headerTel {
    display: none;
  }
}

.headerTel__link {
  padding: 2px 0 2px 16px;
  margin-right: 6px;
  color: #00316c;
  background: url(../images/common/icon_tel_line_blue.png) no-repeat left center/13px;
}

.headerTel__num {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  transition: color 0.3s;
}

.headerTel__text {
  font-size: 12px;
}

.headerTel__time {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
}

/*
  ヘッダー サブナビゲーション
ーーーーーーーーーーーーーーーーーー*/
.headerNavSub {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 50px;
  padding-left: 309px;
  background: #192d4a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.3s;
}

@media (max-width: 1023px) {
  .headerNavSub {
    display: none;
  }
}

.headerNavSub.is-show {
  opacity: 1;
  pointer-events: auto;
}

.headerNavSub__ttl {
  position: relative;
  padding-right: 26px;
  margin-right: 24px;
  color: #ffffff;
  font-size: 12px;
}

.headerNavSub__ttl::after {

  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 1px;
  height: 16px;
  background: #ffffff;
}

.headerNavSub__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media (min-width: 1024px) {
  .headerNavSub__item:not(:last-child) {
    margin-right: 28px;
  }
}

.headerNavSub__link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  opacity: 1 !important;
  display: block;
  padding: 5px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
}

.headerNavSub__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #ffffff;
  transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.headerNavSub__link:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  追従 フロートボタン
ーーーーーーーーーーーーーーーーーー*/
.floatBtn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
}

@media (max-width: 1023px) {
  .floatBtn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
}

.floatBtn__item button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.floatBtn__item button,
.floatBtn__item a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media (min-width: 1024px) {
  .floatBtn__item button,
  .floatBtn__item a {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 1023px) {
  .floatBtn__item button,
  .floatBtn__item a {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .floatBtn__icon {
    margin-bottom: 8px;
  }
}

@media (max-width: 1023px) {
  .floatBtn__icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    height: 22px;
    margin-bottom: 5px;
  }
}

.floatBtn__item.-menu button {
  background: #ffffff;
}

.floatBtn__item.-acount a {
  background: #00316c;
}

.floatBtn__item.-contact a {
  background: #192d4a;
}

.floatBtn__item.-registration a {
  background: #5e96db;
}
.floatBtn__item.-registration a img{
  max-width: 20px;
}

.floatBtn__item.-favo a {
  background: #68c8e4;
}

.floatBtn__item.-acount .floatBtn__icon {
  width: 16px;
}

.floatBtn__item.-contact .floatBtn__icon {
  width: 16px;
}

.floatBtn__item.-favo .floatBtn__icon {
  width: 23px;
}

.floatBtn__text {
  font-size: 10px;
  color: #ffffff;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .floatBtn__text {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.floatBtn__item.-menu .floatBtn__text {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
  color: #00316c;
}

@media (max-width: 1023px) {
  .floatBtn__item.-menu .floatBtn__text {
    position: absolute;
    bottom: 11px;
    font-size: 12px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.ie .floatBtn__icon {
  margin-bottom: -14px;
}

/*
  ハンバーガーボタン
ーーーーーーーーーーーーーーーーーー*/
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
}

@media (min-width: 1024px) {
  .menu-trigger {
    width: 21px;
    height: 15px;
    margin-bottom: 4px;
  }
}

@media (max-width: 1023px) {
  .menu-trigger {
    width: 16px;
    height: 11px;
    top: -5px;
  }
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #00316c;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

@media (min-width: 1024px) {
  .menu-trigger span:nth-of-type(2) {
    top: 7px;
  }
}

@media (max-width: 1023px) {
  .menu-trigger span:nth-of-type(2) {
    top: 5px;
  }
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.is-active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
          transform: translateY(4px) rotate(-45deg);
}

.is-active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

@media (min-width: 1024px) {
  .is-active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
  }
}

@media (max-width: 1023px) {
  .is-active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
  }
}

/*
  ヘッダー グローバルメニュー
ーーーーーーーーーーーーーーーーーー*/
.gMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: #ffffff;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.gMenu.is-show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .gMenu__inner {
    padding: 80px 0 60px;
  }
}

@media (max-width: 1023px) {
  .gMenu__inner {
    padding: 100px 0;
  }
}

.gMenu__headerLogo {
  position: fixed;
  z-index: 101;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .gMenu__headerLogo {
    height: 80px;
  }
}

@media (max-width: 1023px) {
  .gMenu__headerLogo {
    -ms-flex-pack: start;
        justify-content: start;
    width: 100%;
    height: 60px;
  }
}

/* ヘッダー グローバルメニューナビゲーション */
@media (min-width: 1024px) {
  .gMenuNavWrap {
    width: calc(100% - 60px);
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    padding-top: 86px;
    padding-bottom: 90px;
  }
}

@media (max-width: 1023px) {
  .gMenuNavWrap {
    width: calc(100% - 80px);
    margin: auto;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .gMenuNav {
    min-width: 248px;
  }
}

@media (min-width: 1024px) {
  .gMenuNav:not(:last-child) {
    margin-right: 90px;
  }
}

@media (max-width: 1023px) {
  .gMenuNav:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .gMenuNav__item:not(:last-child) {
    margin-bottom: 46px;
  }
}

@media (max-width: 1023px) {
  .gMenuNav__item:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .gMenuNav__item.-drawer {
    margin-bottom: 40px;
  }
}

@media (max-width: 1023px) {
  .gMenuNav__item.-drawer {
    margin-bottom: 26px;
  }
}

.gMenuNav__link {
  display: inline-block;
  color: #192d4a;
  font-weight: 500;
  font-size: 13px;
  transition: opacity 0.3s;
}

.gMenuNav__link:hover {
  opacity: 0.8;
}

.gMenuNav__link.-parent {
  position: relative;
}

@media (min-width: 1024px) {
  .gMenuNav__link.-parent {
    display: block;
    width: 124px;
    padding-bottom: 4px;
  }
}

@media (max-width: 1023px) {
  .gMenuNav__link.-parent {
    display: inline-block;
    padding-right: 16px;
    padding-bottom: 4px;
  }
}

.gMenuNav__link.-parent::before,
.gMenuNav__link.-parent::after {
  content: "";
  position: absolute;
  right: 0;
  background: #192d4a;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.gMenuNav__link.-parent::before {
  top: 6px;
  width: 11px;
  height: 1px;
}

.gMenuNav__link.-parent::after {
  top: 1px;
  right: 5px;
  width: 1px;
  height: 11px;
}

.gMenuNav__link.is-show.-parent::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.gMenuNav__text {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  opacity: 1 !important;
}

.gMenuNav__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #ffffff;
  transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.gMenuNav__text:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gMenuNav__text::after {
  background: #192d4a;
}

.gMenuNavSub {
  display: none;
}

@media (min-width: 1024px) {
  .gMenuNavSub {
    padding-top: 20px;
    padding-bottom: 6px;
  }
}

@media (max-width: 1023px) {
  .gMenuNavSub {
    padding-top: 20px;
    padding-bottom: 6px;
  }
}

@media (min-width: 1024px) {
  .gMenuNavSub__item:not(:last-child) {
    margin-bottom: 18px;
  }
}

@media (max-width: 1023px) {
  .gMenuNavSub__item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.gMenuNavSub__link {
  display: inline-block;
  padding: 2px 0;
  color: #000000;
  font-size: 13px;
  transition: opacity 0.3s;
}

.gMenuNavSub__link:hover {
  opacity: 0.8;
}

.gMenuNavSub__text {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  opacity: 1 !important;
}

.gMenuNavSub__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #ffffff;
  transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.gMenuNavSub__text:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gMenuNavSub__text::after {
  background: #000;
}

/* お気に入りボタン */
.gMenuFavo {
  margin: 0 20px 32px;
}

/* ヘッダー グローバルメニュー バナー */
@media (min-width: 1024px) {
  .gMenuFoot {
    width: calc(100% - 60px);
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .gMenuFoot__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .gMenuFoot__bnr {
    width: calc(50% - 5px);
  }
}

@media (max-width: 1023px) {
  .gMenuFoot__bnr:not(:last-child) {
    margin-bottom: 8px;
  }
}

.gMenuFoot__bnr a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media (min-width: 1024px) {
  .gMenuFoot__bnr a {
    height: 150px;
  }
}

@media (max-width: 1023px) {
  .gMenuFoot__bnr a {
    padding: 34px 0 38px;
  }
}

.gMenuFoot__bnr.-mail a {
  background: #00316c;
}

.gMenuFoot__bnr.-request a {
  background: #7ba0cd;
}

.gMenuFoot__bnrTtl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .gMenuFoot__bnrTtl {
    margin-bottom: 16px;
  }
}

@media (max-width: 1023px) {
  .gMenuFoot__bnrTtl {
    margin-bottom: 22px;
  }
}

.gMenuFoot__bnrTtl > img {
  margin-right: 8px;
}

.gMenuFoot__bnrTtl.-mail > img {
  width: 28px;
}

.gMenuFoot__bnrTtl.-request > img {
  width: 20px;
}

.gMenuFoot__bnrText {
  color: #ffffff;
  line-height: 2;
  font-size: 11px;
  margin-bottom: 18px;
  text-align: center;
}

.gMenuFoot__bnrBtn {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 224px;
  height: 48px;
  padding-bottom: 1px;
  background: #ffffff;
  font-size: 13px;
  color: #192d4a;
  letter-spacing: 1px;
}

.gMenuFoot__bnrBtn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border: 1px solid #192d4a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
  position: absolute;
  top: 21px;
  right: 21px;
}

@media (min-width: 1024px) {
  .gMenuFoot__bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media (max-width: 1023px) {
  .gMenuFoot__bottom {
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .gMenuFoot__bottomBtn {
    width: calc(33.3% - 7px);
  }
}

@media (max-width: 1023px) {
  .gMenuFoot__bottomBtn:not(:last-child) {
    margin-bottom: 8px;
  }
}

.gMenuFoot__bottomBtn a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 70px;
  padding-top: 2px;
  background: url(../images/common/icon_outerlink.png) no-repeat right 11px bottom 8px/14px #192d4a;
  color: #ffffff;
  transition: opacity 0.3s;
}

.gMenuFoot__bottomBtn a:hover {
  opacity: 0.8;
}

.gMenuFoot__bottomBtn.-logo a {
  padding-top: 4px;
}

.gMenuFoot__bottomBtn.-logo img {
  width: 192px;
}

.gMenuFoot__bottomMain {
  margin-bottom: 7px;
  font-weight: 500;
}

.gMenuFoot__bottomMain.-en {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
  letter-spacing: 3px;
  font-size: 16px;
}

.gMenuFoot__bottomSub {
  font-size: 10px;
}

/*
  ヘッダー - キーヴィジュアル上での白バージョン
ーーーーーーーーーーーーーーーーーー*/
.headerLogo__white {
  display: none;
}

@media (min-width: 1024px) {
  .header.is-white {
    background-color: rgba(255, 255, 255, 0);
  }
}

.header.is-white .headerNav__link {
  color: #ffffff;
}

.header.is-white .headerTel {
  color: #ffffff;
}

.header.is-white .headerTel__link {
  background-image: url(../images/common/icon_tel_line.png);
}

.header.is-white .headerTel__num {
  color: #ffffff;
}

.header.is-gMenu-show .headerNav__link,
.header.is-gMenu-show .headerTel,
.header.is-gMenu-show .headerTel__num {
  color: #192d4a;
}

.header.is-gMenu-show .headerTel__link {
  background-image: url(../images/common/icon_tel_line_blue.png);
}

.header.is-white .headerNavSub {
  background: #192d4a;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  フッタースタイル


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  フッター - バナー
ーーーーーーーーーーーーーーーーーー*/
.footerBnrWrap {
  margin-bottom: 70px;
}

@media (min-width: 1024px) {
  .footerBnrWrap {
    padding-top: 150px;
  }
}

@media (max-width: 1023px) {
  .footerBnrWrap {
    padding-top: 100px;
  }
}

@media (max-width: 1023px) {
  .footerBnr:not(:last-child) {
    margin-bottom: 8px;
  }
}

.footerBnr a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  transition: background 0.3s;
}

@media (min-width: 1024px) {
  .footerBnr a {
    padding: 64px 0 66px;
  }
}

@media (max-width: 1023px) {
  .footerBnr a {
    padding: 30px 0;
  }
}

.footerBnr:not(:last-child) {
  margin-bottom: 20px;
}

.footerBnr.-mail a {
  background: #00316c;
}

.footerBnr.-mail a:hover {
  background: rgba(0, 49, 108, 0.8);
}

.footerBnr.-request a {
  background: #7ba0cd;
}

.footerBnr.-request a:hover {
  background: rgba(123, 160, 205, 0.8);
}

.footerBnrTtl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .footerBnrTtl {
    font-size: 28px;
    margin-bottom: 26px;
  }
}

@media (max-width: 1023px) {
  .footerBnrTtl {
    margin-bottom: 14px;
  }
}

.footerBnrTtl > img {
  margin-right: 8px;
}

.footerBnrTtl.-mail > img {
  width: 28px;
}

.footerBnrTtl.-request > img {
  width: 20px;
}

.footerBnrText {
  color: #ffffff;
  line-height: 2;
  letter-spacing: 3px;
  text-align: center;
}

@media (min-width: 1024px) {
  .footerBnrText {
    margin-bottom: 26px;
    font-size: 15px;
  }
}

@media (max-width: 1023px) {
  .footerBnrText {
    margin-bottom: 16px;
    font-size: 13px;
  }
}

.footerBnrBtn {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding-bottom: 1px;
  background: #ffffff;
  color: #192d4a;
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .footerBnrBtn {
    width: 280px;
    height: 60px;
  }
}

@media (max-width: 1023px) {
  .footerBnrBtn {
    width: 224px;
    height: 48px;
    font-size: 13px;
  }
}

.footerBnrBtn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border: 1px solid #192d4a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: 21px;
}

@media (min-width: 1024px) {
  .footerBnrBtn::after {
    top: 27px;
  }
}

@media (max-width: 1023px) {
  .footerBnrBtn::after {
    top: 21px;
  }
}

/*
  フッター - ページトップ
ーーーーーーーーーーーーーーーーーー*/
.goToTop {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

.goToTop a {
  color: #ffffff;
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 600;
  font-style: normal;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  height: 134px;
}

.goToTop a::before {
  content: "";
  background: #c6c6c6;
  width: 1px;
  height: 100px;
  margin-bottom: 16px;
}

/*
  フッター
ーーーーーーーーーーーーーーーーーー*/
.footer {
  position: relative;
  padding-top: 136px;
  background: #192d4a;
}

@media (min-width: 1024px) {
  .footer {
    padding-bottom: 30px;
  }
}

@media (max-width: 1023px) {
  .footer {
    padding-bottom: 22px;
  }
}

/*
  フッター - 上部
ーーーーーーーーーーーーーーーーーー*/
.footerTop {
  width: calc(100% - 60px);
  max-width: 1186px;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 1px solid #ffffff;
}

@media (min-width: 1024px) {
  .footerTop {
    padding-bottom: 50px;
  }
}

@media (max-width: 1023px) {
  .footerTop {
    width: calc(100% - 40px);
    padding-bottom: 30px;
  }
}

/* フッター - 電話番号 */
.footerLogo {
  width: 300px;
  margin: auto;
}

@media (min-width: 1024px) {
  .footerLogo {
    margin-bottom: 28px;
  }
}

@media (max-width: 1023px) {
  .footerLogo {
    margin-bottom: 36px;
  }
}

/* フッター - 電話番号 */
.footerTel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #ffffff;
  margin-left: auto;
  white-space: nowrap;
  padding-top: 2px;
}

@media (min-width: 1024px) {
  .footerTel {
    -ms-flex-pack: center;
        justify-content: center;
    margin-bottom: 14px;
  }
}

@media (max-width: 1023px) {
  .footerTel {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom: 20px;
  }
}

.footerTel__link {
  padding: 2px 0 2px 24px;
  color: #ffffff;
  background: url(../images/common/icon_tel_line.png) no-repeat left center/17px;
}

@media (min-width: 1024px) {
  .footerTel__link {
    margin-right: 16px;
  }
}

@media (max-width: 1023px) {
  .footerTel__link {
    -ms-flex-pack: center;
        justify-content: center;
    margin-bottom: 8px;
  }
}

.footerTel__num {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
}

@media (min-width: 1024px) {
  .footerTel__num {
    font-size: 28px;
  }
}

@media (max-width: 1023px) {
  .footerTel__num {
    font-size: 26px;
  }
}

.footerTel__texts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media (max-width: 1023px) {
  .footerTel__texts {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.footerTel__text {
  font-size: 13px;
  font-weight: 500;
}

.footerTel__time {
  font-size: 13px;
  font-weight: 500;
}

/* フッター - 住所 */
.footerAddress {
  font-size: 13px;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
}

/*
  フッター - 下部
ーーーーーーーーーーーーーーーーーー*/
.footerBottom {
  width: calc(100% - 60px);
  max-width: 1186px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
  padding-top: 50px;
}

@media (min-width: 1024px) {
  .footerBottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-bottom: 54px;
  }
}

@media (max-width: 1023px) {
  .footerBottom {
    width: calc(100% - 40px);
  }
}

/* フッター - ナビゲーション */
@media (min-width: 1024px) {
  .footerNav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 66%;
  }
}

@media (max-width: 1023px) {
  .footerNav {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .footerNav__item:not(:first-child) {
    margin-top: 26px;
  }
}

.footerNav__link {
  color: #ffffff;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .footerNav__link {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    opacity: 1 !important;
    display: inline-block;
    font-size: 16px;
  }
  .footerNav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    background: #ffffff;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
  }
  .footerNav__link:hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (max-width: 1023px) {
  .footerNav__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    height: 54px;
    width: 100%;
    padding-left: 20px;
    border-bottom: 1px solid #fff;
    font-size: 12px;
    font-weight: bold;
  }
}

.footerNav__link.-parent {
  position: relative;
}

@media (min-width: 1024px) {
  .footerNav__link.-parent {
    display: block;
    width: 124px;
    padding-bottom: 4px;
  }
}

@media (max-width: 1023px) {
  .footerNav__link.-parent {
    padding-right: 16px;
    padding-bottom: 3px;
  }
}

@media (max-width: 1023px) {
  .footerNav__link.-parent::before,
  .footerNav__link.-parent::after {
    content: "";
    position: absolute;
    right: 0;
    background: #fff;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}

@media (max-width: 1023px) {
  .footerNav__link.-parent::before {
    top: 26px;
    right: 20px;
    width: 11px;
    height: 1px;
  }
}

@media (max-width: 1023px) {
  .footerNav__link.-parent::after {
    top: 21px;
    right: 25px;
    width: 1px;
    height: 11px;
  }
}

@media (max-width: 1023px) {
  .footerNav__link.is-show.-parent::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@media (min-width: 1024px) {
  .footerNavSub {
    margin-top: 26px;
  }
}

@media (max-width: 1023px) {
  .footerNavSub {
    display: none;
    border-bottom: 1px solid #fff;
    padding: 12px 0 16px;
  }
}

@media (min-width: 1024px) {
  .footerNavSub__item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.footerNavSub__link {
  color: #ffffff;
  font-size: 13px;
}

@media (min-width: 1024px) {
  .footerNavSub__link {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    opacity: 1 !important;
    display: inline-block;
  }
  .footerNavSub__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    background: #ffffff;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
  }
  .footerNavSub__link:hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (max-width: 1023px) {
  .footerNavSub__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    height: 48px;
    padding-left: 20px;
  }
}

/* フッター - ボタン */
@media (min-width: 1024px) {
  .footerBtns {
    width: 27.7%;
  }
}

@media (max-width: 1023px) {
  .footerBtns {
    margin-bottom: 40px;
  }
}

@media (max-width: 1023px) {
  .footerBtn {
    max-width: 335px;
    margin: auto;
  }
}

.footerBtn:not(:last-child) {
  margin-bottom: 8px;
}

.footerBtn a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  height: 70px;
  padding-top: 2px;
  background: url(../images/common/icon_outerlink_navy.png) no-repeat right 11px bottom 8px/14px #fff;
  color: #192d4a;
  transition: background 0.3s;
}

.footerBtn a:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.footerBtn.-logo a {
  padding-top: 4px;
}

.footerBtn.-logo img {
  width: 192px;
}

.footerBtn__main {
  margin-bottom: 7px;
  font-weight: 500;
}

.footerBtn__main.-en {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
  letter-spacing: 3px;
  font-size: 16px;
  white-space: nowrap;
}

.footerBtn__sub {
  font-size: 10px;
}

/*
  フッター - コピーライト
ーーーーーーーーーーーーーーーーーー*/
.copyright {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 10px;
  text-align: center;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  共通スタイル


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 1024px) {
  .main {
    padding-top: 140px;
  }
}

@media (max-width: 1023px) {
  .main {
    padding-top: 100px;
  }
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

/*
  プラスマーク
ーーーーーーーーーーーーーーーーーー*/
.c-drawer-plus {
  position: relative;
}

@media (max-width: 1023px) {
  .c-drawer-plus::before,
  .c-drawer-plus::after {
    content: "";
    position: absolute;
    right: 0;
    background: #fff;
    border: none;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@media (max-width: 1023px) {
  .c-drawer-plus::before {
    top: 50%;
    right: 20px;
    width: 11px;
    height: 1px;
  }
}

@media (max-width: 1023px) {
  .c-drawer-plus::after {
    top: calc(50% - 5px);
    right: 25px;
    width: 1px;
    height: 11px;
  }
}

@media (max-width: 1023px) {
  .c-drawer-plus.is-show::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

/*
  サービスページ 共通
ーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .service-head {
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 751px) {
  .service-head__image {
    width: 50%;
  }
}

@media (max-width: 750px) {
  .service-head__image {
    margin-bottom: 30px;
  }
}

@media (min-width: 751px) {
  .service-head__conts {
    width: 50%;
    padding-left: 2.8vw;
    padding-right: 2.8vw;
  }
}

@media (max-width: 750px) {
  .service-head__conts {
    width: calc(100% - 80px);
    margin: auto;
  }
}

.service-head__ttl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media (min-width: 751px) {
  .service-head__ttl {
    margin-bottom: 30px;
  }
}

@media (max-width: 750px) {
  .service-head__ttl {
    margin-bottom: 18px;
  }
}

.service-head__icon {
  -ms-flex: none;
      flex: none;
}

@media (min-width: 751px) {
  .service-head__icon {
    width: 60px;
    margin-right: 20px;
  }
}

@media (max-width: 750px) {
  .service-head__icon {
    width: 40px;
    margin-right: 4px;
  }
}

.service-head__ttlText {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 3px;
  color: #00316c;
}

@media (min-width: 751px) {
  .service-head__ttlText {
    font-size: 24px;
  }
}

@media (max-width: 750px) {
  .service-head__ttlText {
    font-size: 18px;
    white-space: nowrap;
  }
}

.service-head__lead {
  font-weight: 500;
  font-size: 18px;
  line-height: 33px;
  line-height: 1.8;
  color: #00316c;
  letter-spacing: 3px;
}

@media (min-width: 751px) {
  .service-head__lead {
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {
  .service-head__lead {
    margin-bottom: 18px;
    white-space: nowrap;
    text-align: justify;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.service-head__text {
  text-align: justify;
}

@media (min-width: 751px) {
  .service-head__text {
    font-size: 16px;
    line-height: 2.1;
  }
}

@media (max-width: 750px) {
  .service-head__text {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
PAGE
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  トップページ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 1024px) {
  .home .main {
    padding-top: 0;
  }
}

@media (max-width: 1023px) {
  .home .main {
    padding-top: 0;
  }
}

/*
  トップページ - キーヴィジュアル
ーーーーーーーーーーーーーーーーーー*/
.kvInner {
  position: relative;
}

.kvSlider {
  height: 100vh;
}

.kvSlider__item {
  height: 100%;
}

.kvSlider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.kv__text {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

@media (min-width: 751px) {
  .kv__text {
    top: 50%;
  }
}

@media (max-width: 750px) {
  .kv__text {
    top: calc(50% + 20px);
  }
}

.kv__ttl {
  width: 84.8%;
  max-width: 536px;
}

@media (min-width: 751px) {
  .kv__ttl {
    margin-bottom: 30px;
  }
}

@media (max-width: 750px) {
  .kv__ttl {
    margin-bottom: 24px;
  }
}

@media (min-width: 751px) {
  .kv__logo {
    max-width: 210px;
  }
}

@media (max-width: 750px) {
  .kv__logo {
    max-width: 180px;
  }
}

/* 物件数 */
.kvCount {
  background: #f3f3f3;
}

@media (min-width: 1024px) {
  .kvCount {
    position: absolute;
    bottom: 48px;
    left: 8vw;
    width: 272px;
    height: 170px;
    padding: 20px;
  }
}

@media (max-width: 1023px) {
  .kvCount {
    width: calc(100% - 80px);
    max-width: 480px;
    padding: 22px 30px 20px;
    margin: 32px auto 22px;
  }
}

.kvCount__ttl {
  padding-bottom: 18px;
  border-bottom: 1px solid #192d4a;
  margin-bottom: 14px;
  font-weight: bold;
  font-size: 12px;
  color: #192d4a;
  white-space: nowrap;
  line-height:1.5;
}

@media (max-width: 1023px) {
  .kvCount__ttl {
    text-align: center;
  }
}

.kvCount__row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.kvCount__row.-public {
  margin-bottom: 6px;
}

.kvCount__row.-memberOnly .kvCount__rowNum {
  background: #5e96db;
}

.kvCount__rowTtl {
  width: 84px;
  font-weight: 500;
  font-size: 11px;
}

.kvCount__rowFoot {
  width: 50px;
  font-weight: 500;
  font-size: 11px;
  text-align: right;
}

.kvCount__rowNumWrap {
  display: -ms-flexbox;
  display: flex;
}

.kvCount__rowNum {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 22px;
  height: 26px;
  background: #192d4a;
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}

.kvCount__rowNum:not(:last-child) {
  margin-right: 3px;
}
.kvCountTel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #00306d;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  padding-top: 2px;
}

@media (min-width: 1024px) {
  .kvCountTel {
    -ms-flex-pack: center;
        justify-content: center;
    margin-bottom: 14px;
  }
}

@media (max-width: 1023px) {
  .kvCountTel {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-top: 10px;
  }
}

.kvCountTel__link {
  padding: 2px 0 2px 24px;
  background: url(../images/common/icon_tel_line_blue.png) no-repeat left center/17px;
}

@media (min-width: 1024px) {
  .kvCountTel__link {
    margin-right: 16px;
  }
}

@media (max-width: 1023px) {
  .kvCountTel__link {
    -ms-flex-pack: center;
        justify-content: center;
    margin-bottom: 8px;
  }
}

.kvCountTel__num {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
}

@media (min-width: 1024px) {
  .kvCountTel__num {
    font-size: 28px;
  }
}

@media (max-width: 1023px) {
  .kvCountTel__num {
    font-size: 26px;
  }
}

.kvCountTel__texts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media (max-width: 1023px) {
  .kvCountTel__texts {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.kvCountTel__text {
  font-size: 13px;
  font-weight: 500;
}

.kvCountTel__time {
  font-size: 13px;
  font-weight: 500;
}

/* お知らせ一覧 */
.kvNews {
  max-width: 480px;
  min-height: 92px;
  padding: 18px 34px 20px;
  background: #f3f3f3;
}

@media (min-width: 1024px) {
  .kvNews {
    width: calc(100% - 60px);
    max-width: 1186px;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 1023px) {
  .kvNews {
    width: calc(100% - 80px);
    padding: 18px 30px;
    margin:30px auto 0;
  }
}

.kvNews__head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid #192d4a;
  margin-bottom: 12px;
}

.kvNews__headTtl {
  font-weight: bold;
  font-size: 13px;
  color: #192d4a;
}

.kvNews__headLink a {
  position: relative;
  display: inline-block;
  padding: 6px 18px 7px 4px;
  font-weight: bold;
  font-size: 11px;
  color: #192d4a;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  opacity: 1 !important;
}

.kvNews__headLink a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #ffffff;
  transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.kvNews__headLink a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.kvNews__headLink a::before {
  background: #192d4a;
}

.kvNews__headLink a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border: 1px solid #192d4a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
  position: absolute;
  top: 8px;
  right: 4px;
}

.kvNews__item:not(:last-child) {
  margin-bottom: 8px;
}

.kvNews__item a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  opacity: 1 !important;
  padding: 3px 0;
  width:100%;
}

.kvNews__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #ffffff;
  transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.kvNews__item a:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.kvNews__item a::after {
  background: #192d4a;
}

.kvNews__item a.noLink::after {
    display:none;
}

.kvNews__day {
  display: inline-block;
  -ms-flex: none;
      flex: none;
  float: left;
  width: 62px;
  font-weight: 600;
  font-size: 10px;
  color: #00316c;
}

.kvNews__content {
  display: inline-block;
  float: left;
  max-width: 336px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 11px;
  width:100%;
}

.kvNews__fixed .kvNews__day{
  padding: 3px 0;
}
.kvNews__fixed .kvNews__content{
  margin-bottom: 10px;
  padding: 3px 0;
}
.kvNews__fixed .kvNews__content a{
	text-decoration: underline;
}
.kvNews__fixed .kvNews__content a:hover{
  color: #00316c;
}

@media (min-width: 1024px) {
.kvNews__day {
  width: 72px;
  font-size: 12px;
}

.kvNews__content {
  max-width: 1046px;
  font-size: 13px;
}
}

/* スクロール */
.kvScroll {
  position: absolute;
  left: calc(50% - 14px);
  bottom: 60px;
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 1px;
}

.kvScroll__arrow {
  -webkit-animation: scrollArrow 1.2s infinite alternate;
          animation: scrollArrow 1.2s infinite alternate;
}

.kvScroll__arrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  border-bottom: none;
  border-left: none;
  position: absolute;
  top: 3px;
  right: 11px;
}

@-webkit-keyframes scrollArrow {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 8px, 0);
            transform: translate3d(0, 8px, 0);
  }
}

@keyframes scrollArrow {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 8px, 0);
            transform: translate3d(0, 8px, 0);
  }
}

/*
  トップページ - エリア別オススメ物件
ーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .home-recommend {
    padding: 80px 0 80px;
  }
}

@media (max-width: 750px) {
  .home-recommend {
    padding: 80px 0 40px;
  }
}

.recoBnrWrap {
  width: calc(100% - 60px);
  max-width: 1186px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 751px) {
  .recoBnrWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 750px) {
  .recoBnrWrap {
    width: calc(100% - 30px);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.recoBnr {
  position: relative;
  overflow: hidden;
}

@media (min-width: 751px) {
  .recoBnr {
    width: calc(25% - 10px);
  }
}
@media (max-width: 750px) {
  .recoBnr {
    width: calc(50% - 5px);
  }
}

.recoBnr a {
  display: block;
  opacity: 1 !important;
}

@media (min-width: 751px) {
  .recoBnr:nth-last-child(n + 3) {
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {
  .recoBnr:not(:last-child) {
    margin-bottom: 16px;
  }
}

.recoBnr__texts_ver2{
	margin-top: 0.5em;
}
.recoBnr__texts_ver2 p{
	line-height: 1.4;
}

@media (min-width: 751px) {
}

@media (max-width: 750px) {
.recoBnr__texts_ver2 p{
	font-size: 12px
}
}

.recoBnr__ttl {
  font-weight: 500;
  color: #00316c;
}

@media (min-width: 751px) {
  .recoBnr__ttl {
    margin: 10px 0;
    font-size: 22px;
  }
}

@media (max-width: 750px) {
  .recoBnr__ttl {
    margin: 10px 0;
    font-size: 18px;
  }
}

@media (max-width: 1023px) {
  .recoBnr__area {
    font-size: 13px;
    line-height: 1.6;
  }
}

.recoBnr__more {
  position: absolute;
  color: #ffffff;
  font-size: 11px;
  padding-right: 12px;
  font-weight: bold;
}

@media (min-width: 751px) {
  .recoBnr__more {
    bottom: 6.8%;
    right: 4%;
  }
}

@media (max-width: 750px) {
  .recoBnr__more {
    bottom: 12.8%;
    right: 6.6%;
  }
}

.recoBnr__more::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
  position: absolute;
  top: 2px;
  right: 0;
}

@media (min-width: 751px) {
.recoBnr__img img {
  -webkit-transform: translate3d(0, 0, 0) scale(1, 1);
          transform: translate3d(0, 0, 0) scale(1, 1);
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.recoBnr:hover .recoBnr__img img {
  -webkit-transform: translate3d(0, 0, 0) scale(1.05, 1.05);
          transform: translate3d(0, 0, 0) scale(1.05, 1.05);
}
}

.recoRegistBnr {
  width: calc(100% - 60px);
  max-width: 1186px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 750px) {
  .recoRegistBnr {
    width: calc(100% - 80px);
  }
}

.recoRegistBnr a {
  display: block;
}

/*
  トップページ - 新着オススメ情報
ーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .home-newArvl {
    padding-bottom: 140px;
  }
}

@media (max-width: 750px) {
  .home-newArvl {
    padding-bottom: 80px;
  }
}

.home-newArvl__inner {
  width: calc(100% - 60px);
  max-width: 1186px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 751px) {
  .home-newArvl__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 60px;
  }
}

@media (max-width: 750px) {
  .home-newArvl__inner {
    width: calc(100% - 0px);
    margin-bottom: 40px;
  }
}

@media (min-width: 751px) {
  .home-newArvl__conts {
    width: calc(33%);
  }
}
@media (min-width: 751px) and (max-width: 1180px) {
  .home-newArvl__conts {
    width: calc(50%);
  }
}

@media (min-width: 751px) {
  .home-newArvl__conts:nth-last-child(n + 3) {
    margin-bottom: 40px;
  }
}

@media (max-width: 750px) {
  .home-newArvl__conts:not(:last-child) {
    margin-bottom: 16px;
  }
}
.home-newArvl__conts.c-prptyCard a {
  background: none;
}

@media (min-width: 1024px) {
  .home-newArvl__conts.c-prptyCard a {
    padding: 10px;
  }
}

@media (max-width: 1023px) {
  .home-newArvl__conts.c-prptyCard a {
    padding: 10px;
  }
}
.home-newArvl__contsBody
{
    position:relative;
}

/*
@media (max-width: 750px) {
  .home-newArvl__conts.c-prptyCard a {
    padding: 0;
  }
  .home-newArvl__contsHead
  {
    float:left;
    width:50%;
  }
  .home-newArvl__contsBody
  {
    float:right;
    width:48%;
  }
  .home-newArvl__conts:after {
    content: " ";
    display: block;
    clear: both;
  }
}
*/


@media (min-width: 751px) {
.home-newArvl__prptyCat
{
    position:absolute;
    top:0;
    right:0;
}
}
@media (max-width: 750px) {
.home-newArvl__prptyCat
{
    margin:0;
    font-weight: normal;
    width: 90px !important;
    margin-left: auto;
    font-size: 10px;
    height: 25px !important;
}
}

.home-newArvl__btn {
  margin: auto;
}

.home-newArvl__btnWrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 20px;
  opacity: 1 !important;
}

@media (min-width: 751px) {
  .home-newArvl__btnWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: flex-end;
  }
}

@media (max-width: 750px) {
  .home-newArvl__btnWrap {
    margin-top: 10px;
    display: block;
  }
}
.home-newArvl__btn {
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: opacity 0.3s;
}

@media (min-width: 751px) {
  .home-newArvl__btn {
    height: 60px;
  }
  .home-newArvl__btnFavorite {
    width: 59.7%;
    height: 30px;
  }
  .home-newArvl__viewDetail {
    width: 39.7%;
    height: 30px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-newArvl__btn {
    font-size: 11px;
  }
}

@media (max-width: 750px) {
  .home-newArvl__btn {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    font-size: 13px;
  }
  .home-newArvl__btnFavorite,
  .home-newArvl__viewDetail{
    height: 30px;
  }
  .home-newArvl__viewDetail {
    display:none;
  }
}

.home-newArvl__btn:hover {
  opacity: 0.8;
}

.home-newArvl__btnFavorite {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
  background-color: #68c8e4;
  font-size: 13px;
}

@media (max-width: 750px) {
  .home-newArvl__btnFavorite {
    margin-bottom: 10px;
    font-size:12px;;
  }
}

.home-newArvl__viewDetail {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: inherit;
  background-color: none;
  position: relative;
  font-size: 13px;
  color: #192d4a;
}

.home-newArvl__viewDetail::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 20px;
  border-bottom: 1px solid #192d4a;
  border-right: 1px solid #192d4a;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.home-newArvl__star {
  width: 18px;
  margin-right: 4px;
}
@media (max-width: 750px) {
.home-newArvl__prptyPrice,
.home-newArvl__prptyName
{
    margin-bottom:5px;
}
.home-newArvl__prptyPriceMain
{
    font-size:24px;
}
}
/*
  トップページ - 優良物件検索
ーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .home-sch {
    padding-bottom: 110px;
  }
}

@media (max-width: 750px) {
  .home-sch {
    padding-bottom: 80px;
  }
}

.home-sch__conts {
  background: #f3f3f3;
}

@media (min-width: 1024px) {
  .home-sch__conts {
    padding-bottom: 50px;
    margin-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .home-sch__conts {
    padding: 30px 0 38px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .home-sch__contsInner {
    width: calc(100% - 60px);
    max-width: 1186px;
    margin-right: auto;
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    max-width: 1072px;
    padding-top: 32px;
  }
}

@media (min-width: 1024px) {
  .home-sch__box.-station {
    width: calc(100% - 535px);
    max-width: 525px;
  }
}

@media (max-width: 1023px) {
  .home-sch__box.-station {
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .home-sch__box.-area {
    -ms-flex: none;
        flex: none;
    width: 525px;
  }
}

@media (min-width: 1024px) {
  .home-sch__boxHead.c-btn-general.-btn-large {
    width: 100%;
    margin-bottom: 54px;
  }
}

@media (max-width: 1023px) {
  .home-sch__boxHead.is-show a::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@media (max-width: 1023px) {
  .home-sch__stationBody {
    display: none;
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .home-sch__listWrap {
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1023px) {
  .home-sch__listWrap {
    width: calc(100% - 60px);
    max-width: 1186px;
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 40px);
    max-width: 485px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

@media (max-width: 750px) {
  .home-sch__listWrap {
    max-width: 295px;
  }
}

@media (min-width: 1024px) {
  .home-sch__list {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .home-sch__item:not(:last-child) {
    margin-bottom: 22px;
  }
}

@media (max-width: 1023px) {
  .home-sch__item:not(:last-child) {
    margin-bottom: 5px;
  }
}

.home-sch__item a {
  position: relative;
  display: block;
  color: #192d4a;
  font-size: 13px;
  font-weight: 500;
  opacity: 1 !important;
}

.home-sch__item a > * {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  opacity: 1 !important;
}

.home-sch__item a > *::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #192d4a;
  transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.home-sch__item a:hover > *::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (min-width: 1024px) {
  .home-sch__item a {
    padding: 2px 0;
    margin: auto;
  }
}

@media (max-width: 1023px) {
  .home-sch__item a {
    padding: 11px 0;
  }
}

@media (min-width: 1024px) {
  .home-sch__list.-s .home-sch__item a {
    width: 154px;
  }
}

@media (min-width: 1024px) {
  .home-sch__list.-l .home-sch__item a {
    width: 214px;
  }
}

.home-sch__item a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border: 1px solid #192d4a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
  position: absolute;
  top: 6px;
  right: 0;
}

.home-sch__btn a {
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 0;
  font-size: 13px;
}

@media (max-width: 1023px) {
  .home-sch__areaBody {
    /*display: none;*/
  }
}

.home-schMap {
  position: relative;
}

@media (min-width: 1024px) {
  .home-schMap {
    margin: 0 11px 0 29px;
  }
}

@media (max-width: 1023px) {
  .home-schMap {
    width: 509px;
    margin-top: 38px;
    padding-bottom: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 750px) {
  .home-schMap {
    width: 310px;
  }
}

.home-schMap__links {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.home-schMap__link {
  position: absolute;
}

.home-schMap__link a {
  width: 100%;
  height: 100%;
  color: #192d4a;
  font-size: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: 0.3s;
  opacity: 1 !important;
}

@media (max-width: 750px) {
  .home-schMap__link a {
    color: transparent;
  }
}

.home-schMap__link a:hover {
  background: #192d4a;
  color: #ffffff;
}

.home-schMap__linkWrap {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.home-schMap__text {
  position: relative;
  z-index: 2;
  color: #192d4a;
  font-size: 12px;
  transition: color 0.3s;
  pointer-events: none;
}

@media (max-width: 750px) {
  .home-schMap__text {
    display: none;
  }
}

.home-schMap__linkWrap.is-over .home-schMap__text {
  color: #ffffff;
}

@media (min-width: 1024px) {
  .home-schMap__link.-aoba {
    top: 0;
    left: 73px;
    width: 212px;
    height: 74px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-aoba {
    top: 0;
    left: 116px;
    width: 194px;
    height: 121px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-aoba {
    top: 0;
    left: 71px;
    width: 118px;
    height: 74px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-kohoku {
    top: 27px;
    left: 291px;
    width: 105px;
    height: 105px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-kohoku {
    top: 40px;
    left: 316px;
    width: 103px;
    height: 172px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-kohoku {
    top: 77px;
    left: 71px;
    width: 118px;
    height: 53px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-midori {
    top: 79px;
    left: 73px;
    width: 212px;
    height: 53px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-midori {
    top: 126px;
    left: 116px;
    width: 194px;
    height: 87px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-midori {
    top: 25px;
    left: 192px;
    width: 63px;
    height: 105px;
  }
}

.home-schMap__link.-tsurumi {
  z-index: 2;
}

@media (min-width: 1024px) {
  .home-schMap__link.-tsurumi {
    top: 73px;
    left: 401px;
    width: 84px;
    height: 114px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-tsurumi {
    top: 113px;
    left: 424px;
    width: 84px;
    height: 192px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-tsurumi {
    top: 69px;
    right: 0;
    width: 51px;
    height: 117px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-seya_izumi {
    top: 137px;
    left: 0;
    width: 83px;
    height: 207px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-seya_izumi {
    top: 220px;
    left: 0;
    width: 112px;
    height: 340px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-seya_izumi {
    top: 133px;
    left: 0;
    width: 68px;
    height: 207px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-asahi {
    top: 138px;
    left: 89px;
    width: 98px;
    height: 96px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-asahi {
    top: 220px;
    left: 116px;
    width: 97px;
    height: 161px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-asahi {
    top: 133px;
    left: 71px;
    width: 59px;
    height: 98px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-hodogaya {
    top: 138px;
    left: 192px;
    width: 93px;
    height: 96px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-hodogaya {
    top: 220px;
    left: 220px;
    width: 92px;
    height: 161px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-hodogaya {
    top: 133px;
    left: 133px;
    width: 56px;
    height: 98px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__linkWrap.-naka_nishi_kanagawa {
    top: 137px;
    left: 291px;
    width: 157px;
    height: 148px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__linkWrap.-naka_nishi_kanagawa {
    top: 220px;
    left: 316px;
    width: 157px;
    height: 243px;
  }
}

@media (max-width: 750px) {
  .home-schMap__linkWrap.-naka_nishi_kanagawa {
    top: 133px;
    left: 192px;
    width: 63px;
    height: 98px;
  }
}

.home-schMap__link.-naka_nishi_kanagawa {
  top: 2px;
  left: 2px;
}

@media (min-width: 1024px) {
  .home-schMap__link.-naka_nishi_kanagawa {
    width: 101px;
    height: 93px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-naka_nishi_kanagawa {
    top: 1px;
    width: 100px;
    height: 158px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-naka_nishi_kanagawa {
    width: 63px;
    height: 98px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-naka_nishi_kanagawa2 {
    top: 58px;
    left: 65px;
    width: 90px;
    height: 88px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-naka_nishi_kanagawa2 {
    top: 93px;
    left: 65px;
    width: 90px;
    height: 148px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-naka_nishi_kanagawa2 {
    width: 57px;
    height: 93px;
  }
}

.home-schMap__link.-naka_nishi_kanagawa a,
.home-schMap__link.-naka_nishi_kanagawa2 a {
  opacity: 1 !important;
  transition: 0.3s;
}

@media (min-width: 751px) {
  .home-schMap__link.-naka_nishi_kanagawa a,
  .home-schMap__link.-naka_nishi_kanagawa2 a {
    background: #f3f3f3;
  }
}

@media (min-width: 751px) {
  .home-schMap__link.-naka_nishi_kanagawa.is-over a,
  .home-schMap__link.-naka_nishi_kanagawa2.is-over a {
    background: #192d4a;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-totsuka {
    top: 239px;
    left: 89px;
    width: 98px;
    height: 105px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-totsuka {
    top: 386px;
    left: 116px;
    width: 97px;
    height: 174px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-totsuka {
    top: 234px;
    left: 71px;
    width: 59px;
    height: 106px;
  }
}

.home-schMap__link.-minami {
  z-index: 2;
}

@media (min-width: 1024px) {
  .home-schMap__link.-minami {
    top: 239px;
    left: 192px;
    width: 156px;
    height: 46px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-minami {
    top: 385px;
    left: 220px;
    width: 154px;
    height: 77px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-minami {
    top: 234px;
    left: 133px;
    width: 94px;
    height: 47px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-sakae_konan {
    top: 289px;
    left: 192px;
    width: 93px;
    height: 110px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-sakae_konan {
    top: 467px;
    left: 220px;
    width: 105px;
    height: 181px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-sakae_konan {
    top: 284px;
    left: 133px;
    width: 64px;
    height: 110px;
  }
}

@media (min-width: 1024px) {
  .home-schMap__link.-isogo_kanazawa {
    top: 289px;
    left: 291px;
    width: 110px;
    height: 133px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .home-schMap__link.-isogo_kanazawa {
    top: 467px;
    left: 330px;
    width: 123px;
    height: 219px;
  }
}

@media (max-width: 750px) {
  .home-schMap__link.-isogo_kanazawa {
    top: 284px;
    left: 200px;
    width: 75px;
    height: 133px;
  }
}

/*
  トップページ - 東宝ハウス横浜西口のサービス
ーーーーーーーーーーーーーーーーーー*/
.home-service {
  background: linear-gradient(to bottom, #ededed 0%, #ffffff 100%);
}

@media (min-width: 751px) {
  .home-service {
    padding-top: 102px;
    padding-bottom: 160px;
  }
}

@media (max-width: 750px) {
  .home-service {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.home-service__box {
  position: relative;
  width: calc(100% - 60px);
  max-width: 1186px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 751px) {
  .home-service__box {
    height: 42.4vw;
    max-height: 520px;
  }
}

@media (max-width: 750px) {
  .home-service__box {
    width: calc(100% - 40px);
    height: 92vw;
    min-height: 394px;
  }
}

@media (min-width: 751px) {
  .home-service__box:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media (max-width: 750px) {
  .home-service__box:not(:last-child) {
    margin-bottom: 40px;
  }
}

.home-service__image {
  position: relative;
}

@media (min-width: 751px) {
  .home-service__image {
    width: 63.2%;
  }
}

@media (max-width: 750px) {
  .home-service__image {
    width: calc(100% - 20px);
  }
}

.home-service__texts {
  position: absolute;
  right: 0;
  bottom: 70px;
}

@media (min-width: 751px) {
  .home-service__texts {
    width: 49.9%;
  }
}

@media (max-width: 750px) {
  .home-service__texts {
    bottom: 26px;
    width: calc(100% - 20px);
  }
}

.home-service__texts a {
  display: block;
  background: #192d4a;
  color: #ffffff;
  opacity: 1 !important;
  transition: background 0.3s;
}

@media (min-width: 751px) {
  .home-service__texts a {
    padding: 11.1% 8% 9.6% 12.2%;
  }
}

@media (max-width: 750px) {
  .home-service__texts a {
    padding: 9.8% 4% 15% 8.9%;
  }
}

.home-service__texts a::after {
  content: "";
  height: 0;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transition: border 0.3s;
}

@media (min-width: 751px) {
  .home-service__texts a::after {
    width: calc(100% - 70px);
    border-top: solid 70px #192d4a;
    border-right: solid 70px transparent;
  }
}

@media (max-width: 750px) {
  .home-service__texts a::after {
    width: calc(100% - 26px);
    border-top: solid 26px #192d4a;
    border-right: solid 26px transparent;
  }
}

.home-service__texts a:hover {
  background: #45556d;
}

.home-service__texts a:hover::after {
  border-top-color: #45556d;
}

.home-service__ttl {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

@media (min-width: 751px) {
  .home-service__ttl {
    -ms-flex-align: center;
        align-items: center;
    margin-bottom: 16px;
  }
}

.home-service__num {
  font-family: baskerville-urw, serif;
  font-weight: 400;
  font-style: normal;
  margin-right: 12px;
}

@media (min-width: 751px) {
  .home-service__num {
    font-size: 36px;
  }
}

@media (max-width: 750px) {
  .home-service__num {
    font-size: 26px;
  }
}

.home-service__ttlText {
  padding-top: 3px;
  line-height: 1.4;
}

@media (min-width: 751px) {
  .home-service__ttlText {
    font-size: 20px;
  }
}

@media (max-width: 750px) {
  .home-service__ttlText {
    font-size: 15px;
  }
}

.home-service__text {
  line-height: 1.9;
}

@media (min-width: 751px) {
  .home-service__text {
    font-size: 15px;
  }
}

@media (max-width: 750px) {
  .home-service__text {
    font-size: 13px;
  }
}

.home-service__more {
  position: absolute;
  z-index: 2;
}

@media (min-width: 751px) {
  .home-service__more {
    right: 66px;
    bottom: -16px;
  }
}

@media (max-width: 750px) {
  .home-service__more {
    right: 28px;
    bottom: 0;
  }
}

.home-service__more span {
  position: relative;
  padding: 4px 16px 4px 4px;
  color: #ffffff;
  font-weight: 500;
}

@media (min-width: 751px) {
  .home-service__more span {
    font-size: 13px;
  }
}

@media (max-width: 750px) {
  .home-service__more span {
    font-size: 10px;
  }
}

.home-service__more span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: 2px;
}

@media (min-width: 751px) {
  .home-service__more span::after {
    top: calc(50% - 2px);
  }
}

@media (max-width: 750px) {
  .home-service__more span::after {
    top: calc(50% - 1px);
  }
}

/* 反転 */
@media (min-width: 751px) {
  .home-service__box.-reverse .home-service__image {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 751px) {
  .home-service__box.-reverse .home-service__texts {
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
  }
}

/*
  トップページ - スペシャルムービー
ーーーーーーーーーーーーーーーーーー*/
@media (max-width: 750px) {
  .sec-movie {
    padding-top: 60px;
    background: linear-gradient(to bottom, #ededed 0%, #ffffff 100%);
  }
}
/*
  トップページ - お客様の声
ーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .home-voice {
    padding: 0 0 80px;
  }
}
.home-voice .c-mainTtl__sub span {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
  font-size:36px;
  padding:0 5px;
}

@media (max-width: 750px) {
  .home-voice {
    padding: 0 0 40px;
  }
  .home-voice .c-mainTtl__sub span {
    font-size:26px;
  }

}









/* バナー */
@media (min-width: 1024px) {
  .top-banner {
    opacity: 0;
  }
}
.top-banner.is-show {
  opacity: 1;
  transition: opacity 0.3s;
}
.top-banner {
width: calc(100% - 60px);
max-width: 1186px;
margin-bottom: 30px;
margin-right: auto;
margin-left: auto;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  お客様の声


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
 お客様の声 一覧
ーーーーーーーーーーーーーーーーーー*/
.voice-read {
  text-align: center;
  font-weight: 500;
  color: #192d4a;
}

@media (min-width: 751px) {
  .voice-read {
    font-size: 16px;
    line-height: 2.12;
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {
  .voice-read {
    font-size: 13px;
    line-height: 1.84;
    margin-bottom: 20px;
  }
}

.voice {
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%), #ededed;
}

@media (min-width: 751px) {
  .voice {
    padding: 94px 0 0;
  }
}

@media (max-width: 750px) {
  .voice {
    padding: 40px 0 0;
  }
}

.voice-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

@media (min-width: 751px) {
  .voice-list {
    width: calc(100% - 60px);
    max-width: 1186px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 750px) {
  .voice-list {
    padding: 20px;
    margin: 0 auto;
  }
}

.voice-list::after {
  content: "";
  display: block;
  width: 32%;
}

@media (min-width: 751px) {
  .voice-list__item {
    width: 32%;
    margin-bottom: 56px;
  }
}

@media (min-width: 750px) and (max-width: 1024px) {
  .voice-list__item {
    width: 48%;
  }
}

@media (max-width: 750px) {
  .voice-list__item {
    width: 100%;
    margin-bottom: 36px;
  }
}

.voice-list__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 751px) {
  .voice-list__img {
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {
  .voice-list__img {
    float:left;
    width:50%;
  }
  .voice-item__contents {
    float:right;
    width:48%;
  }
}

.voice-item__name {
  font-size: 16px;
  font-weight: 600;
  color: #192d4a;
  letter-spacing: 1px;
  line-height:1.5;
}

@media (min-width: 751px) {
  .voice-item__name {
    margin-bottom: 12px;
  }
}

@media (max-width: 750px) {
  .voice-item__name {
    margin-bottom: 8px;
  }
}

.voice-name__en {
  font-size: 13px;
  color: #192d4a;
  display: block;
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
  font-weight: 500;
  font-style: normal;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.voice-item__text {
  font-size: 13px;
  line-height: 1.84;
}

.voice-list__img {
  overflow: hidden;
}

.voice-list__img img {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.voice-list__link {
  display: block;
  opacity: 1 !important;
}

.voice-list__link:hover .voice-list__img img {
  -webkit-transform: translate3d(0, 0, 0) scale(1.05, 1.05);
          transform: translate3d(0, 0, 0) scale(1.05, 1.05);
}
.voice-count {
    text-align:center;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 20px;
    color: #00316c;
}

.voice-count .hit-num {
    font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ";
    font-weight: 500;
    font-size: 44px;
    padding-right:5px;
}
@media (max-width: 750px) {
.voice-count {
    font-size: 16px;
}

.voice-count .hit-num {
    font-size: 36px;
}
}
.voice-main .c-listNav__pager {
    margin-top: 20px;
}
/*
 お客様の声 詳細
ーーーーーーーーーーーーーーーーーー*/

@media (min-width: 751px) {
  .voice-detail {
    width: calc(100% - 60px);
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 750px) {
  .voice-detail {
    width: 100%;
  }
}
.voice-detail .scene
{
    font-size:20px;
    font-weight:bold;
}
.voice-detail .scene span
{
    background-color: #00306D;
    display:inline-block;
    color:#FFFFFF;
    padding:0 20px;
}
@media (min-width: 751px) {
.voice-detail .scene
{
    width:700px;
    float:left;
}
.voice-detail .point
{
    width:200px;
    text-align:right;
    float:right;
}
}
@media (max-width: 750px) {
.voice-detail .scene
{
    display:block;
    margin-bottom:10px;
}
.voice-detail .point
{
    display:block;
}
}
.voice-detail .point img
{
    width:150px;
    vertical-align:text-bottom;
    margin-right:10px;
}
.voice-detail .point span
{
    font-size:20px;
    font-weight:bold;
}
.voice-detail-table
{
    width:100%;
    border:0;
    line-height:1.5;
    font-size: 16px;
}
.voice-detail-table th,
.voice-detail-table td
{
    width:50%;
    padding:10px;
    vertical-align:top;
    text-align:left;
    font-weight:normal;
    border-bottom:1px solid #CCCCCC;
}
.voice-detail-table td[colspan="2"]
{
    width:100%;
}
.voice-staff-btn
{
    color:#00306D;
    text-decoration:none;
    border:1px solid #00306D;
    background-color:#FFFFFF;
    padding:5px 25px;
    display:inline-block;
    float:right;
}

.voice-title
{
    font-size:20px;
    line-height:1.5;
    margin-bottom:20px;
}

@media (min-width: 751px) {
.voice-staff-btn:hover
{
    color:#FFFFFF;
    background-color:#00306D;
}
}
@media (max-width: 750px) {
.voice-detail-table
{
    width:95%;
    margin:0 auto;
}
.voice-detail-table th,
.voice-detail-table td
{
    display:block;
    width:100%;
}
.voice-detail-table th
{
    border-bottom:0;
}
.voice-title
{
    width:95%;
    margin:0 auto;
}
}

.voice-slider {
  position: relative;
  margin-bottom: 40px;
}

@media (min-width: 751px) {
  .voice-slider {
    width: calc(100% - 300px);
    max-width: 940px;
    margin: 0 auto 32px;
  }
}

.voice-slider__image img {
    max-width: 100%;
    max-height: 705px;
    margin: 0 auto;
}
@media (max-width: 750px) {
  .voice-slider__image img {
    max-height: auto;
    max-width: 95%;
  }
}

.voice-slider .slick-prev,
.voice-slider .slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.voice-slider .slick-prev:hover,
.voice-slider .slick-prev:focus,
.voice-slider .slick-next:hover,
.voice-slider .slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.voice-slider .slick-prev:hover:before,
.voice-slider .slick-prev:focus:before,
.voice-slider .slick-next:hover:before,
.voice-slider .slick-next:focus:before
{
    opacity: 1;
}
.voice-slider .slick-prev.slick-disabled:before,
.voice-slider .slick-next.slick-disabled:before
{
    opacity: .25;
}

.voice-slider .slick-prev:before,
.voice-slider .slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.voice-slider .slick-prev
{
    left: -25px;
}
.voice-slider [dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.voice-slider .slick-prev:before
{
    content: url(/assets/images/voice/prev.png);
    margin-left: -30px;
}
.voice-slider [dir='rtl'] .slick-prev:before
{
    content: '→';
}

.voice-slider .slick-next
{
    right: -25px;
}
.voice-slider [dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.voice-slider .slick-next:before
{
    content: url(/assets/images/voice/next.png);
    margin-left: 15px;
}
.voice-slider [dir='rtl'] .slick-next:before
{
    content: '←';
}
@media (max-width: 750px) {
.voice-slider .slick-prev
{
    display:none;
}
.voice-slider .slick-next
{
    display:none;
}
}

/* バナー */
@media (min-width: 1024px) {
  .voice-bottom-banner {
    opacity: 0;
  }
}
.voice-bottom-banner.is-show {
  opacity: 1;
  transition: opacity 0.3s;
}
.voice-bottom-banner {
    width: calc(100% - 60px);
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    margin-top:30px;
}

.c-btn-voice-bottom
{
    text-align:center;
}

.c-btn-voice-bottom a
{
    color:#00306D;
    text-decoration:none;
    border:1px solid #00306D;
    background-color:#FFFFFF;
    padding:10px 25px;
    display:inline-block;
    font-size: 16px;
}
@media (min-width: 751px) {
.c-btn-voice-bottom a:hover
{
    color:#FFFFFF;
    background-color:#00306D;
}
}
@media (max-width: 750px) {
.c-btn-voice-bottom a
{
    margin-bottom:10px;
    display:block;
}
}

.voice-staff-contents
{
    display:flex;
    flex-wrap:wrap;
    width: calc(100% - 60px);
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 750px) {
.voice-staff-contents
{
    width: calc(100% - 20px);
    margin-top:20px;
}
}
.voice-staff-image
{
    width:42%;
    margin-right:2%;
}
.voice-staff-read
{
    width:56%;
    text-align:left;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
ANIMATION
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/*# sourceMappingURL=maps/style.css.map */


/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
TOP NEW ARRIVALS SLIDE 20230508
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* Arrows */
.slick-prev,
.slick-next {
	position: absolute;
	display: block;
	height: 50px;
	width: 50px;
	line-height: 0px;
	cursor: pointer;
	background: #CCC;
	color: transparent;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: none;
	z-index: 2;
}
@media (max-width: 750px) {
	.slick-prev,
	.slick-next {
		height: 30px;
		width: 30px;
	}
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	outline: none;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 0.25;
}
.slick-prev {
	left: -25px;
	background: url("../images/top/arrow_left.png") no-repeat;
	background-size: contain!important;
}
.slick-next {
	right: -25px;
	background: url("../images/top/arrow_right.png") no-repeat;
	background-size: contain!important;
}
@media (max-width: 750px) {
	.slick-prev {
		left: 5px;
	}
	.slick-next {
		right: 5px;
	}
}
