#front_page main {
  margin: 0;
}
#front_page main .front-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
#front_page main .front-cards .card {
  background: #fff;
  width: 31%;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 5px;
  transition: 0.5s inherit;
}
#front_page main .front-cards .card i {
  width: 50px;
  height: 50px;
  background: rgba(229, 201, 163, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfaa77;
  font-size: 1.2rem;
  margin: 0 auto;
}
#front_page main .front-cards .card h3 {
  text-align: center;
}
#front_page main .front-cards .card .p_text {
  line-height: 1.8;
  margin-top: 0;
}
#front_page main .fade-vertical {
  opacity: 0;
  transform: translateY(15px);
}
#front_page main .fade-vertical.show {
  transform: translateY(0);
  transition: 0.8s ease;
  transition-delay: calc(var(--delay, 0) * 0.1s);
  opacity: var(--opacity, 1);
}
#front_page main .heading {
  width: 60%;
}
#front_page main #hero {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  margin: 0;
}
#front_page main #hero .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#front_page main #hero .background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4666666667);
}
#front_page main #hero .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#front_page main #hero .wrapper {
  position: relative;
  z-index: 1;
  width: 40%;
  margin-left: 10%;
}
#front_page main #hero .wrapper .container-text .p_label {
  color: #e5c9a3;
  position: relative;
  padding-top: 40px;
  font-weight: 500;
  letter-spacing: 0.4rem;
}
#front_page main #hero .wrapper .container-text .p_label::before {
  content: "";
  width: 70px;
  height: 2px;
  background: #e5c9a3;
  position: absolute;
  top: 0;
}
#front_page main #hero .wrapper .container-text .p_title {
  font-size: 3.5rem;
  color: #fff;
}
#front_page main #hero .wrapper .container-text .p_subtitle {
  color: #fff;
}
#front_page main #hero .wrapper .container-text .p_text {
  color: #fff;
  line-height: 1.6;
}
#front_page main #hero .wrapper .links {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
#front_page main #hero .scroll {
  position: absolute;
  z-index: 1;
  bottom: 80px;
  color: #fff;
  text-align: center;
  width: 100%;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
}
#front_page main #hero .scroll.show {
  animation: vertical_movement 2s ease-out infinite;
}
#front_page main #hero .scroll::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
  transform: rotate(45deg);
  bottom: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@keyframes vertical_movement {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(10px);
  }
  40% {
    transform: translateY(0);
  }
}
#front_page main #problem .wrapper .before-after {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
#front_page main #problem .wrapper .before-after div {
  width: 48%;
  position: relative;
}
#front_page main #problem .wrapper .before-after div span {
  font-size: 0.9rem;
  font-weight: 600;
  background: #2c2722;
  color: #fff;
  padding: 7px 20px;
  border-radius: 5px;
  z-index: 2;
  position: absolute;
  top: -10px;
  left: -10px;
}
#front_page main #problem .wrapper .before-after div .image {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
#front_page main #problem .wrapper .before-after div .image img {
  width: 100%;
  transition: 0.5s;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
#front_page main #problem .wrapper .before-after div .image img:hover {
  transform: scale(1.05);
}
#front_page main #problem .wrapper .before-after div.after span {
  background: #49814c;
}
#front_page main #wb .diagram {
  background: rgba(248, 245, 239, 0.9490196078);
  padding: 50px;
  border-radius: 5px;
  margin-top: 50px;
}
#front_page main #wb .diagram img {
  width: 100%;
  border-radius: 5px;
}
#front_page main #wb .diagram .p_text {
  text-align: center;
}
#front_page main #wb .cards {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
#front_page main #wb .cards div {
  width: 31%;
}
#front_page main #wb .cards .p_number {
  font-size: 3.3rem;
  color: rgba(207, 170, 119, 0.5);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  display: flex;
  align-items: center;
}
#front_page main #wb .cards .p_number i {
  width: 50px;
  height: 50px;
  background: rgba(229, 201, 163, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfaa77;
  font-size: 1.2rem;
  margin-left: 20px;
}
#front_page main #wb .cards .p_text {
  line-height: 1.8rem;
  margin-top: 0;
}
#front_page main #wb .mechanism {
  background: rgba(248, 245, 239, 0.9490196078);
  border-radius: 5px;
  padding: 50px;
  margin-top: 50px;
}
#front_page main #wb .mechanism h2 {
  font-size: 1.8rem;
}
#front_page main #wb .mechanism .steps {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
#front_page main #wb .mechanism .steps .step {
  width: 31%;
  position: relative;
}
#front_page main #wb .mechanism .steps .step .p_number {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  color: #9b7136;
  font-size: 1.2rem;
  font-weight: 600;
  background: rgba(229, 201, 163, 0.3);
}
#front_page main #wb .mechanism .steps .step h3 {
  font-size: 1.2rem;
}
#front_page main #wb .mechanism .steps .step .p_text {
  margin-top: 0;
}
#front_page main #commitment .representative {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#front_page main #commitment .representative .image {
  width: 58%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
#front_page main #commitment .representative .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#front_page main #commitment .representative .introduction {
  width: 37%;
}
#front_page main #commitment .representative .introduction .p_subtitle {
  line-height: 2;
  margin-top: 0;
}
#front_page main #commitment .representative .introduction .p_text {
  border-top: solid 1px rgba(207, 170, 119, 0.35);
  margin-top: 20px;
  padding-top: 20px;
  font-style: italic;
}
#front_page main #case-study .cases {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#front_page main #case-study .cases .case {
  display: flex;
  justify-content: space-between;
}
#front_page main #case-study .cases .case div {
  width: 48%;
}
#front_page main #case-study .cases .case .image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
#front_page main #case-study .cases .case .image:hover img {
  transform: scale(1.05);
}
#front_page main #case-study .cases .case .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s;
  aspect-ratio: 5/3;
}
#front_page main #case-study .cases .case .image .category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #cfaa77;
  color: #fff;
  padding: 5px 15px 6px;
  border-radius: 5px;
  font-size: 0.85rem;
}
#front_page main #case-study .cases .case .info h3 {
  font-size: 1.8rem;
  font-weight: 500;
}
#front_page main #case-study .cases .case .info .p_text {
  margin-top: 0;
}
#front_page main #case-study .cases .case .info .p-voice {
  background: rgba(207, 170, 119, 0.1);
  padding: 20px;
  border-radius: 5px;
  border-left: solid 3px rgba(229, 201, 163, 0.8);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.8rem;
  margin: 20px 0;
}
#front_page main #case-study .cases .case .info .p-voice span {
  color: #cfaa77;
  font-weight: 500;
  font-style: normal;
}
#front_page main #case-study .cases .case .info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#front_page main #case-study .cases .case .info .tags li {
  background: rgba(207, 170, 119, 0.1);
  padding: 6px 15px;
  border-radius: 5px;
  color: #777;
  font-size: 0.9rem;
  border: solid 1px rgba(207, 170, 119, 0.12);
}
#front_page main #case-study .cases .case .info .detail {
  display: flex;
  align-items: center;
  color: #cfaa77;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
#front_page main #case-study .cases .case .info .detail i {
  color: #cfaa77;
  margin-left: 15px;
  opacity: 0.8;
  font-size: 0.9rem;
  transition: 0.2s;
}
#front_page main #case-study .cases .case .info .detail:hover i {
  margin-left: 22px;
}
#front_page main #case-study .cases .case:nth-of-type(even) {
  flex-direction: row-reverse;
}
#front_page main #experience {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
#front_page main #experience .background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#front_page main #experience .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#front_page main #experience .background::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5333333333);
  display: block;
  top: 0;
}
#front_page main #experience .wrapper {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding: 120px 0;
}
#front_page main #experience .wrapper .heading {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
#front_page main #experience .wrapper .heading p,
#front_page main #experience .wrapper .heading h2 {
  color: #fff;
}
#front_page main #experience .wrapper .heading .p_label {
  color: #cfaa77;
}
#front_page main #experience .wrapper .front-cards .card {
  background: rgba(255, 255, 255, 0.1333333333);
  backdrop-filter: blur(12px);
  border: solid 1px rgba(255, 255, 255, 0.2);
  padding-bottom: 80px;
}
#front_page main #experience .wrapper .front-cards .card h3 {
  color: #fff;
}
#front_page main #experience .wrapper .front-cards .card .p_text {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
#front_page main #experience .wrapper .front-cards .card .link-button {
  padding: 10px 30px 12px;
  margin: 20px auto 0;
  position: absolute;
  right: 0;
  bottom: 40px;
  left: 0;
}
#front_page main #company .main {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
#front_page main #company .main > div {
  width: 48%;
}
#front_page main #company .main .info table {
  border-collapse: collapse;
  width: 100%;
}
#front_page main #company .main .info table tr td {
  border-bottom: solid 1px rgba(207, 170, 119, 0.2);
  padding: 20px 0;
  vertical-align: middle;
}
#front_page main #company .main .info table tr td:first-of-type {
  width: 100px;
  opacity: 0.7;
}
#front_page main #company .main .info table tr:last-of-type td {
  border-bottom: none;
}
#front_page main #company .main .info .tags {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
#front_page main #company .main .info .tags li {
  background: rgba(207, 170, 119, 0.1);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  border: solid 1px rgba(207, 170, 119, 0.12);
  width: -moz-fit-content;
  width: fit-content;
}
#front_page main #company .main .info .tags li i {
  color: #cfaa77;
  margin-right: 5px;
}
#front_page main #company .main .info .description {
  margin-top: 50px;
}
#front_page main #company .main .info .description h3 {
  line-height: 2;
}
#front_page main #company .main .info .description .content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#front_page main #company .main .info .description .content i {
  width: 50px;
  height: 50px;
  background: rgba(229, 201, 163, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfaa77;
  font-size: 1.2rem;
}
#front_page main #company .main .info .description .content .text {
  width: calc(100% - 70px);
}
#front_page main #company .main .info .description .content .text h4 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1rem;
}
#front_page main #company .main .info .description .content .text .p_text {
  margin-top: 5px;
  font-size: 0.9rem;
}
#front_page main #company .main .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
#front_page main #company .contact {
  margin-top: 50px;
  background: #fff;
  padding: 50px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.0666666667);
}
#front_page main #company .contact h3 {
  text-align: center;
  font-size: 2rem;
}
#front_page main #company .contact .p_text {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
#front_page main #company .contact .links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}
#front_page main #company .contact .links .transparent {
  background: transparent;
  border: solid 1px rgba(207, 170, 119, 0.5);
  color: #cfaa77;
}
#front_page main #company .contact .links .transparent i {
  color: #cfaa77;
}
#front_page main #company .contact .links .transparent:hover {
  background: rgba(207, 170, 119, 0.1);
}

@media screen and (max-width: 1500px) {
  #front_page main #hero .wrapper {
    width: 60%;
  }
  #front_page main #experience .wrapper {
    padding: 80px 0;
  }
}
@media screen and (max-width: 1200px) {
  #front_page main .front-cards {
    margin-top: 40px;
  }
  #front_page main .front-cards .card {
    padding: 30px;
  }
  #front_page main .front-cards .card i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  #front_page main .front-cards .card .p_text {
    font-size: 0.9rem;
  }
  #front_page main .heading {
    width: 90%;
  }
  #front_page main #hero .wrapper {
    width: 60%;
  }
  #front_page main #hero .wrapper .container-text .p_label {
    font-size: 0.9rem;
  }
  #front_page main #hero .wrapper .container-text .p_title {
    font-size: 2.7rem;
    line-height: 4.5rem;
  }
  #front_page main #problem .wrapper .before-after {
    margin-top: 60px;
  }
  #front_page main #wb .diagram {
    padding: 30px;
  }
  #front_page main #wb .cards {
    flex-direction: column;
    gap: 30px;
  }
  #front_page main #wb .cards div {
    width: 100%;
  }
  #front_page main #wb .cards .p_text {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  #front_page main #wb .mechanism {
    padding: 40px;
  }
  #front_page main #wb .mechanism .steps .step .p_number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  #front_page main #wb .mechanism .steps .step h3 {
    font-size: 1.1rem;
  }
  #front_page main #wb .mechanism .steps .step .p_text {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  #front_page main #commitment .representative {
    flex-direction: column;
  }
  #front_page main #commitment .representative .image {
    width: 100%;
  }
  #front_page main #commitment .representative .introduction {
    width: 100%;
    margin-top: 30px;
  }
  #front_page main #commitment .representative .introduction .p_subtitle {
    font-size: 1rem;
    line-height: 1.7rem;
  }
  #front_page main #commitment .representative .introduction .p_text {
    font-size: 0.9rem;
  }
  #front_page main #case-study .cases .case {
    flex-direction: column;
  }
  #front_page main #case-study .cases .case div {
    width: 100%;
  }
  #front_page main #case-study .cases .case .image img {
    aspect-ratio: 5/2;
  }
  #front_page main #case-study .cases .case .info h3 {
    margin-top: 20px;
  }
  #front_page main #case-study .cases .case .info .p_text {
    font-size: 0.9rem;
  }
  #front_page main #case-study .cases .case .info .p-voice {
    padding: 15px 20px;
  }
  #front_page main #case-study .cases .case .info .tags li {
    font-size: 0.8rem;
  }
  #front_page main #case-study .cases .case:nth-of-type(even) {
    flex-direction: column;
  }
  #front_page main #experience .wrapper {
    width: 800px;
  }
  #front_page main #experience .wrapper .heading {
    width: 100%;
  }
  #front_page main #company .main {
    flex-direction: column;
  }
  #front_page main #company .main > div {
    width: 100%;
  }
  #front_page main #company .main .info table tr td {
    padding: 15px 0;
    font-size: 0.9rem;
  }
  #front_page main #company .main .info .tags li {
    font-size: 0.8rem;
  }
  #front_page main #company .main .info .description {
    margin-top: 40px;
  }
  #front_page main #company .main .info .description .content i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  #front_page main #company .main .info .description .content .text {
    width: calc(100% - 60px);
  }
  #front_page main #company .main .info .description .content .text .p_text {
    line-height: 1.5rem;
  }
  #front_page main #company .main .image img {
    aspect-ratio: 5/2;
    margin-top: 50px;
  }
  #front_page main #company .contact {
    padding: 30px;
  }
  #front_page main #company .contact h3 {
    font-size: 1.6rem;
  }
  #front_page main #company .contact .p_text {
    width: 100%;
    font-size: 0.9rem;
  }
  #front_page main #company .contact .links {
    flex-wrap: wrap;
    gap: 20px;
  }
  #front_page main #company .contact .links .link-button {
    justify-content: center;
    flex: 1;
  }
  #front_page main #company .contact .links .link-button:first-of-type {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 900px) {
  #front_page main .front-cards {
    flex-direction: column;
    gap: 20px;
  }
  #front_page main .front-cards .card {
    width: 100%;
    padding: 20px;
  }
  #front_page main #hero .wrapper {
    width: 80%;
    margin-left: 7%;
  }
  #front_page main #problem .wrapper .before-after {
    flex-direction: column;
    gap: 30px;
  }
  #front_page main #problem .wrapper .before-after div {
    width: 100%;
  }
  #front_page main #problem .wrapper .before-after div .image img {
    aspect-ratio: 5/2;
  }
  #front_page main #wb .diagram {
    padding: 20px;
  }
  #front_page main #wb .diagram .p_text {
    font-size: 0.8rem;
  }
  #front_page main #wb .mechanism h2 {
    font-size: 1.6rem;
  }
  #front_page main #wb .mechanism .steps {
    flex-direction: column;
    gap: 20px;
  }
  #front_page main #wb .mechanism .steps .step {
    width: 100%;
  }
  #front_page main #commitment .representative .introduction .p_subtitle {
    font-size: 0.9rem;
  }
  #front_page main #experience .wrapper {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 600px) {
  #front_page main .heading {
    width: 100%;
  }
  #front_page main #hero {
    align-items: start;
  }
  #front_page main #hero .wrapper {
    width: calc(100% - 50px);
    margin: 110px auto 0;
  }
  #front_page main #hero .wrapper .container-text .p_label {
    font-size: 0.8rem;
    padding-top: 20px;
  }
  #front_page main #hero .wrapper .container-text .p_title {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  #front_page main #hero .wrapper .container-text .p_subtitle {
    font-size: 0.8rem;
    margin-top: 20px;
  }
  #front_page main #hero .wrapper .container-text .p_text {
    font-size: 0.8rem;
    margin-top: 10px;
  }
  #front_page main #hero .wrapper .links {
    flex-direction: column;
    margin-top: 30px;
    gap: 10px;
  }
  #front_page main #hero .wrapper .links .link-button {
    width: 100%;
  }
  #front_page main #hero .scroll {
    font-size: 0.6rem;
    bottom: 40px;
  }
  #front_page main #hero .scroll::after {
    width: 5px;
    height: 5px;
    border-width: 2px;
    bottom: -15px;
  }
  #front_page main #problem .wrapper .before-after div .image img {
    aspect-ratio: 5/3;
  }
  #front_page main #wb .mechanism {
    padding: 30px;
  }
  #front_page main #wb .mechanism h2 {
    font-size: 1.2rem;
  }
  #front_page main #case-study .cases .case .image img {
    aspect-ratio: 5/3;
  }
  #front_page main #experience .wrapper {
    width: calc(100% - 50px);
  }
  #front_page main #experience .wrapper .front-cards .card {
    padding-bottom: 60px;
  }
  #front_page main #experience .wrapper .front-cards .card .link-button {
    bottom: 20px;
  }
  #front_page main #experience .wrapper .front-cards .card .p_text {
    font-size: 0.8rem;
  }
  #front_page main #company .main {
    margin-top: 10px;
  }
  #front_page main #company .main .info .tags {
    flex-direction: column;
  }
  #front_page main #company .main .info .description .content .text .p_text {
    font-size: 0.8rem;
  }
  #front_page main #company .main .image img {
    aspect-ratio: 5/3;
  }
  #front_page main #company .contact h3 {
    font-size: 1.3rem;
  }
  #front_page main #company .contact .links {
    flex-direction: column;
  }
  #front_page main #company .contact .links .link-button {
    width: 100%;
  }
}