@charset "utf-8";
/* CSS Document */

/*======================[  RESET ]*/

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border:0;
	font:inherit;
	margin:0;
	padding:0;
	vertical-align:baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; 	content: none; }
table { border-collapse: collapse;border-spacing: 0; }
img {border:0;}

/*行の高さをフォントサイズと同じにして余白をリセットしています
(※padding:0;は省略しても違いが見られなかったためmargin:0;のみ)*/
body {
	width: 100%;
	height: 100%;
	-webkit-text-size-adjust: none;
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
	font-size: 14px;
	text-align: left;
	margin: 0;
	padding: 0;
	line-height: 2;
}
/*ブロックレベル要素の余白をリセットしています
(※padding:0;は省略しても違いが見られなかったためmargin:0;のみ)*/
h1, h2, h3, h4, h5, h6, p {
	line-height: 1.5;
}
/*HTML5での新規追加要素のデフォルトをブロック要素へ変更しています
(※Android2.1以前のブラウザではインライン要素となっているようでした)*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,a{
	display: block;
}

br {
	line-height: 1;
}
/*リスト要素のリストスタイルと余白をリセットする*/
ul {
	list-style: none;
	margin: auto0;
	padding: 0;
}
li {
	margin: 0;
	padding: 0;
}

/*横幅を画面に合わせます*/
body,div,img,p{
	display: block;
	margin: 0 auto;
}

/* ========================= [ common ] */
body {
	font-size: .7em;
	line-height: 1.2em;
	letter-spacing: .5px;
}
*{
	color: #071339;
	font-size: 3.74vw; /* 基準のフォントサイズを14pxとする */
	line-height: 1.5;
	-webkit-text-size-adjust: 100%; /* ブラウザ側での自動調整をなしにする */
}
dl,dt,dd{
	text-align: center;
}

a {
	text-decoration: none;
}
/* ========================= [ header ] */
.header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index:9999;
	background-color: #fff;
	display: none;
	left: auto 0;
	margin: 0 auto;
	overflow: hidden;
	border-bottom: 1px solid #ddd;
}
.header_inner {
	position: relative;
	margin: 12px 20px;
}
.header_inner:before{
	content:"";
	display:block;
	padding-top: 47px;
}
.header_logo {
	position: absolute;
	width: 34%;
	max-width: 128px;
	top: 50%;
	left: 0;
	display: inline-block;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.header img {
	width:100%;
}
.bt_menu {
	position: absolute;
	top: 0;
	right: -16px;
}
.menu_button, .menu_button:focus {
	border: 0;
	background: none;
	outline: none;
}
.menu_button svg {
	width: 44px;
}
.menu_button svg use {
	-webkit-transition: .1s ease-out;
	transition: .1s ease-out;
}
.menu_button svg use:nth-of-type(1) {
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
.menu_button svg use:nth-of-type(2) {
	opacity: 1;
}
.menu_button svg use:nth-of-type(3) {
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
.open .menu_button svg use {
	-moz-transition: .14s ease-out;
	-ms-transition: .14s ease-out;
	-webkit-transition: .14s ease-out;
	transition: .14s ease-out;
}
.open .menu_button svg use:nth-of-type(1) {
	-moz-transform: rotate(-45deg) translate(-1.5rem, 1.2rem);
	-ms-transform: rotate(-45deg) translate(-1.5rem, 1.2rem);
	-webkit-transform: rotate(-45deg) translate(-1.5rem, 1.2rem);
	transform: rotate(-45deg) translate(-1.5rem, 1.2rem);
}
.open .menu_button svg use:nth-of-type(2) {
	opacity: 0;
}
.open .menu_button svg use:nth-of-type(3) {
	-moz-transform: rotate(45deg) translate(.8rem, -2.1rem);
	-ms-transform: rotate(45deg) translate(.8rem, -2.1rem);
	-webkit-transform: rotate(45deg) translate(.8rem, -2.1rem);
	transform: rotate(45deg) translate(.8rem, -2.1rem);
}
.header_menu {
	display:none;
}
.header_list {
	display: table;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 3% 0;
	font-size: 0;
}
.header_list li {
	width: 50%;
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	font-size: 3.47vw;
	line-height: 1.4;
	padding: 10px;
}
.header_list li:first-child {
	margin-left: 0;
}
.header_list li a:visited {
	text-decoration:none;
}
.header_listitem:nth-of-type(1),
.header_listitem:nth-of-type(2) {
	border-bottom: 1px solid #ddd;
}

.header_listitem:nth-of-type(2),
.header_listitem:nth-of-type(4) {
	border-left: 1px solid #ddd;
}

/* ========================= [ .area_landing ] */
.area_landing {
	min-height: 500px;
	min-width: 320px;
	background: #f6f6f6;
	display: block;
}
.area_landing img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.area_landing .slick-slide img {
	margin-bottom: 0;
}
.area_landing h1, h2 {
	padding-bottom: 5.4%;
	font-size: 7.2vw;
	line-height: 1.4;
	text-align: center;
}
.area_landing h1 {
	margin-bottom: 0;
}
.textclear {
	text-indent: 100%;
	white-space:nowrap;
	overflow:hidden;
}
.bold {
	font-weight: bold;
}
.notes {
	vertical-align: top;
	font-size: 2.67vw !important;
	font-weight: normal;
}
.footnote {
	text-align: left;
	font-size: 2.68vw;
	line-height: 1.2;
}
.modal_btn {
	padding-bottom: 5%;
}
/* ========================= [ ここからタイアップ ] */
.txtlink {
	border-bottom: 1px solid #071339;
}
.accountNotice {
	font-size: 3vw;
	color:#fff;
}

/* =========== [ .regist-tieup ] */
.regist-tieup {
	border-bottom:1px solid #b5b5b5;
	border-top:1px solid #b5b5b5;
	margin:10% auto 0;
	padding:8% 0 10%;
	width:89.33%;
}
.regist-tieup p:first-child {
	font-size:4.8vw;
	margin:5.33% 0;
	text-align: center;
}
.regist-tieup-plus{
	border: none;
	margin-top: 0;
	padding:5% 0 10%;
}
/* キャンペーン詳細ポップアップ
******************/
.campWrap {
	background:none repeat scroll 0 0 #fff;
	font-family:sans-serif;
	margin:bottom 10px;
	overflow:hidden;
}
.camphead h1 {
	background:linear-gradient(#ddc063 0%, #bd9033 49%, #9b6e14 50%, #c4911c 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
	border:1px solid #9b6e14;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	height:40px;
	line-height:40px;
	margin:0;
	text-align:center;
	text-shadow:0 0 5px #9e7014;
	width:100%;
}
.camphead h2 {
	margin:0;
}
#wrap-tieupCamp-detail {
	display:none;
}
.campsect {
	background-color:#fff !important;
	margin:0 auto 4%;
	width:96%;
}
.campsect p {
	color:#000;
	font-size:1.3em;
	line-height:1.4;
}
.campsect_inner {
	border:1px solid #000;
	margin-bottom:15px;
	margin-top:10px;
	padding-bottom:10px;
	text-align:left;
}
.campsect_ttl {
	background:#000;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	margin:10px 0;
	padding:0.5em 0 0.5em 0.5em;
}
.campsect_txt {
	font-size:1.1em !important;
}
.campsect_bottom {
	font-size:1.1em !important;
	text-align:left;
}
.first-txt {
	margin-left:0.3em;
	margin-right:0.3em;
	text-align:center;
}
.txt_small {
	font-size:12px !important;
	line-height:1.2em !important;
}
.txt_red {
	color:#ff0000;
}
.campsect p.caution {
	color:red;
	font-weight:bold;
}
.campsect h3 {
	color:#ff6600;
	font-size:16px;
	font-weight:bold;
	margin:10px 0 5px;
}
/* キャンペーン詳細ポップアップ　ここまで
******************/
.remodal img{
	width: 100%;
}

/* ========================= [ .area_fv ] */
.area_fv {
}
.wrap_fv {
}
.fv_catch img {
	width: 68%;
}
.fv_cp {

}
.fv_cp_kabu {
	margin-bottom: 4%;
	padding-bottom: 0!important;
}

/* ========================= [ btn_cv ] */
.btn_cv {
	position: relative;
	border-radius: 13vw;
	letter-spacing: 1px;
	background-color: #ff4001;
	text-align: center;
	-moz-box-shadow: 0 1.4vw 0 #ddd;
	-webkit-box-shadow: 0 1.4vw 0 #ddd;
	-ms-box-shadow: 0 1.4vw 0 #ddd;
	box-shadow: 0 1.4vw 0 #ddd;
}
.btn_cv a {
	width: 100%;
	color: #fff;
	font-weight: bold;
	font-size: 4vw;
	display: block;
}
.btn_cv:after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.cv_main {
	width: 100%;
	padding: 6% 0;
	font-size: 5.6vw !important;
}
.cv_main:after {
	width: 2vw;
	height: 2vw;
	right: 8%;
	margin-top: -1.4vw;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}
.cv_header {
	position: absolute;
	width: 40%;
	top: 50%;
	right: 48px;
	padding: 16px 0;
	display: inline-block;
	font-size: 16px;
	border-radius: 30px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-moz-box-shadow: 0 4px 0 #ddd;
	-webkit-box-shadow: 0 4px 0 #ddd;
	-ms-box-shadow: 0 4px 0 #ddd;
	box-shadow: 0 4px 0 #ddd;
}
.cv_header:after {
	width: 8px;
	height: 8px;
	top: 50%;
	right: 8%;
	margin-top: -4px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}
.cv_header.btn_cv a {
	font-size: 3.4vw;
}

/* ========================= [ .area_cv ] */
.area_cv .footnote {
	padding-top: 6%;
	font-size: 3.2vw;
	line-height: 1.5;
	text-align: center;
}
.cv_top {
	padding: 7% 5%;
	background: #f5f5f5;
}
.cv_middle {
	padding: 2% 5%;
}
.cv_bottom {
	padding: 8% 5% 12%;
	background: #fff;
}

/* ========================= [ .area_fv_content ] */
.area_fv_content {
}
.area_fv_content h1 {
	padding: 0;
}
.area_fv_content h1 img {
	width: 100%;
}
.area_fv_content .area_cv_top {
	padding-top: 12px;
}
.area_fv_content .area_cv_top .cv_main {
	width: 88%;
    max-width: 420px;
    padding: 20px 20px 20px 5px;
    font-size: 18px!important;
}
.area_fv_content .area_cv_top .cv_main a span {
	color: #fff;
}

/* ========================= [ .area_campaign ] */
.area_campaign {
	margin-top: 2rem;
	padding: 0 2rem;
}
.campaign_bnr + .campaign_bnr {
	margin-top: 1.5rem;
}
.area_campaign--pickup p:before, .area_campaign--pickup p:after {
    content: "";
    position: absolute;
    top: 0px;
    display: block;
    width: 2px;
    height: 80%;
    margin-top: 3px;
    background: #071339;
}
.area_campaign--pickup p:before {
    left: 7%;
    transform: rotate(-20deg);
}
.area_campaign--pickup p:after {
    right: 7%;
    transform: rotate(20deg);
}
.area_campaign--pickup p {
	position: relative;
	text-align: center;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.area_campaign.slick-slider {
	position:inherit;
}
.area_campaign .slick-dots {
	position: inherit;
}
.area_campaign.slick-dotted.slick-slider{
	margin-bottom: 0;
}
/* ========================= [ .area-summary ] */
.area-summary {
	padding: 10% 5%;
	background: #fff;
}
.summary_list {
	margin: 7% 0;
}
.summary_listitem {
	position: relative;
	margin-bottom: 15%;
	background: #f6f6f6;
	border-radius: 8rem;
	line-height: 1;
}
.summary_listitem .limit{
	font-weight: bold;
	color: #ff0000;
}
.summary_listitem a:after {
	content: "";
	position: absolute;
	width: 2vw;
	height: 2vw;
	top: 50%;
	right: 7%;
	margin-top: -1vw;
	border-top: solid 1px #071339;
	border-right: solid 1px #071339;
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.summary_num {
	position: absolute;
	width: 100%;
	top: -12%;
}
.summary_num.point01 img {
	width: 10%;
}
.summary_num.point02 img,
.summary_num.point03 img,
.summary_num.point04 img {
	width: 10.8%;
}
.summary_icon {
	position: absolute;
	width: 12%;
	top: 50%;
	left: 5%;
	margin-top: -6%;
}
.summary_title {
	width: 70%;
	display: block;
	padding: 7% 0 7% 21%;
	font-size: 4.2vw;
	font-weight: bold;
	text-align: left;
}

/* ========================= [ common section_point ] */
.section_point {
	position: relative;
	margin: 15% 5% 5%;
	padding: 12% 5% 10%;
	background-color: #fff;
}
.section_point_num {
	position: absolute;
	width: 16%;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.section_point_icon {
	max-width: 86px;
	margin-bottom: 2em;
}
.section_point_description {
	text-align: left;
}
.section_point_description + img {
	margin-top: 2em;
}

/*-- 手数料0円--*/
.foreign_settle .listHead {
	font-weight: bold;
	margin-top: 2rem;
}
.foreign_settle .list {
	margin: 1rem auto 2rem;
	counter-reset: number 0;
	padding-left: 2rem;
}
.foreign_settle .list li {
	text-indent: -2rem;
	line-height: 1;
}
.foreign_settle .list li+li {
	margin-top: 1rem;
}
.foreign_settle .list li:before {
	counter-increment: number 1;
	content: counter(number) ".";
	padding-right: 0.5rem;
	color: #00a0ff;
	font-weight: bold;
	font-size: 1.5rem;
	vertical-align: middle;
}
.foreign_settle .list li .higntLight {
	background-image: -webkit-linear-gradient(transparent 70%, #00ffec 70%);
	background-image: linear-gradient(transparent 70%, #00ffec 70%);
	font-weight: bold;
}
.foreign_settle .btn {
	text-align: center;
}

.foreign_settle .btn a {
	border: 1px solid #071339;
	padding: 0.5rem 2rem;
	border-radius: 2rem;
}

.popup_hidden {
	display: none;
}
#fancybox-close {
	top: -10vw;
	right: -1vw;
	background: none;
}
#fancybox-close:before, #fancybox-close:after {
	content: "";
	height: 2px;
	width: 8vw;
	display: block;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 0;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
#fancybox-close:after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}
.popup_inner {
	padding: 5%;
	font-size: 3.47vw;
}
.popup_inner .footnote li{
	padding-left: 1em;
	text-indent: -1em;
}
.popup_inner .footnote li a{
	display:inline;
}
.popup_title {
	padding-bottom: 3%;
	font-size: 5.6vw;
	font-weight: bold;
}
.popup_title_sub {
	font-size: 3.74vw;
	text-align: center;
}

/* ========================= [ .btn_popup ] */
.btn_popup {
	position: relative;
	width: 90%;
	top: 0;
	padding: 3%;
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	letter-spacing: 0;
	border-radius: 10vw;
	color: #071339;
	cursor: pointer;
	border: 1px solid #071339;
	background-color: transparent;
}
.btn_popup:after {
	content: "＋";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5%;
	margin: auto;
	font-size: inherit;
	height: 1em;
	line-height: 1em;
}
.btn_popup--transparent, .btn_popup--internalLink {
	border: 1px solid #071339;
	background-color: transparent;
}





/* ========================= 購入の流れ */
.c-alignment {
  padding-left: 1em;
  text-indent: -1em;
  /*font-size: 1.2rem;*/
  line-height: 1.4;
}


.c-alignment--disc::before {
  content: "・";
}

/* ========================= [ .area_footer ] */
.area_footer {
	position: relative;
	margin: 12% 5% 0;
	padding-bottom: 8%;
	text-align: left;
	font-size: 2.94vw;
	line-height: 1.8;
}
.footer_logo {
	width: 49%;
}
.area_footer .update {
	position: absolute;
	top: 0;
	right: 0;
	color: #666;
}
.area_footer hr {
	margin: 30px 0;
}
.footer_title {
	padding: 4% 0;
	font-size: 3.74vw;
	font-weight: bold;
	color: #666;
	line-height: 1;
	text-align: left;
}
.footer_title_sub {
	padding-top: 2%;
	font-weight: bold;
	color: #666;
}
.footer_content {
	overflow: hidden;
	color: #666;
	line-height: 1.8;
}
.footer_content + .footer_content {
	margin-top: 1em;
}
.footer_content > dt {
	padding-top: 12px;
	min-width: 5%;
	color: #666;
	text-align: left;
}
.footer_content > dt::after {
	margin: 0 .6vw;
}
.footer_content > dd {
	color: #666;
	text-align: left;
}

.footer_link {
	overflow: hidden;
	color: #666;
	line-height: 1em;
}
.footer_link + .footer_link {
	margin-top: 0.5em;
}
.footer_link > a {
	text-decoration: underline;
	display: inline-block;
}
.footer_link > a:hover {
	color:#00a0ff !important;
}

.footer_pmark {
	width: 80px;
	height: 80px;
	margin: 20px auto;
}
.footer_pmark a,
.footer_pmark img{
	display: block;
	width: 100%;
}
/* ========================= [ .footer ] */
.footer {
	padding: 4% 0;
	background: #071339;
}
.footer p {
	color: #fff;
	font-size: 2.94vw;
	text-align: center;
}

/* ========================= [ .sub_section ] */

.sub_section {
	background-color: #f5f5f5;
    margin-top: 30px;
    padding: 10px;
}
.sub_section .sub_section_wrap:first-of-type {
	width: 90px;
}
.sub_section .sub_section_wrap:nth-of-type(2) {
	margin-left: 4px;
	width: 100%;
}
.sub_section .sub_section_wrap img {
	display: block;
	width: 100%;
	height: 100%;
}
.sub_section .sub_section_heading {
	font-size: 20px;
	text-align: left;
	border-bottom: 1px solid;
	padding-bottom: 0.5em;
	display: block;
	width: 100%;
	font-weight: bold;
}
.sub_section .c-alignment {
	text-align: left;
	margin-top: 1em;
}

/* ========================= [ .c-table ] */

.c-table {
  width: 100%;
  font-size: 12px;
  text-align: center;
  border-top: 2px solid #b6b6b6;
  border-bottom: 2px solid #b6b6b6;
  margin: 20px 0;
}

.c-table caption {
  font-size: 12px;
  text-align: left;
  font-weight: bold;
  padding: 0 0 1em;
}
.c-table tr {
	border-left: 1px solid #b6b6b6;
	border-right: 1px solid #b6b6b6;
}
.c-table__head,
.c-table__body > tr > * {
 padding: 0.5em;
  line-height: 1.5;
}

.c-table__head {
  font-weight: bold;
  background-color: #ececec;
  border-bottom: 1px solid #b6b6b6;
  vertical-align: middle;
}
.c-table thead .c-table__head {
  text-align: center;
}

.c-table__body > tr {
  border-bottom: 1px solid #b6b6b6;
}
.c-table__body tr:nth-child(even) {
  background-color: #fbfbfb;
}
.c-table__body > tr > td, .c-table__body > tr > th {
  border-top: 1px solid #b6b6b6;
}

.c-table__head,
.c-table__subHead,
.c-table__data {
  vertical-align: middle;
}
.c-table__data {
  background-color: inherit;
}
.c-table__head + .c-table__head, .c-table__head--dashed,
.c-table__subHead + .c-table__head,
.c-table__subHead--dashed,
.c-table__data + .c-table__head,
.c-table__data--dashed, .c-table__head +
.c-table__subHead,
.c-table__subHead +
.c-table__subHead,
.c-table__data +
.c-table__subHead, .c-table__head +
.c-table__data,
.c-table__subHead +
.c-table__data,
.c-table__data +
.c-table__data {
  border-left: 1px dashed #b6b6b6;
}


.c-table__subHead {
  background-color: #f6f6f6;
}

.c-table__data {
  background-color: #fff;
}


/* //c-table*/
/* ========================= [ .c-scroll ] */
.c-scroll {
	overflow-x: scroll;
}
.c-scroll::-webkit-scrollbar {
	height: 10px;
}
.c-scroll::-webkit-scrollbar-track {
	background-color: #00a0ff;
}
.c-scroll::-webkit-scrollbar-thumb {
	background-color: #fff;
	border: 3px solid #00a0ff;
	border-radius: 10vw;
}
/* //c-scroll*/

/* ========================= [ .area-about ] */

.area-about {
	position: relative;
	margin: 15% 0 5%;
	padding: 12% 5% 10%;
	background-color: #fff;
}

.area-about .section_point_description{
	text-align: left;
}
.area-about .area-about_heading {
	font-size: 7.2vw;
	padding-bottom: 32px;
	line-height: 1.2;
}
.area-about .area-about_subHeading {
	display: flex;
	align-items: center;
	text-align: center;
	font-weight: bold;
	font-size: 5vw;
	text-align: center;
	line-height: 1.4;
	color: #071339;
	margin-bottom: 1em;
}
.area-about_subHeading::before,
.area-about_subHeading::after {
	display: block;
	flex-grow: 1;
	height: 1px;
	background-color: #b6b6b6;
	content: "";
}

.about_summary {
	width: 100%;
	margin-top: 10px;
}
.about_summary_wrap {
	border:2px solid #b6b6b6;
	box-sizing: border-box;
}
.about_summary_wrap img {
	top: 90px;
	left: 0;
	right: 0;
	margin: auto;
}
.about_summary_wrap:nth-of-type(1) img {
	width: 50px;
}
.about_summary_wrap:nth-of-type(2) img {
	width: 96px;
}
.about_summary_wrap:nth-of-type(3) img {
	width: 80px;
}
.about_summary_wrap dt {
	font-size: 5vw;
	font-weight: bold;
	line-height: 1.3;
	display: table;
	width: 100%;
	padding: 25px 10px;
}

.about_summary_wrap dt span {
	display: table-cell;
	vertical-align: middle;
	width: 50%;
	text-align: center;
}

.about_summary_wrap dd {
	bottom: 0;
	background-color: #f6f6f6;
	padding: 25px 10px;

	text-align: left;
}

.about_summary_wrap+.about_summary_wrap {
	margin-top: 10px;
}

.about_detail section {
	margin-top: 60px;
	text-align: left;
}
.about_detail section .investigateTxt{
	text-align: left;
	padding-left:1em;
	text-indent:-1em;
}

.table_commission {
	width: 400px;
}
.table_commission thead tr .c-table__head:nth-of-type(2),
.table_commission thead tr .c-table__head:nth-of-type(3),
.table_commission thead tr .c-table__head:nth-of-type(4){
    width: 20%;
}

.table_sp500 {
}
.table_sp500 tr .c-table__subHead {
	text-align: center;
}
.table_sp500 tr .c-table__data:nth-of-type(1) {
	text-align: left;
}
.table_sp500 tr .c-table__data:nth-of-type(2),
.table_sp500 tr .c-table__data:nth-of-type(3),
.table_sp500 tr .c-table__data:nth-of-type(4) {
	text-align: right;
}

.investigateTxt {
	text-align: right;
	margin-top: 0.5em;
}

/* --米国株信用代用-- */
.usStock__collateralUS .listHead {
	font-weight: bold;
	margin-top: 2rem;
}
.usStock__collateralUS .list {
	margin: 1rem auto 2rem;
	counter-reset: number 0;
	padding-left: 2rem;
}
.usStock__collateralUS .list li {
	text-indent: -2rem;
	line-height: 1;
}
.usStock__collateralUS .list li+li {
	margin-top: 1rem;
}
.usStock__collateralUS .list li:before {
	counter-increment: number 1;
	content: counter(number) ".";
	padding-right: 0.5rem;
	color: #00a0ff;
	font-weight: bold;
	font-size: 1.5rem;
	vertical-align: middle;
}
.usStock__collateralUS .list li .higntLight {
	background-image: -webkit-linear-gradient(transparent 70%, #00ffec 70%);
	background-image: linear-gradient(transparent 70%, #00ffec 70%);
	font-weight: bold;
}
.usStock__collateralUS .btn {
	text-align: center;
}

.usStock__collateralUS .btn a {
	border: 1px solid #071339;
	padding: 0.5rem 2rem;
	border-radius: 2rem;
}


/* --area-service-policy-- */
.area-service-policy {
	margin: 10% 5%!important;
}
.area-service-policy .btn {
	text-align: center;
	margin-top: 1em;
}

.area-service-policy .btn a {
	border: 1px solid #071339;
	padding: 0.5rem 2rem;
	border-radius: 2rem;
}

/*=========================
 slick
==========================*/
.slick-slider {
	position: inherit;
}
.slick-dots {
  display: block;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  /*height: 40px;*/
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 15px;
  width: 15px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  height: 15px;
  width: 15px;
  font-size: 1.1rem;
  text-align: center;
  line-height: 15px;
  color: #b6b6b6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #00a0ff;
}
.jp-margin {
  width: 600px !important;
}

.jp-margintext {
  margin-bottom: 35px !important;
}

.bnrBox {
	padding-top: 7%;
}

.bnrBox a{
  width: 100%;
  display: block;
  margin: auto;
}