@-webkit-keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
.cp_name {
  opacity: 0;
  -webkit-animation: fade 1.75s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fade 1.75s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transform: translate(10%, 0);
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
@media screen and (max-width: 768px) {
  .cp_name {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes fade {
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fade {
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slidein.trigger {
  opacity: 1;
  transform: translate(0, 0);
}

.slidein {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .slidein {
    opacity: 1;
  }
}

.slidein:nth-child(2) {
  transition-delay: 0.3s;
}

.slidein:nth-child(3) {
  transition-delay: 0.6s;
}

.slidein:nth-child(4) {
  transition-delay: 0.9s;
}

.slide-left {
  transform: translate(-10%, 0);
  opacity: 0;
  transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .slide-left {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.slide-right {
  transform: translate(10%, 0);
  opacity: 0;
  transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .slide-right {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.slide-up {
  transform: translate(0, 20%);
  opacity: 0;
  transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .slide-up {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/*=============================================================
form
=============================================================*/
#form {
  position: relative;
  text-align: left;
  z-index: 2;
}
#form dd input, #form dd textarea {
  box-sizing: border-box;
  border: 0px solid transparent;
  border-radius: 4px;
  line-height: 2;
}
#form dd input:focus, #form dd textarea:focus {
  outline: none;
  border-color: #999;
}
#form dd input[type=text],
#form dd input[type=tel],
#form dd textarea {
  background-color: #ced1d7;
}
#form .wd_100 {
  width: 100%;
}
#form .wd_60 {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #form .wd_60 {
    width: 100%;
  }
}
#form .wd_15 {
  width: 15%;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #form .wd_15 {
    width: 20%;
  }
}
@media screen and (max-width: 520px) {
  #form .wd_15 {
    width: 30%;
  }
}
#form dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: min(5vw, 60px);
}
#form dl dt {
  font-size: 1rem;
  width: 100%;
  display: flex;
  margin-top: min(3vw, 36px);
}
@media screen and (max-width: 768px) {
  #form dl dt {
    width: 100%;
  }
}
#form dl dt:first-of-type {
  margin-top: 0;
}
#form dl dt span {
  font-size: 0.875rem;
  background-color: #b4547d;
  color: #fff;
  padding: 0.5em;
  border-radius: 2px;
  line-height: 1;
  margin-right: 1em;
}
#form dl dt span.optional {
  background-color: #7c7c7c;
}
#form dl dd {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  font-size: 1rem;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  #form dl dd {
    width: 100%;
  }
}
#form dl dd .error_messe {
  font-size: 0.875rem;
  margin-top: 0.5em;
  color: #b4547d;
}
#form dl dd.address p:not(:first-child) {
  margin-top: 0.5em;
}

#form.confirm dd {
  box-sizing: border-box;
  border: 0px solid transparent;
  border-radius: 4px;
  line-height: 2;
  background-color: #eee;
  box-sizing: border-box;
  padding: 0.25em;
  min-height: 2.5em;
}

/*=============================================================
#submit
=============================================================*/
#form {
  max-width: 574px;
  margin: 0 auto;
}
#form .submit_wrap {
  text-align: center;
  margin-top: min(4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#form .submit_wrap span {
  position: relative;
  transition: 0.2s ease all;
}
#form .submit_wrap span::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1px;
  background-color: #fff;
  top: 0.5em;
  right: 1.5em;
}
#form .submit_wrap span:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #form .submit_wrap {
    margin-top: 10vw;
  }
}
@media screen and (max-width: 520px) {
  #form .submit_wrap {
    margin-top: 18vw;
  }
}
#form .submit_wrap .btn {
  width: 15em;
  font-size: clamp(0.875rem, 0.57rem + 0.63vw, 1.125rem);
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.025em;
  color: #fff;
  background-color: #334059;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 3em;
  padding: 1.25em 1.5em;
  margin-top: min(4vw, 48px);
  transition: 0.2s ease all;
  cursor: pointer;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #form .submit_wrap .btn {
    font-size: 1rem;
  }
}
@media screen and (max-width: 520px) {
  #form .submit_wrap .btn {
    font-size: 1rem;
    padding: 1em 1.5em;
  }
}
#form .submit_wrap .btn:hover {
  opacity: 0.7;
}
#form .submit_wrap .btn.back {
  background-color: #999;
}
@media screen and (max-width: 520px) {
  #form .submit_wrap .btn.back {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

/*=============================================================
kv
=============================================================*/
#kv .outer {
  position: relative;
  width: 100%;
  display: flex;
  aspect-ratio: 100/49;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #kv .outer {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 520px) {
  #kv .outer {
    aspect-ratio: 3/2;
  }
}
#kv .outer::before {
  content: "";
  position: absolute;
  width: calc(50% + 12vw);
  aspect-ratio: 100/46;
  background-color: #334059;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
}
#kv .outer::after {
  -webkit-animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
#kv .outer figure {
  position: relative;
  width: calc(100% - 6vw);
  margin-right: -50%;
}
@media screen and (max-width: 520px) {
  #kv .outer figure {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 520px) and (max-width: 520px) {
  #kv .outer figure img {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#kv .outer .cp_name {
  position: relative;
  width: calc(50% + 6vw);
  align-self: flex-end;
}

/*=============================================================
business
=============================================================*/
#business .outer {
  position: relative;
}
#business .outer::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 45%;
  background-color: #94a5be;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  #business .outer::before {
    height: 25vw;
  }
}
#business .outer::after {
  content: "";
  position: absolute;
  width: 50%;
  height: min(10vw, 120px);
  background-image: url(../images/bglt_business.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  bottom: 0;
  right: 0;
}
#business .inner {
  position: relative;
  padding-top: min(4.5vw, 54px);
  padding-bottom: calc(min(4.5vw, 54px) + min(10vw, 120px));
}
#business .inner h2 {
  display: inline-block;
  position: relative;
  font-size: clamp(1.375rem, 1.07rem + 0.63vw, 1.625rem);
  font-family: "Shippori Mincho", serif;
  color: #333;
  line-height: 1;
  letter-spacing: 0.15em;
  padding-bottom: 0.75em;
}
@media screen and (max-width: 520px) {
  #business .inner h2 {
    font-size: 1.125rem;
  }
}
#business .inner h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #94a5be;
  bottom: 0;
  left: 0;
}
#business .inner ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #business .inner ul {
    flex-wrap: wrap;
  }
}
#business .inner ul li {
  width: 22.75%;
  box-shadow: 4px 4px 8px rgba(51, 64, 89, 0.1);
  border-bottom: 1px solid #94a5be;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #business .inner ul li {
    width: 47.75%;
    margin-top: 4.5vw;
  }
}
@media screen and (max-width: 520px) {
  #business .inner ul li {
    width: 48.5%;
    margin-top: 6vw;
  }
}
#business .inner ul li h3 {
  width: 100%;
  aspect-ratio: 3/2;
  background-size: cover;
  box-sizing: border-box;
  padding: min(1vw, 12px);
}
#business .inner ul li h3 span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: clamp(0.875rem, 0.57rem + 0.63vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  border: 1px solid #fff;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #business .inner ul li h3 span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 520px) {
  #business .inner ul li h3 span {
    font-size: 0.875rem;
  }
}
#business .inner ul li:nth-child(1) h3 {
  background-image: url(../images/p01.jpg);
}
#business .inner ul li:nth-child(2) h3 {
  background-image: url(../images/p02.jpg);
}
#business .inner ul li:nth-child(3) h3 {
  background-image: url(../images/p03.jpg);
}
#business .inner ul li:nth-child(4) h3 {
  background-image: url(../images/p04.jpg);
}
#business .inner ul li .text {
  box-sizing: border-box;
  padding: min(1vw, 12px) min(1vw, 12px) 1em;
  background-color: #fff;
}
@media screen and (max-width: 520px) {
  #business .inner ul li .text {
    padding: 0.5em 0.5em 1em;
  }
}
#business .inner ul li .text p {
  text-align: justify;
  font-size: clamp(0.75rem, 0.445rem + 0.63vw, 1rem);
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #business .inner ul li .text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 520px) {
  #business .inner ul li .text p {
    font-size: 0.75rem;
  }
}

/*=============================================================
works
=============================================================*/
#works .outer {
  background-color: #ced1d7;
  position: relative;
}
#works .outer::after {
  content: "";
  position: absolute;
  width: 50%;
  height: min(10vw, 120px);
  background-image: url(../images/bglt_works.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  top: 0;
  left: 0;
}
#works .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  padding-top: min(10vw, 120px);
  padding-bottom: min(10vw, 120px);
}
#works .inner h2 {
  order: 5;
  writing-mode: vertical-lr;
  font-feature-settings: "pkna";
  display: inline-block;
  position: relative;
  font-size: clamp(1.375rem, 1.07rem + 0.63vw, 1.625rem);
  font-family: "Shippori Mincho", serif;
  color: #333;
  line-height: 1;
  letter-spacing: 0.5em;
  padding-bottom: 0.75em;
  margin-top: min(3vw, 36px);
}
@media screen and (max-width: 520px) {
  #works .inner h2 {
    font-size: 1.125rem;
    position: relative;
    order: 0;
    writing-mode: horizontal-tb;
    line-height: 1;
    letter-spacing: 0.15em;
    padding-bottom: 0.75em;
    margin-top: 6vw;
  }
  #works .inner h2::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
  }
}
#works .inner figure {
  box-sizing: border-box;
  border: 1px solid #fff;
  box-shadow: 4px 4px 8px rgba(51, 64, 89, 0.1);
}
#works .inner .photo_wrap1 {
  order: 0;
  width: 41.6666%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: min(10vw, 120px);
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #works .inner .photo_wrap1 {
    width: 43%;
  }
}
@media screen and (max-width: 520px) {
  #works .inner .photo_wrap1 {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 0 3vw;
    margin-top: 0;
  }
}
#works .inner .photo_wrap1 figure:nth-child(1) {
  width: 36.8%;
  aspect-ratio: 2/3;
}
#works .inner .photo_wrap1 figure:nth-child(1) img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .inner .photo_wrap1 figure:nth-child(2) {
  width: 46.2%;
  aspect-ratio: 3/4;
  margin-bottom: min(3vw, 36px);
}
#works .inner .photo_wrap1 figure:nth-child(2) img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .inner .photo_wrap2 {
  order: 10;
  width: 41.5%;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #works .inner .photo_wrap2 {
    width: 43%;
  }
}
@media screen and (max-width: 520px) {
  #works .inner .photo_wrap2 {
    width: 100%;
    margin-top: 6vw;
    box-sizing: border-box;
    padding: 0 3vw;
  }
}
#works .inner .photo_wrap2 .text {
  margin-top: min(4.5vw, 54px);
}
#works .inner .photo_wrap2 .text p {
  font-size: clamp(0.875rem, 0.57rem + 0.63vw, 1.125rem);
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #works .inner .photo_wrap2 .text p {
    font-size: 1rem;
  }
  #works .inner .photo_wrap2 .text p br {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  #works .inner .photo_wrap2 .text p {
    font-size: 1rem;
  }
  #works .inner .photo_wrap2 .text p br {
    display: none;
  }
}
#works .inner ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: min(3vw, 36px);
  box-sizing: border-box;
  padding-left: 0.5em;
}
@media screen and (max-width: 520px) {
  #works .inner ul {
    margin: 6vw auto 0;
    flex-direction: column;
    align-items: center;
  }
}
#works .inner ul li {
  position: relative;
  min-width: 30.3333%;
  padding: 0 2em 0 1em;
  font-size: clamp(0.875rem, 0.57rem + 0.63vw, 1.125rem);
  box-sizing: border-box;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #works .inner ul li {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 520px) {
  #works .inner ul li {
    width: 18em;
    font-size: 1rem;
  }
}
#works .inner ul li::before {
  position: absolute;
  content: "";
  width: 0.4em;
  height: 0.4em;
  background-color: #334059;
  left: 0;
  top: 0.6em;
}
#works .inner .tochi {
  order: 15;
  margin-top: min(4.5vw, 54px);
}
#works .inner .kodate {
  order: 20;
}

/*=============================================================
about
=============================================================*/
#about .outer {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #about .outer {
    flex-direction: column;
  }
}
#about .outer .wrap {
  width: 50%;
  background-color: #334059;
  padding: min(10vw, 120px) min(4.5vw, 54px) min(6vw, 72px);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #about .outer .wrap {
    width: 100%;
  }
}
#about .outer .wrap .text {
  text-align: center;
  max-width: 574px;
  margin: 0 auto;
}
#about .outer .wrap .text h2 {
  display: inline-block;
  position: relative;
  font-size: clamp(1.375rem, 1.07rem + 0.63vw, 1.625rem);
  font-family: "Shippori Mincho", serif;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.15em;
  padding-bottom: 0.75em;
}
@media screen and (max-width: 520px) {
  #about .outer .wrap .text h2 {
    font-size: 1.125rem;
  }
}
#about .outer .wrap .text h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 25%;
}
#about .outer .wrap .text dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: min(1.5vw, 18px);
}
#about .outer .wrap .text dl dt {
  width: 6em;
  color: #fff;
  border-top: 1px solid #fff;
  box-sizing: border-box;
  padding: 0.5em 0;
  margin-top: min(2vw, 24px);
  font-size: clamp(0.75rem, 0.445rem + 0.63vw, 1rem);
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #about .outer .wrap .text dl dt {
    margin-top: 4vw;
    font-size: 1rem;
  }
}
@media screen and (max-width: 520px) {
  #about .outer .wrap .text dl dt {
    margin-top: 6vw;
    font-size: 1rem;
  }
}
#about .outer .wrap .text dl dd {
  width: calc(100% - 6em);
  color: #fff;
  border-top: 1px solid #fff;
  box-sizing: border-box;
  padding: 0.5em 0;
  margin-top: min(2vw, 24px);
  font-size: clamp(0.75rem, 0.445rem + 0.63vw, 1rem);
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #about .outer .wrap .text dl dd {
    margin-top: 4vw;
    font-size: 1rem;
  }
}
@media screen and (max-width: 520px) {
  #about .outer .wrap .text dl dd {
    margin-top: 6vw;
    font-size: 1rem;
  }
}
#about .outer .wrap .text dl dd a {
  display: inline-block;
  color: #fff;
}
@media screen and (max-width: 520px) {
  #about .outer .wrap .text dl dd a {
    text-decoration: underline;
  }
}
#about .outer .wrap .text dl dd span {
  display: inline-block;
}
#about .outer .photo_wrap {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about .outer .photo_wrap {
    width: 100%;
  }
}
#about .outer .photo_wrap .box1 {
  width: 100%;
  max-height: 750px;
  aspect-ratio: 3/4;
  position: relative;
  background-image: url(../images/p08.jpg);
  background-size: cover;
  background-position: center 55%;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #about .outer .photo_wrap .box1 {
    aspect-ratio: 1/1;
    background-position: center 35%;
  }
}
@media screen and (max-width: 520px) {
  #about .outer .photo_wrap .box1 {
    aspect-ratio: 3/4;
    background-position: center 35%;
  }
}
#about .outer .photo_wrap .box2 {
  width: 100%;
  aspect-ratio: 3/1;
  background-image: url(../images/bglt_aboutus.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
@media screen and (max-width: 768px) {
  #about .outer .photo_wrap .box2 {
    display: none;
  }
}

/*=============================================================
map
=============================================================*/
#map .outer {
  background-color: #ced1d7;
}
#map .outer .inner {
  box-sizing: border-box;
  padding-top: min(4.5vw, 54px);
  padding-bottom: min(4.5vw, 54px);
}
@media screen and (max-width: 520px) {
  #map .outer .inner {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }
}
#map .outer .inner iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 100/39;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #map .outer .inner iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 520px) {
  #map .outer .inner iframe {
    aspect-ratio: 4/3;
  }
}

/*=============================================================
contact
=============================================================*/
#contact .outer {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #contact .outer {
    flex-direction: column;
  }
}
#contact .outer .form_wrap {
  width: 50%;
  padding: min(10vw, 120px) min(4.5vw, 54px) min(6vw, 72px);
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact .outer .form_wrap {
    width: 100%;
    order: 5;
    padding: 10vw 4.5vw;
  }
}
#contact .outer .form_wrap h2 {
  display: inline-block;
  position: relative;
  font-size: clamp(1.375rem, 1.07rem + 0.63vw, 1.625rem);
  font-family: "Shippori Mincho", serif;
  color: #334059;
  line-height: 1;
  letter-spacing: 0.15em;
  padding-bottom: 0.75em;
}
@media screen and (max-width: 520px) {
  #contact .outer .form_wrap h2 {
    font-size: 1.125rem;
  }
}
#contact .outer .form_wrap h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #334059;
  bottom: 0;
  left: 25%;
}
#contact .outer .photo_wrap {
  width: 50%;
  aspect-ratio: 1/1;
  position: relative;
  background-image: url(../images/p09.jpg);
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  #contact .outer .photo_wrap {
    aspect-ratio: 16/9;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  #contact .outer .photo_wrap {
    aspect-ratio: 4/3;
    width: 100%;
  }
}
#contact .outer .photo_wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 100/17;
  bottom: 0;
  right: 0;
  background-image: url(../images/bglt_contact.png);
  background-size: contain;
}
#contact .outer .photo_wrap .text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .outer .photo_wrap .text p {
  text-align: center;
  font-size: clamp(0.875rem, 0.57rem + 0.63vw, 1.125rem);
  color: #fff;
  line-height: 2.5;
}
/*# sourceMappingURL=home.css.map */