@charset "UTF-8";
i.fas,i.fas:before,i.fas:after {
    font-family: "font awesome 5 pro"!important;
	font-style: normal;
}
/*--------------------------------------------------*/
/*  共通ボタン                                      */
/*--------------------------------------------------*/
a.go_btn,
button.go_btn,
.go_btn {
	position: relative;
	display: block;
	max-width: 420px;
	margin: 20px auto 40px auto;
	padding: 20px 0;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 26px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: #fe7c1e;
	border: 1px solid #ee6c0e;
	border-radius: 8px;
	box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.12), 2px 3px 5px 0 rgba(0, 0, 0, 0.12), 2px 5px 2px -2px rgba(0, 0, 0, 0.2);
}
.go_btn:hover {
	opacity: 0.8;
}
.go_btn.btn_ON {
	background: #70ad47;
	border: 1px solid #609d37;
}
.go_btn.btn_ON:hover {
	opacity: 0.8;
}
.go_btn strong {
	padding: 0 2px;
	font-size: 26px;
	line-height: 26px;
}

/*--------------------------------------------------*/
/*  入力フォーム共通                                */
/*--------------------------------------------------*/
form .input {
	height: 40px;
	margin: 0;
	padding: 0;
	border: 1px solid #b0b0b0;
}
form .input input {
	display: block;
	width: 100%;
	height: 38px;
	padding: 10px;
	font-size: 18px;
	line-height: 1;
	border: none;
	outline: none;
}
/*--------------------------------------------------*/
/*  コンテンツ                                      */
/*--------------------------------------------------*/
body {
	font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
main {
	position: relative;
	display: table;
	width: 1030px;
	margin: 0 auto 20px auto;
}
section {
	position: relative;
	background: #fff;
}
.input_column {
	position: relative;
	margin: 0 20px 25px 20px;
	font-size: 0;
}
.column_title {
	position: relative;
	height: 20px;
	margin: 0 5px 2px 5px;
	padding: 0 0 0 0;
	font-size: 16px;
	font-weight: bold;
	line-height: 16px !important;
}
.column_title.required {
	padding: 0 0 0 44px;
}
.column_title.required::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 32px;
	height: 18px;
	margin: 0;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	line-height: 18px;
	text-align: center;
	background: #d00000;
	vertical-align: top;
	content: "必須";
}
.column_title.required.ok::after {
	background: #009a3a;
	content: "ＯＫ";
}
.input_wrapper {
	display: inline-block;
	position: relative;
	width: calc(100% - 8px);
	min-height: 60px;
	height: auto;
	margin: 0 6px 5px 6px;
	padding: 4px 0;
	vertical-align: middle;
	background: #ffeaea;
	border: 1px solid #a0a0a0;
	border-radius: 8px;
	box-sizing: border-box;
}
.input_wrapper:focus-within {
	border-color: #fa70a0;
	box-shadow: 0px 0px 2px 1px #fa70a0;
}
.input_wrapper.optional {
	background: #fff;
}
.input_wrapper.half {
	width: calc(50% - 12px);
}
.input_wrapper.ok {
	background: #fff;
}
.input_wrapper input {
	display: block;
	width: 100%;
	min-height: 50px;
	height: 100%;
	max-height: 50px;
	padding: 0 10px;
	font-size: 16px;
	line-height: 50px;
	vertical-align: middle;
	background: transparent;
	border: none;
	outline: none;
	caret-color: #2a2a2a;
	box-sizing: border-box;
}
.input_wrapper input::placeholder {
	color: #bababa;
}
.input_wrapper input:disabled {
	background: #eaeaea;
};

.input_column .err {
	display: none;
	margin: 0px 4px;
	padding: 4px 0;
	background: #fff;
}
.input_column .err p {
	position: relative;
	margin: 0;
	padding: 0 0 0 20px;
	color: #d00000;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
}
.input_column .err p::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	color: #fff;
	content: "\f00d";
	font-family: "Font Awesome 5 Pro";
	font-style: normal;
	font-weight: normal;
	text-align: center;
	line-height: 16px;
	background: #d00000;
	border-radius: 50%;
}
.input_column .err p .link {
	color: #fff !important;
	margin: 0 2px;
	font-size: 14px;
	font-weight: bold;
}
.input_column .err .btn {
	-webkit-appearance: none;
	display: block;
	width: 60%;
	max-width: 320px;
	margin: 10px auto;
	padding: 10px 0;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	color: #fff;
	background: #70ad47;
	border: 1px solid #609d37;
	border-radius: 8px;
	box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.12), 1px 1px 5px 0 rgba(0, 0, 0, 0.12), 1px 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.input_column .note {
	position: relative;
	margin: 3px 0;
	padding: 0 0 0 18px;
	color: #404040;
	font-size: 13px;
	line-height: 15px;
}
.input_column .note::before {
	position: absolute;
	top: 7px;
	left: 10px;
	width: 4px;
	height: 4px;
	content: "";
	background: #404040;
	border-radius: 50%;
}
.icloud_alert {
	position: relative;
	margin: 2px 0 10px 10px;
	padding: 0 0 0 18px;
	color: #1010ca;
	font-size: 14px;
	line-height: 22px;
	cursor: pointer;
}
.icloud_alert i {
	position: absolute;
	top: 3px;
	left: 0;
	color: #1010ca;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
}
.icloud_alert strong {
	font-size: 16px;
	font-weight: bold;
}
.ui-helper-hidden-accessible {
	display: none;
}
.ui-widget-content {
	max-width: 588px;
	top: -2px;
	left: -2px;
	background: #ffffea;
}
.ui-widget.ui-widget-content {
	border-color: #fa70a0;
	box-shadow: 0px 0px 2px 1px #fa70a0;
}
.ui-widget-content .ui-state-active {
	border: 1px solid #ff0000;
	background: #f58b8b;
}
.ui-menu .ui-menu-item {
	padding: 4px 0 4px 10px;
	font-size: 14px;
	line-height: 20px;
	border-bottom: 2px dotted #a0a0a0;
}
.ui-menu .ui-menu-item:last-child {
	border-bottom: none;
}
.mail_open,
.passwd_open {
	min-height: 100px;
}
.expansion_chk,
.display_passwd {
	display: block;
	min-height: 40px;
	height: 100%;
	padding: 0 10px;
	color: #da0000;
	font-size: 24px !important;
	font-weight: bold;
	line-height: 32px;
	word-break: break-all;
	outline: none;
	border: none;
	border-radius: 0 8px 8px 0;
}
.expansion_chk {
	color: #da0000;
}
.switch_wrapper {
	display: block;
	position: relative;
	max-width: 200px;
	padding: 0 0 0 32px;
	font-size: 14px;
	line-height: 28px;
}
.switch_wrapper .display_switch {
	position: absolute;
	top: 5px;
	left: 12px;
	transform: scale(1.5);
}
.btn_area {
	margin: 60px auto 0 auto;
}
.section_err {
	display: none;
	color: #d00000;
	font-size: 15px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}

[data-target-name] li {
	display: none;
}
[data-target-name] li.active {
	display: block;
}

.detail_box .campaign table td strong {
	padding: 0 3px;
	color: #e00000;
	font-size: 18px;
	font-weight: bold;
}

/*--------------------------------------------------*/
/*  共通スタイル                                    */
/*--------------------------------------------------*/
.clear:after {clear: both; display: block; height: 0; content: "."; visibility: hidden;}
.focus {background: #ffffd0 !important;}
.colorRed {color: #f00 !important;}
.bold {font-weight: bold !important;}
.hide {display: none !important;}

/* add by hashimoto 2017/09/13 */
.showy2 { padding: 0 3px; background: #fff352; }
ul.normal { margin-left: 20px; padding: 10px 20px 10px 25px; }
ul.normal li { padding: 2px 0; list-style: disc; }
h2[id^="no"] {
	margin-top: 30px !important;
	color: #da0000;
}
/* end */

.clr_000 {color: #000 !important;}
.clr_fff {color: #fff !important;}
.clr_f00 {color: #f00 !important;}
.clr_00f {color: #00f !important;}
.clr_0f0 {color: #0f0 !important;}
.fw_no {font-weight: normal !important;}
.fw_bo {font-weight: bold   !important;}
.fs_10 {font-size: 10px !important;}
.fs_11 {font-size: 11px !important;}
.fs_12 {font-size: 12px !important;}
.fs_13 {font-size: 13px !important;}
.fs_14 {font-size: 14px !important;}
.fs_15 {font-size: 15px !important;}
.fs_16 {font-size: 16px !important;}
.fs_17 {font-size: 17px !important;}
.fs_18 {font-size: 18px !important;}
.fs_19 {font-size: 19px !important;}
.fs_20 {font-size: 20px !important;}
.fs_21 {font-size: 21px !important;}
.fs_22 {font-size: 22px !important;}
.fs_23 {font-size: 23px !important;}
.fs_24 {font-size: 24px !important;}
.fs_25 {font-size: 25px !important;}
.fs_26 {font-size: 26px !important;}
.fs_27 {font-size: 27px !important;}
.fs_28 {font-size: 28px !important;}
.fs_29 {font-size: 29px !important;}
.fs_30 {font-size: 30px !important;}
.fs_31 {font-size: 31px !important;}
.fs_32 {font-size: 32px !important;}
.fs_33 {font-size: 33px !important;}
.fs_34 {font-size: 34px !important;}
.fs_35 {font-size: 35px !important;}
.fs_36 {font-size: 36px !important;}
.ta_c  {text-align: center !important;}
.ta_l  {text-align: left   !important;}
.ta_r  {text-align: right  !important;}
.mt_0  {margin-top:      0px !important;}
.mt_5  {margin-top:      5px !important;}
.mt_10 {margin-top:     10px !important;}
.mt_15 {margin-top:     15px !important;}
.mt_20 {margin-top:     20px !important;}
.mt_30 {margin-top:     30px !important;}
.mt_40 {margin-top:     40px !important;}
.mt_50 {margin-top:     50px !important;}
.mt_100{margin-top:    100px !important;}
.mb_0  {margin-bottom:   0px !important;}
.mb_5  {margin-bottom:   5px !important;}
.mb_10 {margin-bottom:  10px !important;}
.mb_15 {margin-bottom:  15px !important;}
.mb_20 {margin-bottom:  20px !important;}
.mb_30 {margin-bottom:  30px !important;}
.mb_40 {margin-bottom:  40px !important;}
.mb_50 {margin-bottom:  50px !important;}
.mb_100{margin-bottom: 100px !important;}
.ml_0  {margin-left:     0px !important;}
.ml_5  {margin-left:     5px !important;}
.ml_10 {margin-left:    10px !important;}
.ml_15 {margin-left:    15px !important;}
.ml_20 {margin-left:    20px !important;}
.ml_30 {margin-left:    30px !important;}
.ml_40 {margin-left:    40px !important;}
.ml_50 {margin-left:    50px !important;}
.ml_100{margin-left:   100px !important;}
.mr_0  {margin-right:    0px !important;}
.mr_5  {margin-right:    5px !important;}
.mr_10 {margin-right:   10px !important;}
.mr_15 {margin-right:   15px !important;}
.mr_20 {margin-right:   20px !important;}
.mr_30 {margin-right:   30px !important;}
.mr_40 {margin-right:   40px !important;}
.mr_50 {margin-right:   50px !important;}
.mr_100{margin-right:  100px !important;}
.pt_0  {padding-top:     0px !important;}
.pt_5  {padding-top:     5px !important;}
.pt_10 {padding-top:    10px !important;}
.pt_15 {padding-top:    15px !important;}
.pt_20 {padding-top:    20px !important;}
.pt_30 {padding-top:    30px !important;}
.pb_0  {padding-bottom:  0px !important;}
.pb_5  {padding-bottom:  5px !important;}
.pb_10 {padding-bottom: 10px !important;}
.pb_15 {padding-bottom: 15px !important;}
.pb_20 {padding-bottom: 20px !important;}
.pb_30 {padding-bottom: 30px !important;}
.pl_0  {padding-left:    0px !important;}
.pl_5  {padding-left:    5px !important;}
.pl_10 {padding-left:   10px !important;}
.pl_15 {padding-left:   15px !important;}
.pl_20 {padding-left:   20px !important;}
.pl_30 {padding-left:   30px !important;}
.pr_0  {padding-right:   0px !important;}
.pr_5  {padding-right:   5px !important;}
.pr_10 {padding-right:  10px !important;}
.pr_15 {padding-right:  15px !important;}
.pr_20 {padding-right:  20px !important;}
.pr_30 {padding-right:  30px !important;}
.ime_act {ime-mode: active   !important;}
.ime_dis {ime-mode: disabled !important;}
.po_re {position: relative !important;}
.dsp_non {display: none  !important;}
.dsp_blc {display: block !important;}
.dsp_tbl {display: table !important; width: 100%;}
.dsp_cel {display: table-cell !important; vertical-align: middle;}
.wrp_100 {width: 1000px; margin: 0 auto;}
.wrp_120 {width: 1200px; margin: 0 auto;}
.wrp_130 {width: 1300px; margin: 0 auto;}
.tbl_2c   {display: table; width: 1300px; margin: 0 auto;}
.tbl_2c_l {display: table-cell; width: 200px; vertical-align: top;}
.tbl_2c_r {display: table-cell; width: ; padding: 0 0 0 20px; vertical-align: top;}
.tbl_3c   {display: table; width: 1300px; margin: 0 auto;}
.tbl_3c_l {display: table-cell; width: 200px; vertical-align: top;}
.tbl_3c_r {display: table-cell; width: 240px; vertical-align: top;}
.ovr_hid {overflow: hidden !important;}
.no_border {border: none !important;}
.link {color: #1010ca; text-decoration: underline; cursor: pointer;}
.link:hover {color: #f00000;}
.ac_contents {display: none;}
.ls_di li {list-style: disc;}

/* 注意文追加240906 */
#scroll_menu .cart_caution {
    font-size: 14px;
    margin-top: 5px;
    color: #ea0000;
    line-height: 1.3;
}
section#reg_information .cart_caution {
    font-size: 15px;
    color: #ea0000;
    line-height: 1.6;
    width:400px;
    margin:0 auto;
}

.cart_about_delivery_h {
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    font-size: 17px;
}

.cart_about_delivery {
    padding: 20px;
    margin-top: 30px;
    background: #dfffb9;
    border-radius: 10px;
    border: 1px solid #c0c0c0;
}

.cart_about_delivery p {
    font-size: 15px;
    line-height: 1.8;
}
#body_r .right_box .cart_caution{
	display: none;
  }




  /*--------------------------------------------------*/
/*  モーダルウィンドウ                              */
/*--------------------------------------------------*/
#modal_overlay {
	display: none;
	z-index: 200;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba(0,0,0,0.75);
}
.scroll_wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 201;
	width: 100%;
	height: 100%;
	overflow: auto;
}
#modal_entry {
	display: none;
	position: fixed;
	z-index: 202;
	width: 720px;
	text-align: left;
	background: #fff;
	border: 4px solid #0090f0;
	border-radius: 4px;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
#modal_entry .scroll_box {
	position: relative;
	width: 80%;
	max-width: 960px;
	margin: 40px auto;
	padding: 0 0 20px 0;
}
#modal_entry .scroll_box::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 20px;
	content: "";
	background: -webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,1));
	background: -moz-linear-gradient(top,   rgba(255,255,255,0.5),rgba(255,255,255,1));
	background: linear-gradient(to bottom,  rgba(255,255,255,0.5),rgba(255,255,255,1));
}
#modal_entry .close_btn {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 48px;
	height: 36px;
	padding: 6px 0;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	background: #0090f0;
}
#modal_entry .close_btn:hover {
	opacity: 0.8;
}
#modal_entry .title {
	padding: 30px 60px 20px 30px;
	font-size: 28px;
	font-weight: bold;
	line-height: 36px;
	text-align: center;
}
#modal_entry .body {
	padding: 20px 30px;
}
#modal_entry.scroll_box .body {
	overflow-y: scroll;
}
#modal_entry .body p {
	padding: 4px 4px 4px 10px;
	font-size: 18px;
	line-height: 26px;
}
#modal_entry .body form {
	width: 540px;
	margin: 0 auto 20px auto;
}
#modal_entry .body form p {
	margin: 0;
	padding: 0;
	line-height: 1;
}
#modal_entry .body form .input {
	margin: 0 0 15px 0;
}
#modal_entry .red_btn {
	width: 240px;
	margin: 30px auto 10px auto;
	padding: 14px 0;
}
#modal_entry .gray_btn {
	width: 240px;
	margin: 30px auto 10px auto;
	padding: 13px 0;
}

#modal_entry .gray_btn {
	width: 240px;
	margin: 30px auto 10px auto;
	padding: 13px 0;
}

#modal_entry .payment .red_btn {
	width: 320px;
	margin: 30px auto 20px auto;
	padding: 18px 0;
	font-size: 22px;
}
#modal_entry .payment .gray_btn {
	width: 240px;
	margin: 0 auto 20px auto;
	padding: 16px 0;
}
#modal_entry .btn_area {
	position: relative;
	margin: 20px 0 0 0;
	font-size: 0;
	text-align: center;
}
#modal_entry .btn_area a,
#modal_entry .btn_area p {
	display: inline-block;
	margin: 10px 20px;
}
#modal_entry .btn_area .gray_btn {
	width: 160px;
}
#modal_entry .btnArea {
	position: relative;
	height: 46px;
	margin: 30px 0 10px 0;
}
#modal_entry .btnArea .red_btn {
	position: absolute;
	top: 0;
	right: 100px;
	margin: 0;
	padding: 13px 0;
}
#modal_entry .btnArea .gray_btn {
	position: absolute;
	top: 6px;
	left: 80px;
	width: 90px;
	margin: 0;
	padding: 10px 0;
	color: #000;
	font-size: 14px;
}
#modal_entry .reg_tbl {
	width: 540px;
	margin: 0 auto;
}
#modal_entry .reg_tbl th {
	width: 104px;
	text-align: center;
}
#modal_entry .reg_tbl th span {
	display: block;
	margin: 5px auto 0 auto;
}
#modal_entry .reg_tbl td {
	padding: 15px 0 15px 15px;
}
#modal_entry .inputHelp {
	z-index: 202;
}

#modal_entry .reg_tbl .errorMessage {
	left: 360px;
	z-index: 201;
}

#modal_entry .body.mainte {
	height: 430px;
	padding: 20px 30px 20px 360px;
	background: url(/img/mainte.png) no-repeat left 20px bottom 0;
}
#modal_entry .body.mainte p {
	padding: 8px 0;
	font-size: 20px;
	line-height: 32px;
}
#modal_entry .body.mainte p strong {
	font-size: 24px;
}
#modal_entry .body.timer {
	min-height: 160px;
	background: url("/img/cart_timer_image.png") no-repeat right 10px bottom 20px;
}
#modal_entry .body.timer p {
	padding-right: 150px;
}
a.disabled{
	pointer-events: none;
	color: #000;
}

/* レイアウト崩れの応急処置 202502 新澤 */
/* .modal_close {
    position: relative;
    height: 18px;
} */

.fa-times:before {
    font-size: 100% !important;
    line-height: 100% !important
}

.modal_close i {
    line-height: 0px !important;
    color: #fff;
}

.dsp_blc {
    display: block !important;
}

.reg_tbl_new {
	width: 100%;
	margin: 10px 0 0 0;
}
.reg_tbl_new th {
	width: 180px;
	font-size: 16px;
	font-weight: bold;
	line-height: 22px;
	text-align: right;
	vertical-align: middle;
	background: #f0f0f0;
	border: 1px solid #d0d0d0;
	border-top: 1px solid #d0d0d0;
	border-left: 1px solid #d0d0d0;
}

.reg_tbl_new td {
	padding: 0;
	font-size: 0;
	vertical-align: middle;
	border-top: 1px solid #d0d0d0;
	border-right: 1px solid #d0d0d0;
}

.reg_tbl_new th,
.reg_tbl_new td {
	border-bottom: 1px solid #d0d0d0;
}

.reg_tbl_new.check th {
	padding: 20px;
	font-size: 18px;
	line-height: 26px;
}
.reg_tbl_new.check td,
.reg_tbl_new.check td ul,
.reg_tbl_new.check td ul li {
	font-size: 0;
	overflow: hidden;
}
