@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  /*display: none;*/
}

.slick-arrow.slick-hidden:before {
  color: #cccccc;
  opacity: 1;
  cursor: default;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../images/fonts/slick.eot");
  src: url("../images/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../images/fonts/slick.woff") format("woff"), url("../images/fonts/slick.ttf") format("truetype"), url("../images/fonts/slick.svg#slick") format("svg");
}
/************************ Arrows ************************/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  width: 45px;
  height: 45px;
  margin-top: -23px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slick-prev:hover,
.slick-next:hover {
  background: #e86b6a;
}
.slick-prev.slick-hidden,
.slick-next.slick-hidden {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.slick-prev:before {
  left: 50%;
  margin-left: -4px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}

.slick-next:before {
  right: 50%;
  margin-right: -4px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.slick-prev {
  left: -30px;
}

[dir=rtl] .slick-prev {
  right: -30px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -30px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -30px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/************************ Dots ************************/
.slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  font-size: 0;
  display: block;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: #eeeeee;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #e86b6a;
}

.slick-dots li.slick-active button {
  background: #e86b6a;
}

/* メインビジュアル */
.p-main-visual {
  margin: 0 auto;
  padding: 0 0 45px 0;
  width: 100%;
  max-width: 1920px;
  max-height: 950px;
  overflow: hidden;
  --imgWidth: 1500;
  --imgHeight: 715;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
}
@media only screen and (max-width: 1530px) {
  .p-main-visual {
    --imgHeight: 775;
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
  }
}
@media only screen and (max-width: 990px) {
  .p-main-visual {
    padding: 0 0 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-main-visual {
    background: #ffffff;
    --imgWidth: 750;
    --imgHeight: 1200;
    --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: calc(var(--imgShowHeight) + 45px);
  }
}
.p-main-visual .slick-prev {
  left: 60px;
}
.p-main-visual .slick-next {
  right: 60px;
}
.p-main-visual .slick-dots {
  left: auto;
  right: 60px;
  bottom: -15px;
}
@media only screen and (max-width: 990px) {
  .p-main-visual .slick-dots {
    right: 10px;
  }
}
.p-main-visual .slick-dots li {
  margin: 0 7px;
}
.p-main-visual .slick-dots li button {
  width: 15px;
  height: 15px;
  background: transparent;
  border-bottom: 1px solid #bbbbbb;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-main-visual .slick-dots li.slick-active button {
  border-bottom-color: #000000;
}

.p-main-visual-link {
  position: relative;
}

.p-main-visual__img {
  position: relative;
}
.p-main-visual__img img {
  width: 100%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.p-main-visual__img:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}
@media only screen and (max-width: 990px) {
  .p-main-visual__img:before {
    border-radius: 0;
  }
}

.p-main-visual-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 45px;
  left: 60px;
  z-index: 1;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt {
    bottom: 30px;
    left: 20px;
  }
}

.p-main-visual-txt__ttl-main {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  font-size: 3.75rem;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1530px) {
  .p-main-visual-txt__ttl-main {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt__ttl-main {
    font-size: 2.5rem;
  }
}
.p-main-visual-txt__ttl-main:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  margin-top: 6px;
  width: 0px;
  height: 1px;
  background: #ffffff;
  -webkit-animation: fvTextLine 1s cubic-bezier(1, 0.2, 0.2, 1) forwards;
          animation: fvTextLine 1s cubic-bezier(1, 0.2, 0.2, 1) forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt__ttl-main:before {
    content: none;
  }
}
.p-main-visual-txt__ttl-main br {
  display: none;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt__ttl-main br {
    display: inline;
  }
}

@-webkit-keyframes fvTextLine {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}

@keyframes fvTextLine {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}
.p-main-visual-txt__ttl-sub {
  display: block;
  font-size: 2.25rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 1px #000000;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt__ttl-sub {
    font-size: 1.375rem;
  }
}

.p-main-visual-bg {
  overflow: hidden;
  padding-bottom: 30px;
  width: 100%;
  max-height: 950px;
  --imgWidth: 1500;
  --imgHeight: 745;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
  height: var(--imgShowHeight);
}
@media only screen and (max-width: 990px) {
  .p-main-visual-bg {
    padding-bottom: 0;
    --imgWidth: 1500;
    --imgHeight: 775;
    height: var(--imgShowHeight);
  }
}
@media screen and (max-width: 767px) {
  .p-main-visual-bg {
    background: #ffffff;
    --imgWidth: 750;
    --imgHeight: 1310;
    --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
    height: var(--imgShowHeight);
  }
}

.js-line-txt span {
  opacity: 0;
  display: inline-block;
  -webkit-animation: eachTxt 0.2s cubic-bezier(1, 0.2, 0.2, 1) forwards;
          animation: eachTxt 0.2s cubic-bezier(1, 0.2, 0.2, 1) forwards;
}

.js-line-txt:nth-of-type(1) span:nth-of-type(1) {
  -webkit-animation-delay: 0.03s;
          animation-delay: 0.03s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(2) {
  -webkit-animation-delay: 0.06s;
          animation-delay: 0.06s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(3) {
  -webkit-animation-delay: 0.09s;
          animation-delay: 0.09s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(4) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(5) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(6) {
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(7) {
  -webkit-animation-delay: 0.21s;
          animation-delay: 0.21s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(8) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(9) {
  -webkit-animation-delay: 0.27s;
          animation-delay: 0.27s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(10) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(11) {
  -webkit-animation-delay: 0.33s;
          animation-delay: 0.33s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(12) {
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(13) {
  -webkit-animation-delay: 0.39s;
          animation-delay: 0.39s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(14) {
  -webkit-animation-delay: 0.42s;
          animation-delay: 0.42s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(15) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(16) {
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(17) {
  -webkit-animation-delay: 0.51s;
          animation-delay: 0.51s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(18) {
  -webkit-animation-delay: 0.54s;
          animation-delay: 0.54s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(19) {
  -webkit-animation-delay: 0.57s;
          animation-delay: 0.57s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(20) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(21) {
  -webkit-animation-delay: 0.63s;
          animation-delay: 0.63s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(22) {
  -webkit-animation-delay: 0.66s;
          animation-delay: 0.66s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(23) {
  -webkit-animation-delay: 0.69s;
          animation-delay: 0.69s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(24) {
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(25) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(26) {
  -webkit-animation-delay: 0.78s;
          animation-delay: 0.78s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(27) {
  -webkit-animation-delay: 0.81s;
          animation-delay: 0.81s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(28) {
  -webkit-animation-delay: 0.84s;
          animation-delay: 0.84s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(29) {
  -webkit-animation-delay: 0.87s;
          animation-delay: 0.87s;
}
.js-line-txt:nth-of-type(1) span:nth-of-type(30) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@-webkit-keyframes eachTxt {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes eachTxt {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.p-top-topics-list {
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 990px) {
  .p-top-topics-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-top-topics-list {
  padding-bottom: 20px;
}
@media only screen and (max-width: 990px) {
  .p-top-topics-list {
    padding-bottom: 20px;
  }
}

.p-top-topics-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 0.75rem;
}
@media only screen and (max-width: 990px) {
  .p-top-topics-list__item {
    display: block;
  }
}

.p-top-topics-list__date {
  width: 120px;
}

.p-top-topics-list__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/***** TOP About *****/
.p-top-about {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 990px) {
  .p-top-about {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.p-top-about__ttl {
  margin-bottom: 30px;
  font-size: 1.875rem;
  font-weight: normal;
  font-family: YakuHanMPs, "Noto Serif JP", serif;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .p-top-about__ttl {
    font-size: 1.3125rem;
  }
}

.p-top-about__body {
  line-height: 2;
  text-align: center;
}

.p-top-about__br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-about__br {
    display: inline;
  }
}

/***** TOP Concept *****/
.p-top-concept {
  margin: 0 auto;
  max-width: 1920px;
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .p-top-concept {
    padding-bottom: 0;
  }
}

.p-top-concept__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-concept__wrap {
    display: block;
    overflow: hidden;
  }
}
.p-top-concept__wrap:before {
  content: "";
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: -1;
  background: #e6ede9;
  width: calc(100% - 60px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-concept__wrap:before {
    left: 20px;
    width: calc(100% - 20px);
  }
}

.p-top-concept__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-concept__img {
    margin-right: 20px;
    width: auto;
  }
}
.p-top-concept__img img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 640px;
}

.p-top-concept__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 120px;
  padding-left: 60px;
  padding-right: 60px;
  width: 50%;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__txt {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-concept__txt {
    padding: 45px 50px 60px 50px;
    width: auto;
  }
}

.p-top-concept__ttl {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 300;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__ttl {
    font-size: 1rem;
  }
}

.p-top-concept__copy {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: YakuHanMPs, "Noto Serif JP", serif;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__copy {
    font-size: 1.3125rem;
  }
}

.p-top-concept__body {
  line-height: 2;
  max-width: 480px;
}
@media screen and (max-width: 767px) {
  .p-top-concept__body {
    max-width: inherit;
  }
}

.p-top-concept__link {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: right;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__link {
    margin-top: 45px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-concept__link {
    text-align: center;
  }
}

@media screen and (max-width: 1200px) {
  .p-top-concept__br {
    display: none;
  }
}

/***** TOP WORKS *****/
.p-top-works {
  position: relative;
  padding-top: 90px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media only screen and (max-width: 990px) {
  .p-top-works {
    padding-top: 75px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 1530px) {
  .p-top-works .u-container {
    margin-left: 60px;
    margin-right: 60px;
    padding: 0;
    width: auto;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-works .u-container {
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;
  }
}
.p-top-works::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 60px;
  z-index: -1;
  background: #eae8e5;
  width: calc(100% - 60px);
  height: calc(100% - 220px);
}
@media screen and (max-width: 767px) {
  .p-top-works::before {
    top: 280px;
    left: 0;
    width: 100%;
    height: calc(100% - 280px);
  }
}

.p-top-ttl {
  margin-bottom: 45px;
  font-size: 1.875rem;
  font-weight: 300;
}
@media only screen and (max-width: 990px) {
  .p-top-ttl {
    margin-bottom: 30px;
    text-align: center;
  }
}
.p-top-ttl span {
  display: inline-block;
  position: relative;
}
.p-top-ttl span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -110px;
  width: 100px;
  height: 1px;
  background: #000000;
}
@media only screen and (max-width: 990px) {
  .p-top-ttl span:before {
    content: none;
  }
}

.p-top-works__wrap {
  margin: 0 auto;
  max-width: 1380px;
}
@media screen and (max-width: 1600px) {
  .p-top-works__wrap {
    margin: 0 120px;
  }
}
@media only screen and (max-width: 1530px) {
  .p-top-works__wrap {
    margin: 0 60px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-works__wrap {
    margin: 0 20px;
  }
}

.p-top-works-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eae8e5;
}
@media screen and (max-width: 767px) {
  .p-top-works-main {
    display: block;
  }
}

.p-top-works-main__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.p-top-works-main__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 390px;
}
@media only screen and (max-width: 990px) {
  .p-top-works-main__img img {
    height: 330px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works-main__img img {
    height: auto;
  }
}

.p-top-works-main__txt {
  width: 390px;
  padding: 45px;
}
@media only screen and (max-width: 990px) {
  .p-top-works-main__txt {
    padding: 30px;
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works-main__txt {
    width: auto;
  }
}

.p-top-works-main__ttl {
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: normal;
  font-size: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-works-main__ttl {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.125rem;
  }
}

.p-top-works-main__body {
  line-height: 2;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-works-main__body {
    font-size: 0.875rem;
  }
}

.p-top-works-main__link {
  margin-top: 30px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-works-main__link {
    text-align: center;
  }
}

.p-top-works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 45px;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 767px) {
  .p-top-works-list {
    display: block;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-top-works-list__item {
  padding-left: 20px;
  padding-right: 20px;
  width: 33.3333%;
}
@media screen and (max-width: 767px) {
  .p-top-works-list__item {
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works-list__item:last-child {
    margin-bottom: 0;
  }
}

.p-top-works-list__img {
  overflow: hidden;
}

.p-top-works-list__link {
  display: block;
  margin-top: 15px;
  padding-right: 60px;
  background: url(../images/more-s.svg) no-repeat right 5px center;
  background-size: 45px;
}
@media screen and (max-width: 767px) {
  .p-top-works-list__link {
    font-size: 1rem;
  }
}
.p-top-works-list__link:hover {
  text-decoration: none;
  background-position: right center;
}

/***** TOP Gallery *****/
.p-top-gallery {
  overflow: hidden;
  padding-top: 60px;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery {
    padding: 45px 20px 60px 20px;
  }
}

.p-top-gallery__ttl {
  margin-bottom: 45px;
  font-size: 1.875rem;
  font-weight: 300;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery__ttl {
    margin-bottom: 30px;
  }
}
.p-top-gallery__ttl span {
  display: block;
  font-size: 0.875rem;
  color: #696969;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery__ttl span {
    display: none;
  }
}

.p-top-gallery__wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1500px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1600px) {
  .p-top-gallery__wrap {
    margin: 0 60px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-gallery__wrap {
    margin: 0;
    padding-bottom: 0;
  }
}
.p-top-gallery__wrap:before {
  content: "";
  position: absolute;
  top: 120px;
  left: 120px;
  z-index: -1;
  background: #e6ede9;
  width: 100vw;
  height: 100%;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery__wrap:before {
    top: 60px;
    left: 30px;
    width: calc(100vw - 50px);
  }
}

.p-top-gallery__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.p-top-gallery-latest {
  padding-right: 15px;
  width: 50%;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-latest {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 510px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-latest {
    margin-bottom: 30px;
  }
}

.p-top-gallery-other {
  padding-left: 15px;
  width: 50%;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-other {
    padding-left: 0;
    width: auto;
  }
}

.p-top-gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-list {
    margin-top: 0;
    margin-left: -5px;
    margin-right: -5px;
  }
}

.p-top-gallery-list__item {
  margin-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  width: 50%;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-list__item {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.p-top-gallery-list__item:first-child {
  display: none;
}

.p-top-gallery-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-list__head {
    display: block;
    margin-top: 5px;
  }
}
.p-top-gallery-list__head.is-latest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-gallery-list__ttl {
  font-size: 0.875rem;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-list__ttl {
    font-size: 0.75rem;
  }
}
.p-top-gallery-list__ttl.is-latest {
  font-size: 1.125rem;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-list__ttl.is-latest {
    font-size: 0.875rem;
  }
}

.p-top-gallery-list__category {
  display: block;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery-list__category {
    margin-top: 5px;
    text-align: right;
  }
}
.p-top-gallery-list__category.is-latest {
  margin-top: 0;
}

.p-top-gallery-list__category-in {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #000000;
  font-size: 0.625rem;
}

.p-top-gallery__link {
  margin-top: 15px;
  text-align: right;
}
@media only screen and (max-width: 990px) {
  .p-top-gallery__link {
    margin-top: 30px;
    text-align: center;
  }
}

/***** TOP Company *****/
.p-top-company {
  position: relative;
  margin-top: 120px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 990px) {
  .p-top-company {
    margin-top: 75px;
    padding-bottom: 30px;
  }
}
.p-top-company:before {
  content: "";
  position: absolute;
  top: 150px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 150px);
  background: #eae8e5;
}
@media screen and (max-width: 767px) {
  .p-top-company:before {
    top: 42vw;
    height: calc(100% - 42vw);
  }
}

.p-top-company__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1500px;
}
@media screen and (max-width: 1600px) {
  .p-top-company__wrap {
    margin: 0 60px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-company__wrap {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__wrap {
    display: block;
    margin: 0 50px;
  }
}

.p-top-company__img {
  padding-right: 45px;
  width: 50%;
  text-align: right;
}
@media only screen and (max-width: 990px) {
  .p-top-company__img {
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__img {
    padding-right: 0;
    width: auto;
    text-align: center;
  }
}

.p-top-company__img-in {
  margin-left: auto;
  width: 435px;
}
@media only screen and (max-width: 990px) {
  .p-top-company__img-in {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__img-in {
    width: auto;
    text-align: center;
  }
}
.p-top-company__img-in img {
  width: 435px;
}
@media only screen and (max-width: 990px) {
  .p-top-company__img-in img {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__img-in img {
    width: auto;
  }
}

.p-top-company__txt {
  padding-top: 60px;
  padding-left: 15px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-company__txt {
    padding: 30px 0;
    width: auto;
  }
}

.p-top-company__ttl {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-top-company__ttl {
    margin-bottom: 20px;
    font-size: 1.3125rem;
  }
}

.p-top-company__copy {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-family: YakuHanMPs, "Noto Serif JP", serif;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-top-company__copy {
    margin-bottom: 20px;
    font-size: 1.3125rem;
  }
}

.p-top-company__body {
  line-height: 2;
}

.p-top-company__link {
  margin-top: 30px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-company__link {
    margin-top: 45px;
    text-align: center;
  }
}

/***** TOP ブログ *****/
.p-top-blog {
  margin: 0 auto;
  padding-top: 105px;
  padding-bottom: 105px;
  max-width: 1500px;
}
@media screen and (max-width: 1600px) {
  .p-top-blog {
    margin: 0 60px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-blog {
    margin: 0 20px;
    padding-top: 75px;
    padding-bottom: 60px;
  }
}

.p-top-blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}
@media only screen and (max-width: 990px) {
  .p-top-blog-list {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-blog-list {
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }
}

.p-top-blog-list__item {
  padding-left: 25px;
  padding-right: 25px;
  width: 33.3333%;
}
@media only screen and (max-width: 990px) {
  .p-top-blog-list__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-blog-list__item {
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

.p-top-blog-list__img {
  margin-bottom: 15px;
}

.p-top-blog-list__ttl {
  margin-bottom: 10px;
  font-size: 0.9375rem;
}
@media only screen and (max-width: 990px) {
  .p-top-blog-list__ttl {
    margin-bottom: 5px;
    font-size: 0.8125rem;
  }
}

.p-top-blog-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.875rem;
  color: #696969;
}
@media screen and (max-width: 767px) {
  .p-top-blog-list-head {
    font-size: 0.75rem;
  }
}

.p-top-blog-list__link {
  margin-top: 45px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-blog-list__link {
    text-align: center;
  }
}

/***** TOP お知らせ *****/
.p-top-news {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #e6ede9;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-top-news__ttl {
  font-size: 1.875rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-top-news__ttl {
    margin-bottom: 30px;
  }
}

.p-top-news__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news__wrap {
    display: block;
  }
}

.p-top-news__ttl {
  width: 210px;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .p-top-news__ttl {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__ttl {
    width: auto;
    text-align: center;
  }
}

.p-top-news__btn {
  position: absolute;
  bottom: 20px;
  left: 15px;
}
@media screen and (max-width: 767px) {
  .p-top-news__btn {
    position: static;
    margin-top: 45px;
    text-align: center;
  }
}

.p-top-build {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.p-top-build:before {
  content: "";
  position: absolute;
  top: 110px;
  right: 0;
  z-index: -1;
  background: #edf5f0;
  width: calc(50% + 750px);
  height: calc(100% - 150px);
}
@media screen and (max-width: 1600px) {
  .p-top-build:before {
    right: auto;
    left: 30px;
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 1530px) {
  .p-top-build:before {
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100% - 115px);
  }
}
.p-top-rental {
  position: relative;
  padding: 30px 0 60px;
  overflow: hidden;
}
.p-top-rental:before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -1;
  background: #f2f0ed;
  width: calc(50% + 750px);
  height: calc(100% - 120px);
}
@media screen and (max-width: 1600px) {
  .p-top-rental:before {
    left: auto;
    right: 30px;
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 1530px) {
  .p-top-rental:before {
    top: 45px;
    right: 0;
    width: 100%;
    height: calc(100% - 85px);
  }
}
.p-top-build-wrap {
  margin: 0 auto;
  max-width: 1380px;
}
@media screen and (max-width: 1600px) {
  .p-top-build-wrap {
    margin: 0 120px;
  }
}
@media only screen and (max-width: 1530px) {
  .p-top-build-wrap {
    margin: 0 60px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-build-wrap {
    margin: 0 20px;
  }
}

.p-top-build-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(6, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (max-width: 1530px) {
  .p-top-build-list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-build-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-build-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}

.p-top-build-list__img {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-build-list__img {
    width: auto;
  }
}
.p-top-build-list__img:before {
  content: "";
  display: block;
  padding-bottom: 61.72%;
  background: #f5f5f5;
}
.p-top-build-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 61.72%;
  width: 100%;
  height: 0;
  text-align: center;
}
.p-top-build-list__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.p-top-build-list__body {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-top-build-list__body {
    margin-top: 10px;
  }
}
.p-top-build-list__body.is-rental {
  margin-top: 10px;
}

.p-top-build-list__category {
  display: inline-block;
  margin-right: 5px;
  padding: 0 5px;
  border: 1px solid #000000;
  background: #fff;
  font-size: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-build-list__category {
    font-size: 0.75rem;
  }
}

.p-top-build-list__name {
  margin-top: 4px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-build-list__name {
    margin-top: 6px;
    font-size: 0.9375rem;
  }
}

.p-top-build-list__price {
  margin-top: 4px;
  font-size: 0.875rem;
  color: #c85078;
}
@media screen and (max-width: 767px) {
  .p-top-build-list__price {
    margin-top: 5px;
    font-size: 0.9375rem;
  }
}

.p-top-build-list__data {
  font-size: 0.75rem;
  color: #999;
}
@media screen and (max-width: 767px) {
  .p-top-build-list__data {
    margin-top: 5px;
  }
}

.p-top-build-list__data__item {
  display: inline;
  position: relative;
}
.p-top-build-list__data__item:not(:first-child)::before {
  color: #ccc;
  content: "／";
}

.p-top-build-list__copy {
  margin-top: 5px;
  font-size: 0.75rem;
  color: #009094;
}
@media screen and (max-width: 767px) {
  .p-top-build-list__copy {
    font-size: 0.875rem;
  }
}

.p-top-build-rental__c-btn {
  margin-top: 25px;
  text-align: center;
}

.p-top-company-staff__ttl {
  margin-top: 45px;
  font-size: 1.125rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-top-company-staff__ttl {
    margin-top: 30px;
    font-size: 1.3125rem;
  }
}

.p-top-company-staff-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-top-company-staff-list {
    margin-left: -35px;
    margin-right: -35px;
  }
}

.p-top-company-staff-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: calc(50% - 15px);
}
.p-top-company-staff-list__item:not(:first-child) {
  margin-left: 30px;
}
@media screen and (max-width: 1230px) {
  .p-top-company-staff-list__item {
    display: block;
    margin: 0 auto;
  }
}

.p-top-company-staff-list__img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .p-top-company-staff-list__img {
    margin: 0 auto;
  }
}

.p-top-company-staff-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 15px;
}
@media screen and (max-width: 1230px) {
  .p-top-company-staff-list__body {
    margin-top: 15px;
    margin-left: 0;
  }
}

.p-top-company-staff-list__name {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-company-staff-list__name {
    text-align: center;
  }
}

.p-top-company-staff-list__txt {
  margin-top: 15px;
  font-size: 0.75rem;
}

.p-top-bnr {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-top-bnr {
    margin-top: 75px;
  }
}

.p-top-bnr-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 1530px) {
  .p-top-bnr-list {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-bnr-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.p-top-bnr-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 120px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-top-bnr-list__link::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #45916e;
  mix-blend-mode: multiply;
  content: "";
}
.p-top-bnr-list__link::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: #45916e;
  opacity: 0.4;
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-top-bnr-list__link.is-vacant {
  background: url(/images/top-bnr-list__link__bg-vacant.jpg) no-repeat;
  background-size: cover;
}
.p-top-bnr-list__link.is-inheritance {
  background: url(/images/top-bnr-list__link__bg-inheritance.jpg) no-repeat;
  background-size: cover;
}
.p-top-bnr-list__link.is-inheritance::before {
  background: #3d518c;
}
.p-top-bnr-list__link.is-inheritance::after {
  background: #3d518c;
  opacity: 0.5;
}
.p-top-bnr-list__link:hover {
  text-decoration: none;
}
.p-top-bnr-list__link:hover::after {
  opacity: 0.8;
}

.p-top-bnr-list__ttl {
  position: relative;
  z-index: 2;
  font-size: 1.75rem;
  color: #fff;
}
@media only screen and (max-width: 990px) {
  .p-top-bnr-list__ttl {
    font-size: 1.25rem;
  }
}
.p-top-bnr-list__ttl span {
  color: #ffff73;
}

.p-top-bnr-list__txt {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-size: 0.9375rem;
  color: #fff;
}
@media only screen and (max-width: 990px) {
  .p-top-bnr-list__txt {
    font-size: 0.875rem;
  }
}
.p-top-bnr-list__txt i {
  color: #ffff73;
}

.p-top-build-topics-list {
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 990px) {
  .p-top-build-topics-list {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}

.p-top-build-topics-list__item {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-top-build-topics-list__item:not(:first-child) {
    padding-top: 10px;
  }
}

.p-top-build-topics-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-build-topics-list__link {
    display: block;
  }
}
.p-top-build-topics-list__link:hover {
  text-decoration: none;
}
.p-top-build-topics-list__link:hover .p-top-build-topics-list__date, .p-top-build-topics-list__link:hover .p-top-build-topics-list__ttl, .p-top-build-topics-list__link:hover .p-top-build-topics-list__tagline {
  color: #666666;
  text-decoration: underline;
}
.p-top-build-topics-list__link:hover .p-top-build-topics-list__category {
  background: #000000;
  color: #ffffff;
}

.p-top-build-topics-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-build-topics-list__date {
  width: 120px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 990px) {
  .p-top-build-topics-list__date {
    width: 100px;
  }
}

.p-top-build-topics-list__category {
  display: inline-block;
  min-width: 55px;
  padding: 0 5px;
  border: 1px solid #000000;
  background: #fff;
  font-size: 0.625rem;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-build-topics-list__category {
    font-size: 0.75rem;
  }
}

.p-top-build-topics-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-build-topics-list__body {
    margin-left: 0;
    margin-top: 5px;
  }
}

.p-top-build-topics-list__ttl {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-top-build-topics-list__tagline {
  display: inline;
  position: relative;
  padding-left: 1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-top-build-topics-list__tagline::before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #cccccc;
  content: "";
}