@charset "UTF-8";
/*------------------------------------------------------------
	Default
------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap);
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: "Quicksand","Noto Sans Japanese",  'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

b, strong, .bold {
  font-family: "Quicksand","Noto Sans Japanese", 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

/* IE11だけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", "メイリオ", Meiryo, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #000;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*------------------------------------------------------------
	Top page
------------------------------------------------------------*/
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .wrapper {
    display: block;
  }
}

.l_content {
  width: calc(100% - 240px);
  overflow: hidden;
  background-color: #F6F9FC;
  position: relative;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .l_content {
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 767px) {
  .l_content {
    width: 100%;
    padding: 0 0 25px 0;
  }
  .url_text {
    overflow-y:scroll;
  }
}

.l_content__head {
  height: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 15px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_content__head {
    display: none;
  }
}

.l_content__head:before {
  content: '';
  width: 150%;
  height: 1px;
  background-color: #EEF0F3;
  position: absolute;
  right: 0;
  bottom: 0;
}

.l_content__head__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l_content__head__nav li a {
  display: block;
  margin: 10px 15px;
  text-align: center;
}

.l_content__head__nav li a img {
  max-width: 100%;
  height: 20px;
}

.l_content__head__nav li a.has-noti {
  position: relative;
}

.l_content__head__nav li a.has-noti .number {
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
  color: #fff;
  width: 15px;
  height: 15px;
  text-align: center;
  display: inline-block;
  background-color: #F3757E;
  line-height: 15px;
  border-radius: 50%;
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 #f0f0f0, 0 0 0 0 rgba(243, 117, 126, 0.7);
  box-shadow: 0 0 0 0 #f0f0f0, 0 0 0 0 rgba(243, 117, 126, 0.7);
  top: -8px;
  right: 3px;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0.33, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0.33, 0, 1);
}

.l_content__head__nav li a:hover .number {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.l_content__head__nav li a .text {
  display: block;
  font-size: 1.1rem;
  color: #151643;
  text-align: center;
  line-height: 17px;
}

@-webkit-keyframes pulse {
  to {
    -webkit-box-shadow: 0 0 0 10px transparent, 0 0 0 10px rgba(243, 117, 126, 0);
    box-shadow: 0 0 0 10px transparent, 0 0 0 10px rgba(243, 117, 126, 0);
  }
}

@keyframes pulse {
  to {
    -webkit-box-shadow: 0 0 0 10px transparent, 0 0 0 10px rgba(243, 117, 126, 0);
    box-shadow: 0 0 0 10px transparent, 0 0 0 10px rgba(243, 117, 126, 0);
  }
}

main {
  display: block;
}

.c_footer {
  padding-left: 60px;
  padding-right: 60px;
  background-color: #F6F9FC;
  padding-bottom: 45px;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .c_footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .c_footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 80px;
  }
}

.c_footer__gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .c_footer__gr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c_footer__text {
  font-size: 1.2rem;
  line-height: 18px;
  font-family: "Quicksand", sans-serif;
  color: #222222;
}

.c_footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .c_footer__right {
    margin-bottom: 40px;
  }
}

.c_footer__right li {
  margin-left: 30px;
}

.c_footer__right li a {
  line-height: 18px;
  font-size: 1.2rem;
  color: #222222;
  font-weight: 300;
}

.c_footer__right li a:hover {
  opacity: 0.7;
}

.nav_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  border-top: 1px solid #C8CED7;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .nav_footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}

.nav_footer li {
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .nav_footer li {
    margin-bottom: 20px;
    margin-right: 20px;
  }
}

.nav_footer li a {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
}

.nav_footer li a:hover {
  opacity: 0.7;
}

.aside_left {
  width: 240px;
  background-color: #151643;
  border-radius: 0 6px 6px 0;
  padding-top: 30px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .aside_left {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .aside_left {
    width: 100%;
    padding-top: 25px;
    border-radius: 0;
  }
}

.aside_left__logo {
  text-align: center;
  padding-bottom: 25px;
}

@media screen and (max-width: 767px){
	.aside_left__logo {
	    text-align: left;
	    padding-left: 10px;
	}
}


.aside_left__logo img {
  width: 132px;
}

.aside_left__top {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #434468;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .aside_left__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: 0;
    margin-right: 0;
    border-bottom: 0;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .aside_left__top.dis_sp {
    display: none;
  }
}

.aside_left__top__text {
  font-size: 1.2rem;
  color: #fff;
  line-height: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .aside_left__top__text {
    margin-bottom: 2px;
    margin-top: 0;
  }
}

.aside_left__top__text .font_q {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .aside_left__top__right {
    text-align: left;
    width: calc(100% - 58px);
    padding-left: 20px;
  }
}

.aside_left__avatar {
  border-radius: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.aside_left__avatar img {
  max-width: 100%;
}

.aside_left__avatar__inside {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
}

.aside_left__avatar__inside.st01 {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.aside_left__avatar__inside.st01:after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 80px;
  top: -75%;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.5);
  -webkit-animation: sheen2 6s ease-in-out infinite;
  animation: sheen2 6s ease-in-out infinite;
}

.aside_left__avatar__inside.st02 {
  top: 11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: orb 1.8s infinite;
  animation: orb 1.8s infinite;
}

.aside_left__avatar__inside.st02:after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 80px;
  top: -75%;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.5);
  -webkit-animation: sheen2 6s ease-in-out infinite;
  animation: sheen2 6s ease-in-out infinite;
}

@media screen and (max-width: 767px) {
  .aside_left__menu {
    display: none;
  }
}

.aside_left__menu ul li a {
  color: #8A8AA1;
  font-size: 1.4rem;
  display: block;
  padding: 15px 20px;
  line-height: 20px;
  position: relative;
  padding-left: 40px;
}

.aside_left__menu ul li a img {
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.aside_left__menu ul li a img.open, .aside_left__menu ul li a img.on {
  display: none;
}

.aside_left__menu ul li a:hover {
  color: #fff;
}

.aside_left__menu ul li a:hover img.off {
  display: none;
}

.aside_left__menu ul li a:hover img.on {
  display: inline-block;
}

.aside_left__menu ul li a.has-icon {
  position: relative;
  cursor: pointer;
}

.aside_left__menu ul li a.has-icon:after {
  content: '';
  width: 12px;
  height: 6px;
  background-image: url("../img/common/icon_menu_bottom_off.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.aside_left__menu ul li a.has-icon.is-open {
  color: #fff;
  background-color: #000034;
}

.aside_left__menu ul li a.has-icon.is-open:after {
  background-image: url("../img/common/icon_menu_bottom_on.svg");
}

.aside_left__menu ul li a.has-icon.is-open img.off {
  display: none;
}

.aside_left__menu ul li a.has-icon.is-open img.open {
  display: inline-block;
}

.aside_left__menu ul li a.has-icon.is-open img.on {
  display: none;
}

.aside_left__menu ul li.active {
  background-color: #000034;
}

.aside_left__menu ul li.active > a {
  color: #fff;
}

.aside_left__menu ul li.active > a img.on {
  display: inline-block !important;
}

.aside_left__menu ul li.active > a img.off {
  display: none;
}

.aside_left__menu ul li.active > a.is-open img.open {
  display: none;
}

.aside_left__menu ul li.active > a.is-open img.on {
  display: inline-block;
}

.aside_left__menu ul.sub-menu {
  display: none;
  background-color: #000034;
}

.aside_left__menu ul.sub-menu li a {
  padding: 10px 10px 10px 40px;
}

@-webkit-keyframes sheen2 {
  0%, 100% {
    top: -75%;
    left: 15%;
    opacity: 0;
    width: 2px;
  }
  1% {
    opacity: 1;
  }
  10% {
    width: 24px;
  }
  11%, 18% {
    top: 75%;
    left: 50%;
    width: 2px;
    opacity: 0;
  }
  20% {
    top: -75%;
    left: 15%;
    opacity: 0;
    width: 1px;
  }
  21% {
    opacity: 0.75;
  }
  30% {
    width: 6px;
  }
  31%, 98% {
    top: 75%;
    left: 50%;
    width: 2px;
    opacity: 0;
  }
}

@keyframes sheen2 {
  0%, 100% {
    top: -75%;
    left: 15%;
    opacity: 0;
    width: 2px;
  }
  1% {
    opacity: 1;
  }
  10% {
    width: 24px;
  }
  11%, 18% {
    top: 75%;
    left: 50%;
    width: 2px;
    opacity: 0;
  }
  20% {
    top: -75%;
    left: 15%;
    opacity: 0;
    width: 1px;
  }
  21% {
    opacity: 0.75;
  }
  30% {
    width: 6px;
  }
  31%, 98% {
    top: 75%;
    left: 50%;
    width: 2px;
    opacity: 0;
  }
}

@-webkit-keyframes orb {
  0%, 100% {
    -webkit-box-shadow: 0 0 5px 2px #fff;
    box-shadow: 0 0 5px 2px #fff;
  }
  50% {
    -webkit-box-shadow: 0 0 24px 4px #fff;
    box-shadow: 0 0 24px 4px #fff;
  }
}

@keyframes orb {
  0%, 100% {
    -webkit-box-shadow: 0 0 5px 2px #fff;
    box-shadow: 0 0 5px 2px #fff;
  }
  50% {
    -webkit-box-shadow: 0 0 24px 4px #fff;
    box-shadow: 0 0 24px 4px #fff;
  }
}

.bell_noti {
  display: none;
}

@media screen and (max-width: 767px) {
  .bell_noti {
    display: block;
    position: absolute;
    top: 25px;
    right: 30px;
    text-align: center;
  }
  .bell_noti .number {
    font-size: 1rem;
    font-family: "Quicksand", sans-serif;
    color: #fff;
    width: 15px;
    height: 15px;
    text-align: center;
    display: inline-block;
    background-color: #F3757E;
    line-height: 15px;
    border-radius: 50%;
    position: absolute;
    -webkit-box-shadow: 0 0 0 0 #f0f0f0, 0 0 0 0 rgba(243, 117, 126, 0.7);
    box-shadow: 0 0 0 0 #f0f0f0, 0 0 0 0 rgba(243, 117, 126, 0.7);
    top: -8px;
    right: 3px;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0.33, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0.33, 0, 1);
  }
  .bell_noti .text {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    display: block;
    line-height: 18px;
  }
}

.menu_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .menu_sp {
    background-color: #151643;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 20px;
    padding-top: 25px;
    display: none;
    z-index: 999999;
  }
}

.menu_sp__logo {
  width: 97px;
}

.menu_sp__logo img {
  max-width: 100%;
}

.menu_sp__close {
  position: absolute;
  top: 25px;
  right: 25px;
}

.menu_sp > ul {
  padding-top: 30px;
}

.menu_sp > ul > li {
  background-color: #000034;
  border-radius: 6px;
  margin-bottom: 6px;
}

.menu_sp > ul > li a {
  font-size: 1.3rem;
  color: #fff;
  line-height: 19px;
  padding: 10px 20px 10px 32px;
  display: block;
  position: relative;
}

.menu_sp > ul > li a img {
  position: absolute;
  left: 10px;
  top: 14px;
}

.menu_sp .sub_menu {
  padding-left: 30px;
  padding-right: 30px;
}

.menu_sp .sub_menu li a {
  border-top: 1px solid #2F2F59;
  padding-left: 0;
  padding-right: 0;
}

.c-tt01 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 27px;
  color: #151643;
}

@media screen and (max-width: 767px) {
  .c-tt01 {
    font-size: 1.6rem;
    color: #222222;
  }
}

.c-tt02 {
  overflow: hidden;
  position: relative;
}

.c-tt02 span {
  display: inline-block;
  background-color: #fff;
  z-index: 2;
  font-size: 1.3rem;
  color: #222222;
  line-height: 19px;
  font-weight: normal;
  position: relative;
  padding-right: 10px;
}

.c-tt02 span:after {
  content: '';
  width: 1000%;
  height: 1px;
  background-color: #EEF0F3;
  position: absolute;
  left: 100%;
  top: 9px;
  z-index: 1;
}

.title_main {
  font-size: 1.8rem;
  line-height: 24px;
  color: #222222;
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .title_main {
    padding-top: 0;
  }
}

.c-tt03 {
  font-size: 1.6rem;
  color: #222222;
  line-height: 25px;
}

@media screen and (max-width: 767px) {
  .c-tt03 {
    font-size: 1.4rem;
  }
}

.c-tt04 {
  font-size: 1.4rem;
  color: #151643;
  line-height: 24px;
}

.c-tt05 {
  font-size: 1.3rem;
  color: #151643;
  line-height: 19px;
}

.c-tt06 {
  font-size: 1.4rem;
  color: #222222;
  line-height: 24px;
}

.c_text01 {
  font-size: 1.4rem;
  line-height: 21px;
  color: #222222;
}

.c_text01 img {
  margin-right: 5px;
}

.c_text02 {
  font-size: 1.2rem;
  line-height: 18px;
  color: #222222;
}

.btn_01 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background-image: -webkit-gradient(linear, right top, left top, from(#CDF8BF), to(#1CC8B2));
  background-image: -webkit-linear-gradient(right, #CDF8BF, #1CC8B2);
  background-image: -o-linear-gradient(right, #CDF8BF, #1CC8B2);
  background-image: linear-gradient(to left, #CDF8BF, #1CC8B2);
  display: block;
  line-height: 36px;
  border-radius: 18px;
  max-width: 207px;
  width: 100%;
  position: relative;
  padding-right: 20px;
}

.btn_01:hover {
  opacity: 0.85;
}

.btn_01:after {
  content: '';
  width: 8px;
  height: 12px;
  background-image: url("../img/common/icon_right_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ボタンの基本的な部分 */
.btn-grad {
  max-width: 240px;
  width: 100%;
  height: 38px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 6px;
  line-height: 38px;
  display: block;
  cursor: pointer;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .btn-grad {
    line-height: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}

/* 発行されるCSS */
.btn-grad {
  background-image: -webkit-gradient(linear, left top, right top, from(#3992E4), color-stop(51%, #245BD4), to(#3992E4));
  background-image: -webkit-linear-gradient(left, #3992E4 0%, #245BD4 51%, #3992E4 100%);
  background-image: -o-linear-gradient(left, #3992E4 0%, #245BD4 51%, #3992E4 100%);
  background-image: linear-gradient(to right, #3992E4 0%, #245BD4 51%, #3992E4 100%);
}

.btn-grad:hover {
  background-position: right center;
}

.btn_more {
  width: 68px;
  line-height: 26px;
  border-radius: 13px;
  background-color: #151643;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Quicksand", sans-serif;
  display: block;
  text-align: center;
  padding-left: 5px;
}

.btn_more:hover {
  background-color: #FACD06;
}

.btn_more img {
  margin-left: 3px;
}

.btn_02 {
  line-height: 26px;
  width: 100%;
  max-width: 184px;
  text-align: center;
  color: #fff;
  background-color: #151643;
  display: block;
  border-radius: 13px;
  margin-right: 20px;
}

.btn_02 img {
  margin-right: 8px;
  vertical-align: sub;
}

.btn_02:hover {
  opacity: 0.7;
}

.btn_02--st {
  max-width: 250px;
  position: relative;
  text-align: left;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .btn_02--st {
    text-align: center;
    max-width: 100%;
  }
}

.btn_02--st img {
  display: none;
}

.btn_02--st:after {
  content: '';
  width: 6px;
  height: 9px;
  background-image: url("../img/common/icon_right_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-link {
  font-size: 1.4rem;
  line-height: 20px;
  font-weight: 500;
  color: #151643;
  display: block;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .btn-link {
    font-size: 1.2rem;
    line-height: 18px;
    margin-bottom: 20px;
  }
}

.btn-link img {
  margin-left: 12px;
}

.btn-link:hover {
  opacity: 0.6;
}

.btn_blue {
  max-width: 240px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
  background-color: #245BD4;
  margin-bottom: 60px;
}

.btn_blue:hover {
  opacity: 0.7;
}

.btn_03 {
  max-width: 132px;
  line-height: 24px;
  background-color: #245BD4;
  border-radius: 12px;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  display: inline-block;
  width: 100%;
}

.button_sideleft {
  position: absolute;
  top: 25px;
  left: 30px;
  z-index: 8;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .button_sideleft {
    display: none;
  }
}

.button_sideleft:hover {
  opacity: 0.7;
}

.button_sideleft img {
  max-width: 100%;
}

.btn_04 {
  max-width: 120px;
  width: 100%;
  display: inline-block;
  line-height: 26px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 13px;
  background-color: #151643;
}

.btn_04:hover {
  opacity: 0.7;
}

.flex_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_mt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .flex_mt {
    margin-bottom: 40px;
  }
  .flex_mt .btn_02:last-child {
    margin-right: 0;
  }
}

.breadcrumb {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.breadcrumb li {
  display: inline;
  font-size: 1rem;
  color: #666666;
}

.breadcrumb li a {
  color: #666666;
}

.breadcrumb li + li:before {
  content: ">";
  display: inline;
  padding: 0 4px;
}

.show_more {
  display: table;
  margin: 0 auto;
  color: #245BD4;
  font-size: 1.4rem;
  line-height: 21px;
  font-weight: 500;
  position: relative;
  margin-top: 10px;
}

.show_more:before {
  content: '';
  width: 11px;
  height: 6px;
  background-image: url("../img/common/icon_show_more.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 5px;
}

.show_more.change:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 50px;
}

.pagination a {
  font-size: 1.4rem;
  color: #151643;
  font-family: "Quicksand", sans-serif;
  padding: 0 10px;
  font-weight: bold;
  margin: 0 10px;
  text-align: center;
  line-height: 30px;
}

.pagination a.active, .pagination a:hover {
  color: #245BD4;
}

.pagination a.pagination__prev, .pagination a.pagination__next {
  position: relative;
  width: 8px;
  height: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pagination a.pagination__prev {
  background-image: url("../img/common/pager_prev.svg");
}

.pagination a.pagination__next {
  background-image: url("../img/common/pager_next.svg");
}

.pagination__prev:hover, .pagination__next:hover {
  border-radius: 0 !important;
  opacity: 0.6;
}

.card-drop {
  position: relative;
}

.card-drop p {
  display: block;
  width: 100%;
  padding: 0 10px;
  line-height: 25px;
  height: 25px;
  text-decoration: none;
  color: #222222;
  background-color: #fff;
  cursor: pointer;
}

.card-drop p.toggle {
  position: relative;
  height: 34px;
  border: 1px solid #CCCCCC;
  background-color: #fff;
  color: #222222;
  font-size: 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  padding: 5px 10px;
  line-height: 23px;
}

.card-drop p.toggle:after {
  content: '';
  background: url(../img/purchase/icon_down_se.svg) no-repeat;
  background-size: cover;
  width: 10px;
  height: 6px;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.card-drop p.toggle.active {
  border-radius: 6px 6px 0 0;
}

.card-drop ul {
  position: absolute;
  top: 100%;
  display: none;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  border: 1px solid #C8CED7;
  border-top: 0;
  padding-bottom: 10px;
}

.card-drop ul li {
  margin: 0 auto;
  width: 100%;
  font-size: 1.3rem;
  color: #222222;
}

.card-drop ul li p:hover {
  background-color: #245BD4;
  color: #fff;
}

.card-drop ul li span.circle {
  width: 10px;
  height: 10px;
  margin-right: 4px;
}

.card-drop ul h3 {
  font-size: 1.3rem;
  line-height: 25px;
  font-weight: bold;
  padding: 0 10px;
}

.text_toolong {
  height: 70px;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.text_toolong.show {
  height: auto;
}

.text_toolong.show:before {
  display: none;
}

.text_toolong:before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff);
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), #fff);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.show_more_text {
  display: table;
  margin: 0 auto;
  color: #245BD4;
  font-size: 1.4rem;
  line-height: 21px;
  font-weight: 500;
  position: relative;
  margin-top: 10px;
  cursor: pointer;
}

.show_more_text:before {
  content: '';
  width: 11px;
  height: 6px;
  background-image: url(../img/common/icon_show_more.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 5px;
}

.show_more_text.change:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.upload_identity {
  display: none;
}

.upload_identity__tt {
  font-size: 1.6rem;
  color: #222222;
  line-height: 24px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 30px;
}

.upload_identity__tt img {
  margin-right: 5px;
}

.radio-button input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: auto !important;
  height: auto !important;
}

.radio-button input:checked + .radio-button__label {
  background-color: #245BD4;
  color: #fff;
}

.radio-button__label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  line-height: 26px;
  font-size: 1.2rem;
  max-width: 200px;
  width: 100%;
  text-align: center;
  border: 1px solid #245BD4;
  border-radius: 6px;
  color: #222222;
  margin-right: 30px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .radio-button__label {
    max-width: 100%;
    line-height: 32px;
  }
  .radio-button__label.sp_mt15 {
    margin-top: 15px;
  }
}

.c_checkbox {
  position: relative;
}

.c_checkbox__label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 18px;
  color: #151643;
}

@media screen and (max-width: 767px) {
  .c_checkbox__label {
    font-size: 1.2rem;
  }
}

.c_checkbox__label.disabled {
  color: #C8CED7;
}

.c_checkbox__label.disabled .c_checkbox__checkmark {
  border: 1px solid #C8CED7;
}

.c_checkbox__label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.c_checkbox__label input:checked ~ .c_checkbox__checkmark:after {
  display: block;
}

.c_checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #151643;
}

.c_checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 10px;
  border: solid #151643;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c_file_group {
  line-height: 2.4;
}

.c_file_group .custom-file-upload-hidden {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.c_file_group .file-upload-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c_file_group .file-upload-input {
  width: calc(100% - 160px);
  float: left;
  border: 1px solid #CCCCCC;
  font-size: 1.4rem;
  color: #222222;
  line-height: 18px;
  padding: 8px 15px;
  font-weight: 500;
  border-right: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 36px;
  border-radius: 6px 0 0 6px;
}

@media screen and (max-width: 767px) {
  .c_file_group .file-upload-input {
    width: calc(100% - 103px);
  }
}

.c_file_group .file-upload-button {
  background-color: #245BD4;
  color: #fff;
  line-height: 1;
  height: 36px;
  width: 160px;
  text-align: center;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 6px 6px 0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .c_file_group .file-upload-button {
    width: 103px;
  }
}

.alert_text {
  font-size: 1.4rem;
  color: #fff;
  max-width: 200px;
  width: 100%;
  padding: 10px;
  line-height: 21px;
  text-align: center;
  background-color: rgba(36, 91, 212, 0.9);
  border-radius: 6px;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 7;
  display: none;
}

@media screen and (max-width: 767px) {
  .alert_text {
    max-width: 90%;
    left: 50%;
    right: auto;
    top: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.nav_fix_bottom {
  position: fixed;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  z-index: 9888;
  display: none;
  -webkit-box-shadow: 3px 0 6px rgba(0, 0, 0, 0.08);
  box-shadow: 3px 0 6px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 767px) {
  .nav_fix_bottom {
    display: block;
  }
}

.nav_fix_bottom__main {
  max-width: 767px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.nav_fix_bottom__main li {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.nav_fix_bottom__main li a {
  display: block;
  width: 100%;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 10px 15px;
}

.nav_fix_bottom__main li a img {
  max-width: 100%;
}

.nav_fix_bottom__main li a img.on {
  display: none;
}

.nav_fix_bottom__main li a .icon {
  height: 18px;
  line-height: 18px;
}

.nav_fix_bottom__main li a .text {
  font-size: 1rem;
  color: #151643;
  line-height: 15px;
  font-weight: 500;
}

.nav_fix_bottom__main li.active img.on {
  display: inline-block;
}

.nav_fix_bottom__main li.active img.off {
  display: none;
}

.nav_link_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
  padding-right: 60px;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .nav_link_01 {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .nav_link_01 {
    padding-right: 0;
    margin-top: 30px;
  }
}

.nav_link_01 li {
  width: 24.5%;
}

@media screen and (max-width: 767px) {
  .nav_link_01 li {
    width: 25%;
  }
}

.nav_link_01 li a {
  display: block;
  background-color: #151643;
  font-size: 1.6rem;
  color: #fff;
  line-height: 48px;
  border-radius: 6px;
  padding: 0 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav_link_01 li a {
    background-color: transparent;
    color: #151643;
    font-size: 1.2rem;
    line-height: 15px;
    padding: 0;
    text-align: center;
  }
}

.nav_link_01 li a:after {
  content: '';
  width: 6px;
  height: 12px;
  background-image: url("../img/top/icon_right_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 12px;
  top: 19px;
}

@media screen and (max-width: 767px) {
  .nav_link_01 li a:after {
    display: none;
  }
}

.nav_link_01 li a:hover {
  background-color: #FACD06;
}

@media screen and (max-width: 767px) {
  .nav_link_01 li a span {
    position: relative;
    display: inline-block;
    -webkit-box-shadow: 0 3px 6px rgba(28, 28, 68, 0.16);
    box-shadow: 0 3px 6px rgba(28, 28, 68, 0.16);
    margin-bottom: 6px;
    border-radius: 50%;
    padding: 12px;
  }
  .nav_link_01 li a span:before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #151643;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
  }
}

.nav_link_01 li a img {
  margin-right: 8px;
  vertical-align: sub;
  width: 24px;
}

@media screen and (max-width: 767px) {
  .nav_link_01 li a img {
    margin-right: 0;
    position: relative;
    z-index: 2;
  }
}

.modal_show {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999999;
}

.modal_show__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal_show--st01 .modal_show__content {
  max-width: 350px;
  padding: 40px;
  text-align: center;
}

.modal_show--st01 .modal_show__content__tt {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 30px;
}

.modal_show__content {
  padding: 30px 50px;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 520px;
}

@media screen and (max-width: 1023px) {
  .modal_show__content {
    width: 90%;
    padding: 40px 20px;
    max-height: 80%;
    overflow-y: auto;
  }
}

.modal_show__content__tt {
  font-size: 1.6rem;
  color: #222222;
  line-height: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .modal_show__content__tt {
    font-size: 1.4rem;
  }
}

.modal_show__content__tt img {
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .modal_show__content .flex_between {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.modal_show__close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.modal_show__close img {
  max-width: 100%;
}

.modal_btn01 {
  width: 100%;
  max-width: 200px;
  line-height: 40px;
  border-radius: 6px;
  display: block;
  font-size: 1.4rem;
  color: #151643;
  text-align: center;
  background-color: #C7CFD8;
}

@media screen and (max-width: 767px) {
  .modal_btn01 {
    max-width: 136px;
  }
}

.modal_btn01--st01 {
  background-color: #151643;
  color: #fff;
  font-family: "Quicksand", sans-serif;
}

@media screen and (max-width: 767px) {
  .modal_btn01--st01 {
    margin-left: 20px;
  }
}

.modal_btn01--st02 {
  background-color: #245BD4;
  color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .modal_btn01--st02 {
    max-width: 200px;
  }
}

.c_block {
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.list_infor {
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .list_infor {
    padding: 20px;
  }
}

.list_infor li {
  padding-bottom: 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #EEF0F3;
}

.list_infor li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .list_infor li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}

.list_infor__left {
  width: 130px;
}

@media screen and (max-width: 767px) {
  .list_infor__left {
    width: 100%;
  }
}

.list_infor__right {
  width: calc(100% - 130px);
}

@media screen and (max-width: 767px) {
  .list_infor__right {
    width: 100%;
    margin-top: 10px;
  }
}

.list_infor__date {
  font-size: 1.2rem;
  color: #666666;
  line-height: 18px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  margin-right: 5px;
}

.list_infor__new {
  font-size: 1.2rem;
  color: #F3757E;
  line-height: 18px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
}

.list_infor__tt {
  font-size: 1.5rem;
  color: #333333;
  line-height: 24px;
  font-weight: bold;
}

.list_infor__tt a {
  text-decoration: underline;
  color: #245BD4;
}

@media screen and (max-width: 767px) {
  .list_infor__tt a {
    font-size: 1.4rem;
    line-height: 22px;
  }
}

.list_infor__tt a:hover {
  opacity: 0.7;
}

.list_infor__cont {
  margin-top: 12px;
  font-size: 1.4rem;
  color: #222222;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .list_infor__cont {
    font-size: 1.2rem;
    line-height: 19px;
  }
}

.list_infor__cont a {
  color: #245BD4;
  text-decoration: underline;
}

.list_infor__cont a:hover {
  opacity: 0.7;
}

.list_purchase li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EEF0F3;
}

@media screen and (max-width: 767px) {
  .list_purchase li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.list_purchase__left {
  padding-left: 140px;
  position: relative;
  width: calc(100% - 310px);
  min-height: 78px;
  padding-right: 25px;
}

@media screen and (max-width: 767px) {
  .list_purchase__left {
    width: 100%;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.list_purchase__left__img {
  width: 120px;
  height: 78px;
  overflow: hidden;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .list_purchase__left__img {
    width: 100px;
    height: 65px;
    top: 0;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.list_purchase__left__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.list_purchase__left__tt {
  font-size: 1.3rem;
  color: #222222;
  line-height: 19px;
}

@media screen and (max-width: 767px) {
  .list_purchase__left__tt {
    padding-left: 115px;
    min-height: 65px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 18px;
  }
}

.list_purchase__left__text {
  font-size: 1.2rem;
  line-height: 18px;
  color: #222222;
}

.list_purchase__price {
  width: 170px;
  padding-right: 30px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .list_purchase__price {
    width: 100%;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.list_purchase__price p {
  position: relative;
  line-height: 18px;
}

.list_purchase__price p.txt {
  margin-bottom: 10px;
}

.list_purchase__price p.color_01 {
  font-size: 1.8rem;
  color: #F3757E;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .list_purchase__price p.color_01 {
    text-align: left;
  }
}

.list_purchase__price .text {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  position: absolute;
  left: 40px;
}

@media screen and (max-width: 767px) {
  .list_purchase__price .text {
    position: relative;
    left: auto;
    margin-right: 10px;
  }
}

.list_purchase__price .money {
  color: #222222;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
}

.list_purchase .exchange {
  font-size: 1.2rem;
  color: #222222;
  font-weight: normal;
  display: block;
  font-family: "Quicksand", sans-serif;
}

@media screen and (max-width: 767px) {
  .list_purchase .exchange {
    display: inline;
  }
}

.list_purchase__btn {
  width: 140px;
}

@media screen and (max-width: 767px) {
  .list_purchase__btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.list_purchase__btn .btn-01 {
  max-width: 140px;
  line-height: 26px;
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #222222;
  border-radius: 13px;
  background-color: #C8CED7;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .list_purchase__btn .btn-01 {
    line-height: 36px;
    border-radius: 18px;
  }
}

.list_purchase__btn .btn-02 {
  background-color: #245BD4;
  color: #fff;
  margin-top: 12px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .list_purchase__btn .btn-02 {
    margin-top: 0;
    margin-left: 15px;
    border-radius: 18px;
  }
}

.list_purchase__btn .btn-02.addcart {
  background-color: #FACD06;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999988;
}

.popup__bg {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.popup__content {
  max-width: 300px;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 6px;
  padding: 60px 30px;
}

.popup__tt {
  font-size: 1.6rem;
  color: #222222;
  line-height: 21px;
  text-align: center;
}

.popup__link {
  font-size: 1.4rem;
  text-align: center;
  color: #151643;
  text-decoration: underline;
  display: table;
  margin: 0 auto;
  cursor: pointer;
}

.btn-popup {
  width: 100%;
  line-height: 40px;
  background-color: #245BD4;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Quicksand", sans-serif;
  display: block;
  border-radius: 6px;
  margin-top: 60px;
  margin-bottom: 60px;
}

#popup02 {
  display: none;
}

/**
 * PowerTip
 * https://stevenbenner.github.io/jquery-powertip/
 *
 * Stylesheet for the monochrome (default) theme.
 */
#powerTip {
  cursor: default;
  background-color: #fff;
  border-radius: 6px;
  color: #fff;
  display: none;
  padding: 10px;
  position: absolute;
  white-space: nowrap;
  z-index: 2147483647;
  border: 1px solid #F3757E;
}

#powerTip:before {
  content: attr(class) " ";
  position: absolute;
  height: 0;
  width: 0;
  text-indent: 100%;
  overflow: hidden;
}

#powerTip.n:before, #powerTip.s:before {
  width: 15px;
  height: 15px;
  background-image: url("../img/chart/icon_03.png");
  background-repeat: no-repeat;
  border: 0 !important;
  background-size: contain;
  bottom: -15px;
  left: 50%;
  margin-left: -5px;
}

#powerTip.e:before, #powerTip.w:before {
  width: 15px;
  height: 15px;
  background-image: url("../img/chart/icon_03.png");
  background-repeat: no-repeat;
  border: 0 !important;
  background-size: contain;
  margin-top: -5px;
  top: 50%;
}

#powerTip.n:before,
#powerTip.ne:before, #powerTip.nw:before {
  bottom: -15px;
}

#powerTip.n:before,
#powerTip.ne:before, #powerTip.nw:before,
#powerTip.nw-alt:before, #powerTip.ne-alt:before {
  border-top-color: inherit;
  border-top-style: solid;
  border-top-width: 10px;
}

#powerTip.e:before {
  width: 15px;
  height: 15px;
  background-image: url("../img/chart/icon_03.png");
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  border: 0 !important;
  background-size: contain;
  left: -15px;
}

#powerTip.s:before,
#powerTip.se:before, #powerTip.sw:before {
  top: -15px;
}

#powerTip.s:before,
#powerTip.se:before, #powerTip.sw:before,
#powerTip.sw-alt:before, #powerTip.se-alt:before {
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url("../img/chart/icon_03.png");
  background-repeat: no-repeat;
  border: 0 !important;
  background-size: contain;
}

#powerTip.w:before {
  width: 15px;
  height: 15px;
  background-image: url("../img/chart/icon_03.png");
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-repeat: no-repeat;
  border: 0 !important;
  background-size: contain;
  right: -15px;
}

#powerTip.ne:before, #powerTip.se:before {
  width: 15px;
  height: 15px;
  background-image: url("../img/chart/icon_03.png");
  background-repeat: no-repeat;
  border: 0 !important;
  background-size: contain;
  border-left: 0;
  left: 10px;
}

#powerTip.nw:before, #powerTip.sw:before {
  width: 15px;
  height: 15px;
  background-image: url("../img/chart/icon_03.png");
  background-repeat: no-repeat;
  border: 0 !important;
  background-size: contain;
  right: 10px;
}

#powerTip.nw-alt:before, #powerTip.ne-alt:before,
#powerTip.sw-alt:before, #powerTip.se-alt:before {
  bottom: -15px;
  width: 15px;
  height: 15px;
  background-image: url("../img/chart/icon_03.png");
  background-repeat: no-repeat;
  border: 0 !important;
  background-size: contain;
  left: 10px;
}

#powerTip.ne-alt:before {
  left: auto;
  right: 10px;
}

#powerTip.sw-alt:before, #powerTip.se-alt:before {
  width: 15px;
  height: 15px;
  background-image: url("../img/chart/icon_03.png");
  background-repeat: no-repeat;
  border: 0 !important;
  background-size: contain;
  bottom: auto;
  top: -10px;
}

#powerTip.se-alt:before {
  left: auto;
  right: 10px;
}

table.treetable {
  border: 1px solid #888;
  border-collapse: collapse;
  font-size: .8em;
  line-height: 1;
  margin: .6em 0 1.8em 0;
  width: 100%;
}

table.treetable caption {
  font-size: .9em;
  font-weight: bold;
  margin-bottom: .2em;
}

table.treetable thead {
  background: #aaa url(data:image/png;base64,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) repeat-x top left;
  font-size: .9em;
}

table.treetable thead tr th {
  border: 1px solid #888;
  font-weight: normal;
  padding: .3em 1em .1em 1em;
  text-align: left;
}

table.treetable tbody tr td {
  cursor: default;
  padding: .3em 1em;
}

table.treetable span {
  background-position: center left;
  background-repeat: no-repeat;
  padding: .2em 0 .2em 1.5em;
  width: 12px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}

table.treetable span.file {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADoSURBVBgZBcExblNBGAbA2ceegTRBuIKOgiihSZNTcC5LUHAihNJR0kGKCDcYJY6D3/77MdOinTvzAgCw8ysThIvn/VojIyMjIyPP+bS1sUQIV2s95pBDDvmbP/mdkft83tpYguZq5Jh/OeaYh+yzy8hTHvNlaxNNczm+la9OTlar1UdA/+C2A4trRCnD3jS8BB1obq2Gk6GU6QbQAS4BUaYSQAf4bhhKKTFdAzrAOwAxEUAH+KEM01SY3gM6wBsEAQB0gJ+maZoC3gI6iPYaAIBJsiRmHU0AALOeFC3aK2cWAACUXe7+AwO0lc9eTHYTAAAAAElFTkSuQmCC);
}

table.treetable span.folder {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGrSURBVDjLxZO7ihRBFIa/6u0ZW7GHBUV0UQQTZzd3QdhMQxOfwMRXEANBMNQX0MzAzFAwEzHwARbNFDdwEd31Mj3X7a6uOr9BtzNjYjKBJ6nicP7v3KqcJFaxhBVtZUAK8OHlld2st7Xl3DJPVONP+zEUV4HqL5UDYHr5xvuQAjgl/Qs7TzvOOVAjxjlC+ePSwe6DfbVegLVuT4r14eTr6zvA8xSAoBLzx6pvj4l+DZIezuVkG9fY2H7YRQIMZIBwycmzH1/s3F8AapfIPNF3kQk7+kw9PWBy+IZOdg5Ug3mkAATy/t0usovzGeCUWTjCz0B+Sj0ekfdvkZ3abBv+U4GaCtJ1iEm6ANQJ6fEzrG/engcKw/wXQvEKxSEKQxRGKE7Izt+DSiwBJMUSm71rguMYhQKrBygOIRStf4TiFFRBvbRGKiQLWP29yRSHKBTtfdBmHs0BUpgvtgF4yRFR+NUKi0XZcYjCeCG2smkzLAHkbRBmP0/Uk26O5YnUActBp1GsAI+S5nRJJJal5K1aAMrq0d6Tm9uI6zjyf75dAe6tx/SsWeD//o2/Ab6IH3/h25pOAAAAAElFTkSuQmCC);
}

table.treetable tr.collapsed span.indenter a {
  background-image: url("../img/chart/collapsed.svg");
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 8px;
  margin-right: 10px;
}

table.treetable tr.expanded span.indenter a {
  background-image: url("../img/chart/expanded.svg");
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  margin-right: 10px;
}

table.treetable tr.branch {
  background-color: #f9f9f9;
}

table.treetable tr.selected {
  background-color: #3875d7;
  color: #fff;
}

table.treetable tr span.indenter a {
  outline: none;
  /* Expander shows outline after upgrading to 3.0 (#141) */
}

table.treetable tr.collapsed.selected span.indenter a {
  background-image: url(data:image/png;base64,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);
}

table.treetable tr.expanded.selected span.indenter a {
  background-image: url(data:image/png;base64,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);
}

table.treetable tr.accept {
  background-color: #a3bce4;
  color: #fff;
}

table.treetable tr.collapsed.accept td span.indenter a {
  background-image: url(data:image/x-png;base64,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);
}

table.treetable tr.expanded.accept td span.indenter a {
  background-image: url(data:image/x-png;base64,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);
}

.wrapper_login {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-image: url(../img/login/background_pc@2x.png);
  background-size: cover;
}

@media screen and (max-width: 600px) {
  .wrapper_login {
    min-width: 320px;
    background-image: url(../img/login/SP_back.png);
  }
}

.login_p {
  width: 100%;
  min-height: 100vh;
}

.form_login {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px 40px;
  text-align: center;
  background-color: rgba(21, 22, 67, 0.9);
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 599px) {
  .form_login {
    max-width: 325px;
  }
}

@media screen and (max-width: 359px) {
  .form_login {
    max-width: 280px;
    padding: 40px 20px;
  }
}

.login_p_ttl {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  font-family: "Quicksand", sans-serif;
}

.form_login__dl {
  margin-top: 30px;
  margin-bottom: 10px;
}

.form_login__dl dt {
  font-size: 1.3rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 5px;
  text-align: left;
  font-weight: 400;
  font-family: "Quicksand", sans-serif;
}

.form_login__dl dd {
  margin-bottom: 15px;
}

.form_login__dl dd:last-child {
  margin-bottom: 0;
}

.form_login__dl dd input {
  width: 100%;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #fff;
  padding: 10px;
  color: #222222;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_login__btn {
  width: 100%;
  max-width: 200px;
  height: 38px;
  border-radius: 19px;
  color: #151643;
  text-align: center;
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  margin: 40px auto 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
}

.form_login__btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FACD06;
  border-radius: 19px;
  z-index: -2;
}

.form_login__btn:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 19px;
  background-color: #E29D01;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: -1;
}

.form_login__btn:hover:before {
  width: 100%;
}

.form_login__btn.st01 {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans Japanese", sans-serif;
}

.form_login__link {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.3;
  display: block;
  margin-top: 25px;
  text-decoration: underline;
}

.form_login__link:hover {
  opacity: 0.6;
}

.form_login__text {
  font-size: 1.3rem;
  color: #fff;
  text-align: left;
  line-height: 18px;
  margin-top: 10px;
}

.login_p--regis {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
}

@media screen and (max-width: 359px) {
  .login_p--regis {
    padding-bottom: 70px;
  }
}

.login_p__header {
  background-color: #151643;
  text-align: center;
  padding: 25px;
  padding-bottom: 35px;
}

.login_p__header img {
  max-width: 100;
}

.login_p__footer {
  padding: 25px;
  margin-top: 40px;
  width: 100%;
}

.login_p__footer p {
  font-size: 1.2rem;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  color: #222222;
}

.login_p__content {
  padding-top: 60px;
  margin-top: -10px;
  border-radius: 6px 6px 0 0;
  background-color: #fff;
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .login_p__content {
    padding-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .login_p__content.st01 {
    padding: 0 10px;
    padding-top: 60px;
  }
}

.login_p__content .container {
  max-width: 880px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.login_p__title {
  font-size: 1.8rem;
  color: #151643;
  line-height: 22px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .login_p__title {
    font-size: 1.6rem;
  }
}

.nav_process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .nav_process {
    margin-top: 20px;
  }
}

.nav_process li {
  font-size: 1.3rem;
  line-height: 18px;
  font-weight: bold;
  letter-spacing: 0.05rem;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav_process li:first-child:before {
  display: none;
}

@media screen and (max-width: 767px) {
  .nav_process li {
    font-size: 1.2rem;
  }
}

.nav_process li.active {
  color: #245BD4;
}

.nav_process li.active:before {
  background-image: url("../img/common/icon_process_active.svg");
}

.nav_process li:before {
  content: '';
  margin: 0 24px;
  width: 8px;
  height: 10px;
  background: url("../img/common/icon_process.svg") no-repeat center;
  background-size: contain;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .nav_process li:before {
    margin: 0 4px;
  }
}

@media screen and (max-width: 359px) {
  .nav_process li:before {
    margin: 0 3px;
  }
}

.login_p__step1 {
  padding: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .login_p__step1 {
    margin-top: 25px;
    padding: 20px;
  }
}

.login_p__step1__text01 {
  font-size: 1.2rem;
  line-height: 18px;
  color: #CE0000;
  font-weight: 400;
  position: relative;
  padding-left: 21px;
}

.login_p__step1__text01 img {
  margin-right: 6px;
  position: absolute;
  top: 3px;
  left: 0;
}

.login_p__step1__text02 {
  font-size: 1.4rem;
  line-height: 21px;
  color: #222222;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .login_p__step1__text02 {
    margin-bottom: 20px;
  }
}

.login_p__step1__dl dt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #222222;
  line-height: 19px;
  margin-bottom: 10px;
}

.login_p__step1__dl dt span {
  color: #CE0000;
  font-size: 1.2rem;
  font-weight: normal;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .login_p__step1__dl dt span {
    font-size: 1rem;
    margin-left: 5px;
  }
}

.login_p__step1__dl dd input {
  width: 100%;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #C8CED7;
  padding: 10px;
  color: #222222;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 767px) {
  .login_p__step1__dl dd input {
    height: 36px;
  }
}

.regis_rows {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .regis_rows {
    margin-bottom: 25px;
  }
}

.regis_rows:last-child {
  margin-bottom: 0;
}

.regis_rows dt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #222222;
  line-height: 19px;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .regis_rows dt {
    font-size: 1.3rem;
  }
}

.regis_rows__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.regis_rows dd input {
  width: 100%;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #C8CED7;
  padding: 10px;
  color: #222222;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 18px;
}

.regis_rows dd input.mw_380 {
  max-width: 380px;
}

.regis_rows dd input.mw_370 {
  max-width: 370px;
}

.regis_rows dd input.mw_300 {
  max-width: 300px;
}

.regis_rows dd input.mw_180 {
  max-width: 180px;
}

@media screen and (max-width: 767px) {
  .regis_rows dd input.mw_180 {
    max-width: 200px;
  }
}

.regis_rows dd input.mw_200 {
  max-width: 200px;
}

.regis_rows dd input:disabled {
  background-color: #EEF0F3;
  border: 0;
}

.regis_rows dd input.border_red {
  border: 1px solid #AC000C;
  background-color: #FFF9F8;
}

.regis_rows .two_input input {
  max-width: 280px;
  margin-right: 10px;
}

.regis_rows .two_input input:last-child {
  margin-right: 0;
}

.regis_rows .gr_birthday label {
  font-size: 1.4rem;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .regis_rows .gr_birthday label {
    font-size: 1.1rem;
    margin-right: 3px;
  }
}

@media screen and (max-width: 359px) {
  .regis_rows .gr_birthday label {
    font-size: 1rem;
  }
}

.regis_rows .gr_birthday label input {
  max-width: 100px;
  margin-left: 10px;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .regis_rows .gr_birthday label input {
    width: 75px;
    margin-left: 3px;
  }
}

@media screen and (max-width: 359px) {
  .regis_rows .gr_birthday label input {
    width: 70px;
  }
}

.regis_rows .gr_birthday label select {
  width: 88px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #C8CED7;
  padding: 10px;
  color: #222222;
  font-size: 1.4rem;
  background: url("../img/common/icon_select.svg") no-repeat;
  background-position: right 7px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .regis_rows .gr_birthday label select {
    width: 80px;
    margin-right: 3px;
  }
}

@media screen and (max-width: 359px) {
  .regis_rows .gr_birthday label select {
    width: 65px;
  }
}

.regis_rows .gr_birthday label select.border_red {
  border: 1px solid #AC000C;
  background-color: #FFF9F8;
}

.regis_rows__text {
  font-size: 1.2rem;
  color: #222222;
  margin-top: 5px;
}

.regis_rows__text span {
  font-family: "Quicksand", sans-serif;
}

.regis_rows .label_block {
  font-size: 1.4rem;
  color: #222222;
  line-height: 20px;
  display: block;
}

.login_p__block {
  padding: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .login_p__block {
    margin-top: 25px;
    padding: 20px 10px;
  }
}

.alert_error {
  font-size: 1.2rem;
  color: #CE0000;
  line-height: 19px;
  margin-top: 5px;
}

.tb_regis_confirm {
  width: 100%;
  border-collapse: collapse;
}

.tb_regis_confirm th {
  font-size: 1.4rem;
  font-weight: bold;
  color: #222222;
  line-height: 19px;
  text-align: left;
  width: 100px;
  border-bottom: 1px solid #EEF0F3;
  padding: 15px 0;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .tb_regis_confirm th {
    font-size: 1.3rem;
  }
}

.tb_regis_confirm td {
  width: calc(100% - 100px);
  font-size: 1.4rem;
  color: #222222;
  line-height: 21px;
  border-bottom: 1px solid #EEF0F3;
  padding: 15px 0 15px 60px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .tb_regis_confirm td {
    padding-left: 15px;
    font-size: 1.3rem;
  }
}

.tb_regis_confirm tr:last-child th, .tb_regis_confirm tr:last-child td {
  border-bottom: 0;
  padding-bottom: 0;
}

.tb_regis_confirm tr:first-child th, .tb_regis_confirm tr:first-child td {
  padding-top: 0;
}

.tb_regis_confirm.done td {
  font-family: "Quicksand", sans-serif;
}

.tb_regis_confirm .btn_03 {
  position: absolute;
  left: 170px;
}

@media screen and (max-width: 767px) {
  .tb_regis_confirm .btn_03 {
    position: absolute;
    right: 0px;
    left: auto;
    max-width: 100px;
    font-size: 1rem;
  }
}

.login_p__txt {
  font-size: 1.4rem;
  line-height: 21px;
  color: #222222;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  margin-top: -10px;
  margin-bottom: 40px;
}

.login_p__back {
  font-size: 1.6rem;
  font-weight: bold;
  color: #151643;
}

.login_p__back img {
  margin-right: 10px;
}

.login_p__back:hover {
  opacity: 0.6;
}

.gr_btn {
  position: relative;
}

@media screen and (max-width: 767px) {
  .gr_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.gr_btn .login_p__back {
  position: absolute;
  left: 20px;
  top: 11px;
}

@media screen and (max-width: 767px) {
  .gr_btn .login_p__back {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 60px;
    display: block;
  }
}

.login_p__done {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}

.login_p__done__tt {
  font-size: 1.6rem;
  color: #151643;
  line-height: 18px;
  margin-bottom: 25px;
}

.login_p__done__text {
  font-size: 1.4rem;
  color: #222222;
  line-height: 21px;
}

@media screen and (max-width: 359px) {
  .tb_regis_confirm.done th {
    width: 80px;
  }
  .tb_regis_confirm.done td {
    padding-left: 0;
  }
}

.l_content__top {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  padding-bottom: 30px;
  padding-left: 60px;
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .l_content__top {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .l_content__top {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25px;
  }
}

.l_content__top.noboxshadow {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.l_content__bottom {
  background-color: #F6F9FC;
  padding-top: 30px;
  padding-right: 60px;
  padding-left: 60px;
  min-height: 100vh;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .l_content__bottom {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .l_content__bottom {
    padding-left: 20px;
    padding-right: 20px;
    min-height: auto;
  }
}

.top_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  padding-right: 60px;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .top_head {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .top_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-top: 0;
  }
}

.top_head__slider {
  width: calc(100% - 282px);
  margin-bottom: 0 !important;
  border-radius: 6px;
  overflow: hidden;
  max-width: 718px;
}

@media screen and (max-width: 767px) {
  .top_head__slider {
    width: 100%;
  }
}

.top_head__slider__item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.top_head__slider__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top_head__slider__item a {
  display: block;
  height: 279px;
}

@media screen and (max-width: 767px) {
  .top_head__slider__item a {
    height: 136px;
  }
}

.top_head__slider__item a:hover {
  opacity: 0.7;
}

.top_head__slider .slick-prev {
  background-image: url("../img/top/prev.svg");
  left: 20px;
}

.top_head__slider .slick-next {
  background-image: url("../img/top/next.svg");
  right: 20px;
  background-position: right;
}

.top_head__slider .slick-arrow {
  width: 12px;
  background-size: contain;
  cursor: pointer;
  background-repeat: no-repeat;
  z-index: 7;
  padding: 10px;
}

.top_head__slider .slick-arrow:before {
  display: none;
}

.top_head__slider .slick-dots {
  bottom: 3px;
}

.top_head__slider .slick-dots li button:before {
  font-size: 1.2rem;
  color: #C8CED7;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .top_head__slider .slick-dots li button:before {
    font-size: 0.6rem;
    width: 12px;
  }
}

.top_head__slider .slick-dots li.slick-active button:before {
  color: #151643;
}

.top_head__slider .slick-dots li {
  margin: 0 2px;
}

@media screen and (max-width: 767px) {
  .top_head__slider .slick-dots li {
    width: 12px;
  }
}

.top_head__right {
  width: 282px;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .top_head__right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

.top_head__right__tt {
  font-size: 1.4rem;
  color: #151643;
  line-height: 19px;
}

@media screen and (max-width: 767px) {
  .top_head__right__tt {
    color: #333333;
  }
}

.top_head__right__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top_head__right__banner {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 10px;
  }
}

.top_head__right__banner li {
  width: 49%;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .top_head__right__banner li {
    width: 110px;
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.top_head__right__banner li img {
  max-width: 100%;
}

.top_head__right__banner li a {
  display: block;
}

.top_head__right__banner li a:hover {
  opacity: 0.7;
}

.top_linechart {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_linechart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
}

.top_linechart__left {
  width: calc(100% - 235px);
  padding-right: 30px;
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .top_linechart__left {
    width: 100%;
  }
}

.top_linechart__left__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .top_linechart__left__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
  }
}

.top_linechart__left__legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 60px;
}

@media screen and (max-width: 767px) {
  .top_linechart__left__legend {
    margin-left: 15px;
  }
}

.top_linechart__left__legend li {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  color: #222222;
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .top_linechart__left__legend li {
    font-size: 1rem;
    margin-right: 8px;
  }
}

.top_linechart__left__legend li span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}

.top_linechart__left__legend .color_01 {
  background-color: #245BD4;
}

.top_linechart__left__legend .color_02 {
  background-color: #3A92E4;
}

.top_linechart__left__tab {
  display: table;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .top_linechart__left__tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.top_linechart__left__tab li {
  font-size: 1.4rem;
  font-weight: bold;
  color: #C7CFD8;
  font-family: "Quicksand", sans-serif;
  margin-left: 25px;
  cursor: pointer;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .top_linechart__left__tab li {
    margin-left: 0;
  }
}

.top_linechart__left__tab li.current {
  color: #151643;
}

@media screen and (max-width: 767px) {
  .top_linechart__left__content {
    height: 320px !important;
    overflow-x: scroll;
  }
}

@media screen and (max-width: 767px) {
  .top_linechart__left__content .wrap_linechart {
    position: relative;
  }
}

.top_linechart__right {
  width: 235px;
  padding: 20px;
  padding-left: 30px;
  background-color: #F7F9FC;
}

@media screen and (max-width: 767px) {
  .top_linechart__right {
    width: 100%;
    padding-left: 20px;
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 5px;
  }
}

.top_linechart__right .btn_more {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .top_linechart__right .btn_more {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

.top_linechart__right__text {
  font-size: 1.4rem;
  color: #222222;
  line-height: 21px;
  font-family: "Quicksand", sans-serif;
  margin-top: 25px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .top_linechart__right__text {
    margin-top: 0;
  }
}

.top_linechart__right__status {
  width: 100%;
  height: 74px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .top_linechart__right__status {
    display: inline-block;
    width: 48%;
    height: 60px;
    margin-bottom: 0;
  }
}

.top_linechart__right__status.left {
  background-color: #245BD4;
}

@media screen and (max-width: 767px) {
  .top_linechart__right__status.left {
    margin-right: 3%;
  }
}

.top_linechart__right__status.right {
  background-color: #3992E4;
}

.top_linechart__right__status span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  font-family: "Quicksand", sans-serif;
}

@media screen and (max-width: 767px) {
  .top_linechart__right__status span {
    font-size: 1.2rem;
  }
}

.top_linechart__right__status p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  text-align: center;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .top_linechart__right__status p {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}

.top_linechart .chartjs-tooltip {
  width: 0px;
  position: absolute;
  bottom: 0%;
  background-image: -webkit-gradient(linear, left top, right top, from(#3992E4), to(#245BD4));
  background-image: -webkit-linear-gradient(left, #3992E4 0%, #245BD4 100%);
  background-image: -o-linear-gradient(left, #3992E4 0%, #245BD4 100%);
  background-image: linear-gradient(to right, #3992E4 0%, #245BD4 100%);
  text-align: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 0;
}

.top_linechart .chartjs-tooltip.active {
  opacity: 1;
}

.top_linechart .chartjs-tooltip__text {
  position: absolute;
  display: block;
  min-width: 80px;
  top: 0px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 2px 10px;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#3992E4), to(#245BD4));
  background-image: -webkit-linear-gradient(left, #3992E4 0%, #245BD4 100%);
  background-image: -o-linear-gradient(left, #3992E4 0%, #245BD4 100%);
  background-image: linear-gradient(to right, #3992E4 0%, #245BD4 100%);
  line-height: 20px;
  font-size: 1.2rem;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 6px;
  text-align: left;
}

.top_nav_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top_nav_block > li {
  width: 49%;
  margin-right: 2%;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .top_nav_block > li {
    width: 100%;
    margin-bottom: 25px;
    margin-right: 0;
  }
}

.top_nav_block > li:nth-child(2n) {
  margin-right: 0;
}

.top_nav_block > li .btn_more {
  position: absolute;
  top: 20px;
  right: 20px;
}

.full_condi {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 52px;
  background-color: #F3757E;
  position: absolute;
  top: -18px;
  left: -12px;
  border-radius: 50%;
  display: none;
}

.full_condi.animate2 {
  -webkit-animation: key1 0.5s 2s ease 4 alternate;
  animation: key1 0.5s 2s ease 4 alternate;
}

.full_condi.animate {
  -webkit-animation: key1 0.5s ease infinite alternate;
  animation: key1 0.5s ease infinite alternate;
}

@-webkit-keyframes key1 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes key1 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.pie-chart {
  width: 150px;
  margin: 0 auto;
  margin-top: 5px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .pie-chart {
    width: 115px;
    margin-top: 0;
  }
}

.pie-chart .legend {
  margin-top: 30px;
}

.pie-chart .legend ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pie-chart .legend ul li {
  font-size: 1.2rem;
  color: #222222;
}

.pie-chart .legend ul li span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
}

.pie-chart__head {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  font-family: "Quicksand", sans-serif;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .pie-chart__head {
    font-size: 1.4rem;
  }
}

@-webkit-keyframes bake-pie {
  from {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes bake-pie {
  from {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.pie-chart {
  position: relative;
}

.pie-chart--wrapper {
  text-align: center;
  width: 150px;
}

@media screen and (max-width: 767px) {
  .pie-chart--wrapper {
    width: 115px;
  }
}

.pie-chart__pie, .pie-chart__legend {
  display: inline-block;
  vertical-align: top;
}

.pie-chart__pie {
  position: relative;
  height: 150px;
  width: 150px;
  margin: 10px auto 15px;
}

@media screen and (max-width: 767px) {
  .pie-chart__pie {
    width: 110px;
    height: 110px;
  }
}

.pie-chart__pie::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 135px;
  height: 135px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .pie-chart__pie::before {
    width: 100px;
    height: 100px;
  }
}

.slice {
  position: absolute;
  width: 150px;
  height: 150px;
  clip: rect(0px, 150px, 150px, 75px);
  -webkit-animation: bake-pie 1s;
  animation: bake-pie 1s;
}

@media screen and (max-width: 767px) {
  .slice {
    width: 110px;
    height: 110px;
    clip: rect(0px, 110px, 110px, 55px);
  }
}

.slice span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  clip: rect(0px, 150px, 150px, 75px);
}

@media screen and (max-width: 767px) {
  .slice span {
    width: 110px;
    height: 110px;
    clip: rect(0px, 110px, 110px, 55px);
  }
}

.pie-chart__legend {
  display: table;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  font-size: 1.2rem;
}

.pie-chart__legend li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.pie-chart__legend p {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin-bottom: 0.7em;
  position: absolute;
  top: 0;
  left: 0;
}

.pie-chart__legend em {
  font-style: normal;
}

.pie-chart__legend span {
  margin-left: 5px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.pie-chart__title {
  font-size: 2.4rem;
  color: #245BD4;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 75px;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .pie-chart__title {
    top: 52px;
  }
}

.pie-chart__title span {
  font-size: 1.6rem;
}

.pieID-chart02 .pie-chart__title {
  color: #3992E4;
}

.two_chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.top_level {
  padding-top: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .top_level {
    padding-top: 25px;
    margin-bottom: 20px;
  }
}

.top_level__text {
  font-size: 1.6rem;
  font-weight: bold;
  width: calc(100%/2 - 80px);
  color: #222222;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .top_level__text {
    width: calc(100%/2 - 40px);
  }
}

@media screen and (max-width: 359px) {
  .top_level__text {
    font-size: 4vw;
  }
}

.top_level__text span {
  font-family: "Quicksand", sans-serif;
}

.top_level__text:last-child {
  text-align: left;
}

.top_level__name {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, right top, from(#3992E4), to(#245BD4));
  background-image: -webkit-linear-gradient(left, #3992E4 0%, #245BD4 100%);
  background-image: -o-linear-gradient(left, #3992E4 0%, #245BD4 100%);
  background-image: linear-gradient(to right, #3992E4 0%, #245BD4 100%);
  color: #fff;
  text-align: center;
  line-height: 80px;
  font-size: 2rem;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .top_level__name {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

.bar_hori {
  position: relative;
  width: calc(100% - 232px);
  height: 12px;
  background: #EEF0F3;
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .bar_hori {
    width: calc(100% - 184px);
  }
}

.bar_hori .bar-info {
  border-radius: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#3992E4), to(#245BD4));
  background-image: -webkit-linear-gradient(left, #3992E4 0%, #245BD4 100%);
  background-image: -o-linear-gradient(left, #3992E4 0%, #245BD4 100%);
  background-image: linear-gradient(to right, #3992E4 0%, #245BD4 100%);
  color: white;
  width: 0%;
  position: relative;
  height: 12px;
  -webkit-transition: width 3.3s ease-in-out;
  -o-transition: width 3.3s ease-in-out;
  transition: width 3.3s ease-in-out;
}

.bar_hori .bar-info .percent {
  float: right;
  display: none;
}

.wrapper_bar {
  margin-top: 20px;
}

.wrapper_bar__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.wrapper_bar__row:last-child {
  margin-bottom: 5px;
}

.wrapper_bar__row__text01 {
  width: 92px;
  font-size: 1.2rem;
  color: #222222;
}

@media screen and (max-width: 767px) {
  .wrapper_bar__row__text01 {
    font-size: 1rem;
    width: 74px;
  }
}

.wrapper_bar__row__text02 {
  width: 140px;
  padding-left: 20px;
  font-size: 1.2rem;
  color: #222222;
  font-family: "Quicksand", sans-serif;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .wrapper_bar__row__text02 {
    padding-left: 8px;
    font-size: 1rem;
    width: 110px;
  }
}

.tb_column3 {
  margin-top: 25px;
}

.tb_column3 table {
  width: 100%;
  border-collapse: collapse;
}

.tb_column3 th {
  font-size: 1.2rem;
  line-height: 18px;
  color: #666666;
  background-color: #F7F9FC;
  padding: 6px 10px;
  font-weight: normal;
  border-collapse: collapse;
}

.tb_column3 th.price {
  width: 80px;
  text-align: center;
}

.tb_column3 th.number {
  width: 55px;
}

.tb_column3 th.name {
  width: 50%;
  text-align: center;
}

.tb_column3 td {
  font-size: 1.4rem;
  color: #222222;
  line-height: 18px;
  padding: 10px 10px;
  border-collapse: collapse;
  border-top: 1px solid #EEF0F3;
}

@media screen and (max-width: 767px) {
  .tb_column3 td {
    font-size: 1.2rem;
  }
}

.tb_column3 td.number {
  width: 45px;
}

.tb_column3 td.number span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  background-color: #C7CFD8;
  color: #fff;
  text-align: center;
  line-height: 24px;
  font-family: "Quicksand", sans-serif;
}

@media screen and (max-width: 767px) {
  .tb_column3 td.number span {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

.tb_column3 td.number.bg_yellow span {
  background-color: #EECC31;
}

.tb_column3 td.price {
  text-align: right;
}

.tb_column3 td.name {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 24px;
}

.tb_column3 td .has_tick {
  position: relative;
  display: inline-block;
}

.tb_column3 td .txt_stic {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #F3757E;
  color: #fff;
  text-align: center;
  line-height: 18px;
  font-size: 0.8rem;
  font-family: "Quicksand", sans-serif;
  display: inline-block;
  position: absolute;
  top: -6px;
  right: -17px;
}

.tb_column3 tr:nth-child(2) td {
  border-top: 0;
}

.tb_column3 tr:nth-child(n+7) {
  display: none;
}

.top_gr_btn {
  position: relative;
  padding-bottom: 35px;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .top_gr_btn {
    padding-bottom: 30px;
    margin-top: 40px;
  }
}

.top_gr_btn .btn_02--st {
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .top_gr_btn .btn_02--st {
    position: relative;
    margin-top: 30px;
  }
}

.c-tab_content {
  display: none;
}

.c-tab_content.current {
  display: inherit;
}

.c-tab_content_new {
  display: none;
}

.c-tab_content_new.current {
  display: inherit;
}

.purchase__text {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  position: absolute;
  bottom: 35px;
  right: 60px;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .purchase__text {
    right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .purchase__text {
    position: relative;
    bottom: auto;
    right: auto;
    padding-left: 20px;
    margin-top: 15px;
  }
}

.purchase__text img {
  margin-right: 6px;
}

@media screen and (max-width: 767px) {
  .purchase__text img {
    position: absolute;
    left: 0;
    top: 4px;
  }
}

.purchase__text a {
  color: #245BD4;
  text-decoration: underline;
}

.purchase__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 25px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .purchase__sort {
    margin-bottom: 25px;
  }
}

.purchase__sort__case {
  display: inline;
  font-size: 1.4rem;
  color: #222222;
  line-height: 30px;
  padding-right: 25px;
  border-right: 1px dashed #C8CED7;
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .purchase__sort__case {
    margin-right: 15px;
    padding-right: 15px;
  }
}

.purchase__sort .card-drop {
  max-width: 280px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .purchase__sort .card-drop {
    max-width: 260px;
  }
}

.purchase_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .purchase_tab {
    overflow-x: scroll;
    padding-bottom: 10px;
  }
}

.purchase_tab li {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 4px 12px;
  color: #666666;
  border-radius: 14px;
  margin-right: 6px;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.purchase_tab li.current {
  background-color: #245BD4;
  color: #fff;
}

.purchase_content {
  padding: 20px;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.purchase_content .text_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .purchase_content .text_bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.purchase_content .text_bottom dt {
  font-size: 1.3rem;
  font-weight: bold;
  color: #222222;
}

@media screen and (max-width: 767px) {
  .purchase_content .text_bottom dt {
    text-align: left;
  }
}

.purchase_content .text_bottom dd {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  color: #222222;
  width: 150px;
  text-align: right;
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .purchase_content .text_bottom dd {
    margin-left: 10px;
    width: auto;
  }
}

.purchase_content .text_bottom dd.exchange {
  color: #F3757E;
  font-size: 1.4rem;
}

.tb_pur_confirm {
  padding-bottom: 60px;
}

.tb_pur_confirm__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C8CED7;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__rows {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.tb_pur_confirm__rows.last {
  border-bottom: 0;
  padding-bottom: 0;
}

.tb_pur_confirm__rows > dt {
  font-size: 1.4rem;
  color: #222222;
  line-height: 21px;
  font-weight: bold;
  width: 170px;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__rows > dt {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 18px;
  }
}

.tb_pur_confirm__rows > dd {
  width: calc(100% - 170px);
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__rows > dd {
    width: 100%;
  }
}

.tb_pur_confirm__rows > dd .price {
  font-size: 1.2rem;
  color: #F3757E;
  font-weight: bold;
  margin-bottom: 30px;
}

.tb_pur_confirm__rows > dd .price span.font_q {
  font-size: 2rem;
}

.tb_pur_confirm__rows > dd .price span.exchange {
  font-size: 1.6rem;
  color: #222222;
  font-weight: 500;
  font-family: "Quicksand", sans-serif;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__rows > dd .price span.exchange {
    margin-left: 10px;
  }
}

@media screen and (max-width: 360px) {
  .tb_pur_confirm__rows > dd .price span.exchange {
    font-size: 1.3rem;
  }
}

.tb_pur_confirm__rows > dd .text_red {
  font-size: 1.3rem;
  color: #AC000C;
  line-height: 19px;
}

.tb_pur_confirm__gr h3 {
  text-align: left;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222222;
}

.tb_pur_confirm__gr h3 span {
  display: inline-block;
  float: right;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__gr h3 span.pc_tab {
    display: none;
  }
}

.tb_pur_confirm__gr h3 span.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__gr h3 span.sp-only {
    display: block;
  }
}

.tb_pur_confirm__gr h3 span img {
  margin-right: 3px;
}

.tb_pur_confirm__gr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  border-top: 1px  dotted #C8CED7;
  padding-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__gr ul:last-child {
    padding-bottom: 0;
  }
}

.tb_pur_confirm__gr ul li {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
}

.tb_pur_confirm__gr ul li:not(:first-child) {
  width: 370px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__gr ul li:not(:first-child) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 35%;
  }
}

.tb_pur_confirm__gr ul li:not(:first-child) p {
  width: 80px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__gr ul li:not(:first-child) p {
    display: block;
    width: 100%;
    margin-bottom: 6px;
  }
}

.tb_pur_confirm__gr ul li:not(:first-child) p:last-child {
  width: 34%;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__gr ul li:not(:first-child) p:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}

.tb_pur_confirm__gr ul li:first-child {
  width: calc(100% - 370px);
  padding-right: 36px;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__gr ul li:first-child {
    width: 65%;
    padding-right: 0;
  }
}

.tb_pur_confirm__gr ul li:first-child .font_q {
  margin-right: 16px;
  margin-left: 3px;
  font-weight: 500;
}

.tb_pur_confirm__gr ul li .text_yellow {
  background-color: #FACD06;
  padding: 5px 10px;
}

.tb_pur_confirm .tb_regis_confirm th, .tb_pur_confirm .tb_regis_confirm td {
  border-bottom: 1px dashed #C8CED7;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm .tb_regis_confirm th, .tb_pur_confirm .tb_regis_confirm td {
    font-size: 1.2rem;
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm .login_p__back {
    font-size: 1.4rem;
    margin-top: 40px;
  }
}

.tb_pur_confirm__box {
  padding: 10px 20px;
  background-color: #fff;
  overflow-y: scroll;
  height: 140px;
  border: 1px solid #EEF0F3;
  border-radius: 6px;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm__box {
    height: 200px;
  }
}

.tb_pur_confirm__box p {
  font-size: 1.2rem;
  line-height: 18px;
  color: #222222;
}

.tb_pur_confirm .btn-grad:disabled {
  color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 767px) {
  .tb_pur_confirm .btn-grad {
    font-size: 1.4rem;
  }
}

.gr_input_pur {
  padding-top: 15px;
  border-top: 1px dashed #C8CED7;
  margin-top: 18px;
  display: none;
}

.gr_input_pur .purchase__text {
  position: relative;
  right: auto;
  bottom: auto;
  display: inline-block;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .gr_input_pur .purchase__text {
    margin-left: 0;
    margin-top: 0;
  }
}

.gr_input_pur .c_checkbox {
  padding-top: 18px;
  border-top: 1px dashed #C8CED7;
  margin-top: -10px;
}

.gr_input_pur .c_checkbox__label {
  display: inline-block;
}

.p_dl {
  min-height: 100vh;
}

@media screen and (max-width: 767px) {
  .p_dl {
    padding-bottom: 60px;
  }
}

.p_dl__box {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding-bottom: 0;
}

.p_dl__box__th {
  background-color: #F7F9FC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p_dl__box__th {
    display: none;
  }
}

.p_dl__box__th li {
  font-size: 1.2rem;
  color: #666666;
  padding: 6px 20px;
}

.p_dl__box__th li:first-child {
  width: 180px;
}

.p_dl__box__th li:nth-child(2) {
  width: 270px;
}

.p_dl__box__th li:nth-child(3) {
  width: calc(100% - 630px);
}

.p_dl__box__th li:nth-child(4) {
  width: 180px;
}

.p_dl__table li {
  border-bottom: 1px solid #EEF0F3;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p_dl__table li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0;
  }
  .p_dl__table li:first-child {
    padding-top: 10px;
  }
}

.p_dl__table li:last-child {
  border-bottom: 0;
}

.p_dl__table li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p_dl__table li dl {
    margin-bottom: 10px;
    padding: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.p_dl__table li dl:first-child {
  width: 180px;
}

@media screen and (max-width: 767px) {
  .p_dl__table li dl:first-child {
    width: 100%;
  }
}

.p_dl__table li dl:first-child dd {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.p_dl__table li dl:nth-child(2) {
  width: 270px;
}

@media screen and (max-width: 767px) {
  .p_dl__table li dl:nth-child(2) {
    width: 100%;
  }
}

.p_dl__table li dl:nth-child(2) dd {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.p_dl__table li dl:nth-child(3) {
  width: calc(100% - 630px);
}

@media screen and (max-width: 767px) {
  .p_dl__table li dl:nth-child(3) {
    width: 100%;
  }
}

.p_dl__table li dl:nth-child(4) {
  width: 180px;
}

@media screen and (max-width: 767px) {
  .p_dl__table li dl:nth-child(4) {
    width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .p_dl__table li dl:last-child {
    margin-bottom: 0;
  }
}

.p_dl__table li dl dt {
  display: none;
  font-size: 1.2rem;
  line-height: 18px;
  font-weight: bold;
  color: #222222;
}

@media screen and (max-width: 767px) {
  .p_dl__table li dl dt {
    display: block;
    width: 64px;
  }
}

.p_dl__table li dl dd {
  font-size: 1.4rem;
  line-height: 19px;
  color: #222222;
}

@media screen and (max-width: 767px) {
  .p_dl__table li dl dd {
    width: calc(100% - 64px);
    font-size: 1.2rem;
    position: relative;
  }
}

.p_dl__table .link {
  font-size: 1rem;
  color: #151643;
  margin-left: 10px;
  font-family: "Noto Sans Japanese", sans-serif;
  position: relative;
  padding-right: 8px;
  position: absolute;
  right: 20px;
}

@media screen and (max-width: 767px) {
  .p_dl__table .link {
    right: 5px;
  }
}

.p_dl__table .link:hover {
  opacity: 0.7;
}

.p_dl__table .link:after {
  content: '';
  width: 6px;
  height: 9px;
  background-image: url("../img/common/icon_right_blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 8px;
  position: absolute;
  right: -5px;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p_dl__table .link:after {
    top: 50%;
  }
}

.p_dl__table .btn {
  display: block;
  color: #fff;
  background-color: #245BD4;
  border-radius: 13px;
  line-height: 26px;
  width: 140px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p_dl__table .btn {
    width: 100%;
    line-height: 36px;
    font-size: 1.4rem;
    margin-top: 10px;
    border-radius: 18px;
  }
}

.p_dl__table .btn:hover {
  opacity: 0.7;
}

.p_dl_detail .tb_pur_confirm__rows.last {
  border-bottom: 0;
}

.p_dl_detail .tb_pur_confirm__rows .font_q {
  font-weight: 500;
}

.p_dl_detail .tb_regis_confirm th {
  padding: 10px 0;
}

.p_dl_detail .tb_regis_confirm td {
  padding: 10px 0 10px 30px;
}

.p_dl_detail__btn {
  font-size: 1.4rem;
  color: #151643;
  font-weight: bold;
  display: table;
  margin: 0 auto;
  margin-top: 60px;
}

.p_dl_detail__btn:hover {
  opacity: 0.7;
}

.p_dl_detail__btn img {
  margin-right: 12px;
}

.p_dl_detail .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p_dl_detail .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p_dl_detail .row .font_q {
  font-weight: 500;
  width: 100px;
  display: inline-block;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p_dl_detail .row .font_q {
    width: 100%;
    text-align: left;
    display: inline;
  }
}

.p_dl_detail .row .sp-only {
  margin: 0 2px;
  font-family: "Quicksand", sans-serif;
}

.p_dl_detail .row .first {
  width: calc(100% - 300px);
}

@media screen and (max-width: 767px) {
  .p_dl_detail .row .first {
    width: 100%;
  }
}

.billing_box .p_dl__box__th li:first-child {
  width: 180px;
}

.billing_box .p_dl__box__th li:nth-child(2) {
  width: calc(100% - 540px);
}

.billing_box .p_dl__box__th li:nth-child(3) {
  width: 100px;
  text-align: center;
}

.billing_box .p_dl__box__th li:nth-child(4) {
  width: 140px;
  text-align: center;
}

.billing_box .p_dl__box__th li:nth-child(5) {
  width: 120px;
  text-align: center;
}

.billing_box .p_dl__table li dl:first-child {
  width: 180px;
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table li dl:first-child {
    width: 100%;
  }
}

.billing_box .p_dl__table li dl:nth-child(2) {
  width: calc(100% - 540px);
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table li dl:nth-child(2) {
    width: 100%;
  }
}

.billing_box .p_dl__table li dl:nth-child(3) {
  width: 100px;
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table li dl:nth-child(3) {
    width: 100%;
  }
}

.billing_box .p_dl__table li dl:nth-child(3) dd {
  text-align: center;
  width: 100%;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table li dl:nth-child(3) dd {
    text-align: left;
    width: calc(100% - 64px);
  }
}

.billing_box .p_dl__table li dl:nth-child(4) {
  width: 140px;
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table li dl:nth-child(4) {
    width: 100%;
    margin-bottom: 10px;
  }
}

.billing_box .p_dl__table li dl:nth-child(4) dd {
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table li dl:nth-child(4) dd {
    text-align: left;
    width: calc(100% - 64px);
  }
}

.billing_box .p_dl__table li dl:nth-child(5) {
  width: 120px;
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table li dl:nth-child(5) {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.billing_box .p_dl__table li dl:nth-child(5) dd {
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table li dl:nth-child(5) dd {
    text-align: left;
    width: calc(100% - 64px);
  }
}

.billing_box .p_dl__table .btn {
  width: 100px;
}

@media screen and (max-width: 767px) {
  .billing_box .p_dl__table .btn {
    line-height: 32px;
    width: 221px;
  }
}

@media screen and (max-width: 359px) {
  .billing_box .p_dl__table .btn {
    width: 100%;
  }
}

.status_completed {
  color: #222222;
}

.status_processing {
  color: #FACD06;
}

.status_notpaid {
  color: #AC000C;
}

.user {
  padding-bottom: 60px;
  min-height: 100vh;
}

@media screen and (max-width: 767px) {
  .user {
    min-height: 30vh;
  }
}

.user .tb_pur_confirm__rows.st02 > dd {
  font-size: 1.4rem;
  color: #222222;
  line-height: 21px;
  padding-left: 60px;
}

@media screen and (max-width: 767px) {
  .user .tb_pur_confirm__rows.st02 > dd {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .user .tb_pur_confirm__rows.st02 > dt {
    font-size: 1.3rem;
  }
}

.user .tb_regis_confirm.st02 th {
  width: 160px;
}

@media screen and (max-width: 767px) {
  .user .tb_regis_confirm.st02 th {
    font-size: 1.3rem;
  }
}

.user .tb_regis_confirm.st02 td input {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .user .tb_regis_confirm.st02 tr.sp_st:last-child th {
    padding-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .user .tb_regis_confirm.st02 tr.sp_st:last-child td {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .user .tb_regis_confirm.st02 tr.sp_st th {
    border-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .user .tb_regis_confirm.st02 tr.sp_st td {
    padding-bottom: 25px;
  }
}

.user .upload_identity__tt {
  text-align: left;
  color: #AC000C;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .user .upload_identity__tt {
    font-size: 1.4rem;
  }
}

.user__text02 {
  font-size: 1.4rem;
  color: #222222;
  line-height: 19px;
}

@media screen and (max-width: 767px) {
  .user__text02 {
    font-size: 1.3rem;
  }
}

.user__text03 {
  font-size: 1.6rem;
  color: #222222;
  line-height: 19px;
  margin-bottom: 30px;
}

.user .regis_rows {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .user .regis_rows .label_block {
    font-size: 1.3rem;
  }
}

.user .gr_input_pur {
  border-top: 0;
}

@media screen and (max-width: 767px) {
  .user .gr_input_pur {
    margin-top: 5px;
  }
}

.user_block {
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .user_block {
    padding: 20px;
  }
}

.user_block.last {
  margin-top: 60px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .user_block.last {
    margin-top: 45px;
  }
}

.user_block .tb_regis_confirm th {
  width: 130px;
  border-bottom: 1px dashed #C8CED7;
}

@media screen and (max-width: 767px) {
  .user_block .tb_regis_confirm th {
    font-size: 1.2rem;
    width: 115px;
    padding: 10px 0;
  }
}

.user_block .tb_regis_confirm td {
  border-bottom: 1px dashed #C8CED7;
}

@media screen and (max-width: 767px) {
  .user_block .tb_regis_confirm td {
    padding: 10px 0 10px 10px;
    font-size: 1.2rem;
  }
}

.user_block .tb_regis_confirm td input {
  width: 100%;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #C8CED7;
  padding: 10px;
  color: #222222;
  background-color: #F6F9FC;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 18px;
}

.user_block .tb_regis_confirm td input.mw_200 {
  max-width: 200px;
}

.user_block .tb_regis_confirm td input.mw_300 {
  max-width: 300px;
}

.user_block .tb_regis_confirm td .btn {
  max-width: 140px;
  width: 100%;
  line-height: 26px;
  background-color: #245BD4;
  border-radius: 13px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin-left: 60px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .user_block .tb_regis_confirm td .btn {
    display: block;
    margin-left: 0;
    margin-top: 10px;
    max-width: 100%;
  }
}

.user_block .tb_regis_confirm td .btn:hover {
  opacity: 0.7;
}

.user_block .tb_regis_confirm td .text01 {
  font-size: 1.2rem;
  margin-left: 12px;
}

@media screen and (max-width: 767px) {
  .user_block .tb_regis_confirm td .text01 {
    display: none;
  }
}

.user_block .tb_regis_confirm tr:last-child td input {
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .user_block .tb_regis_confirm tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .user_block .tb_regis_confirm tr.sp_st {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .user_block .tb_regis_confirm tr.sp_st th {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .user_block .tb_regis_confirm tr.sp_st td {
    display: block;
    padding-left: 0;
    width: 100%;
  }
}

.user_block .tb_pur_confirm__rows.last {
  margin-bottom: 0;
}

.user_block .tb_pur_confirm__rows > dt {
  color: #151643;
  font-size: 1.6rem;
}

.user_block .tb_pur_confirm__rows > dd {
  font-size: 1.4rem;
  color: #222222;
  line-height: 21px;
}

.user_block .tb_pur_confirm__rows > dd .btnr {
  max-width: 240px;
  width: 100%;
  line-height: 26px;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 1.4rem;
  border-radius: 13px;
  background-color: #245BD4;
  float: right;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .user_block .tb_pur_confirm__rows > dd .btnr {
    float: none;
    max-width: 100%;
    margin-top: 10px;
  }
}

.user_block .tb_pur_confirm__rows > dd .btnr:hover {
  opacity: 0.7;
}

.user_block .tb_pur_confirm__rows > dd .btnr--st01 {
  background-color: #C7CFD8;
  color: #151643;
}

@media screen and (max-width: 767px) {
  .user_block .tb_pur_confirm__rows > dd .btnr--st01 {
    line-height: 40px;
    max-width: 240px;
    margin: 0 auto;
    margin-top: 25px;
    font-weight: bold;
  }
}

.user_block .tb_pur_confirm__rows.st_01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.user_block .tb_pur_confirm__rows.st_01 > dt {
  margin-bottom: 12px;
}

.user_block .tb_pur_confirm__rows.st_01 > dd {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .user_block .tb_pur_confirm__rows.st_01 > dd {
    display: block;
  }
}

.tb_entered .tb_regis_confirm {
  margin-top: 40px;
}

.tb_entered .tb_regis_confirm th, .tb_entered .tb_regis_confirm td {
  border-bottom: 1px solid #EEF0F3;
}

@media screen and (max-width: 767px) {
  .tb_entered .tb_regis_confirm th, .tb_entered .tb_regis_confirm td {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .tb_entered .tb_regis_confirm tr {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .tb_entered .tb_regis_confirm th {
    border-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .tb_entered .tb_regis_confirm td {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .tb_entered .btnr--st01 {
    line-height: 26px !important;
    max-width: 100% !important;
    font-weight: normal !important;
  }
}

.withdrawal_done .login_p__title {
  text-align: center;
  margin-top: 140px;
}

.withdrawal_done .c_text01 {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .address_sp .tb_pur_confirm__rows {
    padding-bottom: 35px !important;
    position: relative;
  }
  .address_sp .tb_pur_confirm__rows .btnr {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .login_p__back.sp-only {
    margin: 0 auto;
    display: table;
    margin-top: 40px;
    font-size: 1.4rem;
  }
}

.bank_acc {
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .bank_acc .radio-button.w_100 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.bank_acc .radio-button.w_100 .radio-button__label {
  max-width: 100px;
  line-height: 36px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #666666;
}

@media screen and (max-width: 767px) {
  .bank_acc .radio-button.w_100 .radio-button__label {
    max-width: 49%;
    margin-right: 2%;
  }
  .bank_acc .radio-button.w_100 .radio-button__label:last-child {
    margin-right: 0;
  }
}

.bank_acc .radio-button.w_120 {
  margin-bottom: 20px;
  margin-top: 30px;
}

.bank_acc .radio-button.w_120 .radio-button__label {
  max-width: 120px;
  line-height: 36px;
  font-weight: bold;
  color: #666666;
}

@media screen and (max-width: 767px) {
  .bank_acc .radio-button.w_120 .radio-button__label {
    max-width: 48%;
    margin-right: 2%;
    margin-bottom: 12px;
  }
  .bank_acc .radio-button.w_120 .radio-button__label.no_mg {
    margin-right: 0;
  }
}

.bank_acc .radio-button input:checked + .radio-button__label {
  color: #fff;
}

.bank_acc .regis_rows dd input.mw_320 {
  max-width: 320px;
}

@media screen and (max-width: 767px) {
  .bank_acc .regis_rows dd input.mw_320 {
    max-width: 100%;
  }
}

.bank_acc .flex_sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .bank_acc .regis_rows dd input.mw_180 {
    max-width: 100%;
  }
}

.bank_acc__btn01 {
  font-size: 1.4rem;
  color: #fff;
  line-height: 36px;
  display: inline-block;
  width: 120px;
  background-color: #245BD4;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .bank_acc__btn01 {
    width: 100%;
  }
}

.bank_acc__btn02 {
  font-size: 1.4rem;
  color: #fff;
  line-height: 36px;
  display: inline-block;
  width: 120px;
  background-color: #245BD4;
  border-radius: 6px;
  margin-left: 20px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .bank_acc__btn02 {
    margin-left: 10px;
    width: 100px;
  }
}

.bank_acc .gr_input_pur {
  padding-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #C8CED7;
}

@media screen and (max-width: 767px) {
  .bank_acc .gr_input_pur {
    padding-bottom: 20px;
    margin-top: 25px;
  }
}

.bank_acc .gr_input_pur .c_text01 {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .bank_acc .gr_input_pur .c_text01 {
    margin-bottom: 8px;
  }
}

.bank_acc .login_p__back {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .bank_acc .login_p__back {
    display: table;
    margin: 0 auto;
  }
}

.bank_acc .display_02, .bank_acc .display_03 {
  display: none;
}

@media screen and (max-width: 767px) {
  .bank_acc .c_text01 {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .bank_acc .regis_rows {
    margin-bottom: 17px;
  }
}

@media screen and (max-width: 767px) {
  .bank_acc .regis_rows:last-child .c_text01 {
    font-size: 1.2rem;
    line-height: 18px;
  }
}

.lst_bank {
  height: 200px;
  border-radius: 6px;
  border: 1px solid #C7CFD8;
  padding: 15px 20px;
  overflow-y: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .lst_bank {
    padding: 5px 10px;
    margin-bottom: 20px;
  }
}

.lst_bank table {
  width: 100%;
}

.lst_bank th {
  width: 170px;
  color: #245BD4;
  padding-right: 30px;
  font-size: 1.4rem;
  padding: 6px 0;
  text-align: left;
  line-height: 18px;
}

@media screen and (max-width: 767px) {
  .lst_bank th {
    padding-right: 10px;
    width: 140px;
    font-size: 1.3rem;
  }
}

.lst_bank th a {
  color: #245BD4;
  cursor: pointer;
}

.lst_bank td {
  font-size: 1.4rem;
  color: #222222;
  line-height: 18px;
}

@media screen and (max-width: 767px) {
  .lst_bank td {
    font-size: 1.3rem;
  }
}

.lst_bank--st01 tr:first-child th, .lst_bank--st01 tr:first-child td {
  font-size: 1.2rem;
  color: #666666;
}

@media screen and (max-width: 767px) {
  .lst_bank--st01 tr:first-child th, .lst_bank--st01 tr:first-child td {
    font-size: 1rem;
  }
}

.lst_bank--st01 td:nth-child(2) {
  width: 180px;
  padding-right: 30px;
}

@media screen and (max-width: 767px) {
  .lst_bank--st01 td:nth-child(2) {
    width: auto;
  }
}

.lst_bank--st01 td:nth-child(3) {
  width: 100px;
  padding-right: 30px;
}

@media screen and (max-width: 767px) {
  .lst_bank--st01 td:nth-child(3) {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .lst_bank--st01 td:nth-child(4) {
    display: none;
  }
}

.lst_text {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .lst_text {
    margin-bottom: 10px;
  }
}

.lst_text li {
  display: inline-block;
}

.lst_text li a {
  color: #245BD4;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  padding: 6px 10px;
}

.lable_tt {
  font-size: 1.2rem;
  display: block;
  width: 320px;
  margin-right: 20px;
  line-height: 19px;
}

@media screen and (max-width: 767px) {
  .lable_tt {
    width: 100%;
    margin-bottom: 6px;
  }
}

.lable_tt input {
  background-color: #EEF0F3;
}

.display_01 .c_text01 .u_bold {
  margin-right: 30px;
}

.display_01 .c_text02 {
  margin-bottom: 3px;
}

@media screen and (max-width: 767px) {
  .flex_sp.st {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.doc_confirm {
  min-height: 100vh;
}

@media screen and (max-width: 767px) {
  .doc_confirm {
    padding-bottom: 50px;
    min-height: 30vh;
  }
}

.doc_confirm .user__text02 {
  padding-left: 21px;
  margin-top: 10px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .doc_confirm .user__text02 {
    font-size: 1.2rem;
    line-height: 18px;
    padding-left: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .doc_confirm .c_text01 {
    font-size: 1.3rem;
    position: relative;
    padding-left: 20px;
  }
  .doc_confirm .c_text01 img {
    position: absolute;
    top: 2px;
    left: 0;
  }
}

.i_list {
  min-height: 100vh;
  padding-bottom: 60px;
}

.tb_i_list {
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .tb_i_list {
    padding: 15px;
  }
}

.tb_i_list__tablePC {
  width: 100%;
  border-collapse: collapse;
}

@media screen and (max-width: 767px) {
  .tb_i_list__tablePC {
    display: none;
  }
}

.tb_i_list__tablePC th {
  font-size: 1.2rem;
  line-height: 18px;
  font-weight: normal;
  color: #666666;
  padding: 5px 10px;
  background-color: #F7F9FC;
  text-align: left;
  border-collapse: collapse;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .tb_i_list__tablePC th {
    padding: 5px;
  }
}

.tb_i_list__tablePC th:first-child {
  padding: 10px 0;
}

.tb_i_list__tablePC td {
  font-size: 1.4rem;
  line-height: 21px;
  color: #222222;
  border-collapse: collapse;
  padding: 10px;
}

@media screen and (max-width: 1160px) and (min-width: 768px) {
  .tb_i_list__tablePC td {
    padding: 5px;
  }
}

.tb_i_list__tablePC td:first-child {
  padding: 10px 5px;
  text-align: center;
}

.tb_i_list .type {
  font-size: 1.4rem;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 24px;
}

.tb_i_list .type.left {
  background-color: #245BD4;
}

.tb_i_list .type.right {
  background-color: #3992E4;
}

.tb_i_list .tooltip {
  cursor: pointer;
  position: relative;
}

.tb_i_list .tooltip img {
  margin-left: 3px;
  vertical-align: inherit;
}

.tb_i_list .tooltip__note {
  font-size: 1rem;
  color: #222222;
  line-height: 15px;
  display: inline-block;
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #C7CFD8;
  position: absolute;
  width: auto;
  top: -56px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 4;
  display: none;
}

.tb_i_list .tooltip__note.one {
  width: 112px;
}

.tb_i_list .tooltip__note.two {
  width: 161px;
  top: -68px;
}

@media screen and (max-width: 767px) {
  .tb_i_list .tooltip__note.two {
    left: 60%;
  }
}

.tb_i_list__contSP {
  display: none;
}

@media screen and (max-width: 767px) {
  .tb_i_list__contSP {
    display: block;
  }
}

.tb_i_list__contSP ul li {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEF0F3;
}

.tb_i_list__contSP ul li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tb_i_list__contSP ul .first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.tb_i_list__contSP ul .first dl dt {
  width: auto;
}

.tb_i_list__contSP ul .first dl dd {
  width: auto;
  padding-left: 5px;
}

.tb_i_list__contSP ul .first__right {
  position: absolute;
  right: 0;
}

.tb_i_list__contSP ul .first .type {
  margin-right: 10px;
}

.tb_i_list__contSP ul dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
}

.tb_i_list__contSP ul dl dt {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  width: 80px;
}

.tb_i_list__contSP ul dl dd {
  font-size: 1.3rem;
  line-height: 18px;
  color: #222222;
  width: calc(100% - 80px);
  padding-left: 20px;
}

.tb_i_list__contSP ul .font_q {
  font-weight: 500;
}

.url {
  padding-bottom: 60px;
  min-height: 100vh;
}

.url .purchase_content {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .url .purchase_tab li {
    font-size: 1.4rem;
  }
}

.url .purchase__sort__case {
  margin-right: 0;
  border-right: 0;
  padding-right: 0;
}

.url .list_purchase__price p.color_01 {
  font-size: 1.4rem;
}

.url .list_purchase .exchange {
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .url .list_purchase .exchange {
    margin-left: 10px;
  }
}

.url .list_purchase li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.url .tb_pur_confirm__rows > dt {
  width: 180px;
  font-size: 1.4rem;
  color: #222222;
}

@media screen and (max-width: 767px) {
  .url .tb_pur_confirm__rows > dt {
    width: 100%;
  }
}

.url .tb_pur_confirm__rows > dd {
  width: calc(100% - 180px);
  padding-left: 60px;
}

@media screen and (max-width: 767px) {
  .url .tb_pur_confirm__rows > dd {
    width: 100%;
    padding-left: 0;
  }
}

.url .tb_pur_confirm__rows > dd .c_text02 {
  color: #AC000C;
  margin-top: 5px;
}

.url .tb_regis_confirm td input {
  width: 100%;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #C8CED7;
  padding: 10px;
  color: #222222;
  background-color: #F6F9FC;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 18px;
  max-width: 300px;
}

.url .card-drop {
  max-width: 300px;
}

.url .tb_pur_confirm__rows.last {
  margin-bottom: 0;
}

.url .user_block {
  padding: 25px 20px;
}

.url .purchase_content {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.url #tab_02 {
  margin-top: 30px;
}

.url .btn-grad {
  font-size: 1.4rem;
  line-height: 40px;
  height: 40px;
}

@media screen and (max-width: 767px) {
  .url .list_purchase__btn .btn-01 {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .url .user_block .tb_regis_confirm tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .url .user_block .tb_regis_confirm tr:nth-child(2) td {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .url .user_block .tb_regis_confirm th {
    width: 100%;
    border-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .url .user_block .tb_regis_confirm td {
    width: 100%;
    padding-left: 0;
  }
}

.dl {
  min-height: 100vh;
}

@media screen and (max-width: 767px) {
  .dl {
    min-height: auto;
    padding-bottom: 60px;
  }
}

.dl__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .dl__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.dl__nav > li {
  width: 48%;
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-right: 4%;
}

@media screen and (max-width: 767px) {
  .dl__nav > li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}

.dl__nav > li:nth-child(2n) {
  margin-right: 0;
}

.lst_dec {
  list-style: decimal;
  padding-left: 30px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .lst_dec {
    padding-left: 35px;
  }
}

.lst_dec.no-dec {
  list-style: none;
  padding-left: 21px;
}

.lst_dec.no-dec li:before {
  left: -21px;
}

.lst_dec li {
  margin-bottom: 20px;
  color: #245BD4;
  font-size: 1.4rem;
  position: relative;
}

.lst_dec li:last-child {
  margin-bottom: 0;
}

.lst_dec li a {
  color: #245BD4;
  font-size: 1.4rem;
  line-height: 19px;
  text-decoration: underline;
}

.lst_dec li a:hover {
  text-decoration: none;
}

.lst_dec li:before {
  content: '';
  width: 11px;
  height: 14px;
  background: url("../img/common/icon_pdf.svg");
  background-size: contain;
  position: absolute;
  left: -30px;
  top: 3px;
}

@media screen and (max-width: 767px) {
  .lst_dec li:before {
    left: -35px;
  }
}

.lanking {
  padding-bottom: 60px;
}

.lanking .tb_column3 {
  margin-top: 20px;
}

.lanking .tb_column3 tr:nth-child(n+7) {
  display: table-row;
}

.lanking .top_nav_block {
  display: block;
}

.lanking .top_nav_block > li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  width: 485px;
}

@media screen and (max-width: 767px) {
  .lanking .top_nav_block > li {
    width: 100%;
  }
}

.tb_column3 td.price {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.tb_column3 td.number.bg_gold span {
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.tb_column3 td.number.bg_gold span:before {
  content: '';
  width: 24px;
  height: 30px;
  background-image: url("../img/common/gold.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .tb_column3 td.number.bg_gold span:before {
    width: 20px;
    height: 24px;
  }
}

.tb_column3 td.number.bg_silver span {
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.tb_column3 td.number.bg_silver span:before {
  content: '';
  width: 24px;
  height: 30px;
  background-image: url("../img/common/silver.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .tb_column3 td.number.bg_silver span:before {
    width: 20px;
    height: 24px;
  }
}

.tb_column3 td.number.bg_bronze span {
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.tb_column3 td.number.bg_bronze span:before {
  content: '';
  width: 24px;
  height: 30px;
  background-image: url("../img/common/bronze.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .tb_column3 td.number.bg_bronze span:before {
    width: 20px;
    height: 24px;
  }
}

.p_list .top_nav_block > li.img {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p_list .top_nav_block > li.img {
    margin-top: 25px;
  }
}

.p_list .top_nav_block > li.img img {
  max-width: 100%;
}

.tb_column3 td.name {
  white-space: nowrap;
}

.bonus {
  padding-bottom: 30px;
}

.bonus__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.bonus__top .card-drop {
  max-width: 280px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .bonus__top .card-drop {
    max-width: 180px;
  }
}

.mg {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .mg {
    margin-bottom: 20px;
  }
}

.bonus_i .lst_bonus__total {
  display: table;
  margin-left: auto;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 20px;
  padding-bottom: 0;
}

.bonus_i .lst_bonus__total span.money {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .bonus_i .lst_bonus__total {
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid #EEF0F3;
    margin-top: 20px;
  }
}

.bonus_i .tb_i_list__contSP ul dl dt {
  font-weight: bold;
}

.bonus_i .tb_i_list__contSP ul dl dd {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  padding-left: 0;
  font-weight: 500;
}

.bonus_u .bonus_block {
  max-width: 485px;
}

.bonus_u .bonus_block .tb_column3 td span.font_q {
  margin-right: 10px;
  width: 80px;
  display: inline-block;
}

.bonus_u .bonus_block .tb_column3 td:first-child {
  width: 200px;
}

.bonus_u .lst_bonus__total {
  display: table;
  margin-left: auto;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 20px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.bonus_u .lst_bonus__total span.money {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .bonus_u .lst_bonus__total {
    padding: 20px 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .bonus_u .bonus_block .tb_column3 {
    display: block;
  }
  .bonus_u .bonus_block .tb_column3 td {
    font-size: 1.4rem;
    padding: 20px 10px;
  }
  .bonus_u .bonus_block .tb_column3 td span.font_q {
    margin-right: 0;
  }
}

.bonus_block {
  padding: 20px;
  border-radius: 6px;
  background-color: #fff;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .bonus_block {
    margin-bottom: 25px;
  }
}

.bonus_block .tb_pur_confirm__rows {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
  position: relative;
}

.bonus_block .tb_pur_confirm__rows > dt {
  font-size: 1.6rem;
  width: 150px;
}

@media screen and (max-width: 767px) {
  .bonus_block .tb_pur_confirm__rows > dt {
    font-size: 1.4rem;
    width: 100%;
  }
}

.bonus_block .tb_pur_confirm__rows > dd {
  font-size: 1.4rem;
  color: #222222;
  line-height: 21px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .bonus_block .tb_pur_confirm__rows > dd {
    font-size: 1.2rem;
  }
}

.bonus_block .tb_pur_confirm__rows > dd.st01 {
  font-weight: normal;
}

.bonus_block .tb_pur_confirm__rows > dd .price {
  font-size: 2rem;
  font-family: "Quicksand", sans-serif;
  color: #F3757E;
  margin-left: 30px;
}

.bonus_block .tb_pur_confirm__rows > dd .color_01 {
  font-size: 1.4rem;
  font-family: "Quicksand", sans-serif;
  color: #F3757E;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .bonus_block .tb_pur_confirm__rows > dd .color_01 {
    margin-left: 0;
    font-size: 1.6rem;
  }
}

.bonus_block .tb_pur_confirm__rows > dd .btn-01 {
  max-width: 260px;
  width: 100%;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  background-color: #C7CFD8;
  border-radius: 13px;
  display: inline-block;
  font-size: 1.4rem;
  color: #151643;
  float: right;
}

@media screen and (max-width: 767px) {
  .bonus_block .tb_pur_confirm__rows > dd .btn-01 {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 1.2rem;
    max-width: 140px;
  }
}

.bonus_block .tb_pur_confirm__rows > dd .btn-01:hover {
  opacity: 0.7;
}

.bonus_block .tb_pur_confirm__rows > dd .btn-02 {
  max-width: 260px;
  width: 100%;
  line-height: 26px;
  text-align: center;
  background-color: #245BD4;
  border-radius: 13px;
  display: inline-block;
  color: #fff;
  float: right;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .bonus_block .tb_pur_confirm__rows > dd .btn-02 {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 1.2rem;
    max-width: 150px;
  }
}

.bonus_block .tb_pur_confirm__rows > dd .btn-02:hover {
  background-color: #FACD06;
}

.bonus_block .tb_pur_confirm__rows > dd .btn-02:before {
  content: '';
  width: 10px;
  height: 8px;
  background: url("../img/common/icon_white_bottom.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 8px;
}

.bonus_block .tb_pur_confirm__rows > dd .btn-02.transform:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.bonus_block .tb_pur_confirm__rows > dd .text_top {
  margin-bottom: 18px;
}

.bonus_block .gr_input_pur {
  border-top: 0;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .bonus_block .gr_input_pur {
    margin-top: 0;
  }
}

.bonus_block .gr_input_pur .lst_bonus__left {
  width: 305px;
}

@media screen and (max-width: 767px) {
  .bonus_block .gr_input_pur .lst_bonus__left {
    width: calc(100% - 80px);
  }
}

.bonus_block .gr_input_pur .lst_bonus li:last-child {
  border-bottom: 0;
}

.bonus_block .gr_input_pur .lst_bonus li:first-child {
  border-top: 0;
}

.bonus_block .tooltip {
  cursor: pointer;
  position: relative;
}

.bonus_block .tooltip img {
  margin-left: 5px;
  vertical-align: inherit;
}

.bonus_block .tooltip__note {
  font-size: 1rem;
  color: #222222;
  line-height: 15px;
  display: inline-block;
  font-weight: normal;
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #C7CFD8;
  position: absolute;
  width: auto;
  top: -95px;
  left: 0;
  z-index: 4;
  display: none;
  width: 320px;
}

@media screen and (max-width: 767px) {
  .bonus_block .tooltip__note {
    left: -20px;
  }
}

@media screen and (max-width: 359px) {
  .bonus_block .tooltip__note {
    width: 280px;
  }
}

.bonus_block .tb_column3 {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .bonus_block .tb_column3 {
    display: none;
  }
}

.bonus_block .tb_column3 th {
  text-align: right;
  padding: 6px 20px;
}

.bonus_block .tb_column3 th:first-child {
  text-align: left;
  width: 150px;
}

.bonus_block .tb_column3 td {
  font-family: "Quicksand", sans-serif;
  padding: 20px;
  text-align: right;
  font-weight: 500;
  border-bottom: 1px solid #EEF0F3;
}

.bonus_block .tb_column3 td:first-child {
  text-align: left;
  width: 150px;
}

.lst_bonus {
  margin-top: 5px;
}

.lst_bonus li {
  border-top: 1px dashed #C8CED7;
  *zoom: 1;
  padding-top: 3px;
  padding-bottom: 3px;
}

.lst_bonus li:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .lst_bonus li {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.lst_bonus li:last-child {
  border-bottom: 1px solid #EEF0F3;
}

.lst_bonus li p {
  font-weight: normal;
  font-size: 1.2rem;
  float: left;
  color: #222222;
}

.lst_bonus li .hs-child {
  *zoom: 1;
}

.lst_bonus li .hs-child:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

.lst_bonus__left {
  width: 310px;
}

@media screen and (max-width: 767px) {
  .lst_bonus__left {
    width: calc(100% - 80px);
  }
}

.lst_bonus__right {
  width: 80px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500 !important;
  text-align: right;
}

.lst_bonus__right a {
  color: #245BD4;
  text-decoration: underline;
}

.lst_bonus__total {
  width: 390px;
  text-align: right;
  color: #222222;
  font-size: 1.2rem;
  padding-top: 5px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .lst_bonus__total {
    width: 100%;
    text-align: left;
  }
}

.lst_bonus__total span.money {
  font-family: "Quicksand", sans-serif;
  margin-left: 100px;
}

@media screen and (max-width: 767px) {
  .lst_bonus__total span.money {
    float: right;
  }
}

.lst_bonus_child {
  padding-left: 110px;
  border-top: 1px solid #EEF0F3;
}

@media screen and (max-width: 767px) {
  .lst_bonus_child {
    padding-left: 0;
  }
}

.lst_bonus_child__left {
  width: 135px;
}

@media screen and (max-width: 767px) {
  .lst_bonus_child__left {
    width: calc(100% - 80px);
  }
}

.lst_bonus_child li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .lst_bonus_child li {
    padding-left: 60px;
  }
}

.lst_bonus_child li:first-child {
  border-top: 0;
}

.lst_bonus_child li p {
  float: none;
}

.bonus_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.bonus_dl > dt {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 18px;
  width: 60px;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .bonus_dl > dt {
    width: 50px;
    padding-top: 6px;
  }
}

.bonus_dl > dt.left {
  color: #245BD4;
}

.bonus_dl > dt.right {
  color: #3992E4;
}

.bonus_dl > dd {
  width: calc(100% - 60px);
}

@media screen and (max-width: 767px) {
  .bonus_dl > dd {
    width: calc(100% - 50px);
  }
}

.bonus_dl > dd .lst_bonus li:last-child {
  border-top: 1px solid #EEF0F3;
}

.bonus_dl > dd .lst_bonus__left {
  width: 245px !important;
}

@media screen and (max-width: 767px) {
  .bonus_dl > dd .lst_bonus__left {
    width: calc(100% - 80px) !important;
  }
}

.point {
  padding-bottom: 40px;
}

.point .c_text02.textright {
  display: table;
  margin-left: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .point .c_text02.textright {
    margin-bottom: 35px;
  }
}

.point .c_text02.textright span {
  margin-left: 10px;
}

.point_block {
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .point_block {
    padding: 20px;
    margin-bottom: 25px;
  }
}

.point_block--top {
  padding: 30px 20px;
  margin-bottom: 40px;
}

.point_block.mb0 {
  margin-bottom: 8px;
}

.tb_point01 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .tb_point01 {
    margin-top: 12px;
    margin-bottom: 0;
  }
}

.tb_point01 th {
  font-size: 1.2rem;
  color: #666666;
  padding: 6px 20px;
  background-color: #F7F9FC;
  border: 1px solid #C7CFD8;
  border-collapse: collapse;
  font-weight: normal;
  line-height: 17px;
}

@media screen and (max-width: 767px) {
  .tb_point01 th {
    padding: 5px;
    font-size: 1rem;
    line-height: 15px;
  }
}

.tb_point01 td {
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  color: #222222;
  padding: 6px 20px;
  text-align: center;
  border: 1px solid #C7CFD8;
  border-collapse: collapse;
}

@media screen and (max-width: 767px) {
  .tb_point01 td {
    padding: 5px;
  }
}

.tb_point01 td:first-child {
  font-size: 1.3rem;
}

.tb_point01 .tooltip {
  cursor: pointer;
  position: relative;
}

.tb_point01 .tooltip img {
  margin-left: 3px;
  vertical-align: inherit;
}

.tb_point01 .tooltip__note {
  font-size: 1rem;
  color: #222222;
  line-height: 15px;
  display: inline-block;
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #C7CFD8;
  position: absolute;
  width: auto;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 4;
  display: none;
  width: 140px;
}

.nav_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .nav_point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.nav_point li {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .nav_point li {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav_point li .c-tt05 {
    margin-bottom: 0;
    margin-right: 20px;
    width: 65px;
  }
  .nav_point li:last-child {
    padding-bottom: 0;
  }
}

.nav_point li + li {
  border-left: 1px dotted #151643;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .nav_point li + li {
    border-top: 1px dotted #151643;
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.nav_point__text01 {
  font-size: 1.4rem;
  color: #222222;
  text-align: center;
}

.nav_point__text01 span {
  font-size: 1.6rem;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  margin-right: 5px;
}

.nav_point .c-tt05 {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .nav_point__spright {
    width: calc(100% - 85px);
  }
}

.nav_point__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.nav_point__dl.left {
  color: #245BD4;
}

.nav_point__dl.right {
  color: #3992E4;
}

@media screen and (max-width: 767px) {
  .nav_point__dl.right {
    margin-bottom: 0;
  }
}

.nav_point__dl dt {
  font-size: 1.3rem;
  line-height: 19px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.nav_point__dl dd {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.nav_point__dl01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav_point__dl01 dt, .nav_point__dl01 dd {
  font-size: 1.2rem;
  color: #222222;
  width: 50%;
  margin-bottom: 3px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.nav_point__dl01 dd {
  text-align: right;
}

.nav_point__dl01 dt.other {
  font-family: "Noto Sans Japanese", sans-serif;
  margin-top: 6px;
}

.nav_point__dl01 .mt6 {
  margin-top: 6px;
}

.nav_point__total {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  padding-top: 8px;
  border-top: 1px solid #EEF0F3;
  margin-top: 8px;
  *zoom: 1;
}

.nav_point__total:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

.nav_point__total span {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  float: right;
}

.nav_point__dl02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav_point__dl02 dt, .nav_point__dl02 dd {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  line-height: 27px;
  width: 25%;
  border-bottom: 1px solid #EEF0F3;
}

.nav_point__dl02 dt.noborder, .nav_point__dl02 dd.noborder {
  border-bottom: 0;
}

.nav_point__dl02 dd {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .nav_point__dl02 dd {
    font-size: 1.4rem;
  }
}

.nav_point_01 {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .nav_point_01 {
    margin-top: 0;
  }
}

.nav_point_01 .c-tt05 {
  margin-bottom: 12px;
}

.nav_point_01 > li {
  position: relative;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .nav_point_01 > li {
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .nav_point_01 > li .c-tt05 {
    margin-bottom: 0;
    margin-right: 20px;
    width: 65px;
  }
  .nav_point_01 > li:last-child {
    padding-bottom: 0 !important;
  }
}

.nav_point_01 > li:nth-child(2n+1) {
  width: 25%;
}

.nav_point_01 > li:nth-child(2n+1):after {
  content: '';
  height: calc(100% - 15px);
  width: 1px;
  border-right: 1px dotted #151643;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .nav_point_01 > li:nth-child(2n+1):after {
    display: none;
  }
}

.nav_point_01 > li:nth-child(2) {
  width: 75%;
}

.nav_point_01 > li:nth-child(2):after {
  content: '';
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px dotted #151643;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .nav_point_01 > li:nth-child(2):after {
    display: none;
  }
}

.nav_point_01 > li:nth-child(2n) {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .nav_point_01 > li:nth-child(2n) {
    padding-left: 0;
  }
}

.nav_point_01 > li:nth-child(3) {
  padding-top: 10px;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .nav_point_01 > li:nth-child(3) {
    padding-right: 0;
  }
}

.nav_point_01 > li:nth-child(3):after {
  bottom: 0;
  top: auto;
}

.nav_point_01 > li:nth-child(3):before {
  content: '';
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px dotted #151643;
  position: absolute;
  left: 0;
  top: -2px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .nav_point_01 > li:nth-child(3):before {
    display: none;
  }
}

.nav_point_01 > li:nth-child(4) {
  padding-top: 10px;
  width: 75%;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .nav_point_01 > li + li {
    border-top: 1px dotted #151643;
  }
}

.nav_point_01__text {
  font-size: 1.2rem;
  color: #222222;
  text-align: center;
  margin-top: 50px;
}

.nav_point_01__text span {
  font-size: 1.6rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  margin-left: 8px;
}

.nav_point_01__text02 {
  font-size: 1rem;
  line-height: 15px;
  color: #222222;
  margin-top: 10px;
}

.nav_point_01 .nav_point__total span {
  font-size: 1.2rem;
}

.nav_point_01 .c-tt05.mb30 {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .nav_point_01 .c-tt05.mb30 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .nav_point_01 .nav_point_01__text {
    margin-top: 0;
  }
}

.nav_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .nav_type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.nav_type > li {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .nav_type > li {
    width: 100%;
  }
  .nav_type > li:last-child .nav_number li:last-child {
    margin-bottom: 0;
  }
}

.nav_type__head {
  font-size: 1.3rem;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 12px;
  padding-left: 6px;
}

.nav_type__head.left {
  background-color: #245BD4;
}

.nav_type__head.right {
  background-color: #3992E4;
}

@media screen and (max-width: 767px) {
  .nav_type .nav_point_01__text {
    text-align: left;
    margin-top: 17px;
  }
  .nav_type .nav_point_01__text span {
    float: right;
  }
}

.nav_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .nav_number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.nav_number li {
  width: 46.5%;
}

@media screen and (max-width: 767px) {
  .nav_number li {
    width: 100%;
    margin-bottom: 15px;
  }
}

.nav_number__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav_number__dl dt, .nav_number__dl dd {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  margin-bottom: 3px;
  width: 50%;
}

.nav_number__dl dd {
  text-align: right;
}

.nav_number__dl.total {
  padding-top: 3px;
  border-top: 1px solid #EEF0F3;
  margin-top: 3px;
}

.nav_number__dl.total dd {
  font-weight: 600;
}

.nav_number__dl.st01 dt {
  width: 85%;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .nav_number__dl.st01 dt {
    margin-bottom: 5px;
  }
}

.nav_number__dl.st01 dd {
  width: 15%;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .nav_number__dl.st01 dd {
    margin-bottom: 5px;
  }
}

.nav_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .nav_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.nav_block .bonus_block {
  width: 32%;
}

@media screen and (max-width: 767px) {
  .nav_block .bonus_block {
    width: 100%;
  }
}

.nav_block .bonus_block .nav_point__dl.right {
  margin-bottom: 0;
}

.nav_block .bonus_block .nav_point_01__text {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .nav_block .bonus_block .nav_point_01__text {
    margin-top: 12px;
  }
}

.s_point {
  padding-bottom: 60px;
  min-height: 100vh;
}

.s_point .point_block .tb_pur_confirm__rows {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.s_point .point_block .tb_pur_confirm__rows > dt {
  color: #151643;
}

@media screen and (max-width: 767px) {
  .s_point .point_block .tb_pur_confirm__rows > dt {
    font-size: 1.4rem;
  }
}

.s_point .point_block .tb_pur_confirm__rows > dd {
  padding-left: 60px;
}

@media screen and (max-width: 767px) {
  .s_point .point_block .tb_pur_confirm__rows > dd {
    padding-left: 0;
  }
}

.s_point .p_dl__table li {
  padding: 20px 0;
}

.s_point .p_dl__table li:last-child {
  padding-bottom: 0;
}

.s_point .p_dl__box__th li:nth-child(1) {
  width: calc(100% - 380px);
}

.s_point .p_dl__table li dl:nth-child(1) {
  width: calc(100% - 380px);
}

@media screen and (max-width: 767px) {
  .s_point .p_dl__table li dl:nth-child(1) {
    width: 100%;
  }
}

.s_point .p_dl__box__th li:nth-child(2) {
  width: 120px;
}

.s_point .p_dl__table li dl:nth-child(2) {
  width: 120px;
}

@media screen and (max-width: 767px) {
  .s_point .p_dl__table li dl:nth-child(2) {
    width: 100%;
  }
}

.s_point .p_dl__box__th li:nth-child(3) {
  width: 130px;
}

.s_point .p_dl__table li dl:nth-child(3) {
  width: 130px;
}

@media screen and (max-width: 767px) {
  .s_point .p_dl__table li dl:nth-child(3) {
    width: 100%;
  }
}

.s_point .p_dl__box__th li:nth-child(4) {
  width: 130px;
}

.s_point .p_dl__table li dl:nth-child(4) {
  width: 130px;
}

@media screen and (max-width: 767px) {
  .s_point .p_dl__table li dl:nth-child(4) {
    width: 100%;
  }
}

.s_point .p_dl__box__th {
  margin-top: 12px;
}

.lst_s_p li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .lst_s_p li {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.lst_s_p li .left {
  font-size: 1.4rem;
  font-weight: bold;
  color: #151643;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .lst_s_p li .left {
    font-size: 1.2rem;
    width: 130px;
    line-height: 18px;
  }
}

.lst_s_p li .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .lst_s_p li .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% - 130px);
    padding-left: 10px;
  }
}

.lst_s_p li .right p {
  font-size: 1.4rem;
  width: 150px;
}

@media screen and (max-width: 767px) {
  .lst_s_p li .right p {
    width: 100%;
    margin-bottom: 8px;
  }
}

.lst_s_p li .right p:last-child {
  margin-left: 60px;
}

@media screen and (max-width: 767px) {
  .lst_s_p li .right p:last-child {
    margin-left: 0;
  }
}

.lst_s_p li .right p span {
  font-size: 1.6rem;
  display: inline-block;
  width: 100px;
  margin-left: 6px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .lst_s_p li .right p span {
    font-size: 1.4rem;
    float: right;
  }
}

.lst_s_p li.total {
  font-weight: bold;
  padding-top: 9px;
  border-top: 1px solid #EEF0F3;
  margin-bottom: 0;
}

.lst_s_p li.total .color_1 {
  color: #245BD4;
}

.lst_s_p li.total .color_2 {
  color: #3A92E4;
}

@media screen and (max-width: 767px) {
  .lst_s_p li.total .color_2 {
    margin-bottom: 0;
  }
}

.g_purchase {
  min-height: 100vh;
}

@media screen and (max-width: 767px) {
  .g_purchase {
    min-height: auto;
    padding-bottom: 40px;
  }
}

.g_purchase .p_dl__box__th {
  background-color: transparent;
}

.g_purchase .p_dl__box__th li {
  font-size: 1.3rem;
  padding: 6px 15px;
}

.g_purchase .p_dl__box__th li:first-child {
  padding-left: 0;
}

.g_purchase .p_dl__table li dl {
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .g_purchase .p_dl__table li dl {
    padding: 0;
  }
}

.g_purchase .p_dl__box__th li:not(:first-child) {
  text-align: center;
}

.g_purchase .p_dl__table li dl:not(:first-child) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.g_purchase .p_dl__box__th li:nth-child(1) {
  width: calc(100% - 360px);
}

.g_purchase .p_dl__table li dl:nth-child(1) {
  width: calc(100% - 360px);
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .g_purchase .p_dl__table li dl:nth-child(1) {
    width: 100%;
  }
}

.g_purchase .p_dl__box__th li:nth-child(2) {
  width: 90px;
}

.g_purchase .p_dl__table li dl:nth-child(2) {
  width: 90px;
}

@media screen and (max-width: 767px) {
  .g_purchase .p_dl__table li dl:nth-child(2) {
    width: 100%;
  }
}

.g_purchase .p_dl__box__th li:nth-child(3) {
  width: 90px;
}

.g_purchase .p_dl__table li dl:nth-child(3) {
  width: 90px;
}

@media screen and (max-width: 767px) {
  .g_purchase .p_dl__table li dl:nth-child(3) {
    width: 100%;
  }
}

.g_purchase .p_dl__box__th li:nth-child(4) {
  width: 90px;
}

.g_purchase .p_dl__table li dl:nth-child(4) {
  width: 90px;
}

@media screen and (max-width: 767px) {
  .g_purchase .p_dl__table li dl:nth-child(4) {
    width: 100%;
    margin-bottom: 10px;
  }
}

.g_purchase .p_dl__box__th li:nth-child(5) {
  width: 90px;
}

.g_purchase .p_dl__table li dl:nth-child(5) {
  width: 90px;
}

@media screen and (max-width: 767px) {
  .g_purchase .p_dl__table li dl:nth-child(5) {
    width: 100%;
  }
}

.g_purchase .p_dl__table li {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .g_purchase .p_dl__table li {
    padding: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.g_purchase .p_dl__table li:last-child {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .g_purchase .p_dl__table li:last-child {
    margin-bottom: 0;
  }
}

.bcp {
  min-height: 100vh;
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .bcp {
    min-height: auto;
  }
}

.bcp .btn-grad {
  margin-bottom: 60px;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .bcp .btn-grad {
    margin-bottom: 30px;
  }
}

.bcp .btn-grad.pc_tab {
  display: block;
}

@media screen and (max-width: 767px) {
  .bcp .btn-grad.pc_tab {
    display: none;
  }
}

.bcp .c-tt06 {
  margin-bottom: 16px;
}

.nav_bcp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .nav_bcp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.nav_bcp__label {
  font-size: 1.4rem;
  font-weight: bold;
  color: #222222;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .nav_bcp__label {
    margin-bottom: 15px;
    display: block;
  }
}

.nav_bcp__top {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .nav_bcp__top {
    margin-bottom: 20px;
  }
}

.nav_bcp__top input {
  width: 100%;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #C8CED7;
  padding: 10px;
  color: #222222;
  background-color: #fff;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 18px;
  max-width: 208px;
}

@media screen and (max-width: 767px) {
  .nav_bcp__top input {
    max-width: 150px;
  }
}

@media screen and (max-width: 374px) and (min-width: 360px) {
  .nav_bcp__top input {
    max-width: 130px;
  }
}

@media screen and (max-width: 359px) {
  .nav_bcp__top input {
    max-width: 107px;
  }
}

.nav_bcp__top input.bg {
  background-color: #F6F9FC;
}

.nav_bcp__top input.border_red {
  border: 1px solid #960000;
  background-color: #FFF9F8;
}

.nav_bcp__btn01 {
  font-size: 1.4rem;
  color: #fff;
  width: 70px;
  background-color: #245BD4;
  border-radius: 13px;
  text-align: center;
  display: inline-block;
  height: 26px;
  margin-left: 20px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav_bcp__btn01 {
    margin-left: 9px;
    width: 60px;
  }
}

@media screen and (max-width: 374px) and (min-width: 360px) {
  .nav_bcp__btn01 {
    margin-left: 10px;
  }
}

@media screen and (max-width: 359px) {
  .nav_bcp__btn01 {
    margin-left: 3px;
  }
}

.nav_bcp__btn01.st01 {
  background-color: #C7CFD8;
  color: #151643;
}

.nav_bcp__dl {
  padding-bottom: 10px;
  border-bottom: 1px solid #EEF0F3;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav_bcp__dl.noborder {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.nav_bcp__dl dt {
  font-size: 1.4rem;
  color: #151643;
  font-weight: bold;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl dt {
    font-size: 1.2rem;
  }
}

.nav_bcp__dl dd {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl dd {
    font-size: 1.4rem;
  }
}

.nav_bcp__dl dd p {
  font-size: 1.4rem;
}

.nav_bcp__dl dd p span {
  font-size: 1.6rem;
  width: 140px;
  display: inline-block;
  margin-left: 10px;
  text-align: right;
  float: right;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl dd p span {
    font-size: 1.4rem;
    width: 120px;
  }
}

.nav_bcp__dl dd p.left {
  color: #245BD4;
}

.nav_bcp__dl dd p.right {
  color: #3992E4;
}

.nav_bcp__dl02 {
  border-bottom: 1px solid #EEF0F3;
  padding-bottom: 6px;
  margin-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl02 {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.nav_bcp__dl02:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.nav_bcp__dl02 dt, .nav_bcp__dl02 dd {
  font-size: 1.4rem;
  color: #222222;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl02 dt, .nav_bcp__dl02 dd {
    font-size: 1.2rem;
    line-height: 18px;
  }
}

.nav_bcp__dl02 dt {
  width: 120px;
  margin-right: 20px;
}

.nav_bcp__dl02.st01 {
  margin-bottom: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl02.st01 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.nav_bcp__dl02.st01:last-child {
  margin-bottom: 0;
}

.nav_bcp__dl02.st01 dt {
  color: #151643;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl02.st01 dt {
    width: 80px;
    margin-right: 0;
  }
}

.nav_bcp__dl02.st01 dd {
  font-weight: bold;
  font-size: 1.6rem;
  width: calc(100% - 140px);
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl02.st01 dd {
    font-size: 1.4rem;
    width: calc(100% - 80px);
    padding-left: 10px;
  }
}

.nav_bcp__dl02.st01 dd label {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl02.st01 dd label {
    font-size: 1.2rem;
  }
}

.nav_bcp__dl02.st01 dd label input {
  width: 100%;
  max-width: 240px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #C8CED7;
  padding: 10px;
  color: #222222;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 18px;
  margin-right: 6px;
}

@media screen and (max-width: 767px) {
  .nav_bcp__dl02.st01 dd label input {
    max-width: 170px;
  }
}

@media screen and (max-width: 360px) {
  .nav_bcp__dl02.st01 dd label input {
    max-width: 160px;
  }
}

@media screen and (max-width: 359px) {
  .nav_bcp__dl02.st01 dd label input {
    max-width: 120px;
  }
}

.nav_bcp__dl02.st01 dd label input.border_red {
  border: 1px solid #AC000C;
  background-color: #FFF9F8;
}

.nav_bcp .group_btn01 {
  display: none;
}

.nav_bcp .group_btn02 {
  display: none;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .nav_bcp .group_btn02 {
    margin-left: 10px;
  }
}

.point_block.w_35 {
  width: 350px;
}

@media screen and (max-width: 767px) {
  .point_block.w_35 {
    width: 100%;
  }
}

.point_block.w_75 {
  width: calc(100% - 380px);
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .point_block.w_75 {
    width: 100%;
  }
}

.h_point {
  min-height: 100vh;
}

@media screen and (max-width: 767px) {
  .h_point {
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .h_point .c-tt04 {
    font-size: 1.2rem;
  }
}

.h_point .c-tt04 span {
  float: right;
  font-weight: normal;
}

.nav_h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .nav_h {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 25px;
  }
}

.nav_h .point_block {
  width: 48%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav_h .point_block {
    width: 100%;
  }
}

.nav_h__text {
  font-size: 2.6rem;
  text-align: center;
  line-height: 39px;
  color: #222222;
  font-weight: bold;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .nav_h__text {
    font-size: 2rem;
    line-height: 30px;
    margin-top: 10px;
  }
}

.nav_h .border_abs {
  width: 124px;
  height: 118px;
  background: url("../img/common/border.svg");
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  text-align: center;
  padding-left: 10px;
  padding-top: 32px;
  position: absolute;
  top: -20px;
  right: 10px;
}

@media screen and (max-width: 767px) {
  .nav_h .border_abs {
    font-size: 1rem;
    line-height: 13px;
    width: 95px;
    height: 90px;
    padding-top: 25px;
    right: -15px;
    top: -10px;
  }
}

.nav_h .border_abs span {
  color: #F3757E;
  font-size: 1.8rem;
  font-weight: bold;
}

.analysis {
  min-height: 100vh;
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .analysis {
    min-height: auto;
    padding-bottom: 40px;
  }
}

.analysis__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .analysis__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.analysis__flex .card-drop {
  width: 100%;
}

.analysis__flex .card-drop.mw_180 {
  max-width: 180px;
}

@media screen and (max-width: 767px) {
  .analysis__flex .card-drop.mw_180 {
    max-width: 100%;
  }
}

.analysis__flex .card-drop.mw_240 {
  max-width: 240px;
  margin-left: 30px;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .analysis__flex .card-drop.mw_240 {
    max-width: 100%;
    margin: 12px 0;
  }
}

.analysis__flex__text {
  position: absolute;
  left: 0;
  top: 7px;
  display: none;
}

@media screen and (max-width: 767px) {
  .analysis__flex__text {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 30px;
  }
}

.analysis__flex__text p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 21px;
  color: #222222;
  margin-right: 15px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .analysis__flex__text p {
    font-size: 1.3rem;
  }
}

.analysis__flex__text p span {
  margin-left: 5px;
}

.analysis .c-tt06 {
  *zoom: 1;
}

.analysis .c-tt06:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

.analysis .c-tt06 .unit {
  font-size: 1.2rem;
  font-weight: normal;
  float: right;
}

.analysis .tooltip {
  cursor: pointer;
  position: relative;
  font-weight: normal;
  display: inline-block;
  margin-left: 30px;
  font-size: 1.2rem;
}

@media screen and (max-width: 359px) {
  .analysis .tooltip {
    margin-left: 10px;
    font-size: 1.2rem;
  }
}

.analysis .tooltip img {
  margin-left: 5px;
  vertical-align: inherit;
}

.analysis .tooltip__note {
  font-size: 1rem;
  color: #222222;
  line-height: 15px;
  display: inline-block;
  font-weight: normal;
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #C7CFD8;
  position: absolute;
  width: auto;
  top: -55px;
  left: 0;
  z-index: 4;
  display: none;
  width: 320px;
}

@media screen and (max-width: 767px) {
  .analysis .tooltip__note {
    left: -85px;
  }
}

@media screen and (max-width: 359px) {
  .analysis .tooltip__note {
    width: 250px;
    left: -40px;
    top: -85px;
  }
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__row {
    margin-bottom: 12px;
  }
}

.analysis .bar_hori {
  height: 18px;
  border-radius: 0;
  background-color: transparent;
  width: calc(100% - 60px);
}

@media screen and (max-width: 767px) {
  .analysis .bar_hori {
    width: calc(100% - 20px);
    height: 16px;
  }
}

.analysis .wrapper_bar {
  max-width: 1060px;
  position: relative;
}

@media screen and (max-width: 1500px) and (min-width: 768px) {
  .analysis .wrapper_bar {
    margin-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar {
    max-width: 235px;
  }
}

@media screen and (max-width: 359px) {
  .analysis .wrapper_bar {
    max-width: 195px;
  }
}

.analysis .wrapper_bar__y_abs {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 60px);
  height: 100%;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__y_abs {
    width: calc(100% - 20px);
  }
}

.analysis .wrapper_bar__y_abs .mw_0 {
  width: 1px;
  height: calc(100% - 10px);
  background-color: #EEF0F3;
  position: absolute;
  left: 0;
  top: -8px;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__y_abs .mw_0 {
    top: -6px;
  }
}

.analysis .wrapper_bar__y_abs .mw_200 {
  width: 1px;
  height: calc(100% - 10px);
  background-color: #EEF0F3;
  position: absolute;
  left: 20%;
  top: -8px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__y_abs .mw_200 {
    top: -6px;
  }
}

.analysis .wrapper_bar__y_abs .mw_400 {
  width: 1px;
  height: calc(100% - 10px);
  background-color: #EEF0F3;
  position: absolute;
  left: 40%;
  top: -8px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__y_abs .mw_400 {
    top: -6px;
  }
}

.analysis .wrapper_bar__y_abs .mw_600 {
  width: 1px;
  height: calc(100% - 10px);
  background-color: #EEF0F3;
  position: absolute;
  left: 60%;
  top: -8px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__y_abs .mw_600 {
    top: -6px;
  }
}

.analysis .wrapper_bar__y_abs .mw_800 {
  width: 1px;
  height: calc(100% - 10px);
  background-color: #EEF0F3;
  position: absolute;
  left: 80%;
  top: -8px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__y_abs .mw_800 {
    top: -6px;
  }
}

.analysis .wrapper_bar__y_abs .mw_1000 {
  width: 1px;
  height: calc(100% - 10px);
  background-color: #EEF0F3;
  position: absolute;
  right: 0;
  top: -6px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__y_abs .mw_1000 {
    top: -6px;
  }
}

.analysis .wrapper_bar__row__text01 {
  width: 60px;
  line-height: 18px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__row__text01 {
    width: 20px;
    line-height: 16px;
    font-size: 1rem;
  }
}

.analysis .bar-analysis {
  width: 0%;
  position: relative;
  height: 18px;
  background-color: #245BD4;
  -webkit-animation: transitionwidth 2s ease-in;
  animation: transitionwidth 2s ease-in;
}

@media screen and (max-width: 767px) {
  .analysis .bar-analysis {
    height: 16px;
  }
}

.analysis .bar-analysis .dis_color_02 {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #D0D015;
}

.analysis .bar-analysis .percent {
  position: absolute;
  left: calc(100% + 5px);
  color: #222222;
  font-size: 1.2rem;
  line-height: 18px;
  display: none;
}

@media screen and (max-width: 767px) {
  .analysis .bar-analysis .percent {
    font-size: 1rem;
    line-height: 16px;
  }
}

.analysis .wrapper_bar__xAxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #EEF0F3;
  padding-top: 4px;
  margin-left: 60px;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__xAxes {
    margin-left: 20px;
  }
}

.analysis .wrapper_bar__xAxes span {
  font-size: 1.3rem;
  width: 20%;
  display: inline-block;
  text-align:right;
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__xAxes span {
    font-size: 1rem;
    position: relative;
    direction: rtl;
    text-indent: -7px;
  }
}

.analysis .wrapper_bar__xAxes span:last-child {
  text-indent: calc(100% - 18px);
}

@media screen and (max-width: 767px) {
  .analysis .wrapper_bar__xAxes span:last-child {
    text-indent: -9px;
  }
}

.analysis__content {
  display: none;
}

@-webkit-keyframes transitionwidth {
  0% {
    width: 0%;
  }
  100% {
    -webkit-transition: width 800ms ease-in-out;
    -o-transition: width 800ms ease-in-out;
    transition: width 800ms ease-in-out;
  }
}

@keyframes transitionwidth {
  0% {
    width: 0%;
  }
  100% {
    -webkit-transition: width 800ms ease-in-out;
    -o-transition: width 800ms ease-in-out;
    transition: width 800ms ease-in-out;
  }
}

#content_05 .wrapper_bar__row__text01, #content_05_t .wrapper_bar__row__text01 {
  width: 202px;
}

@media screen and (max-width: 767px) {
  #content_05 .wrapper_bar__row__text01, #content_05_t .wrapper_bar__row__text01 {
    width: 37px;
  }
}

#content_05 .wrapper_bar__y_abs, #content_05_t .wrapper_bar__y_abs {
  width: calc(100% - 202px);
}

@media screen and (max-width: 767px) {
  #content_05 .wrapper_bar__y_abs, #content_05_t .wrapper_bar__y_abs {
    width: calc(100% - 37px);
  }
}

#content_05 .wrapper_bar__xAxes, #content_05_t .wrapper_bar__xAxes {
  margin-left: 202px;
}

@media screen and (max-width: 767px) {
  #content_05 .wrapper_bar__xAxes, #content_05_t .wrapper_bar__xAxes {
    margin-left: 37px;
  }
}

#content_05 .bar_hori, #content_05_t .bar_hori {
  width: calc(100% - 202px);
}

@media screen and (max-width: 767px) {
  #content_05 .bar_hori, #content_05_t .bar_hori {
    width: calc(100% - 37px);
  }
}

.analysis_block {
  padding: 30px 20px 10px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-bottom: 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .analysis_block {
    padding: 20px 12px;
  }
}

.analysis__legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 35px;
  left: 300px;
}

@media screen and (max-width: 767px) {
  .analysis__legend {
    position: relative;
    top: auto;
    left: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
  }
}

.analysis__legend li {
  font-size: 1.2rem;
  color: #222222;
  margin-right: 25px;
}

.analysis__legend span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}

.analysis__legend span.color_01 {
  background-color: #245BD4;
}

.analysis__legend span.color_02 {
  background-color: #D0D015;
}

#content_06 .analysis__legend {
  left: 20px;
}

@media screen and (max-width: 767px) {
  #content_06 .analysis__legend {
    position: absolute;
    top: 15px;
    left: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  #content_06 .wrapper_bar__row__text01 {
    width: 37px;
  }
}

@media screen and (max-width: 767px) {
  #content_06 .wrapper_bar__y_abs {
    width: calc(100% - 37px);
  }
}

@media screen and (max-width: 767px) {
  #content_06 .wrapper_bar__xAxes {
    margin-left: 37px;
  }
}

@media screen and (max-width: 767px) {
  #content_06 .bar_hori {
    width: calc(100% - 37px);
  }
}

.terms_use__head {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin-left: 3px;
  position: relative;
  top: 5px;
}

.terms_use__content {
  min-height: 100vh;
  background-color: #fff;
  padding-top: 40px;
}

.terms_use__content .container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.terms_use__top {
  font-size: 1.3rem;
  line-height: 19px;
  color: #222222;
  padding: 10px;
  padding-left: 30px;
  position: relative;
  border: 1px solid #F3757E;
  border-radius: 3px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .terms_use__top {
    font-size: 1.2rem;
    line-height: 18px;
    margin-bottom: 40px;
  }
}

.terms_use__top img {
  position: absolute;
  left: 10px;
  top: 13px;
}

.terms_use__text01 {
  font-size: 1.3rem;
  color: #222222;
  line-height: 19px;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .terms_use__text01 {
    margin-top: 10px;
  }
}

.terms_use__text02 {
  font-size: 1.2rem;
  color: #CE0000;
  line-height: 18px;
  margin-top: 6px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .terms_use__text02 {
    padding-left: 15px;
  }
}

.terms_use__text02 img {
  max-width: 12px;
  display: inline-block;
  margin-right: 3px;
}

@media screen and (max-width: 767px) {
  .terms_use__text02 img {
    position: absolute;
    left: 0;
    top: 3px;
  }
}

.terms_use .c_text01.center {
  text-align: center;
  margin-bottom: 18px;
}

.terms_use .btn-grad {
  margin-top: 30px;
}

.terms_use .btn-grad:disabled {
  color: rgba(255, 255, 255, 0.4);
}

.terms_use .btn-link {
  font-size: 1.2rem;
  text-decoration: underline;
  display: table;
  margin: 0 auto;
  margin-top: 60px;
}

.terms_use .tb_pur_confirm__box {
  margin-top: 5px;
  margin-bottom: 25px;
}

.template {
  padding-bottom: 60px;
}

.template_block {
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .template_block {
    padding: 20px;
  }
}

.dl_rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.dl_rows dt {
  font-size: 1.4rem;
  color: #222222;
  line-height: 18px;
  width: 130px;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .dl_rows dt {
    width: 75px;
  }
}

.dl_rows dt.last {
  margin-bottom: 0;
}

.dl_rows dd {
  width: calc(100% - 130px);
  font-size: 1.4rem;
  line-height: 18px;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .dl_rows dd {
    width: calc(100% - 75px);
  }
}

.dl_rows dd.last {
  margin-bottom: 0;
}



.article_ttl_01 {
  margin-top: 2.6em;
  margin-bottom: 1em;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: bold;
  color: #151643;
  padding-bottom: 3px;
  border-bottom: 1px solid #C7CFD8;
}

@media screen and (max-width: 767px) {
  .article_ttl_01 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    padding-bottom: 2px;
  }
}

.first {
  margin-top: 0 !important;
}

.editor_part p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: #222222;
}

@media screen and (max-width: 767px) {
  .editor_part p {
    font-size: 1.3rem;
  }
}

.editor_part p a {
  color: #245BD4;
  text-decoration: underline;
}

.editor_part p a:hover {
  text-decoration: none;
}

.article_ttl_02 {
  font-size: 1.5rem;
  color: #151643;
  line-height: 1.6;
  margin-top: 2.6em;
  margin-bottom: 0.8em;
  padding-left: 17px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .article_ttl_02 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
}

.article_ttl_02:before {
  content: '';
  width: 10px;
  height: 1px;
  background-color: #151643;
  position: absolute;
  left: 0;
  top: 11px;
}

.box01 {
  margin-top: 2.4em;
  margin-bottom: 2.4em;
  font-size: 1.4rem;
  line-height: 22px;
  padding: 23px 12px 18px;
  border: 1px solid #C7CFD8;
  border-radius: 3px;
  color: #222222;
  position: relative;
}

@media screen and (max-width: 767px) {
  .box01 {
    font-size: 1.3rem;
    border-radius: 3px;
  }
}

.box01 .box_title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #151643;
  position: absolute;
  margin-top: -35px;
  display: inline-block;
  background-color: #fff;
  padding-left: 25px;
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .box01 .box_title {
    font-size: 1.3rem;
  }
}

.box01 .box_title:before {
  content: '';
  width: 12px;
  height: 16px;
  background-image: url("../img/common/icon_tt.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 6px;
}

.memo {
  margin-top: 1.8em;
  margin-bottom: 1.8em;
  padding: 10px;
  background-color: #EEF0F3;
  border-radius: 3px;
  font-size: 1.3rem;
  line-height: 20px;
  padding-left: 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .memo {
    font-size: 1.2rem;
  }
}

.memo:before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../img/common/icon_memo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 14px;
  left: 10px;
}

.alert {
  margin-top: 1.8em;
  margin-bottom: 1.8em;
  font-size: 1.3rem;
  line-height: 20px;
  border: 1px solid #AC000C;
  border-radius: 3px;
  background-color: #fff;
  padding: 10px;
  padding-left: 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .alert {
    font-size: 1.2rem;
  }
}

.alert:before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../img/common/icon_alert.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 14px;
  left: 10px;
}

.btn-grad_t01 {
  max-width: 295px;
  min-width: 240px;
  padding: 10px 20px;
  margin: 0 auto;
  margin-top: 42px;
  margin-bottom: 30px;
  line-height: 1.3;
  display: table;
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-size: 200% auto;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#3992E4), color-stop(51%, #245BD4), to(#3992E4));
  background-image: -webkit-linear-gradient(left, #3992E4 0%, #245BD4 51%, #3992E4 100%);
  background-image: -o-linear-gradient(left, #3992E4 0%, #245BD4 51%, #3992E4 100%);
  background-image: linear-gradient(to right, #3992E4 0%, #245BD4 51%, #3992E4 100%);
  border-radius: 28px;
}

.btn-grad_t01:hover {
  background-position: right center;
}

.btn-grad_t02 {
  max-width: 295px;
  min-width: 240px;
  padding: 10px 20px;
  margin: 0 auto;
  margin-top: 42px;
  margin-bottom: 30px;
  line-height: 1.3;
  display: table;
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-size: 200% auto;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#3992E4), color-stop(51%, #245BD4), to(#3992E4));
  background-image: -webkit-linear-gradient(left, #3992E4 0%, #245BD4 51%, #3992E4 100%);
  background-image: -o-linear-gradient(left, #3992E4 0%, #245BD4 51%, #3992E4 100%);
  background-image: linear-gradient(to right, #3992E4 0%, #245BD4 51%, #3992E4 100%);
  border-radius: 6px;
}

.btn-grad_t02:hover {
  background-position: right center;
}

.chart_page {
  overflow: hidden;
  min-height: 100vh;
  background-color: #F6F9FC;
}

.chart_page.hide .aside_left {
  width: 0;
  height: 0;
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  .chart_page.hide .aside_left {
    width: 100%;
    height: auto;
    background-color: #151643;
  }
}

.chart_page.hide .l_content {
  width: 100%;
}

.chart_page.hide .l_content__head:before {
  right: -30px;
}

.chart_page .breadcrumb {
  padding-left: 80px;
}

.chart_page .l_content__top {
  padding-left: 30px;
}

.chart_page .btn_04 {
  position: absolute;
  right: 60px;
  bottom: 30px;
}

@media screen and (max-width: 767px) {
  .chart_page .btn_04 {
    right: 20px;
    max-width: 100px;
  }
}

.chart_page__txt {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

@media screen and (max-width: 767px) {
  .chart_page__txt {
    display: none;
  }
}

.chart_page__txt span {
  margin-left: 10px;
}

.chart_page .l_content__bottom {
  min-height: calc(100vh - 147px);
  overflow: auto;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .chart_page .l_content__bottom {
    height: calc(100vh - 184px);
    padding-bottom: 130px;
  }
}

.chart_page .l_content__bottom.pd_30 {
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .chart_page .l_content__bottom.pd_30 {
    padding: 30px 20px 10px;
    margin-bottom: 40px;
  }
}

.chart_page .chart_page__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.chart_page .table_top__head > td {
  padding: 10px;
}

.chart_page .table_top__head .wrap_p {
  margin-top: 0;
  margin-bottom: 0;
}

.chart_page.g_u .l_content__bottom {
  min-height: calc(100vh - 147px);
}

.chart_page.g_u .table_top__head {
  width: 218px;
  height: 130px;
}

@media screen and (max-width: 767px) {
  .chart_page.g_u .table_top__head {
    height: 125px;
  }
}

.chart_page.g_u .table_top__head .wrap_p {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .chart_page__content {
    overflow-x: scroll;
    padding-bottom: 80px;
  }
}

.chart_page__content table {
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0px;
  padding: 0px;
  margin: 0px;
}

.chart_page__content table.table_top {
  width: 100px;
  margin: 0 auto;
}

.chart_page__content table td {
  white-space: nowrap;
}

.chart_page__content .wrap_p {
  display: table;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 6px;
}

.chart_page__content .personal {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  margin: 0 30px;
  font-weight: 400;
}

.chart_page__content .personal__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.chart_page__content .personal__info img.infotip {
  width: 36px;
  height: 36px;
}

.chart_page__content .personal__info__right {
  margin-left: 6px;
}

.chart_page__content .personal__info__text01 {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
}

.chart_page__content .personal__info__text01 img {
  margin-right: 5px;
}

.chart_page__content .personal__info__id {
  font-size: 1.2rem;
  display: inline-block;
  line-height: 18px;
  background-color: #151643;
  color: #fff;
  padding: 0 4px;
  border-radius: 2px;
}

.chart_page__content .personal__bottom__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.chart_page__content .personal__bottom__flex li:after {
  content: '/';
  display: inline-block;
  margin: 0 3px;
}

.chart_page__content .personal__bottom__flex li:last-child:after {
  display: none;
}

.chart_page__content .personal__down {
  margin-top: 20px;
}

.chart_page__content .personal__down a {
  display: block;
  text-align: center;
}

.chart_page__content .personal__up {
  margin-bottom: 20px;
}

.chart_page__content .personal__up a {
  display: block;
  text-align: center;
}

.chart_page__content .personal__text {
  display: table;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 6px;
}

.chart_page__content .personal__text.left {
  background-color: #245BD4;
}

.chart_page__content .personal__text.right {
  background-color: #3A92E4;
}

.chart_page__content .personal__img {
  margin: 0 20px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.chart_page__content .personal__img img {
  width: 14px;
  height: 14px;
  margin-right: 1px;
  margin-bottom: 3px;
}

.chart_page__content .a {
  border-collapse: collapse;
  vertical-align: top;
  border-spacing: 0px;
  padding: 0px;
  margin: 0px;
  width: 100%;
}

.chart_page__content .d {
  width: 50%;
  text-align: center;
  border: 1px solid #222222;
  border-width: 0px 1px 0px 0px;
  height: 16px;
}

.chart_page__content .e {
  width: 50%;
  text-align: center;
  border: 1px solid #222222;
  border-width: 0px 0px 0px 1px;
  height: 16px;
}

.chart_page__content .f {
  width: 50%;
  text-align: center;
  border: 1px solid #222222;
  border-width: 1px 1px 0 0;
  height: 16px;
}

.chart_page__content .g {
  width: 50%;
  text-align: center;
  border: 1px solid #222222;
  border-width: 1px 0px 0px 1px;
  height: 16px;
}

.chart_page__sorttop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .chart_page__sorttop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.chart_page__sorttop .card-drop {
  max-width: 120px;
  width: 100%;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .chart_page__sorttop .card-drop {
    max-width: 100%;
    margin-right: 35px;
  }
}

.chart_page__sorttop .card-drop:last-child {
  margin-right: 0;
}

.chart_page__sorttop .btn_04 {
  margin-left: 30px;
  position: static;
  background-color: #245BD4;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .chart_page__sorttop .btn_04 {
    max-width: calc(100% / 2 - 19px);
    margin-left: 35px;
    line-height: 32px;
    border-radius: 16px;
  }
}

.chart_page__sorttop .btn_04:first-child {
  margin-left: 0;
}

.chart_page__sorttop__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .chart_page__sorttop__left {
    width: 100%;
    margin-bottom: 25px;
  }
}

.chart_page__sorttop__right {
  display: inline-block;
  width: 50%;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .chart_page__sorttop__right {
    width: 100%;
  }
}

.menu_right_chart {
  width: 350px;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 80px;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
  z-index: 8889999999;
}

@media screen and (max-width: 767px) {
  .menu_right_chart {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.menu_right_chart__main {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .menu_right_chart__main {
    max-width: 330px;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-left: auto;
    overflow-y: auto;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 359px) {
  .menu_right_chart__main {
    max-width: 300px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.menu_right_chart.show {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.menu_right_chart__close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.menu_right_chart__close img {
  max-width: 100%;
}

.menu_right_chart__navimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 15px;
  border-bottom: 1px dashed #C8CED7;
  margin-bottom: 12px;
}

.menu_right_chart__navimg li {
  text-align: center;
  width: calc(100% / 6);
  margin-bottom: 6px;
}

.menu_right_chart__navimg li img {
  max-width: 100%;
}

.menu_right_chart__navimg li span {
  display: block;
  font-size: 1rem;
  line-height: 15px;
  padding-top: 2px;
}

.menu_right_chart__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px dashed #C8CED7;
  margin-bottom: 17px;
}

.menu_right_chart__dl dt.text {
  font-size: 1rem;
  padding: 2px;
  background-color: #151643;
  color: #fff;
  border-radius: 1px;
}

.menu_right_chart__dl dd {
  font-size: 1rem;
  color: #222222;
  line-height: 18px;
  margin-left: 3px;
  margin-right: 12px;
}

@media screen and (max-width: 359px) {
  .menu_right_chart__dl dd {
    font-size: 2.7vw;
  }
}

.menu_right_chart__dl dd:last-child {
  margin-right: 0;
}

.menu_right_chart__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

.menu_right_chart__rows dt {
  font-size: 1.2rem;
  color: #222222;
  width: 75px;
}

@media screen and (max-width: 359px) {
  .menu_right_chart__rows dt {
    font-size: 2.8vw;
  }
}

.menu_right_chart__rows dd {
  width: calc(100% - 75px);
}

.menu_right_chart__rows dd .card-drop {
  max-width: 100px;
  display: inline-block;
  width: 100%;
  margin-right: 12px;
}

.menu_right_chart__rows dd .card-drop:last-child {
  margin-right: 0;
}

@media screen and (max-width: 359px) {
  .menu_right_chart__rows dd .card-drop {
    max-width: 92px;
  }
}

.menu_right_chart__rows dd input[type="text"] {
  width: 150px;
  height: 27px;
  border-radius: 6px;
  border: 1px solid #C8CED7;
  padding: 10px;
  color: #222222;
  font-size: 1.2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 18px;
}

@media screen and (max-width: 359px) {
  .menu_right_chart__rows dd input[type="text"] {
    width: 132px;
  }
}

.menu_right_chart__rows dd .toggle {
  height: 27px;
  padding: 2px 10px;
  font-size: 1.2rem;
}

.menu_right_chart__rows dd .btn {
  width: 50px;
  height: 27px;
  background-color: #C7CFD8;
  border-radius: 6px;
  color: #222222;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 12px;
}

.menu_right_chart__rows .radio-button__label {
  max-width: 100px;
  margin-right: 12px;
  line-height: 27px;
}

@media screen and (max-width: 359px) {
  .menu_right_chart__rows .radio-button__label {
    max-width: 92px;
  }
}

.menu_right_chart__rows .radio-button__label:last-child {
  margin-right: 0;
}

.menu_right_chart__grcheck {
  padding-top: 18px;
  border-top: 1px dashed #C8CED7;
  margin-top: 18px;
}

.menu_right_chart__grcheck .checkbox-btn .radio-button__label {
  max-width: 100%;
  display: inline-block;
  width: auto;
  padding: 0 6px;
  margin-right: 5px;
  margin-bottom: 12px;
}

.menu_right_chart__grcheck .checkbox-btn .radio-button__label:last-child {
  margin-right: 0;
}

.tb_tip dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tb_tip dl dt {
  width: 72px;
  font-size: 1rem;
  color: #222222;
  line-height: 1.8rem;
}

.tb_tip dl dd {
  font-size: 1rem;
  color: #222222;
  line-height: 15px;
  font-weight: 400;
  line-height: 1.8rem;
}

.table_list {
  padding: 12px 12px 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
}

.table_list table {
  border-collapse: collapse;
  width: 100%;
  border: 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .table_list table {
    min-width: 1200px;
  }
}

.table_list table thead {
  background: transparent;
}

.table_list table thead tr th {
  font-size: 1.2rem;
  color: #222222;
  line-height: 18px;
  padding: 6px;
  background-color: #F7F9FC;
  font-weight: normal;
  border: 0;
  text-align: center;
}

.table_list table thead tr th .tooltip {
  cursor: pointer;
  position: relative;
}

.table_list table thead tr th .tooltip img {
  margin-left: 5px;
  vertical-align: inherit;
}

.table_list table thead tr th .tooltip__note {
  font-size: 1rem;
  color: #222222;
  line-height: 15px;
  display: inline-block;
  font-weight: normal;
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #C7CFD8;
  position: absolute;
  width: auto;
  min-width: 113px;
  top: -45px;
  left: 0;
  z-index: 4;
  display: none;
  height: auto;
  z-index: 77;
}

@media screen and (max-width: 767px) {
  .table_list table thead tr th .tooltip__note {
    left: -20px;
  }
}

@media screen and (max-width: 359px) {
  .table_list table thead tr th .tooltip__note {
    width: 280px;
  }
}

.table_list table tbody tr td {
  font-size: 1.3rem;
  color: #222222;
  text-align: center;
  padding: 10px 6px;
}

.table_list table tbody tr td.color_red {
  color: #CE0000;
}

.table_list table tbody tr:first-child {
  background-color: #FEF8F7;
}

.scroll-hint-icon {
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.color_red {
  color: #CE0000;
}

.color_white {
  color: #fff !important;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt0 {
  margin-top: 0 !important;
}

.margin10 {
  margin: 10px 0;
}

.margin10_5 {
  margin: 10px 0 5px;
}

.mr30 {
  margin-right: 30px;
}

.mr25 {
  margin-right: 25px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mt30 {
  margin-top: 30px;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #EFCFCF;
  display: block;
}

.pd20 {
  padding: 0 20px;
}

.mg_20 {
  margin: 0 20px;
}

@media screen and (max-width: 767px) {
  .mg_20 {
    margin: 0;
    display: none;
  }
}

.mg_10 {
  margin: 0 10px;
}

.mg_5 {
  margin: 0 5px;
}

.margin20_10 {
  margin: 0 20px 10px;
}

.margin20_30 {
  margin: 0 20px 30px;
}

.u_require {
  color: #fff;
  padding: 0px 8px;
  font-size: 1rem;
  background-color: #245BD4;
  line-height: 16px;
  margin-left: 8px;
  font-weight: normal;
  display: inline-block;
}

.u_bold {
  font-weight: bold;
}

.pd40 {
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .sp_nopd {
    padding: 0;
  }
}

.ta_left {
  text-align: left !important;
}

.font_q {
  font-family: "Quicksand", sans-serif;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc_tab {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .pc_tab {
    display: none;
  }
}

@media (min-width: 1024px) {
  .tab_sp {
    display: none;
  }
}
.info_bl{
  position: relative;
}
.info_bl .btn_more {
  position: absolute;
  top: 20px;
  right: 20px;
}
.list_info{
  padding-left: 20px;
  margin-top: 10px;
}
.list_info li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEF0F3;
}
.list_info li:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.list_info__date{
  font-size: 1.2rem;
  line-height: 24px;
  color: #666666;
  font-weight: 500;
  margin-right: 5px;
  font-family: "Quicksand", sans-serif;
}
.list_info__new{
  font-size: 1.2rem;
  line-height: 24px;
  color: #F3757E;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
}
.list_info__left{
  width: 130px;
}
.list_info__text{
  width: calc(100% - 130px);
  font-size: 1.4rem;
  line-height: 24px;
  font-weight: 500;
  color: #333333;
}
.list_info__text a{
  color: #245BD4;
  text-decoration: underline;
}

.list_info__text a:hover{
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .list_info{
    padding-left: 0;
  }
  .list_info li{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .list_info__left{
    width: 100%;
    margin-bottom: 8px;
  }
  .list_info__text{
    width: 100%;
  }
}

/* baged */
.badge {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .badge {
    padding-bottom: 60px;
  }
}

.badge__content {
  margin-top: 30px;
  display: none;
}

@media screen and (max-width: 767px) {
  .badge__content {
    margin-top: 20px;
  }
}

.badge__content.current {
  display: inherit;
}

.badge__top {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .badge__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
  }
}

.badge__top__text {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 25px;
  color: #222222;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .badge__top__text {
    margin-right: 0;
    margin-bottom: 14px;
  }
}

.badge__top__page {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .05rem;
  line-height: 25px;
  color: #A5A7B1;
}

.badge__top__page span {
  font-size: 3rem;
  color: #FD9C00;
}

.badge__bottom {
  background-color: #111238;
  padding: 30px 40px 0 40px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .badge__bottom {
    padding: 20px 20px 0 20px;
  }
}

.badge__block {
  width: 47%;
  margin-right: 6%;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .badge__block {
    width: 100%;
    margin-right: 0;
  }
}

.badge__block:nth-child(2n) {
  margin-right: 0;
}

.badge__block.full {
  width: 100%;
  margin-right: 0;
}

.badge__block.full dd {
  width: 100%;
  margin-right: 0%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.badge__block.full dd a{
  width: calc(100% / 6);
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .badge__block.full dd a {
    width: 32%;
    margin-right: 2%;
  }
  .badge__block.full dd a:nth-child(3n) {
    margin-right: 0;
  }
}

.badge__block dt {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 25px;
  color: #fff;
  border-bottom: 1px solid #515174;
  margin-bottom: 20px;
  padding-bottom: 2px;
}

@media screen and (max-width: 767px) {
  .badge__block dt {
    font-size: 1.5rem;
    line-height: 24px;
  }
}

.badge__block dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.badge__block__item {
  display: block;
  margin-right: 2%;
  margin-bottom: 40px;
  width: 32%;
  text-align: center;
}

.badge__block__item:nth-child(3n) {
  margin-right: 0;
}

.badge__block__img img {
  max-width: 100%;
  padding-bottom: 8px;
}

.badge__block__img.no-image {
  height: 115px;
}

.badge__block__text {
  font-size: 1.4rem;
  line-height: 18px;
  color: #A5A7B1;
  text-decoration: underline;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .badge__block__text {
    font-size: 1.2rem;
    line-height: 16px;
  }
}

.badge__block__text02 {
  font-size: 1.1rem;
  line-height: 18px;
  color: #686A71;
  margin-top: 3px;
}

@media screen and (max-width: 767px) {
  .badge__block__text02 {
    font-size: 1rem;
    line-height: 16px;
  }
}

.badge_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999988;
  display: none;
}

.badge_modal__bg {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.badge_modal__content {
  max-width: 515px;
  /*max-height: 465px;*/
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #111238;
  border-radius: 6px;
  padding: 50px 30px;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .badge_modal__content {
    padding: 45px 30px;
    width: 90%;
  }
}
.badge_modal__head{
  position: relative;
  display: table;
  margin: 0 auto;
  margin-bottom: 20px;
}

.badge_modal__head__tt{
  font-size: 3.4rem;
  color: #F8E81E;
  text-align: center;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
}

@media screen and (max-width: 767px) {
  .badge_modal__head__tt{
    font-size: 2.8rem;
  }
}

.glow {
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
    background-clip: text;
  -webkit-background-clip: text;
  background-image: url('data:image/svg+xml;utf8,<svg width="76" height="150" viewBox="0 0 76 150" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M55.5 0H75.5L20 150H0L55.5 0Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-origin: content-box;
  animation: animatedBackground 2s infinite;
}

.badge_modal__img {
  text-align: center;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.badge_modal__img img {
  max-width: 100%;
  width: 100%;
}

.badge_modal__tt {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  color: #fff;
}

.badge_modal__tt_new {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
  color: #fff;
}

.badge_modal__text {
  font-size: 1.2rem;
  line-height: 18px;
  text-align: center;
  color: #686A71;
  margin-top: 5px;
}

.badge_modal__text02 {
  font-size: 1.3rem;
  line-height: 18px;
  text-align: center;
  color: #A5A7B1;
  margin-top: 13px;
}

.badge_modal__close {
  position: absolute;
  top: -38px;
  right: 0;
}

.badge_modal__close img {
  max-width: 100%;
}

.pcview {
}
.spview {
	display: none;
}
 
@media screen and (max-width: 767px) {
	.pcview {
		display: none;
	}
	.spview {
		display: block;
	}
}

.star {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -14px;
  top: -30px;
  animation: rotation 2s infinite linear;
}

.star::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image:  url('data:image/svg+xml;utf8,<svg width="26" height="24" viewBox="0 0 26 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 0L15.8496 9.36956L26 12L15.8496 14.6304L13 24L10.1504 14.6304L0 12L10.1504 9.36956L13 0Z" fill="white"/></svg>');
  animation: animatedStar 2s infinite;
}

@keyframes animatedBackground {
    0% { 
      background-position: -100px center;    
      animation-timing-function: ease-in-out;
    }
    30% { 
      background-position: right -100px center; 
      animation-timing-function: linear;
    }
    100% { 
      background-position: right -100px center; 
      animation-timing-function: linear;
    }
}

@keyframes animatedStar {
  0% { 
    transform: scale(0%);
  }
  20% { 
    transform: scale(0%);
  }
  25% { 
    transform: scale(100%);
  }
 45% { 
    transform: scale(0%);
  }
  100% {
    transform: scale(0%); 
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 767px) {
  .aside_left__logo.st01{
    text-align: left;
    padding-left: 20px;
  }
  .star{
    width: 30px;
    height: 30px;
  }
}

/* rankup */
.popup__rankup {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99999;
}
.popup__rankup__head {
  width: 500px;
  height: 150px;
  position: relative;
  text-align: center;
}
.popup__rankup__head lottie-player {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.popup__rankup__img {
  position: relative;
  width: 300px;
  height: 250px;
  text-align: center;
  line-height: 250px;
  margin: 0 auto;
}
.popup__rankup__img lottie-player {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.popup__rankup__text02 {
  font-size: 1.6rem;
  line-height: 18px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.popup__rankup__title {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
.popup__rankup__title span {
  font-size: 2.6rem;
  color: #FFEB00;
  margin-right: 3px;
}

.popup__rankup__text03 {
  font-size: 1.3rem;
  line-height: 18px;
  color: #fff;
  text-align: center;
  margin-top: 25px;
}
.popup__rankup__text03 span {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 3px;
}

.popup__rankup__close {
  width: 168px;
  line-height: 30px;
  margin: 0 auto;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #245BD4;
  border-radius: 15px;
  margin-top: 40px;
}

.popup__rankup__above {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.popup__rankup__img.st01 {
  height: 300px;
}

@media screen and (max-width: 767px) {
  .popup__rankup {
    max-width:96%;
    width: 100%;
  }
  .popup__rankup__head {
    width: 100%;
    height: 120px;
  }
  .popup__rankup__head lottie-player {
    width: 100% !important;
    max-width: 380px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .popup__rankup__img {
    width: 250px;
    height: 220px;
    line-height: 200px;
  }
  .popup__rankup__img.st01 {
    height: 250px;
  }
  .popup__rankup__above {
    bottom: -130px;
  }
}



