@charset "UTF-8";

:root {
  --defaultInner: 1100px;
  --mxnGreen: #00a259;
  --lightYellow: #fff8a6;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body>#container {
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

#container {
  height: 100%;
  min-height: 100%;
  position: relative;
}

body {
  color: #000000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 140%;
  letter-spacing: 0.06em;
  font-size: 18px;

}

a:link {
  color: #1a77c5;
  text-decoration: underline;
}

a:hover {
  color: #3399cc;
  text-decoration: none;
  transition: all 0.5s 0s ease;
}

a:visited {
  color: #1a77c5;
  text-decoration: none;
  transition: all 0.5s 0s ease;
}

a[href*="tel:"] {
  cursor: default;
}

p:not(:last-child) {
  margin-bottom: 1em;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: top;
}

/*----------------------------------------
■レイアウト
----------------------------------------*/
header .inner {
  max-width: var(--defaultInner);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}

header .inner .logo {
  width: 184px;
}

header .inner .account_btn_wrap a.btn:link,
header .inner .account_btn_wrap a.btn:visited {
  width: 180px;
  padding: 10px 30px;
  background-color: #ff8a00;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

#footerWrap {
  width: 100%;
  background: #f1f9fd;
  line-height: 1.8;
  letter-spacing: .05rem;
}

#footerWrap #attention h3 {
  margin: 0 0 30px;
}

#footerWrap #attention h3 span {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding: 47px;
}

#footerWrap #attention h3 span::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/atten_ico.png") left center no-repeat;
  background-size: 100%;
  width: 94px;
  height: 85px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

#footerWrap #attention {
  margin: 10px auto;
  background: url(/g/img/beginner/attention.gif) no-repeat 10px 20px;
  background-size: 100px auto;
  padding: 55px 10px 10px 10px;
  width: 100%;
  max-width: 980px;
  font-size: 12px !important;
  box-sizing: border-box;
}

#footerWrap #attention dt {
  font-weight: bold !important;
  margin-bottom: 5px;
  font-size: 14px;
}

#footerWrap #attention dd {
  margin-bottom: 10px;
  margin-left: 0;
  font-size: 14px;
}

#footerWrap #attention a.textlink1 {
  font-size: 10px;
}

#footerWrap #attention2 {
  width: 100%;
  max-width: 980px;
  margin: 10px auto;
  padding-top: 0;
  box-sizing: border-box;
  padding-bottom: 10px;
}

#footerWrap #attention2 a {
  font-size: 16px;

  transition: .3s all;
  font-weight: bold;
  color: #116FBB;
  margin: 0 0 5px;
}

#footerWrap #attention2 a:hover {
  border-bottom: none;
}

#footerWrap #footer {
  width: 100%;
  min-width: inherit;
  background: none;
  padding: 10px 0;
  text-align: center;
  background-color: #ffffff;
}

#footerWrap #attention {
  background: url(/g/general2/img/atten_icon2.png) no-repeat left 15px;
  padding: 100px 10px 10px 10px;
}

section>.inner {
  margin-left: auto;
  margin-right: auto;
}

/*----------------------------------------
■ビジュアル
----------------------------------------*/
.visual {
  width: 100%;
  aspect-ratio: 1366 / 586;
  max-height: 586px;
}

.visual .inner {
  text-align: center;
  position: relative;
  height: 100%;
}

.campaign_attention {
  background-color: #f5f5f5;
  padding: 20px;
  max-width: var(--defaultInner);
  margin: 20px auto;
  font-size: 14px;
  line-height: 140%;
}

.visual .video_btn {
  text-indent: -9999px;
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  right: 5vw;
  bottom: 10px;
  background-image: url(/g/mxn/img/visual/video_btn.png);
  background-image: image-set(url(/g/mxn/img/visual/video_btn.png) 1x, url(/g/mxn/img/visual/video_btn@2x.png) 2x);
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  clip-path: circle(50% at 50% 50%);
  cursor: pointer;
}

.visual .video_btn:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@media(min-width: 1366px) {
  .visual {
    width: 100%;
    aspect-ratio: 2000 / 586;
    height: 586px;

  }

  .visual .inner img {
    display: block;
    height: 586px;
    object-fit: cover;
    width: 100%;
  }

  .video_btn {
    left: 50%;
    transform: translateX(450px);
  }
}

/*----------------------------------------
■特徴
----------------------------------------*/
#sec_features {
  background-color: #00a259;
}

#sec_features .index {
  background-image: url(/g/mxn/img/features/mexico_bg_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}

#sec_features .index>.inner {
  max-width: 1020px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}

#sec_features .index>.inner .pesolman {
  align-self: flex-end;
  margin-bottom: -20px;
}

#sec_features .indexLists {
  max-width: 560px;
  width: 1fr;
}

#sec_features .indexLists li {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #00a259;
  position: relative;
  margin-bottom: 15px;
}

#sec_features .indexLists li:last-child {
  margin-bottom: 0;
}

#sec_features .indexLists li:after {
  content: "";
  display: block;
  height: 30px;
  width: 100%;
  background-color: var(--mxnGreen);
  border-radius: 0 0 8px 8px;
}

#sec_features .indexLists li:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
  width: 19px;
  height: 12px;
  background-image: url(/g/mxn/img/arrow_1.svg);
  background-position: center;
  background-repeat: no-repeat;

}

#sec_features .indexLists li>.inner {
  display: flex;
  align-items: center;
  padding: 15px;
}

#sec_features .indexLists li>.inner .num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.125rem, -0.319rem + 6.1vw, 3.875rem);
  color: #e6002e;
  font-style: italic;
  margin-right: 10px;
  font-weight: bold;
}

#sec_features .indexLists li>.inner .text {
  font-size: clamp(1rem, 0.302rem + 1.74vw, 1.5rem);
  line-height: 130%;
}

#sec_features .indexLists li>.inner .text em {
  display: block;
  font-weight: bold;
}

#sec_features .indexLists li>.inner a:link,
#sec_features .indexLists li>.inner a:visited {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#sec_features>.inner {
  max-width: 1060px;
  padding-bottom: 100px;
}

#sec_features>.inner .box {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  padding: 40px;
  margin-bottom: 20px;
}

#sec_features>.inner .box .num {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e6002e;
  border-radius: 10px 0 0 0;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  padding: 20px;
}

#sec_features>.inner .box>.title {
  font-size: 20px;
  margin-top: 20px;
  display: block;
  text-align: center;
  grid-area: title;
  margin-bottom: 40px;

}

#sec_features>.inner .box .title em {
  font-size: 38px;
  display: block;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.6;
}

/* 特長1 */
#sec_features>.inner .box.features_1 {
  display: grid;
  grid-template-areas:
    "title title"
    "img textarea"
    "img pesolman";
  grid-template-rows: auto auto auto;
  grid-template-columns: 44.3636% 1fr;
  padding-bottom: 0;
}

#sec_features>.inner .box.features_1 .pesolman {
  grid-area: pesolman;
  text-align: right;
}

#sec_features>.inner .box.features_1 .text {
  grid-area: textarea;
  line-height: 140%;
  margin-bottom: 20px;
}

#sec_features>.inner .box.features_1 .img {
  grid-area: img;
  margin-right: 40px;
}

#sec_features>.inner .box.features_1 .img img {
  margin-bottom: 15px;
}

#sec_features>.inner .box.features_1 .img .hukidashi {
  background-color: #fff8a6;
  padding: 15px;
  color: #e6002e;
  text-align: center;
  display: block;
  font-size: 24px;
  position: relative;
  margin-bottom: 20px;
}

#sec_features>.inner .box.features_1 .img .hukidashi:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff8a6;
  height: calc(tan(60deg) * 15px / 2);
  width: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* 特長2 */
#sec_features>.inner .box.features_2 {
  /* padding-bottom: 0; */
}

#sec_features>.inner .box.features_2 .about {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

#sec_features>.inner .box.features_2 .about_text {
  width: 48.9795%;
  max-width: 480px;
  background-color: var(--lightYellow);
  position: relative;
  padding-left: 180px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

#sec_features>.inner .box.features_2 .about_text .title_1 {
  margin-bottom: 10px;
}

#sec_features>.inner .box.features_2 .about_text .text {
  line-height: 140%;
}

#sec_features>.inner .box.features_2 .about_text .pesolman {
  position: absolute;
  bottom: 0;
  left: 10px;
}

#sec_features>.inner .box.features_2 .img {
  width: auto;
  flex: 1;
  text-align: right;
  margin-left: 20px;
}

#sec_features>.inner .box.features_2 .text {
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 140%;
}

#sec_features>.inner .box.features_2 .swap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

#sec_features>.inner .box.features_2 .swap .swap_text {
  width: 48.9795%;
  max-width: 480px;
  background-color: var(--lightYellow);
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sec_features>.inner .box.features_2 .swap .swap_text:after {
  position: absolute;
  right: 10px;
  top: -20px;
  content: "";
  background-image: url(/g/mxn/img/coin.png);
  background-size: contain;
  width: 90px;
  height: 77px;
}

#sec_features>.inner .box.features_2 .swap .swap_text .title_1 {
  text-align: center;
  line-height: 140%;
}

#sec_features>.inner .box.features_2>.pesolman {
  text-align: center;
}

/* 特長3 */
#sec_features>.inner .box.features_3 {
  padding-bottom: 0;
}

#sec_features>.inner .box.features_3 .leverage {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

#sec_features>.inner .box.features_3 .img {
  width: auto;
  flex: 1;
  text-align: right;
  margin-left: 20px;
}

#sec_features>.inner .box.features_3 .leverage_text {
  width: 48.9795%;
  max-width: 480px;
  background-color: var(--lightYellow);
  position: relative;
  padding: 20px;
}

#sec_features>.inner .box.features_3 .leverage_text .title_1 {
  margin-bottom: 10px;
  line-height: 140%;
}

#sec_features>.inner .box.features_3 .leverage_text .text {
  line-height: 140%;
}

#sec_features>.inner .box.features_3 .leverage>.text {
  margin: 50px;
  text-align: center;
  width: 100%;
}

#sec_features>.inner .box.features_3 .leverageBoxes {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#sec_features>.inner .box.features_3 .leverageBoxes .box {
  padding: 0;
  width: 33%;
}

#sec_features>.inner .box.features_3 .leverageBoxes .box img {
  width: 100%;
  max-width: auto;
}

#sec_features>.inner .box.features_3>.pesolman {
  text-align: center;
}

/*----------------------------------------
■スワップポイント
----------------------------------------*/
#sec_howmany_swap .inner {
  padding: 100px 0;
  max-width: var(--defaultInner);
}

#sec_howmany_swap .inner>.title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

#sec_howmany_swap .inner>.title:before {
  content: "";
  background-image: url(/g/mxn/img/coin.png);
  width: 119px;
  height: 102px;
  margin-right: 30px;
}

#sec_howmany_swap .inner>.title:after {
  content: "";
  background-image: url(/g/mxn/img/coin.png);
  width: 119px;
  height: 102px;
  margin-left: 30px;
  transform: scale(-1, 1);
}

#sec_howmany_swap .caption {
  padding: 15px;
  border: 1px solid #000;
  text-align: center;
  margin-bottom: 20px;
}

#sec_howmany_swap .imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

#sec_howmany_swap .imgs .tbl_img {
  width: 50.9090%;
  max-width: 560px;
}

#sec_howmany_swap .imgs .swap_img {
  width: 46.7272%;
  max-width: 514px;
}

#sec_howmany_swap .imgs .attentionList_1 {
  width: 100%;
  margin-top: 20px;
}

/*----------------------------------------
■損をする時
----------------------------------------*/
#sec_lose {
  background-color: var(--mxnGreen);
  padding: 100px 0;
}

#sec_lose>.inner {
  background-color: #fff;
  border-radius: 10px;
  max-width: var(--defaultInner);
  padding: 40px;
  padding-bottom: 0;
}

#sec_lose>.inner>.title {
  text-align: center;
  margin-bottom: 30px;
}

#sec_lose .cont_1 {
  display: grid;
  grid-template-areas:
    "text graph_img"
    "about_losscut graph_img";
  grid-template-rows: auto auto;
  grid-template-columns: 59.1836% 1fr;
}

#sec_lose .cont_1>.text {
  grid-area: text;
  margin-bottom: 50px;
}

#sec_lose .cont_1 .about_losscut {
  grid-area: about_losscut;
  background-color: var(--lightYellow);
  padding: 20px;
  position: relative;
  padding-right: 160px;
}

#sec_lose .cont_1 .about_losscut .title {
  margin-bottom: 15px;
}

#sec_lose .cont_1 .about_losscut .img {
  position: absolute;
  bottom: 0;
  right: 0;
}

#sec_lose .cont_1 .graph_img {
  grid-area: graph_img;
  text-align: right;
  margin-left: 20px;
}

#sec_lose .inner>.text {
  margin: 20px 0;
}

#sec_lose .cont_2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;

}

#sec_lose .cont_2 .text {
  width: 59.1836%;
}

#sec_lose .cont_2 .graph_img {
  margin-left: 20px;
  text-align: right;
}

#sec_lose .cont_2 .attentionList_1 {
  margin-top: 20px;
}

#sec_lose .n_losscut {
  border-radius: 10px 10px 0 0;
  border: 2px solid var(--mxnGreen);
}

#sec_lose .n_losscut .title {
  border-radius: 8px 8px 0 0;
  background-color: var(--mxnGreen);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
}

#sec_lose .n_losscut .text {
  padding: 20px;
  text-align: center;
}

#sec_lose .oneYago {
  margin: 30px 0;
  display: block;
  text-align: center;
}

#sec_lose .rate_graph {
  max-width: 670px;
  margin: auto;
}

#sec_lose .rate_graph .title {
  text-align: center;
  margin-bottom: 5px;
}

#sec_lose .rate_graph .detail {
  border: 1px solid #c0c0c0;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}

#sec_lose .epilogue {
  display: grid;
  grid-template-areas:
    "text pesolman"
    "attentionList pesolman";
  grid-template-rows: auto auto;
  grid-template-columns: 53.0612% 1fr;
  padding-bottom: 0;
  column-gap: 20px;
  margin-top: 20px;
}

#sec_lose .epilogue .text {
  grid-area: text;
}

#sec_lose .epilogue .attentionList_1 {
  grid-area: attentionList;

  padding-bottom: 20px;

}

#sec_lose .epilogue .pesolman {
  grid-area: pesolman;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

/*----------------------------------------
■メキシコペソってどんな通貨？
----------------------------------------*/
#sec_peso {
  padding: 100px 0;
}

#sec_peso .inner {
  background-color: #f5f5f5;
  max-width: 1060px;
  border-radius: 10px;
  padding: 50px 0;
}

#sec_peso .flag {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
  text-align: center;
  height: 93px;
  margin-bottom: 20px;
}

#sec_peso .flag img {
  z-index: 1;
  display: block;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}

#sec_peso .flag:before {
  content: "";
  width: 100%;
  background-image: url(/g/mxn/img/peso/flag_bg.png);
  background-repeat: repeat-x;
  height: 41px;
}

#sec_peso .child_inner {
  max-width: 670px;
  margin: auto;
}

#sec_peso .title {
  text-align: center;
  margin-bottom: 30px;

}

#sec_peso .ranking_title {
  font-size: 26px;
  font-weight: bold;
  position: relative;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 9px 0px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  text-align: center;
  line-height: 130%;
}

#sec_peso .ranking_title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  z-index: 1;
}

#sec_peso .ranking_title:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 20px solid transparent;
  border-top: 20px solid rgba(0, 0, 0, 0.1);
}

#sec_peso .ranking_img {
  margin-top: 20px;
  margin-bottom: 30px;
  display: block;
}

#sec_peso .ranking_img .attentionList_1 {
  margin-top: 10px;
}

#sec_peso .ranking_img .attentionList_1 li {
  text-align: center;
}

#sec_peso .peso_text {
  line-height: 200%;
  margin-bottom: 50px;
}

#sec_peso .maneiku_box {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
}

#sec_peso .maneiku_box .logo {
  text-align: center;
  display: block;
  margin-bottom: 20px;
}

#sec_peso .maneiku_box .reports {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

#sec_peso .toMN {
  text-align: center;
  margin-bottom: 50px;
}

#sec_peso .marketNext {
  display: grid;
  grid-template-areas:
    "app logo"
    "app textarea"
    "app download";
  grid-template-rows: auto auto auto;
  grid-template-columns: 31.1016% 1fr;
  padding-bottom: 0;
}

#sec_peso .marketNext .app {
  grid-area: app;
  margin-right: 30px;
}

#sec_peso .marketNext .logo {
  grid-area: logo;
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
}

#sec_peso .marketNext .logo .text {
  margin-bottom: 10px;
  display: block;
}

#sec_peso .marketNext .textarea {
  grid-area: textarea;
}

#sec_peso .marketNext .download {
  grid-area: download;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

#sec_peso .marketNext .download .qr {
  width: 100px;
}

#sec_peso .marketNext .download .bn_wrap {
  display: flex;
  align-items: center;
  gap: 10px;

  flex: 1;
}

/*----------------------------------------
■外貨預金との違い
----------------------------------------*/
#sec_diff {
  background-color: var(--mxnGreen);
  padding: 100px 0;
}

#sec_diff>.inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  padding-top: 80px;
  max-width: 1060px;
  position: relative;
}

#sec_diff>.inner:before {
  content: "";
  display: block;
  background-image: url(/g/mxn/img/diff/question.png);
  width: 121px;
  height: 121px;
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  margin: auto;
}

#sec_diff>.inner>.title {
  text-align: center;
  margin-bottom: 40px;
}

#sec_diff>.inner>.title .line {
  background: linear-gradient(transparent 50%, #ffc0ee 50%);
}

#sec_diff .diff4_title {
  font-size: 26px;
  font-weight: bold;
  position: relative;
  background-color: #fff;
  padding: 40px;
  box-shadow: 0px 9px 0px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  text-align: center;
  max-width: 670px;
  margin: auto;
  margin-bottom: 40px;
}

#sec_diff .diff4_title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  z-index: 1;
}

#sec_diff .diff4_title:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 20px solid transparent;
  border-top: 20px solid rgba(0, 0, 0, 0.1);
}

#sec_diff .diff_boxes {
  display: grid;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(476px, 1fr));
  margin-bottom: 50px;
}

#sec_diff .diff_boxes .box {
  border: 2px solid var(--mxnGreen);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

#sec_diff .diff_boxes .box>.title {
  background-color: var(--mxnGreen);
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  font-size: 22px;
}

#sec_diff .diff_boxes .box .body {
  padding: 20px;
  display: flex;
  flex: 1;

}

#sec_diff .diff_boxes .box .body .fx {
  border-right: 1px solid #cdcdcd;
  padding-right: 10px;
}

#sec_diff .diff_boxes .box .body .gaika {
  border-left: 1px solid #cdcdcd;
  padding-left: 10px;
}

#sec_diff .diff_boxes .box .body .fx,
#sec_diff .diff_boxes .box .body .gaika {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sec_diff .diff_boxes .box .body .title {
  color: #666666;
  font-size: 20px;
  text-align: center;
  height: 2em;
  display: block;
  margin-bottom: 20px;
}


#sec_diff .diff_boxes .box .body .title .s {
  font-size: 13px;
}

#sec_diff .diff_boxes .box .body .detail {
  text-align: center;

}

#sec_diff .diff_boxes .box .body .fx .detail {
  color: #ff7e00;
  font-weight: bold;
}

#sec_diff .diff_boxes .box .body .gaika .detail {
  font-weight: bold;
}

#sec_diff .about_spread {
  background-color: #0090a5;
  margin-bottom: 20px;
}

#sec_diff .about_spread .inner {
  padding: 40px;
  padding-top: 0;
}

#sec_diff .pesolman_title {
  text-align: center;
}

#sec_diff .about_spread .lead,
#sec_diff .about_safety .lead {
  background-color: rgb(255, 255, 255, 0.75);
  padding: 25px;
  text-align: center;
  margin-bottom: 30px;
}

#sec_diff .about_spread>.inner>.attentionList_1 li,
#sec_diff .about_safety>.inner>.attentionList_1 li {
  color: #fff;
}

#sec_diff .about_spread>.inner>.attentionList_1 li a:link,
#sec_diff .about_spread>.inner>.attentionList_1 li a:visited {
  color: #fff600;
  text-decoration: none;
}

#sec_diff .exBoxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

#sec_diff .exBoxes .box {
  width: 50%;
  background-color: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

#sec_diff .exBoxes .box .title {
  font-size: 22px;
  color: #0090a5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

#sec_diff .exBoxes .gaika.box .head {
  text-align: center;
  border-bottom: 2px dotted #a1a1a1;
  padding-bottom: 20px;
}

#sec_diff .exBoxes .box .body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

#sec_diff .exBoxes .box .body .st {
  font-size: 22px;
}

#sec_diff .exBoxes .box .foot {
  margin-top: auto;
  border-top: 2px dotted #a1a1a1;
  padding: 20px 0;
}

#sec_diff .exBoxes .gaika.box .foot {
  display: flex;
}

#sec_diff .exBoxes .gaika.box .foot .text {
  flex: 1;
}

#sec_diff .exBoxes .gaika.box .foot:before {
  content: "";
  display: block;
  background-image: url(/g/mxn/img/diff/attention.png);
  width: 47px;
  height: 42px;
  margin-right: 10px;
}

#sec_diff .exBoxes .fx.box .head {
  text-align: center;
}

#sec_diff .exBoxes .fx.box .head em {
  font-size: 28px;
  font-weight: bold;
  color: #ff7e00;
  display: block;
  margin-bottom: 10px;
}

#sec_diff .about_safety {
  background-color: #0090a5;
  margin-bottom: 20px;
}

#sec_diff .about_safety .inner {
  padding: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

#sec_diff .about_safety .gaika.box .body .text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  line-height: 140%;
}

#sec_diff .about_safety .fx.box .body .text {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  line-height: 140%;
  color: #ff7e00;
}

#sec_diff .epilogue.pesolman {
  text-align: center;
  margin-top: 40px;
}

/*----------------------------------------
■キャンペーン
----------------------------------------*/
#sec_campaign>.inner {
  padding: 100px 0;
  padding-bottom: 50px;
  max-width: var(--defaultInner);
}

#sec_campaign>.inner>.title {
  text-align: center;
  margin-bottom: 50px;
}

#sec_campaign .swap_campaign {
  margin-bottom: 30px;
}

#sec_campaign .swap_campaign .detail {
  background-color: #000;
  color: #fff;
  padding: 40px;
}

#sec_campaign .swap_campaign .detail .title {
  text-align: center;
  display: block;
  margin-bottom: 40px;

}

#sec_campaign .swap_campaign .detail .title .line {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

#sec_campaign .swap_campaign .detail .text {
  font-size: 14px;
}

#sec_campaign .swap_campaign .detail .text a:link,
#sec_campaign .swap_campaign .detail .text a:visited {
  color: #fff600;
  text-decoration: none;
}

#sec_campaign .risk {
  background-color: #f7f7f7;
  padding: 40px;
  margin-bottom: 50px;
}

#sec_campaign .risk .risk_dl:not(:last-child) {
  margin-bottom: 50px;
}

#sec_campaign .risk .risk_dl dt {
  font-size: 16px;
  font-weight: bold;
}

#sec_campaign .risk .risk_dl dd {
  font-size: 14px;
}

/*----------------------------------------
■流れ
----------------------------------------*/
#sec_account_step>.inner {
  max-width: 970px;
}

.step_container {
  display: flex;
  justify-content: space-between;
  margin: 100px 0;
  margin-bottom: 50px;
}

.step_info {
  width: calc(100% / 3 - 40px);
  max-width: 270px;
  background: #fff;
  border-radius: 10px;
  padding: 50px 0 20px;
  position: relative;
  box-shadow: 0px 0px 16px -6px rgb(0 0 0 / 22%);
}

.step_info .image img {
  width: 100%;
}

.step_info .read {
  font-size: 1.125rem;
}

.examination {
  width: 40px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.25rem;
  line-height: 40px;
  letter-spacing: 2rem;
  padding-top: 30px;
  background: #50607b;
  position: relative;
  font-size: 25px;
  text-align: center;
  color: #fff;
}


.step_info::after,
.examination::after {
  top: 0;
  bottom: 0;
  right: -23px;
  left: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  border-top: 4px solid #174179;
  border-right: 4px solid #174179;

}

.step_info .text {
  font-size: 0.875rem;
}

.campagin_info img {
  max-width: inherit;
}

#sec_account_step .point_box {
  margin: 0 0 100px;
}

#sec_account_step h2 {
  font-size: 50px;
  margin-top: 122px;
}

#sec_account_step h2 span {
  font-size: 24px;
}

#sec_account_step {
  letter-spacing: normal;
  overflow: hidden;
}

#sec_account_step h2 {
  font-size: 50px;
  text-align: center;
  line-height: 1.4;
  margin: 30px 0;
  color: #203864;
  letter-spacing: .24rem;
}

#sec_account_step h2 span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  padding: 40px 0 0;
}

.step_info:last-of-type:after {
  display: none;
}

#sec_account_step .icon_step {
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  line-height: 1.2;
  top: -60px;
  left: 10px;
  box-sizing: border-box;
}

#sec_account_step .icon_step em {
  font-size: 50px;
}

.step_info .read {
  color: #102955;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.step_info .text {
  padding: 10px;
  line-height: 1.6;
  font-size: 14px;
}

#sec_account_step .point_box {
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.22);
  margin: 0 0 50px;
  border-radius: 10px;
}

#sec_account_step .point_box>.title {
  font-size: 30px;
  background: #174179;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  border-radius: 10px 10px 0 0;
  line-height: 160%;
}

#sec_account_step .point_box>.title em {
  background: #fff;
  padding: 10px;
  font-size: 24px;
  color: #174179;
  font-weight: bold;
  margin: 0 10px;
}

#sec_account_step .point_box>.title .fc_yel {
  color: #ffff66;
}

#sec_account_step .point_box_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 55px 70px 55px;
  border-radius: 0 0 10px 10px;
  background-image: linear-gradient(#f6f6f6 1.5px, transparent 0), linear-gradient(90deg, #f6f6f6 1.5px, transparent 0);
  background-size: 20px 20px;
}

#sec_account_step .point_box_contents .card_box {
  width: 45%;
  background: #f1f9fd;
  padding: 40px;
  text-align: center;
}

#sec_account_step .point_box_contents .plus {
  font-size: 44px;
  font-weight: bold;
  color: #174179;
  display: flex;
  align-items: center;
}

#sec_account_step .point_box_contents .card_box dt {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 30px;
}

#sec_account_step .point_box_contents .card_box dd img {
  display: block;
  margin: 0 auto 20px;
}

#sec_account_step .point_box_contents .point_box_lead {
  background: #fff;
  border: #203864 3px solid;
  padding: 35px 15px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #203864;
  margin: 30px 0 35px;
  width: 100%;
  line-height: 220%;
}

#sec_account_step .point_box_contents .point_box_lead strong {
  font-size: 30px;

  background: linear-gradient(transparent 50%, #edf1f7 50%);
  padding: 0 20px;
}


/*----------------------------------------
キャンペーン
----------------------------------------*/
#sec_features > .inner .box.campaign_box{
    background: #fff;
    border: 12px solid #dee8f2;
    padding-top: 20px;
}
.campaign_box figure{
    margin: 0 0 20px 0;
    text-align: center;
}
.campaign_text_area{
    background-color: var(--lightYellow);
    padding: 20px 30px;
    line-height: 1.8;
}
.campaign_period{
    text-align: center;
}
.campaign_period span.campaign_period-ttl{
    display: block;
    background: #fff;
    border-radius: 24px;
    max-width: 150px;
    margin: 0 auto 8px;
    padding: 0 14px;
    box-sizing: border-box;
    border: 2px solid #e6d733;
}
.ac-menu{
    margin-top: 20px;
}
.ac-menu .ac-menu-label{
    background: #189ebd;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    font-weight: bold;
}
.ac-menu .ac-menu-label::before,
.ac-menu .ac-menu-label::after{
    content: '';
    width: 20px;
    height: 4px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.ac-menu .ac-menu-label::after{
    transition: all .1s;
    width: 4px;
    height: 20px;
    right: 28px;
}
.ac-menu .ac-menu-label.open::after{
    opacity: 0;
    transform: rotate(90deg);
    top: calc(50% - 10px);
}
.ac-menu-detail{
    padding: 20px 14px;
    background: #e7eef0;
    font-size: 16px;
}



/*----------------------------------------
■汎用クラス
----------------------------------------*/
.text_red {
  color: #e6002e;
}

.text_orange {
  color: #ff7e00;
}

.title_1 {
  font-size: 22px;
  font-weight: bold;
  color: #e6002e;
}

.title_2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 120%;
}

.title_3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 120%;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.global_account_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}

a.btn_1:link,
a.btn_1:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #ff8a00;
  box-shadow: 0px 6px 0px 0px #c86c00;
  width: 525px;
  height: 100px;
  color: #fff;
  font-weight: bold;
  font-size: 34px;
  text-decoration: none;
}

.attentionList_1 {
  font-size: 14px;
  color: #5d5d5d;
}

.attentionList_1 li {
  margin-bottom: 5px;
  line-height: 140%;
}

.pc_hide {
  display: none;
}