@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
  font-weight: inherit;
}

main, article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

li {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

input,
textarea {
  font-size: 16px;
  appearance: none;
  border: none;
  border-radius: 0;
}

select {
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

sub {
  font-size: 0.66em;
}

html {
  overflow-x: hidden;
  font-size: 16px;
}

body {
  position: relative;
  background-color: #fff;
  color: #323232;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  overflow-x: hidden;
  letter-spacing: 1px;
}

.font-weight-R{
	font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

a {
  transition: 0.3s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  color: #323232;
}

picture {
  display: block;
}

.l-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 20px 80px;
  background-color: #fff;
  transition: background-color 0.6s;
  z-index: 50;
}
@media (max-width: 768px) {
  .l-header {
    height: 50px;
    padding: 16px;
  }
}
.l-header.is-fixed {
  position: fixed;
  height: 66px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .l-header.is-fixed {
    height: 50px;
  }
}
.l-header.is-fixed .c-hamburger {
  top: 7px;
}

.l-header__logo {
  display: block;
  width: 196px;
  height: 18px;
}
@media (max-width: 768px) {
  .l-header__logo {
    width: 141px;
    height: 13px;
  }
}
.l-header__logo img {
  display: block;
}

.l-header__nav-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  padding: 56px 84px;
  background-color: #fff;
  transition: opacity 1s;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 50;
  display: none;
}
@media (max-width: 768px) {
  .l-header__nav-wrapper {
    padding: 36px 22px;
  }
}
.l-header__nav-wrapper.is-open {
  display: block;
}

.l-header__nav-inner {
  display: none;
}

.l-header__nav-logo {
  position: relative;
  padding-left: 8px;
  padding-bottom: 36px;
}
@media (max-width: 768px) {
  .l-header__nav-logo {
    padding-bottom: 22px;
  }
}
.l-header__nav-logo::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #d7d7d7;
  z-index: 1;
}
.l-header__nav-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 206px;
  height: 1px;
  background-color: #d40000;
  z-index: 2;
}
@media (max-width: 768px) {
  .l-header__nav-logo::after {
    width: 158px;
  }
}
.l-header__nav-logo img {
  width: 182px;
  height: 16px;
}
@media (max-width: 768px) {
  .l-header__nav-logo img {
    width: 129px;
    height: 12px;
  }
}

.l-header__nav {
  margin-top: 62px;
  padding-left: 64px;
  width: 64%;
  min-width: 700px;
}
@media (max-width: 768px) {
  .l-header__nav {
    width: 100%;
    padding-left: 22px;
	min-width: 100%;
  }
}

.l-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 42px 55px;
}
@media (max-width: 768px) {
  .l-header__nav-list {
    gap: 35px 0;
  }
}
.l-header__nav-list .menu-item {
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
  color: #323232;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .l-header__nav-list .menu-item {
    font-size: 1.0625rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-list .menu-item a:hover {
    text-decoration: underline;
    color: #323232;
  }
}
.l-header__nav-list > .menu-item {
  position: relative;
}
@media (max-width: 768px) {
  .l-header__nav-list > .menu-item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .l-header__nav-list > .menu-item:first-child {
    width: 100%;
  }
}
.l-header__nav-list > .menu-item::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #d40000;
  z-index: 1;
}
.l-header__nav-list .sub-menu {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .l-header__nav-list .sub-menu {
    margin-top: 10px;
  }
}
.l-header__nav-list .sub-menu .menu-item {
  font-size: 0.9375rem;
  margin-top: 10px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  color: #646464;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .l-header__nav-list .sub-menu .menu-item {
    font-size: 0.75rem;
  }
}

.l-header__nav-btn-wrapper {
  margin-top: 48px !important;
  margin-right: 64px;
}
@media (max-width: 768px) {
  .l-header__nav-btn-wrapper {
    margin-top: 52px !important;
    margin-right: 10px;
  }
}

.l-footer {
  background-color: rgba(240, 234, 231, 0.8);
  color: #646464;
  padding: 90px 170px 50px;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 48px 22px 32px;
  }
}

.l-footer__logo {
  display: block;
  width: 252px;
  height: 22px;
}
@media (max-width: 768px) {
  .l-footer__logo {
    width: 142px;
    height: 13px;
  }
}
.l-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-footer__nav-wrapper {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .l-footer__nav-wrapper {
    margin-top: 40px;
  }
}

.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}
@media (max-width: 768px) {
  .l-footer__nav {
    gap: 16px;
  }
}
.l-footer__nav .menu-item {
  font-size: 1.0625rem;
  font-family: "Outfit", sans-serif;
  color: #323232;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .l-footer__nav .menu-item {
    font-size: 0.9375rem;
    width: calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .l-footer__nav .menu-item:first-child {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav .menu-item a:hover {
    text-decoration: underline;
    color: #323232;
  }
}
.l-footer__nav .sub-menu {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .l-footer__nav .sub-menu {
    display: none;
  }
}
.l-footer__nav .sub-menu .menu-item {
  font-size: 0.8125rem;
  margin-top: 16px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  color: #646464;
  letter-spacing: 0.12em;
}

.l-footer__contact-wrapper {
  position: relative;
  margin-top: 40px;
}

.l-footer__contact-btn .c-btn {
  font-size: 1.0625rem;
}
@media (max-width: 768px) {
  .l-footer__contact-btn .c-btn {
    font-size: 0.8125rem;
  }
}

.l-footer__info {
  font-size: 0.8125rem;
  line-height: 1.9230769231;
  letter-spacing: 0.12em;
  margin-top: 20px;
  padding-left: 20px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .l-footer__info {
    padding-left: 0;
  }
}

.l-footer__banner-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  gap: 26px 0;
}
@media (max-width: 768px) {
  .l-footer__banner-wrapper {
    position: static;
    display: flex;
    gap: 0 20px;
  }
}

.l-footer__banner {
  display: block;
  width: 212px;
}
@media (max-width: 768px) {
  .l-footer__banner {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__banner:hover {
    opacity: 0.7;
  }
}

.l-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .l-footer__bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}

.l-footer__address-wrapper {
  font-size: 0.8125rem;
  text-align: right;
  margin-top: 55px;
}
@media (max-width: 768px) {
  .l-footer__address-wrapper {
    text-align: left;
    margin-top: 32px;
  }
}

.l-footer__sub-link {
  display: flex;
  font-size: 0.75rem;
  gap: 0 16px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .l-footer__sub-link {
    flex-direction: column;
    gap: 6px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__sub-link a:hover {
    text-decoration: underline;
    color: #323232;
  }
}

.l-footer__sns-list {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
@media (max-width: 768px) {
  .l-footer__sns-list {
    margin: 24px auto 0;
  }
}

.l-footer__sns-item {
  display: block;
}
.l-footer__sns-item.note {
  width: 62px;
  height: 14px;
}
.l-footer__sns-item.facebook {
  width: 35px;
  height: 35px;
}
.l-footer__sns-item.wantedly {
  width: 38px;
  height: 27px;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__sns-item:hover {
    opacity: 0.7;
  }
}
.l-footer__sns-item img {
  display: block;
}

.l-footer__copyright {
  display: block;
  font-size: 0.75rem;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    text-align: center;
    font-size: 0.625rem;
  }
}

.l-main {
  position: relative;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .l-main {
    padding-top: 50px;
  }
}

.l-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: calc(848px + 40px * 2);
  padding: 0 40px;
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 24px;
  }
}

/*
* ハンバーガーメニュー
*/
.c-hamburger {
  position: absolute;
  top: 14px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #d40000;
  transition: all 0.5s;
  z-index: 51;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-hamburger {
    top: 7px;
    right: 14px;
    width: 34px;
    height: 34px;
  }
}
.c-hamburger.is-active {
  position: fixed;
}
.c-hamburger.is-active span {
  right: auto;
  left: 50%;
}
.c-hamburger.is-active span:nth-of-type(1) {
  width: 14px;
  transform-origin: center top;
  transform: translateX(-45%) translateY(7px) rotate(45deg);
}
@media (max-width: 768px) {
  .c-hamburger.is-active span:nth-of-type(1) {
    transform: translateX(-45%) translateY(5px) rotate(45deg);
  }
}
.c-hamburger.is-active span:nth-of-type(2) {
  display: none;
}
.c-hamburger.is-active span:nth-of-type(3) {
  width: 14px;
  transform-origin: center bottom;
  transform: translateX(-45%) translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {
  .c-hamburger.is-active span:nth-of-type(3) {
    transform: translateX(-45%) translateY(-5px) rotate(-45deg);
  }
}

.c-hamburger__trigger {
  display: block;
  width: 27px;
  height: 16px;
  box-sizing: border-box;
  position: relative;
  outline: none;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .c-hamburger__trigger {
    width: 18px;
    height: 12px;
  }
}
.c-hamburger__trigger span {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.c-hamburger__trigger span:nth-of-type(1) {
  top: 0;
}
.c-hamburger__trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 64%;
}
.c-hamburger__trigger span:nth-of-type(3) {
  bottom: 0;
  width: 50%;
}

/*
* 見出し
*/
.c-heading-section {
  line-height: 1;
}
.c-heading-section .en {
  position: relative;
  display: block;
  font-size: 1rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #646464;
}
@media (max-width: 768px) {
  .c-heading-section .en {
    font-size: 0.75rem;
  }
}
.c-heading-section .en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #d40000;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-heading-section .en::before {
    width: 4px;
    height: 4px;
    top: 5px;
  }
}
.c-heading-section .en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #d7d7d7;
  z-index: 1;
}
.c-heading-section .en span {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  padding-bottom: 18px;
}
@media (max-width: 768px) {
  .c-heading-section .en span {
    padding-bottom: 10px;
    padding-left: 11px;
  }
}
.c-heading-section .en span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 24px);
  height: 1px;
  background-color: #d40000;
  z-index: 2;
}
.c-heading-section .ja {
  position: relative;
  display: flex;
  font-size: 1.8125rem;
  letter-spacing: 0.12em;
  padding-top: 34px;
  font-weight: 700;
  align-items: center;
}
@media (max-width: 768px) {
  .c-heading-section .ja {
    font-size: 1.375rem;
    padding-top: 16px;
  }
}

/*
* ボタン
*/
.c-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .c-btn-wrapper {
    margin-top: 24px;
  }
}

.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 215px;
  background-color: #d40000;
  border: 1px solid #fff;
  font-family: "Outfit", sans-serif;
  text-align: left;
  color: #fff;
  border-radius: 50em;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  padding: 16px 30px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .c-btn {
    width: 180px;
    font-size: 0.8125rem;
    padding: 13px 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    background-color: #fff;
    color: #d40000;
    border-color: #d40000;
  }
  .c-btn:hover::after {
    background-image: url(../img/common/arrow_red.svg);
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: transparent url(../img/common/arrow_white.svg) no-repeat center center/contain;
  width: 8px;
  height: 11px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .c-btn::after {
    right: 15px;
    width: 6px;
    height: 8px;
  }
}

.c-btn--white {
  color: #646464;
  background-color: #fff;
}
.c-btn--white::after {
  background-image: url(../img/common/arrow_red.svg);
}

.c-btn--line {
  background-color: #fff;
  color: #d40000;
  border-color: #d40000;
}
.c-btn--line::after {
  background-image: url(../img/common/arrow_red.svg);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--line:hover {
    background-color: #d40000;
    color: #fff;
  }
  .c-btn--line:hover::after {
    background-image: url(../img/common/arrow_white.svg);
  }
}

.c-btn--shadow {
  box-shadow: 0 7px 7px rgba(0, 0, 0, 0.05);
}

/*
* ニュース一覧
*/
.c-news-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .c-news-wrapper {
    grid-template-columns: 1fr;
    margin-top: 24px;
    gap: 24px 0;
  }
}

.c-news-item {
  display: block;
}
@media (max-width: 768px) {
  .c-news-item {
    display: flex;
    align-items: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-news-item:hover .c-news-item__img img {
    transform: scale(1.1);
  }
}

.c-news-item__img {
  flex-shrink: 0;
  aspect-ratio: 256/168;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 7px 5px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .c-news-item__img {
    width: 50%;
    border-radius: 12px;
  }
}
.c-news-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.c-news-item__title-wrapper {
  margin-top: 26px;
}
@media (max-width: 768px) {
  .c-news-item__title-wrapper {
    margin-top: 0;
    margin-left: 14px;
  }
}

.c-news-item__date {
  display: block;
  font-size: 0.875rem;
  color: #646464;
  font-family: "Outfit", sans-serif;
}
@media (max-width: 768px) {
  .c-news-item__date {
    font-size: 0.6875rem;
  }
}

.c-news-item__title {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.12em;
  color:#323232;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  .c-news-item__title {
    font-size: 0.8125rem;
  }
}

/*
* 実績一覧
*/
.c-works-wrapper {
  margin-top: 52px;
}
@media (max-width: 768px) {
  .c-works-wrapper {
    margin-top: 32px;
  }
}

.c-works-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 44px;
  padding: 32px 88px 32px 0;
}
@media (max-width: 768px) {
  .c-works-item {
    gap: 0 14px;
    padding: 20px 0;
  }
}
.c-works-item:first-child {
  padding-top: 0;
}
.c-works-item:not(:last-child) {
  border-bottom: 1px solid #d7d7d7;
}
@media (max-width: 768px) {
  .c-works-item:not(:last-child) {
    border: none;
  }
}
.c-works-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 100%;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .c-works-item::before {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 20px;
    transform: translateY(0);
  }
}
.c-works-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: transparent url(../img/common/arrow_red.svg) no-repeat center center/contain;
  width: 8px;
  height: 11px;
}
@media (max-width: 768px) {
  .c-works-item::after {
    top: auto;
    bottom: 34px;
    right: 15px;
    transform: translateY(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-works-item:hover::before {
    background-color: #d40000;
    border-color: #d40000;
  }
  .c-works-item:hover::after {
    background-image: url(../img/common/arrow_white.svg);
  }
  .c-works-item:hover .c-works-item__img img {
    transform: scale(1.1);
  }
}

.c-works-item__img {
  flex-shrink: 0;
  overflow: hidden;
  flex-basis: 320px;
  aspect-ratio: 320/198;
  border-radius: 20px;
  box-shadow: 0 7px 5px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .c-works-item__img {
    aspect-ratio: 1;
    flex-basis: 160px;
    border-radius: 10px;
  }
}
.c-works-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.c-works-item__title {
  font-size: 1.125rem;
  line-height: 1.7777777778;
  letter-spacing: 0.12em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  .c-works-item__title {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.c-works-item__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
@media (max-width: 768px) {
  .c-works-item__category-list {
    margin-top: 12px;
    padding-bottom: 40px;
  }
}

.c-works-item__category-item {
  position: relative;
  background-color: #f9d9d9;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  border-radius: 50em;
  padding: 4px 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-works-item__category-item {
    font-size: 0.6875rem;
    padding: 2px 8px;
  }
}
.c-works-item__category-item::before {
  content: "#";
}

/*
* サービス画像
*/
.c-service-img {
  position: relative;
  width: 522px;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  .c-service-img {
    width: 90%;
    margin-top: 20px;
  }
}

.c-service-img__layer {
  position: relative;
  width: 100%;
}
.c-service-img__layer:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .u-disp-lg {
    display: none;
  }
}

.u-disp-md {
  display: none;
}
@media (max-width: 768px) {
  .u-disp-md {
    display: initial;
  }
}

.u-disp-sm {
  display: none;
}
@media (max-width: 425px) {
  .u-disp-sm {
    display: initial;
  }
}

.u-anime-fadeup {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.u-anime-fadeup.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-heading-section .en a{
	color: #d40000;
	position: relative;
	padding-right: 80px;
}

.c-heading-section .en a:hover{
	opacity: .75;
}

.c-heading-section .en a:after{
    content: "";
    position: absolute;
    top: 33%;
    right: 50px;
    transform: translateY(-50%);
    background: transparent url(../img/common/arrow_red.svg) no-repeat center center / contain;
    width: 8px;
    height: 11px;
    transition: 0.3s;
}

.c-heading-section .en a:hover:after{
    right: 45px;
}

.c-heading-section .en{
	display: flex;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.c-heading-section .en a{
		padding-right: 25px;
	}
	.c-heading-section .en a:after{
		right: 5px;
	}
}
	
