@charset "UTF-8";
/* // ///////////////////////////////////////////
//
//  基本設定
//
// /////////////////////////////////////////// */
/*! normalize.css v2.1.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Prevent system color scheme's background color being used in Firefox, IE,
 *    and Opera.
 * 2. Prevent system color scheme's text color being used in Firefox, IE, and
 *    Opera.
 * 3. Set default font family to sans-serif.
 * 4. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  background: #fff;
  /* 1 */
  color: #000;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 4 */
  -webkit-text-size-adjust: 100%;
  /* 4 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* // ///////////////////////////////////////////
//
//  レイアウトのスタイル
//
// /////////////////////////////////////////// */
#container {
  min-height: inherit;
  margin-top: 2.5em;
}
main {
  position: relative;
  width: 100%;
  padding-bottom: 50px;
}
.LC_Page_Index #container {
    margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #container {
    margin-top: 20px;
  }
  main {
    padding-left: 0!important;
    padding-right: 0!important;
  }
}
.inner {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
@media only screen and (min-width: 768px) {
  .inner {
    max-width: 1170px;
    margin: 0 auto;
  }
}

/* // ///////////////////////////////////////////
//
//  ヘッダーのスタイル
//
// /////////////////////////////////////////// */
header {
  position: relative;
  width: 100%;
  height: 50px;
  text-align: center;
}
header #site-logo {
  padding-top: 7px;
}
header #site-logo img {
  width: auto;
  height: 22px;
}
header #global-navi {
  position: absolute;
  top: 15px;
  right: 10px;
}
header #global-navi ul {
  text-align: center;
}
header #global-navi li {
  display: inline-block;
  font-size: 15px;
  margin-left: 16px;
}
header #global-navi .badge {
  position: relative;
  top: -10px;
  left: -4px;
  margin-left: 5px;
}
@media only screen and (min-width: 768px) {
  header {
    height: 80px;
  }
  header #site-logo {
    padding-top: 25px;
  }
  header #site-logo img {
    width: auto;
    height: auto;
  }
  header #global-navi {
    top: 30px;
  }
  
  #HeaderUnderLine {
  	width: 100%;
  	margin: 0;
/*  	border-top: 5px solid #8ECFC7;*/
  	border-top: 0;
  	margin-top: -23px;
  	
  }
}
@media (min-width:768px)and (max-width:991px) {
  header {
    height: auto;
  }
  header #global-navi {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width:480px) {
  header #global-navi {
    top: 12px;
  }
  header #global-navi li {
    font-size: 12px;
  }
}

/* // ///////////////////////////////////////////
//
//  フッターのスタイル
//
// /////////////////////////////////////////// */
footer {
  position: relative;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  width: 100%;
  padding: 40px 0 10px 0;
  margin-bottom: 50px;
  background-color: #222;
}
footer a {
  color: #ffffff;
}
footer .pagetop {
  position: absolute;
  top: -65px;
  left: 50%;
  display: block;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  color: #8ECFC7;
  font-weight: bold;
  width: 50px;
  height: 50px;
  padding-top: 7px;
  margin-left: -25px;
  background-color: #ffffff;
  cursor: pointer;
}
footer .pagetop i {
  display: block;
  font-size: 19px;
  font-weight: normal;
  line-height: 0.8;
}
footer #footer-navi {
  margin-bottom: 30px;
}
footer #footer-navi ul {
  overflow: hidden;
}
footer #footer-navi ul li {
  display: inline-block;
  position: relative;
  padding: 4px 15px;
}
footer #footer-navi ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 10px;
  margin-top: -5px;
  background-color: #fed6dc;
}
footer #footer-navi ul li:last-child:after {
  display: none;
}
footer #sns-navi {
  margin-bottom: 30px;
}
footer #sns-navi ul li {
  display: inline-block;
  padding: 0 5px;
}
footer #sns-navi ul li i {
  display: block;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 26px;
  width: 48px;
  height: 48px;
  padding: 5px;
}
footer #sns-navi ul li a:hover {
  text-decoration: none;
}
footer #sns-navi ul li a:hover i {
  border: 1px solid #ffffff;
  color: #8ECFC7;
  background-color: #ffffff;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
footer .summary img {
  display: block;
  width: auto;
  padding-bottom: 5px;
  margin: 0 auto;
}
footer #copyright {
  display: block;
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  color: #8ECFC7;
  font-size: 11px;
}
@media only screen and (min-width: 768px) {
  footer .summary img {
    width: auto;
  }
}

/* ///////////////////////////////////////////
//
// 共通スタイル
//
/////////////////////////////////////////// */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "segoe UI", Roboto, "Droid Sans", "HiraKakuProN-W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴProN W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴPro W3", Meiryo, "メイリオ", sans-serif;
  color: #050505;
  font-size: 16px;
  letter-spacing: 0.01em;
}
a {
  color: #8ECFC7;
  border-bottom: none;
  text-decoration: none;
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -ms-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
a:hover, a:active, a:focus {
  color: #6CB3AA;
}
p {
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 0 0 1.4em 0;
}
h1 {
  margin: 0 auto 1em;
  font-size: 28px;
  text-align: left;
  font-weight: 100;
  letter-spacing: 0.08em;
}
h2 {
  color: #353535;
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: normal;
  text-align: center;
  margin: 0 0 50px 0;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 28px;
  }
}
h2.title {
  border: none;
}
h3 {
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: normal;
  text-align: center;
  margin: 0 0 20px 0;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 24px;
    margin: 0 0 50px 0;
  }
}
img {
  width: 100%;
}
ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.note {
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  .note {
    font-size: 13px;
  }
}

/* ///////////////////////////////////////////
//
// 色の指定
//
/////////////////////////////////////////// */
.bg-red {
  background-color: #e91134!important;
}

/* ///////////////////////////////////////////
//
// アイコン
//
/////////////////////////////////////////// */
.glyphicon-log-out {
  display: none;
}

.btn {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius:2px;
  -moz-border-radius: 2px;
  border-radius:2px;
  display: inline-block;
  padding: 12px 40px;
  text-decoration: none;
  text-align: center;
  background-color: #8ECFC7;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  border: none;
}
.btn:hover {
  background-color: #6CB3AA;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

/* ///////////////////////////////////////////
//
// アイコンフォントのスタイル
//
/////////////////////////////////////////// */
@font-face {
  font-family: 'font-icon';
  src: url("/entryform2/user_data/packages/T0001/fonts/font-icon.eot?43588921");
  src: url("/entryform2/user_data/packages/T0001/fonts/font-icon.eot?43588921#iefix") format("embedded-opentype"), url("/entryform2/user_data/packages/T0001/fonts/font-icon.woff?43588921") format("woff"), url("/entryform2/user_data/packages/T0001/fonts/font-icon.ttf?43588921") format("truetype"), url("/entryform2/user_data/packages/T0001/fonts/font-icon.svg?43588921#font-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
.icon {
  font-style: normal;
  font-weight: normal;
  font-family: "font-icon";
}

/* ///////////////////////////////////////////
//
// ラベル（NEWなど）のスタイル
//
/////////////////////////////////////////// */
.label {
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 11px;
  width: 40px;
  height: 40px;
  padding-top: 14px;
}
.label-primary {
  background-color: #ad3d4f;
}
@media only screen and (max-width: 767px) {
  .label {
    font-size: 10px;
    padding-top: 16px;
  }
}

/* ///////////////////////////////////////////
//
// SOLD OUT
//
/////////////////////////////////////////// */
.soldout {
  border-radius: 0;
  font-family: Arial, Helvetica;
  width: auto;
  height: auto;
  padding: 5px 40px 4px 40px;
  background: none;
  color: #fff;
  background-color: #8ECFC7;
}
#product-list-wrap .soldout {
  top: 19px;
  left: -38px;
  font-size: 10px;
}
@media only screen and (max-width: 767px) {
  #product-list-wrap .soldout {
    top: 7px;
    left: -51px;
  }
}

/* ///////////////////////////////////////////
//
// スペック
//
/////////////////////////////////////////// */
.spec {
  position: relative;
  margin-bottom: 0;
}
.spec dt,.spec dd {
  font-weight: normal;
}
.spec dt {
  position: absolute;
  left: 0;
}
.spec dd {
  position: relative;
  margin-left: 64px;
}
.spec dd:before {
  content: ":";
  position: absolute;
  left: -10px;
}
.stock p {
  margin-bottom: 0;
}
.stock p.attention {
  color: #ff0000;
}

/* ///////////////////////////////////////////
//
// モバイルナビのスタイル
//
/////////////////////////////////////////// */
#mobile-nav {
display:none;
}
#mobile-nav nav {}
#mobile-nav nav ul {}
#mobile-nav nav ul li {
  padding-left: 0;
  padding-right: 0;
}
#mobile-nav nav ul li a {
  background-color: #f8f8f8;
}
#mobile-nav nav ul li .btn {
  font-size: 16px;
}

/* ///////////////////////////////////////////
//
// 返送料·クリーニング不要
//
/////////////////////////////////////////// */
#info-cleaning {
  padding: 30px 0;
}
#info-cleaning .point-box .point {
  list-style: disc;
  color: #050505;
  font-weight: normal;
  margin-left: 18px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  #info-cleaning {
    padding: 60px 0;
  }
  #info-cleaning .point-box {
    overflow: hidden;
  }
  #info-cleaning .point-box .point {
    float: left;
    width: 33.333%;
    padding: 0 6%;
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
  }
}

/* ///////////////////////////////////////////
//
// ご利用料金
//
/////////////////////////////////////////// */
#info-price {
  padding: 30px 0;
}
#info-price .price-note-box .price-note {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  #info-price {
    padding: 60px 0;
  }
  #info-price .price-note-box {
    overflow: hidden;
  }
  #info-price .price-note-box .price-note {
    float: left;
    width: 33.333%;
    padding: 0 3%;
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
  }
}

/* ///////////////////////////////////////////
//
// お取扱ブランド
//
/////////////////////////////////////////// */
#info-brand {
  padding: 30px 0;
}
#info-brand ul li {
  display: block;
  text-align: center;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  #info-brand {
    padding: 60px 0;
  }
  #info-brand ul {
    margin: 0 8%;
    overflow: hidden;
  }
  #info-brand ul li {
    float: left;
    width: 25%;
    padding: 0 40px;
  }
}
@media (min-width: 768px)and (max-width: 991px) {
  #info-brand ul li {
    width: 50%;
    padding: 0;
  }
}

/* // ///////////////////////////////////////////
//
// カテゴリーナビゲーションのスタイル
//
// /////////////////////////////////////////// */
#category-navi {
  display: none;
  width: 100%;
  background-color: #ad8982;
}
.navbar {
  margin-bottom: 0;
}
#category-navi ul {
  text-align: center;
  width: 100%;
  max-width: 1110px;
  padding: 15px 0;
  margin: 0 auto;
}
#category-navi li {
  display: inline-block;
}
#category-navi li a,
#category-navi li a:hover {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 5px 15px;
}
@media (min-width: 768px) {
  #category-navi {
    display: block!important;
  }
}

/* // ///////////////////////////////////////////
//
// ページャーのスタイル
//
// /////////////////////////////////////////// */
.pagination {
  display: block;
  text-align: center;
}
.pagination > :first-child {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.pagination > :last-child {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.pagination strong,.pagination a {
  float: none;
  border: none;
}
.pagination strong {
  background-color: #8ECFC7;
}
.pagination a {
  color: #8ECFC7;
  margin-left: 0;
  background-color: #e6e7e9;
}
.pagination a:hover {
  color: #8ECFC7;
  text-decoration: underline;
}
.pagination a.before,.pagination a.next {
  background: none;
}

/* // ///////////////////////////////////////////
//
// トップページのスタイル
//
// /////////////////////////////////////////// */
/* containerスタイルの調整 */
.LC_Page_Index #container {
  min-height: inherit;
}
.LC_Page_Index .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.LC_Page_Index main {
  padding-left: 0;
  padding-right: 0;
}

/* スマホビューの検索ボックス・カテゴリボタンの非表示 */
.LC_Page_Index #mobile-nav {
  display: none;
}

/* トップ独自のスタイル */
.LC_Page_Index img {
	width:auto;
}

.LC_Page_Index section {
	text-align:center;
	padding-top:50px;
	padding-bottom:100px;
}

.LC_Page_Index section.pfblock-gray {
	background: #f5f5f5;
}

.LC_Page_Index #top-summary {
	margin-top:0;
  padding: 10px 0;
  background: url('/entryform2/user_data/packages/T0001/img/page/top/bg-summary.jpg') no-repeat center top;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: left;
}
.LC_Page_Index #top-summary p {
  margin-bottom: 0;
}
.LC_Page_Index #top-summary .catch {
  padding: 20px 0 10px 0;
}
.LC_Page_Index #top-summary .catch img {
  width: 60%;
}
.LC_Page_Index #top-summary h1 {
  color: #353535;
  font-size: 12px;
  line-height: 1.4em;
  text-align: left;
}
.LC_Page_Index #top-summary .registration {
  margin-bottom: 20px;
  text-align: left;
}
.LC_Page_Index #top-summary .registration .button-registration {
  margin-bottom: 7px;
}


@media only screen and (min-width: 500px) and (max-width: 768px) {
  .LC_Page_Index #top-summary .catch img {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) {
  .LC_Page_Index #top-summary {
    height: 714px;
    padding: 0;
  }
  .LC_Page_Index #top-summary .catch {
    padding: 60px 0 30px 30px;
	text-align: left;
  }
  .LC_Page_Index #top-summary h1 {
    font-size: 20px;
    text-align: left;
    font-weight: normal;
    padding: 0 0 30px 30px;
  }
  .LC_Page_Index #top-summary .registration {
    width: 330px;
    margin: 0 auto;
  }
  .LC_Page_Index #top-summary .registration .button-registration {
    text-align: center;
    margin-bottom: 25px;
  }
  .LC_Page_Index #top-summary .registration .note {
    text-align: center;
  }
}

.LC_Page_Index #top-about p {
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 650px;
  text-align: left;
}

.LC_Page_Index #top-about ul {
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 650px;
  text-align: left;
}
.LC_Page_Index #top-about li {
	margin-bottom: 5px;
}

.LC_Page_Index #top-about dl {
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 650px;
  text-align: left;
}

.LC_Page_Index #top-about dt {
	margin-top: 10px;
	margin-bottom: 5px;
}

.LC_Page_Index #top-about figure {
	display: block;
	width: 60%;
	margin: 10px auto;
}

.LC_Page_Index #top-about figcaption {
	font-size: 12px;
}

.LC_Page_Index #top-about .img-about {
	width: 60%;
	margin: 10px auto;
}

.LC_Page_Index #top-flow {
  padding: 30px 0 15px 0;
}
.LC_Page_Index #top-flow h2 {
  margin-bottom: 20px;
}
.LC_Page_Index #top-flow .step-box .step {
  text-align: center;
}
.LC_Page_Index #top-flow .step-box .step img {
  width: 80%;
  margin-bottom: 15px;
}
.LC_Page_Index #top-flow .step-box .step p strong {
  display: block;
  color: #ad8982;
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (min-width: 500px) and (max-width: 767px) {
  .LC_Page_Index #top-flow .step-box {
    margin: 0 0;
    overflow: hidden;
  }
  .LC_Page_Index #top-flow .step-box .step {
    float: left;
    width: 50%;
    text-align: center;
    padding: 0 5%;
  }
  .LC_Page_Index #top-flow .step-box .step img {
    width: 80%;
  }
  .LC_Page_Index #top-flow .step-box .step p {
    text-align: left;
    font-size: 13px;
  }
  .LC_Page_Index #top-flow .step-box .step p strong {
    font-size: 17px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .LC_Page_Index #top-flow {
    padding: 60px 0;
  }
  .LC_Page_Index #top-flow h2 {
    margin-bottom: 30px;
  }
  .LC_Page_Index #top-flow .step-box {
    margin: 0 -30px;
    overflow: hidden;
  }
  .LC_Page_Index #top-flow .step-box .step {
    float: left;
    width: 25%;
    padding: 0 3.5%;
  }
  .LC_Page_Index #top-flow .step-box .step img {
    /*width: 100%;*/
		width:40px;
		margin:30px auto;
  }
  .LC_Page_Index #top-flow .step-box .step p {
    font-size: 13px;
  }
  .LC_Page_Index #top-flow .step-box .step p strong {
    font-size: 17px;
    margin-bottom: 15px;
  }
}
.LC_Page_Index #top-encounter {
  text-align: right;
  padding: 30px 0;
  background: url('/entryform2/user_data/packages/T0001/img/page/top/bg-encounter.jpg') no-repeat 28% top;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
.LC_Page_Index #top-encounter .catch {
  color: #ad3d4f;
  font-size: 20px;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .LC_Page_Index #top-encounter {
	  position: relative;
    padding: 0;
    min-height: 565px;
    background: url('/entryform2/user_data/packages/T0001/img/page/top/bg-encounter.jpg') no-repeat center top;
  }
  .LC_Page_Index #top-encounter p {
	 position: absolute;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .LC_Page_Index #top-encounter .catch {
	  top:90px;
	  right: 0;
    color: #ad3d4f;
    font-size: 32px;
    font-weight: normal;
    line-height: inherit;
  }
  .LC_Page_Index #top-encounter .catch br {
    display: none;
  }
  .LC_Page_Index #top-encounter .lead {
	  top:180px;
	  right: 0;
	  padding: 0;
  }
}
@media (min-width: 768px)and (max-width: 991px) {
  .LC_Page_Index #top-encounter {
    background: url('/entryform2/user_data/packages/T0001/img/page/top/bg-encounter.jpg') no-repeat 35% top;
  }
}
.LC_Page_Index #top-variation {
  text-align: center;
  padding: 30px 0;
}
.LC_Page_Index #top-variation h2 {
  margin-bottom: 20px;
}
.LC_Page_Index #top-variation .lead {
	margin-bottom: 0; 
	padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  .LC_Page_Index #top-variation {
    padding: 0;
  }
.LC_Page_Index #top-variation .lead {
	padding: 70px 0 50px;
}
}
.LC_Page_Index #top-buy {
  text-align: center;
  padding: 150px 20px;
  background: url('/entryform2/user_data/packages/T0001/img/page/top/bg-buy.jpg') no-repeat center top;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
.LC_Page_Index #top-buy h2 {
  display: block;
  color: #ffffff;
  line-height: 1.4em;
  padding: 10px;
  margin: 0;
  background-color: #ad8982;
}
@media only screen and (max-width: 480px) {
  .LC_Page_Index #top-buy {
    padding: 100px 20px;
  }
}
@media only screen and (min-width: 991px) {
  .LC_Page_Index #top-buy {
    text-align: center;
    min-height: 495px;
    padding: 235px 0 0 0;
    background: url('/entryform2/user_data/packages/T0001/img/page/top/bg-buy.jpg') no-repeat center top;
  }
  .LC_Page_Index #top-buy h2 {
    display: inline;
    color: #ffffff;
    padding: 30px 50px;
    background-color: #ad8982;
  }
}
.LC_Page_Index #top-price {
  padding: 30px 0;
}
.LC_Page_Index #top-price .price-note-box .price-note {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .LC_Page_Index #top-price {
    padding: 60px 0;
  }
  .LC_Page_Index #top-price .price-note-box {
    overflow: hidden;
  }
  .LC_Page_Index #top-price .price-note-box .price-note {
    float: left;
    width: 33.333%;
    padding: 0 3%;
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.LC_Page_Index dl.faq {
	text-align:left;
	margin: 0 auto;
}

.LC_Page_Index dl.faq dd {
    margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
	.LC_Page_Index dl.faq {
		width : 60%;
	}
}

@media only screen and (max-width: 767px) {
	.LC_Page_Index dl.faq {
		width : 100%;
	}
}

/* // ///////////////////////////////////////////
//
// リストページのスタイル
//
// /////////////////////////////////////////// */
.LC_Page_Products_List h2 {
  float: left;
  color: #ad3d4f;
  font-size: 22px;
  font-weight: normal;
  text-align: left;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  .LC_Page_Products_List h2 {
    margin: 0 0 20px 0;
  }
}
.LC_Page_Products_List #search {
  float: right;
  width: 300px;
  margin: 0 0 35px 0;
}
.LC_Page_Products_List #search button.btn {
  border: 1px solid #ccc;
  -moz-border-radius: 0 4px 4px 0 / 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0 / 0 4px 4px 0;
  border-radius: 0 4px 4px 0 / 0 4px 4px 0;
  color: #050505;
  font-size: 14px;
  padding: 6px 12px;
  background-color: #fff;
}
.LC_Page_Products_List .pagecond_area {
  clear: both;
}
.LC_Page_Products_List #product-list-wrap {
  clear: both;
}
.LC_Page_Products_List .list_area {
  position: relative;
}
@media (min-width: 1200px) {
  #product-list-wrap div.list_area:nth-child(4n+1) {
    padding-left: 10px;
  }
}
@media (min-width: 1200px) {
  #product-list-wrap div.list_area:nth-child(4n+1) {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  #product-list-wrap div.list_area:nth-child(4n+1) {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  #product-list-wrap div.list_area:nth-child(3n+1), #product-list-wrap div.list_area:nth-child(3n) {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  #product-list-wrap div.list_area:nth-child(3n+1) {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  #product-list-wrap div.list_area:nth-child(3n) {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1200px) {
  #product-list-wrap div.list_area {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  #product-list-wrap div.list_area {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  #product-list-wrap div.list_area {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#product-list-wrap div.list_area > a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.LC_Page_Products_List .list_area .thumbnail {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  height: auto!important;
  margin-bottom: 12px;
}
.LC_Page_Products_List .list_area .thumbnail .caption .status_icon {
  position: absolute;
  top: -50px;
  left: 10px;
}
.LC_Page_Products_List .list_area .brand {
  color: #ad8982;
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
}
.LC_Page_Products_List .list_area h3 {
  color: #8ECFC7;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4em;
  padding: 0 15px;
  margin-bottom: 10px;
}
.LC_Page_Products_List .list_area .btn-arrow {
	top:50%;
	padding-right: 0;
}
@media (min-width: 481px)and (max-width: 767px) {
  .LC_Page_Products_List .list_area .speck,.LC_Page_Products_List .list_area .stock {
    font-size: 13px;
  }
  .LC_Page_Products_List .list_area .brand {
    font-size: 14px;
  }
  .LC_Page_Products_List .list_area h3 {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  #product-list-wrap .img-container {
	  position: relative;
	  overflow: hidden;
  }
  #product-list-wrap div.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    width: 100%;
    height: auto;
    padding: 8px 12px;
    background-color: rgba(255,255,255,0.7);
    overflow: visible;
  }
  #detailphotobloc .picture, #product-list-wrap .picture {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  #product-list-wrap div.list_area {
    padding: 10px;
    overflow: hidden;
  }
  #product-list-wrap div.list_area > a.thumbnail {
    padding: 0 10px 0 0;
  }
  #product-list-wrap div.list_area .picture {
    padding-left: 0;
    margin-top: 0;
  }
  #product-list-wrap div.list_area .thumbnail .caption .status_icon {
    top: -5px;
    left: -5px;
  }
  #product-list-wrap div.caption {
    font-size: 13px;
    padding: 9px 0 3px 0;
    overflow: hidden;
  }
  #product-list-wrap .brand {
    font-size: 13px;
    margin-bottom: 3px;
    text-align: left;
    overflow: hidden;
  }
  #product-list-wrap h3 {
    text-align: left;
    padding: 0;glyphicon-chevron-glyphi-ねnajihuseru background-color:
    overflow: hidden;
  }
}
@media (min-width: 1200px) {
  #product-list-wrap div.caption:after {
    content: "詳細を見る";
    position: absolute;
    top: 50%;
    right: 10px;
    color: #8ECFC7;
    margin-top: -9px;
  }
}
@media (min-width: 1200px) {
  ._area {
    float: ^left
  }
}

/* // ///////////////////////////////////////////
//
// 商品詳細ページのスタイル
//
// /////////////////////////////////////////// */
.LC_Page_Products_Detail #detailarea {
  margin: 0 -30px 2.5em;
}

/* 商品画像 */
.LC_Page_Products_Detail #detailarea #detailphotobloc-wrap {
  padding: 0 30px;
}
.LC_Page_Products_Detail #detailarea #detailphotobloc .picture {
  padding: 0;
  border-radius: 0;
}

/* 商品説明枠 */
.LC_Page_Products_Detail #detailarea #detailrightbloc {
  border: none;
  box-shadow:none;
  margin-bottom: 0;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-heading {
  background-color: transparent;
  border: none;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-body {
  padding-top: 0;
  padding-bottom: 0;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-body .delivery {
  border: 1px #8ECFC7 solid;
  color: #8ECFC7;
  text-align: center;
  font-size: 14px;
  padding: 8px 10px 7px;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-body .brand {
  color: #ad8982;
  font-size: 14px;
  margin-bottom: .8em;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-body h2 {
  color: #333;
  font-size: 24px;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 1em;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-body .spec {
  margin-bottom: 1.6em;
  font-size: 15px;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-body .spec dt,
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-body .spec dd {
  margin-bottom: .3em;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-body .main_comment {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1em;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc #cart_area-wrap .cart_area .attention {
  text-align: center;
  margin-bottom: 2em;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc #cart_area-wrap .has-error select {
  margin-bottom: 7px;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc #cart_area-wrap .has-error .attention {
  margin-bottom: 0;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .form-group {
    margin-bottom:2em;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc #sns-tool {
    text-align:center;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc #sns-tool {
    text-align:center;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc #sns-tool li {
    display:inline-block;
    margin-bottom: 1em;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc #sns-tool li img {
    width:60px;
    height:50px;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc #sns-tool li.mailmagazine img {
    width:126px;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-footer {
  background-color: transparent;
  border: none;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-footer .classlist {
  margin-bottom: 2em;
  font-size: 15px;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-footer .classlist .form-group {
  margin: 15px 0;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-footer .classlist .form-group div {
  padding: 0;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-footer .classlist .form-control {
  font-size: 15px!important;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-footer .classlist .control-label {
  text-align: left;
}
.LC_Page_Products_Detail #detailarea #detailrightbloc .panel-footer .cartin {
  float: none;
  margin: 0 auto;
}

/* ご利用の流れ */
.LC_Page_Products_Detail #detail-flow {
  margin-bottom: 2.5em;
}
.LC_Page_Products_Detail #detail-flow h2 {
  font-size: 24px;
  margin-bottom: 1.4em;
}
.LC_Page_Products_Detail #detail-flow .step-box .step {
  text-align: center;
}
.LC_Page_Products_Detail #detail-flow .step-box .step img {
  width: 100%;
  margin-bottom: 20px;
}
.LC_Page_Products_Detail #detail-flow .step-box .step p strong {
  display: block;
  color: #ad8982;
  margin-bottom: 10px;
}
@media only screen and (min-width: 500px) and (max-width: 990px) {
  .LC_Page_Products_Detail #detail-flow .step-box {
    margin: 0 0;
    overflow: hidden;
  }
  .LC_Page_Products_Detail #detail-flow .step-box .step {
    float: left;
    width: 50%;
    text-align: center;
    padding: 0 1%;
    overflow: hidden;
  }
  .LC_Page_Products_Detail #detail-flow .step-box .step img {
  display: block;
  float: left;
    width: 100px;
  }
  .LC_Page_Products_Detail #detail-flow .step-box .step p {
    text-align: left;
    font-size: 13px;
    margin-left: 110px;
    overflow: hidden;
  }
  .LC_Page_Products_Detail #detail-flow .step-box .step p strong {
    font-size: 17px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 991px) {
  .LC_Page_Products_Detail #detail-flow {
  }
  .LC_Page_Products_Detail #detail-flow h2 {
  }
  .LC_Page_Products_Detail #detail-flow .step-box {
    margin: 0 -30px;
    overflow: hidden;
  }
  .LC_Page_Products_Detail #detail-flow .step-box .step {
    float: left;
    width: 25%;
    text-align: left;
    padding: 0 1%;
  }
  .LC_Page_Products_Detail #detail-flow .step-box .step img {
  display: block;
  float: left;
    width: 100px;

  }
  .LC_Page_Products_Detail #detail-flow .step-box .step p {
    font-size: 13px;
    margin-left: 120px;
    overflow: hidden;
  }
  .LC_Page_Products_Detail #detail-flow .step-box .step p strong {
    font-size: 17px;
    margin-bottom: 10px;
  }
}

/* 注意事項 */
.LC_Page_Products_Detail #detail-attention {
  margin-bottom: 2.5em;
}
.LC_Page_Products_Detail #detail-attention h3 {
  font-size: 24px;
  margin-bottom: 1.3em;
}
.LC_Page_Products_Detail #detail-attention .price-note-box {
  margin: 0 -3%;
}
.LC_Page_Products_Detail #detail-attention .price-note-box .price-note {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  .LC_Page_Products_Detail #detail-attention {
    font-size: 14px;
  }
  .LC_Page_Products_Detail #detail-attention .price-note-box {
    overflow: hidden;
  }
  .LC_Page_Products_Detail #detail-attention .price-note-box .price-note {
    float: left;
    width: 33.333%;
    padding: 0 3%;
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
  }
}

/* // ///////////////////////////////////////////
//
// あなたにおすすめの商品リストのスタイル
//
// /////////////////////////////////////////// */
div#whobought_area {
  margin-bottom: 3.5em;
  padding-top: 0;
}
div#whobought_area h2 {
  margin-bottom: 1.4em;
}
#whobought_area .panel-body {
  padding: 0;
  overflow: hidden;
}
#whobought_area .product_item {
  display: block;
  float: left;
  width: 25%;
  padding: 0 10px;
}
#whobought_area .product_item.media {
  margin-top: 0;
}
#whobought_area .product_item .productImage {
  position: relative;
  margin-bottom: 10px;
}
#whobought_area .product_item .productImage a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
#whobought_area .product_item .productImage .img-thumbnail {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  padding: 0;
  margin-bottom: 12px;
}
#whobought_area .product_item .spec {
  color: #333;
}
#whobought_area .product_item .brand {
  color: #ad8982;
  font-size: 12px;
  text-align: center;
  margin-bottom: 6px;
}
#whobought_area .product_item h3 {
  color: #8ECFC7;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4em;
  padding: 0 15px;
  margin-bottom: 10px;
}
#whobought_area .product_item div.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  width: 100%;
  height: auto;
  padding: 8px 12px;
  background-color: rgba(255,255,255,0.7);
  overflow: visible;
}
#whobought_area .product_item div.caption {
  font-size: 12px;
  overflow: hidden;
}
@media (min-width:768px)and (max-width:991px){
  #whobought_area {
    margin: 0 5px;
  }
  #whobought_area .product_item {
    width: 50%;
    padding: 0 15px;
  }
}
@media (max-width:767px) {
  #whobought_area {
    margin: 0 5px;
  }
  #whobought_area .product_item {
    width: 50%;
    padding: 0 15px;
  }
}
@media (max-width:480px) {
  #whobought_area {
    margin: 0;
  }
  #whobought_area .product_item {
    width: 100%;
    padding: 0 20px;
  }
}

/* // ///////////////////////////////////////////
//
// 新規登録画面のスタイル
//
// /////////////////////////////////////////// */
.LC_Page_Entry header {
  border-bottom: 1px #6CB3AA solid;
  margin-bottom: 2em;
}
.LC_Page_Entry header #global-navi,
.LC_Page_Entry #mobile-nav,
.LC_Page_Entry #sns-navi {
  display: none;
}
.LC_Page_Entry h2 {
  font-size: 22px;
}
.LC_Page_Entry .alert-info {
  background-color: #ffebee;
  color: #ec0000;
  border: none;
}
.LC_Page_Entry #undercolumn_entry {
  max-width: 960px;
  margin: 0 auto;
}
.LC_Page_Entry #form1 #input-field {
  margin-bottom: 2em;
}
.LC_Page_Entry #form1 .form-group {
  margin-left: -15px;
}
.LC_Page_Entry #form1 label {
  position: relative;
  text-align: left;
  font-size: 15px;
  padding-right: 50px;
}
.LC_Page_Entry #form1 label .require {
  position: absolute;
  right: 0;
  top:0;
  background-color: #e60012;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  padding: 4px 6px 3px;
  border-radius:3px;
    -webkit-border-radius:3px;
    -moz-border-radius: 3px;
    line-height: 1;
}
.LC_Page_Entry #form1 .post-mark {
	padding-right: 20px;
	line-height: 34px;
}
.LC_Page_Entry #form1 .btn_area {
  text-align: center;
  margin-right: 0;
  margin-left: 0;
}
.LC_Page_Entry #form1 .zipimg .btn {
  font-size: 14px;
  margin-right: 10px;
  padding: 7px 20px;
}
.LC_Page_Entry #form1 .btn_area div {
  display: inline-block;
  float: none;
  left: auto;
  width: 100%;
  padding: 0;
  text-align: center;
}
.LC_Page_Entry #form1 .btn_area div #next span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.LC_Page_Entry #form1 .btn_area div .btn {
  font-size: 28px;
  margin-bottom: 1.6em;
  padding: 14px 12px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
.LC_Page_Entry #form1 .form-group {
  margin-left: 0;
}
.LC_Page_Entry #form1 label .require {
  top:6px;
}
.LC_Page_Entry #form1 .post-mark {
	line-height: 1.4em;
}
.LC_Page_Entry #form1 .btn_area div {
  width: 36%;
}
.LC_Page_Entry #form1 .form-group {
  margin-left: -15px;
}
}

/* ご利用規約 */
.LC_Page_Entry #kiyaku h3 {
  font-size: 16px;
  text-align: left;
  margin-bottom: .5em;
}
.LC_Page_Entry #kiyaku pre {
  padding: 10px 15px;
  font-size: 12px;
  height: 120px;
  overflow:scroll;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 768px) {
.LC_Page_Entry #kiyaku {
  max-width: 800px;
  margin: 0 auto;
}
}

/* // ///////////////////////////////////////////
//
// マイページのスタイル
//
// /////////////////////////////////////////// */
@media (max-width: 480px) {
  #mynavi_area .mynavi_list .btn {
    font-size: 14px;
    padding: 5px 5px;
  }
}

.LC_Page_Regist_Complete {
  display:none;
}

@media only screen and (min-width: 768px) {
.mynavi_list div.btn-group ul li {
float:left;
}
}



/* // ///////////////////////////////////////////
//
// クレジットページのスタイル
//
// /////////////////////////////////////////// */
@media only screen and (min-width: 768px) {
.flow_area img{
  width: auto;
  margin: 0 auto;

}
}

#payment_form_body th,#payment_form_body td{
padding:10px;

}


/* ===== additional 2016-11-11 ===== */
.btn-group-justified>.btn-group .btn {
    width: 100% !important;
}
.panel-body a.btn {
    white-space: normal !important;
}