@charset "utf-8";
/* common
-------------------------------------------------------------- */


/* loading
-------------------------------------------------------------- */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.loading .logo {
  opacity: 0;
}
.loading.is-show .logo {
  animation: loadingLogoIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.loading.is-hide .logo {
  animation: loadingLogoOut 0.8s ease forwards;
}
.loading.is-end {
  animation: loadingFadeOut 0.8s ease forwards;
  pointer-events: none;
}
@keyframes loadingLogoIn {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loadingLogoOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}
@keyframes loadingFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

body.is-loading {
  overflow: hidden;
}

/* mv
-------------------------------------------------------------- */
body.is-loading #mv {
  opacity: 0;
}
body.is-loaded #mv {
  opacity: 1;
  transition: opacity 0.8s ease;
}
@media screen and (max-width: 767px) {
  .loading .logo img {
    max-width: 160px;
  }
}
#mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
}
#mv .logo {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
#mv .sliderWrap,
#mv .swiper,
#mv .swiper-wrapper,
#mv .swiper-slide {
  width: 100%;
  height: 100%;
  min-height: 0;
}
#mv .swiper-slide {
  position: relative;
  overflow: hidden;
}
#mv .swiper-slide figure {
  width: 100%;
  height: 100%;
}
#mv .swiper-slide .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  #mv {
    height: auto;
    aspect-ratio: 1080 / 810;
  }
  #mv .logo img {
    max-width: 200px;
  }
}

/* about
-------------------------------------------------------------- */
#about {
  position: relative;
  padding: 100px 0;
  background: var(--lightgray);
  overflow: hidden;
}
#about h2 {
  margin-bottom: 90px;
  color: var(--white);
}
#about .txtArea {
  margin: auto;
  max-width: 680px;
  text-align: center;
}
#about .txtArea p {
  padding-bottom: 30px;
}
#about .btnWrap {
  margin: 50px auto 0;
  gap: 20px 40px;
  max-width: 640px;
}
#about .btnWrap li {
  width: calc(50% - 20px);
}
@media (max-width: 767px) {
  #about {
    padding: 50px 0;
  }
  #about h2 {
    margin-bottom: 40px;
  }
  #about .txtArea {
    margin: auto;
    max-width: 680px;
    text-align: center;
  }
  #about .txtArea p {
    padding-bottom: 30px;
  }
  #about .btnWrap {
    margin: 30px auto 0;
    gap: 20px;
    max-width: 300px;
  }
  #about .btnWrap li {
    width: 100%;
  }
  #about .btn a {
    max-width: 300px;
  }
}
/* linkArea
-------------------------------------------------------------- */
#linkArea {
  padding: 100px 0 60px;
}
#linkArea .linkBox {
  position: relative;
  width: 50%;
}
#linkArea .linkBox.real-estate {
  background: var(--lightgray);
}
#linkArea .linkBox.reform {
  background: var(--lightyellow);
}
#linkArea .linkBox .catch {
  position: absolute;
  top: -40px;
  right: 30px;
  height: 300px;
  writing-mode: vertical-rl;
  z-index: 5;
}
#linkArea .linkBox .catch span {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
#linkArea .linkBox .catch span:first-of-type {
  padding: 20px 15px 20px 10px;
}
#linkArea .linkBox .catch span:last-of-type {
  padding: 20px 10px 20px 15px;
}
#linkArea .linkBox figure {
  position: relative;
  margin: 0;
}
#linkArea .linkBox figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  z-index: 1;
}
#linkArea .linkBox figcaption span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
}
#linkArea .linkBox p {
  padding: 20px 30px;
  line-height: 2;
}
@media (max-width: 960px) {
  #linkArea .linkBox .catch {
    right: 20px;
    height: 300px;
  }
  #linkArea .linkBox .catch span {
    font-size: 1.8rem;
  }
  #linkArea .linkBox .catch span:first-of-type {
    padding: 15px 10px 15px 5px;
  }
  #linkArea .linkBox .catch span:last-of-type {
    padding: 15px 5px 15px 10px;
  }
  #linkArea .linkBox figcaption {
    padding: 15px;
    font-size: 3.2rem;
  }
  #linkArea .linkBox figcaption span {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  #linkArea {
    padding: 50px 0;
  }
  #linkArea .linkBox {
    width: 100%;
  }
  #linkArea .linkBox .catch {
    position: absolute;
    top: -20px;
    height: 300px;
  }
  #linkArea .linkBox .catch span {
    font-size: 1.6rem;
  }
  #linkArea .linkBox figcaption {
    font-size: 2.6rem;
  }
  #linkArea .linkBox p {
    padding: 10px 20px;
  }
}

/* news
-------------------------------------------------------------- */
#news .container {
  padding-bottom: 60px;
  margin-bottom: 100px;
  justify-content: space-between;
  border-bottom: 1px solid var(--brown);
}
#news .ttlArea {
  width: 280px;
}
#news .ttlArea h2 {
  padding-bottom: 50px;
}
#news .postArea {
  width: calc(100% - 340px);
}
#news .postArea > li {
  border-bottom: 1px solid var(--lightgray);
}
#news .postArea li a {
  padding: 10px 0;
  align-items: center;
  gap: 10px;
}
#news .postArea li .cat {
  gap: 5px;
}
#news .postArea li .cat li {
  padding: 6px 10px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
#news .postArea li .date {
  color: var(--brown);
  font-weight: 700;
}
#news .postArea li .ttl {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  #news .container {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  #news .ttlArea {
    width: 100%;
    text-align: center;
  }
  #news .ttlArea h2 {
    padding-bottom: 30px;
  }
  #news .btn {
    width: 100%;
  }
  #news .btn a {
    margin: 30px auto 0;
  }
  #news .postArea {
    width: 100%;
  }
}

/* column
-------------------------------------------------------------- */
#column .container {
  padding-bottom: 60px;
  margin-bottom: 100px;
  justify-content: space-between;
  border-bottom: 1px solid var(--brown);
}
#column .ttlArea {
  width: 350px;
}
#column .ttlArea h2 {
  padding-bottom: 50px;
}
#column .postArea {
  width: calc(100% - 410px);
}
#column .postArea > li {
  border-bottom: 1px solid var(--lightgray);
}
#column .postArea li a {
  padding: 20px 0;
  justify-content: space-between;
  align-items: flex-start;
}
#column .postArea li .eyecatch {
  width: 32%;
  background-color: var(--lightgray);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 22 / 15;
}
#column .postArea li .txtArea {
  align-items: center;
  gap: 10px;
  width: 65%;
}
#column .postArea li .cat {
  gap: 5px;
}
#column .postArea li .cat li {
  padding: 6px 10px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
#column .postArea li .date {
  color: var(--brown);
  font-weight: 700;
}
#column .postArea li .ttl {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 700;
}
#column .postArea li .txt {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  #column .container {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  #column .ttlArea {
    width: 100%;
    text-align: center;
  }
  #column .ttlArea h2 {
    padding-bottom: 10px;
  }
  #column .btn {
    width: 100%;
  }
  #column .btn a {
    margin: 30px auto 0;
  }
  #column .postArea {
    width: 100%;
  }
  #column .postArea li .eyecatch {
    margin-bottom: 10px;
    width: 100%;
  }
  #column .postArea li .txtArea {
    width: 100%;
  }
  #column .postArea li .ttl {
    font-size: 1.6rem;
  }
}

/* igArea
-------------------------------------------------------------- */
.igArea {
  padding: 60px 0;
  background: var(--brown);
  text-align: center;
}
.igArea .ico {
  margin-bottom: 50px;
}
.igArea .igWrap {
  overflow: hidden;
}
.igArea .btn a {
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .igArea {
    padding: 30px 0;
  }
  .igArea .ico {
    margin-bottom: 30px;
  }
  .igArea .btn a {
    margin: 20px auto 0;
  }
}
/* voice
-------------------------------------------------------------- */
#voice {
  padding: 120px 0;
  background: url(../img/index/voice_bg.jpg) no-repeat center / cover;
}
#voice h2 {
  text-align: center;
  color: var(--white);
}
#voice .btn a {
  margin: 80px auto 0;
}
@media (max-width: 767px) {
  #voice {
    padding: 60px 0;
  }
  #voice .btn a {
    margin: 40px auto 0;
  }
}

/* staff
-------------------------------------------------------------- */
#staff {
  padding: 120px 0;
  background: var(--lightgray);
}
#staff h2 {
  color: var(--brown);
}
#staff .btn a {
  margin: auto;
}
#staff .sliderWrap {
  position: relative;
  padding: 100px 0;
  padding-left: calc((100% - 1100px) / 2);
  overflow: hidden;
}
#staff .staffSwiper {
  overflow: visible;
}
#staff .swiper-slide {
  width: 340px;
  overflow: hidden;
  border-radius: 30px;
}
.card {
  position: relative;
}
.card a {
  display: block;
}
.card a:hover {
  opacity: 1;
}
.card .eyecatch {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 350 / 307;
}
.card .eyecatch.no-image {
  background: var(--lightyellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.card a:hover .eyecatch {
  opacity: 0.7;
}
.card .info {
  padding: 30px;
  background: var(--white);
}
.card a:hover .info {
  background: var(--white);
}
.card .role {
  position: relative;
  padding-bottom: 5px;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
}
.card .title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#staff .swiper-controller {
  padding-top: 100px;
  width: min(1100px, calc(100% - 40px));
}
#staff .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}
#staff .swiper-pagination-bullet {
  flex: 1;
  min-width: 28px;
  max-width: 30px;
  height: 5px;
  margin: 0 !important;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}
#staff .swiper-pagination-bullet-active {
  background: var(--gold);
  max-width: 60px;
}
@media (max-width: 1200px) {
  #staff .sliderWrap {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  #staff {
    padding: 60px 0;
  }
  #staff .btn {
    padding-top: 40px;
  }
  #staff .sliderWrap {
    padding: 30px 0 0 0;
  }
  #staff .sliderWrap::after {
    width: 45%;
    height: 75%;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
  }
  #staff .swiper-slide {
    width: 250px;
    border-radius: 15px;
  }
  .card .info {
    padding: 20px 30px 40px;
  }
  .card .role {
    font-size: 1.3rem;
  }
  .card .title {
    font-size: 1.6rem;
  }
  #staff .swiper-controller {
    padding-top: 40px;
  }
  #staff .swiper-pagination {
    left: 5%;
  }
}

/* recruit
-------------------------------------------------------------- */
#recruit {
  margin-bottom: 150px;
  background: url(../img/index/recruit_bg.jpg) no-repeat center / cover;
}
#recruit .container {
  position: relative;
  align-items: center;
  aspect-ratio: 1366 / 450;
  min-height: 450px;
}
#recruit .txtArea {
  width: 50%;
}
#recruit .txtArea p {
  padding: 40px 12% 40px 0;
  line-height: 2;
}
#recruit figure {
  position: absolute;
  top: 30px;
  right: 0;
  width: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  #recruit {
    margin-bottom: 70px;
  }
  #recruit .container {
    aspect-ratio: auto;
    min-height: auto;
  }
  #recruit .txtArea {
    padding: 40px 0 70%;
    width: 100%;
    text-align: center;
  }
  #recruit .txtArea p {
    padding: 20px 0;
    text-align: left;
  }
  #recruit .txtArea .btn a {
    margin: auto;
  }
  #recruit figure {
    top: auto;
    bottom: -50px;
    padding: 0 10%;
    width: 100%;
  }
}

/* contact
-------------------------------------------------------------- */
#contact {
  position: relative;
}
#contact::after {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(1100px + ((100% - 1100px) / 2));
  height: 100%;
  background: var(--gold);
  border-radius: 0 90px 0 0;
  content: "";
}
#contact .container {
  position: relative;
  color: var(--white);
  z-index: 1;
}
#contact .txtArea {
  padding: 100px 0;
  max-width: 520px;
}
#contact .txtArea p {
  padding: 30px 0 40px;
}
#contact ul {
  gap: 40px;
}
#contact li {
  width: calc(50% - 20px);
}
#contact li a {
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 50px;
  border-radius: 25px;
  font-weight: 700;
  line-height: 1;
}
#contact li:first-child a {
  background: var(--white);
  color: var(--gold)
}
#contact li:last-child a {
  background: var(--black);
  color: var(--white)
}
@media (max-width: 1200px) {
  #contact::after {
    width: 90%;
  }
}
@media (max-width: 767px) {
  #contact .txtArea {
    padding: 50px 5%;
    max-width: 80%;
  }
  #contact .txtArea p {
    padding: 20px 0 30px;
  }
  #contact ul {
    gap: 15px;
  }
  #contact li {
    width: 100%;
  }
  #contact li a {
    width: 220px;
    height: 46px;
  }
}