:root {
  --color-primary: #FF008C;
  --color-white: #FFFFFF;
  --max-m: 834px;
  --color-monotone20: #333333;
  --color-black: #333333;
  --color-monotone56: #8F8F8F;
  --color-monotone75: #BFBFBF;
  --color-monotone97: #F7F7F7;
  --color-pink20: #FFCCE8;
  --color-pink40: #FF99D1;
  --color-pink5: #FFF2F9;
  --color-text-secondary: #676767;

  /* Additional color variables for Search and Drawer components */
  --color-text-primary: #333333;
  --color-link: #0072BF;
  --color-link-hover: #00568F;
  --color-link-focus: #00568F;
  --color-link-active: #00375C;

  --color-monotone30: #4D4D4D;
  --color-monotone40: #666666;
  --color-monotone88: #E0E0E0;
  --color-monotone93: #EDEDED;
  --color-pink10: #FFE6F4;
  --color-pink-60: #990054;
  --color-pink-80: #CC0070;
  --color-pink100: #FF008C;
  --color-darkblue20: #CACADB;
  --color-linkblue: #0066CC;
  --color-alert-text: #DF0101;
  --color-alert-bg: #FFF0F0;
  --font-s: 14px;
  --min-s: 480px;
  --min-l: 1024px;
}

@font-face {
  font-family: 'rex-icon';
  src: url('../fonts/rex-icon.woff2') format('woff2'),
       url('../fonts/rex-icon.woff') format('woff'),
       url('../fonts/rex-icon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.g-HeaderV2 {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 9999;
}

.g-HeaderV2 * {
  font-size: 16px;
  font-family: "Rakuten Sans JP",sans-serif;
  font-feature-settings: "palt";
}

.chat-gpt-main {
  padding-top: 100px;

  @media screen and (max-width: 834px) {
    padding-top: 56px;
  }

  @media screen and (min-width: 835px) and (max-width: 1053px) {
    padding-top: 134px;
  }
}

.g-HeaderV2 * {
  margin: 0;
  padding: 0;
}

.g-HeaderV2 img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.g-HeaderV2 ul,
.g-HeaderV2 li {
  list-style-type: none;
}

/* Customer Heading */
.g-HeaderV2_CustomerHeading {
  @media screen and (max-width: 834px) {
    display: none;
  }

  padding-top: 5px;
  background-color: var(--color-monotone20);
  color: var(--color-white);
  height: 34px;
}

.g-HeaderV2_CustomerHeading>div>ul {
  display: flex;
}

.g-HeaderV2_CustomerHeading>div>ul>li {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: bottom;
  color: var(--color-white);
  height: 29px;
  font-size: 15px;
  vertical-align: bottom;
}
.g-HeaderV2_CustomerHeading>div>ul>li>a>span {
  font-size: 15px;
  vertical-align: bottom;
}

.g-HeaderV2_CustomerHeading>div>ul>li>a {
  color: var(--color-white);
  text-decoration: none;
}

.g-HeaderV2_CustomerHeading>div>ul>li:first-child {
  width: auto;
  margin-right: 4px;
  padding-inline: 8px 12px;
  background-color: var(--color-primary);
  border-radius: 6px 6px 0 0;
}

.g-HeaderV2_CustomerHeading>div>ul>li:first-child>span {
  margin-right: 4px;
  font-size: 20px;
  vertical-align: 2px;
}

.g-HeaderV2_CustomerHeading>div>ul>li:nth-child(2) a {
  display: block;
  height: 29px;
  padding: 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.g-HeaderV2_CustomerHeading>div>ul>li:nth-child(2) a:hover {
  background-color: rgba(var(--color-white), 0.2);
  border-radius: 6px 6px 0 0;
}

.g-HeaderV2_CustomerHeading>div>ul>li:nth-child(2) span:first-child {
  font-size: 20px;
  margin-right: 4px;
  vertical-align: 2px;
}

.g-HeaderV2_CustomerHeading>div>ul>li:last-child {
  margin-left: auto;
}

.g-HeaderV2_CustomerHeading>div>ul>li:last-child>a>span {
  font-size: 14px;
}

.g-HeaderV2_CustomerHeading>div>ul>li:last-child>a:hover>span {
  color: rgba(var(--color-white), 0.8);
}

.g-HeaderV2_CustomerHeading>div>ul>li:last-child>a:active span:last-child {
  color: rgba(var(--color-white), 0.5);
}

.g-HeaderV2_CustomerHeading>div>ul>li:last-child:hover {
  background-color: rgba(255, 255, 255, .2);
}

.g-HeaderV2_CustomerHeading>div>ul>li:last-child::before,
.g-HeaderV2_CustomerHeading>div>ul>li:last-child::after {
  content: '';
  display: inline-block;
  border-left: 1px solid rgba(var(--color-white), 0.5);
  width: 1px;
  height: 1.2rem;
}

.g-HeaderV2_CustomerHeading>div>ul>li:last-child::before {
  margin-right: 16px;
}

.g-HeaderV2_CustomerHeading>div>ul>li:last-child::after {
  margin-left: 16px;
}


/* Main Container */
.g-HeaderV2_MainContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1064px;
  min-height: 66px;
  margin: 0 auto;
  padding: 0 16px;
  /* gap: 8px; */
}

/* Logo */
.g-HeaderV2_Logo-wrapper {
  display: flex;
  align-items: center;
}

.g-HeaderV2_Logo {
  width: 152px;
  height: 45px;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Logo {
    padding-top: 0;
    width: 63px;
  }
}

.g-HeaderV2_Logo a,
.g-HeaderV2_Logo span {
  display: block;
  background: url(../images/logo-rmobile-1line-230829.svg) left top no-repeat;
  background-size: 100%;
  height: 45px;
  word-break: keep-all;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
}

@media screen and (max-width: 834px) {

  .g-HeaderV2_Logo a,
  .g-HeaderV2_Logo span {
    background: url(../images/logo-rmobile-2line-230829.svg) left top no-repeat;
  }
}

.g-HeaderV2_Logo a:hover {
  opacity: 0.85;
}

.g-HeaderV2_Logo-five-million-sub {
  margin-left: -4px;
}

.g-HeaderV2_Logo-five-million-sub img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Logo-five-million-sub {
    padding-top: 0;
    margin: 4px 0 0 0;
  }
}

.g-HeaderV2_Logo-five-million-sub a:hover {
  opacity: 0.85;
}

.g-HeaderV2_Logo-five-million-top-anim {
  animation: appear 0.7s ease-out forwards;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: translate(15%, 70%) scale(0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media screen and (min-width: 835px) and (max-width: 1053px) {
  .g-HeaderV2_MainContainer {
    min-height: 100px;
    align-items: flex-start;
    padding-top: 10px;
  }
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_MainContainer {
    padding-inline: 8px 0;
    position: relative;
    height: 56px;
    min-height: auto;
  }
}

/* Nav */
.g-HeaderV2_Nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* margin-left: 8px; */
}

.g-HeaderV2_Nav .g-HeaderV2_Dropdown {
  font-family: "Rakuten Sans JP",sans-serif !important;
  white-space: nowrap;
}

@media screen and (min-width: 835px) and (max-width: 1053px) {
  .g-HeaderV2_Nav {
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 0;
  }
}

.g-HeaderV2_Nav>ul {
  display: flex;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Nav>ul {
    display: none;
  }
}

.g-HeaderV2_Nav>ul>li>a {
  color: var(--color-white);
}

.g-HeaderV2_Nav>ul>li>a:hover {
  color: var(--color-white);
  font-weight: bold;
}

.g-HeaderV2_Nav-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Nav-info {
    padding-right: 50px;
    gap: 8px;
  }
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Nav-info #header-search-icon {
    order: 2;
  }
}

.g-HeaderV2_Nav-linebreak {
  display: none;
}

@media screen and (min-width: 1049px) {

  .g-HeaderV2_Nav-linebreak:lang(id),
  .g-HeaderV2_Nav-linebreak:lang(vi),
  .g-HeaderV2_Nav-linebreak:lang(pt) {
    display: block;
  }
}

/* Search Icon */
.g-HeaderV2_Search-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: var(--color-white);
  font-size: 24px;
  text-align: center;
}

.g-HeaderV2_Search-icon .c-Icon_Search {
  font-size: 24px;
}

.g-HeaderV2_Search-icon>span {
  vertical-align: top;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Search-icon {
    order: 2;
  }
}

.g-HeaderV2_Search-icon:hover .g-HeaderV2_Search-text {
  text-decoration: underline;
}

/* Dropdown */
.g-HeaderV2_Dropdown {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 8px;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--color-white);
  text-decoration: none;
}

@media screen and (min-width: 1049px) {
  .g-HeaderV2_Dropdown {
    min-height: 66px;
  }
}

.g-HeaderV2_Dropdown-icon {
  padding-left: 4px;
  display: table-cell;
  font-size: 14px;
  font-weight: bold;
}

.g-HeaderV2_Dropdown-icon::before {
  transition-duration: .5s;
  transition: transform .1s;
  transform: rotateZ(90deg);
  display: inline-block;
  color: var(--color-white);
}

.g-HeaderV2_Dropdown[aria-current="true"] {
  font-weight: bold;
}

.g-HeaderV2_Dropdown[aria-current="true"] .g-HeaderV2_Dropdown-icon::before {
  transform: rotateZ(-90deg);
}

/* Ecare */
.g-HeaderV2_Ecare {
  max-width: 80px;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Ecare {
    display: none;
  }
}

.g-HeaderV2_Ecare>a {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.g-HeaderV2_Ecare>a:hover .g-HeaderV2_Ecare-text {
  text-decoration: underline;
}

.g-HeaderV2_Ecare-icon {
  font-size: 24px;
}

.g-HeaderV2_Ecare-text {
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

/* Apply */
@media screen and (max-width: 834px) {
  .g-HeaderV2_Apply {
    order: 1;
  }
}

.g-HeaderV2_Apply-button {
  width: 85px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  color: var(--color-primary) !important;
  border-radius: 44px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  line-height: 0;
}

.g-HeaderV2_Apply-button:hover {
  text-decoration: none;
  background-color: var(--color-pink20);
}

.g-HeaderV2_Apply-button:active {
  text-decoration: none;
  background-color: var(--color-pink40);
}

@media screen and (max-width: 430px) {
  .g-HeaderV2_Apply-button {
    font-size: 12px;
    height: 35px;
  }
}

.g-HeaderV2_Apply-button:hover {
  background-color: #FFE6F2;
  color: var(--color-primary);
}

.g-HeaderV2_Apply-button:active {
  background-color: #FFCCDF;
  color: var(--color-primary);
}

/* Sub Container */
.g-HeaderV2_SubContainer {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  z-index: 10;
  max-height: 0;
  transition: max-height .3s ease-out;
  overflow: hidden;
}

.g-HeaderV2_SubContainer>div {
  border-bottom: 1px solid var(--color-monotone75);
}

@media screen and (max-width: 1064px) {
  .g-HeaderV2_SubContainer {
    left: -24px;
  }
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_SubContainer {
    display: none;
  }
}

.g-HeaderV2_Js-display {
  max-height: 100vh;
  transition: max-height .7s ease-out .2s;
}

.g-HeaderV2_Nav-sub {
  width: 100%;
  max-width: 1064px;
  margin: 0 auto;
  padding: 2px 16px 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--color-black);
}

.g-HeaderV2_Nav-sub-grid {
  display: grid;
  grid-template-columns: 600px 178px 1fr;
  grid-gap: 24px;
}

.g-HeaderV2_Nav-sub-grid .g-HeaderV2_Nav-sub-wrap:nth-child(1) {
  width: auto;
}

.g-HeaderV2_Nav-sub-grid .g-HeaderV2_Nav-sub-wrap:nth-child(2) {
  width: auto;
}

@media screen and (min-width: 835px) and (max-width: 1053px) {
  .g-HeaderV2_Nav-sub-grid {
    grid-template-columns: calc((504/737)*100%) 1fr;
  }

  .g-HeaderV2_Nav-sub-grid .g-HeaderV2_Nav-sub-wrap:nth-child(1) {
    grid-row: 1 / 3;
  }
}

.g-HeaderV2_Nav-sub-wrap:nth-child(1) {
  width: 700px;
}

.g-HeaderV2_Nav-sub-wrap:nth-child(2) {
  width: 260px;
}

.g-HeaderV2_Nav-category {
  margin-top: 16px;
}

.g-HeaderV2_Nav-category-name {
  padding-top: 20px;
  padding-bottom: 6px;
  color: var(--color-primary);
  font-weight: bold;
  border-bottom: 2px solid var(--color-primary);
}

.g-HeaderV2_Nav-lists {
  display: flex;
  gap: 1px;
  justify-content: space-between;
}

.g-HeaderV2_Nav-lists-extra {
  display: flex;
  gap: 80px;
}

.g-HeaderV2_Nav-lists-extra>li {
  margin-top: 0;
}

.g-HeaderV2_Nav-lists-extra.g-HeaderV2_Nav-list>li {
  margin-top: 0;
}

.g-HeaderV2_Nav-list {
  margin-top: 18px;
}

.g-HeaderV2_Nav-list>li {
  margin-top: 14px;
}

.g-HeaderV2_Nav-list>li:first-child {
  margin-top: 0;
}

.g-HeaderV2_Nav-list>li>p {
  font-size: 14px;
  padding: 0 0 10px 30px;
}

.g-HeaderV2_Nav-list>li>a {
  display: block;
  padding: 4px;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-black);
}

.g-HeaderV2_Nav-list>li>a:hover {
  background-color: var(--color-pink5);
  color: var(--color-primary);
}

.g-HeaderV2_Nav-list>li>a>span {
  font-size: 20px;
  color: var(--color-primary);
  margin-right: 4px;
  vertical-align: -1px;
}

.g-HeaderV2_Nav-list>li>a>img {
  margin-right: 4px;
  vertical-align: -3px;
}

.g-HeaderV2_Nav-list>li>a>p {
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: normal;
  padding: 0 0 0 26px;
}

.g-HeaderV2_Nav-list-sub {
  margin-left: 24px;
}

.g-HeaderV2_Nav-list-line {
  margin: 16px 0 0 8px;
  padding-top: 16px;
  border-top: 1px solid var(--color-monotone75);
}

.g-HeaderV2_Nav-list-line img {
  vertical-align: bottom;
}


.g-HeaderV2_Nav-list-sub>li>a,
.g-HeaderV2_Nav-list-sub>li>a>span
 {
  display: block;
  padding: 4px;
  font-size: 14px !important;
  text-decoration: none;
  color: var(--color-black);
}

.g-HeaderV2_Nav-list-sub>li>a>span {
  padding: 0;
}
.g-HeaderV2_No-wrap {
  white-space: nowrap;
}

.g-HeaderV2_Nav-list-sub>li>a:hover {
  background-color: var(--color-pink5);
  color: var(--color-primary);
  font-weight: bold;
}

.g-HeaderV2_Nav-list-sub>li>a>p {
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: normal;
}

/* Nav Cap */
.g-HeaderV2_Nav-cap {
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.4;
  font-weight: normal;
  margin-top: 4px;
  margin-left: 24px;
}

/* Drawer Icon */
.g-HeaderV2_Drawer-icon {
  position: absolute;
  top: 17px;
  right: 6px;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  transform: translateY(-8px);
  align-items: center;
  cursor: pointer;
}

.g-HeaderV2_Drawer-icon>span {
  vertical-align: top;
}

@media screen and (min-width: 835px) {
  .g-HeaderV2_Drawer-icon {
    display: none;
  }
}

.g-HeaderV2_Drawer-icon:hover .g-HeaderV2_Drawer-text {
  text-decoration: underline;
}

.g-HeaderV2_Drawer-icon.--isSimple>.c-Icon_World-l {
  font-size: 18px;
}

/* Search Component */
.g-HeaderV2_Search {
  position: fixed;
  top: 0;
  bottom: 0;
  opacity: 0;
  right: -100%;
  width: 100%;
  padding-left: 56px;
  max-width: 776px;
  overflow-y: auto;
  transition: all .2s ease-out;
  z-index: 10000;
  color: var(--color-text-primary);
}

.g-HeaderV2_Search a {
  font-size: 15px;
  color: var(--color-link);
  text-decoration: underline;
}

/* >>> solve the css conflict with chat-gpt.css >>> */
.g-HeaderV2_Drawer a {
  @media screen and (max-width: 767px) {
    font-size: 16px !important;
  }
}

.g-HeaderV2_DrawerLayer a {
  @media screen and (max-width: 767px) {
    font-size: 16px !important;
  }
}
/* <<< solve the css conflict with chat-gpt.css <<< */

.g-HeaderV2_Search a:hover {
  color: var(--color-link-hover);
}

.g-HeaderV2_Search[aria-expanded="false"] {
  opacity: 0;
  right: -100%;
}

.g-HeaderV2_Search[aria-expanded="false"] .g-HeaderV2_Search-close {
  display: none;
}

.g-HeaderV2_Search[aria-expanded="true"] {
  opacity: 1;
  right: 0;
}

.g-HeaderV2_Search[aria-expanded="true"] .g-HeaderV2_Search-close {
  display: block;
  width: 56px;
  height: 100%;
}

.g-HeaderV2_Search[aria-expanded="true"] .g-HeaderV2_Search-close[aria-controls] {
  cursor: unset;
}

.g-HeaderV2_Search-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  font-size: 40px;
  line-height: 1;
}

.g-HeaderV2_Search-close>span {
  position: fixed;
  top: 16px;
  left: auto;
  padding-left: 8px;
  cursor: pointer;
}

.g-HeaderV2_Search-wrap {
  background-color: var(--color-monotone97);
  position: fixed;
  width: calc(100% - 56px);
  max-width: 720px;
  height: 100vh;
  overflow-y: auto;
  margin-left: auto;
}

.g-HeaderV2_Search-contents {
  padding: 8px 24px 24px;
  background-color: var(--color-monotone97);

}

.g-HeaderV2_Search-select {
  margin-top: 8px;
}

.g-HeaderV2_Search-box {
  margin-top: 16px;
  width: 100%;
  position: relative;
}

.g-HeaderV2 .g-HeaderV2_Search-input {
  padding: 12px 56px 12px 16px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  background-color: var(--color-white);
  width: 100%;
  color: var(--color-text-primary);
  line-height: 23px;
}

.g-HeaderV2 .g-HeaderV2_Search-input::placeholder {
  color: var(--color-monotone40);
}

.g-HeaderV2 .g-HeaderV2_Search-input:hover {
  background: var(--color-pink5);
}

.g-HeaderV2 .g-HeaderV2_Search-input:focus {
  border-color: var(--color-pink100);
  background: var(--color-white);
}

.g-HeaderV2 .g-HeaderV2_Search-input:active {
  border-width: 2px;
  padding: 11px 55px 11px 15px;
}

.g-HeaderV2_Search-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  height: 24px;
  width: 24px;
  margin-top: -12px;
  cursor: pointer;
}

.g-HeaderV2_Search-btn:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  top: -12px;
  right: -11px;
}

.g-HeaderV2_Search-btn-submit {
  visibility: hidden;
  width: 24px;
  height: 24px;
}

.g-HeaderV2_Search-btn-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  line-height: 24px;
  width: 24px;
  color: var(--color-primary);
  font-size: 24px;
  z-index: 2;
}

.g-HeaderV2_Search-btn-icon:before {
  color: var(--color-white);
}

.g-HeaderV2_Search-container {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-monotone75);
}

.g-HeaderV2_Search-btn-link {
  text-align: left;
  color: var(--color-link);
  text-decoration: underline;
}

.g-HeaderV2_Search-btn-link:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.g-HeaderV2_Search-btn-link:focus {
  color: var(--color-link-focus);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.g-HeaderV2_Search-btn-link:active {
  color: var(--color-link-active);
  text-decoration: none;
}

.g-HeaderV2_Search-popular-words {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 16px;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Search-popular-words {
    flex-direction: column;
  }
}

.g-HeaderV2_Search-bnr-wrapper {
  display: flex;
  gap: 16px;
}

.g-HeaderV2_Search-bnr-wrapper img {
  width: 210px;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Search-bnr-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .g-HeaderV2_Search-bnr-wrapper img {
    width: 288px;
  }
}

.g-HeaderV2_Search-related-words {
  display: inline-block;
  margin-right: 10px;
}

.g-HeaderV2_Search-clamp-secondline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: unset !important;
  white-space: unset !important;
  overflow: hidden;
}

.g-HeaderV2_Search-suggest-list {
  margin-top: 24px;
}

.g-HeaderV2_Search-suggest-list li {
  margin-top: 16px;
}

.g-HeaderV2_Search-suggest-list li>p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.g-HeaderV2_Search-suggest-product li {
  margin-top: 16px;
  overflow: hidden;
}

.g-HeaderV2_Search-suggest-product li>div:first-child {
  float: left;
  width: 80px;
  height: 80px;
  padding: 8px;
  margin-right: 8px;
  border: 1px solid var(--color-darkblue20);
  background-color: var(--color-white);
}

.g-HeaderV2_Search-suggest-product li>div:last-child {
  padding-left: 88px;
}

.g-HeaderV2_Search-label {
  display: inline-block;
  padding: 6px 8px;
  margin-right: 8px;
  background-color: var(--color-monotone93);
  font-size: 13px;
}

.g-HeaderV2_Search-text {
  font-size: 10px;
  line-height: 1.3;
}

.js-Readmore_Trigger {
  cursor: pointer;
}

/* Drawer Component */
.g-HeaderV2_Drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  opacity: 0;
  right: -100%;
  padding: 0 0 0 56px;
  width: 100%;
  max-width: 392px;
  transition: all .2s ease-out;
  z-index: 1000000;
}

@media screen and (min-width: 835px) {
  .g-HeaderV2_Drawer {
    display: none;
  }
}

.g-HeaderV2_Drawer[aria-expanded="false"] {
  opacity: 0;
  right: -100%;
}

.g-HeaderV2_Drawer[aria-expanded="false"] .g-HeaderV2_Drawer-close {
  display: none;
}

.g-HeaderV2_Drawer[aria-expanded="true"] {
  opacity: 1;
  right: 0;
}

.g-HeaderV2_Drawer[aria-expanded="true"] .g-HeaderV2_Drawer-close {
  display: block;
}

.g-HeaderV2_Drawer-text {
  font-size: 10px;
  line-height: 1.3;
}

.g-HeaderV2_Drawer-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.g-HeaderV2_Drawer-close>span {
  position: fixed;
  top: 16px;
  left: auto;
}

@media screen and (max-width: 400px) {
  .g-HeaderV2_Drawer-close>span {
    left: 8px;
  }
}

.g-HeaderV2_Drawer-container {
  height: 100vh;
  padding: 16px 0 120px;
  overflow-y: auto;
  background-color: var(--color-white);
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_Drawer-container {
    position: relative;
    z-index: 1;
  }
}

.g-HeaderV2_Drawer-btns {
  display: flex;
  padding: 8px 16px 24px;
  border-bottom: 1px solid var(--color-monotone88);
}

.g-HeaderV2_Drawer-btns>a {
  width: 100%;
  
}
.g-HeaderV2_Drawer-btns>a span {
  font-size: 15px;
  font-family: "Rakuten Sans JP", sans-serif;
}

.g-HeaderV2_Drawer-btns>a:nth-child(2) {
  margin-left: 6px;
}

.g-HeaderV2 .g-HeaderV2_Drawer-btn-primary,
.g-HeaderV2 .g-HeaderV2_Drawer-btn-secondly,
.g-HeaderV2 .g-HeaderV2_Drawer-btn-regular {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  height: 48px;
  font-size: 15px;
  padding: 0;
  border-radius: 50px;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 320px) {

  .g-HeaderV2_Drawer-btn-primary,
  .g-HeaderV2_Drawer-btn-secondly,
  .g-HeaderV2_Drawer-btn-regular {
    font-size: 13px;
  }
}

.g-HeaderV2_Drawer-btn-primary:hover,
.g-HeaderV2_Drawer-btn-primary:focus {
  background-color: var(--color-pink-80);
  border: 1px solid var(--color-pink-80);
  color: var(--color-white);
}

.g-HeaderV2_Drawer-btn-primary:focus {
  outline: 2px var(--color-linkblue) solid;
  outline-offset: 2px;
}

.g-HeaderV2_Drawer-btn-primary:active {
  background-color: var(--color-pink-60);
  border: 1px solid var(--color-pink-60);
  color: var(--color-white);
  outline: 0;
  box-shadow: none;
}

.g-HeaderV2_Drawer-btn-secondly:hover,
.g-HeaderV2_Drawer-btn-secondly:focus {
  background-color: var(--color-pink20);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.g-HeaderV2_Drawer-btn-secondly:focus {
  outline: 2px var(--color-linkblue) solid;
  outline-offset: 2px;
}

.g-HeaderV2_Drawer-btn-secondly:active {
  background-color: var(--color-pink40);
  outline: 0;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.g-HeaderV2_Drawer-btn-regular {
  border: 1px solid var(--color-monotone40);
  color: var(--color-monotone30);
}

.g-HeaderV2_Drawer-btn-regular:hover,
.g-HeaderV2_Drawer-btn-regular:focus {
  background-color: var(--color-monotone93);
  border: 1px solid var(--color-monotone40);
  color: var(--color-monotone30);
}

.g-HeaderV2_Drawer-btn-regular:focus {
  outline: 2px var(--color-linkblue) solid;
  outline-offset: 2px;
}

.g-HeaderV2_Drawer-btn-regular:active {
  background-color: var(--color-monotone88);
  border: 1px solid var(--color-monotone40);
  outline: 0;
  box-shadow: none;
}

.g-HeaderV2_Drawer-btn-regular>span:first-child {
  font-size: 20px;
  margin-right: 4px;
}

.g-HeaderV2_Drawer-list {
  font-weight: bold;
}

.g-HeaderV2_Drawer-list li {
  border-bottom: 1px solid var(--color-monotone88);
}

.g-HeaderV2_Drawer-list li>a,
.g-HeaderV2_Drawer-list li>div {
  display: block;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--color-black);
  cursor: pointer;
  font-family: "Rakuten Sans JP", sans-serif;
}

.g-HeaderV2_Drawer-list li>a img,
.g-HeaderV2_Drawer-list li>div img {
  vertical-align: bottom;
}
.g-HeaderV2_Drawer-list li>a:hover,
.g-HeaderV2_Drawer-list li>a:focus,
.g-HeaderV2_Drawer-list li>div:hover,
.g-HeaderV2_Drawer-list li>div:focus {
  color: var(--color-pink100);
  background-color: var(--color-pink5);
}

.g-HeaderV2_Drawer-list li>a:active,
.g-HeaderV2_Drawer-list li>div:active {
  color: var(--color-pink100);
  background-color: var(--color-pink10);
}

.g-HeaderV2_Drawer-list li>a:hover:focus span {
  color: var(--color-pink100);
  background-color: var(--color-pink5);
}

.g-HeaderV2_Drawer-list li>a:hover .g-HeaderV2_Drawer-list-small,
.g-HeaderV2_Drawer-list li>a:focus .g-HeaderV2_Drawer-list-small,
.g-HeaderV2_Drawer-list li>a:active .g-HeaderV2_Drawer-list-small {
  color: var(--color-primary);
}

.g-HeaderV2_Drawer-list li>a>span {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
  vertical-align: -1px;
}

.g-HeaderV2_Drawer-list li>a>span.g-HeaderV2_Drawer-list-small {
  font-size: 14px;
  color: var(--color-black);
  vertical-align: 0px;
}

.g-HeaderV2_Drawer-list li>a>a,
.g-HeaderV2_Drawer-list li>a>img {
  margin-right: 4px;
}

.g-HeaderV2_Drawer-list li>a>p {
  font-weight: normal;
  margin-top: 4px;
}

.g-HeaderV2_Drawer-list-layer li>a,
.g-HeaderV2_Drawer-list-layer li>div {
  padding-left: 4px;
}

.g-HeaderV2_Drawer-list-layer li>p {
  padding: 0 0 10px auto;
  font-weight: normal;
}

.g-HeaderV2_Drawer-list-layer-btn {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.mt-1 {
  margin-top: 1rem;
}

.primary-text-color {
  color: var(--color-primary);
}
.g-HeaderV2_Drawer-list-layer .js-drawer-close:has(.selected) {
  pointer-events: none;
}

.g-HeaderV2_Drawer-menu>div {
  position: relative;
}

.g-HeaderV2_Drawer-menu>div>span:first-child {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
  vertical-align: -1px;
}

.g-HeaderV2_Drawer-menu>div>span:last-child {
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -0.5em;
  margin-left: 4px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
}

.g-HeaderV2_Drawer-menu>div>img {
  margin-right: 4px;
}

.g-HeaderV2_Drawer-sub {
  padding: 32px 16px 64px;
}

/* Drawer Layer Component */
.g-HeaderV2_DrawerLayer {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  opacity: 0;
  overflow-y: auto;
  width: calc(100% - 56px);
  max-width: 336px;
  padding-bottom: 24px;
  background-color: var(--color-white);
  z-index: 1000010;
  transition: all .2s ease-out;
  color: var(--color-black);
}

@media screen and (min-width: 835px) {
  .g-HeaderV2_DrawerLayer {
    display: none;
  }
}

.g-HeaderV2_DrawerLayer[aria-expanded="false"] {
  opacity: 0;
  right: -100%;
}

.g-HeaderV2_DrawerLayer[aria-expanded="true"] {
  opacity: 1;
  right: 0;
}

.g-HeaderV2_DrawerLayer-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px 13px 36px;
  border-bottom: 1px solid var(--color-monotone88);
  z-index: 10;
  font-size: 18px;
  font-weight: bold;
  background-color: var(--color-white);
  color: var(--color-black);
  transition: all .2s ease-out;
  cursor: pointer;
}

.g-HeaderV2_DrawerLayer-back:hover,
.g-HeaderV2_DrawerLayer-back:focus {
  color: var(--color-pink100);
  background-color: var(--color-pink5);
}

.g-HeaderV2_DrawerLayer-back:active {
  color: var(--color-pink100);
  background-color: var(--color-pink10);
}

.g-HeaderV2_DrawerLayer-back>span:first-child {
  position: static;
  margin-right: 4px;
  font-size: 20px;
}

.g-HeaderV2_DrawerLayer-back>span:last-child {
  position: absolute;
  top: 18px;
  left: 16px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
}

.g-HeaderV2_DrawerLayer-back-black>span:last-child {
  color: var(--color-black);
}

.g-HeaderV2_DrawerLayer-back>img {
  margin-right: 4px;
}

.g-HeaderV2_DrawerLayer-back.--isSimpleDrawerBack {
  font-size: 14px;
  padding-top: 0;
}

.g-HeaderV2_DrawerLayer-back.--isSimpleDrawerBack:hover,
.g-HeaderV2_DrawerLayer-back.--isSimpleDrawerBack:focus {
  background-color: var(--color-white);
  color: var(--color-black);
}

.g-HeaderV2_DrawerLayer-back.--isSimpleDrawerBack:active {
  background-color: var(--color-white);
  color: var(--color-black);
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_DrawerLayer-back.--considering {
    padding-left: 36px;
  }

  .g-HeaderV2_DrawerLayer-back.--considering+div {
    padding-top: 81px;
  }
}

.g-HeaderV2_DrawerLayer-content {
  padding: 0 16px 120px;
}

/* Overlay Component */
.g-HeaderV2_Overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-monotone30);
  opacity: 0.75;
  z-index: 5;
}

.g-HeaderV2_Overlay[aria-hidden="false"] {
  display: block;
}

/* Utility Classes */
.g-HeaderV2_Utility-hikari-color {
  color: #f59600 !important;
}

.g-HeaderV2_Utility-pc {
  display: none;
}

@media screen and (min-width: 834px) {
  .g-HeaderV2_Utility-pc {
    display: block;
  }
}

.g-HeaderV2_Utility-sp {
  display: block;
}

@media screen and (min-width: 834px) {
  .g-HeaderV2_Utility-sp {
    display: none;
  }
}

/* Hidden Elements */
.g-HeaderV2 [aria-hidden="true"] {
  display: none;
}

/* English specific styles */
.g-HeaderV2_En-drawer-container {
  width: calc(100% - 56px);
  max-width: 336px;
}

.g-HeaderV2_En-drawer-sub {
  padding: 16px 16px 64px;
}

.g-HeaderV2_En-drawer-icon {
  right: 12px;
}

.g-HeaderV2_En-drawer-close>span::after {
  content: "Close";
  font-family: 'Rakuten Sans UI', 'Rakuten Sans JP', sans-serif;
  text-align: center;
}

.g-HeaderV2_En-search-close>span::after {
  content: "Close";
  font-family: 'Rakuten Sans UI', 'Rakuten Sans JP', sans-serif;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_En-search-icon {
    right: 46px;
  }
}

.g-HeaderV2_En-nav-comment {
  width: 100%;
  max-width: 1032px;
  margin: 0 auto 16px;
}

.g-HeaderV2_En-nav-comment-support {
  max-width: 850px;
}

.g-HeaderV2_En-nav-comment-campaign {
  max-width: 400px;
  padding-left: 80px;
}

.g-HeaderV2_En-nav-comment-coverage {
  max-width: 665px;
  padding-left: 80px;
}

.g-HeaderV2_En-nav-list-icon-coverage {
  margin-left: 4px;
  margin-right: 5px !important;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_En-nav-list-icon-coverage {
    margin-bottom: 3px;
  }
}

/* Toolbar */
.g-HeaderV2_Toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Language */
.g-HeaderV2_Language-hidden {
  display: none !important;
}

/* Language Selector */
.g-HeaderV2_LanguageSelector {
  position: relative;
}

.g-HeaderV2_LanguageSelector .js-language-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.2);
}

.g-HeaderV2_LanguageSelector .js-language-overlay.--isOpen {
  display: block;
}

/* Language Popup */
.g-HeaderV2_LanguagePopup-window {
  position: fixed;
  top: 24px;
  right: 24px;
  max-width: 544px;
  width: calc(100% - 48px);
  background-color: var(--color-white);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  border-radius: 8px;
  z-index: 1000000;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_LanguagePopup-window {
    top: unset;
    bottom: 40px;
    padding-block: 16px;
    padding-inline-end: 8px;
  }
}

.g-HeaderV2_LanguagePopup-container {
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_LanguagePopup-container {
    max-height: 336px;
    height: 40vh;
    padding-block: 0;
    padding-inline: 16px;
  }
}

.g-HeaderV2_LanguagePopup-container p {
  margin-top: 16px;
}

.g-HeaderV2_LanguagePopup-close {
  position: absolute;
  top: -16px;
  right: -16px;
  font-size: 24px;
  color: var(--color-monotone30);
  border: 1px solid var(--color-monotone56);
  background-color: var(--color-white);
  border-radius: 50%;
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  cursor: pointer;
}

.g-HeaderV2_LanguagePopup-callout {
  padding: 8px 16px 8px 8px;
  color: var(--color-alert-text);
  background-color: var(--color-alert-bg);
  font-size: 14px;
  margin-block: 16px;
  display: flex;
  gap: 8px;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_LanguagePopup-callout {
    padding: 16px;
  }
}

.g-HeaderV2_LanguagePopup-Icon_warning {
  line-height: 1.5;
}

.g-HeaderV2_LanguagePopup-select-wrapper {
  display: flex;
  gap: 16px 24px;
  align-items: center;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_LanguagePopup-select-wrapper {
    flex-direction: column;
  }
}

.g-HeaderV2_LanguagePopup-select {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 835px) {
  .g-HeaderV2_LanguagePopup-select {
    max-width: 504px;
  }
}

@media screen and (min-width: 835px) {
  .g-HeaderV2_LanguagePopup-select-button {
    min-width: 210px;
  }
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_LanguagePopup-select-button {
    width: inherit;
  }
}

.g-HeaderV2_LanguagePopup-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.g-HeaderV2_LanguagePopup-text {
  font-size: 14px;
  margin-top: 16px;
}

/* Language Drawer */
.g-HeaderV2_LanguageDrawer-item {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  color: var(--color-black) !important;
  text-decoration: none;
  cursor: pointer;
}

.g-HeaderV2_LanguageDrawer-item:hover {
  background-color: var(--color-monotone97);
}

.g-HeaderV2_LanguageDrawer-item.selected {
  color: var(--color-primary) !important;
}

@media screen and (max-width: 834px) {
  .g-HeaderV2_LanguageDrawer-item.selected {
    display: flex !important;
  }
}

.g-HeaderV2_LanguageDrawer-item.selected .g-HeaderV2_LanguageDrawer-check {
  display: block;
}

.g-HeaderV2_LanguageDrawer-check {
  display: none;
  font-size: 17px;
  color: var(--color-primary);
}

/* ================================================ */
/* Language Setting */
.g-HeaderV2_Language-hidden {
  display: none !important;
}

.g-HeaderV2_LanguageSetting {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-size: 15px;
}

.g-HeaderV2_LanguageSetting .language-selector-icon {
  transition: transform 0.3s;
}

.g-HeaderV2_LanguageSetting.--isOpen .language-selector-icon {
  transform: rotate(180deg);
}

.g-HeaderV2_LanguageSetting-black {
  color: var(--color-black);
  font-size: 12px;
  padding: 10px 0;
}

.g-HeaderV2_LanguageSetting-black:hover {
  background-color: var(--color-monotone97);
}

.g-HeaderV2_LanguageSetting.--isSimple:hover {
  font-weight: bold;
}

/* Language Menu */
.g-HeaderV2_LanguageMenu {
  position: absolute;
  top: 30px;
  right: 0;
  display: none !important;
  width: 200px;
  background-color: var(--color-white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.g-HeaderV2_LanguageMenu.g-HeaderV2_Js-display {
  display: flex !important;
  flex-direction: column;
}

.g-HeaderV2_LanguageMenu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  color: var(--color-black) !important;
  text-decoration: none;
  cursor: pointer;
}

.g-HeaderV2_LanguageMenu-item:hover {
  background-color: var(--color-monotone97);
}

.g-HeaderV2_LanguageMenu-item.selected {
  color: var(--color-primary) !important;
  pointer-events: none;
}

g-HeaderV2_LanguageMenu-item.selected .g-HeaderV2_LanguageMenu-check {
  display: block;
}

.g-HeaderV2_LanguageMenu-item a {
  color: var(--color-black);
  text-decoration: none;
}

.g-HeaderV2_LanguageMenu-check {
  display: none;
  font-size: 17px;
  color: var(--color-primary);
}


.l-System_Container {
  width: 100%;
  max-width: 1064px;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

/* icon */
[class^="c-Icon_"], [class*=" c-Icon_"] {
  font-family: 'rex-icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-Icon_Rakuten-account-l::before {
  content: "\e9d7";
}

.c-Icon_Building-l::before {
  content: "\e90d";
}

.c-Icon_World-l::before {
  content: "\e9de";
}

.c-Icon_Chevron-down::before {
  content: "\e91c";
}

.c-Icon_Check::before {
  content: "\e91b";
}

.c-Icon_Chevron-right {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
}

.c-Icon_Chevron-right::before {
  content: "\e91e";
}

.c-Icon_Search::before {
  content: "\e9b2";
}

.c-Icon_My-page-l::before {
  content: "\e980";
}

.c-Icon_Menu {
  font-size: 24px;
}

.c-Icon_Menu::before {
  content: "\e979";
}

.c-Icon_Price-l::before {
  content: "\e99a";
}

.c-Icon_Smartphone-l::before {
  content: "\e9c4";
}

.c-Icon_List-l::before {
  content: "\e96b";
}

.c-Icon_Shop-l::before {
  content: "\e9be";
}

.c-Icon_Sign-info-l::before {
  content: "\e960";
}

.c-Icon_Sign-help-l::before {
  content: "\e958";
}

.c-Icon_Comment-l::before {
  content: "\e92a";
}

.c-Icon_News-l::before {
  content: "\e985"
}

.c-Txt_Emp-01 {
  color: #333;
  font-weight: 700
}

.c-Icon_X {
  font-size: 40px;
}

.c-Icon_X::before {
  content: "\e924";
}

.c-Icon_Chevron-left::before {
  content: "\e91d";
}

.c-Icon_New-window-l::before {
  content: "\e983";
}

/* the following is from RMI file: src/styleguide-hikari/assets/css/common-v2/common-v2.css */
.u-Adjust_Mt-24 {
  margin-top: 24px !important
}

.c-Heading_Lv4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4
}

.u-Adjust_Mt-16 {
	margin-top: 16px !important
}

.u-Adjust_Mr-8 {
	margin-right: 8px !important
}

.c-Btn_Primary,
.c-Btn_Primary-large,
.c-Btn_Primary-small,
.c-Btn_Regular,
.c-Btn_Regular-large,
.c-Btn_Regular-small,
.c-Btn_Secondly,
.c-Btn_Secondly-large,
.c-Btn_Secondly-small {
	display: inline-block;
	width: 100%;
	position: relative;
	text-align: center;
	color: #fff !important;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	padding: 12px;
	border-radius: 50px;
	line-height: 1.4;
	-webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 4px 0 rgba(0, 0, 0, .1);
  border: 1px solid #FF008C;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  height: 48px;
  font-size: 15px;
  padding: 0;
}

.c-Btn_Primary span,
.c-Btn_Primary-large span,
.c-Btn_Primary-small span,
.c-Btn_Regular span,
.c-Btn_Regular-large span,
.c-Btn_Regular-small span,
.c-Btn_Secondly span,
.c-Btn_Secondly-large span,
.c-Btn_Secondly-small span {
	display: inline-block
}

.c-Btn_Primary,
.c-Btn_Primary-large,
.c-Btn_Primary-small {
	background-color: #ff008c;
	border: 1px solid #ff008c;
	min-width: 160px
}

.c-Btn_Primary-large:focus,
.c-Btn_Primary-large:hover,
.c-Btn_Primary-small:focus,
.c-Btn_Primary-small:hover,
.c-Btn_Primary:focus,
.c-Btn_Primary:hover {
	background-color: #cc0070;
	border: 1px solid #cc0070;
	color: #fff
}

.c-Btn_Primary-large:focus,
.c-Btn_Primary-small:focus,
.c-Btn_Primary:focus {
	outline: #0074c2 solid 2px;
	outline-offset: 2px
}

.c-Btn_Primary-large:active,
.c-Btn_Primary-small:active,
.c-Btn_Primary:active {
	background-color: #990054;
	border: 1px solid #990054;
	color: #fff;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}

[aria-disabled=true].c-Btn_Primary,
[aria-disabled=true].c-Btn_Primary-large,
[aria-disabled=true].c-Btn_Primary-small {
	background-color: #ededed;
	border-color: #ededed;
	color: #bfbfbf;
	-webkit-box-shadow: none;
	box-shadow: none;
	pointer-events: none
}

.c-Btn_Secondly,
.c-Btn_Secondly-large,
.c-Btn_Secondly-small {
	background-color: #fff;
	border: 1px solid #ff008c;
	color: #ff008c !important;
}

.c-Btn_Secondly-large:focus,
.c-Btn_Secondly-large:hover,
.c-Btn_Secondly-small:focus,
.c-Btn_Secondly-small:hover,
.c-Btn_Secondly:focus,
.c-Btn_Secondly:hover {
	background-color: #ffcce8;
	color: #ff008c;
	border: 1px solid #ff008c
}

.c-Btn_Secondly-large:focus,
.c-Btn_Secondly-small:focus,
.c-Btn_Secondly:focus {
	outline: #0074c2 solid 2px;
	outline-offset: 2px
}

.c-Btn_Secondly-large:active,
.c-Btn_Secondly-small:active,
.c-Btn_Secondly:active {
	background-color: #ff99d1;
	outline: 0;
	border: 1px solid #ff008c;
	color: #ff008c;
	-webkit-box-shadow: none;
	box-shadow: none
}

[aria-disabled=true].c-Btn_Secondly,
[aria-disabled=true].c-Btn_Secondly-large,
[aria-disabled=true].c-Btn_Secondly-small {
	background-color: #ededed;
	border-color: #ededed;
	color: #bfbfbf;
	-webkit-box-shadow: none;
	box-shadow: none;
	pointer-events: none
}

.c-Link_Txt-inline>span {
  color: #ff008c;
  padding-left: 4px;
  -webkit-transform: translateY(10%);
  transform: translateY(10%)
}

.c-Link_Txt-inline-icon {
	color: #0072bf;
  text-decoration: underline;
}

.c-Link_Txt-inline-icon>span {
	color: #ff008c;
	font-size: 16px;
	margin-right: 5px;
	margin-left: 4px
}

.c-Link_Txt-inline-icon>span::before {
	display: inline-block
}

.c-Link_Txt-inline-icon.c-Link_Txt-white>span {
	color: #fff
}

.c-Link_Txt-inline-icon.c-Link_Txt-white>span::before {
	display: inline-block
}

.c-Link_Txt-inline-icon:hover {
	color: #00568f;
	text-decoration: underline;
	text-decoration-thickness: 2px
}

.c-Link_Txt-inline-icon:active {
	color: #00375c;
	text-decoration: none
}

.c-Link_Txt-inline-icon:focus {
	color: #00568f;
	text-decoration: none
}

.c-Txt_Cap {
  color: #676767;
  font-size: 12px;
  line-height: 1.4;
  @media screen and (max-width: 767px) {
    font-size: 12px !important;
  }
}

.g-HeaderV2 [aria-controls],
.g-HeaderV2 [role=button],
.g-HeaderV2 [type=button],
.g-HeaderV2 [type=reset],
.g-HeaderV2 [type=submit],
.g-HeaderV2 button {
  cursor: pointer
}

.c-Txt_Emp-02 {
  color: #ff008c;
  font-weight: 700
}


.c-Readmore_Trigger {
  text-align: center
}

.c-Readmore_Trigger button {
  position: relative;
  padding: 16px 0 16px 20px;
  text-align: left;
  background-color: inherit;
  z-index: 1;
  color: #0072bf;
  text-decoration: underline
}

.c-Readmore_Trigger button .c-Readmore_Arrow {
  margin-top: -5px;
  position: absolute;
  top: 50%;
  left: 0;
  color: #ff008c;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  text-decoration: none;
  font-weight: 700
}

.g-HeaderV2 button,
.g-HeaderV2 input,
.g-HeaderV2 select,
.g-HeaderV2 textarea {
  /* background-color: transparent;
  border-style: none;
  color: inherit; */
  outline: 0;
}
