.contact-container {
  width: 100%;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.contact-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-list-item {
  width: 47.5%;
  padding-bottom: 3rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 2rem;
}

.contact-list-item-title {
  font-size: 1.375rem;
  color: #0072b8;
  font-weight: 400;
  margin-bottom: 2.5rem;
  margin-top: 3rem;
  margin-left: 3.125rem;
}

.contact-list-item-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 3.125rem;
}

.contact-list-item-box:not(:last-child) {
  margin-bottom: .875rem;
}

.contact-list-item-icon {
  height: 1.25rem;
  width: 1.25rem;
  margin-right: .5rem;
}

.contact-list-item-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-list-item-txt {
  font-size: .875rem;
}

.contact-list-item-txt > span {
  color: #0072b8;
  cursor: pointer;
}

.contact-list-item-txt > span:hover {
  font-weight: bold;
}

.comment-container {
  width: 100%;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.comment-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.comment-content {
  width: 100%;
}

.comment-content > textarea {
  width: calc(100% - 1rem);
  min-height: 6rem;
  font-size: 1rem;
  padding: .5rem;
  border: .0625rem solid rgba(0,0,0,0.2);
}

.comment-content > textarea:focus {
  outline: none;
  border: .0625rem solid #0072b8;
}

.comment-checked-list {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #666;
  font-size: .875rem;
}

.comment-checked-list > div:not(:last-child) {
  margin-bottom: .25rem;
}

.comment-checked-list-item > span {
  margin-left: .25rem;
}

.comment-textbox-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 1rem);
}

.comment-textbox-list-item {
  width: 48%;
  margin-bottom: 1rem;
}

.comment-textbox-list-item > input {
  width: 100%;
  border: .0625rem solid rgba(0,0,0,0.2);
  min-height: 1.5rem;
  font-size: 1rem;
  padding: .5rem;
}

.comment-textbox-list-item > input:focus {
  outline: none;
  border: .0625rem solid #0072b8;
}

.comment-btn > span {
  background-color: rgb(233, 233, 233);
  display: inline-block;
  padding-bottom: .625rem;
  padding-top: .625rem;
  padding-left: 3.25rem;
  padding-right: 3.25rem;
  font-size: .875rem;
  cursor: pointer;
}

.comment-btn > span:hover {
  transition: all .3s;
  background-color: #0072b8;
  color: white;
}

@media screen and (max-width: 1400px) {
  .contact-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .contact-list-item {
    padding-bottom: 3.5rem;
  }
  
  .contact-list-item-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    margin-left: 5rem;
  }

  .contact-list-item-txt {
    font-size: 1.125rem;
  }
  
  .contact-list-item-box {
    margin-left: 4rem;
  }
  
  .contact-list-item-box:not(:last-child) {
    margin-bottom: 1.125rem;
  }
  
  .contact-list-item-icon {
    height: 1.5rem;
    width: 1.5rem;
    margin-right: .75rem;
  }
  
  .comment-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  
  .comment-content > textarea {
    min-height: 8rem;
    font-size: 1.25rem;
    padding: .75rem;
    border: 1px solid rgba(0,0,0,0.2);
  }
  
  .comment-content > textarea:focus {
    outline: none;
    border: 1px solid #0072b8;
  }
  
  .comment-checked-list {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }
  
  .comment-checked-list > div:not(:last-child) {
    margin-bottom: .5rem;
  }
  
  .comment-checked-list-item > span {
    margin-left: .5rem;
  }
  
  .comment-textbox-list-item {
    margin-bottom: 1.25rem;
  }
  
  .comment-textbox-list-item > input {
    border: 1px solid rgba(0,0,0,0.2);
    min-height: 2rem;
    font-size: 1.25rem;
    padding: 1rem;
  }
  
  .comment-textbox-list-item > input:focus {
    border: 1px solid #0072b8;
  }
  
  .comment-btn > span {
    padding-bottom: .875rem;
    padding-top: .875rem;
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 900px) {
  .contact-list {
    flex-wrap: wrap;
  }
  
  .contact-list-item {
    width: 100%;
    margin-bottom: 20px;
  }  

  .contact-container {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .contact-list-item {
    padding-bottom: 50px
  }
  
  .contact-list-item-title {
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 30px;
    margin-left: 70px;
  }
  
  .contact-list-item-box {
    margin-left: 60px;
  }
  
  .contact-list-item-box:not(:last-child) {
    margin-bottom: 18px;
  }
  
  .contact-list-item-icon {
    height: 24px;
    width: 24px;
    margin-right: 14px;
  }

  .contact-list-item-txt {
    font-size: 18px;
  }
  
  .comment-container {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .comment-content > textarea {
    min-height: 120px;
    font-size: 20px;
    padding: 12px;
    width: calc(100% - 24px);
  }
  
  .comment-checked-list {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .comment-checked-list > div:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .comment-checked-list-item > span {
    margin-left: 10px;
  }

  .comment-textbox-list {
    width: calc(100% - 32px);
  }
  
  .comment-textbox-list-item {
    margin-bottom: 20px;
  }
  
  .comment-textbox-list-item > input {
    min-height: 32px;
    font-size: 20px;
    padding: 16px;
  }
  
  .comment-btn > span {
    padding-bottom: 14px;
    padding-top: 14px;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .contact-list-item-title {
    font-size: 22px;
  }

  .contact-list-item-txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 909px) {
  .comment-textbox-list {
    flex-wrap: wrap;
  }

  .comment-textbox-list-item {
    width: 100%;
  }
}


@media screen and (max-width: 600px) {
  .contact-list-item {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .contact-list-item-title {
    margin-left: 0;
  }
  
  .contact-list-item-box {
    margin-left: 0;
  }
}