@charset "UTF-8";
/* CSS Document */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background-color: #f8f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 1.5s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  text-align: left;
  font-family: 'Trajan Pro 3', 'Cinzel', serif;
  font-weight: 400;
}
.loading__logo_first {
  display: inline-block;
  opacity: 0;
  animation: logo_fade 1.5s forwards;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.loading__logo_second {
  display: inline-block;
  opacity: 0;
  animation: logo_fade 1.5s forwards;
  font-size: 3.2rem;
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv {
  margin-top: 60px;
  position: relative;
  display: flex;
  align-items: center;
  height: calc(100vh - 60px);
}
.fv::before {
  content: "";
  display: block;
  position: absolute;
  width: 75%;
  height: calc(100vh - 60px);
  top: 0;
  left: 0;
  background-color: #f8f0ea;
  border-radius: 0 0 600px;
  z-index: -1;
}
.fv_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-left: 100px;
  overflow: hidden;
}
.fv_title {
  text-align: left;
  font-family: 'Trajan Pro 3', 'Cinzel', serif;
  padding: 0 50px;
  width: 430px;
}
.fv_title_post {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 9px;
  white-space: nowrap;
}
.fv_title_name {
  font-size: 5.8rem;
  font-weight: 400;
  line-height: 5.8rem;
  letter-spacing: 0.06em;
}
.fv_title_name span {
  position: relative;
  left: -4px;
}
.fv_title_read {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-top: 50px;
  white-space: nowrap;
  color: #615143;
}
.fv_inner_image {
  opacity: 0;
  max-width: 1250px;
  transition: opacity 0.5s linear;
}
.fv_inner_image.slick-initialized {
  opacity: 1;
}
.fv_inner_image img {
  width: 100%;
}
.scroll {
  position: absolute;
  writing-mode: vertical-lr;
  font-size: 1.2rem;
  font-weight: 100;
  bottom: 150px;
  left: 10px;
  color: #987F68;
}
.scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #987F68;
  width: 0.5px;
  height: 100px;
  top: 55px;
  left: 10px;
  animation: scroll 1.5s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media (max-width:1440px) {
  .fv_title_post {
    font-size: 2.0rem;
    margin-bottom: 5px;
  }
  .fv_title_name {
    font-size: 4.8rem;
    line-height: 4.8rem;
  }
  .fv_title_read {
    font-size: 1.6rem;
  }
}
@media (max-width:1300px) {
  .fv_inner {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0px;
  }
  .fv_title {
    padding: 0 0 40px;
  }
  .fv_title_read {
    margin-top: 20px;
  }
  .fv_inner_image {
    max-width: 800px;
  }
}
@media (max-width:834px) {
  .fv {
    margin-top: 50px;
    height: calc(100vh - 50px);
  }
  .fv::before {
    height: calc(100vh - 50px);
  }
  .fv_inner {
    padding-left: 50px;
  }
}
@media (max-width:430px) {
  .fv {
    align-items: flex-start;
  }
  .fv_inner {
    padding: 60px 0 0 15px;
  }
  .fv_title_post {
    font-size: 1.25rem;
    margin-bottom: 0px;
  }
  .fv_title_name {
    font-size: 3.0rem;
    line-height: 3.0rem;
  }
  .fv_title_read {
    font-size: 1.4rem;
  }
  .fv_inner_image {
    height: 100vw;
  }
  .fv_inner_image_div img {
    width: 70%;
    object-fit: cover;
    object-position: left 10%;
  }
  .fv_title_name span {
    left: -3px;
  }
  .scroll {
    display: none;
  }
}
.about {
  text-align: left;
  position: relative;
}
.cont_inner {
  margin: 200px auto;
  max-width: 1100px;
}
.title {
  font-size: 3.6rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.title span {
  font-size: 1.4rem;
  color: #615143;
  padding-left: 10px;
}
.about_detail {
  display: flex;
  justify-content: space-between;
  margin: 85px auto 0;
  padding-left: 20px;
}
.about_detail_text h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 3.0rem;
  line-height: 4rem;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}
.about_detail_text_description {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  margin-top: 50px;
  line-height: 2.0em;
  -webkit-font-smoothing: antialiased;
}
.about_detail_img {
  max-width: 360px;
}
.about_detail_img::before {
  content: "";
  display: block;
  position: absolute;
  width: 30%;
  height: 439px;
  top: 0;
  right: 0;
  background-color: #f8f0ea;
  border-radius: 200px 0 0 0;
  z-index: -1;
}
.about_detail_img img {
  width: 100%;
}
.about_detail_text_post {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  margin-top: 90px;
}
.about_detail_text_name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 2.0rem;
  margin-top: 10px;
  -webkit-font-smoothing: antialiased;
}
.about_detail_text_license {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 10px;
}
@media (max-width:1200px) {
  .title {
    padding-left: 40px;
  }
  .about_detail {
    flex-direction: column;
    align-items: center;
  }
  .about_detail_img {
    margin-top: 110px;
  }
  .about_detail_text_post {
    margin-top: 40px;
  }
  .about_detail_img::before {
    width: 50%;
    top: 560px;
  }
}
@media (max-width:630px) {
  .title {
    padding-left: 0px;
  }
  .cont_inner {
    margin: 200px 15px;
  }
  .about_detail {
    padding-left: 0px;
  }
  .about_detail_text h2 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
.strength {
  background-color: #F9F7F6;
  text-align: left;
}
.strength_cont_inner {
  padding: 150px 0;
  margin: 0 auto;
  max-width: 1100px;
}
.strength_figure {
  max-width: 580px;
  margin: 90px auto 0;
}
.strength_figure img {
  width: 100%;
}
.strength_figure_text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  text-align: center;
  color: #615143;
  padding-top: 40px;
}
.strength_text_inner {
  margin-top: 100px;
}
.strength_text {
  display: flex;
  align-items: center;
  margin-top: 80px;
}
.strength_text_index {
  text-align: center;
  width: 150px;
}
.strength_text_index_number {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #D5CCC5;
}
.strength_text_index_title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #615143;
  margin-top: 10px;
}
.strength_text_description {
  max-width: 950px;
  border-left: solid 1.5px #D5CCC5;
  padding-left: 30px;
}
.strength_text_description_title {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.5em;
}
.strength_text_description p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.5em;
}
@media (max-width:1100px) {
  .strength_figure_text {
    margin: 0px 40px;
  }
  .strength_text {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
  }
  .strength_text_index {
    width: 90px;
    margin-left: 40px;
    padding-bottom: 15px;
    text-align: left;
    border-bottom: solid 1.5px #D5CCC5;
  }
  .strength_text_description {
    border-left: none;
    padding: 0 40px;
    margin-top: 30px;
  }
}
@media (max-width:630px) {
  .strength_cont_inner {
    padding: 100px 15px;
  }
  .strength_figure_text {
    margin: 0px;
  }
  .strength_text_index {
    margin-left: 0px;
  }
  .strength_text_description {
    padding: 0px;
  }
  .strength_text_description_title {
    font-size: 2.4rem;
  }
  .br_sp {
    display: none;
  }
}
.service {
  background-color: #F9F7F6;
  text-align: left;
}
.service_cont_inner {
  padding: 0 0 150px;
  margin: 0 auto;
  max-width: 1100px;
}
.service_inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 70px 40px;
}
.service_icon {
  max-width: 230px;
}
.service_icon img {
  max-width: 100%;
}
.service p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 0 40px 50px;
}
.service p a {
  color: #000;
}
.br2_sp {
  display: none;
}
@media (max-width:630px) {
  .service_cont_inner {
    padding:  50px 15px 100px;
  }
  .service p {
    text-align: left;
    margin: 0px;
  }
  .br2_sp {
    display: block;
  }
}
.works {
  text-align: left;
}
.works_cont_inner {
  margin: 150px auto;
  max-width: 1200px;
}
.works ul {
  margin: 80px 0px;
  list-style: none;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.works ul li {
  max-width: calc((100% - 20px)/2);
}
.works ul li a {
  text-decoration: none;
  color: #000;
}
.works ul li a:hover img {
  transform: scale(1.05, 1.05);
  transition: 0.5s all;
}
.works ul li a:hover .works_image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.10);
  background-image: radial-gradient(rgba(153, 153, 153, 0.52) 33%, transparent 36%);
  background-size: 2px 2px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 1;
  transition: 0.5s all;
}
.works_image {
  overflow: hidden;
  position: relative;
}
.works_image img {
  width: 100%;
  transition: 0.5s all;
  vertical-align: top;
}
.works ul li a p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  color: #C0A79C;
  font-size: 1.4rem;
}
.works ul li a h3 {
  margin-bottom: 30px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  margin-left: 2px;
}
.works_location {
  display: flex;
  align-items: flex-end;
  margin-top: 10px;
}
.works_location img {
  width: 14px;
  margin-right: 2px;
}
.visibiliry-hidden {
  visibility: hidden;
}
.works_text {
  display: flex;
  justify-content: space-between;
}
.viewmore_button {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  line-height: 120px;
  text-align: center;
  margin: 0 auto;
}
.viewmore_button a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid 0.5px #000;
  text-decoration: none;
  color: #000;
  transition: 0.4s;
}
@media(hover: hover) {
  .viewmore_button a:hover {
    background-color: #000;
    color: #fff;
    transition: 0.4s;
  }
}
@media (max-width:1200px) {
  .works ul {
    margin: 80px 40px;
  }
}
@media (max-width:630px) {
  .works_cont_inner {
    margin: 100px 15px;
  }
  .works ul {
    flex-direction: column;
    align-items: center;
    margin: 80px 0;
  }
  .works ul li {
    max-width: 600px;
  }
}