/* default settings */
.c-form {
  text-align: left;
}
.c-form dl {
  margin-bottom: 1.25rem;
  display: block;
  width: 100%;
}
.c-form dl dt {
  margin-bottom: 0.3125rem;
}
.c-form dl dt span {
  color: #ff0909;
}
.c-form input,
.c-form textarea,
.c-form .file-control,
.c-form select {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
  background-color: #fff;
  border: 1px solid #a7a7a7;
  padding: 0.3125rem 0.875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.875rem;
  line-height: 1.875rem;
  outline: none;
}
.c-form input::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder,
.c-form .file-control::-webkit-input-placeholder,
.c-form select::-webkit-input-placeholder {
  color: #aeabab;
}
.c-form input::-moz-placeholder,
.c-form textarea::-moz-placeholder,
.c-form .file-control::-moz-placeholder,
.c-form select::-moz-placeholder {
  color: #aeabab;
}
.c-form input:-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder,
.c-form .file-control:-ms-input-placeholder,
.c-form select:-ms-input-placeholder {
  color: #aeabab;
}
.c-form input::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder,
.c-form .file-control::-ms-input-placeholder,
.c-form select::-ms-input-placeholder {
  color: #aeabab;
}
.c-form input::placeholder,
.c-form textarea::placeholder,
.c-form .file-control::placeholder,
.c-form select::placeholder {
  color: #aeabab;
}
.c-form select {
  width: 12.625rem;
  height: 2.1875rem;
}
.c-form input {
  width: 100%;
  height: 2.1875rem;
}
.c-form textarea {
  display: block;
  width: 100%;
  height: 11.25rem;
  padding: 0.625rem 0.875rem;
  resize: none;
}
.c-form label.error {
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-style: italic;
  color: red;
}
.c-form .file-control {
  font-family: SVN-GilroySemiBold, sans-serif;
  font-style: normal;
  display: block;
  border-radius: 0;
  cursor: pointer;
  padding: 0.625rem 1.25rem 1.0625rem;
  text-align: center;
}
.c-form .file-control small {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
  color: #aeabab;
  font-size: 0.75rem;
  line-height: 0.8125rem;
  display: block;
}
.c-form .btn-send {
  background-color: #10623a;
  font-family: SVN-GilroyBold, sans-serif;
  font-style: normal;
  border-radius: 0.625rem;
  margin-left: auto;
  margin-top: 1.5625rem;
  padding-top: 0.1875rem;
  width: 8.9375rem;
  height: 2.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.875rem;
  font-size: 1.25rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  color: #fff;
}
.c-form .btn-send:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .c-form input,
  .c-form textarea,
  .c-form .file-control {
    padding: 0.3125rem 0.875rem;
  }
  .c-form textarea {
    height: 6.25rem;
  }
  .c-form .file-control {
    height: auto;
  }
  .c-form .c-btn {
    margin-top: 0.625rem;
  }
}

.c-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-card-wrap .c-card {
  width: 100%;
  display: block;
  margin-bottom: 1.375rem;
}
@media (min-width: 768px) {
  .c-card-wrap .c-card {
    width: 49%;
  }
  .c-card-wrap .c-card:not(:nth-child(2n)) {
    margin-right: 1.9%;
  }
}

.c-card {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: block;
}
.c-card .photo {
  display: block;
  position: relative;
  padding-bottom: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  overflow: hidden;
}
.c-card .photo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.c-card .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-card .group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0 1.25rem;
  opacity: 0;
}
.c-card .group .title {
  border-bottom: 1px solid;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 700;
  color: #fff;
}
.c-card:hover .group {
  opacity: 1;
}
@media (max-width: 767px) {
  .c-card .group .title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

/* 
.section-contact {
  padding: 7.3125rem 0 6.375rem;
}
.section-contact .form {
  width: 42.0625rem;
  background-color: #EFEFEF;
  padding: 2.75rem 3.125rem 2.75rem 2.5rem;
}
.section-contact .info {
  padding-top: 2.25rem;
  width: 25.625rem;
}
.section-contact .info .note {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  color: #807653;
}
.section-contact .info dl {
  margin-top: 2.5rem;
  color: #10623a;
}
.section-contact .info dl dt {
  text-transform: uppercase;
  font-family: SVN-GilroySemiBold, sans-serif;
  font-style: normal;
}
.section-contact .info dl dd:nth-of-type(2) {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .section-contact {
    padding: 3.125rem 0;
  }
  .section-contact .form {
    padding: 1.25rem 1.25rem;
    width: 100%;
  }
  .section-contact .info {
    width: 100%;
  }
  .section-contact .info .note {
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
} */
/* 
.c-form-02 {
  text-align: left;
}
.c-form-02 dl {
  margin-bottom: 0.625rem;
  display: block;
  width: 100%;
}
.c-form-02 dl.w50 {
  width: 49%;
}
.c-form-02 dl dt {
  margin-bottom: 0.3125rem;
}
.c-form-02 dl dt span {
  color: #ff0909;
}
.c-form-02 input,
.c-form-02 textarea,
.c-form-02 .file-control,
.c-form-02 select {
  font-family: SVN-Gilroy, sans-serif;
  font-style: normal;
  background-color: #fff;
  border: none;
  padding: 0.3125rem 0.875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.875rem;
  line-height: 1.875rem;
  outline: none;
}
.c-form-02 input::-webkit-input-placeholder,
.c-form-02 textarea::-webkit-input-placeholder,
.c-form-02 .file-control::-webkit-input-placeholder,
.c-form-02 select::-webkit-input-placeholder {
  color: #aeabab;
}
.c-form-02 input::-moz-placeholder,
.c-form-02 textarea::-moz-placeholder,
.c-form-02 .file-control::-moz-placeholder,
.c-form-02 select::-moz-placeholder {
  color: #aeabab;
}
.c-form-02 input:-ms-input-placeholder,
.c-form-02 textarea:-ms-input-placeholder,
.c-form-02 .file-control:-ms-input-placeholder,
.c-form-02 select:-ms-input-placeholder {
  color: #aeabab;
}
.c-form-02 input::-ms-input-placeholder,
.c-form-02 textarea::-ms-input-placeholder,
.c-form-02 .file-control::-ms-input-placeholder,
.c-form-02 select::-ms-input-placeholder {
  color: #aeabab;
}
.c-form-02 input::placeholder,
.c-form-02 textarea::placeholder,
.c-form-02 .file-control::placeholder,
.c-form-02 select::placeholder {
  color: #aeabab;
}
.c-form-02 select {
  width: 12.625rem;
  height: 3.25rem;
}
.c-form-02 input {
  width: 100%;
  height: 3.25rem;
}
.c-form-02 textarea {
  display: block;
  width: 100%;
  height: 11.6875rem;
  padding: 0.625rem 0.875rem;
  resize: none;
}
.c-form-02 label.error {
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-style: italic;
  color: red;
}
.c-form-02 .btn-send {
  background-color: #10623a;
  font-family: SVN-GilroyBold, sans-serif;
  font-style: normal;
  margin-left: auto;
  margin-top: 3.125rem;
  padding-top: 0.1875rem;
  width: 100%;
  height: 3.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.875rem;
  font-size: 1.25rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  color: #fff;
}
.c-form-02 .btn-send:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .c-form-02 input,
  .c-form-02 textarea,
  .c-form-02 .file-control {
    padding: 0.3125rem 0.875rem;
  }
  .c-form-02 textarea {
    height: 6.25rem;
  }
  .c-form-02 .btn-send {
    margin-top: 1.875rem;
  }
} */

.key.key-page {
  background-image: url(../img/product/key.jpg);
}

.product-category {
  padding: 4.375rem 0 8rem;
}
@media (max-width: 767px) {
  .product-category {
    padding: 3.125rem 0 3.125rem;
  }
}
@media (max-width: 767px) {
  .product-category .c-title {
    font-size: 1.4375rem;
  }
}
.product-category .content .slider {
  margin-top: 3.125rem;
  margin-bottom: 2.1875rem;
}
.product-category .content .slider .item {
  width: 31.75rem;
  margin-right: 1.6875rem;
}
.product-category .content .txt01 {
  font-weight: 400;
  margin-bottom: 1.875rem;
}
.product-category .content .txt {
  margin-bottom: 1.125rem;
}
.product-category .content .txt.txt-bold {
  font-family: SVN-GilroyBold, sans-serif;
  font-style: normal;
}
@media (max-width: 767px) {
  .product-category .content .slider {
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem;
  }
  .product-category .content .slider .item {
    width: 20.9375rem;
    margin-right: 0.9375rem;
  }
}

.product-list {
  margin-top: 3.5rem;
}
.product-list .slider .item {
  width: 355px;
}
.product-list .slider .item a {
  width: calc(100% - 20px);
}
/* @media (max-width: 767px) {
  .product-list {
    margin-top: 3.125rem;
  }
} */
.slick-arrow.slick-next {
  right: -12px;
  transform: translateX(100%) rotate(180deg);
}
.slick-arrow.slick-prev {
  left: -12px;
  transform: translateX(-100%);
}
.product-single {
  padding: 4.375rem 0 2.1875rem;
}
.product-single .content .c-title {
  margin-bottom: 0.625rem;
  font-weight: 600;
}
.product-single .content .group {
  margin-top: 1.875rem;
}
.product-single .content .group p {
  margin-bottom: 1.5625rem;
}
@media (min-width: 768px) {
  .product-single .content .photo {
    width: 30.875rem;
  }
  .product-single .content .group {
    margin-top: 0;
    width: 32rem;
  }
}

.product-related {
  margin-top: 3.875rem;
}
.product-related .c-card-wrap .c-card {
  margin-bottom: 2.1875rem;
}
@media (min-width: 768px) {
  .product-related .c-card-wrap .c-card {
    width: 31.2%;
    margin-right: 3.2%;
  }
  .product-related .c-card-wrap .c-card:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .product-related .c-card-wrap .c-card {
    margin-bottom: 1.25rem;
  }
}
.product-related .c-card-wrap .c-card .photo {
  padding-bottom: 75.7%;
}
.product-related .c-card-wrap .c-card .group .title {
  font-size: 1rem;
}
