@charset "UTF-8";

@font-face {
  font-family: "logo-font";
  src: url("../font/MontserratSubrayada-Regular.ttf") format("truetype");
}

.logo {
  font-family: logo-font;
  color: #002952;
}

@font-face {
  font-family: "tittle-font";
  src: url("../font/Marcellus-Regular.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
}

a {
  color: #6d6d6d;
  text-decoration: none;
}

li {
  list-style: none;
}

p {
  color: #6d6d6d;
}

dl {
  color: #6d6d6d;
}

img {
  width: 100%;
}

section {
  padding-top: 120px;
}

@media (max-width: 700px) {
  section {
    padding-top: 70px;
  }
}

h2 {
  font-size: clamp(20px, 2.85vw, 24px);
}

h3 {
  font-weight: normal;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-tittle {
  display: flex;
  font-family: tittle-font;
  position: relative;
  justify-content: center;
  margin-bottom: 40px;
  color: #002952;
}

@media (max-width: 393px) {
  .section-tittle {
    padding-top: 0;
  }
}

.section-tittle h2 {
  display: inline-block;
  position: relative;
}

.section-tittle h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 1px;
  width: 100%;
  background: #002952;
  right: 0;
}

.viewmore {
  display: flex;
  font-size: 12px;
  position: relative;
}

.viewmore a {
  display: inline-block;
  position: relative;
}

.viewmore a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  height: 0.5px;
  width: 100%;
  background: #6d6d6d;
  transition: all 0.5s;
}

.viewmore a:hover::after {
  bottom: -10px;
  opacity: 0;
}

.sub-tittle {
  font-family: tittle-font;
  color: #002952;
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 16px;
}

.fadein {
  opacity: 0;
  transition: all 0.8s;
  transform: translateY(30px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: all 0.8s;
}

.slide-right {
  opacity: 0;
  transform: translateX(70px);
  transition: all 0.8s;
}

.fadein2 {
  opacity: 0;
  transition: all 2s;
  transform: scale(0.8);
}

.header {
  height: 80px;
  background-color: rgba(189, 189, 189, 0.5176470588);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  transition: top 0.5s;
  z-index: 10;
  padding: 0 8% 0 50px;
  width: 100%;
}

@media (max-width: 700px) {
  .header {
    justify-content: initial;
  }
}

@media (max-width: 700px) {
  .header {
    padding: 0 0 0 20px;
  }
}

.header h1 {
  padding-right: 30px;
  font-size: clamp(20px, 2.6vw, 36px);
}

.header nav ul {
  font-family: tittle-font;
  display: flex;
}

@media (max-width: 700px) {
  .header nav ul {
    width: 300px;
    height: 100%;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -300px;
    z-index: 15;
    padding: 50px;
    background-color: #002952;
    height: 100vh;
    transition: all 0.5s;
  }
}

.header nav li {
  padding-right: 20px;
}

@media (max-width: 700px) {
  .header nav li {
    padding: 10px 0;
  }
}

.header nav li a {
  position: relative;
  color: #002952;
}

.header nav li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -3px;
  background: #002952;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}

@media (max-width: 700px) {
  .header nav li a::after {
    background: #fff;
  }
}

.header nav li a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

@media (max-width: 700px) {
  .header nav li a {
    color: #fff;
  }
}

.header .toggle-btn {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 50;
  right: 0;
  transition: all 0.5s;
  cursor: pointer;
  margin-right: 20px;
  z-index: 30;
}

@media (max-width: 700px) {
  .header .toggle-btn {
    display: block;
  }
}

.header .toggle-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #002952;
  transition: all 0.5s;
  position: absolute;
}

.header .toggle-btn span:nth-of-type(1) {
  top: 36%;
}

.header .toggle-btn span:nth-of-type(2) {
  top: 66%;
}

.header #mask {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1b2f44;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

.open nav ul {
  left: 0;
}

.open #mask {
  opacity: 0.7;
  visibility: visible;
}

.open .toggle-btn span {
  background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
  top: 50%;
  transform: rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg);
}

.appear {
  -webkit-animation: appear 0.8s forwards;
  animation: appear 0.8s forwards;
}

@-webkit-keyframes appear {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

@keyframes appear {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

/* 画面外に消える */
.disappear {
  -webkit-animation: disappear 0.8s forwards;
  animation: disappear 0.8s forwards;
}

@-webkit-keyframes disappear {
  from {
    transform: translateY(0%);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes disappear {
  from {
    transform: translateY(0%);
  }

  to {
    transform: translateY(-100%);
  }
}

.mainvisual {
  position: relative;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 700px) {
  .mainvisual {
    justify-content: center;
  }
}

.mainvisual-txt {
  text-align: center;
  padding: 5px 70px 10px 10px;
  font-size: clamp(28px, 4vw, 56px);
  max-width: 700px;
  position: absolute;
  bottom: 50px;
  right: 3%;
  z-index: 20;
  -webkit-animation-name: thema-anime;
  animation-name: thema-anime;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
}

@-webkit-keyframes thema-anime {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    right: 5%;
  }

  100% {
    opacity: 1;
    right: 3%;
  }
}

@keyframes thema-anime {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    right: 5%;
  }

  100% {
    opacity: 1;
    right: 3%;
  }
}

@media (max-width: 700px) {
  .mainvisual-txt {
    bottom: -180px;
    left: 0;
    right: 0;
    padding: 0;
  }
}

.mainvisual-txt p {
  color: #fff;
  mix-blend-mode: difference;
  font-weight: 500;
}

@media (max-width: 700px) {
  .mainvisual-txt p {
    color: #002952;
    mix-blend-mode: normal;
  }
}

.mainvisual-jp {
  font-size: 18px;
}

@media (max-width: 700px) {
  .mainvisual-jp {
    font-size: 14px;
  }
}

#news ul {
  max-width: 650px;
  margin: 0 auto;
}

#news li {
  transition: all 0.5s;
  border-bottom: 0.5px solid #6d6d6d;
}

#news li a {
  color: #6d6d6d;
  display: flex;
  justify-content: space-between;
  padding: 16px 0 8px;
  font-size: clamp(14px, 2vw, 16px);
  transition: all 0.5s;
}

#news li a span:nth-child(2) {
  font-size: 12px;
}

@media (max-width: 700px) {
  #news li a span:nth-child(2) {
    display: none;
  }
}

#news li a:hover {
  transform: translateX(5px);
}

#news li br {
  display: none;
}

@media (max-width: 393px) {
  #news li br {
    display: block;
  }
}

#news .viewmore {
  justify-content: center;
  padding-top: 10px;
}

@media (max-width: 700px) {
  #news {
    padding-top: 160px;
  }

  #news li a {
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  #news p {
    display: none;
  }

  #news .viewmore {
    justify-content: center;
    padding-right: 0;
  }
}

#about {
  position: relative;
}

#about .about-wrapper {
  display: flex;
}

@media (max-width: 880px) {
  #about .about-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
}

#about .section-tittle {
  justify-content: start;
  position: absolute;
  left: 25%;
  padding-top: 50px;
}

@media (max-width: 880px) {
  #about .section-tittle {
    position: static;
    padding: 0;
  }
}

#about .about-txt {
  height: 320px;
  max-width: 600px;
  display: block;
  z-index: 5;
  background-color: rgba(109, 109, 109, 0.1215686275);
  padding: 30px 20px;
  margin: 140px -70px 0 0;
}

@media (max-width: 880px) {
  #about .about-txt {
    background-color: transparent;
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 0;
    height: auto;
  }
}

#about p {
  padding-top: 15px;
  white-space: nowrap;
}

@media (max-width: 500px) {
  #about p {
    white-space: normal;
  }

  #about p br {
    display: none;
  }
}

#about img {
  z-index: 0;
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 880px) {
  #about img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 700px;
    margin-right: 0;
  }
}

@media (max-width: 393px) {
  #about img {
    height: 180px;
  }
}

@media (max-width: 880px) {
  #about .section-tittle {
    justify-content: center;
  }
}

#project .project-wrapper {
  display: flex;
  align-items: center;
  padding-top: 40px;
  width: 100%;
}

#project .img-link {
  width: 50%;
  display: flex;
  position: relative;
}

@media (max-width: 700px) {
  #project .img-link {
    width: 100%;
    justify-content: center;
  }
}

#project .img-link .caption {
  font-size: clamp(20px, 2.85vw, 30px);
  color: #ffffff;
  padding-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#project .img-link .img-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
}

#project .img-link .img-mask:hover {
  opacity: 1;
}

#project .img-link img {
  -o-object-fit: cover;
  object-fit: cover;
}

#project .content {
  width: 50%;
  padding-left: 40px;
}

#project p {
  padding-bottom: 40px;
}

#project .details {
  display: flex;
  align-items: center;
  transition: transform 0.5s;
}

#project .details:hover {
  transform: translateX(5px);
}

#project .stickarrow {
  width: 20px;
  height: 5px;
  border-bottom: 1px solid #6d6d6d;
  border-right: 1px solid #6d6d6d;
  transform: skew(45deg);
  margin-left: 5px;
}

@media (max-width: 700px) {
  #project .section-tittle {
    padding-top: 0;
  }

  #project .project-wrapper {
    flex-direction: column;
    padding-top: 20px;
  }

  #project .content {
    padding-left: 0;
  }

  #project p {
    display: none;
  }

  #project .details {
    justify-content: center;
  }
}

#approach {
  text-align: center;
}

#approach .pillers-wrapper {
  display: flex;
  justify-content: space-around;
  padding-bottom: 40px;
}

#approach .pillers-wrapper img {
  height: 120px;
  max-width: 120px;
}

#approach li span {
  font-size: 12px;
}

#approach .approach-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  max-width: 100vw;
  padding: 0 3%;
}

#approach .approach-wrapper li {
  flex: none;
  min-width: 0;
}

#approach .approach-wrapper .image1 {
  width: 12vw;
  min-width: 40px;
  max-width: 80px;
}

#approach .approach-wrapper .image2 {
  width: 4vw;
  min-width: 15px;
  max-width: 30px;
}

#approach .approach-wrapper li p {
  font-size: clamp(10px, 2vw, 12px);
  padding-top: 10px;
  white-space: nowrap;
}

@media (max-width: 700px) {
  #approach .approach-wrapper {
    gap: 1vw;
  }

  #approach .approach-wrapper .image1 {
    width: 15vw;
    min-width: 30px;
    max-width: 60px;
  }

  #approach .approach-wrapper .image2 {
    width: 6vw;
    min-width: 12px;
    max-width: 20px;
  }
}

#approach .viewmore {
  justify-content: center;
  padding: 20px 0 30px;
}

@media (max-width: 700px) {
  #approach {
    padding: 60px 0 20px;
  }

  #approach .pillers-wrapper {
    flex-direction: column;
    padding-bottom: 20px;
  }

  #approach .pillers-wrapper li {
    padding-bottom: 10px;
  }
}

@media (max-width: 450px) {
  #approach .approach-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  #approach .approach-wrapper li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  #approach .approach-wrapper .image1 {
    width: 50px;
    min-width: 50px;
    max-width: 50px;
  }

  #approach .approach-wrapper .image2 {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    transform: rotate(90deg);
  }

  #approach .approach-wrapper li p {
    font-size: 12px;
    padding-top: 0;
    margin-left: 10px;
  }

  #approach .approach-wrapper li:last-child .image2 {
    display: none;
  }
}

#contact {
  display: flex;
  justify-content: space-around;
  padding: 120px 10%;
}

@media (max-width: 700px) {
  #contact {
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
  }
}

#contact a {
  display: flex;
  width: 260px;
  height: 260px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s;
  position: relative;
}

#contact a span {
  font-family: tittle-font;
  font-weight: normal;
  white-space: nowrap;
  padding-bottom: 15px;
  font-size: clamp(16px, 2.28vw, 24px);
}

@media (max-width: 700px) {
  #contact a span {
    padding-bottom: 0;
  }
}

@media (max-width: 700px) {
  #contact a {
    flex-direction: row;
    max-width: 300px;
    height: 60px;
  }
}

#contact a:nth-child(1) {
  background-color: hsla(210deg, 93%, 17%, 0.7);
  margin-right: 5px;
  border: 8px solid hsla(210deg, 93%, 17%, 0.7);
  color: #ffffff;
  transition: all 0.5s;
}

@media (max-width: 700px) {
  #contact a:nth-child(1) {
    margin: 0;
  }
}

#contact a:nth-child(1)::before {
  content: "";
  display: block;
  position: absolute;
  top: 65%;
  left: 50%;
  width: 26px;
  height: 0.5px;
  background: #ffffff;
  transform: translateX(-50%);
}

@media (max-width: 700px) {
  #contact a:nth-child(1)::before {
    left: 87%;
    top: 50%;
  }
}

#contact a:nth-child(1)::after {
  content: "";
  display: block;
  position: absolute;
  top: 63.5%;
  left: 52%;
  width: 10px;
  height: 1px;
  background: #ffffff;
  transform: rotate(-135deg);
}

@media (max-width: 700px) {
  #contact a:nth-child(1)::after {
    left: 89%;
    top: 43%;
  }
}

#contact a:nth-child(1) span:nth-child(1) {
  font-size: clamp(12px, 1.17vw, 18px);
}

@media (max-width: 700px) {
  #contact a:nth-child(1) span:nth-child(1) {
    padding-right: 8px;
  }
}

#contact a:nth-child(1):hover {
  background-color: #ffffff;
  color: #6d6d6d;
}

@media (max-width: 700px) {
  #contact a:nth-child(1):hover {
    border: 5px solid hsla(210deg, 100%, 16%, 0.7);
  }
}

#contact a:nth-child(1):hover::before {
  background: #6d6d6d;
}

#contact a:nth-child(1):hover::after {
  background: #6d6d6d;
}

#contact a:nth-child(2) {
  margin-top: 80px;
  border: 8px solid hsla(210deg, 93%, 17%, 0.7);
  transition: all 0.5s;
}

@media (max-width: 700px) {
  #contact a:nth-child(2) {
    margin-top: 30px;
    border: 5px solid hsla(210deg, 100%, 16%, 0.7);
  }
}

#contact a:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  top: 65%;
  left: 50%;
  width: 26px;
  height: 0.5px;
  background: #6d6d6d;
  transform: translateX(-50%);
}

@media (max-width: 700px) {
  #contact a:nth-child(2)::before {
    left: 87%;
    top: 50%;
  }
}

#contact a:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  top: 63.5%;
  left: 52%;
  width: 10px;
  height: 1px;
  background: #6d6d6d;
  transform: rotate(-135deg);
}

@media (max-width: 700px) {
  #contact a:nth-child(2)::after {
    left: 89%;
    top: 43%;
  }
}

#contact a:nth-child(2):hover {
  background-color: hsla(210deg, 100%, 16%, 0.7);
  color: #ffffff;
}

@media (max-width: 700px) {
  #contact a:nth-child(2):hover {
    border: 5px solid hsla(210deg, 100%, 16%, 0.7);
  }
}

#contact a:nth-child(2):hover::before {
  background: #ffffff;
}

#contact a:nth-child(2):hover::after {
  background: #ffffff;
}

#contact .fadein2 {
  transition: all 0.8s;
}

footer {
  background-image: url(../img/footer.jpg);
  height: 240px;
  width: 100%;
  background-size: cover;
  text-align: center;
}

footer .logo {
  font-size: clamp(18px, 2.57vw, 24px);
  padding: 60px 0 30px;
}

@media (max-width: 700px) {
  footer .logo {
    padding: 20px 0;
  }
}

footer ul {
  display: flex;
  justify-content: center;
}

@media (max-width: 700px) {
  footer ul {
    flex-direction: column;
  }
}

footer li {
  padding: 0 20px 50px;
}

@media (max-width: 700px) {
  footer li {
    padding: 0;
  }
}

footer p {
  font-size: 10px;
  padding-top: 10px;
}

.project-screen {
  -webkit-animation: loading 1s;
  animation: loading 1s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.project-screen .section-tittle {
  padding-top: 160px;
  justify-content: start;
}

.project-screen .container {
  padding: 0 3%;
}

.res-slick-img {
  display: none;
  max-width: 700px;
}

@media (max-width: 700px) {
  .res-slick-img {
    display: block;
  }
}

@media (max-width: 700px) {
  .slick-img {
    display: none;
  }
}

.project-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 700px) {
  .project-page {
    flex-direction: column;
  }
}

.project-txt {
  max-width: 50%;
  line-height: 1.8;
  font-size: clamp(12px, 1.71vw, 16px);
  padding-left: 30px;
}

.project-txt dl {
  padding-top: 20px;
}

.project-txt .text {
  padding-top: 20px;
}

.project-txt dt {
  float: left;
}

.project-txt dt::after {
  content: "：";
}

@media (max-width: 700px) {
  .project-txt {
    max-width: 100%;
  }
}

.change-img__main {
  width: 100%;
  text-align: center;
}

.change-img__img-sub {
  width: 100%;
}

.change-img__list {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 20px 0;
  justify-content: space-around;
}

.change-img__item {
  padding: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.change-img__item img {
  max-width: 150px;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
}

.send-page {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.send-page a {
  font-size: 12px;
  position: relative;
  display: inline-block;
}

.send-page a::after {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 0.5px;
  background: #6d6d6d;
  bottom: -13px;
  transition: all 0.5s;
  opacity: 0;
}

.send-page a:hover::after {
  opacity: 1;
  bottom: -5px;
}

@media (max-width: 700px) {
  .send-page {
    padding-top: 20px;
  }
}

.approach-screen {
  position: relative;
}

.approach-container {
  display: flex;
}

@media (max-width: 880px) {
  .approach-container {
    flex-direction: column;
  }
}

.approach-container img {
  width: 50%;
  z-index: -10;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 880px) {
  .approach-container img {
    height: 500px;
    width: 100vw;
    -o-object-position: 50% 75%;
    object-position: 50% 75%;
  }
}

.approach-txt {
  width: 50%;
  padding: 180px 0 130px 40px;
  display: inline-block;
}

@media (max-width: 880px) {
  .approach-txt {
    padding: 40px 0 60px;
    text-align: center;
    width: 100%;
  }
}

.approach-txt h3 {
  padding-bottom: 40px;
}

.approach-txt p {
  padding: 0 2% 30px;
  line-height: 1.8;
}

@media (max-width: 420px) {
  .approach-txt p {
    font-size: 12px;
    white-space: nowrap;
  }
}

.under-txt {
  display: inline-block;
  width: 100%;
  background-color: hsla(210deg, 93%, 17%, 0.7);
  z-index: 1;
  padding: 20px 2%;
  line-height: 1.8;
  position: absolute;
  bottom: 0;
}

.under-txt p {
  color: #fff;
  text-align: center;
}

.under-txt br {
  display: none;
}

@media (max-width: 490px) {
  .under-txt br {
    display: block;
  }
}

@media (max-width: 880px) {
  .under-txt {
    position: static;
  }
}

.contact-screen .container {
  padding: 100px 3% 60px;
}

.contact-screen .sub-tittle,
.contact-screen p {
  text-align: center;
}

.contact-screen .sub-tittle {
  padding: 50px;
}

.contact-screen .contact-txt {
  padding-bottom: 30px;
}

.contact-screen .form-label {
  text-align: center;
}

.contact-screen .form-label span {
  color: #6d6d6d;
  white-space: nowrap;
}

.contact-screen .japanese {
  font-size: 11px;
}

@media (max-width: 393px) {
  .contact-screen .japanese {
    padding-left: 10px;
  }
}

.contact-screen .form-wrapper {
  display: flex;
  align-items: flex-start;
  padding-bottom: 20px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 393px) {
  .contact-screen .form-wrapper {
    flex-direction: column;
    align-items: normal;
  }
}

.contact-screen .form-label {
  display: flex;
  flex-direction: column;
  width: 180px;
}

@media (max-width: 393px) {
  .contact-screen .form-label span {
    display: block;
  }
}

@media (max-width: 393px) {
  .contact-screen .form-label {
    flex-direction: row;
    align-items: flex-end;
  }
}

.contact-screen .form-input {
  max-width: 320px;
}

.contact-screen .form-input input::-moz-placeholder, .contact-screen .form-input textarea::-moz-placeholder {
  color: hsla(0deg, 0%, 43%, 0.5);
  font-size: 14px;
}

.contact-screen .form-input input::placeholder,
.contact-screen .form-input textarea::placeholder {
  color: hsla(0deg, 0%, 43%, 0.5);
  font-size: 14px;
}

.contact-screen .form-input input,
.contact-screen .form-input textarea {
  font-size: 16px;
  border: 1px solid #6d6d6d;
  padding: 3px 5px;
  flex: 1;
  text-align: left;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.contact-screen textarea {
  resize: none;
}

.contact-screen .btn-area {
  background-color: hsla(0deg, 0%, 43%, 0.6);
  width: 80px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  margin: 30px auto 0;
  transition: all 0.5s;
  cursor: pointer;
  text-align: center;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
}

.contact-screen .btn-area:hover {
  transform: translateY(-5px);
  background-color: hsla(210deg, 100%, 16%, 0.7);
}

.contact-screen .btn-area input {
  cursor: pointer;
  color: #ffffff;
  height: 30px;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
}

.faq-screen .container {
  padding: 150px 3% 120px;
}

.faq-screen h3 {
  display: inline-block;
  text-align: left;
}

.faq-screen .accordion-tittle {
  position: relative;
  font-size: clamp(12px, 1.71vw, 18px);
  border-bottom: 1px solid #6d6d6d;
  padding: 30px 35px 8px 2px;
  cursor: pointer;
  transition: all 0.5s;
  color: #6d6d6d;
}

.faq-screen .accordion-tittle:hover {
  border-bottom: 1px solid #969595;
  color: #969595;
}

.faq-screen .accordion-tittle::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: rgba(109, 109, 109, 0.7) transparent transparent transparent;
  border-width: 11px 6px 0px 6px;
  bottom: 10px;
  margin-left: 20px;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 700px) {
  .faq-screen .accordion-tittle::after {
    right: 0;
  }
}

.faq-screen .accordion-tittle.open::after {
  transform: rotate(-180deg);
}

.faq-screen .accordion-content {
  display: none;
  padding: 10px 20px;
  font-size: 14px;
}

@media (max-width: 700px) {
  .faq-screen .accordion-content {
    font-size: 10px;
    padding-left: 0;
  }
}

.open dt::after {
  transform: rotate(180deg);
}

/*# sourceMappingURL=style.css.map */