@charset "UTF-8";

@media screen and (min-width: 1201px) {

#support {
  display: block;
  padding: 60px 0 100px;
  background: #fff;
}

.support_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: -30px 0;
}

.support_box {
  position: relative;
  flex-basis: calc(100% / 2);
  max-width: calc(100% / 2);
  padding: 30px 0;
  border-top: 1px solid #e6e6e6;
}

.support_box:nth-child(1),
.support_box:nth-child(2) {
  border-top: none;
}

.support_detail {
  display: flex;
  height: 99px;
  padding: 0;
}

.support_detail_left {
  margin: auto 25px auto 30px;
}

.support_detail_left img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.support_detail_right {
  display: flex;
  flex-direction: column;
}

.support_detail_right_only {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support_box:nth-child(odd) .support_detail {
  border-right: 1px solid #e6e6e6;
}

.support_box:nth-child(even) .support_detail {
  border-right: none;
}

.support_detail:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  width: 6.5px;
  height: 6.5px;
  border-top: 2px solid #e60012;
  border-right: 2px solid #e60012;
  transform: rotate(45deg) translateY(-50%);
  transition: .3s ease-in-out;
}

.support_detail:hover .support_title1,
.support_detail:hover .support_title2 {
  color: #e60012;
}

.support_detail:hover:after {
  animation: support_arrow_out forwards 0.15s ease 0s,support_arrow_in forwards 0.15s ease alternate 0.3s;
}

@keyframes support_arrow_out {
  0% {
    opacity: 1;
    right: 35px;
  }
  100% {
    opacity: 0;
    right: 33px;
  }
}

@keyframes support_arrow_in {
  0% {
    opacity: 0;
    right: 37px;
  }
  100% {
    opacity: 1;
    right: 35px;
  }
}

.support_title1,
.support_title2 {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  transition: .3s ease-in-out;
}

.support_text {
  margin-top: 12px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.support_box:nth-child(4) .support_title1,
.support_box:nth-child(4) .support_title2 {
  margin-left: -12px;
}
}

@media screen and (min-width: 769px) and (max-width: 1200px) {

#support {
  display: block;
  padding: 60px 0 80px;
  background: #fff;
}

.support_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: -30px 0;
}

.support_box {
  position: relative;
  flex-basis: calc(100% / 2);
  max-width: calc(100% / 2);
  padding: 30px 0;
  border-top: 1px solid #e6e6e6;
}

.support_box:nth-child(1),
.support_box:nth-child(2) {
  border-top: none;
}

.support_detail {
  display: flex;
  height: 99px;
  padding: 0;
}

.support_detail_left {
  margin: auto 19px;
}

.support_detail_left img {
  width: 55px;
  height: 55px;
  object-fit: cover;
}

.support_detail_right {
  display: flex;
  flex-direction: column;
}

.support_detail_right_only {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support_box:nth-child(odd) .support_detail {
  border-right: 1px solid #e6e6e6;
}

.support_box:nth-child(even) .support_detail {
  border-right: none;
}

.support_detail:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 6.5px;
  height: 6.5px;
  border-top: 2px solid #e60012;
  border-right: 2px solid #e60012;
  transform: rotate(45deg) translateY(-50%);
  transition: .3s ease-in-out;
}

.support_detail:hover .support_title1,
.support_detail:hover .support_title2 {
  color: #e60012;
}

.support_detail:hover:after {
  animation: support_arrow_out forwards 0.15s ease 0s,support_arrow_in forwards 0.15s ease alternate 0.3s;
}

@keyframes support_arrow_out {
  0% {
    opacity: 1;
    right: 28px;
  }
  100% {
    opacity: 0;
    right: 26px;
  }
}

@keyframes support_arrow_in {
  0% {
    opacity: 0;
    right: 30px;
  }
  100% {
    opacity: 1;
    right: 28px;
  }
}

.support_title1,
.support_title2 {
  padding-right: 20px;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  transition: .3s ease-in-out;
}

.support_text {
  margin-top: 12px;
  padding-right: 20px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.support_box:nth-child(4) .support_title1,
.support_box:nth-child(4) .support_title2 {
  margin-left: 0;
}
}

@media screen and (max-width: 768px) {

#support {
  display: block;
  padding: 40px 0;
  overflow: hidden;
  background: #fff;
}

.support_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.support_box {
  position: relative;
  flex-basis: 100%;
  max-width: 100%;
  padding: 19px 0;
  border-bottom: 1px solid #e6e6e6;
}

.support_box:last-child {
  border-bottom: none;
}

.support_detail {
  display: flex;
  height: auto;
}

.support_detail_left {
  margin: auto 10px auto 0;
}

.support_detail_left img {
  width: 45px;
  height: auto;
  object-fit: cover;
}

.support_detail_right {
  display: flex;
  flex-direction: column;
  padding-right: 12px;
}

.support_detail_right_only {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 14px;
}

.support_box:nth-child(odd) .support_detail,
.support_box:nth-child(even) .support_detail {
  border-right: none;
}

.support_detail:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #e60012;
  border-right: 1.5px solid #e60012;
  transform: rotate(45deg) translateY(-50%);
  transition: .3s ease-in-out;
}

.support_detail:hover .support_detail:after {
  right: 10px;
}

.support_detail:hover .support_title1,
.support_detail:hover .support_title2 {
  color: #e60012;
}

.support_title1 {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  transition: .3s ease-in-out;
}

.support_title2 {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  transition: .3s ease-in-out;
}

.support_text {
  margin-top: 12px;
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}
}