@charset "UTF-8";
/*sass*/
/* ---------------------------------------------------------------- *>

  コーディング規約参考：http://google-styleguide.googlecode.com/svn/trunk/htmlcssguide.xml
                        http://www.cyberagent.co.jp/recruit/techreport/report/

----------------------------------------------------------------- */
/****************************************

		Reset

*****************************************/
/* Reset Style */
html {
  overflow-y: scroll;
}

html, body{
  font-family: 'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Verdana','MS P Gothic','ＭＳ Ｐゴシック',sans-serif;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

ol, ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.over {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background-color: #FFF;
}
.over:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

img,
object,
embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

select, input, button, textarea {
  font: 99% arial,helvetica,clean,sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

area {
  border: none;
  outline: none;
}

.opacity, .opTest img:hover {
  opacity: 0.55;
  -moz-opacity: 0.55;
  filter: alpha(opacity=55);
  -ms-filter: "alpha(opacity=55.0)";
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.table_cell {
  display: table-cell;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

.fr,
.imgR {
  float: right;
  margin-left: 10px;
}

.fl,
.imgL {
  float: left;
  margin-right: 10px;
}

.imgC,
.tC,
.btn {
  text-align: center;
}

.imgC {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tR,
.sign {
  text-align: right;
}

.txtL {
  text-align: left;
}

.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.serif {
  font-family: 'ヒラギノ明朝 ProN W6','HiraMinProN-W6','HG明朝E','ＭＳ Ｐ明朝','MS PMincho','MS 明朝',serif;
}

.scale-up {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.scale-up:hover {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.scale-down {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.scale-down:hover {
  -moz-transform: scale(0.95, 0.95);
  -ms-transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
}

/****************************************

		common

*****************************************/
.btn-top {
  padding-top: 20px;
  text-align: center;
}

a:link {
  color: #333;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.disable {
  cursor: default;
}

.blank {
  display: inline-block;
  /* background: url("../img/ico_blank.png") no-repeat right center; 2016/10/27 MEE Miyake delete cssに定義はあるがHTMLで使っていない）*/
  padding-right: 28px;
}

.txt-c {
  text-align: center;
}

.txt-r {
  text-align: right;
}

.m-b-20 {
  margin-bottom: 20px;
}

.line-h-2 {
  line-height: 2;
}

.small {
  font-size: 12px;
  font-weight: normal;
}

.x-small {
  font-size: 10px;
  font-weight: normal;
}

.mr10 {
  margin-left: 10px;
  margin-right: 10px;
}

.color-red {
  color: #ee0000;
}

.over:hover {
  opacity: 0.80;
  -moz-opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80.0)";
}

.color-og {
  color: #eb6100;
}

.color-gr {
  color: #12a866;
}

.color-bl {
  color: #197fc7;
}

.color-bk {
  color: #333333;
}

/****************************************

    スマホ対応

*****************************************/
.view-sp {
  display: none;
}

.view-pc {
  display: block;
}

.text-sp {
  display: none;
}

.hidden-pc {
  display: none;
}

/****************************************

		layout

*****************************************/
body {
  color: #333;
}

.wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.area-head {
  width: 100%;
  height: 78px;
  border-bottom: 1px solid #ccc;
  background: url(../img/bg_head.png) repeat-x left bottom;
}
.area-head .inr {
  max-width: 960px;
  width: 100%;
  height: 78px;
  margin: 0 auto;
  position: relative;
}
.area-head .inr h1 {
  position: absolute;
  top: 30px;
  left: 10px;
}
.area-head .inr h2 {
  position: absolute;
  left: 50%;
  bottom: 5px;
}
.area-head .inr h2 img {
  display: block;
  margin-left: -200px;
}
.area-head .inr .jet-logo {
  position: absolute;
  right: 10px;
  bottom: 20px;
}

.area-step {
  width: 100%;
  height: 74px;
  background: url(../img/bg_step.png) repeat-x left 5px;
}
.area-step ul {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 5px;
  overflow: hidden;
  *zoom: 1;
}
.area-step ul li {
  float: left;
  width: 33%;
  height: 33px;
  padding-top: 45px;
  color: #999;
  background: url(../img/ico_step.png) no-repeat center top;
}
.area-step ul li.active {
  color: #197fc7;
  background: url(../img/ico_step_active.png) no-repeat center top;
}
.area-step ul li p {
  font-size: 108%;
  font-weight: bold;
  text-align: center;
}

.area-result {
  display: none;
  width: 100%;
  background: #eee url(../img/bg_result.png) repeat-x left top;
}
.area-result .res-tit {
  margin-bottom: 5px;
  text-align: center;
  font-size: 124%;
  border-bottom: 1px solid #ccc;
}
.area-result .inr {
  padding: 10px;
}
.area-result .outer {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
}
.area-result .outer .box .box-inr {
  padding: 0 10px;
}
.area-result .outer .box .box-inr dt,
.area-result .outer .box .box-inr dd {
  text-align: center;
}
.area-result .outer .box .box-inr dt {
  margin: 0;
  color: #666;
  font-weight: bold;
}
.area-result .outer .box .box-inr dd .cost {
  margin: 0;
  text-align: center;
  font-size: 154%;
  font-weight: bold;
}
.area-result .outer .box .box-inr dd .per {
  padding: 2px 0;
  font-weight: bold;
}
.area-result .outer .paper-towel {
  float: left;
  width: 34%;
}
.area-result .outer .paper-towel .inr {
  border-right: 1px solid #ccc;
}
.area-result .outer .jet-towel {
  float: left;
  width: 66%;
}
.area-result .outer .jet-towel .box-outer {
  overflow: hidden;
  *zoom: 1;
}
.area-result .outer .jet-towel .box-outer .box {
  width: 50%;
  float: left;
}
.area-result .outer .box-paper .cost {
  color: #197fc7;
}
.area-result .outer .box-purchase .box-inr {
  border-right: 1px solid #ccc;
}
.area-result .outer .box-purchase .cost {
  color: #eb6100;
}
.area-result .outer .box-purchase .per {
  color: #fff;
  background-color: #eb6100;
}
.area-result .outer .box-lease .cost {
  color: #12a866;
}
.area-result .outer .box-lease .per {
  color: #fff;
  background-color: #12a866;
}

.area-content {
 
  padding-bottom: 40px;
   /* 2025/06/18 MEE NAKANE delete background: url(../img/bg_select.png) repeat-x left top;
  */
}

.step-1 > .wrap > .area-content {
  padding-bottom: 0;
}

.area-content h3 {
  padding-bottom: 20px;
  color: #666;
  font-size: 154%;
  text-align: center;
}

.area-select {
  width: 100%;
  padding: 20px 0 0 0;  //2025/06/18 MEE NAKANE padding: 20px 0 20px 0;
  overflow: hidden;
  *zoom: 1;
}
.area-select .sec-form {
  width: auto%;
  margin: 0 auto;
}
.area-select .box {
  position: relative;
  float: left;
  width: 45%;  //2025/06/19 MEE NAKANE width: 48%;
  margin-right: 3%;  //2025/06/19 MEE NAKANEmargin-right: 0%;
  margin-bottom: 20px;
  margin-left: 1%;
}
.area-select .box .box-inr {
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  /*PIE.htc を利用*/
  /*behavior: url(../PIE.htc); 2016/10/27 MEE Miyake delete*/
  
  height: 60px;
}
.area-select .box dl{
  display: table;
  width: 100%;
}

.area-select .box dl dt, .area-select .box dl dd {
  display: table-cell;
  vertical-align: middle;
}



/*2025/06/10 MEE NAKANE height: 30px*/
.area-select .box dl dt {
  height: 60px;
  line-height: 30px;
  font-size: 115%;
  font-weight: bold;
  
  position:absolute;
  top:10px;

}

/*2025/06/10 MEE NAKANE  add*/
.area-select .box .box-days{
  height: 100px;
}

/*2025/06/10 MEE NAKANE add*/
.area-select .box .box-days dl dt{
  position: absolute;
  top:10px;
  line-height: 30px;
  font-size: 115%;
  font-weight: bold;
}

.area-select .box .box-day{
  height: 60px;
}

.area-select .box .box-day dl dt, .area-select .box .box-day dl dd {
  position: absolute;
  top:10px;
 }

.area-select .box .box-item dl dt,.area-select .box .box-item dl dd {
  position: absolute;
  top:25px;
}

.area-select .box .box-use {
  height:  100px;
}

/*2025/06/10 MEE NAKANE add*/
.area-select .box .selectProducts{
  weight:35px;
  height:25px;
}

.area-select .box .selectProducts:hover{
 cursor:pointer;
}

.area-select .box dl dt .sub {
  font-size: 12px;
  font-weight: normal;
}
.area-select .box dl dd {
  text-align: right;
  
  position:absolute;
  top:15px;
  right:2%;
  
}


.area-select .box .attention {
  position: absolute;
  left: 10px;
  top: 40px;
  font-size: 85%;
  text-align: left;
}



.step-1 {
  /* ステップ1 */
}
.step-1 .area-content .outer {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
}
.step-1 .box-count input[type="text"] {
  padding: 2px 4px;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.step-1 .paper-cost {
  width: 480px;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
  text-align: center;
}
.step-1 .paper-cost .tit {
  margin-right: 10px;
  color: #e5304a;
}
.step-1 .paper-cost .cost {
  padding-bottom: 5px;
  font-size: 154%;
  font-weight: bold;
  color: #197fc7;
  background: url(../img/dot_x.png) repeat-x left bottom;
}
.step-1 .box-cal {
  position: relative;
  height: 31px;
  margin-bottom: 20px;
  text-align: center;
}
.step-1 .box-cal .btn {
  display: block;
}
.step-1 .area-nav .btn-c .btn-ch {
  float: none;
  width: 100%;
}
.step-1 .area-nav .btn-c .btn-ch a {
  display: inline-block;
  width: 180px;
  height: 50px;
  padding: 0 20px;
  line-height: 50px;
  color: #fff;
  font-size: 139%;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.step-1 .area-nav .btn-c .btn-ch a.bgcolor-bl {
  background-color: #197fc7;
}

.step-2 {
  /* ステップ2 */
}
.step-2 .col-2 {
  max-width: 1100px; //2025/06/18 MEE NAKANE max-width: 980px;
  width: 100%;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  overflow: hidden;
  *zoom: 1;
}
.step-2 .col-2 .thumb {
  float: right;
  width: 44%; //2025/06/18 MEE NAKANE  width: 20%;
  border: 1px solid #ccc;
  margin: 0 5% 20px 1.5%;
 }

.step-2 .col-2 .thumb dl dt {
  margin: 5px 0 ;
  text-align: center;
}
.step-2 .col-2 .thumb dl dt img {
  width:255px;
  height: auto;
  object-fit:cover;
}
.step-2 .col-2 .thumb dl dd {
  padding: 0 10px;
  color: #555;
  font-weight: bold;
  text-align: center;
}
.step-2 .col-2 .thumb dl dd span {
  font-size: 85%;
  font-weight: normal;
}
.step-2 .col-2 .select {
  float: left;
  width: 49%; //2025/06/18 MEE NAKANE  width: 78%;
}
.step-2 .box-cal {
  float: none;
  clear: both;
}
.step-2 .box-cal .btn {
  text-align: center;
}
.step-2 .box-product{
	display: flex;
}
.step-2 .box-product .selectProducts{
	position:absolute;
	right: 10px;
	bottom: 5px;
}

.step-2 .area-select {
  padding-top: 0;
}

/*
2025/06/10 MEE NAKANE fullOverlay
*/

.fullOverlay{
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:rgba(100,100,100,.8);
  z-index:10;
}

.fullOverlay .selectContaner{
  background-color: white;
  width: 70%;
  height: 70%;
  margin: 5% auto;
}

.fullOverlay .selectImage{
  width: 98%;
  height: 100%;
  display:flex;
  text-align: center;
  margin: 0 30px;
  flex-wrap:wrap;
  overflow: auto;
}

.fullOverlay .closeOverlay img{
  float:right;
  width:80px;
  height:25px;
}

.fullOverlay .closeOverlay img:hover{
  cursor:pointer;
}


.fullOverlay .selectImage .contentImage {
  width: 23%;
  border: 1px solid #ccc;
  margin: 5px;
  
}

.fullOverlay .selectImage .contentImage:hover{
   border: 2px solid #000;
   cursor:pointer;
}
.fullOverlay .selectImage .contentImage dl {
  padding-bottom: 10px;
}
.fullOverlay .selectImage .contentImage dl dt {
  margin-bottom: 10px;
  text-align: center;
}
.fullOverlay .selectImage .contentImage dl dt img {
  width: 100%;
  height: auto;
}
.fullOverlay .selectImage .contentImage dl dd {
  padding: 0 10px;
  color: #555;
  font-weight: bold;
  text-align: center;
}
.fullOverlay .selectImage .contentImage dl dd span {
  font-size: 85%;
  font-weight: normal;
}
.fullOverlay .selectImage .contentImage dl p {
  text-align:left;
}


/*
.area-content 2025/06/18 MEE NAKANE
*/

.step-2 .area-content {
  margin: 0 auto;
}

.step-2 .area-select {
  margin: 0 auto 0 0;
}

.step-2 .area-content .outer {
  position: relative;
  max-width:1100px;
  margin: 0 auto;
  overflow: hidden;
}

.step-2 .box {
  position: relative;
  float: left;
  width: 88%; //2025/06/19 MEE NAKANE width: 94%;
  margin-right: 0%;
  margin-bottom:20px;
  margin-left: 1.5%;
}


.step-2 .area-select .box .box-inr {
 width:100%;
 float: none;
}


.step-2 .area-product {
  max-width:960px;
  width: 100%;
  margin: 0 auto;
}
.step-2 .area-product h4 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #555;
  font-size: 139%;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
.step-2 .area-product .lineup {
  margin-bottom: 20px;
  overflow: hidden;
  *zoom: 1;
}
.step-2 .area-product .lineup li {
  float: left;
  width: 25%;
  min-width: 240px;
}
.step-2 .area-product .lineup li dl {
  padding: 10px 0;
}
.step-2 .area-product .lineup li dl dt {
  text-align: center;
  margin-bottom: 10px;
}
.step-2 .area-product .lineup li dl dd {
  color: #555;
  font-weight: bold;
  text-align: center;
}
.step-2 .area-product .lineup li dl dd span {
  font-size: 93%;
  font-weight: normal;
}
.step-2 .area-nav .btn-c .btn-ch {
  float: left;
  width: 50%;
}
.step-2 .area-nav .btn-c .btn-ch a {
  display: inline-block;
  width: 180px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 139%;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.step-2 .area-nav .btn-c .btn-ch a.bgcolor-og {
  background-color: #eb6100;
}
.step-2 .area-nav .btn-c .btn-ch a.bgcolor-gr {
  background-color: #12a866;
}

.step-3 .note {
  padding: 0 10px;
  font-size: 108%;
  text-align: right;
  font-weight: bold;
}
.step-3 .note .txt-og {
  color: #eb6100;
}
.step-3 .note .txt-gr {
  color: #12a866;
}
.step-3 .note .txt-bl {
  color: #197fc7;
}
.step-3 .area-content .head {
  padding-bottom: 20px;
  color: #666;
  font-size: 154%;
  text-align: center;
}
.step-3 .area-content .tit-outer h3,
.step-3 .area-content .basis-outer h3 {
  margin: 0 0 10px 0;
  padding: 0;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.step-3 .area-content .tit-outer h3.txtC,
.step-3 .area-content .basis-outer h3.txtC {
  text-align: center;
}
.step-3 .area-content .tit-outer {
  margin: 0 0 30px 0;
}
.step-3 .area-content .outer {
  overflow: hidden;
  *zoom: 1;
}
.step-3 .area-content .outer .inr-l {
  float: left;
}
.step-3 .area-content .outer .inr-r {
  float: right;
}
.step-3 .area-content .outer .wid-35p {
  width: 35%;
  padding: 0 1%;
}
.step-3 .area-content .outer .wid-40p {
  width: 38%;
  padding: 0 1%;
}
.step-3 .area-content .outer .wid-50p {
  width: 48%;
  padding: 0 1%;
}
.step-3 .area-content .outer .wid-60p {
  width: 58%;
  padding: 0 1%;
}
.step-3 .area-content .outer .wid-70p {
  width: 67%;
  margin-right: 2%;
}
.step-3 .thumb dl dt img {
  width: 100%;
  height: auto;
}
.step-3 .thumb dl dd {
  color: #555;
  font-weight: bold;
  text-align: center;
}
.step-3 .thumb dl dd span {
  font-size: 93%;
  font-weight: normal;
}
.step-3 .tab {
  max-width: 960px;
  margin: 0 auto;
}
.step-3 .tab .tab-head {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  *zoom: 1;
}
.step-3 .tab .tab-head a {
  display: block;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  -moz-border-radius: 15px 15px 0 0;
  -webkit-border-radius: 15px;
  border-radius: 15px 15px 0 0;
}
.step-3 .tab .tab-head .tab-h {
  float: left;
  width: 50%;
  font-size: 124%;
  font-weight: bold;
}
.step-3 .tab .tab-head .tab-h a {
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}
.step-3 .tab .tab-head .tab-h a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  cursor: pointer;
}
.step-3 .tab .tab-head .active a {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.step-3 .tab .tab-head .tab-h-1 a {
  background-color: #eb6100;
}
.step-3 .tab .tab-head .tab-h-2 a {
  background-color: #12a866;
}
.step-3 .tab #tab1 .color-bl, .step-3 .tab #tab2 .color-bl {
  color: #197fc7;
}
.step-3 .tab #tab1 caption, .step-3 .tab #tab2 caption {
  padding: 5px 0;
  font-size: 108%;
  font-weight: bold;
}
.step-3 .tab #tab1 .table-outer-bl, .step-3 .tab #tab2 .table-outer-bl {
  padding: 2px;
  margin-bottom: 40px;
  background-color: #197fc7;
}
.step-3 .tab #tab1 caption,
.step-3 .tab #tab1 h4 {
  font-size: 124%;
}
.step-3 .tab #tab1 .table-outer-og {
  padding: 2px;
  margin-bottom: 40px;
  background-color: #eb6100;
}
.step-3 .tab #tab2 caption,
.step-3 .tab #tab2 h4 {
  font-size: 124%;
}
.step-3 .tab #tab2 .table-outer-gr {
  padding: 2px;
  margin-bottom: 40px;
  background-color: #12a866;
}
.step-3 .area-detail {
  padding-top: 20px;
  position: relative;
}
.step-3 .area-detail .table-outer {
  margin-bottom: 40px;
}
.step-3 .area-detail table {
  width: 100%;
  margin: 0 auto 0 auto;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.step-3 .area-detail table th, .step-3 .area-detail table td {
  padding: 10px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background-color: #fff;
}
.step-3 .area-detail table th {
  width: 180px;
  background-color: #f5f5f5;
  white-space: nowrap;
}
.step-3 .area-detail table td {
  text-align: right;
  white-space: nowrap;
}
.step-3 .area-detail .border-og th,
.step-3 .area-detail .border-og td {
  border-top: 2px solid #eb6100;
  border-bottom: 2px solid #eb6100;
}
.step-3 .area-detail .border-og th {
  border-left: 2px solid #eb6100;
}
.step-3 .area-detail .border-og td {
  border-right: 2px solid #eb6100;
}
.step-3 .area-detail .border-gr th,
.step-3 .area-detail .border-gr td {
  border-top: 2px solid #12a866;
  border-bottom: 2px solid #12a866;
}
.step-3 .area-detail .border-gr th {
  border-left: 2px solid #12a866;
}
.step-3 .area-detail .border-gr td {
  border-right: 2px solid #12a866;
}
.step-3 .area-detail .border-bl th,
.step-3 .area-detail .border-bl td {
  border-top: 2px solid #197fc7;
  border-bottom: 2px solid #197fc7;
}
.step-3 .area-detail .border-bl th {
  border-left: 2px solid #197fc7;
}
.step-3 .area-detail .border-bl td {
  border-right: 2px solid #197fc7;
}
.step-3 .basis-outer {
  padding: 10px 20px;
  border: 1px solid #ccc;
  margin-bottom: 80px;
}
.step-3 .basis-outer h3 {
  font-size: 124%;
  margin-bottom: 10px;
}
.step-3 .rule {
  overflow: hidden;
  *zoom: 1;
}
.step-3 .rule dl {
  width: 100%;
}
.step-3 .rule dl dt {
  float: left;
  clear: both;
  width: 7em;
}
.step-3 .rule dl dd {
  margin-bottom: 3px;
  padding: 0 0 0px 7em;
}
.step-3 .mess-diff-og {
  color: #eb6100;
  font-size: 200%;
  font-weight: bold;
}
.step-3 .mess-diff-gr {
  color: #12a866;
  font-size: 200%;
  font-weight: bold;
}
.step-3 .tit-outer {
  position: relative;
}
.step-3 .btn-ch {
  position: absolute;
  bottom: 4px;
  right: 0;
  text-align: right;
  margin-top: -20px;
  margin-bottom: 0px;
  overflow: hidden;
  *zoom: 1;
}
.step-3 .btn-ch a {
  float: right;
  display: block;
  height: 20px;
  padding: 10px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #f5f5f5;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.step-3 .btn-ch a.bgcolor-gr {
  color: #fff;
  background-color: #12a866;
}
.step-3 .btn-ch a.bgcolor-og {
  color: #fff;
  background-color: #eb6100;
}
.step-3 .btn-ch a:hover {
  cursor: pointer;
}

.area-nav {
  position: relative;
  max-width: 920px;
  margin: 20px auto;
  border-top: 1px solid #ccc;
}
.area-nav .btn-c {
  position: relative;
  left: 25%;
  top: 10px;
  width: 50%;
  height: 63px;
  text-align: center;
}
.area-nav .btn-c a {
  display: inline-block;
}
.area-nav .btn-l,
.area-nav .btn-r {
  position: absolute;
  top: 10px;
  width: 25%;
}
.area-nav .btn-l a,
.area-nav .btn-r a {
  display: inline-block;
  width: 180px;
  height: 50px;
  line-height: 50px;
  color: #555;
  font-size: 139%;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.area-nav .btn-l {
  position: absolute;
  left: 10px;
  text-align: left;
}
.area-nav .btn-l a {
  background: #f5f5f5 url(../img/bg_btn_l.png) no-repeat 20px center;
}
.area-nav .btn-r {
  position: absolute;
  right: 10px;
  text-align: right;
}
.area-nav .btn-r a {
  background: #f5f5f5 url(../img/bg_btn_r.png) no-repeat 150px center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.area-foot {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  border-top: 1px solid #ccc;
  background-color: #f5f5f5;
}
.area-foot p {
  margin: 0 auto;
  padding: 0 20px;
  line-height: 20px;
  font-size: 11px;
  text-align: right;
}

.fixed .area-result {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 768px) {
  .hidden-sm {
    display: none;
  }

  .area-select {
    width: 100%;
    padding: 20px 0 20px 0;
    overflow: hidden;
    *zoom: 1;
  }
  .area-select .sec-form {
    width: auto;
    margin: 0 auto;
  }
  .area-select .box {
    position: relative;
    float: none;
    width: 96%;
    margin-right: 2%;
    margin-bottom: 20px;
    margin-left: 2%;
  }
  .area-select .box .box-inr {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*PIE.htc を利用*/
  /*behavior: url(../PIE.htc); 2016/10/27 MEE Miyake delete*/
  }
  
  /*
  2025/06/16 MEE NAKANE
  */
  .area-select .box .box-use {
    padding-bottom:25px;
  }
  
  .area-select .box .box-plan {
    padding-bottom:25px;
  }
  
  .area-select .box dl {
    display: table;
    width: 100%;
  }
  .area-select .box dl dt, .area-select .box dl dd {
    display: table-cell;
    vertical-align: middle;
  }
  .area-select .box dl dt {
    height: 30px;
    line-height: 30px;
    font-size: 139%;
    font-weight: bold;
  }
  .area-select .box dl dt .sub {
    font-size: 12px;
    font-weight: normal;
  }
  .area-select .box dl dd {
    text-align: right;
  }
  .area-select .box .attention {
    position: absolute;
    left: 10px;
    bottom: -0px;
    font-size: 85%;
    text-align: left;
  }

  .step-1 .col-2 .paper-cost {
    position: relative;
    background: url(../img/dot_x.png) repeat-x left bottom;
  }
  .step-1 .col-2 .paper-cost .tit {
    color: #e5304a;
  }
  .step-1 .col-2 .paper-cost .cost {
    font-size: 154%;
    font-weight: bold;
    color: #197fc7;
  }

  .step-2 {
    /* ステップ2 */
  }
  .step-2 .col-2 {
    overflow: hidden;
    *zoom: 1;
  }
  .step-2 .col-2 .thumb {
    float: none;
    width: 80%;
    max-width: 260px;
    margin: 0 auto 20px auto;
    border: 1px solid #ccc;
  }
  .step-2 .col-2 .thumb dl {
    padding-bottom: 10px;
  }
  .step-2 .col-2 .thumb dl dt {
    margin-bottom: 10px;
  }
  .step-2 .col-2 .thumb dl dt img {
    width: 100%;
    height: auto;
  }
  .step-2 .col-2 .thumb dl dd {
    color: #555;
    font-weight: bold;
    text-align: center;
  }
  .step-2 .col-2 .thumb dl dd span {
    font-size: 93%;
    font-weight: normal;
  }
  .step-2 .col-2 .select {
    float: none;
    width: 100%;
  }
  
  .step-2 .area-select .box {
    width:92%;
  }
  
  /*
  2025/06/16 MEE NAKANE
  */
  .fullOverlay .selectImage .contentImage {
  width: 60%;
  border: 1px solid #ccc;
  margin: 5px;
  }

  .step-3 .area-content h3 {
    margin: 0 20px 30px 20px;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
  .step-3 .area-content .outer {
    padding: 0 20px;
    overflow: hidden;
    *zoom: 1;
  }
  .step-3 .area-content .outer .inr {
    width: 100%;
    float: none;
  }
  .step-3 .thumb {
    float: none;
    width: 90%;
    margin-right: 5%;
    border: none;
  }
  .step-3 .thumb dl {
    padding-bottom: 10px;
  }
  .step-3 .thumb dl dt {
    margin-bottom: 10px;
    text-align: center;
  }
  .step-3 .thumb dl dt img {
    width: 100%;
    max-width: 220px;
    height: auto;
  }
  .step-3 .thumb dl dd {
    color: #555;
    font-weight: bold;
    text-align: center;
  }
  .step-3 .thumb dl dd span {
    font-size: 93%;
    font-weight: normal;
  }
  .step-3 .tab .area-detail {
    padding-top: 40px;
    position: relative;
  }
  .step-3 .tab .area-detail .table-outer {
    margin-bottom: 40px;
  }
  .step-3 .tab .area-detail table {
    width: 100%;
    margin: 0 auto 0 auto;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .step-3 .tab .area-detail table th, .step-3 .tab .area-detail table td {
    padding: 10px;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  .step-3 .tab .area-detail table th {
    font-size: 90%;
    width: auto;
    background-color: #f5f5f5;
  }
  .step-3 .basis-outer {
    margin: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 80px;
  }
  .step-3 .basis-outer h3 {
    font-size: 124%;
    margin-bottom: 10px;
  }
  .step-3 .basis-outer .notice {
    padding: 0 20px;
  }
  .step-3 .rule {
    overflow: hidden;
    *zoom: 1;
  }
  .step-3 .rule dl {
    width: 100%;
  }
  .step-3 .rule dl dt {
    float: none;
    width: auto;
    padding: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }
  .step-3 .rule dl dd {
    margin-bottom: 30px;
    padding: 0;
  }
  .step-3 .btn-ch {
    position: static;
    bottom: 4px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    overflow: hidden;
    *zoom: 1;
  }
  .step-3 .btn-ch a {
    float: none;
    display: block;
    height: 20px;
    margin: 0 20px;
    padding: 10px;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #f5f5f5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  .step-3 .btn-ch a.bgcolor-gr {
    color: #fff;
    background-color: #12a866;
  }
  .step-3 .btn-ch a.bgcolor-og {
    color: #fff;
    background-color: #eb6100;
  }
  .step-3 .btn-ch a:hover {
    cursor: pointer;
  }

  .area-nav {
    position: relative;
    width: 100%;
    margin: 40px auto;
    height: auto;
    padding: 40px 0;
    border-top: 1px solid #ccc;
  }
  .area-nav .btn-c {
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    height: 63px;
    margin-bottom: 40px;
    text-align: center;
  }
  .area-nav .btn-c a {
    display: inline-block;
  }
  .area-nav .btn-c a img {
    width: 100%;
    height: auto;
  }
  .area-nav .btn-l,
  .area-nav .btn-r {
    width: 90%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .area-nav .btn-l a,
  .area-nav .btn-r a {
    display: inline-block;
    width: 90%;
    height: 50px;
    line-height: 50px;
    color: #555;
    font-size: 139%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  .area-nav .btn-l {
    position: static;
    left: 0;
    text-align: center;
  }
  .area-nav .btn-l a {
    background: #f5f5f5 url(../img/bg_btn_l.png) no-repeat 20px center;
  }
  .area-nav .btn-r {
    position: static;
    left: 0;
    text-align: center;
  }
  .area-nav .btn-r a {
    background: #f5f5f5 url(../img/bg_btn_r.png) no-repeat 20px center;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }

  /* max-width:768px end */
}
@media (max-width: 480px) {
  .hidden-sp {
    display: none;
  }

  .wrap {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
  }

  .area-head {
    width: 100%;
    height: 78px;
    border-bottom: 1px solid #ccc;
    background: url(../img/bg_head.png) repeat-x left bottom;
  }
  .area-head .inr {
    width: 100%;
    height: 78px;
    margin: 0 auto;
    position: relative;
  }
  .area-head .inr h1 {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
  }
  .area-head .inr h1 img {
    width: 100%;
    height: auto;
  }
  .area-head .inr h2 {
    position: absolute;
    left: 10%;
    bottom: 5px;
    width: 80%;
  }
  .area-head .inr h2 img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .area-head .inr .jet-logo {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 70px;
  }
  .area-head .inr .jet-logo img {
    width: 100%;
    height: auto;
  }

  .area-result {
    width: 100%;
    padding-bottom: 10px;
    background: #eee url(../img/bg_result.png) repeat-x left top;
  }
  .area-result .res-tit {
    margin-bottom: 5px;
    text-align: center;
    font-size: 93%;
    border-bottom: 1px solid #ccc;
  }
  .area-result .inr {
    padding: 0 10px;
  }
  .area-result .outer {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    *zoom: 1;
  }
  .area-result .outer .box .box-inr {
    padding: 0 10px;
  }
  .area-result .outer .box .box-inr dt,
  .area-result .outer .box .box-inr dd {
    text-align: center;
  }
  .area-result .outer .box .box-inr dt {
    color: #666;
    font-weight: bold;
  }
  .area-result .outer .box .box-inr dd .cost {
    margin: 2px 0;
    text-align: center;
    font-size: 124%;
    font-weight: bold;
  }
  .area-result .outer .box .box-inr dd .per {
    padding: 0px 0;
    font-weight: bold;
  }
  .area-result .outer .paper-towel {
    float: none;
    width: 100%;
  }
  .area-result .outer .paper-towel .inr {
    border: none;
  }
  .area-result .outer .paper-towel .inr dt {
    display: none;
  }
  .area-result .outer .jet-towel {
    float: none;
    width: 100%;
  }
  .area-result .outer .jet-towel .box-outer {
    overflow: hidden;
    *zoom: 1;
  }
  .area-result .outer .jet-towel .box-outer .box {
    width: 50%;
    float: left;
  }
  .area-result .outer .box-paper .cost {
    color: #197fc7;
  }
  .area-result .outer .box-purchase .box-inr {
    border-right: 1px solid #ccc;
  }
  .area-result .outer .box-purchase .cost {
    color: #eb6100;
  }
  .area-result .outer .box-purchase .per {
    color: #fff;
    background-color: #eb6100;
  }
  .area-result .outer .box-lease .cost {
    color: #12a866;
  }
  .area-result .outer .box-lease .per {
    color: #fff;
    background-color: #12a866;
  }

  .area-content {
 
   padding-bottom: 20px;
    /*2025/06/18 MEE NAKANE background: url(../img/bg_select.png) repeat-x left top;
  */
  }
  
  .area-content h3 {
    padding-bottom: 20px;
    color: #666;
    font-size: 108%;
    text-align: center;
  }

  .area-select {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
    *zoom: 1;
  }
  .area-select .sec-form {
    width: auto;
    margin: 0 auto;
  }
  .area-select .box {
    float: none;
    width: 90%;
    margin: 0 auto 20px auto;
  }
  .area-select .box .box-inr {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*PIE.htc を利用*/
  /*behavior: url(../PIE.htc); 2016/10/27 MEE Miyake delete*/
  }
  
  .area-select .box .box-days {
    padding-top:10%;
    height:30px;
    min-height :45px;
  }
  
  .area-select .box .box-days dl {
    display: block;
    width: 100%;
  }
  
  .area-select .box .box-days dl dt {
    height: auto;
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 100%;
    font-weight: bold;
    text-align: center;
  }
  
  .area-select .box .box-item {
    margin:0 auto ;
  }
  
  .step-2 .area-content {
    margin: 0 auto;
  }
  
  .step-2 .area-select .box {
    width:88%;
  }
  
  .area-select .box dl {
    display: table; //2025/06/19 MEE NAKANE  display: block;
    width: 100%;
    height: 150%; //2025/06/19 MEE NAKANE
  }
  .area-select .box dl dt, .area-select .box dl dd {
    display: block;
    vertical-align: middle;
  }
  .area-select .box dl dt {
    height: auto;
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 100%;
    font-weight: bold;
    text-align: center;
  }
  .area-select .box dl dt .sub {
    font-size: 12px;
    font-weight: normal;
  }
  .area-select .box dl dd {
    text-align: center;
    padding-bottom: 5px;
    position:unset;
    display:table-cell;
  }
  .area-select .box dl dd select {
    width: 80%;
  }
  .area-select .box .attention {
    position: static;
    font-size: 93%;
    text-align: left;
  }

  .area-select .box .box-day dl dd {
    position: unset;
  } 
  
  .area-select .box .box-days dl dd {
    display: block;
  }
  
  .area-select .box .box-item {
    height: 100px;
  }
  
    .area-select .box .box-item dl dd {
    position: unset;
    padding-bottom:30px;
  } 
  
  .step-1 {
    /* ステップ1 */
  }
  .step-1 .paper-cost {
    position: relative;
    width: 100%;
  }
  .step-1 .paper-cost .tit {
    display: block;
    margin-right: 0;
    text-align: center;
  }
  .step-1 .paper-cost .cost {
    font-size: 154%;
    font-weight: bold;
    color: #197fc7;
  }
  .step-1 .box-cal {
    position: relative;
    height: 31px;
  }
  .step-1 .box-cal .btn {
    position: static;
    display: block;
    text-align: center;
  }

  .step-2 {
    /* ステップ2 */
  }
  .step-2 .area-product {
    width: 100%;
    margin: 0 auto;
  }
  .step-2 .area-product h4 {
    margin: 0 10px 10px 10px;
    padding-bottom: 10px;
    color: #555;
    font-size: 139%;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
  }
  .step-2 .area-product .lineup {
    margin-bottom: 20px;
    overflow: hidden;
    *zoom: 1;
  }
  .step-2 .area-product .lineup li {
    float: none;
    width: 100%;
  }
  .step-2 .area-product .lineup li dl {
    padding: 10px;
  }
  .step-2 .area-product .lineup li dl dt {
    margin-bottom: 10px;
    text-align: center;
  }
  .step-2 .area-product .lineup li dl dd {
    color: #555;
    font-weight: bold;
    text-align: center;
  }
  .step-2 .area-product .lineup li dl dd span {
    font-size: 93%;
    font-weight: normal;
  }
  .step-2 .area-nav .btn-c {
    height: auto;
  }
  .step-2 .area-nav .btn-c .btn-ch {
    float: none;
    width: 100%;
    margin-bottom: 20px;
    padding: 0 5px;
    box-sizing: border-box;
  }
  .step-2 .area-nav .btn-c .btn-ch a {
    display: inline-block;
    width: 100%;
    line-height: 50px;
    color: #fff;
    font-size: 139%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  .step-2 .area-nav .btn-c .btn-ch a.bgcolor-og {
    background-color: #eb6100;
  }
  .step-2 .area-nav .btn-c .btn-ch a.bgcolor-gr {
    background-color: #12a866;
  }
  .step-2 .area-nav .btn-c .btn-ch a img {
    width: 100%;
    height: auto;
  }

  .step-3 .area-detail {
    padding-top: 40px;
    position: relative;
  }
  .step-3 .area-detail .table-outer {
    margin-bottom: 40px;
  }
  .step-3 .area-detail .table-outer .border-og th,
  .step-3 .area-detail .table-outer .border-og td {
    border: none;
  }
  .step-3 .area-detail .table-outer .border-og th {
    border-top: 2px solid #eb6100;
    border-right: 2px solid #eb6100;
    border-left: 2px solid #eb6100;
  }
  .step-3 .area-detail .table-outer .border-og td {
    border-right: 2px solid #eb6100;
    border-bottom: 2px solid #eb6100;
    border-left: 2px solid #eb6100;
  }
  .step-3 .area-detail .table-outer .border-gr th,
  .step-3 .area-detail .table-outer .border-gr td {
    border: none;
  }
  .step-3 .area-detail .table-outer .border-gr th {
    border-top: 2px solid #12a866;
    border-right: 2px solid #12a866;
    border-left: 2px solid #12a866;
  }
  .step-3 .area-detail .table-outer .border-gr td {
    border-right: 2px solid #12a866;
    border-bottom: 2px solid #12a866;
    border-left: 2px solid #12a866;
  }
  .step-3 .area-detail .table-outer .border-bl th,
  .step-3 .area-detail .table-outer .border-bl td {
    border: none;
  }
  .step-3 .area-detail .table-outer .border-bl th {
    border-top: 2px solid #197fc7;
    border-right: 2px solid #197fc7;
    border-left: 2px solid #197fc7;
  }
  .step-3 .area-detail .table-outer .border-bl td {
    border-right: 2px solid #197fc7;
    border-bottom: 2px solid #197fc7;
    border-left: 2px solid #197fc7;
  }
  .step-3 .area-detail table {
    width: 100%;
    margin: 0 auto 0 auto;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .step-3 .area-detail table th, .step-3 .area-detail table td {
    display: list-item;
    list-style-type: none;
    padding: 10px;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    background-color: #fff;
  }
  .step-3 .area-detail table th {
    width: auto;
    background-color: #f5f5f5;
    white-space: nowrap;
  }
  .step-3 .area-detail table th.txt-r {
    text-align: left;
  }
  .step-3 .area-detail table td {
    width: auto;
    white-space: normal;
  }
  .step-3 .rule {
    overflow: hidden;
    *zoom: 1;
  }
  .step-3 .rule dl {
    width: 100%;
  }
  .step-3 .rule dl dt {
    float: none;
    clear: both;
    width: auto;
  }
  .step-3 .rule dl dd {
    margin-bottom: 10px;
    padding: 0 0 10px 0;
  }
  .step-3 .btn-ch {
    position: static;
    bottom: 4px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    overflow: hidden;
    *zoom: 1;
  }
  .step-3 .btn-ch a {
    float: none;
    display: block;
    height: 20px;
    margin: 0 20px;
    padding: 10px;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #f5f5f5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  .step-3 .btn-ch a.bgcolor-gr {
    color: #fff;
    background-color: #12a866;
  }
  .step-3 .btn-ch a.bgcolor-og {
    color: #fff;
    background-color: #eb6100;
  }
  .step-3 .btn-ch a:hover {
    cursor: pointer;
  }
  .step-3 .harrow {
    margin: 0px 0 0 25%;
  }

  .area-nav {
    position: relative;
    width: 100%;
    margin: 40px auto;
    height: auto;
    padding: 40px 0;
    border-top: 1px solid #ccc;
  }
  .area-nav .btn-c {
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    height: 63px;
    margin-bottom: 40px;
    text-align: center;
  }
  .area-nav .btn-c a {
    display: inline-block;
  }
  .area-nav .btn-c a img {
    width: 90%;
    height: auto;
  }
  .area-nav .btn-l,
  .area-nav .btn-r {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .area-nav .btn-l a,
  .area-nav .btn-r a {
    display: inline-block;
    width: 90%;
    height: 50px;
    line-height: 50px;
    color: #555;
    font-size: 139%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  .area-nav .btn-l {
    position: static;
    left: 0;
    text-align: center;
  }
  .area-nav .btn-l a {
    background: #f5f5f5 url(../img/bg_btn_l.png) no-repeat 20px center;
  }
  .area-nav .btn-r {
    position: static;
    left: 0;
    text-align: center;
  }
  .area-nav .btn-r a {
    background: #f5f5f5 url(../img/bg_btn_r.png) no-repeat 20px center;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }

  .area-foot {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    border-top: 1px solid #ccc;
    background-color: #f5f5f5;
  }
  .area-foot p {
    width: 90%;
    margin: 0 auto;
    font-size: 85%;
    line-height: 40px;
    text-align: center;
  }

  /* max-width:480px end */
}
