* {
  font-family: open-sans, noto-sans-cjk-jp, sans-serif;
}

.fade {
  width: 100vw;
  height: 130vh;
  position: fixed;
  top: 0px;
  background: #FFF;
  animation-name: fade;
  animation-duration: 1s;
  animation-fill-mode: both;
  z-index: 1000000;
  pointer-events: none;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
header .header_wrap {
  width: 84vw;
  max-width: 1080px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
}
header .history_border {
  border-top: solid 1px #CDD1D1;
}
header .history_wrap {
  width: 84vw;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: unset;
  height: 40px;
}
header .history_wrap a {
  padding-right: 40px;
  font-size: 12px;
  position: relative;
  color: #454545;
}
header .history_wrap a::after {
  content: ">";
  position: absolute;
  right: 15px;
  top: -1px;
}
header .history_wrap a:nth-last-child(1)::after {
  display: none;
}
header .history_wrap a:hover {
  opacity: 0.7;
}

.header_sp {
  display: none;
}

@media (max-width: 768px) {
  header .header_wrap {
    width: 89.333vw;
    height: 52px;
  }
  header .header_wrap .header {
    height: 33px;
    width: auto;
  }
  header .history_wrap {
    width: 89.333vw;
  }
  header .history_wrap a {
    padding-right: 20px;
    font-size: 10px;
  }
  header .history_wrap a::after {
    right: 5px;
    top: 0px;
  }
  header .sp_menu {
    display: block;
    margin: 0px;
    width: 27px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    z-index: 1000000;
    margin-left: auto;
  }
  header .header_sp {
    display: block;
    width: 100vw;
    height: 120vh;
    background: rgba(255, 255, 255, 0.9);
    z-index: 100000;
    position: fixed;
    top: 0px;
    right: -100vw;
    transition: right 0.3s;
  }
  header .header_sp.menu--open {
    right: 0;
  }
  header .header_sp nav {
    display: block;
    width: 90.666vw;
    max-width: 340px;
    margin: 0 auto;
    padding-top: 80px;
    padding-left: 0;
  }
  header .header_sp nav a {
    display: flex;
    align-items: center;
    justify-content: left;
    color: #454545;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 18px;
  }
  header .menu__button {
    width: 27px;
    position: relative;
  }
  header .sp_menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #454545;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    transition: 0.2s;
  }
  header .menu__lineTop {
    transform: translateY(-7.46px);
  }
  header .menu__lineBottom {
    transform: translateY(7.46px);
  }
  header .menu--isOpen .menu__lineTop {
    transform: rotate(45deg);
  }
  header .menu--isOpen .menu__lineMiddle {
    opacity: 0;
  }
  header .menu--isOpen .menu__lineBottom {
    transform: rotate(-45deg);
  }
}
a {
  text-decoration: none;
}

.yes .cls-2 {
  fill: #64c937;
}

main.bg {
  background-image: url(../images/main/bg.png);
  background-size: contain;
}

@media (max-width: 768px) {
  main.bg {
    background-image: url(../images/main/bg-sp.png);
    background-size: contain;
  }
}
main {
  border: solid 20px #7D39FF;
  border-image: linear-gradient(118deg, #7D39FF 0%, #76E7FC 100%);
  border-image-slice: 20;
}
main .shindan {
  padding: 82px 0 94px;
  width: 84vw;
  max-width: 1080px;
  margin: 0 auto;
}
main .shindan .return {
  display: block;
  width: fit-content;
  margin: 56px auto 0;
  color: #588CFF;
  font-weight: bold;
}
main .shindan .return:hover {
  opacity: 0.7;
}
main .shindan .Q {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
main .shindan h1 {
  font-size: 24px;
  text-align: center;
  margin-top: 40px;
}
main .shindan .answer_wrap {
  border-radius: 10px;
  margin-top: 49px;
  padding: 10px 0 80px;
}
main .shindan .answer_wrap img {
  margin: 0 auto;
}
main .shindan .answer_wrap .yes_no_wrap {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 51px;
  margin: 30px auto 0;
  width: fit-content;
}
main .shindan .answer_wrap .yes_no_wrap .yes,
main .shindan .answer_wrap .yes_no_wrap .no {
  width: 312px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #64C937;
  color: white;
  font-weight: 700;
  border-radius: 31px;
  position: relative;
  transition: 0.2s all ease-in-out;
}
main .shindan .answer_wrap .yes_no_wrap .yes svg .cls-1,
main .shindan .answer_wrap .yes_no_wrap .no svg .cls-1 {
  transition: 0.2s all ease-in-out;
}
main .shindan .answer_wrap .yes_no_wrap .yes svg .cls-2,
main .shindan .answer_wrap .yes_no_wrap .no svg .cls-2 {
  transition: 0.2s all ease-in-out;
}
main .shindan .answer_wrap .yes_no_wrap .yes {
  position: relative;
}
main .shindan .answer_wrap .yes_no_wrap .yes svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
main .shindan .answer_wrap .yes_no_wrap .no {
  background: #E5435C;
}
main .shindan .answer_wrap .yes_no_wrap .no svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
main .shindan .answer_wrap .yes_no_wrap .yes:hover {
  background: white !important;
  box-shadow: 0 0 0 2px #64C937 inset;
  color: #64C937;
}
main .shindan .answer_wrap .yes_no_wrap .yes:hover svg .cls-1 {
  fill: #64c937;
}
main .shindan .answer_wrap .yes_no_wrap .yes:hover svg .cls-2 {
  fill: #fff;
}
main .shindan .answer_wrap .yes_no_wrap .no:hover {
  background: white !important;
  box-shadow: 0 0 0 2px #E5435C inset;
  color: #E5435C;
}
main .shindan .answer_wrap .yes_no_wrap .no:hover svg .cls-1 {
  fill: #E5435C;
}
main .shindan .answer_wrap .yes_no_wrap .no:hover svg .cls-2 {
  fill: #fff;
}
main .shindan .answer_wrap.select {
  padding-top: 74px;
}
main .shindan .answer_wrap.select .select_wrap {
  display: flex;
  margin: 0 auto;
  width: fit-content;
  align-items: flex-end;
}
main .shindan .answer_wrap.select .select_wrap .select_content {
  margin: 0 12px 0;
}
main .shindan .answer_wrap.select .select_wrap .select_content .select_btn_wrap {
  width: fit-content;
  margin: 0 auto;
}
main .shindan .answer_wrap.select .select_wrap .select_content a {
  min-width: 312px;
  width: 100%;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 31px;
  background: #64C937;
  color: white;
  font-weight: bold;
  font-size: 21px;
  margin-top: 68px;
  position: relative;
  padding: 0 64px;
}
main .shindan .answer_wrap.select .select_wrap .select_content a svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
main .shindan .answer_wrap.select .select_wrap .select_content a svg .cls-1 {
  transition: 0.2s all ease-in-out;
}
main .shindan .answer_wrap.select .select_wrap .select_content a svg .cls-2 {
  transition: 0.2s all ease-in-out;
}
main .shindan .answer_wrap.select .select_wrap .select_content a:hover {
  background: white !important;
  box-shadow: 0 0 0 2px #64C937 inset;
  color: #64C937;
}
main .shindan .answer_wrap.select .select_wrap .select_content a:hover svg .cls-1 {
  fill: #64c937;
}
main .shindan .answer_wrap.select .select_wrap .select_content a:hover svg .cls-2 {
  fill: #fff;
}
main .shindan .answer_wrap.yes_no img {
  width: 675px;
}
main .shindan.red .Q {
  color: #EB6075;
}
main .shindan.red .answer_wrap {
  border: solid 3px #EB6075;
}
main .shindan.blue .Q {
  color: #5A7ADE;
}
main .shindan.blue .answer_wrap {
  border: solid 3px #5A7ADE;
}
main .shindan.pur .Q {
  color: #8E54FD;
}
main .shindan.pur .answer_wrap {
  border: solid 3px #8E54FD;
}
main .shindan_index {
  padding-top: 64px;
  padding-bottom: 183px;
}
main .shindan_index .top_text_s {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}
main .shindan_index h1 {
  font-size: 40px;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
main .shindan_index h1 img {
  margin-right: 18px;
}
main .shindan_index .start {
  padding: 0 20px;
  margin: 0 auto;
  width: fit-content;
  font-size: 23px;
  font-weight: 700;
  line-height: 42px;
  background: -webkit-linear-gradient(0deg, #7D39FF, #76E7FC);
  background-clip: text border;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-top: 1px solid #7D39FF;
  border-bottom: 1px solid #7D39FF;
  border-right: unset;
  border-left: unset;
  border-image: linear-gradient(to right, #7D39FF 0%, #76E7FC 100%);
  border-image-slice: 1;
  position: relative;
}
main .shindan_index .start::after {
  content: "";
  display: block;
  width: 5px;
  height: 45px;
  background: white;
  position: absolute;
  left: -5px;
  top: -1px;
}
main .shindan_index .start::before {
  content: "";
  display: block;
  width: 5px;
  height: 45px;
  background: white;
  position: absolute;
  right: -5px;
  top: -1px;
}
main .shindan_index h2 {
  font-size: 20px;
  text-align: center;
  margin: 30px 0 42px;
}
main .shindan_index .shindan_cate {
  width: 100%;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  justify-content: space-between;
  text-align: center;
}
main .shindan_index .shindan_cate .list {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
main .shindan_index .shindan_cate .list img {
  margin: 0 auto 7px;
}
main .shindan_index .shindan_cate .list.red {
  border: solid 4px #EB6075;
}
main .shindan_index .shindan_cate .list.red h3,
main .shindan_index .shindan_cate .list.red .cate_btn {
  background: #EB6075;
}
main .shindan_index .shindan_cate .list.blue {
  border: solid 4px #5A7ADE;
}
main .shindan_index .shindan_cate .list.blue h3,
main .shindan_index .shindan_cate .list.blue .cate_btn {
  background: #5A7ADE;
}
main .shindan_index .shindan_cate .list.pur {
  border: solid 4px #8E54FD;
}
main .shindan_index .shindan_cate .list.pur h3,
main .shindan_index .shindan_cate .list.pur .cate_btn {
  background: #8E54FD;
}
main .shindan_index .shindan_cate .list h3 {
  color: white;
  padding: 15px 0 13px;
  font-size: 24px;
}
main .shindan_index .shindan_cate .list .body {
  white-space: pre-line;
  padding: 0 20px;
}
main .shindan_index .shindan_cate .list .cate_btn {
  width: 73.125%;
  height: 45px;
  color: white;
  display: block;
  border-radius: 22px;
  margin: 18px auto 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .shindan_top {
  padding: 137px 0 140px;
}
main .shindan_top h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 23px;
}
main .shindan_top .body {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  white-space: pre-line;
}
main .shindan_top img {
  margin: 0 auto 46px;
  width: 760px;
}
main .shindan_top .btn {
  width: 312px;
  height: 62px;
  border-radius: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin: 0 auto;
}
main .shindan_top.red .btn {
  background: #EB6075;
}
main .shindan_top.red h1 {
  color: #EB6075;
}
main .shindan_top.blue .btn {
  background: #5A7ADE;
}
main .shindan_top.blue h1 {
  color: #5A7ADE;
}
main .shindan_top.pur .btn {
  background: #8E54FD;
}
main .shindan_top.pur h1 {
  color: #8E54FD;
}
main .shindan_result h1 {
  font-size: 40px;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(0deg, #7D39FF, #76E7FC);
  background: -webkit-linear-gradient(0deg, #7D39FF, #76E7FC);
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
}
main .shindan_result h1 svg {
  margin-right: 10px;
  fill: #7D39FF;
  position: relative;
  top: 7px;
  left: 9px;
}
main .shindan_result .visual {
  margin: 18px auto 17px;
  width: 364.05px;
}
main .shindan_result .visual_text {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
main .shindan_result .result_wrap {
  width: 100%;
  padding: 57px 80px;
  border-radius: 10px;
  border: solid 6px #F7F7F7;
  margin-top: 40px;
}
main .shindan_result .result_wrap .top {
  display: grid;
  grid-template-columns: 42% 54%;
  justify-content: space-between;
}
main .shindan_result .result_wrap .top .left .title_sub {
  font-size: 20px;
  color: #07C6E5;
  font-weight: 700;
}
main .shindan_result .result_wrap .top .left h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 7px 0 10px;
}
main .shindan_result .result_wrap .top .left h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 2;
  white-space: pre-line;
}
main .shindan_result .result_wrap .top .left .body {
  font-size: 14px;
  line-height: 27px;
}
main .shindan_result .result_wrap .top .shop_link {
  width: 182px;
  height: 36px;
  background: transparent linear-gradient(90deg, #7D39FF 0%, #76E7FC 100%) 0% 0% no-repeat padding-box;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 18px;
  margin-left: auto;
  grid-column: 1/3;
  margin-top: 16px;
  font-weight: 700;
  position: relative;
  transition: 0.2s opacity ease-in-out;
}
main .shindan_result .result_wrap .top .shop_link svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
main .shindan_result .result_wrap .top .shop_link svg .cls-1 {
  fill: none;
}
main .shindan_result .result_wrap .top .shop_link:hover {
  opacity: 0.7;
}
main .shindan_result .result_wrap .bottom {
  margin-top: 21px;
}
main .shindan_result .result_wrap .bottom .reco_title {
  font-size: 16px;
  font-weight: 700;
  width: 215px;
  height: 36px;
  border-radius: 18px;
  border: solid 2px #07C6E5;
  color: #07C6E5;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .shindan_result .result_wrap .bottom .reco_wrap {
  margin-top: 19px;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
}
main .shindan_result .result_wrap .bottom .reco_wrap p {
  padding-left: 1.6em;
  text-indent: -1.6em;
}
main .shindan_result .result_wrap .bottom .reco_wrap p svg#ico-check .cls-1 {
  stroke: #07c6e5;
  stroke-width: 1px;
  fill-rule: evenodd;
}
main .product_bg {
  background: #F8F8F8;
}
main .product_bg .product_wrap {
  width: 84vw;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 0 114px;
}
main .product_bg .product_wrap .check_bg {
  font-size: 12px;
  font-weight: 700;
  color: white;
  background-image: url(../images/main/hukidashi.svg);
  text-align: center;
  width: 152px;
  height: 32px;
  margin: 0 auto;
  padding-top: 5px;
}
main .product_bg .product_wrap h2 {
  margin: 9px auto 35px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
main .product_bg .product_wrap .product_list {
  display: grid;
  grid-template-columns: 31.48% 31.48% 31.48%;
  row-gap: 50px;
  justify-content: space-between;
}
main .product_bg .product_wrap .product_list .product {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px #0000001A;
  border-radius: 5px;
  overflow: hidden;
  color: black;
  transition: 0.2s transform ease-in-out;
}
main .product_bg .product_wrap .product_list .product h3 {
  margin: 21px 0 11px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0 20px;
  white-space: nowrap;
}
main .product_bg .product_wrap .product_list .product p {
  font-size: 14px;
  text-align: left;
  padding: 0 20px 21px;
  white-space: pre-line;
}
main .product_bg .product_wrap .product_list .product:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  main {
    border: solid 10px #7D39FF;
    border-image: linear-gradient(118deg, #7D39FF 0%, #76E7FC 100%);
    border-image-slice: 10;
  }
  main .shindan {
    padding: 16px 0 50px;
  }
  main .shindan .return {
    margin: 24px auto 0;
    font-size: 12px;
  }
  main .shindan .answer_wrap {
    padding: 0 0 30px;
    margin-top: 26px;
  }
  main .shindan .answer_wrap .yes_no_wrap {
    grid-template-columns: 275px;
    row-gap: 16px;
    margin-top: 8px;
  }
  main .shindan .answer_wrap .yes_no_wrap .yes,
main .shindan .answer_wrap .yes_no_wrap .no {
    width: 100%;
    height: 54px;
  }
  main .shindan .answer_wrap.select {
    padding-top: 0;
  }
  main .shindan .answer_wrap.select .select_wrap {
    display: grid;
    row-gap: 24px;
  }
  main .shindan .answer_wrap.select .select_wrap .select_content {
    margin: 0px;
  }
  main .shindan .answer_wrap.select .select_wrap .select_content a {
    min-width: unset;
    height: 54px;
    font-size: 16px;
    margin-top: 8px;
  }
  main .shindan .Q {
    font-size: 20px;
  }
  main .shindan h1 {
    font-size: 20px;
    margin-top: 8px;
  }
  main .shindan_index {
    padding-top: 31px;
    padding-bottom: 50px;
  }
  main .shindan_index .top_text_s {
    font-size: 14px;
    margin-bottom: 10px;
  }
  main .shindan_index h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  main .shindan_index h1 img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  main .shindan_index h2 {
    font-size: 14px;
    margin: 25px 0 27px;
  }
  main .shindan_index .shindan_cate {
    grid-template-columns: 100%;
    row-gap: 24px;
  }
  main .shindan_index .shindan_cate .list h3 {
    font-size: 16px;
    padding: 9px 0 11px;
  }
  main .shindan_index .shindan_cate .list .body {
    font-size: 14px;
  }
  main .shindan_index .shindan_cate .list .cate_btn {
    font-size: 16px;
    margin: 18px auto 24px;
  }
  main .shindan_top {
    padding: 30px 0 50px;
    width: 78.7vw;
  }
  main .shindan_top h1 {
    margin: 0 auto 17px;
    font-size: 20px;
  }
  main .shindan_top .body {
    font-size: 14px;
    text-align: left;
  }
  main .shindan_top img {
    margin-top: 27px;
  }
  main .shindan_top .btn {
    width: 295px;
  }
  main .shindan_result h1 {
    font-size: 24px;
  }
  main .shindan_result h1 svg {
    width: 30px;
    height: 30px;
  }
  main .shindan_result .visual {
    width: 300px;
  }
  main .shindan_result .visual_text {
    font-size: 16px;
  }
  main .shindan_result .result_wrap {
    padding: 24px 20px 40px;
  }
  main .shindan_result .result_wrap .top {
    display: grid;
    grid-template-columns: auto;
  }
  main .shindan_result .result_wrap .top .shop_link {
    grid-column: unset;
  }
  main .shindan_result .result_wrap .top .left .title_sub {
    font-size: 14px;
  }
  main .shindan_result .result_wrap .top .left h2 {
    font-size: 24px;
    margin: 0 auto 8px;
  }
  main .shindan_result .result_wrap .top .left h3 {
    margin-bottom: 12px;
  }
  main .shindan_result .result_wrap .top .shop_link {
    margin-top: 12px;
    margin-bottom: 16px;
  }
  main .shindan_result .result_wrap .bottom {
    margin-top: 30px;
  }
  main .shindan_result .result_wrap .bottom .reco_title {
    font-size: 12px;
    justify-content: unset;
    padding-left: 16px;
  }
  main .shindan_result .result_wrap .bottom .reco_wrap {
    grid-template-columns: 100%;
  }
  main .shindan_result .result_wrap .bottom .reco_wrap p {
    font-size: 14px;
  }
  main .shindan_result .result_wrap .bottom .reco_wrap p svg {
    position: relative;
    top: 4px;
  }
  main .product_bg .product_wrap {
    padding-top: 32px;
    padding-bottom: 60px;
  }
  main .product_bg .product_wrap h2 {
    font-size: 20px;
    margin: 13px auto 34px;
  }
  main .product_bg .product_wrap .product_list {
    grid-template-columns: 100%;
    row-gap: 30px;
    padding: 0 20px;
  }
  main .product_bg .product_wrap .product_list .product h3 {
    font-size: 16px;
    margin: 12px 0 11px;
  }
  main .product_bg .product_wrap .product_list .product img {
    width: 100%;
  }
}
footer {
  padding-top: 40px;
}
footer .top {
  margin-bottom: 50px;
}
footer .top img {
  width: fit-content;
  margin: 0 auto 25px;
}
footer .top .link {
  width: 84vw;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin: 0 auto;
}
footer .top .link a {
  color: #454545;
  margin: 0 25px;
  font-size: 14px;
}
footer .top .link a:hover {
  opacity: 0.7;
}
footer .bottom {
  font-size: 14px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #454545;
  color: white;
}

@media (max-width: 768px) {
  footer {
    padding-top: 24px;
  }
  footer .top {
    margin-bottom: 40px;
  }
  footer .top img {
    width: 194px;
  }
  footer .top .link {
    width: fit-content;
    display: grid;
    grid-template-columns: max-content max-content;
    row-gap: 20px;
    margin: 0 auto;
  }
  footer .top .link a {
    font-size: 12px;
  }
}
.arrow_c {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.arrow_c svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.arrow_c svg .cls-1 {
  transition: all 0.3s ease-in-out;
}
.arrow_c svg .cls-2 {
  transition: all 0.3s ease-in-out;
}
.arrow_c.btn svg {
  width: 30px;
  height: 30px;
  right: 16px;
}
.arrow_c.cate_btn:hover, .arrow_c.btn:hover {
  background: white !important;
}

.red .arrow_c.cate_btn:hover, .red .arrow_c.btn:hover {
  color: #EB6075 !important;
  box-shadow: 0 0 0 2px #EB6075 inset;
}
.red .arrow_c.cate_btn:hover svg .cls-1, .red .arrow_c.btn:hover svg .cls-1 {
  stroke: #EB6075;
}
.red .arrow_c.cate_btn:hover svg .cls-2, .red .arrow_c.btn:hover svg .cls-2 {
  fill: #EB6075;
}

.blue .arrow_c.cate_btn:hover, .blue .arrow_c.btn:hover {
  color: #5A7ADE !important;
  box-shadow: 0 0 0 2px #5A7ADE inset;
}
.blue .arrow_c.cate_btn:hover svg .cls-1, .blue .arrow_c.btn:hover svg .cls-1 {
  stroke: #5A7ADE;
}
.blue .arrow_c.cate_btn:hover svg .cls-2, .blue .arrow_c.btn:hover svg .cls-2 {
  fill: #5A7ADE;
}

.pur .arrow_c.cate_btn:hover, .pur .arrow_c.btn:hover {
  color: #8E54FD !important;
  box-shadow: 0 0 0 2px #8E54FD inset;
}
.pur .arrow_c.cate_btn:hover svg .cls-1, .pur .arrow_c.btn:hover svg .cls-1 {
  stroke: #8E54FD;
}
.pur .arrow_c.cate_btn:hover svg .cls-2, .pur .arrow_c.btn:hover svg .cls-2 {
  fill: #8E54FD;
}