<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*
## font
~~~
&lt;p&gt;株式会社エルテックス　eltexDC cssガイド&lt;/p&gt;
~~~
*/

/*body {
  font: 14px/1.5 "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}*/


/*
## h1
~~~
&lt;h1 class="level_h1"&gt;見出し1&lt;/h1&gt;
&lt;h1 class="level_h1"&gt;&lt;span&gt;見出し1&lt;/span&gt;&lt;/h1&gt;
~~~
*/
.level_h1 {
  border-color: #f4a35d;
}

.level_h1 span {
  border-color: #ec8125;
}

/*
## h2
~~~
&lt;h2 class="level_h2"&gt;見出し2&lt;/h2&gt;
~~~
*/
@media screen and (min-width: 750px) {
  .level_h2 {
    border: 1px solid #E4D7AF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    color: #6B2E22;
    position: relative;
    display: block;
    margin: 20px auto;
    box-shadow: 0 -3px 5px 0 #E4D7AF inset;
    background-color: #fff;
  }

  .level_h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 7px;
    height: calc(100% - 3px);
    background-color: #EA403B;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
}

@media screen and (max-width: 749px) {
  .level_h2 {
    border: 1px solid #E4D7AF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
    color: #6B2E22;
    position: relative;
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 -3px 5px 0 #E4D7AF inset;
    background-color: #fff;
  }

  .level_h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 5px;
    height: calc(100% - 3px);
    background-color: #EA403B;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
}

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

/*
## h3
~~~
&lt;h3 class="level_h3"&gt;見出し3&lt;/h2&gt;
~~~
*/
.level_h3 {
  font-weight: normal;
  font-size: 22px;
  border-bottom: 2px solid #ffca7f;
  margin-bottom: 20px;
  padding-bottom: 0;
}

/*
## h4
*/

.level_h4 {
  font-size: 1.0em;
  border-bottom: 1px dotted #ccc;
  margin: 10px 0 10px;
  padding: 5px;
}


/*
## アンカー
~~~
&lt;a href="asdf"&gt;テキストリンク&lt;/a&gt;&lt;br/&gt;
&lt;a href="#"&gt;テキストリンク&lt;/a&gt;
~~~
*/
a {
  outline: none;
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: none;
}

/*
## ボタン
~~~
&lt;div id="" class="set-group buttonArea"&gt;
        &lt;div id="" class="itemWrap  linkWrap"&gt;
            &lt;div class="items"&gt;
                &lt;a href="/edc_fr/MemberRegister.jsp" id="memberRegisterLink_link" class="btn_lg btn_1 memberRegisterLink"&gt;新規会員登録&lt;/a&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
~~~
*/

a.btn_1, input.btn_1[type="button"], input.btn_1[type="submit"], input.btn_1[type="reset"], button.btn_1[type="button"], button.btn_1[type="submit"], button.btn_1[type="reset"] {
  background: #2fa700;
  color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #2fa700;
  font-size: 1.2em;
  font-weight: normal;
  min-width: 180px;
  min-height: 36px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 36px;
  cursor: pointer;
  border-radius: 6px;
  padding: 4px 16px;
  display: inline-block;
  text-decoration: none;
}


/*
## 登録、確定ボタン
~~~
&lt;div id="" class="set-group buttonArea"&gt;
        &lt;div id="" class="itemWrap  linkWrap"&gt;
            &lt;div class="items"&gt;
                &lt;a href="/edc_fr/MemberRegister.jsp" id="saveButton" class="btn_lg btn_1 memberRegisterLink"&gt;登録&lt;/a&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
~~~
*/

#saveButton,
#completeButton,
#selfOrderLink,
#giftOrderLink {
  background-color: #ff9600;
  border-color: #ff9600;
}

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

.saveLoginIdGroup {
  text-align: center;
}

.saveLoginIdItemWrap {
  display: inline-block;
}

.loginButtonGroup {
  text-align: center;
}

.memberReminderGroup {
  text-align: center;
}

.netMemberAddButtonGroup {
  text-align: center;
}

@media screen and (max-width: 641px) {
  #buttonGroup {
    margin-top: 30px;
  }
}


/*
## フォーム
*/
input[type="text"].loginId,
input[type="password"].password,
input[type="password"].passwordConfirm,
input[type="password"].changePassword,
input[type="password"].changePasswordConfirm,
input[type="text"].emailPc1,
input[type="text"].emailPc1Confirm {
  width: 100%;
}

input[type="text"].postCode1 {
  width: 100px;
  margin-right: 10px;
}

.changePasswordMessage,
.changePasswordConfirmMessage {
  display: block;
  margin-top: 5px;
  font-size: 0.8em;
}

.changePasswordMessage::before,
.changePasswordConfirmMessage::before {
  content: "※";
}


/*
## 基本レイアウト
*/
#wrap {
  width: 100%;
  margin: 0;
  position: relative;
  text-align: left;
}

.contents {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
}

.contents section {
  padding: 0;
  margin: 0;
}

.contents .information {
  margin: 0 0 15px 5px;
}

.topGroupName {
  width: 710px;
  float: left;
  /*	margin:20px 0 50px;*/
  border-top-left-radius: 6px;
  -moz-border-top-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  -moz-border-top-right-radius: 6px;
  -webkit-border-top-right-radius: 6px;
}

.layoutGroup {
  margin-bottom: 10px;
}

@media (max-width: 751px) and (orientation: landscape) {
  /* iPhone6- 横向き用 */
  #wrap {
    max-width: 980px;
  }
}

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

  .topGroupName {
    width: 100%;
    margin: 0;
    padding: 10px 10px 0 10px;
    float: none;
  }

  .topGroupName label {
    width: 100%;
    text-align: left;
  }
}


/*
## 1カラム用レイアウト
*/
.oneColumn .topGroupName {
  width: 100%;
}


/*
## 2カラム用レイアウト
*/
.twoColumns form {
  float: left;
}

/*
## 2カラム用レイアウト topGroupName
*/
.twoColumns .topGroupName {
  width: 710px;
}

/*
## レスポンシブ用レイアウト
*/
@media screen and (max-width: 641px) {
  .oneColumn .topGroupName, .twoColumns .topGroupName {
    width: 100%;
  }

  .twoColumns form {
    float: none;
  }
}

/*
## パンくず
~~~
&lt;nav id="panNav" class="panNav"&gt;
	&lt;ul class="cf"&gt;
	&lt;li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"&gt;&lt;a href="/Shop.jsp" itemprop="url"&gt;&lt;span itemprop="title"&gt;トップ&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"&gt;&lt;span itemprop="title"&gt;デザインテンプレート&lt;/span&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;/nav&gt;
~~~
*/
.panNav {
  background-color: #F6F6F6;
  padding: 5px;
  margin-bottom: 10px;
}

.panNav ul {
  font-size: 0.8em;
}

.panNav ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.panNav ul li + li:before {
  content: "&gt;";
  padding: 0 5px;
}

@media screen and (max-width: 641px) {
  .panNav {
    padding: 10px;
  }
}

/*
## ヘッダー
*/
.headerWrap {
  background-color: #ec8125;
}

.headerS nav ul li a.hajimete {
  background: url(../images/headerWakaba.png) no-repeat 0 0;
}

.headerMain .headerSubMenu ul li.headerCart .num {
  background-color: #ec8125;
}

.headerMain .logo {
  margin: 0;
}

.headerMain .logo a {
  background: url(../images/logo.png) no-repeat 0 0;
  height: 58px;
}

.headerMain .headerSubMenu ul li.headerLogin a {
  background: url(../images/headerLogin.png) no-repeat center 8px;
  padding: 40px 0 0;
}

.headerMain .headerSubMenu ul li.headerUser a {
  background: url(../images/headerUser.png) no-repeat center 8px;
  padding: 40px 0 0;
}

.headerMain .headerSubMenu ul li.headerFavo a {
  background: url(../images/headerFavo.png) no-repeat center 8px;
  padding: 40px 0 0;
}

.headerMain .headerSubMenu ul li.headerCart a {
  background: url(../images/headerCart.png) no-repeat center 8px;
  padding: 40px 0 0;
}

@media screen and (max-width: 641px) {
  .headerMain p.logo a {
    background: url(../images/logo.png) no-repeat 0 0;
    background-size: contain;
    padding: 0;
    margin: 5%;
    height: auto;
    width: auto;
  }
}


/*
## ヘッダー 検索
*/
@media screen and (max-width: 641px) {
  .searchNavi input.searchNaviButton {
    background: #000 url(../images/headerSearch_sp.png) no-repeat 50% 50%;
    background-size: 50%;
  }
}


/*
## フッター
*/
.footerGuide {
  margin: 0 auto 10px;
  padding: 20px 0 0;
}

.footerGuide .footerGuideBox {
  float: left;
}

.footerGuide .footerGuideBox.guide_1 {
  width: 260px;
  padding: 20px;
}

.footerGuide .footerGuideBox.guide_2 {
  width: 458px;
  padding: 20px;
  border-left: 1px dotted #ccc;
  border-right: 1px dotted #ccc;
}

.footerGuide .footerGuideBox.guide_3 {
  width: 260px;
  padding: 20px;
}

.footerGuide .footerGuideBox h4 {
  margin: 0 0 20px 0;
}

.footerGuide .footerGuideBox ul li {
  font-size: 0.8em;
  list-style-type: disc;
  margin: 0 0 1.5em 1em;
}

.footerGuide .footerGuideBox .table.shipping_timetable {
  font-size: 0.7em;
}

.footerGuide .footerGuideBox .table.shipping_timetable th {
  width: 100%;
  text-align: center;
  background: #b1e4c4;
  padding: 0.6em;
}

.footerGuide .footerGuideBox .table.shipping_timetable td {
  width: auto;
  padding: 0.6em;
}

.footerGuide .footerGuideBox ul.list_payment {
  margin: 0 0 1.5em 0;
}

.footerGuide .footerGuideBox ul.list_payment li {
  margin: 0 0 0.5em 1em;
  font-weight: bold;
}

.footerGuide .footerGuideBox ul.list_kome li:before {
  content: "※";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}

.footerGuide .footerGuideBox ul.list_kome li {
  padding-left: 1em;
  position: relative;
  list-style-type: none;
  margin: 0 0 1.5em 0;
}

.footerContents {
  background-color: #ec8125;
}

.footerContents .footerInfo .infoBox {
  width: 690px;
  margin: 0;
  float: left;
  height: 140px;
  padding: 20px;
}

.footerContents .footerInfo .policyBox {
  width: 260px;
  font-size: 0.68em;
  margin: 0;
  float: right;
  height: 140px;
  padding: 40px 15px;
}

.footerContents .footerInfo .infoBox .info_tel_wrap {
  float: left;
  margin: 0;
}

.footerContents .footerInfo .infoBox .info_btn_wrap {
  width: 200px;
  float: right;
  margin: 0;
}

.footerContents .footerInfo .infoBox .info_btn_wrap .btn_inquiry a, .footerContents .footerInfo .infoBox .info_btn_wrap .btn_faq a {
  width: 200px;
  height: 45px;
  display: block;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  color: #fff;
  font-weight: bold;
  font-size: 1.0em;
  padding: 0 10px;
  margin: 0 0 10px;
  line-height: 45px;
  text-decoration: none;
  text-align: center;
  background: #ec8125;
}

.footerContents .footerInfo .policyBox .policy_img_wrap {
  float: left;
}

.footerContents .footerInfo .policyBox .policy_text_wrap {
}

.policyBanner img {
  float: left;
  margin-right: 1em;
}

.footerContents {
  padding: 10px 0 0 0;
}

.footerNavi .footerBox ul, .footerNavi .footerBox dl {
  font-size: 0.9em;
  line-height: 1.8em;
}

.footerNavi {
  padding: 30px;
}

.footerNavi .footerBox {
  padding: 0 20px 0 0;
  float: left;
  display: block;
  width: 25%;
}

.footerNavi *:last-child.footerBox {
  padding: 0;
}


.footerNavi:before, .footerNavi:after {
  content: "";
  display: table;
}

.footerNavi:after {
  clear: both;
}

.footerNavi {
  zoom: 1;
}

.footerNavi a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.footerNavi a:hover {
  color: #fff;
  text-decoration: underline;
}

.footerSubNavi {
  font-size: 1.2em;
}

.footerNaviSp {
  display: none;
}

.footerBox ul.tree_list {
  position: relative;
  font-size: 1.0em;
}

.footerBox ul.tree_list li, .footerBox ul.tree_list li &gt; ul &gt; li, .footerBox ul.tree_list li &gt; ul &gt; li &gt; ul &gt; li {
  margin: 0 0 0.5em 0;
}

.footerBox ul.tree_list &gt; li &gt; img, .footerBox ul.tree_list &gt; li &gt; ul &gt; li img, .footerBox ul.tree_list &gt; li &gt; ul &gt; li &gt; ul &gt; li img {
  position: relative;
  top: 0.5em;
  left: 0;
  margin: 0 0.5em 0 0;
  vertical-align: top;
}

.footerBox ul.tree_list &gt; li &gt; ul, .footerBox ul.tree_list &gt; li &gt; ul &gt; li &gt; ul, .footerBox ul.tree_list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; ul {
  margin: 0.5em 0 0 0;
}

.footerBox ul.tree_list &gt; li &gt; ul &gt; li, .footerBox ul.tree_list &gt; li &gt; ul &gt; li &gt; ul &gt; li, .footerBox ul.tree_list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li {
  background: url(../images/tree_list_line_white.png) no-repeat left top;
  padding: 0 0 1em 1em;
  margin: 0 0 0 0.5em;
}

.footerBox ul.tree_list &gt; li &gt; ul &gt; li:last-child, .footerBox ul.tree_list &gt; li &gt; ul &gt; li &gt; ul &gt; li:last-child, .footerBox ul.tree_list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li:last-child {
  background: url(../images/tree_list_line_last_white.png) no-repeat left top;
}

.footerBox ul.tree_list li {
  font-weight: bold;
  margin-top: 2em;
  background: url(../images/iconArrowWhite.png) no-repeat 0 4px;
  padding-left: 21px;
}

.footerBox ul.tree_list li li {
  font-weight: normal;
  margin-top: 0;
}

@media screen and (max-width: 641px) {
  .footerGuide, .footerContents .footerNavi, .footerContents .footerInfo {
    display: none;
  }

  .footerContents {
    background: #fff;
  }

  .footerNaviSp {
    display: block;
    width: 100%;
    background: #f3f3f3;
    margin: 0;
  }

  .footerNaviSp .to_pc {
    background: #fff;
    margin: 0;
    padding: 10px;
  }

  .footerNaviSp .to_pc a {
    display: block;
    border-radius: 1000px;
    background: #f3f3f3;
    collor: #333;
    border: 1px solid #ccc;
    height: 48px;
    line-height: 48px;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 0 #fff;
  }

  .footerNaviSp .pagetop_link {
    border-bottom: 1px solid #ccc;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05)), #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.05))), #fff;
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 1px 0 rgba(255, 255, 255, 1);
    height: 70px;
    text-align: center;
    margin: 0;
  }

  .footerNaviSp .pagetop_link a {
    display: block;
    padding: 10px;
  }

  .footerNaviSp .pagetop_link .pagetop_icon {
    display: inline-block;
    height: 50px;
    padding-top: 10px;
    text-align: center;
    border-style: solid;
    border-width: 10px;
    border-color: transparent;
    border-top-width: 0;
    border-bottom: 10px solid #ccc;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
  }

  .footerNaviSp .pagetop_link .pagetop_text {
    display: block;
    line-height: 20px;
    text-align: center;
    color: #666;
    text-shadow: 0 2px 0 #fff;
    font-size: 1.0em;
  }

  .footerNaviSp .footerGlobalNavi ul {
    margin: 30px 10px;
    border: 1px solid #ccc;
  }

  .footerNaviSp .footerGlobalNavi ul li a {
    margin: 0;
    padding: 18px;
    border-bottom: 1px dotted #ccc;
    display: block;
    background: #fff;
  }

  .footerNaviSp .footerGlobalNavi ul li a:after {
    content: "";
    margin: 0;
    padding: 0;
    line-height: 0;
    background: url(../images/iconArrowGreen2_sp_18@2x.png) no-repeat center center;
    background-size: 100%;
    display: inline-block;
    width: 18px;
    height: 21px;
    float: right;
  }

  .footerNaviSp .contact_tel {
    margin: 10px 10px 30px;
  }

  .footerNaviSp .policyBanner {
    display: block;
    margin: 10px;
    background: #fff;
    padding: 20px;
    text-align: center;
  }

  .footerNaviSp .policyBanner ul {
    text-align: center;
  }

  .footerNaviSp .policyBanner li {
    display: inline-block;
  }

  .footerSubNavi {
    background: #f3f3f3;
    padding-bottom: 0;
  }

  .footerSubNavi ul {
    margin: 0 auto;
    text-align: center;
  }

  .footerSubNavi ul li {
    margin-bottom: 1em;
    float: none;
  }

  .footerSubNavi ul li a {
    color: #333;
    font-size: 0.9em;
  }

  .footerSubNavi ul li + li {
    border-left: none;
  }
}

@media screen and (max-width: 641px) {
  .copy {
    background: #ec8125;
    color: #fff;
    font-size: 0.9em;
    text-align: center;
  }

  .copy .policyBanner {
    display: none;
  }
}


/*
## サイドコンテンツ
*/
.sideContents {
  width: 240px;
  float: right;
}

.sideContents section {
  margin-bottom: 15px;
}

.sideContents aside {
  display: block;
  margin: 0 0 40px 0;
  text-align: center;
}

.sideContents .bnr_wrap {
  display: block;
  margin: 0 0 20px 0;
}

/*
## サイドコンテンツ 初めてのお客様
*/
.contents section.first {
  background: -moz-linear-gradient(top, rgba(100, 172, 0, 0.1) 0%, rgba(255, 255, 255, 0)), #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(100, 172, 0, 0.1)), to(rgba(255, 255, 255, 0))), #fff;
  border: 1px solid #7fcd9c;
  padding: 0 20px;
  -moz-box-shadow: 0px 1px 5px #bbb;
  -webkit-box-shadow: 0px 1px 5px #bbb;
  box-shadow: 0px 1px 5px #bbb;
}

.contents section.first h3 {
  border-top: 4px solid #009b3a;
}

.contents section.first h3.wakaba {
  height: 61px;
  background: url(../images/sideTtlWakaba.png) no-repeat 10px 10px;
}

.contents section.first h3.wakaba span {
  display: none;
}

.contents section.first p.text {
  font-size: 0.75em;
  margin: 0 0 20px;
  padding: 0 10px;
}

@media screen and (max-width: 641px) {
  .contents section.first {
    margin-left: 10px;
    margin-right: 10px;
  }
}


/*
## サイドコンテンツ 新規会員登録
*/
.memberRegister a {
  display: block;
  width: 100%;
  height: 45px;
  background-color: #009b3a;
  color: #fff;
  font-weight: bold;
  font-size: 1.0em;
  text-align: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  line-height: 45px;
  text-decoration: none;
  margin: 0 0 20px;
}

.memberRegister a:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}


/*
## サイドコンテンツ about us
*/
.about_us_menu {
  margin: 0 0 20px;
}

.about_us_menu .about_1 a {
  width: 100%;
  display: block;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  color: #fff;
  font-weight: bold;
  font-size: 0.9em;
  padding: 10px 10px 10px 40px;
  margin: 0 0 10px;
  line-height: 1.5;
  text-decoration: none;
  text-align: left;
  background: #009b3a url(../images/iconArrowWhite.png) no-repeat 10px center;
}

.about_us_menu .about_1 a .small {
  font-size: 0.9em;
}

.about_us_menu .about_2 a, .about_us_menu .about_3 a {
  width: 100%;
  display: block;
  color: #009b3a;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9em;
  padding: 10px 10px 10px 43px;
  margin: 0;
  line-height: 1.5;
}

.about_us_menu .about_1 a:hover, .about_us_menu .about_2 a:hover, .about_us_menu .about_3 a:hover {
  text-decoration: underline;
}

.about_us_menu .about_2 a {
  background: url(../images/icon_acai.png) no-repeat 0 center;
}

.about_us_menu .about_3 a {
  background: url(../images/icon_propolis.png) no-repeat 0 center;
}

@media screen and (max-width: 641px) {
  .about_us_menu .about_1 a .small {
    padding-left: 1em;
  }
}


/*
## サイドコンテンツ ようこそ　ゲストさん
*/
.contents section.guest {
  background: -moz-linear-gradient(top, rgba(254, 223, 0, 0.1) 0%, rgba(255, 255, 255, 0)), #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(254, 223, 0, 0.1)), to(rgba(255, 255, 255, 0))), #fff;
  border: 1px solid #f5c295;
  padding: 0 20px;
  -moz-box-shadow: 0px 1px 5px #bbb;
  -webkit-box-shadow: 0px 1px 5px #bbb;
  box-shadow: 0px 1px 5px #bbb;
}

.contents section.guest h3 {
  border-top: 4px solid #ec8125;
  margin: 0 0 20px;
}

.contents section.guest h3.loginOff img {
  padding: 20px 0 0;
}

.contents section.guest h3.loginOn {
  padding: 20px 10px 0;
}

.contents section.guest h3.loginOn span {
  padding: 0 5px;
}

.contents section.guest p.text {
  font-size: 0.75em;
  margin: 0 0 20px;
  padding: 0 10px;
}

@media screen and (max-width: 641px) {
  .contents section.guest {
    margin-left: 10px;
    margin-right: 10px;
  }
}


/*
## サイドコンテンツ mypage ボタン
*/
.myPageBtn a {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  color: #fff;
  font-weight: bold;
  font-size: 1.0em;
  padding: 11px 10px 9px 40px;
  margin: 0 0 10px;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  text-align: left;
  /* !!!!!!!!!!! */
  background: #ec8125 url(../images/iconArrowWhite.png) no-repeat 10px center;
}

.myPageBtn a:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}


/*
## サイドコンテンツ マイページメニュー
*/

.mypage_menu {
  margin: 0 0 20px;
}

.mypage_menu li a {
  background: url(../images/iconArrowOrange2.png) no-repeat 10px center;
  padding: 0.2em 0.2em 0.2em 43px;
  margin: 0;
  color: #ec8125;
  font-size: 0.9em;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

.mypage_menu li a:hover {
  text-decoration: underline;
}


/*
## サイドコンテンツ カテゴリ
*/

.sideCategory h3 {
  font-size: 1.1em;
  border-bottom: 1px solid #2fa700;
  margin: 0;
  padding: 0 0 10px 0;
}

.sideCategory h3 span {
  border-bottom: 3px solid #2fa700;
  font-weight: bold;
  padding: 10px 10px 6px 10px;
}

.sideCategory ul li {
  border-bottom: 1px dotted #ccc;
  padding: 10px;
}

.sideCategory ul li a {
  display: block;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8em;
  height: 30px;
  line-height: 30px;
}

.sideCategory ul li a:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}


/*
## サイドコンテンツ 価格帯
*/
.priceRange ul li img {
  vertical-align: middle;
  margin-left: 10px;
}

.priceRange ul li span a {
  text-decoration: none;
  color: #333;
  font-size: 0.8em;
}

.priceRange ul li span a:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  text-decoration: underline;
}

.priceRange .level_h1 {
  font-size: 1.2em;
  margin: 10px 0 10px;
}


/*
## その他　スクロールアップ
*/
#scrollUp {
  background: url(../images/top.png) no-repeat;
}

/*
## その他　規約同意チェックボックス
~~~
&lt;div id="isMemberAgreementFlgItemWrap" class="itemWrap isMemberAgreementFlgItemWrap clearfix checkboxWrap"&gt;
            &lt;div class="items"&gt;
                &lt;label id="isMemberAgreementFlg_label" for="isMemberAgreementFlg" class=" isMemberAgreementFlg_itemLabel checkboxLabel"&gt;&lt;input type="checkbox" id="isMemberAgreementFlg" name="isMemberAgreementFlg" class="checkboxStyle REQUIRED_CHECK isMemberAgreementFlg" value="1"&gt;同意する&lt;/label&gt;
                &lt;span id="__error_isMemberAgreementFlg" class="__error __error_isMemberAgreementFlg"&gt;&lt;span class="alertMessage alertMessageContent alertMessage-important"&gt;必須選択項目です。選択してください。&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
        &lt;/div&gt;
~~~
*/
#isMemberAgreementFlgItemWrap, #isUseAgreementFlgItemWrap {
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
  width: 100%;
}


/*
## その他　郵便番号検索ボタンはSPで非表示
*/
@media screen and (max-width: 641px) {
  input[type="button"].postCodeSearchButton,
  input[type="button"].orderPostCodeSearchButton {
    display: none;
  }
}

/*
## その他　入力項目必須
~~~
&lt;div class="required"&gt;&lt;/div&gt;
~~~
*/
.required:after {
  background: #cf646b;
  color: #fff;
}

/*
## その他　条件付き必須
~~~
&lt;div class="required_condition"&gt;&lt;/div&gt;
~~~
*/
.required_condition {
  content: "※";
  background: #317dcb;
  color: #fff;
}

/*
## フォーム　生年月日
*/
select.birthdayMonth,
select.birthdayDay {
  vertical-align: top;
}

@media screen and (max-width: 641px) {
  select.birthdayMonth,
  select.birthdayDay {
    vertical-align: baseline;
  }
}

/*
## テキスト 右寄せ、センター、左寄せ
~~~
&lt;div style="width:400px;"&gt;&lt;div class="text_right"&gt;右寄せ&lt;/div&gt;&lt;/div&gt;&lt;br/&gt;
&lt;div style="width:400px;"&gt;&lt;div class="text_center"&gt;センター&lt;/div&gt;&lt;/div&gt;&lt;br/&gt;
&lt;div style="width:400px;"&gt;&lt;div class="text_left"&gt;左寄せ&lt;/div&gt;&lt;/div&gt;
~~~
*/

/*
## 改行しない
~~~
&lt;div style="width:50px;"&gt;&lt;div class="text_nowrap"&gt;改行しない&lt;/div&gt;&lt;/div&gt;&lt;/br&gt;
&lt;div style="width:50px;"&gt;&lt;div class="nowrap"&gt;改行しない&lt;/div&gt;&lt;/div&gt;
~~~
*/

/*
## カラムわけ 2分割
~~~
&lt;div class="wrap_parent" style="width:600px;"&gt;
&lt;div class="left_wrap"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="right_wrap"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
~~~
*/
/*
## カラムわけ 3分割
~~~
&lt;div class="wrap_parent_3" style="width:600px;"&gt;
&lt;div class="part_wrap_3"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="part_wrap_3"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="part_wrap_3"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
~~~
*/
/*
## カラムわけ 4分割
~~~
&lt;div class="wrap_parent_4" style="width:600px;"&gt;
&lt;div class="part_wrap_4"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="part_wrap_4"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="part_wrap_4"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="part_wrap_4"&gt;&lt;p style="width:100px;height:30px;background-color:#ccc;"&gt;&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
~~~
*/

/*
## テーブル構造
~~~
&lt;div class="table"&gt;
	&lt;div class="tr"&gt;
		&lt;div class="th"&gt;ヘッダー1&lt;/div&gt;
		&lt;div class="th"&gt;ヘッダー2&lt;/div&gt;
	&lt;/div&gt;
	&lt;div class="tr table_striped"&gt;
		&lt;div class="td"&gt;カラム1&lt;/div&gt;
		&lt;div class="td"&gt;カラム2&lt;/div&gt;
	&lt;/div&gt;
	&lt;div class="tr table_striped"&gt;
		&lt;div class="td"&gt;カラム1&lt;/div&gt;
		&lt;div class="td"&gt;カラム2&lt;/div&gt;
	&lt;/div&gt;
	&lt;div class="tr table_striped"&gt;
		&lt;div class="td"&gt;カラム1&lt;/div&gt;
		&lt;div class="td"&gt;カラム2&lt;/div&gt;
	&lt;/div&gt;
	&lt;div class="tr table_striped"&gt;
		&lt;div class="td"&gt;カラム1&lt;/div&gt;
		&lt;div class="td"&gt;カラム2&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
~~~
*/


/*
## エラーページ系（systemError）
*/
#systemError .errorMessage {
  text-align: center;
  margin: 24px auto 48px;;
}

#systemError .mainText {
  font-size: 1.3em;
}

#systemError .detailText {
  margin: 2em auto;
}

@media screen and (max-width: 641px) {
  #systemError .detailText {
    width: 90%;
    text-align: left;
  }
}

/* 404 */
#systemError.notFound .mainText {
  text-indent: 1em;
  margin-bottom: 0;
}

#systemError.notFound .linkText li {
  display: inline-block;
  margin-right: 2em;
}

@media screen and (max-width: 641px) {
  #systemError.notFound .mainText {
    text-indent: 0;
    font-size: 1.3rem;
  }
}


/*
## レスポンシブ
~~~
&lt;div class="no_pc"&gt;PC非表示&lt;/div&gt;&lt;/br&gt;
&lt;div class="no_sp"&gt;SP非表示&lt;/div&gt;
~~~
*/
.no_pc {
  display: none;
}

.no_sp {
  display: block;
}

@media screen and (max-width: 641px) {
  .no_sp {
    display: none !important;
  }

  .no_pc {
    display: inline-block;
  }
}

/*
## margin
~~~
&lt;div style="width:100%;background-color:#eee;"&gt;
&lt;div class="m0auto"&gt;0 auto&lt;/div&gt;
&lt;div class="mt0"&gt;top 0&lt;/div&gt;
&lt;div class="mt5"&gt;top 5&lt;/div&gt;
&lt;div class="mb0"&gt;bottom 0&lt;/div&gt;
&lt;div class="mb5"&gt;bottom 5&lt;/div&gt;
&lt;div class="ml0"&gt;left 0&lt;/div&gt;
&lt;div class="ml5"&gt;left 5&lt;/div&gt;
&lt;div class="mr0"&gt;right 0&lt;/div&gt;
&lt;div class="mr5"&gt;right 5&lt;/div&gt;
&lt;/div&gt;
~~~
*/

/*
## padding
~~~
&lt;div style="width:100%;background-color:#eee;"&gt;
&lt;div class="pt0"&gt;top 0&lt;/div&gt;
&lt;div class="pt5"&gt;top 5&lt;/div&gt;
&lt;div class="pb0"&gt;bottop 0&lt;/div&gt;
&lt;div class="pb5"&gt;bottop 5&lt;/div&gt;
&lt;div class="pl0"&gt;left 0&lt;/div&gt;
&lt;div class="pl5"&gt;left 5&lt;/div&gt;
&lt;div class="pr0"&gt;right 0&lt;/div&gt;
&lt;div class="pr5"&gt;right 5&lt;/div&gt;
&lt;/div&gt;
~~~
*/


/** ソーシャルログインボタン **/
@font-face {
  font-family: "Noto Sans SignInGoogle";
  src: url("../../life/img/common/social/google/NotoSansCJKjp-Medium_subset.woff2") format("woff2"),
  url("../../life/img/common/social/google/NotoSansCJKjp-Medium_subset.woff") format("woff");
}

/* Google */
#googleLogin,
.lineLogin {
  display: inline-block;
  color: #fff;
}

#googleLogin a,
.lineLogin a {
  color: #fff;
  text-decoration: none !important;
}

#googleLogin {
  height: 40px;
  background-color: #3689ef;
}

#googleLogin a {
  position: relative;
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-family: "Noto Sans SignInGoogle";
}

#googleLogin a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 1px solid #3689ef;
  background: url(../../life/img/common/social/google/google_logo.png) no-repeat center / 18px;
}

/* LINE */
.lineLogin {
  height: 40px;
  background-color: #00C300;
  border-radius: 0 7px 7px 0;
  margin-left: 34px;
}

.lineLogin:hover {
  background-color: #00e000;
}

.lineLogin a {
  position: relative;
  display: block;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: bold;
}

.lineLogin a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -34px;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  background: url(../../life/img/common/social/line/line_btn_base.png) no-repeat center / cover;
  border-right: 1px solid #00b300;
}

.lineLogin:hover a::before {
  background: url(../../life/img/common/social/line/line_btn_hover.png) no-repeat center / cover;
  border-right: 1px solid #00c900;
}

/* マウスオーバー時 */
.fb-login-button:hover,
#googleLogin:hover,
.yconnectLogin:hover {
  opacity: 0.8;
}

.lineLogin a {
    position: relative;
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
}
#googleLogin a, .lineLogin a {
    color: #fff;
    text-decoration: none;
}
a:hover, a:active, a:focus {
    text-decoration: none;
}
a:link {
    text-decoration: none;
}

.lineLogin a:hover {
    opacity: 1;
    transition: none;
}

@media screen and (max-width: 641px) {
  #googleLogin,
  .lineLogin {
    position: relative;
    left: 20px;
  }
}

/** 2019.02.05 add */
/* 背景色 */
.table .th, .table th,
.table.th_30 .th, .table.th_30 th {
  background: #FCFFE4;
  color: #C17400;
}

.table .th &gt; label, .table th &gt; label,
.table.th_30 .th &gt; label, .table.th_30 th &gt; label {
  font-weight: bold;
}

.td, .th, .table th, .table td {
  border: 1px solid #EBD9C7;
}

@media screen and (max-width: 641px) {
  .tr {
    border: none;
  }

  .tr:last-of-type {
    border-bottom: 1px solid #EBD9C7;
  }

  .tr .td {
    border-top: none;
    border-bottom: none;
  }
}

/**
/assets/css/pc/style2018.css の上書き
**/

/* 大枠調整 */
#top .container {
  width: 850px;
}

#cmsGroup .container {
  width: 100%;
}

#wrap #topGroupName {
  padding: 30px 20px 40px 20px;
}

@media screen and (max-width: 641px) {
  #wrap .container {
    width: 100%;
  }

  #wrap #topGroupName {
    padding: 20px 0 0;
  }

  body:not(#top) #wrap main {
    width: 100%;
  }
}


/* 全体設定 */
@media screen and (max-width: 641px) {
  #wrap span {
    vertical-align: baseline;
  }

  #top .container {
    width: 100%;
  }

  #wrap #mainHeader .container {
    width: 100%;
  }

  #wrap .container {
    width: 100%;
    /*padding-left: 5px;
    padding-right: 5px;*/
  }

  body:not(#top) #wrap main {
    width: 100%;
  }
}


/* グローバルナビゲーション&nbsp;*/
@media screen and (max-width: 641px) {
  #slideMenuHeader img {
    width: auto;
  }
}


/* 見出し */
.level_h2 {
  margin-top: 0;
}

@media screen and (max-width: 641px) {
  .title.level_h2 {
    padding: 7px 20px;
    line-height: 2;
  }
}


/* ヘッダー */
header #mainHeader h1 img {
  width: 165px;
}

header #mainHeader #contactBtn {
  float: right;
  padding: 15px 0;
  margin-right: 10px;
}

header #mainHeader #contactBtn a.green-btn {
  display: block;
  position: relative;
  width: 120px;
  height: 30px;
  line-height: 30px;
  background-color: #ccc;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  float: left;
  padding-right: 5px;
  text-decoration: none;
}

header #mainHeader #contactBtn a.green-btn::before {
  right: 10px;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background: url(/assets/images_pc/common/white_arrow.svg) no-repeat;
  -webkit-background-size: 6px 9px;
  background-size: 6px 9px;
}

@media screen and (max-width: 641px) {
  header #mainHeader h1 img {
    width: 30vw;
  }

  header #mainHeader #contactBtn {
    padding: 3.2vw 0;
  }

  header #mainHeader #contactBtn a.green-btn {
    height: 9vw;
    line-height: 9vw;
  }

  header #mainHeader #contactBtn a.green-btn::before {
    background: url(/assets/images_sp/common/white_arrow.svg) no-repeat;
  }
}


/* フリーダイヤルのフォント指定 */
#top #mainHeader .container #mainHeaderContents #mainHeaderContentsLeft #mainHeaderContentsTel &gt; p,
#wrap #mainHeader .container #mainHeaderContents #mainHeaderContentsLeft #mainHeaderContentsTel &gt; p {
  font-size: 26px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 5px;
}

#top footer .container #footerContact .footer-contact-wrap .footer-contact-box .footer-contact-tel &gt; p,
#wrap footer .container #footerContact .footer-contact-wrap .footer-contact-box .footer-contact-tel &gt; p {
  font-size: 32px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 300;
  line-height: 29px;
  margin-bottom: 5px;
}


/* マイページトップ */
#wrap #mypageContents .mypage-heading {
  padding: 0px 10px 15px;
}

#wrap #mypageContents .mypage-status .inner .mypage-status-title {
  background-color: #FCFFE4;
  border: 1px solid #EBD9C7;
  color: #C17400;
  padding: 10px 0;
}

#wrap #mypageContents .mypage-status .inner .mypage-status-stage .rank,
#wrap #mypageContents .mypage-status .inner .points {
  border: 1px solid #EBD9C7;
  border-top: none;
}


/* マイページのナビゲーション */
#wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
}

#wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li {
  border: none;
  background-color: transparent;
}

#wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li a {
  position: relative;
  display: block;
  height: 100%;
  background-color: #fff;
  border: 1px solid #5ed56c;
  border-radius: 3px;
}

#wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #5ed56c;
}

/* マイページのナビゲーション(SP) */
@media screen and (max-width: 641px) {
  #wrap #mypageContents .mypage-setting-menu {
    margin: 40px 0 100px;;
  }

  #wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul {
    border-top: 1px solid #5ed56c;
  }

  #wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li {
    width: 50%;
    box-sizing: border-box;
    margin-right: 0;
    margin-top: 0;
    border-radius: 0px;
  }

  #wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li a {
    border: none;
    border-bottom: 1px solid #5ed56c;
    border-right: 1px solid #5ed56c;
    border-radius: 0px;
  }

  #wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li:nth-child(2n -1) a {
    border-left: 1px solid #5ed56c;
  }

  #wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li:last-child a {
    border-right: 1px solid #5ed56c;
    border-bottom: 1px solid #5ed56c;
  }

  #wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li a span {
    width: 100%;
  }

  #wrap #mypageContents .mypage-setting-menu .setting-menu-nav ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 5px;
    height: 8px;
    background: url(/assets/images_sp/common/lightGreen_arrow.svg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }

}


/* フォーム */
.table {
  border: none;
}

/* お客様の声 投稿フォーム */
body#EntryFormDetail .voiceUpper img,
body#EntryFormDetail .voicePresent img,
body#EntryFormDetailConfirm .voiceUpper img,
body#EntryFormDetailComplete .voiceUpper img {
  display: inline-block;
  width: auto;
}

body#EntryFormDetailConfirm .freeFileUpload1TdSurround img {
  width: 100%;
}

body#EntryFormDetail .voiceUpper .attentionTable {
  width: auto;
  margin: 0 auto;
}

body#EntryFormDetail .voiceUpper .attentionTable td {
  padding: 20px 40px;
}

body#EntryFormDetail .voicePresent .text {
  margin: 10px auto;
}

@media screen and (max-width: 641px) {
  body#EntryFormDetail .voiceUpper img,
  body#EntryFormDetail .voicePresent img,
  body#EntryFormDetailConfirm .voiceUpper img,
  body#EntryFormDetailComplete .voiceUpper img {
    width: 100%;
    height: auto;
  }

  /* ページ上部 */
  body#EntryFormDetail .voiceUpper #voice_form01,
  body#EntryFormDetailConfirm .voiceUpper #voice_form01,
  body#EntryFormDetailComplete .voiceUpper #voice_form01 {
    background-image: -moz-linear-gradient(bottom, rgb(255, 255, 255) 70%, rgb(249, 229, 228) 30%);
    background-image: -webkit-linear-gradient(bottom, rgb(255, 255, 255) 70%, rgb(249, 229, 228) 30%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.7, rgb(255, 255, 255)), color-stop(0.3, rgb(249, 229, 228)));
    border: 1px solid #FBC1CD;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  body#EntryFormDetail .voiceUpper #voice_form01 .catch2,
  body#EntryFormDetailConfirm .voiceUpper #voice_form01 .catch2,
  body#EntryFormDetailComplete .voiceUpper #voice_form01 .catch2 {
    background-image: -moz-linear-gradient(left, rgb(255, 255, 153) 0%, rgb(255, 255, 209) 51%, rgb(255, 255, 153) 100%);
    background-image: -webkit-linear-gradient(left, rgb(255, 255, 153) 0%, rgb(255, 255, 209) 51%, rgb(255, 255, 153) 100%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(255, 255, 153)), color-stop(0.51, rgb(255, 255, 209)), color-stop(1, rgb(255, 255, 153)));
    color: #F04844;
    padding: 10px;
    border-radius: 0 0 20px 20px;
    font-size: 12px;
  }

  body#EntryFormDetail .voiceUpper #voice_form_att {
    margin-bottom: 20px;
  }

  body#EntryFormDetail .voiceUpper #voice_form_att h3 {
    cursor: pointer;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #fef1f1), color-stop(0.51, #f8d2d2), color-stop(0.50, #f7e5e5), color-stop(0.00, #fffefe));
    background: -webkit-linear-gradient(top, #fffefe 0%, #f7e5e5 50%, #f8d2d2 51%, #fef1f1 100%);
    background: -moz-linear-gradient(top, #fffefe 0%, #f7e5e5 50%, #f8d2d2 51%, #fef1f1 100%);
    background: -o-linear-gradient(top, #fffefe 0%, #f7e5e5 50%, #f8d2d2 51%, #fef1f1 100%);
    background: -ms-linear-gradient(top, #fffefe 0%, #f7e5e5 50%, #f8d2d2 51%, #fef1f1 100%);
    background: linear-gradient(top, #fffefe 0%, #f7e5e5 50%, #f8d2d2 51%, #fef1f1 100%);
    border: 1px solid #DDD;
    padding: 10px;
    margin-top: 5px;
    text-align: center;
  }

  body#EntryFormDetail .voiceUpper #voice_form_att h3:after {
    content: "▼";
    padding-left: 5px;
  }

  body#EntryFormDetail .voiceUpper #voice_form_att h3.selected:after {
    content: "▲";
  }

  body#EntryFormDetail .voiceUpper #voice_form_att p {
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    padding: 10px;
    margin: 0 0 10px;
    font-size: 90%;
  }

  body#EntryFormDetail .voiceUpper #voice_form_att p {
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    padding: 10px;
    margin: 0 0 10px;
    font-size: 90%;
  }

  body#EntryFormDetail .voiceUpper .arrow {
    background: url(/contents/shop/life/images/voice/sp/arrow.jpg) center bottom no-repeat;
    font-size: 24px;
    font-weight: bold;
    color: #F04844;
    text-align: center;
    line-height: 1.3;
  }

  body#EntryFormDetail .voiceUpper .attentionTable td {
    padding: 20px;
  }
}

body#EntryFormDetail select {
  width: auto;
  margin: 0 10px 10px 0;
}

body#EntryFormDetail select:last-of-type {
  margin: 0 10px 0 0;
}

body#EntryFormDetail textarea {
  height: 100px;
}

body#EntryFormDetail input[type=file] {
  padding: 10px 0 0;
}

body#EntryFormDetail .lowerTextGroup,
body#EntryFormDetailConfirm .lowerTextGroup {
  text-align: center;
}

body#EntryFormDetail .inputButtonGroup,
body#EntryFormDetailConfirm .inputButtonGroup {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 641px) {
  body#EntryFormDetail select.freeSelect4 {
    width: 100%;
  }

  body#EntryFormDetail .freeSelect4ItemWrap,
  body#EntryFormDetailConfirm .freeSelect4ItemWrap {
    border-bottom: 1px solid #EBD9C7;
  }
}

/* エラーメッセージ */
.alertMessageContentTitle,
.alertMessageContent {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px 10px 5px 30px;
}


/*■■■ カート ■■■*/
@media screen and (max-width: 641px) {
  /* カートステップ */
  .includeStepItemWrap {
    margin-bottom: 10px;
  }
}

/*■■■ 注文完了 ■■■*/
.thanksTitle {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 30px;
}

.thanksText2 {
  margin-bottom: 30px;
}

.emailItemWrap {
  margin-top: 30px;
}

.thanksText3 {
  margin-bottom: 30px;
}

.thanksText5 {
  margin-top: 30px;
}

.thanksLists {
  margin: 10px 0 0 2em;
}

.thanksLists li {
  list-style: disc outside;
}

/*■■■ 表組みのベース(style2018から) ■■■*/
.mypage-purchase-history {
  margin-top: 40px;
}

.mypage-purchase-history .purchase-history-list {
  margin-top: 20px;
}

.purchase-history-list #purchaseHistoryItemList .purchase-history-item .order-goods {
  overflow: hidden;
}

.purchase-history-list #purchaseHistoryItemList .purchase-history-item .order-goods + div {
  margin-top: 5px;
}

.purchase-history-list #purchaseHistoryItemList .purchase-history-item .order-goods .order-goods-img {
  width: 25%;
  float: left;
}

.purchase-history-list #purchaseHistoryItemList .purchase-history-item .order-goods .order-goods-info {
  width: 75%;
  float: right;
  line-height: 20px;
  padding: 5px 0;
}

.purchase-history-list #purchaseHistoryItemList time {
  display: block;
}

.purchase-history-list #purchaseHistoryItemList.open table:nth-child(n+4) {
  display: table;
}

.purchase-history-list table:first-child th {
  border-top: 1px solid #000;
}

.purchase-history-list table tr th {
  font-weight: bold;
}

.purchase-history-list table tr td .sp-table-heading {
  display: none;
}

.purchase-history-list table tr td img {
  width: auto;
  max-height: 50px;
}

.purchase-history-list table tr td button {
  padding: 5px 10px;
}

.purchase-history-list table tr th, .purchase-history-list table tr td {
  padding: 5px;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #000;
  border-top: 0;
}

.purchase-history-list .purchase-history-btn {
  margin: 20px auto 0;
  display: block;
  width: 200px;
  font-size: 12px;
  line-height: 12px;
  padding: 10px;
  text-align: center;
  color: #000000;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #000000;
}


/*■■■ 定期スケジュール 定期一覧 ■■■*/
#mypageContents .mypage-purchase-history .purchase-history-list table.reglList tr th:nth-child(1),
#mypageContents .mypage-purchase-history .purchase-history-list table.reglList tr td:nth-child(1) {
  width: 25%;
}

#mypageContents .mypage-purchase-history .purchase-history-list table.reglList tr th:nth-child(2),
#mypageContents .mypage-purchase-history .purchase-history-list table.reglList tr td:nth-child(2) {
  width: 35%;
}

#mypageContents .mypage-purchase-history .purchase-history-list table.reglList tr th:nth-child(3),
#mypageContents .mypage-purchase-history .purchase-history-list table.reglList tr td:nth-child(3) {
  width: 10%;
}

#mypageContents .mypage-purchase-history .purchase-history-list table.reglList tr th:nth-child(4),
#mypageContents .mypage-purchase-history .purchase-history-list table.reglList tr td:nth-child(4) {
  width: 30%;
}

#matomeOrderGroup {
  margin-top: 60px;
}

#matomeOrderGroup table#matomeOrderGoodsList {
  margin-top: 10px;
}

#matomeOrderLayoutGroup2 {
  margin-top: 10px;
}

/*■■■ 定期スケジュール 定期詳細 ■■■*/
.notChangeBtn {
  text-align: center;
  background-color: #eee;
  margin: 10px auto;
  padding: 10px;
  max-width: 300px;
}

#nextNextChangeAllButtonItemWrap {
  width: 100%;
  text-align: center;
}

/** 共通　リードオンリー **/
input.readonly {
  background-color: rgb(204, 204, 204);
}
</pre></body></html>