@charset "UTF-8";
/** TOPページ **/
#top .p-top-about {
  padding-top: 160px;
  padding-bottom: 160px;
  background-image: url("../images/about_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #FFF;
}
#top .p-top-about .p-top-about__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#top .p-top-about .p-top-about__title {
  font-family: "Barlow", sans-serif;
  font-size: 6.4rem;
  margin-bottom: 74px;
  text-align: center;
  color: #FA0046;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #top .p-top-about .p-top-about__title {
    font-size: 3.2rem;
    margin-bottom: 50px;
  }
}
#top .p-top-about .p-top-about__catch {
  font-size: 4rem;
  margin-bottom: 48px;
  font-weight: 400;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  #top .p-top-about .p-top-about__catch {
    font-size: 2.8rem;
    line-height: 2;
    margin-bottom: 50px;
  }
}
#top .p-top-about .p-top-about__text {
  font-size: 1.8rem;
  line-height: 2.2;
  width: 100%;
  max-width: 854px;
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  #top .p-top-about .p-top-about__text {
    font-size: 1.5rem;
    line-height: 2.6;
    margin-bottom: 68px;
  }
}
#top .p-concept {
  background-image: url("../images/concept_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 240px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .p-concept {
    background-image: url("../images/concept_bg_sp.png");
    background-position: top;
    margin-bottom: 294px;
  }
}
#top .p-concept::before {
  content: "";
  position: absolute;
  top: 0vw;
  left: 0;
  background: #FFFFFF;
  width: 54%;
  height: 150px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #top .p-concept::before {
    width: 75%;
    height: 68px;
  }
}
#top .p-concept .p-concept__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 648px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__container {
    min-height: 704px;
    justify-content: flex-start;
  }
}
#top .p-concept .p-concept__catch {
  font-family: "Barlow", sans-serif;
  font-size: 7.2rem;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__catch {
    font-size: 3.2rem;
    margin-bottom: 110px;
  }
}
#top .p-concept .p-concept__title {
  font-size: 4rem;
  color: #FFF;
  margin-bottom: 32px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__title {
    font-size: 2.8rem;
    line-height: 2.2;
    margin-bottom: 66px;
  }
}
#top .p-concept .p-concept__wrap {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__wrap {
    flex-direction: column;
    gap: 68px;
    align-items: flex-start;
    margin-bottom: 46px;
  }
}
#top .p-concept .p-concept__text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
#top .p-concept .p-concept__button {
  display: inline-block;
  color: #000;
  background: #FFFFFF;
  padding: 20px 25px;
  width: 285px;
  position: relative;
  z-index: 1;
  text-decoration: none;
  transition: 0.5s;
  font-size: 1.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__button {
    font-size: 1.4rem;
  }
}
#top .p-concept .p-concept__button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #FA0046;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
#top .p-concept .p-concept__button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: inline-block;
  background: url("../images/icon_btn_arrow.svg") no-repeat;
  width: 8px;
  height: 15px;
  background-size: contain;
}
#top .p-concept .p-concept__button:hover {
  color: #fff;
}
#top .p-concept .p-concept__button:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
#top .p-concept .p-concept__advantage {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  transform: translateY(55px);
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__advantage {
    position: absolute;
    bottom: 110px;
    transform: translateY(100%);
    width: 100%;
  }
}
#top .p-concept .p-concept__advantage .p-concept__subTitle {
  display: flex;
  gap: 22px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__advantage .p-concept__subTitle {
    gap: 12px;
  }
}
#top .p-concept .p-concept__advantage .p-concept__subTitle span {
  font-family: "Barlow", sans-serif;
  font-size: 3.2rem;
  color: #FFF;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__advantage .p-concept__subTitle span {
    font-size: 2.4rem;
  }
}
#top .p-concept .p-concept__advantage .p-concept__subTitle::before, #top .p-concept .p-concept__advantage .p-concept__subTitle::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #FFF;
  align-self: center;
}
#top .p-concept .p-concept__advantage .p-concept__list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__advantage .p-concept__list {
    flex-direction: column;
    gap: 12px;
  }
}
#top .p-concept .p-concept__advantage .p-concept__item {
  flex: 1;
}
#top .p-concept .p-concept__advantage .p-concept__link {
  display: flex;
  height: 108px;
  padding: 30px 26px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  gap: 16px;
  background-color: #fff;
  width: 100%;
  color: #000;
  align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__advantage .p-concept__link {
    gap: 26px;
    height: 86px;
  }
}
#top .p-concept .p-concept__advantage .p-concept__link span {
  flex-grow: 1;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__advantage .p-concept__link span {
    font-size: 1.5rem;
  }
}
#top .p-concept .p-concept__advantage .p-concept__link::before {
  content: "";
  width: 46px;
  height: 46px;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #top .p-concept .p-concept__advantage .p-concept__link::before {
    width: 36px;
    height: 36px;
  }
}
#top .p-concept .p-concept__advantage .p-concept__link.p-concept__link--shinrai::before {
  background-image: url("../images/icon_btn_concept01.svg");
}
#top .p-concept .p-concept__advantage .p-concept__link.p-concept__link--risk::before {
  background-image: url("../images/icon_btn_concept02.svg");
}
#top .p-concept .p-concept__advantage .p-concept__link.p-concept__link--staff::before {
  background-image: url("../images/icon_btn_concept03.svg");
}
#top .p-concept .p-concept__advantage .p-concept__link::after {
  content: "";
  position: relative;
  display: inline-block;
  background: url("../images/icon_btn_arrow.svg") no-repeat;
  width: 8px;
  height: 15px;
  background-size: contain;
}
#top .p-concept .p-concept__advantage .p-concept__link:hover {
  box-shadow: none;
}

#contact .p-contact .p-contact__title {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #contact .p-contact .p-contact__title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }
}
#contact .p-contact .p-contact__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  #contact .p-contact .p-contact__text {
    font-size: 1.4rem;
    margin-bottom: 22px;
  }
}

#property .p-property__largeImage img {
  height: 490px;
}
@media screen and (max-width: 768px) {
  #property .p-property__largeImage img {
    height: 100%;
    aspect-ratio: 372/490;
  }
}

#concept .p-concept-intro {
  background-color: #6E6E6E;
  padding-top: 122px;
  padding-bottom: 126px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #concept .p-concept-intro {
    padding-top: 158px;
    padding-bottom: 158px;
  }
}
#concept .p-concept-intro .p-concept-intro__container {
  display: flex;
  flex-direction: column;
}
#concept .p-concept-intro .p-concept-intro__title {
  font-size: 6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 496px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #concept .p-concept-intro .p-concept-intro__title {
    font-size: 3.2rem;
    line-height: 2;
    margin-bottom: 416px;
  }
}
#concept .p-concept-intro .p-concept-intro__wrap {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 768px) {
  #concept .p-concept-intro .p-concept-intro__wrap {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
#concept .p-concept-intro .p-concept-intro__text {
  flex-grow: 1;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  #concept .p-concept-intro .p-concept-intro__text {
    font-size: 1.4rem;
    line-height: 2.8;
  }
}
#concept .p-concept-intro .p-concept-intro__slider {
  position: absolute;
  width: 100%;
  height: 466px;
  top: 164px;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, 0%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #concept .p-concept-intro .p-concept-intro__slider {
    height: 384px;
    top: 248px;
  }
}
#concept .p-concept-intro .p-concept-intro__slider [data-slider-track] {
  display: flex;
  will-change: transform;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #concept .p-concept-intro .p-concept-intro__slider [data-slider-track] {
    gap: 20px;
  }
}
#concept .p-concept-intro .p-concept-intro__slider img {
  height: 466px;
  width: auto;
  max-width: unset;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #concept .p-concept-intro .p-concept-intro__slider img {
    height: 384px;
  }
}

#policy .p-sitepolicy .p-sitepolicy__content {
  font-feature-settings: "palt";
}
#policy .p-sitepolicy .p-sitepolicy__content a {
  word-break: break-all;
}
#policy .p-sitepolicy .p-sitepolicy__content h2 {
  font-size: 2.6rem;
  margin: 4rem 0 2rem;
  padding: 0 0 10px 17px;
  border-bottom: 2px #9b9b9b solid;
  position: relative;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #policy .p-sitepolicy .p-sitepolicy__content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    padding: 0 0 10px 15px;
    border-bottom: 1px #4d4d4d solid;
  }
}
#policy .p-sitepolicy .p-sitepolicy__content h2::before {
  content: "";
  display: block;
  height: calc(100% - 22px);
  width: 6px;
  background: #fa0046;
  position: absolute;
  left: 0;
  top: 8px;
}
@media screen and (max-width: 768px) {
  #policy .p-sitepolicy .p-sitepolicy__content h2::before {
    height: calc(100% - 16px);
    width: 4px;
    left: 0;
    top: 4px;
  }
}
#policy .p-sitepolicy .p-sitepolicy__content h3 {
  margin: 4rem 0 2rem;
  padding: 15px 25px;
  background: #f6f3f3;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #policy .p-sitepolicy .p-sitepolicy__content h3 {
    margin: 2.5rem 0 1.5rem;
    padding: 5px 15px;
    font-size: 1.6rem;
  }
}
#policy .p-sitepolicy .p-sitepolicy__content strong {
  font-weight: 700;
}
#policy .p-sitepolicy .p-sitepolicy__content p {
  line-height: 1.75;
  margin: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  #policy .p-sitepolicy .p-sitepolicy__content p {
    line-height: 1.75;
    margin: 1.5rem 0;
  }
}
#policy .p-sitepolicy .p-sitepolicy__content ol {
  margin: 20px 0 50px 0;
}
@media screen and (max-width: 768px) {
  #policy .p-sitepolicy .p-sitepolicy__content ol {
    margin: 10px 0 30px 0;
  }
}
#policy .p-sitepolicy .p-sitepolicy__content ol li {
  list-style: none;
  counter-increment: parenthesis;
  line-height: 1.5;
  margin-bottom: 0.5em;
  padding-left: 2.25em;
  position: relative;
}
#policy .p-sitepolicy .p-sitepolicy__content ol li::before {
  content: "（" counter(parenthesis) "） ";
  position: absolute;
  left: 0;
  top: 0;
}
