@charset "utf-8";
/* serv-top.css
 * 各サービストップ共通
++++++++++++++++++++++++++++++++++++++++
* NOTE
++++++++++++++++++++++++++++++++++++++++
- Charset: utf-8
- Return code: LF
++++++++++++++++++++++++++++++++++++++++ */
.fxneotop-main {
  --fxneotop-color: #de9414;
  letter-spacing: 0.025em;
}

/* override ++++++++++++++++ */
@media (min-width: 768px) {
  .l-heading {
    width: 1120px;
    margin: 0 auto;
  }
  .l-main {
    width: 888px;
    margin: 96px auto 0;
  }
}
/* mv ++++++++++++++++ */
.hero-img { overflow: hidden; }
@media (max-width: 767.98px) {
  .hero-img {
    margin-top: -64px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .hero-img {
    margin: 40px auto 24px;
    border-radius: 8px;
  }
}

/* module
++++++++++++++++++++++++++++++++++++++++ */
/* heading ++++++++++++++++ */
.fxneotop-ttl_lv2 {
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.fxneotop-ttl_lv2  small {
  margin-bottom: 3px;
  display: block;
}

/* badge */
.fxneotop-ttlbadge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1px 8px 0;
  width: fit-content;
  border-radius: 100vh;
  background-color: var(--fxneotop-color);
  color: #fff;
  font-style: normal;
}

@media (max-width: 767.98px) {
  .fxneotop-ttlbadge {
    min-height: 20px;
    margin-bottom: 16px;
  }
  .fxneotop-ttl_lv2 {
    padding-bottom: 20px;
  }
  .fxneotop-ttl_lv2 > small {
    font-size: 2rem;
  }
  .fxneotop-ttlbadge {
    min-width: 68px;
    min-height: 20px;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .fxneotop-ttlbadge {
    min-height: 28px;
    padding-top: 2px;
    margin-bottom: 24px;
  }
  .fxneotop-ttl_lv2 {
    padding-bottom: 24px;
  }
  .fxneotop-ttl_lv2 > small {
    font-size: 2.4rem;
  }
  .fxneotop-ttlbadge {
    min-width: 104px;
    font-size: 1.5rem;
  }
}

/* localnav ++++++++++++++++ */
.fxneotop-toc {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 32px;
  background-color: var(--color-light-gray);
}
.fxneotop-toc > dt {
  margin: 0 0 16px;
  padding: 0;
  font-size: 1.8rem;
  text-align: center;
}
.fxneotop-toc > dt > strong {
  color: var(--fxneotop-color);
  font-size: 2.4rem;
  font-weight: bold;
}
.fxneotop-toc > dd {
  margin: 0;
}

.fxneotop-localnav {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  line-height: 1.5;
  list-style: none;
  counter-reset: fxneotop-toc;
}
.fxneotop-localnav > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.fxneotop-localnav > li::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--fxneotop-color);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  counter-increment: fxneotop-toc;
  content: counter(fxneotop-toc);
  pointer-events: none;
}
.fxneotop-localnav > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  padding: 0;
  background-color: #fff;
  text-decoration: none;
}
.fxneotop-localnav > li + li > a {
  box-shadow: inset 0 1px 0 0 var(--color-rich-black-010);
}
.fxneotop-localnav > li > a::after {
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
	background: no-repeat center/contain;
  background-image: url(/assets/images/icon/link/icon-link-pagelink.svg);
	content: "";
}

@media (hover: hover) {
  .fxneotop-localnav > li > a:hover {
    background-color: #ebf1f7;
  }
}
@media (max-width: 767.98px) {
  .fxneotop-toc {
    margin: 72px -16px;
    padding-top: 24px;
    padding: 24px 16px 16px;
  }
  .fxneotop-localnav > li::before {
    left: 16px;
  }
  .fxneotop-localnav > li > a {
    padding-right: 40px;
    padding-left: 56px;
  }
  .fxneotop-localnav > li > a::after {
    right: 12px;
  }
}
@media (min-width: 768px) {
  .fxneotop-toc {
    margin: 96px auto;
    padding: 24px;
  }
  .fxneotop-localnav > li::before {
    left: 20px;
  }
  .fxneotop-localnav > li > a {
    padding-right: 60px;
    padding-left: 60px;
  }
  .fxneotop-localnav > li > a::after {
    right: 20px;
  }
}

/* cta ++++++++++++++++ */
@media (max-width: 767.98px) {
  .fxneotop-cta .m-cta_panel {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .fxneotop-cta .m-cta_panel {
    margin-top: 96px;
    margin-bottom: 96px;
  }
}

/* appeal ++++++++++++++++ */
.fxneotop-appeal > ._ttl {
  color: var(--fxneotop-color);
  text-align: center;
  line-height: 1.5;
  line-height: 1;
}
.fxneotop-appeal > ._ttl > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 106px;
  margin: 0 auto;
  padding: 1px 4px 0;
  border-radius: 2px;
  box-shadow: 0 0 0 1px currentColor inset;
  line-height: 1;
  letter-spacing: normal;
  font-style: normal;
}
.fxneotop-appeal > ._ttl > span {
  display: block;
}
.fxneotop-appeal > ._ttl > span > b {
}
.fxneotop-appeal > ._ttl > strong {
  display: block;
  font-weight: normal;
  letter-spacing: -0.05em;
}
.fxneotop-appeal > dl {
  text-align: center;
}
.fxneotop-appeal > dl,
.fxneotop-appeal > dl > dt,
.fxneotop-appeal > dl > dd {
  margin: 0;
  padding: 0;
}
.fxneotop-appeal > dl > dt > img {
  display: block;
  margin: 0 auto;
}
.fxneotop-appeal > dl > dd {
  color: #848484;
}

@media (max-width: 767.98px) {
  .fxneotop-appeal > ._ttl {
    margin: 32px auto 0;
    font-size: 2.4rem;
  }
  .fxneotop-appeal > ._ttl > i {
    min-height: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .fxneotop-appeal > ._ttl > span > b {
    font-size: 2.8rem;
  }
  .fxneotop-appeal > ._ttl > strong {
    font-size: 8rem;
  }
  .fxneotop-appeal > dl > dt > img {
    width: 87px;
  }
  .fxneotop-appeal > dl > dd {
    margin-top: 8px;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .fxneotop-appeal > ._ttl {
    margin: 8px auto 0;
    font-size: 3.2rem;
  }
  .fxneotop-appeal > ._ttl > i {
    min-height: 24px;
    margin-bottom: 12px;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .fxneotop-appeal > ._ttl > span > b {
    font-size: 3.6rem;
  }
  .fxneotop-appeal > ._ttl > strong {
    font-size: 8.8rem;
  }
  .fxneotop-appeal > dl > dt > img {
    width: 138px;
  }
  .fxneotop-appeal > dl > dd {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}

/* infobox ++++++++++++++++ */
.fxneotop-infobox {
  margin: 0 auto;
}

.fxneotop-infobox ._link a {
  text-decoration: none;
}

.fxneotop-infobox ._note {
  color: #848484;
}

@media (max-width: 767.98px) {
  .fxneotop-infobox {
    max-width: 640px;
  }
  .fxneotop-infobox ._note {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .fxneotop-infobox {
    text-align: center;
  }
  .fxneotop-infobox.-tal {
    text-align: left;
    max-width: 640px;
  }
  .fxneotop-infobox ._note {
    font-size: 1.4rem;
  }
}


/* content
 * 理由
++++++++++++++++++++++++++++++++++++++++ */
/* tool ++++++++++++++++ */

/* appli */
.fxneotop-app > ._figure {
  position: relative;
  display: block;
  margin: 0;
}
.fxneotop-app > ._figure > picture {
  display: block;
}
.fxneotop-app > ._figure > ._movie {
  position: absolute;
  line-height: 0;
}

.fxneotop-app > ._logo {
  margin: 0;
  text-align: center;
}
.fxneotop-app > ._logo > img {
  max-width: 240px;
}

@media (max-width: 767.98px) {
  .fxneotop-app > ._figure {
    margin-top: 24px;
    margin-right: -16px;
    margin-left: -16px
  }
  .fxneotop-app > ._figure > ._movie {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 53.8889%
  }

  .fxneotop-app > ._logo {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  .fxneotop-app {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 738px;
    margin: 40px auto 72px;
  }

  .fxneotop-app > ._figure {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 332px;
    margin: 0 0 0 auto;
  }
  .fxneotop-app > ._figure > ._movie {
    top: 0;
    left: 16px;
    width: 182px;
  }

  .fxneotop-app > ._logo {
    width: 328px;
    margin-top: 24px;
  }
}

/* device (SP slider) */
.fxneotop-device {
  display: block;
  background-color: #f7f7f7;
}
.fxneotop-device > h3 {
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-align: center;
}
.fxneotop-device > figure {
  display: block;
  margin: 24px 0 0;
  padding: 0;
}
.fxneotop-device > figure > ul,
.fxneotop-device > figure > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fxneotop-device ._card {
  box-sizing: border-box;
  display: grid;
  border-radius: 8px;
  background-color: #fff;
}
.fxneotop-device ._card img {
  max-width: 100%;
}
.fxneotop-device ._card > h4 {
  margin: 24px 0;
  padding: 0;
  line-height: 1;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.fxneotop-device ._card > div {
  order: -1;
}
.fxneotop-device ._card > p {
  margin: 0;
  word-break: keep-all;
  text-align: center;
  font-size: 1.4rem;
}

@media (max-width: 767.98px) {
  .fxneotop-device * {
    margin: 0;
    padding: 0;
  }
  .fxneotop-device {
    margin: 40px -16px 72px;
    padding: 24px 0 0;
  }
  .fxneotop-device > h3 {
    font-size: 1.8rem;
  }

  .fxneotop-device ._card {
    min-height: 340px;
    padding: 24px 10px;
  }
  .fxneotop-device ._card > * {
    opacity: 1;
    transition: opacity 0.6s ease;
  }
  .fxneotop-device ._card:not(.swiper-slide-active) > * {
    opacity: 0;
  }

  .fxneotop-device ._card.swiper-slide {
    height: auto;
  }

  .fxneotop-device .swiper-pagination {
    position: static;
    inset: auto;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fxneotop-device .swiper-pagination-bullet {
    position: relative;
    width: 48px;
    height: 42px;
    margin: 0 !important;
    padding: 0;
    border-radius: 0;
    background: none;
    opacity: 1;

    display: block;
  }
  .fxneotop-device .swiper-pagination-bullet::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border: 1px solid var(--fxneotop-color);
    background-color: transparent;
    content: "";
  }
  .fxneotop-device .swiper-pagination-bullet-active::before {
    background-color: var(--fxneotop-color);
  }
}
@media (min-width: 768px) {
  .fxneotop-device {
    margin: 48px auto 96px;
    padding: 32px 24px 24px;
    border-radius: 8px;
  }
  .fxneotop-device > h3 {
    font-size: 2.4rem;
  }

  .fxneotop-device > figure {
    display: grid;
    gap: 0 24px;
    grid-template-columns: repeat(3, min-content);
  }
  .fxneotop-device > figure > ul {
    display: contents;
  }
  .fxneotop-device ._card {
    width: 264px;
    padding: 32px 10px 24px;
  }

  .fxneotop-device .swiper-pagination {
    display: none;
  }
}

/* spread ++++++++++++++++ */

/* spreadlist */
.fxneotop-spreadlist {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.fxneotop-spreadlist > dl,
.fxneotop-spreadlist > dl > dt,
.fxneotop-spreadlist > dl > dd {
  margin: 0;
  padding: 0;
}
.fxneotop-spreadlist > dl > dt {
  text-align: center;
}
.fxneotop-spreadlist > dl > dt > i {
  transform: translateX(1px);
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.25em;
  font-size: 1.6rem;
}
.fxneotop-spreadlist > dl > dd {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #465059;
  line-height: 1;
}
.fxneotop-spreadlist > dl .value {
  letter-spacing: -0.025em;
  text-indent: -0.025em;
}
.fxneotop-spreadlist > dl .unit {
  margin-left: 4px;
}

.fxneotop-spreadlist > ._primary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fxneotop-spreadlist > ._primary .value {
  font-weight: bold;
}

.fxneotop-spreadlist > ._item {
  border-radius: 8px;
  box-shadow: 0 0 0 1px #dde0e5 inset;
}

@media (max-width: 767.98px) {
  .fxneotop-spreadlist {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .fxneotop-spreadlist > dl .unit {
    font-size: 2rem;
  }

  .fxneotop-spreadlist > ._primary dd {
    margin-left: 24px;
  }
  .fxneotop-spreadlist > ._primary .value {
    font-size: 6.4rem;
  }

  .fxneotop-spreadlist > ._item {
    padding: 8px 12px;
  }
  .fxneotop-spreadlist > ._item dd {
    margin-top: 4px;
    padding-left: 4px;
  }
  .fxneotop-spreadlist > ._item .value {
    font-size: 4.8rem;
  }
}
@media (min-width: 768px) {
  .fxneotop-spreadlist {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .fxneotop-spreadlist > ._primary > dt > i {
    font-size: 1.8rem;
  }
  .fxneotop-spreadlist > ._primary dd {
    margin-left: 26px;
  }
  .fxneotop-spreadlist > ._primary .value {
    font-size: 8.8rem;
  }
  .fxneotop-spreadlist > ._primary .unit {
    font-size: 3.6rem;
  }

  .fxneotop-spreadlist > ._item {
    padding: 12px 16px;
  }
  .fxneotop-spreadlist > ._item .value {
    font-size: 5.6rem;
  }
  .fxneotop-spreadlist > ._item .unit {
    font-size: 2.8rem;
  }
}

/* swappoint ++++++++++++++++ */
.fxneotop-swap {
  max-width: 382px;
  margin: 0 auto;
}
.fxneotop-swap > dl,
.fxneotop-swap > dl > dt,
.fxneotop-swap > dl > dd {
  margin: 0;
  padding: 0;
}
.fxneotop-swap > dl > dt {
  letter-spacing: normal;
  text-align: center;
}
.fxneotop-swap > dl > dt > i {
  transform: translateX(1px);
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.25em;
  font-size: 1.6rem;
}
.fxneotop-swap > dl > dd {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #465059;
  line-height: 1;
}
.fxneotop-swap > dl .value {
  letter-spacing: -0.025em;
  text-indent: -0.025em;
  font-weight: bold;
}
.fxneotop-swap > dl .unit {
  margin-left: 2px;
}

.fxneotop-swap > ._item {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fxneotop-swap > ._item + ._item {
  box-shadow: 0 1px 0 0 #dde0e5 inset;
}

.fxneotop-swap > dl > dt {
  width: 152px;
}

.fxneotop-swap > ._item .value {
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .fxneotop-swap > ._item {
    padding: 16px 0;
  }
  .fxneotop-swap > ._item .value {
    font-size: 6.4rem;
  }
  .fxneotop-swap > ._item .unit {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .fxneotop-swap > ._item {
    padding: 20px 0;
  }
  .fxneotop-swap > ._item > dt > i {
    font-size: 1.8rem;
  }
  .fxneotop-swap > ._item .value {
    font-size: 8rem;
  }
  .fxneotop-swap > ._item .unit {
    font-size: 2.8rem;
  }
}

/* deposit ++++++++++++++++ */

.fxneotop-depositsubttl {
  color: var(--fxneotop-color);
  text-align: center;
  font-weight: bold;
}

.fxneotop-depositsummary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  color: #465059;
  line-height: 1.5;
  letter-spacing: normal;
}
.fxneotop-depositsummary .value {
  display: inline-block;
  line-height: 1;
  letter-spacing: -0.025em;
  text-indent: -0.025em;
  
  font-weight: bold;
}
.fxneotop-depositsummary .unit {
  margin-left: 2px;
}
.fxneotop-depositsummary b {
  width: 100%;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767.98px) {
  .fxneotop-depositsubttl {
    margin-bottom: 0;
    font-size: 1.8rem;
  }

  .fxneotop-depositsummary .value {
    padding-left: 0.55em;
    font-size: 6.4rem;
  }
  .fxneotop-depositsummary .unit {
    padding-bottom: 4px;
    font-size: 2rem;
  }
  .fxneotop-depositsummary b {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .fxneotop-depositsubttl {
    margin-top: 40px;
    font-size: 2.4rem;
  }

  .fxneotop-depositsummary .value {
    padding-left: 0.4em;
    font-size: 8.8rem;
  }
  .fxneotop-depositsummary .unit {
    padding-bottom: 4px;
    font-size: 3.6rem;
  }
  .fxneotop-depositsummary b {
    font-size: 3.6rem;
  }
}

/* depositlist */
.fxneotop-depositlist {
  margin: 0 auto;
}

.fxneotop-depositlist > dl,
.fxneotop-depositlist > dl > dt,
.fxneotop-depositlist > dl > dd {
  margin: 0;
  padding: 0;
}
.fxneotop-depositlist > dl > dt {
  letter-spacing: normal;
  text-align: center;
}
.fxneotop-depositlist > dl > dt > i {
  transform: translateX(1px);
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.25em;
  font-size: 1.6rem;
}
.fxneotop-depositlist > dl > dd {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #465059;
  line-height: 1;
}

.fxneotop-depositlist > dl .roughly {
}
.fxneotop-depositlist > dl .value {
  letter-spacing: -0.025em;
  text-indent: -0.025em;
  font-weight: bold;
}
.fxneotop-depositlist > dl .roughly {
  margin-right: 2px;
}
.fxneotop-depositlist > dl .unit {
  margin-left: 2px;
}
.fxneotop-depositlist > ._item .value {
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .fxneotop-depositlist {
    max-width: 382px;
  }
  .fxneotop-depositlist > ._item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  }
  .fxneotop-depositlist > dl > dt {
    width: 160px;
  }
  .fxneotop-depositlist > dl > dd {
    padding-right: 24px;
    padding-bottom: 8px;
  }
  .fxneotop-depositlist > ._item + ._item {
    box-shadow: 0 1px 0 0 #dde0e5 inset;
  }

  .fxneotop-depositlist > ._item .value {
    font-size: 4rem;
  }
  .fxneotop-depositlist > ._item .roughly,
  .fxneotop-depositlist > ._item .unit {
    padding-bottom: 6px;
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .fxneotop-depositlist {
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    margin-right: auto;
  }
  .fxneotop-depositlist > ._item {
    padding: 0;
    width: 266px;
  }
  .fxneotop-depositlist > ._item + ._item {
    box-shadow: 1px 0 0 0 #dde0e5 inset;
  }

  .fxneotop-depositlist > ._item > dt > i {
    font-size: 1.8rem;
  }
  .fxneotop-depositlist > ._item > dt {
    margin-bottom: 2px;
  }
  .fxneotop-depositlist > ._item .value {
    font-size: 6.4rem;
  }
  .fxneotop-depositlist > ._item .roughly,
  .fxneotop-depositlist > ._item .unit {
    padding-bottom: 8px;
    font-size: 2.8rem;
  }
}

/* commission ++++++++++++++++ */
.fxneotop-commissionlist {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: end;
  max-width: 320px;
  margin: 0 auto;
}

.fxneotop-commissionlist > ul,
.fxneotop-commissionlist > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fxneotop-commissionlist > ul > li + li {
  margin-top: 8px;
}

.fxneotop-commissionlist > p {
  transform: translateY(14%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  color: #465059;
  font-weight: bold;
}
.fxneotop-commissionlist > p .value {
  line-height: 1;
}
.fxneotop-commissionlist > p .unit {
  margin-left: -0.1em;
  font-size: 5.6rem;
}

@media (max-width: 767.98px) {
  .fxneotop-commissionlist {
    margin-top: 24px;
  }
  .fxneotop-commissionlist > p .value {
    font-size: 14.4rem;
  }
}
@media (min-width: 768px) {
  .fxneotop-commissionlist {
    margin-top: 40px;
  }
  .fxneotop-commissionlist > p .value {
    font-size: 15.2rem;
  }

}


/* content
 * 魅力
++++++++++++++++++++++++++++++++++++++++ */

/* hours ++++++++++++++++ */
[id="hours"] > ._figure {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767.98px) {
  [id="hours"] > ._figure {
    width: 224px;
  }
}
@media (min-width: 768px) {
  [id="hours"] > ._figure {
    width: 280px;
  }
}

/* profit ++++++++++++++++ */
[id="profit"] > figure {
  max-width: 460px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  [id="profit"] > figure {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  [id="profit"] > figure {
    margin-top: 40px;
  }
}

/* support ++++++++++++++++ */
.fxneotop-support {
  max-width: 616px;
  margin: 0 auto;
}

/* call */
.fxneotop-call {
  width: 288px;
  margin: 0 auto;
  color: #465059;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.fxneotop-call > ._tel {
  margin: 0;
  padding: 8px 12px 14px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px currentColor inset;
}
.fxneotop-call > ._tel > dt {
  margin: 0;
  padding: 16px 0 8px;
}
.fxneotop-call > ._tel > dt ~ dt {
  box-shadow: 0 1px 0 0 currentColor inset;
}
.fxneotop-call > ._tel > dd {
  margin: 0;
  padding: 0 0 8px;
  font-family: Roboto;
  font-size: 2.8rem;
}
.fxneotop-call > ._tel > dd > b {
  font-size: 3.6rem;
}

.fxneotop-call > ._datetime {
  margin: 16px 0 0;
}

/* emblem */
.fxneotop-emblem {
  display: grid;
  width: 288px;
  margin: 0 auto;
  color: #af881b;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.fxneotop-emblem > dt {
  grid-column: 1 / -1;
  margin: 0 0 16px;
}
.fxneotop-emblem > dd {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  min-height: 40px;
  margin: 0 auto;
  padding: 1px 8px 0;
  border-radius: 8px;
  box-shadow: 0 0 0 1px currentColor inset;
}

@media (max-width: 767.98px) {
  .fxneotop-call {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .fxneotop-support {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    gap: 0 40px;
    margin-top: 40px;
  }
}

/* conservation ++++++++++++++++ */
.fxneotop-safety {
  max-width: 840px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .fxneotop-safety {
    margin-top: 24px;
  }
  .fxneotop-safety > p {
    margin: 16px auto;
  }
}
@media (min-width: 768px) {
  .fxneotop-safety {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    margin-top: 40px;
  }
  .fxneotop-safety p {
    margin: 0;
  }
}

/* demo ++++++++++++++++ */

/* figure */
.fxneotop-demo > ._figure {
  position: relative;
  display: block;
  margin: 0;
}
.fxneotop-demo> ._figure > picture {
  display: block;
  margin: 0 auto;
}
.fxneotop-demo > ._figure > ._movie {
  position: absolute;
  line-height: 0;
}

.fxneotop-demo ._download {
  margin: 0 auto;
  text-align: center;
}

.fxneotop-demo ._download > dt,
.fxneotop-demo ._download > dd {
  margin: 0;
}
.fxneotop-demo ._download > dt > img {
  width: 240px;
}


@media (max-width: 767.98px) {
  .fxneotop-demo > ._figure {
    margin-top: 24px;
    margin-right: -16px;
    margin-left: -16px;
  }
  .fxneotop-demo> ._figure > picture {
    width: 68.8888%;
  }
  .fxneotop-demo > ._figure > ._movie {
    top: 0;
    left: 50%;
    transform: translate(-50.5%, -0.5%);
    width: 55%;
  }

  .fxneotop-demo ._download {
    width: 240px;
    margin-top: 8px;
  }
  .fxneotop-demo ._download > dt > p {
    display: none;
  }

  .fxneotop-demo ._download > dd {
    margin-top: 24px;
  }
  .fxneotop-demo ._download > dd > img {
    display: none;
  }
}
@media (min-width: 768px) {
  .fxneotop-demo {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: start;
    width: 668px;
    margin: 31px auto 24px;
  }
  .fxneotop-demo > p {
    line-height: 1;
  }
  .fxneotop-demo > p + p {
    line-height: 1.75;
  }
  .fxneotop-demo > ._figure {
    width: 248px;
  }
  .fxneotop-demo> ._figure > picture {
    width: 248px;
  }
  .fxneotop-demo > ._figure > ._movie {
    top: 0;
    left: 50%;
    transform: translate(-50.5%, -0.5%);
    width: 198px;
  }

  .fxneotop-demo ._download {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    width: 360px;
    margin-top: 40px;
  }
  .fxneotop-demo ._download > dt {
    grid-column: 1 / -1;
  }

  .fxneotop-demo ._download > dt > p {
    margin: 24px auto 40px;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .fxneotop-demo ._download > dd > img {
    display: block;
    padding: 0 16px 24px;
  }

}


/* 
++++++++++++++++++++++++++++++++++++++++ */
/*  ++++++++++++++++ */

@media (max-width: 767.98px) {
}
@media (min-width: 768px) {
}


/* 
++++++++++++++++++++++++++++++++++++++++ */
/*  ++++++++++++++++ */
