@charset "utf-8";
/* fxcal.css
++++++++++++++++++++++++++++++++++++++++
* NOTE
++++++++++++++++++++++++++++++++++++++++
- Charset: utf-8
- Return code: LF
++++++++++++++++++++++++++++++++++++++++ */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 *  #16004 FXネオの経済カレンダーの改善に必要なリソースの制作依頼
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 * utility
 * ※ リリースして問題なければ後日 utility に移動 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.u-c-gray4 {
  --color-gray-quaternary: #848484;
  color: var(--color-gray-quaternary);
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 * common
 * ※ リリースして問題なければ後日 modules に移動 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* icon
++++++++++++++++++++++++++++++++++++++++ */
.m-icon_rating {
  position: relative;
  display: inline-block;
  width: 88px;
  height: 16px;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 200%;
}
.m-icon_rating::before,
.m-icon_rating::after {
  position: absolute;
  top: 0;
  width: 0;
  height: 16px;
  background-repeat: no-repeat;
  background-repeat: space;
  background-position-y: center;
  background-position-x: 0, 18px, 36px, 54px, 72px;
  background-size: 16px auto;
  background-image: var(--icon-star);
  content: "";
}
.m-icon_rating::before {
  left: 0;
  --icon-star: url(/assets/images/icon/symbol/icon-symbol-star-yellow.svg);
}
.m-icon_rating::after {
  right: 0;
  --icon-star: url(/assets/images/icon/symbol/icon-symbol-star-gray.svg);
}

.m-icon_rating.-lv1::before { width: 16px }
.m-icon_rating.-lv2::before { width: 34px }
.m-icon_rating.-lv3::before { width: 52px }
.m-icon_rating.-lv4::before { width: 70px }
.m-icon_rating.-lv5::before { width: 88px }

.m-icon_rating.-lv1::after { width: 70px }
.m-icon_rating.-lv2::after { width: 52px }
.m-icon_rating.-lv3::after { width: 34px }
.m-icon_rating.-lv4::after { width: 16px }
.m-icon_rating.-lv5::after { width: 0 }



/* checkbox / radio
++++++++++++++++++++++++++++++++++++++++
 ** HTML example
 *
 * // input checkbox
 * <label class="m-chk_btn">
 *   <input type="checkbox">
 *   <i class="_icon"></i>
 *   <span class="_btn">テキスト</span>
 * </label>
 *
 * // other tag checkbox
 * <div class="m-chk_btn">
 *   <i class="_icon -checkbox is-checked"></i>
 *   <span class="_btn">div</span>
 * </div>
 *
 * // input radio
 * <label class="m-chk_btn">
 *   <input type="radio">
 *   <i class="_icon"></i>
 *   <span class="_btn">テキスト</span>
 * </label>
 *
 * // other tag radio
 * <div class="m-chk_btn">
 *   <i class="_icon -radio is-checked"></i>
 *   <span class="_btn">div</span>
 * </div>
 */
.m-chk_btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  position: relative;
  display: block;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.m-chk_btn > input {
  position: absolute;
  z-index: -1;
  opacity: 0.01;
}

.m-chk_btn > ._btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  min-height: 48px;
  padding: 7px 7px 7px 31px;
  border: 1px solid #dde0e5;
  border-radius: 4px;
  background: #fff;
  color: inherit;
  line-height: 1.25;
  text-align: center;
  font-weight: normal;

  cursor: pointer;
}

.m-chk_btn > ._icon {
  position: absolute;
  top: calc(50% - 8px);
  left: 8px;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.m-chk_btn > ._icon::before,
.m-chk_btn > ._icon::after {
  position: absolute;
  display: block;
  color: #024f95;
  content: "";
}
.m-chk_btn > ._icon::before {
  inset: 0;
  border: 1px solid #d9d9d9;
  background: #fff;
}
.m-chk_btn > ._icon::after {
  opacity: 0;
}

.m-chk_btn > ._icon.-checkbox::before,
.m-chk_btn > [type="checkbox"] ~ ._icon::before {
  border-radius: 2px;
}
.m-chk_btn > ._icon.-checkbox::after,
.m-chk_btn > [type="checkbox"] ~ ._icon::after {
  top: calc(50% - 5px);
  left: 1px;
  width: 6px;
  height: 10px;

  transform: rotate(45deg);
  transform-origin: right bottom;
  border-width: 0 2px 3px 0;
  border-style: solid;
  border-color: currentColor;
}
.m-chk_btn > .-radio._icon::before,
.m-chk_btn > [type="radio"] ~ ._icon::before {
  border-radius: 100vh;
}
.m-chk_btn > .-radio._icon::after,
.m-chk_btn > [type="radio"] ~ ._icon::after {
  inset: 4px;
  border-radius: 100vh;
  background-color: currentColor;
}

@media (hover: hover) {
  .m-chk_btn:hover > input:not(:disabled):not(:checked) ~ ._btn {
    background: #f4f9fb;
  }
}

.m-chk_btn > ._icon.is-checked ~ ._btn,
.m-chk_btn > input:checked ~ ._btn {
  border-color: transparent;
  background: #c7e5ef;
}
.m-chk_btn > .is-checked._icon::after,
.m-chk_btn > input:checked ~ ._icon::after {
  opacity: 1;
}
.m-chk_btn > ._icon.is-disabled ~ ._btn,
.m-chk_btn > input:disabled ~ ._btn {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 * fxcal unique style
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* heading
++++++++++++++++++++++++++++++++++++++++ */
.fxcal-ttl.m-ttl-page > h2 {
  line-height: 1.5;
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .fxcal-ttl.m-ttl-page > h2 {
    min-height: 46px;
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .fxcal-ttl.m-ttl-page {
    min-height: 128px;
  }
  .fxcal-ttl.m-ttl-page > h2 {
    min-height: 46px;
    margin-top: 16px;
    font-size: 2.4rem;
  }
}

/* next prev
++++++++++++++++++++++++++++++++++++++++ */
.fxcal-neighbors {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: center;
}
.fxcal-neighbors.-today {
  grid-template-columns: 1fr;
  justify-content: center;
  margin-bottom: 0;
}

.fxcal-neighbors > li {
  display: contents;
}
.fxcal-neighbors > li > a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;

  position: relative;
  margin: 0;
  padding: 11px 22px;
  border-radius: 4px;
  border: 1px solid currentColor;
  background-color: rgba(255,255,255,.8);
  color: var(--color-rich-black);
  font-size: 1.6rem;
  line-height: 1.5;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  
  max-width: 240px;
}
.fxcal-neighbors > li._today > a {
  width: 240px;
  margin: auto;
}
.fxcal-neighbors > li._curt > a {
  grid-column-start: 2;
  margin: auto;
}
.fxcal-neighbors > li._prev > a {
  grid-column-start: 1;
  padding-right: 16px;
}
.fxcal-neighbors > li._next > a {
  grid-column-start: 3;
  padding-left: 16px;
}
.fxcal-neighbors > li._today > a::before,
.fxcal-neighbors > li._prev > a::before,
.fxcal-neighbors > li._next > a::after {
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: no-repeat center/contain;
  vertical-align: middle;
  content: "";
  background-image: url(/assets/images/icon/link/icon-link-arrow.svg);
}
.fxcal-neighbors > li._today > a::before {
  position: static;
  top: auto;
  margin: 0 4px 0 0;
  transform: rotate(90deg) translateX(-1px);
  opacity: 0.28;
}
.fxcal-neighbors > li._prev > a::before {
  left: 8px;
  transform: scale(-1, 1);
}
.fxcal-neighbors > li._next > a::after {
  right: 8px;
}


@media (hover: hover) {
  .fxcal-neighbors > li > a:hover {
    color: var(--c-text-link-hover);
  }
}
@media (max-width: 767.98px) {
  .fxcal-neighbors {
    grid-template-columns: 80px 1fr 80px;
  }
  .fxcal-neighbors > li > a {
    font-size: 1.4rem;
  }
  .fxcal-neighbors > li:nth-child(even) > a {
    width: 136px;
  }
}
@media (min-width: 768px) {
  .fxcal-neighbors {
    grid-template-columns: 168px 1fr 168px;
    margin-top: 40px;
  }
  .fxcal-neighbors > li:nth-child(even) > a {
    width: 240px;
  }
}

.fxcal-neighbors > li > a.is-disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* 絞り込み
++++++++++++++++++++++++++++++++++++++++ */
.fxcal-choices {
  display: block;
}
.fxcal-choices table,
.fxcal-choices caption,
.fxcal-choices tfoot,
.fxcal-choices tbody,
.fxcal-choices tr,
.fxcal-choices th,
.fxcal-choices td {
  display: block;
  margin: 0;
  padding: 0;
}
.fxcal-choices th {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background-color: #f4f9fb;
  text-align: center;
  font-weight: bold;
}
.fxcal-choices td {
  display: grid;
  gap: 16px;
}

.fxcal-choices ._reset [type="reset"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;

  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  width: fit-content;
  margin-left: auto;
  color: #848484;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .fxcal-choices ._reset [type="reset"]:hover {
    color: var(--c-text-link-hover);
  }
}

@media (max-width: 767.98px) {
  .fxcal-choices {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #d9d9d9;
  }

  .fxcal-choices table {
    display: grid;
    grid-template-rows: 56px 0fr;
    transition: grid-template-rows .3s ease;
  }
  .fxcal-choices table.is-open-sp {
    grid-template-rows: 56px 1fr;
  }

  .fxcal-choices caption {
    position: relative;
    padding: 15px 36px 17px;
    background-color: #f7f7f7;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }
  .fxcal-choices caption::after {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(/assets/images/icon/link/icon-link-acc_plus.svg);
    content: "";
  }
  .fxcal-choices table.is-open-sp caption::after {
    background-image: url(/assets/images/icon/link/icon-link-acc_minus.svg);
  }

  .fxcal-choices tbody {
    overflow: hidden;
    padding: 0 15px;
  }
  .fxcal-choices th {
    margin-top: 24px;
    margin-bottom: 16px;
  }
  .fxcal-choices td {
    grid-template-columns: repeat(2, 1fr);
  }
  .fxcal-choices td._reset {
    grid-template-columns: auto;
    padding: 16px 0;
  }
  .fxcal-choices td._country {
    font-size: 1.2rem;
  }
  .fxcal-choices td._country .m-icon_flag::before {
    content: none;
  }
}
@media (max-width: 767.98px) and (hover: hover) {
  .fxcal-choices caption {
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    cursor: pointer;
  }
  .fxcal-choices caption:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .fxcal-choices caption {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(0 0 99.9% 99.9%);
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    background: none;
    white-space: nowrap;
  }
  .fxcal-choices tbody {
  }
  .fxcal-choices tr {
    display: grid;
    grid-template-columns: 128px 1fr;
    padding-bottom: 1px;
  }
  .fxcal-choices th {
    box-shadow: 1px 1px 0 0 #d9d9d9 inset;
  }
  .fxcal-choices td {
    padding: 24px 16px;
    box-shadow: -1px 1px 0 0 #d9d9d9 inset;
  }
  .fxcal-choices td {
    grid-template-columns: repeat(3, 1fr);
  }
  .fxcal-choices td._reset {
    grid-column: 1 / 3;
    grid-template-columns: auto;
    box-shadow: 0 1px 0 0 #d9d9d9 inset;
  }
  .fxcal-choices td._important {
    grid-template-columns: repeat(5, 1fr);
  }
  .fxcal-choices ._reset {
    padding: 12px 0 24px;
    text-align: right;
  }
  .fxcal-choices td._country .m-icon_flag {
    margin-top: 2px;
  }
}

/* calendar
++++++++++++++++++++++++++++++++++++++++ */
.fxcal-calendar {
  width: 100%;
  line-height: 1.5;
  text-align: center;
}
.fxcal-calendar th,
.fxcal-calendar td {
  padding: 12px;
}

.fxcal-calendar thead th {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(0 0 99.9% 99.9%);
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	background: none;
	white-space: nowrap;
}

.fxcal-calendar tr._date th {
  padding-right: 0;
  padding-left: 0;
  text-align: left;
  font-weight: bold;
}

.fxcal-calendar tr._row {
  border: 1px solid #d9d9d9;
}

.fxcal-calendar td._time {
  border-right: 1px solid #d9d9d9;
  background-color: #f4f9fb;
  font-weight: normal;
  text-align: center;
}

.fxcal-calendar td ._title,
.fxcal-calendar td ._important {
  margin: 0;
  text-align: left;
}

.fxcal-calendar td._name,
.fxcal-calendar td._lasttime,
.fxcal-calendar td._expect,
.fxcal-calendar td._result {
  background-image: linear-gradient(#d9d9d9, #d9d9d9);
  background-repeat: no-repeat;
  background-size: 0;
}

.fxcal-calendar td[data-label]::before {
  display: block;
  width: fit-content;
  margin: 0 auto 4px;
  padding: 0 12px;
  border-radius: 100vh;
  background-color: #f3f4f6;
}
.fxcal-calendar td[data-label]:not(:empty):before {
  content: attr(data-label);
}

.fxcal-calendar .m-icon_flag {
  --icon-base-size: 1.3333rem;
}

@media (max-width: 767.98px) {
  .fxcal-calendar,
  .fxcal-calendar caption,
  .fxcal-calendar tfoot,
  .fxcal-calendar tbody,
  .fxcal-calendar tr,
  .fxcal-calendar th,
  .fxcal-calendar td {
    display: block;
    margin: 0;
  }
  .fxcal-calendar tr._date th {
    padding-top: 48px;
    padding-bottom: 12px;
    font-size: 2rem;
  }
  .fxcal-calendar tr._row {
    display: grid;
    grid-template-columns: 64px repeat(3, 1fr);
    grid-template-rows: auto auto;
    border: 1px solid #d9d9d9;
  }
  .fxcal-calendar tr._row + ._row {
    border-top: 0;
  }
  .fxcal-calendar td._time {
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 8px;
    padding-left: 8px;
  }
  .fxcal-calendar td._name {
    grid-row: 1;
    grid-column: 2 / -1;
    background-size: calc(100% - 20px) 1px;
    background-position: bottom center;
  }

  .fxcal-calendar td._name:not(:has(._important)) {
    background-size: 0;
  }
  .fxcal-calendar td._name:not(:has(._important)) ~ [data-label] {
    padding: 0;
  }

  .fxcal-calendar td._lasttime {}
  .fxcal-calendar td._expect,
  .fxcal-calendar td._result {
    background-size: 1px calc(100% - 20px);
    background-position: center left;
  }
  .fxcal-calendar td._lasttime,
  .fxcal-calendar td._expect,
  .fxcal-calendar td._result {
    font-size: 1.6rem;
  }
  .fxcal-calendar td._lasttime::before,
  .fxcal-calendar td._expect::before,
  .fxcal-calendar td._result::before {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .fxcal-calendar tr._date th {
    padding-top: 72px;
    padding-bottom: 16px;
    font-size: 3rem;
  }
  .fxcal-calendar td._time {
    width: 80px;
  }
  .fxcal-calendar td._name {
    width: auto;
  }
  .fxcal-calendar td._lasttime,
  .fxcal-calendar td._expect,
  .fxcal-calendar td._result {
    width: 144px;
    background-size: 1px calc(100% - 20px);
    background-position: center left;
    font-size: 1.8rem;
  }
  .fxcal-calendar td._lasttime::before,
  .fxcal-calendar td._expect::before,
  .fxcal-calendar td._result::before {
    font-size: 1.4rem;
  }
}

/*
 * sys state
 */
.fxcal-calendar tr._date.new-day {}
.fxcal-calendar tr._row.new-day {}

.fxcal-calendar tr._date.day-off {}
.fxcal-calendar tr._row.day-off {
  background-color: var(--color-rich-black-003);
}
.fxcal-calendar tr._row.day-off ._name {
  background-size: 0;
}
.fxcal-calendar tr._row.day-off [data-label]:empty {
  padding: 0;
  background-size: 0;
}

.fxcal-calendar tr._date.full-day-off {
  border-bottom: 1px solid #d9d9d9;
  color: var(--color-rich-black-050);
}
.fxcal-calendar tr._row.full-day-off {
  display: none;
}







/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 * 以下 元スタイル（不要になったタイミングで削除）
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.m-heading2 + .m-toolcard-wrap {
  margin-top: 1.6em;
}

/* control
++++++++++++++++++++++++++++++++++++++++ */
/* pager ++++++++++++++++ */
.fxcal-pager {
  position: relative;
  display: flex;
  margin: 0 0 25px;
  padding: 0 40px;
  border-bottom: 1px solid #dde0e5;
}

/* next/prev */
.fxcal-pager__link--prev,
.fxcal-pager__link--next {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  overflow: hidden;
  border: none;
  border-radius: 5px 5px 0 0;
  outline: none;
  background-color: #465059;
  text-indent: -9999px;
  white-space: nowrap;
  cursor: pointer;
}
.fxcal-pager__link--prev {
  left: 0;
}
.fxcal-pager__link--next {
  right: 0;
}

.fxcal-pager__link--prev::after,
.fxcal-pager__link--next::after {
  -webkit-transform: rotate(45deg);
  display: block;
  z-index: 5;
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  margin-left: 3px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
.fxcal-pager__link--prev::after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 0;
  margin-left: 12px;
}
.fxcal-pager__link--next::after {
  right: 0;
  margin-right: 12px;
}
.fxcal-pager__link--prev.is-disabled,
.fxcal-pager__link--next.is-disabled {
  background-color: #dce3e9;
  cursor: default;
  pointer-events: none;
}

/* tab */
.fxcal-pager__item {
  flex-grow: 1;
  padding: 0 5px;
}
.fxcal-pager__item__button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 1px solid #dde0e5;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background-color: #f4f9fb;
  color: #313942;
  line-height: 1.4;
  text-align: center;
}
.fxcal-pager__item__button {
  padding: 1em 1.2em;
  font-size: 1.4rem;
  font-weight: 700;
}
.is-current > .fxcal-pager__item__button {
  background-color: #fff;
}
.is-current > .fxcal-pager__item__button {
  border-bottom: none;
  box-shadow: 0 1px 0 0 #fff;
}
.is-current > .fxcal-pager__item__button span {
  color: #024f95;
}

.fxcal-pager__item__button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 5px 5px 0 0;
  background-color: #024f95;
  content: "";
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
:not(.is-current) > .fxcal-pager__item__button::after {
  visibility: hidden;
}

@media (min-width: 768px) {
  .fxcal-pager__link--prev::after,
  .fxcal-pager__link--next::after {
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
  }
  .fxcal-pager__item__button {
    padding: 1em 1.2em;
    font-size: 1.8rem;
  }
}


/* searchcontent/dropkick
++++++++++++++++++++++++++++++++++++++++ */
.searchcontent {
  display: block;
  padding: 15px 0;
  border-radius: 3px;
  background-color: #f4f9fb;
}
.searchcontent > table,
.searchcontent > * > tbody,
.searchcontent > * > * > tr,
.searchcontent > * > * > * > td {
  display: block;
}
.searchcontent > * > * > tr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.searchcontent > * > * > * > td {
  flex-grow: 1;
  flex-shrink: 0;
  white-space: nowrap;
  padding-top: 5px;
  padding-bottom: 5px;
}
.searchcontent > * > * > * > td > p {
  margin: 0;
  padding: 0;
}

.searchcontent .searchitem {
  width: 28%;
  max-width: 8em;
  padding-left: 15px;
  font-weight: bold;
}
.searchcontent .choices {
  width: 72%;
  padding-right: 15px;
}
.searchcontent .country-name,
.searchcontent .important-stars {}

@media (min-width: 768px) {
  .searchcontent {
    padding: 20px 0;
  }
  .searchcontent td {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .searchcontent .searchitem {
    width: 10%;
    padding-left: 20px;
  }
  .searchcontent .choices {
    width: 40%;
    padding-right: 20px;
  }
}

/* dropkick.js ++++++++++++++++ */
select[data-dkcacheid] {
  display: none;
}
.dk-select,
.dk-select *,
.dk-select *::before,
.dk-select *::after {
  box-sizing: border-box;
}
/* wrap */
.dk-select {
  position: relative;
  cursor: pointer;
}
.dk-select {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0;
  border: 1px solid #dce3e9;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
}
.dk-select::before,
.dk-select::after {
  position: absolute;
  display: block;
  content: "";
}
.dk-select::before {
  top: calc(50% - 2px);
  right: 10px;
  z-index: 5;
  border: 5px solid transparent;
  border-top-color: #465059;
}
.dk-select::after {
  top: 0;
  right: 0;
  z-index: 2;
  width: 30px;
  height: 100%;
  border-left: 1px solid #dce3e9;
  background-color: #f3f4f6;
}
/* selected */
.dk-selected {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 30px 0 20px;
  line-height: 1;
}
/* options */
.dk-select-options {
  position: absolute;
  left: -1px;
  right: -1px;
  z-index: 10;
  overflow-y: auto;
  display: none;
  min-width: 100%;
  max-height: 50vh;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #dce3e9;
  background-color: #fff;
}
.dk-select-open-up .dk-select-options,
.dk-select-open-down .dk-select-options {
  display: block;
}
.dk-select-open-up .dk-select-options,
.dk-select-open-down .dk-select-options {
  top: calc(100% - 3px);
}
/* option */
.dk-option {
  display: flex;
  align-items: center;
  padding-left: 20px;
  height: 35px;
  line-height: 1;
}
.dk-select-options .dk-option-highlight {
  background-color: #3297fd;
  color: #fff;
}
.dk-select-options .dk-option-disabled {
  color: #BBBBBB;
  background-color: #dce3e9;
}
.dk-option-selected {
  background-color: #3297fd;
  color: #fff;
}
.dk-select-options-highlight .dk-option-selected {}

/* flags */
.national-flag.dk-selected,
.national-flag.dk-option {
  position: relative;
  padding-left: 52px;
}
.national-flag.dk-selected::before,
.national-flag.dk-option::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 22px;
  height: 1em;
  margin-top: -0.5em;
  background: no-repeat left center;
  background-size: contain;
  content: "";
}
.national-flag.flag-us::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_us.png);
}
.national-flag.flag-jp::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_jp.png);
}
.national-flag.flag-eu::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_eu.png);
}
.national-flag.flag-ge::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_ge.png);
}
.national-flag.flag-fr::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_fr.png);
}
.national-flag.flag-uk::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_uk.png);
}
.national-flag.flag-au::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_au.png);
}
.national-flag.flag-cn::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_cn.png);
}
.national-flag.flag-nz::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_nz.png);
}
.national-flag.flag-ca::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_ca.png);
}
.national-flag.flag-ch::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_ch.png);
}
.national-flag.flag-za::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_za.png);
}
.national-flag.flag-hk::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_hk.png);
}
.national-flag.flag-in::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_in.png);
}
.national-flag.flag-tu::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_tu.png);
}
.national-flag.flag-mx::before {
  background-image: url(/corp/guide/fxneo/cal/img/flag_mx.png);
}
/* stars */
.star-rating.dk-selected,
.star-rating.dk-option,
.star-rating.dk-selected:hover,
.star-rating.dk-option:hover {
  position: relative;
  padding-left: 52px;
  color: transparent !important;
}
.star-rating.dk-selected::before,
.star-rating.dk-option::before,
.star-rating.dk-selected::after,
.star-rating.dk-option::after {
  position: absolute;
  top: 50%;
  left: 20px;
  height: 1em;
  margin-top: -0.5em;
  background: no-repeat left center;
  background-size: 92px auto;
  content: "";
}
.star-rating.dk-selected::before,
.star-rating.dk-option::before {
  width: 92px;
  background-image: url(/corp/guide/fxneo/cal/img/index_ic01.png);
}
.star-rating.dk-selected::after,
.star-rating.dk-option::after {
  background-image: url(/corp/guide/fxneo/cal/img/index_ic02.png);
}
.star-rating.rating-4::after {
  width: 92px;
}
.star-rating.rating-3::after {
  width: 72px;
}
.star-rating.rating-2::after {
  width: 54px;
}
.star-rating.rating-1::after {
  width: 36px;
}
.star-rating.rating-0::after {
  width: 18px;
}
/* disabled */
.dk-select-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.dk-select-disabled .dk-select-options {
  display: none;
}
.dk-select-disabled .dk-selected:hover,
.dk-select-disabled .dk-selected:focus {
  border-color: inherit;
}
.dk-select-disabled .dk-selected:hover::before,
.dk-select-disabled .dk-selected:focus::before {
  border-top-color: inherit;
}
.dk-select-disabled .dk-selected:hover::after,
.dk-select-disabled .dk-selected:focus::after {
  border-left-color: inherit;
}
.dk-selected-disabled {}


/* calendar
++++++++++++++++++++++++++++++++++++++++ */
/* states */
#calendar-table .even {}
#calendar-table .new-day {}
#calendar-table .day-off {}
#calendar-table .day-off .m-economic-calendar {
  background-color: rgba(220, 220, 220, 0.2);
}
#calendar-table .full-day-off h2 {
  opacity: 0.4;
}
#calendar-table .full-day-off .m-economic-calendar {
  display: none;
}

#calendar-table .new-day.filtered-out {
  display: block;
}
#calendar-table .new-day.filtered-out .m-economic-calendar {
  opacity: 0;
}
#calendar-table .filtered-out {
  display: none;
}

/* border */
#calendar-table .m-economic-calendar {
  border-top-width: 0;
}
#calendar-table .m-heading2 ~ * > .m-economic-calendar {
  border-top-width: 1px;
}
