@charset "utf-8";

/*
  common.css リセット
*/

.contents p, .contents .table, #footer .section_wrap p {
  margin: 0;
}

/*
## font
~~~
<p>株式会社エルテックス　eltexDC cssガイド</p>
~~~
*/

body {
  font: 16px/1.5 "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
  color: #1c1c1a;
}
button, input {
  font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}

/*
## testSite
*/
#testSite {
  position: fixed;
  top: 0;
  height: 30px;
  z-index: 9999;
  width: 100%;
  max-width: 1000px;
}
#testSiteButton input {
  height: 26px;
  padding: 0;
  font-size: 0.9em;
}
form[name="testSiteForm"] ~ header {
  top: 30px;
}
form[name="testSiteForm"] ~ #globalNavi {
  top: 125px;
}
form[name="testSiteForm"] ~ .contents {
  padding-top: 140px;
}

/*
## h1
~~~
<h1 class="level_h1">見出し1</h1>
<h1 class="level_h1"><span>見出し1</span></h1>
~~~
*/
.level_h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
  margin: 0 0 30px;
  padding: 0;
  font-size: 1.5em;
  color: #0039a6;
  text-align: center;
  font-weight: bold;
}
.level_h1::before,
.level_h1::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background-color: #0039a6;
}
.level_h1::before {
  margin-right: 30px;
}
.level_h1::after {
  margin-left: 30px;
}
.level_h1 span {
  border-bottom: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .level_h1 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .level_h1::before {
    margin-right: 15px;
  }
  .level_h1::after {
    margin-left: 15px;
  }
}

/*
## h2
~~~
<h2 class="level_h2">見出し2</h2>
~~~
*/

.level_h2 {
  position: relative;
  font-size: 20px;
  border-bottom: none;
  margin: 30px 0;
  padding: 10px;
  line-height: 1;
  background-color: #e1f3ff;
}
@media screen and (max-width: 768px) {
  .level_h2 {
    font-size: 16px;
    margin: 20px 0;
  }
}

/*
## h3
~~~
<h3 class="level_h3">見出し3</h2>
~~~
*/

.level_h3 {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  border-bottom: none;
  margin: 20px 0 10px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .level_h3 {
    font-size: 16px;
  }
}

/*
## ページタイトル
*/
.level_h2.title {
  border-bottom: 6px solid #f6f6f6;
  margin: 0 0 40px;
  padding: 0 10px 5px;
  font-size: 24px;
  background-color: transparent;
  color: #0039a6;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .level_h2.title {
    margin-bottom: 20px;
  }
}

/*
## sub※下付き文字
*/
sub {
  font: 14px/1.4 Sans-Serif;
  vertical-align: baseline;
}

/*
## アンカー
~~~
<a href="asdf">テキストリンク</a><br/>
<a href="#">テキストリンク</a>
~~~
*/
  a {
    outline: none;
  }
  a:link {
    color: #1c1c1a;
  }
  a:visited {
    color: #1c1c1a;
  }
  a:hover, a:active, a:focus {
    opacity: 0.7;
  }
  a, a:hover,a img:hover {
    transition: 0.1s;
  }
  a.link_arrow {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
  }
  a.link_arrow::before {
    content: ">";
    color: #0039a6;
    font-weight: 700;
    margin-right: 3px;
  }

/*
## ボタン
~~~
<div id="" class="set-group buttonArea">
    <div id="" class="itemWrap  linkWrap">
      <div class="items">
        <a href="/edc_fr/MemberRegister.jsp" id="memberRegisterLink_link" class="btn_lg btn_1 memberRegisterLink">新規会員登録</a>
      </div>
    </div>
  </div>
~~~
*/
a[class*="btn_"], input[type="button"], input[type="submit"], input[type="reset"], button[type="button"], button[type="submit"], button[type="reset"] {
  font-size: 1.2em;
  font-weight: normal;
  min-width: 240px;
  min-height: 0;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 1.7em;
  cursor: pointer;
  border-radius: 4px;
  padding: 4px 16px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
/* 戻る系ボタン */
a.btn_lg, input.btn_lg[type="button"], input.btn_lg[type="submit"], input.btn_lg[type="reset"], button.btn_lg[type="button"], button.btn_lg[type="submit"], button.btn_lg[type="reset"] {
  font-size: 1.1em;
  line-height: 1.8;
}
/* 緑ボタン(基本) */
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: #02a13d;
  color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #02a13d;
  line-height: 1.7em;
  min-width: 240px;
}
/* 緑ボタン(サブ) */
a.btn_3, input.btn_3[type="button"], input.btn_3[type="submit"], input.btn_3[type="reset"], button.btn_3[type="button"], button.btn_3[type="submit"], button.btn_3[type="reset"] {
  background: #fff;
  color: #02a13d;
  border: 1px solid #02a13d;
  border-style: solid;
  border-width: 1px;
  line-height: 1.7em;
  min-width: 240px;
}
/* 水色ボタン(サブ) */
a.btn_2, input.btn_2[type="button"], input.btn_2[type="submit"], input.btn_2[type="reset"], button.btn_2[type="button"], button.btn_2[type="submit"], button.btn_2[type="reset"] {
  background: #1f9cd0;
  color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #1f9cd0;
  line-height: 1.7em;
  min-width: 240px;
}
/* 青色ボタン(サブ) */
a.btn_blue {
  background-color: #0039a6;
  color: #fff;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: 8px 20px;
  text-align: center;
}
/* 青色ボタン(サブ)(青フチ、青文字) */
a.btn_4, input.btn_4[type="button"], input.btn_4[type="submit"], input.btn_4[type="reset"], button.btn_4[type="button"], button.btn_4[type="submit"], button.btn_4[type="reset"] {
  background: #fff;
  color: #0039a6;
  border-style: solid;
  border-width: 1px;
  border-color: #0039a6;
  line-height: 1.7em;
  min-width: 240px;
}
/* カートなどの削除ボタン用 */
input[type="button"][class*="deleteLink"] {
  min-width: 0;
  margin: 0;
  font-size: 0.9em;
  line-height: 1;
}
.btn_download {
  background-color: #0039a6;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.contents .buttonArea {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  a[class*="btn_"], input[type="button"], input[type="submit"], input[type="reset"], button[type="button"], button[type="submit"], button[type="reset"],
  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"] {
    font-size: 1em;
    width: 100%;
    min-width: 0;
    max-width: 360px;
    margin: 0 auto;
  }
  #returnButton_link, #returnButton, #cartButton_link, input.btn_lg[type="button"].backButton, input.btn_lg[type="submit"].backButton, a.backButton {
    height: auto;
    width: 100%;
    margin: 0;
  }
  input[type="button"][class*="deleteLink"] {
    padding: 4px;
    width: 40px;
  }
  #reminderButton, #saveButton, #confirmButton, #newButton, #addInqButton, #shoppingButton_link, input.btn_lg[type="button"].nextButton, input.btn_lg[type="submit"].nextButton, a.nextButton {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  #buttonGroup .buttonWrap .items,
	#buttonGroup .submitWrap .items,
  #buttonGroup .linkWrap .items,
  .buttonArea .buttonWrap .items,
	.buttonArea .submitWrap .items,
  .buttonArea .linkWrap .items {
		padding: 0 10px;
	}
}

/*
## 登録、確定ボタン
~~~
<div id="" class="set-group buttonArea">
    <div id="" class="itemWrap  linkWrap">
      <div class="items">
        <a href="/edc_fr/MemberRegister.jsp" id="saveButton" class="btn_lg btn_1 memberRegisterLink">登録</a>
      </div>
    </div>
  </div>
~~~
*/

#saveButton, #completeButton, #orderLink2, #selfOrderLink, #giftOrderLink, a[class*="btn_conv"], input[type="button"][class*="btn_conv"], input[type="submit"][class*="btn_conv"] {
  background-color: #eb5904;
  border-color: #eb5904;
  color: #fff;
  border-radius: 4px;
}
#saveButton.btn_1 {
  background-color: #02a13d;
  border-color: #02a13d;
}
a[class*="btn_conv02"], input[type="button"][class*="btn_conv02"], input[type="submit"][class*="btn_conv02"] {
  background-color: #fff;
  color: #eb5904;
  border: 1px solid #eb5904;
}
@media screen and (max-width: 768px) {
  #saveButton, #completeButton, #orderLink2, #selfOrderLink, #giftOrderLink, a[class*="btn_conv"], input[type="button"][class*="btn_conv"], input[type="submit"][class*="btn_conv"] {
    width: 100%;
    margin: 0 0 10px;
  }
}

/*
## セレクトボタン
*/
select {
  background-color: #fff;
}

input[type="text"], input[type="search"], input[type="tel"], input[type="url"], input[type="email"], input[type="password"], input[type="datetime"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime-local"], input[type="number"], input[type="button"], input[type="submit"], input[type="reset"], button[type="button"], button[type="submit"], button[type="reset"], textarea, select {
  padding: 6px 8px;
}
*::placeholder {
  color: #C8CCCE;
}
.design_select_wrap {
  position: relative;
}
.design_select_wrap::before {
  content: "";
  position: absolute;
  right: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-color: #f6f6f6;
  width: 32px;
  height: calc(100% - 2px);
  pointer-events: none;
}
.design_select_wrap::after {
  content: "";
  position: absolute;
  right: 10px;
  top: -6px;
  bottom: 0;
  margin: auto;
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #0039a6;
  border-bottom: 1px solid #0039a6;
  transform: rotate(45deg);
  pointer-events: none;
}
.design_select_wrap select {
  border: 1px solid #0039a6;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1;
  padding: 10px;
  width: 100%;
  border-radius: 0;
  height: 40px;
}
.design_select_wrap select option {
  text-align: center;
}

/*
## システムメッセージ
*/
.systemMessageContent,
#messageGroup .systemMessageContent,
.alertMessageContentTitle,
#errorGroup .alertMessageContent {
  display: flex;
  align-items: flex-start;
  background: none;
  border: none;
  padding: 0;
  line-height: 1.4rem;
}
.systemMessageContent,
#messageGroup .systemMessageContent {
  color: #0039a6;
}
.systemMessageContent::before {
  content: "！";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0039a6;
  color: #fff;
  line-height: 1;
  width: 22px;
  min-width: 22px;
  height: 22px;
  max-height: 22px;
  min-height: 22px;
  font-weight: 600;
  border-radius: 50%;
  margin-right: 5px;
}
.alertMessageContentTitle,
#errorGroup .alertMessageContent {
  color: #d70e2a;
}


/*
## 汎用クラス
*/
.flex_box {
  display: flex;
}
.flex1 {
  flex: 1 0 0%;
}
.flex_box_left {
  padding-right: 20px;
}
.jc-sb {
  justify-content: space-between;
}
.ex_wrap {
  margin-bottom: 15px;
}
.img_wrap img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .flex_box:not(.sp_flex_box) {
    display: block;
  }
  .flex_box_left,
  .flex_box_right {
    margin-bottom: 20px;
  }
  :not(.sp_flex_box) .flex_box_left {
    padding-right: 0;
  }
  .sp_flex_box {
    display: flex;
  }
  .flex_box.sp_flex_box {
    flex-wrap: wrap;
  }
  .fd-reverse {
    flex-direction: column-reverse;
  }
}

/*
## 基本レイアウト
*/
#wrap {
  width:100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  text-align: left;
}
.contents {
  width: 100%;
  margin: 0 auto;
  padding: 110px 0 0 190px;
  position: relative;
  z-index: 1;
}
.contents section {
  padding:0;
  margin:0;
}
.contents .information{
  margin: 0 0 15px 5px;
}
.topGroupName {
  width: 100%;
  float: none;
  border-radius: 0;
}
.contents_wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}
.layoutGroup {
  margin-bottom: 10px;
}
.section_contents {
  margin-bottom: 60px;
}
.matrix-body {
  clear: both;
}
@media screen and (max-width: 768px) {
  #wrap {
    padding: 0;
  }
  .contents {
    padding: 0;
  }
  .topGroupName {
    padding: 0;
  }
  .topGroupName > .set-group > .set-group:not(.h2Wrap) {
    padding: 0 10px;
  }
  input.TEL_1, input.TEL_2, input.TEL_3{
    width: 29%;
    max-width: 88px;
  }
}


/*
## 1カラム用レイアウト
*/
.oneColumn .topGroupName {
  width: 100%;
}


/*
## 2カラム用レイアウト
*/
.twoColumns form {
  float: left;
  width: calc(100% - 160px);
  padding-right: 30px;
}
/*
## 2カラム用レイアウト topGroupName
*/
.twoColumns .topGroupName {
  width: 100%;
}

/*
## レスポンシブ用レイアウト
*/
@media screen and (max-width: 768px) {
  .oneColumn .topGroupName, .twoColumns .topGroupName {
    width: 100%;
  }
  .twoColumns form {
    float: none;
  }
}

/*
## パンくず
~~~
<nav id="panNav" class="panNav">
  <ul class="cf">
  <li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/Shop.jsp" itemprop="url"><span itemprop="title">トップ</span></a></li>
  <li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">デザインテンプレート</span></li>
  </ul>
</nav>
~~~
*/
.panNav{
  background-color: transparent;
  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:">";
  padding:0 5px;
}
.panNav ul li a {
  text-decoration: none;
}
@media screen and (max-width: 768px){
  .panNav {
    padding: 5px 10px;
    margin-bottom: 5px;
  }
}

/*
## ヘッダー
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  height: 90px;
  margin: auto;
  background-color: #fff;
  z-index: 9998;
}
header .header_contents_wrap {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 13px 0;
  box-shadow: 0 5px #C8CCCE;
}
.header_content_left {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.header_content_left.login {
  align-self: flex-end;
}
.header_content_left .logo {
  display: inline-flex;
  line-height: 1;
}
.welcome_customer {
  text-align: right;
  margin-top: 5px;
  line-height: 1;
}
.welcome_customer p {
  display: inline-block;
  background-color: #f6f6f6;
  padding: 5px 15px;
}
.welcome_customer .welcome {
  color: #0039a6;
  font-size: 13px;
}
.welcome_customer span:not(:last-child) {
  margin-right: 5px;
}
.header_content_right {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
}
.header_btn_wrap,
.header_link_wrap.pc_on {
  display: flex;
  height: 100%;
}
.header_link_wrap.sp_on {
  display: none;
}
.header_link {
  display: flex;
  align-items: flex-end;
}
.header_link a {
  position: relative;
  color: #1c1c1a;
  font-size: 13px;
  text-decoration: none;
  padding: 40px 0 5px;
}
.header_link.link_guide a::before {
  background: url(../images/icon_guide.png) no-repeat center center;
}
.header_link.link_faq a::before {
  background: url(../images/icon_faq.png) no-repeat center center;
}
.header_link.link_contact a::before {
  background: url(../images/icon_contact.png) no-repeat center center;
}
.header_link.link_guide a::before,
.header_link.link_faq a::before,
.header_link.link_contact a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 23px;
  height: 23px;
  background-size: contain;
}
.header_link.link_contact a::before {
  width: 40px;
}
.header_link p {
   padding: 0 10px;
   line-height: 1em;
}
.header_link:not(:last-child) p {
  border-right: 1px solid #1c1c1a;
}
.header_btn {
  width: 147px;
  min-width: 147px;
  height: 100%;
  position: relative;
  margin-left: 3px;
}
.header_btn a {
  color: #fff;
  border-radius: 4px;
}
.header_btn a:hover {
  opacity: 0.7;
}
.header_btn.btn_login a,
.header_btn.btn_mypage a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px 0 0;
  background-color: #02a13d;
  text-decoration: none;
  font-size: 18px;
}
.header_btn.btn_login a::before {
  background: url(../images/icon_login.png) no-repeat top center;
}
.header_btn.btn_mypage a::before {
  background: url(../images/icon_mypage.png) no-repeat top center;
}
.header_btn.btn_cart a.header_cart_full::before {
  background: url(../images/icon_cart.png) no-repeat top center;
}
.header_btn.btn_login a::before,
.header_btn.btn_mypage a::before,
.header_btn.btn_cart a.header_cart_full::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.header_btn.btn_cart a {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  margin-left: 0;
}
.header_btn.btn_cart a .header_cart_top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 5px;
  border-bottom: 1px solid #fff;
  text-align: center;
  height: 30px;
}
.header_btn.btn_cart a .header_cart_top span {
  line-height: 1;
}
.header_btn.btn_cart a .header_cart_top::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(../images/icon_cart.png) no-repeat center center;
  background-size: contain;
}
.header_btn.btn_cart a .header_cart_low {
  display: flex;
  height: calc(100% - 30px);
  align-items: center;
  justify-content: center;
}
.header_btn.btn_cart a .header_cart_low span {
  font-weight: 700;
}
.header_btn.btn_cart a .header_cart_low .total {
  font-size: 13px;
  margin-right: 5px;
  white-space: nowrap;
}
.header_btn.btn_cart a .header_cart_low .total::before {
  content: "計";
}
.header_btn.btn_cart a .header_cart_low .total::after {
  content: "点";
}
.header_btn.btn_cart a .header_cart_low .total::before,
.header_btn.btn_cart a .header_cart_low .total::after {
  font-weight: 400;
}
.header_btn.btn_cart a .header_cart_low .aomoney {
  font-size: 18px;
  white-space: nowrap;
}
.header_btn.btn_cart a .header_cart_low .aomoney::after {
  content: "円";
  font-size: 13px;
  font-weight: 400;
  margin-left: 2px;
}
.header_btn.btn_cart a.header_cart_full {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  header {
    height: 52px;
    padding: 0;
  }
  header .header_contents_wrap {
    padding: 0;
  }
  .header_link_wrap.pc_on {
    display: none;
  }
  .header_link_wrap.sp_on {
    display: flex;
    padding-top: 58px;
    border-bottom: 1px solid #C8CCCE;
  }
  .header_link {
    align-items: center;
    justify-content: center;
    flex: 1 0 0%;
  }
  .header_link:last-child {
    flex-basis: 7%;
  }
  .header_link a {
    padding: 8px 4px 8px 28px;
    font-size: 11px;
  }
  .header_link.link_guide a::before,
  .header_link.link_faq a::before,
  .header_link.link_contact a::before {
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    width: 14px;
    height: 14px;
  }
  .header_link.link_contact a::before {
    width: 20px;
    left: 6px;
  }
  .header_link p {
    padding: 0;
  }
  .header_link:not(:last-child) p {
    border-right: none;
  }
  .header_content_left {
    padding: 8px 16px 5px 10px;
  }
  .header_content_left .logo a {
    max-width: 260px;
  }
  .welcome_customer {
    margin-top: 0;
  }
  .welcome_customer p {
    padding: 3px 5px;
    width: 100%;
    text-align: center;
  }
  .welcome_customer p,
  .welcome_customer .welcome {
    font-size: 11px;
  }
  .btn_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .header_btn {
    width: 50px;
    min-width: 50px;
    margin-left: 1px;
  }
  .header_btn a {
    border-radius: 0;
  }
  .header_btn.btn_login a,
  .header_btn.btn_mypage a {
    font-size: 10px;
    padding: 30px 0 0 ;
  }
  .header_btn a > span {
    font-size: 10px;
    white-space: nowrap;
  }

  .header_btn.btn_cart a .header_cart_top,
  .header_btn.btn_cart a.header_cart_full {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 10px;
    padding: 30px 0 0;
    border-bottom: none;
  }
  .header_btn.btn_login a::before,
  .header_btn.btn_mypage a::before {
    top: 8px;
    width: 24px;
    height: 24px;
  }
  .header_btn.btn_cart a .header_cart_top::before {
    top: 8px;
    bottom: auto;
    left: 0;
    right: 0;
    width: 24px;
    height: 24px;
  }
  .header_btn.btn_cart a.header_cart_full::before {
    width: 24px;
    height: 24px;
  }
  .header_btn.btn_cart a .header_cart_low {
    display: none;
  }
  .header_btn .btn_menu span {
    display: block;
  }
  a.btn_menu_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    line-height: 1;
    padding: 3px 0 0;
    border: none;
    background-color: transparent;
    margin: 0;

  }
  .icon_menu,
  .icon_menu span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .icon_menu {
    position: relative;
    width: 24px;
    height: 20px;
    margin-bottom: 5px;
  }
  .icon_menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0039a6;
    border-radius: 4px;
  }
  .icon_menu span:nth-of-type(1) {
    top: 0;
  }
  .icon_menu span:nth-of-type(2) {
    top: 9px;
  }
  .icon_menu span:nth-of-type(3) {
    bottom: 0;
  }
  .icon_menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  .icon_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .icon_menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
  .header_btn.btn_menu span {
    font-size: 10px;
    color: #0039a6;
  }
  .header_btn.btn_menu span.menu_open,
  .header_btn.btn_menu.active span.menu_close {
    display: block;
  }
  .header_btn.btn_menu span.menu_close,
  .header_btn.btn_menu.active span.menu_open {
    display: none;
  }
}


/*
## グローバルナビ
*/
#globalNavi {
  position: fixed;
  top: 95px;
  display: flex;
  flex-direction: column;
  width: 160px;
  height: calc(100% - 95px);
  overflow-y: auto;
  box-shadow: none;
  background: #fff;
  padding-top: 15px;
  z-index: 9997;
}
.globalNavi .nav_wrap {
  border-top: 4px solid #0039a6;
}
.globalNavi .nav_title {
  display: flex;
  align-items: center;
  height: 45px;
  font-size: 16px;
}
.globalNavi .nav_category .nav_title::before {
  background-image: url(../images/icon_search.png);
}
.globalNavi .nav_sub .nav_title::before {
  background-image: url(../images/icon_check.png);
}
.globalNavi .nav_title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 5px;
}
.globalNavi .nav_title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.globalNavi .nav_title span {
  font-weight: 600;
}
.globalNavi ul {
  width: 100%;
  border: 1px solid #e3e3e6;
}
.globalNavi .nav_main,
.globalNavi .nav_category {
  margin-bottom: 10px;
}
.globalNavi ul li {
  display: block;
  width: 100%;
  height: auto;
  float: none;
  border: none;
  background: transparent;
}
.globalNavi ul li:hover {
  opacity: 1;
}
.globalNavi ul li:first-child {
  border-left: none;
}
.globalNavi ul li:not(:last-child) {
  border-bottom: 1px solid #e3e3e6;
}
.globalNavi ul li:nth-child(1) a, .globalNavi ul li:nth-child(2) a, .globalNavi ul li:nth-child(3) a, .globalNavi ul li:nth-child(4) a, .globalNavi ul li:nth-child(5) a {
  width: auto;
  height: auto;
}
.nav_link_wrap {
  display: flex;
}
.globalNavi ul li a {
  display: flex;
  align-items: center;
  min-height: 40px;
  max-height: 80px;
  padding: 10px;
  text-align: left;
  font-size: 14px;
  text-shadow: none;
  color: #1c1c1a;
  line-height: 1.3;
}
ul.nav_main li a,
.nav_sub ul li a {
  padding: 8px 10px;
}
.nav_category ul li a {
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
}
.globalNavi ul li:nth-child(1) a,
.globalNavi ul li:nth-child(2) a,
.globalNavi ul li:nth-child(3) a,
.globalNavi ul li:nth-child(4) a,
.globalNavi ul li:nth-child(5) a {
  width: 100%;
  height: 100%;
}
ul.nav_main li:nth-child(2):not(.active) a::before,
.nav_sub ul li:not(.active) a::before {
  content: ">";
  color: #0039a6;
  font-weight: 700;
  margin-right: 8px;
}
.globalNavi ul li a:hover {
  background-color: #e1f3ff;
  opacity: 1;
}
.nav_category ul li a img {
  width: 100%;
}
.globalNavi .nav_main li:first-child a {
  font-size: 16px;
  background-color: #e1f3ff;
  color: #0039a6;
  font-weight: 700;
  justify-content: center;
}
.globalNavi ul li.active a {
  background-color: #e1f3ff;
}
@media screen and (max-width: 768px) {
  #globalNavi {
    display: none;
  }
  #spNavi {
    position: fixed;
    top: 51px;
    left: 0;
    display: none;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
    height: calc(100% - 52px);
    padding: 20px;
    overflow-y: auto;
  }
  #spNavi a:not([class*="btn_"]) {
    text-decoration: none;
    color: #1c1c1a;
  }
  .btn_menu {
    cursor: pointer;
    transition: 0.1s;
    background-color: #e7f2ff;
  }
  .btn_menu:hover,
  .btn_menu:focus {
    opacity: 1;
  }
  a.btn_menu_wrap:hover,
  a.btn_menu_wrap:focus {
    opacity: 1;
  }
  #spNavi a[class*="btn_"] {
    margin: 0;
  }
  .cart_info_wrap {
    margin: 20px 0;
  }
  .cart_info_wrap a {
    display: flex;
    align-items: center;
    border: 1px solid #0039a6;
    height: 60px;
    width: 100%;
    color: #1c1c1a;
  }
  .icon_cart {
    position: relative;
    width: 58px;
    height: 100%;
    background-color: #0039a6;
    text-align: center;
    padding-top: 30px;
  }
  .icon_cart::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    margin: auto;
    background: url(../images/icon_cart.png) no-repeat center center;
    background-size: contain;
  }
  .icon_cart span {
    color: #fff;
    font-size: 13px;
  }
  .cart_info {
    width: calc(100% - 70px);
    padding-left: 20px;
    font-size: 14px;
  }
  .cartin_goods_aom .aom {
    font-size: 20px;
    color: #0F5B92;
    font-weight: bold;
  }
  .nav_list {
    border-bottom: 1px solid #0039a6;
    padding: 5px 0;
  }
  .sub_nav_list {
    padding: 30px 0 0;
  }
  .nav_list a,
  .sub_nav_list a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
  }
}

/*
## 検索
*/
.goodslist_links_wrap {
  padding: 0 10px;
  margin-bottom: 40px;
}
.goodslist_links_wrap .goodslist_link {
  width: 100%;
  margin-bottom: 20px;
}
.goodslist_category_link_title {
  margin-bottom: 5px;
}
.goodslist_category_link_title span {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.goodslist_category_link_title span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url(../images/icon_search.png) no-repeat center center;
  background-size: contain;
}
.goodslist_links_wrap .goodslist_link a {
  position: relative;
  display: block;
  padding: 4px 12px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #e3e3e6;
  background-color: #e1f3ff;
}
.goodslist_links_wrap .goodslist_link a::after {
  content: ">";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #0039a6;
  font-size: 24px;
}

/*
## フッター
*/
footer {
  width: calc(100% - 190px);
  margin-left: auto;
  background-color: #fff;
  margin-top: 30px;
  border-top: 4px solid #cccccc;
  padding: 36px 0 0;
}
footer div, footer section, footer nav {
  margin: 0;
}
.footer_order_merit_wrap {
  display: flex;
  margin-right: -10px;
}
.footer_order_merit {
  flex: 1 0 0%;
  padding-right: 10px;
}
.footer_order_merit a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
  border: 7px solid #f6f6f6;
}
.footer_order_merit_top {
  display: flex;
  align-items: center;
  padding: 5px;
}
.footer_order_merit_title_wrap {
  display: inline-flex;
  align-items: center;
}
.footer_order_merit_title_wrap p.order_merit_catch {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 47px;
  min-width: 47px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  margin: 0 5px 0 0;
}
.discount_service .footer_order_merit_title_wrap p.order_merit_catch {
  background-color: #1f9cd1;
}
.regular_course .footer_order_merit_title_wrap p.order_merit_catch {
  background-color: #e34f2f;
}
.point_program .footer_order_merit_title_wrap p.order_merit_catch {
  background-color: #b8982c;
}
.footer_order_merit_title_wrap p.order_merit_title span {
  display: inline-block;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.footer_order_merit_image {
  margin-left: auto;
}
.footer_order_merit_low {
  width: 100%;
  padding: 2px 10px;
  text-align: center;
  color: #fff;
}
.discount_service .footer_order_merit_low {
  background-color: #1f9cd1;
}
.regular_course .footer_order_merit_low {
  background-color: #e34f2f;
}
.point_program .footer_order_merit_low {
  background-color: #b8982c;
}
.footer_order_merit_detail {
  font-size: 15px;
  padding: 10px;
}
.footer_order_merit_detail_btn {
  background-color: #0F5B92;
  color: #fff;
  font-size: 14px;
  max-width: 200px;
  text-align: center;
  margin: 0 auto;
}
.footer_about {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #C8CCCE;
}
.footer_contact,
.footer_about_use {
  flex-basis: 50%;
}
.footer_contact_title p {
  font-weight: bold;
}
.tel {
  display: flex;
  align-items: center;
}
.freedial_image {
  margin: 0 5px 0 0;
}
.tel a {
  text-decoration: none;
  color: #0039a6;
  font-size: 1.6em;
  font-weight: bold;
}
.footer_contact_time {
  display: flex;
  font-size: 14px;
}
.footer_contact_time::before {
  content: "受付時間：";
  width: 80px;
}
.footer_contact_time p {
  margin: 0;
}
.footer_contact_time span {
  display: inline-block;
}
.footer_about_use {
  padding-left: 20px;
}
.footer_about_use_title {
  border-bottom: 1px solid #0039a6;
  padding-bottom: 5px;
}
.footer_about_use_title span {
  font-weight: bold;
}
.footer_about_use_links_wrap {
  display: flex;
  margin-right: -10px;
}
.footer_about_use_links {
  flex: 1 0 0%;
  padding-right: 10px;
}
.footer_about_use_link:not(.child_link) a::before {
  content: ">";
  color: #0039a6;
  font-weight: bold;
  margin-right: 10px;
}
.footer_about_use_link.child_link a {
  padding-left: 18px;
}
.footer_about_use_link.child_link a::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border-left: 1px solid #999;
  border-bottom: 1px  solid #999;
  margin-right: 10px;
}
.footer_about_use_link:not(.pc_noline) {
  border-bottom: 1px dashed #ccc;
}
.footer_about_use_link a {
  text-decoration: none;
  display: block;
  padding: 8px 0;
  color: #1c1c1a;
  font-size: 14px;
}
.footer_links {
  padding: 10px 0;
}
.footer_links_wrap {
  text-align: center;
  margin-bottom: 20px;
}
.footer_link,
.footer_link.pc_on {
  display: inline-block;
  line-height: 1;
}
.footer_link:not(:last-child) {
  border-right: 1px solid #C8CCCE;
}
.footer_link a {
  text-decoration: none;
  color: #1c1c1a;
  font-size: 13px;
  padding: 2px 10px;
}
.copyright {
  text-align: center;
  font-size: 12px;
  font-family: "メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}
@media screen and (max-width: 768px) {
  footer {
    width: 100%;
    padding: 0 0 10px;
  }
  .footer_contents {
    padding-bottom: 0;
  }
  .footer_order_merit_wrap {
    flex-wrap: wrap;
    margin-right: 0;
    border-bottom: 1px solid #C8CCCE;
  }
  .footer_order_merit {
    width: 100%;
    flex: 0 1 auto;
    padding: 0;
  }
  .footer_order_merit:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C8CCCE;
  }
  .footer_order_merit a {
    padding: 0;
    border: none;
  }
  .footer_order_merit_top {
    padding: 0 0 5px;
  }
  .footer_order_merit_title_wrap p.order_merit_catch {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .footer_order_merit_low {
    font-size: 14px;
  }
  .footer_order_merit_detail_wrap {
    display: none;
  }
  .footer_about_use_title {
    padding-left: 10px;
  }
  .footer_about {
    padding-bottom: 0;
    border-width: 4px;
  }
  .footer_about_use {
    flex-basis: 100%;
    padding-left: 0;
  }
  .footer_about_use_links_wrap {
    display: block;
    margin-right: 0;
  }
  .footer_about_use_links {
    padding-right: 0;
  }
  .footer_about_use_link:not(.sp_noline) {
    border-bottom: 1px solid #C8CCCE;
  }
  .footer_about_use_link.sp_noline {
    border-bottom: none;
  }
  .footer_about_use_link a {
    padding: 10px;
    font-size: 16px;
  }
  .footer_links_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .footer_links {
    padding-top: 0;
  }
  .footer_link {
    width: 50%;
    border-bottom: 1px solid #C8CCCE;
  }
  .footer_link:nth-child(2) {
    border-right: none;
  }
  .footer_link.pc_on {
    display: none;
  }
  .footer_link a {
    display: flex;
    align-items: center;
    height: 100%;
    text-align: left;
    padding: 10px;
    line-height: 1.3;
  }
  .footer_contact {
    padding: 20px 10px;
  }
  .tel a {
    font-size: 1.4em;
  }
  .footer_contact_time {
    font-size: 14px;
  }

}

/*
## サイドコンテンツ
*/
.sideContents {
  width: 160px;
  float: right;
  margin-bottom: 40px;
}
.sideContents .nav_title {
  margin-bottom: 5px;
}
.sideContents .nav_title span {
  font-size: 16px;
  font-weight: 600;
}
ul.mypage_menu {
  border-right: 1px solid #e3e3e6;
  border-left: 1px solid #e3e3e6;
}
ul.mypage_menu li.menuGroup {
  border-bottom: 1px solid #e3e3e6;
  background-color: #fff;
}
ul.mypage_menu li.menuGroup:first-child {
  border-top: 1px solid #e3e3e6;
}
ul.mypage_menu li.menuGroup a {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 40px;
  text-align: left;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.3;
  padding: 5px 10px;
}
ul.mypage_menu li.menuGroup a::before {
  content: ">";
  color: #0039a6;
  font-weight: 700;
  margin-right: 8px;
}
ul.mypage_menu li.menuGroup a span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sideContents {
    width: 100%;
    float: none;
  }
  .sideContents .nav_title {
    padding: 0 10px;
  }
  .twoColumns form {
    width: 100%;
    padding-right: 0;
  }
  ul.mypage_menu {
    display: flex;
    flex-wrap: wrap;
    border: none;
    margin-bottom: 30px;
  }
  ul.mypage_menu li.menuGroup {
    width: 50%;
  }
  ul.mypage_menu li.menuGroup:nth-child(2) {
    border-top: 1px solid #e3e3e6;
  }
  ul.mypage_menu li.menuGroup:nth-child(odd) {
    border-right: 1px solid #e3e3e6;
  }
  .spMypageNavi {
    padding: 0 10px;
    margin: 15px 0 30px;
  }
  .spMypageNavi select {
    width: 100%;
  }
}

/*
## 商品一覧
*/
.categoryGoodsListRow {
  margin-bottom: 60px;
}
.goodslist_wrap,
.goodslist_wrap .matrix-body {
  display: flex;
  flex-wrap: wrap;
  width: calc(100%);
}
.goodslist_wrap .goodslist_goods {
  width: 25%;
  margin: 0;
  margin-bottom: 5px;
}
.goodslist_wrap .goodslist_goods:not(:nth-child(4n)):not(:last-of-type) {
  border-right: 1px dashed #ccc;
}
.goodslist_wrap .goodslist_goods * {
  text-decoration: none;
  line-height: 1.4;
}
.goodslist_wrap .goodslist_goods a:not(.goodsImg):not(.goodsName) {
  display: block;
  height: 100%;
  padding-bottom: 30px;
}
.goodslist_wrap .goodslist_goods .goodslist_copy {
  width: 100%;
  background-color: #f6f6f6;
  color: #0039a6;
  font-size: 18px;
  padding: 15px 10px;
}
.goodslist_wrap .goodslist_goods .goodslist_copy .not_tokuho {
  font-size: 11px;
  color: #1c1c1a;
  margin-top: 5px;
}
.goods_main_info_wrap {
  height: 100%;
}
.goodslist_wrap .goodslist_goods .goodslist_thumb {
  display: block;
  align-self: flex-start;
}
.goodslist_wrap .goodslist_goods .goodslist_thumb img {
  width: 100%;
}
.goodslist_wrap .goodslist_goods .goods_info_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.goodslist_wrap .goodslist_goods .goodslist_title {
  display: block;
  padding: 10px;
  color: #645042;
  font-size: 18px;
}
.goodslist_wrap .goodslist_goods .goodslist_icon_wrap {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-end;
  width: 100%;
  padding: 0 7px 0 10px;
  margin-top: auto;
}
.goodslist_wrap .goodslist_goods .goodslist_icon:not(img),
.goodslist_wrap .goodslist_icon_wrap > .imgWrap {
  width: 50%;
  min-width: 90px;
  max-width: 90px;
  padding: 0 3px 3px 0;
  line-height: 1;
}
.goodslist_wrap .goodslist_icon_wrap > .imgWrap * {
  line-height: 1;
}
#wrap .goodslist_wrap .goodslist_icon_wrap > .imgWrap .detailsImg img {
  height: 18px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .goodslist_wrap .goodslist_goods {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid #999;
  }
  .goodslist_wrap .goodslist_goods:not(:nth-child(4n)) {
    border-right: none;
  }
  .goodslist_wrap .goodslist_goods a:not(.goodsImg):not(.goodsName) {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .goodslist_wrap .goodslist_goods a::before {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 10px;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #0039a6;
    border-radius: 3px;
    background-color: #e1f3ff;
  }
  .goodslist_wrap .goodslist_goods a::after {
    content: "";
    position: absolute;
    bottom: 21px;
    right: 11px;
    display: block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 8px solid #0039a6;
  }
  .goodslist_wrap .goodslist_goods .goodslist_copy {
    padding: 10px;
  }
  .goodslist_wrap .goodslist_goods .goodslist_thumb {
    max-width: 240px;
    width: 40%;
  }
  .goodslist_wrap .goodslist_goods .goods_info_wrap {
    width: 60%;
    padding: 15px 0;
  }
  .goodslist_wrap .goodslist_goods .goodslist_title {
    padding: 0 10px;
  }
  .goodslist_wrap .goodslist_goods .goodslist_icon_wrap {
    margin-top: 20px;
  }
  .goodslist_wrap .goodslist_goods .goodslist_icon {
    width: auto;
  }
}

/*
## ポップアップ表示
*/
.popup_info_wrap {
  position: relative;
  margin-bottom: 20px;
  white-space: normal;
}
.popup_info {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #eb5904;
  z-index: 10;
  font-size: 14px;
}
.popup_link_open,
.popup_link_close {
  cursor: pointer;
  text-decoration: underline;
}
.popup_link_close {
  text-align: center;
}
.popup_link_close::before {
  content: "×";
  padding-right: 2px;
}
.popup_info > p:not(.popup_link_close) {
  font-weight: 700;
  margin-bottom: 10px;
}
.popup_info ul {
  margin-bottom: 10px;
}
.popup_info li {
  display: flex;
  align-items: flex-start;
}
.popup_info li::before {
  content: "●";
  padding-right: 2px;
}


/*
## 関連商品
*/
.category_top_include_wrap {
  margin-bottom: 30px;
}
.category_top_main_image {
  margin-bottom: 30px;
}
.related_contents_link_wrap ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: -16px;
}
.related_contents_wrap.mbp {
  margin-bottom: 40px;
}
.related_contents_wrap .level_h3 {
  padding: 0 0 4px;
  border-bottom: 1px solid #ccc;
}
.related_contents_wrap .level_h3::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
}
.related_contents_wrap.mbp .level_h3::before {
  border-left: 8px solid #38baf2;
}
.related_contents_wrap.hare .level_h3::before {
  border-left: 8px solid #059679;
}
.related_content_link {
  width: 33.3333%;
  padding: 0 16px 5px 0;
}
.related_content_link a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  font-size: 18px;
  text-decoration: none;
  padding: 0;
}
.contents .link_title {
  line-height: 1.3;
}
.contents .link_title span {
  display: inline-block;
}
.link_detail {
  color: #505050;
  line-height: 1.4;
  font-size: 14px;
  padding: 12px 0;
}
.link_image.pdf {
  align-items: center;
  padding-right: 15px;
}
.link_image.pdf img {
  max-height: 80px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .related_contents_wrap .level_h3 {
    padding: 0 10px 4px;
  }
  .related_contents_wrap .level_h3::before {
    border-width: 6px;
  }
  .related_contents_link_wrap {
    padding: 0  10px;
  }
  .related_contents_link_wrap ul {
    margin-right: -10px;
  }
  .related_content_link {
    width: 50%;
    padding-right: 10px;
  }
  .related_content_link a {
    min-height: 0;
    height: auto;
  }
  .contents .link_title {
    font-size: 15px;
  }
  .link_image {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
  .link_detail {
    font-size: 12px;
    padding: 4px 0 8px;
  }
}
.category_bottom_include_wrap {
  margin-top: 50px;
}
.other_category_links {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
}
.other_category_link {
  width: 50%;
  padding-right: 15px;
}
.other_category_link a {
  display: block;
  background-color: #f6f6f6;
  text-decoration: none;
  padding: 15px;
  font-size: 18px;
}
.other_category_link a::before {
  content: ">";
  font-weight: 700;
  color: #0039a6;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .category_bottom_include_wrap {
    margin-top: 30px;
  }
  .other_category_links {
    margin-right: 0;
    padding: 0 10px;
  }
  .other_category_link {
    width: 100%;
    padding-right: 0;
    padding-bottom: 10px;
  }
  .other_category_link a {
    padding: 10px;
  }
}

.related_content_link img {
  width: 100%;
}
.related_content_banner_on.pc_on,
.category_top_links_wrap:not(.detailOpen) .default .related_content_banner.pc_on,
.detailOpen > .related_content_banner.pc_on {
  display: none;
}
.category_top_links_wrap:not(.detailOpen) .default .related_content_banner_on.pc_on,
.detailOpen > .related_content_banner_on.pc_on {
  display: block;
}
@media screen and (max-width: 768px) {
  .related_content_banner_on.pc_on {
    display: none !important;
  }
  .related_content_banner_on.sp_on,
  .category_top_links_wrap:not(.detailOpen) .default .related_content_banner.sp_on,
  .detailOpen > .related_content_banner.sp_on {
    display: none;
  }
  .category_top_links_wrap:not(.detailOpen) .default .related_content_banner_on.sp_on,
  .detailOpen > .related_content_banner_on.sp_on {
    display: block;
  }
}

/*
## その他　スクロールアップ
*/
#scrollUp {
  background: url(../images/top.png) no-repeat;
}

/*
## その他　規約同意チェックボックス
~~~
<div id="isMemberAgreementFlgItemWrap" class="itemWrap isMemberAgreementFlgItemWrap clearfix checkboxWrap">
      <div class="items">
        <label id="isMemberAgreementFlg_label" for="isMemberAgreementFlg" class=" isMemberAgreementFlg_itemLabel checkboxLabel"><input type="checkbox" id="isMemberAgreementFlg" name="isMemberAgreementFlg" class="checkboxStyle REQUIRED_CHECK isMemberAgreementFlg" value="1">同意する</label>
        <span id="__error_isMemberAgreementFlg" class="__error __error_isMemberAgreementFlg"><span class="alertMessage alertMessageContent alertMessage-important">必須選択項目です。選択してください。</span></span>
      </div>
    </div>
~~
~*/
#isMemberAgreementFlgItemWrap, #isUseAgreementFlgItemWrap {
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
  width: 100%;
}

/*
## その他　入力項目必須
~~~
<div class="required"></div>
~~~
*/
label.REQUIRED_LABEL {
  position: relative;
  display: block;
  padding-right: 40px;
}
.required:after {
  content: "*必須";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: inline-block;
  background-color: transparent;
  color: #d70e2a;
  font-size: 0.9em;
  line-height: 1;
  padding: 0;
  float: none;
  height: 1em;
}

/*
## その他　条件付き必須
~~~
<div class="required_condition"></div>
~~~
*/
/*
.required_condition:after {
  content: "※";
  background: #317dcb;
  color: #fff;
}
*/

/*
## フォーム　氏名
*/
.nameSeiPreLabel,
span[class*="NameSeiPreLabel"],
.nameMeiPreLabel,
span[class*="NameMeiPreLabel"],
.nameSeiKanaPreLabel,
span[class*="NameSeiKanaPreLabel"],
.nameMeiKanaPreLabel,
span[class*="NameMeiKanaPreLabel"] {
  width: 35px;
  display: inline-block;
}
input[type="text"].nameSei,
input[type="text"][class*="NameSei"],
input[type="text"].nameMei,
input[type="text"][class*="NameMei"],
input[type="text"].nameSeiKana,
input[type="text"][class*="NameSeiKana"],
input[type="text"].nameMeiKana,
input[type="text"][class*="NameMeiKana"] {
  width: calc(50% - 50px);
}
@media screen and (max-width: 768px) {
  input[type="text"].nameSei,
  input[type="text"].nameMei,
  input[type="text"].nameSeiKana,
  input[type="text"].nameMeiKana {
  width: calc(100% - 50px);
}
}

/*
## フォーム　生年月日
*/
select.birthdayYear {
  width: 200px;
}
select.birthdayMonth,
select.birthdayDay {
  vertical-align: top;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  select.birthdayMonth,
  select.birthdayDay {
    vertical-align: baseline;
  }
}

/*
## フォーム　郵便番号検索
*/
input[type="text"].postCode1,
input[type="text"].postCode,
input[type="text"].orderPostCode {
  width: 210px;
}
input[type="button"].postCodeSearchButton,
input[type="button"].orderPostCodeSearchButton {
  width: auto;
  min-width: 0;
  font-size: 1em;
  margin: 0;
  padding: 2px 10px;
}
@media screen and (max-width: 768px) {
  .td[class*="postCode"] > .items {
    display: flex;
    align-items: center;
  }
  input[class*="postCode"]:not(.postCodeSearchButton) {
    width: calc(100% - 130px);
    margin-right: 5px;
  }
}

/*
## フォーム　住所
*/
div[class*="areaCode"] input[type="text"],
div[class*="AreaCode"] input[type="text"] {
  width: 100%;
}

@media screen and (max-width: 768px) {
  div[class*="areaCode"] select,
  div[class*="AreaCode"] select {
    width: 200px;
  }
}

/*
## フォーム　メールアドレス
*/
div[class*="email"] input[type="text"],
div[class*="Email"] input[type="text"] {
  width: 100%;
}

/*
## フォーム　パスワード
*/
div[class*="password"] input[type="password"] {
  width: 100%;
}

/*
## フォーム　性別
## その他を非表示にする
*/
#sex_2_label {
	display: none;
}

/*
## テキスト 右寄せ、センター、左寄せ
~~~
<div style="width:400px;"><div class="text_right">右寄せ</div></div><br/>
<div style="width:400px;"><div class="text_center">センター</div></div><br/>
<div style="width:400px;"><div class="text_left">左寄せ</div></div>
~~~
*/

/*
## 改行しない
~~~
<div style="width:50px;"><div class="text_nowrap">改行しない</div></div></br>
<div style="width:50px;"><div class="nowrap">改行しない</div></div>
~~~
*/

/*
## カラムわけ 2分割
~~~
<div class="wrap_parent" style="width:600px;">
<div class="left_wrap"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
<div class="right_wrap"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
</div>
~~~
*/
/*
## カラムわけ 3分割
~~~
<div class="wrap_parent_3" style="width:600px;">
<div class="part_wrap_3"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
<div class="part_wrap_3"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
<div class="part_wrap_3"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
</div>
~~~
*/
/*
## カラムわけ 4分割
~~~
<div class="wrap_parent_4" style="width:600px;">
<div class="part_wrap_4"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
<div class="part_wrap_4"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
<div class="part_wrap_4"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
<div class="part_wrap_4"><p style="width:100px;height:30px;background-color:#ccc;"></p></div>
</div>
~~~
*/

/*
## テーブル構造
~~~
<div class="table">
  <div class="tr">
    <div class="th">ヘッダー1</div>
    <div class="th">ヘッダー2</div>
  </div>
  <div class="tr table_striped">
    <div class="td">カラム1</div>
    <div class="td">カラム2</div>
  </div>
  <div class="tr table_striped">
    <div class="td">カラム1</div>
    <div class="td">カラム2</div>
  </div>
  <div class="tr table_striped">
    <div class="td">カラム1</div>
    <div class="td">カラム2</div>
  </div>
  <div class="tr table_striped">
    <div class="td">カラム1</div>
    <div class="td">カラム2</div>
  </div>
</div>
~~~
*/

/*
## tableデザイン
*/
.td, .th, .table th, .table td {
  border-color: #C8CCCE;
  padding: 10px;
  vertical-align: top;
}
.th, .table th {
  background-color: #f6f6f6;
  font-size: 0.9em;
}
.textWrap .td, .table .textWrap td,
.radioWrap .td, .table .radioWrap td,
.comboboxWrap .td, .table .comboboxWrap td,
.checkboxWrap .td, .table .checkboxWrap td,
.checkboxesWrap .td, .table .checkboxesWrap td,
.passwordWrap .td, .table .passwordWrap td,
.textareaWrap .td, .table .textareaWrap td {
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  .th, .table th {
    padding: 7px 10px;
  }
}

/*
## エラーページ系（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: 768px) {
  #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: 768px) {
  #systemError.notFound .mainText {
    text-indent: 0;
    font-size: 1.3rem;
  }
}

/*
## PC/TAB/SP出し分け
~~~
PC  1025px～     .pc_on, .pctb_on
TAB 641～1024px  .tb_on, .tbsp_on
SP  ～640px      .sp_on
~~~
*/
.pc_on {
  display: block;
}
.sp_on {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_on {
    display: none;
  }
  .sp_on {
    display: block;
  }
}

/*
## margin
~~~
<div style="width:100%;background-color:#eee;">
<div class="m0auto">0 auto</div>
<div class="mt0">top 0</div>
<div class="mt5">top 5</div>
<div class="mb0">bottom 0</div>
<div class="mb5">bottom 5</div>
<div class="ml0">left 0</div>
<div class="ml5">left 5</div>
<div class="mr0">right 0</div>
<div class="mr5">right 5</div>
</div>
~~~
*/

/*
## padding
~~~
<div style="width:100%;background-color:#eee;">
<div class="pt0">top 0</div>
<div class="pt5">top 5</div>
<div class="pb0">bottop 0</div>
<div class="pb5">bottop 5</div>
<div class="pl0">left 0</div>
<div class="pl5">left 5</div>
<div class="pr0">right 0</div>
<div class="pr5">right 5</div>
</div>
~~~
*/



/** ソーシャルログインボタン **/
@font-face {
  font-family: "Noto Sans SignInGoogle";
  src: url("../../luis/img/common/social/google/NotoSansCJKjp-Medium_subset.woff2") format("woff2"),
     url("../../luis/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;
}
#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(../../luis/img/common/social/google/google_logo.png) no-repeat center / 18px;
}

/* LINE */
#lineLogin {
  max-width: 240px;
  width: 100%;
  height: 40px;
  background-color: #00C300;
  border-radius: 7px;
}
#lineLogin:hover {
  background-color: #00e000;
}
#lineLogin a {
  position: relative;
  display: block;
  padding: 10px 30px 10px 70px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
#lineLogin a::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  background: url(../img/common/social/line/line_btn_base.png) no-repeat center / cover;
  border-right: 1px solid #00b300;
}
#lineLogin:hover a::before {
  background: url(../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;
}

/** クリップボードコピーメッセージ **/
.copy_target {
  position: fixed;
  left: 100%;
  top: 100%;
}
.message_band {
  position: fixed;
  bottom: 100px;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #0039a6;
  color: #fff;
  font-weight: 600;
  text-align: center;
  z-index: 9999;
}

/** 確認 **/
.ui-front.ui-widget-overlay {
  z-index: 9999;
}
.ui-front.ui-dialog {
  z-index: 10000;
}

/** 関連商品 **/
.relatedArea {
  margin-top: 40px;
}

/** 注釈文言 **/
.attensionMessage,
.attensionMessageAdd,
.cartAttensionMessage {
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .attentionGroup,
  .cartAttentionGroup {
    padding: 0 10px;
  }
}

/* フリーページ全体 */
.ttl_bg {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .free_area_content {
    padding: 0 10px;
  }
}

/* アコーディオン */
[class*="accordion_title_"] {
  position: relative;
  cursor: pointer;
}
[class*="accordion_title_"]::before,
[class*="accordion_title_"]::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
}
.accordion_title_arrow::after {
  right: 5px;
  margin: auto 0;
  width: 0.7em;
  height: 0.7em;
  border-right: 2px solid #0039A6;
  border-bottom: 2px solid #0039A6;
  transition: 0.4s;
  transform: rotate(45deg);
}
.accordion_title_arrow.open::after {
  transform: rotate(225deg);
}
.accordion_title_plus::before {
  right: 11px;
  margin: auto 0;
  width: 2px;
  height: 1em;
  background-color: #0039A6;
  transition: 0.4s;
}
.accordion_title_plus.open::before {
  transform: rotate(90deg);
}
.accordion_title_plus::after {
  right: 5px;
  margin: auto 0;
  width: 1em;
  height: 2px;
  background-color: #0039A6;
}
.accordion_content {
  display: none;
}

/* フリーダイヤル */
.freedial {
  background-image: url(../images/freepage/guide/icon_freedial.gif);
  background-position: left center;
  padding-left: 22px;
}

/* よくあるご質問 */

/* サイトマップ */
.sitemap li {
  background: url(../images/icon/ico_arrow_07_sp.gif) no-repeat left top;
  padding-left: 20px;
}


/** インクルードパーツ **/
.pagePartsHtmlText {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .dispInfoItemWrap {
    padding: 0 10px;
  }
}

#wrap * img {
  -webkit-backface-visibility: hidden;
}



/** 画像のぼやけ対策(グロナビ、商品一覧アイコン) **/
.globalNavi .nav_link_wrap img,
.goodslist_icon img,
img.goodslist_icon {
  image-rendering: -webkit-optimize-contrast;
}