@charset "utf-8";
/* CSS Document */

/********************************************************************/

/* HTMLタグ要素 */

/********************************************************************/

:root {
  --text_color: #7d7d7d;
  --text_darker: #666;
  --text_dark: #333;
}

/* メインビジュアルスライダーの矢印 */
.has_inside_controller .swiper-button-next,
.has_inside_controller .swiper-button-prev {
  background-color: transparent;
}

/* 追加ここまで */

body {
  padding: 0px;
  margin: 0px;
  background-color: #ffffff;
  font-family: "linotype-sabon", "Times New Roman", Times,
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.05em;
  color: var(--text_color);
}

A,
A:link,
A:visited,
A:hover,
A:active {
  color: var(--text_color);
  text-decoration: none;
  font-weight: bold;
  outline: none;
}

a.t-deco:not(.general_btn):not(.list_item_link) {
  text-decoration: underline;
  text-decoration-thickness: 0;
  text-underline-offset: 5px;
  font-weight: normal;
}

.use_hover A:hover {
  color: var(--text_dark);
}

h1,
h2,
h3,
h4 {
  word-break: keep-all;
}

h1 {
  font-size: 161.6%;
}

h2 {
  font-size: 200%;
}

h3 {
  font-size: 131%;
}

h4 {
  font-size: 123.1%;
}

h5 {
  font-size: 116%;
}

h6 {
  font-size: 108%;
}

ul {
  padding-inline-start: 0;
}

p,
th,
td,
dt,
dd,
li {
  line-height: 1.8;
}

/********************************************************************/

/* 大外 */

/********************************************************************/

#container {
  font-size: 108%;
}

#inner_container {
  display: flex;
  justify-content: center;
}

#main_container {
  padding: 10px;
}

/********************************************************************/

/* トップページコンテンツ間余白 */

/********************************************************************/

.main_section {
  margin: 0 auto 8em;
}

@media (max-width: 767px) {
  .main_section {
    margin: 0 auto 4em;
  }
}

/* ふわっと表示 */
.main_box,
#photo {
  opacity: 0;
  transition: opacity 1.75s ease;
}

/* カレンダーはふわっとさせない */
.calendar {
  opacity: 1;
  max-width: 660px;
  margin-inline: auto;
}

.main_box.visible,
#photo.visible {
  opacity: 1;
}

/********************************************************************/

/* キャッチフレーズ欄 */

/********************************************************************/

/* キャッチフレーズ */
.copy {
  min-height: 18px;
  padding: 5px 5px 0px;
  font-size: 85%;
}

/********************************************************************/

/* ヘッダー */

/********************************************************************/

#header {
  position: relative;
}

#original-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

/* ロゴ */
@media (min-width: 768px) {
  .logo {
    position: absolute;
    inset-inline-start: 40%;
  }
}

.logo img {
  width: 200px;
}

/* メニューアイコン */
@media (max-width: 979px) {
  .menu-icon {
    width: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    height: 2px;
    background: var(--text_dark);
    margin: 8px 0;
    transition: 0.4s;
  }
  .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

/* フルスクリーンメニュー */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.menu.active {
  opacity: 1;
  visibility: visible;
}
.menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.menu ul li {
  margin: 20px 0;
}
.menu ul li a {
  color: var(--text_dark);
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s;
}
.menu ul li a:hover {
  color: #aaa;
}

/* サブメニュー */
.sub-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.sub-menu ul li {
  list-style: none;
}
.sub-menu ul li:first-child {
  margin-right: 15px;
}
.sub-menu ul li a {
  font-size: 26px;
}

/********************************************************************/

/* ショップ名 */

/********************************************************************/

/* ショップ名ロゴ */
.shoplogo {
  padding: 5px;
}

.use_hover .shoplogo A:hover img {
  opacity: 0.8;
}

/* ショップ名テキスト */
.shoptext {
  padding: 5px 0px;
  min-height: 40px;
  margin-right: auto;
}

.shoptext A {
  font-size: 116%;
  margin: 0px;
}

/********************************************************************/

/* 文字サイズ */

/********************************************************************/

.font_setting {
  padding: 5px 5px 10px;
  text-align: center;
}

.header_font_setting .set_font_title {
  color: #000000;
}

/* 文字サイズ画像 */
.set_font_normal,
.set_font_large {
  width: 45px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: left top;
  -webkit-background-size: 45px 60px;
  background-size: 45px 60px;
}

/* 普通画像 */
.set_font_normal {
  background-image: url(img/font_default.gif);
}

/* 大画像 */
.set_font_large {
  margin-left: 5px;
  background-image: url(img/font_large.gif);
}

/* 文字サイズ画像マウスオーバー、選択中 */
.use_hover .font_setting .set_font_normal:hover,
.use_hover .font_setting .set_font_large:hover,
.font_setting .nav_on {
  background-position: left bottom;
}

/********************************************************************/

/* ヘッダーナビ */

/********************************************************************/

/* 各ナビゲーション */
.inner_header_nav .nav_btn {
  background-color: #ffffff;
  border: 1px solid var(--text_color);
  color: var(--text_color);
}

.use_hover .inner_header_nav .nav_btn:hover {
  background-color: #ffecec;
  color: #000000;
}

header .inner_global_nav .nav_text i {
  display: none !important;
}

/*************************************************************/

/* 検索 */

/*************************************************************/

.search_bar .search {
  background-color: #000000;
}

/* 検索アイコンボタンを利用時に白に変換 */
#container:not(.use_folding_header)
  #header_wrapper:not(.has_search_bar)
  .search_bar
  .global_btn
  .searchinput_image[src*="all/btn/searchinput"] {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 840px) {
  #container:not(.use_folding_header)
    .search_bar
    .global_btn
    .searchinput_image[src*="all/btn/searchinput"] {
    filter: brightness(0) invert(1);
  }
}

/*************************************************************/

/* グローバルナビゲーション */

/*************************************************************/
@media (max-width: 768px) {
  .header_global_nav {
    display: none;
  }
}

.global_nav ul {
  padding-bottom: 20px;
  justify-content: center;
}

.global_nav li {
  width: 10em !important;
  padding: 0 2em;
}

.global_nav li a {
  font-size: 100% !important;
}

/* ナビゲーションの文字 */
.nav_label {
  letter-spacing: 1px;
}

/* 各ナビゲーション */
.inner_global_nav .nav_btn {
  color: var(--text_color);
  font-weight: normal;
  text-align: center;
}

.use_hover .inner_global_nav .nav_btn:hover {
  border-bottom: 1px solid var(--text_color);
  color: var(--text_color);
  padding-bottom: 9px;
}

/********************************************************************/

/* 開閉ナビゲーション */

/********************************************************************/

.inner_popup_nav_area,
.inner_popup_menu_area {
  background-color: #f9f9f9;
  color: #000000;
}

/* 各ナビゲーション */
.inner_popup_nav .nav_btn {
  background-color: #f9f9f9;
  border-top: 1px dotted #cccccc;
  font-weight: normal;
  color: #000000;
}

.use_hover .inner_popup_nav .nav_btn:hover {
  background-color: #e0e0e0;
  color: #333333;
}

/* 開閉ナビゲーション閉じるボタン */
.nav_close_box .nav_close {
  background-color: #222222;
}

.use_hover .nav_close_box .nav_close:hover {
  background-color: #333333;
}

/********************************************************************/

/* メインナビゲーション */

/********************************************************************/

/* 各ナビゲーション */
.inner_side_nav .nav_btn,
.inner_main_nav .nav_btn {
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
  color: #000000;
}

.use_hover .inner_side_nav .nav_btn:hover,
.use_hover .inner_main_nav .nav_btn:hover {
  background-color: #ededed;
  color: #000000;
}

/* フリーページナビゲーション背景 */
.freepage_nav .inner_freepage_nav .nav_btn {
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
}

.use_hover .freepage_nav .inner_freepage_nav .nav_btn:hover {
  background-color: #ededed;
}

/********************************************************************/

/* カテゴリ、特集ナビゲーション */

/********************************************************************/

.itemlist_nav {
  margin-top: 15px;
}

/* 各ナビゲーション */
.inner_itemlist_nav .nav_btn {
  background-color: #ffffff;
  border-bottom: 1px solid #d6d6d6;
  font-weight: normal;
  color: #000000;
}

.use_hover .inner_itemlist_nav .nav_btn:hover {
  background-color: #ededed;
  color: #000000;
}

/********************************************************************/

/* サイドメニュー */

/********************************************************************/

/* サイドメニュー枠 */
.open_side_col .side_container {
  background-color: #ffffff;
}

/* サイドカテゴリ一覧 */
.side_itemlist_nav {
  padding: 0px 1px;
}

/* サブカテゴリ　第二階層 */
.side_itemlist_nav .sub_menu_link {
  padding: 10px 24px 10px 10px;
}

/* サブカテゴリ背景 */
.side_itemlist_nav .sub_menu_link {
  background-color: #f9f9f9;
  border-top: none;
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

/* マウスオーバー */
.use_hover .side_itemlist_nav .side_itemlist_nav_link:hover {
  background-color: #ededed;
  color: #000000;
}

/********************************************************************/

/* タイトル */

/********************************************************************/

.side_box h2,
.main_box h2 {
  padding: 12px 10px;
  color: var(--text_darker);
  text-align: center;
}

.category_nav_box h2,
.pickupcategory_nav_box h2 {
  background-color: #f5f5f5;
}

/********************************************************************/

/* 第二階層タイトル */

/********************************************************************/

/* 第二階層各ページタイトル */
.page_box .page_title h1,
.page_box .page_title h2,
.page_box .recently .section_title h2,
.page_box .use_emphasis_title .section_title h2 {
  padding: 12px 10px;
  color: var(--text_darker);
  font-size: 200%;
}

.shoppingcart_page_body .page_box .page_title h2 {
  margin-bottom: 10px;
}

/********************************************************************/

/* 第二階層サブタイトル */

/********************************************************************/

/* 各ページサブタイトル */
.page_box .section_title h2,
.page_box .section_title h3 {
  padding: 12px 10px;
  color: var(--text_darker);
  font-weight: normal;
  text-align: center;
  margin-top: 2em;
}

.page_box .section_title h3:before {
  content: "";
  display: inline-block;
  margin-right: 2px;
  width: 1em;
  height: 1px;
  background-color: var(--text_dark);
  vertical-align: super;
}

.page_box #cart_preview .section_title h3 {
  margin-bottom: 10px;
}

.page_box .help_contents .section_title h4 {
  margin-top: 10px;
}

.page_box .section_title h4 {
  border-bottom: 1px solid #d6d6d6;
  padding: 10px 5px;
}

.page_box .page_contents .search_result_title h3 {
  margin-top: 10px;
}

/********************************************************************/

/* 第二階層小項目タイトル */

/********************************************************************/

.contents_title {
  font-size: 116%;
  padding: 10px;
  color: var(--text_dark);
  font-weight: bold;
}

.contents_title:before {
  content: "";
  display: inline-block;
  margin-right: 2px;
  width: 1em;
  height: 1px;
  background-color: var(--text_dark);
  vertical-align: super;
}

.rules_title {
  font-weight: bold;
}

/********************************************************************/

/* フォームタイトル */

/********************************************************************/

.form_title {
  padding: 8px 5px;
  font-weight: normal;
  font-size: 116%;
  color: var(--text_color);
}

.form_inner_title {
  border-bottom: 1px dotted #cccccc;
  font-weight: bold;
  color: #000000;
}

/********************************************************************/

/* タイトル文字サイズ */

/********************************************************************/

.page_title h1,
.page_title h2,
.section_title h1,
.section_title h2 {
  margin: 10px;
  font-size: 200%;
  font-weight: normal;
}

.page_title h3,
.section_title h3 {
  margin: 0px 2px;
  font-size: 116%;
  font-weight: normal;
}

.page_title h4,
.page_title h5,
.page_title h6,
.section_title h4,
.section_title h5,
.section_title h6 {
  margin: 0px;
  font-size: 100%;
  font-weight: bold;
}

.shoppingcart_page_body .section_title h4 {
  margin: 0px;
  font-size: 116%;
  font-weight: normal;
}

/********************************************************************/

/* メインコンテンツ */

/********************************************************************/

/********************************************************************/

/* 一覧
・写真のみ表示
・説明付き表示
・商品一覧ページ(写真のみ、説明付き)
・最新情報、店長日記
・ソート
*/

/********************************************************************/

/*--------------------------------------*/

/* 写真のみ表示  */

/*--------------------------------------*/

/* 説明付き背景リセット */
.layout_photo .item_data {
  background-image: none;
  border-bottom: none;
}

/* サムネイル写真 */
.layout_photo .list_item_photo {
  padding: 5px 0;
  text-align: center;
}

/* 一覧枠 */
.layout_photo .list_item_data {
  padding: 5px 1px;
}

/* もっと見る */
.more_item {
  margin-top: 20px !important;
  padding: 10px 5px 0px 5px;
  display: block;
  text-align: center;
}

.more_item .general_btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 2px;
  border: 1px solid var(--text_darker);
  background-color: #ffffff;
  color: var(--text_darker);
}

@media screen and (min-width: 768px) {
  .more_item .general_btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}

.more_item .general_btn:hover {
  border: 1px solid var(--text_darker) !important;
  background-color: var(--text_darker) !important;
  color: #ffffff;
}

/* 写真のみ文字サイズ */
.layout_photo .item_data_link {
  font-size: 85%;
}

.layout_photo .col2 .item_data_link {
  font-size: 93%;
}

/*--------------------------------------*/

/* 説明付き */

/*--------------------------------------*/

/* リンク */
.layout_column_text .list_item_box,
.layout_text .not_link {
  border-bottom: 1px solid #d6d6d6;
}

.list_item_data p.item_desc {
  color: #000000;
}

/*--------------------------------------*/

/* 商品一覧  */

/*--------------------------------------*/

/* 商品、記事一覧マウスオーバー */
.use_hover .item_list .item_data_link:hover,
.use_hover .item_list .list_item_link:hover {
  opacity: 0.7;
}

/* 商品名 */
.item_name {
  font-weight: bold;
}

.list_item_data p.item_name {
  margin-bottom: 3px;
}

/* 販売価格 */
.price {
  padding: 2px 0px;
  color: #000000;
  font-weight: bold;
}

.price .selling_price,
.price .regular_price {
  padding: 2px 0px;
}

/* 通常販売価格 */
.price .regular_price {
  color: #000000;
  font-weight: normal;
  display: block;
}

.item_box .text_layout .regular_price {
  display: inline;
}

/* 希望小売価格、税込価格 */
.item_box .retail_price,
.item_box .tax_incl_price {
  color: #666666;
  font-weight: normal;
  word-break: normal;
}

/* 在庫あり */
.stock {
  color: #666666;
  font-size: 93%;
}

/* 在庫僅か */
.lowstock {
  color: #990000;
}

/* 在庫なし */
.soldout,
.variation_stock_list .data_table .soldout {
  color: #777777;
}

/* レビュー件数 */
.item_info .review_number {
  color: #000000;
}

/* 商品一覧ランキングNo. */
.rankno {
  color: #ffffff;
  background-color: #ffa64d;
}

.item_data .rankno1 {
  background-color: #ff0000;
}

/*--------------------------------------*/

/* 記事一覧  */

/*--------------------------------------*/

/* タイトル */
.list_subject {
  padding: 5px 0px;
}

/* 日付 */
.date {
  color: #000000;
  font-size: 93%;
  font-weight: normal;
}

/*--------------------------------------*/

/* ソート */

/*--------------------------------------*/

.sort {
  border-bottom: 1px solid #d6d6d6;
}

.sort_toggle .toggle_open {
  padding: 7px;
  background-color: #f5f5f5;
  border: 1px solid #d6d6d6;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
}

.sort_toggle .toggle_open:hover {
  background-color: #f9f9f9;
}

/* ソート項目枠 */
.sort_item {
  padding: 10px;
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  background-color: #ffffff;
}

.sort_box {
  padding: 5px;
  margin: 3px;
  border-bottom: 1px solid #d6d6d6;
}

.sort_item .global_btn {
  padding: 5px;
  text-align: center;
}

/* 件数 */
.item_count {
  font-size: 93%;
}

/********************************************************************/

/* スライド */

/********************************************************************/

/* スライド送りボタン */
.slider_box .swiper-pagination-bullet,
.swipe_list .pointer span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  cursor: pointer;
}

/* 現スライド */
.slider_box .swiper-pagination-bullet-active,
.swipe_list .pointer span.current {
  background-color: #ff0000;
  border: 1px solid #ff0000;
}

#photo .slider_box .swiper-pagination-bullet,
#photo .swipe_list .pointer span,
#photo .slider_box .swiper-pagination-bullet-active,
#photo .swipe_list .pointer span.current {
  border: none;
}

/* 前へ、次へアイコン */
.swipe_list .pointer_box span.pointer_prev,
.swipe_list .pointer_box span.pointer_next,
.swiper-button-prev,
.swiper-button-next {
  width: 25px;
  height: 25px;
  background-color: #f5f5f5;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.use_hover .swiper-button-prev:hover,
.use_hover .swiper-button-next:hover {
  background-color: #d6d6d6;
}

.use_hover .slider_box .swiper-button-disabled:hover {
  background-color: #f5f5f5;
}

/* 前へアイコン画像 */
.swipe_list .pointer_box span.pointer_prev,
.swiper-button-prev {
  background-image: url(img/icon_prev.gif);
  -webkit-background-size: 25px 25px;
  background-size: 25px 25px;
}

/* 次へアイコン画像 */
.swipe_list .pointer_box span.pointer_next,
.swiper-button-next {
  background-image: url(img/icon_next.gif);
  -webkit-background-size: 25px 25px;
  background-size: 25px 25px;
}

/********************************************************************/

/* 第二階層 */

/********************************************************************/

.page_box {
  color: var(--text_color);
}

/* 共通説明 */
.page_desc {
  padding: 10px;
}

/* 共通ボックス */
.global_info {
  background-color: #ffffee;
  border: 1px solid #d6d6d6;
  padding: 10px;
}

/********************************************************************/

/* 商品詳細 */

/********************************************************************/

/* 商品情報　各ブロック */
.detail_section {
  border-bottom: 1px solid #d6d6d6;
}

/* 商品情報　商品名 */
.detail_item_data h1,
.detail_item_data .item_name {
  font-size: 123.1%;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 商品詳細　価格エリアdivタグ間余白 */
.detail_item_data .section_box {
  margin-bottom: 10px;
}

/* 商品詳細　価格エリア項目間余白 */
.detail_item_data .section_box p {
  margin-bottom: 5px;
}

/* 商品詳細　販売価格 */
.detail_item_data .selling_price {
  font-size: 123.1%;
  word-break: normal;
}

/* 商品詳細　販売価格金額 */
.detail_item_data .selling_price .figure {
  font-weight: bold;
}

/* 商品詳細　通常販売価格 */
.detail_item_data .regular_price {
  font-size: 85%;
}

/* 商品詳細　希望小売価格、税込価格 */
.detail_item_data .retail_price,
.detail_item_data .tax_incl_price {
  color: #666666;
  font-weight: normal;
}

/* 商品詳細　販売価格ラベル */
.detail_item_data .selling_price {
  font-weight: normal;
}

/* 商品詳細　在庫 */
.detail_item_data .stock {
  font-size: 108%;
  font-weight: bold;
}

/* 商品情報　商品説明 */
.item_desc {
  margin: 0px;
}

/* 価格変動注意書き */
.price_desc {
  font-size: 77%;
}

/* 商品仕様 */
.detail_spec_data {
  margin: 0px;
}

/* 他の写真枠 */
.other_item_data {
  margin: 0px;
}

.other_item_data .global_photo {
  text-align: center;
}

/* 他の写真説明 */
.other_photo_desc {
  margin: 0px;
}

/* ソーシャルツール */
.social_tool {
  padding-bottom: 5px;
}

/* バリエーション在庫表 */
.variation_stock_list {
  margin-bottom: 5px;
}

/* バリエーション、オーダーメイド項目間余白 */
.variation_item,
.order_item {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* オーダーメイド項目 */
.order_item {
  border-bottom: 1px dotted #cccccc;
}

.ordermade .bottompos {
  border-bottom: none;
}

/* 在庫数のラベルなし */
.hidden_stock .stocklist_data {
  text-align: center;
}

/* バリエーション在庫選択中背景 */
.variation_stock_list .data_table .selected_item {
  background-color: #ffffee;
  color: #ff0000;
}

.variation_stock_list .data_table .selected_data {
  background-color: #ffffee;
}

/*--------------------------------------*/
/* バリエーション選択のポップアップ */

/* ポップアップ枠 */
.popup_variation,
.popup_area {
  background-color: #ffffff;
  border: 1p solid #d6d6d6;
}

.popup_variation_selection,
.popup_section {
  border-bottom: 1px solid #d6d6d6;
}

/* バリエーション項目ボタン */
.popup_variation_button,
.item_selection_button {
  background-color: #f5f5f5;
  border: 2px solid #cccccc;
}

/* 選択中 */
.selected_option .popup_variation_button,
.selected_option .item_selection_button {
  background-color: #ffffee;
  border: 2px solid #333333;
  color: #cc0000;
}

/* 変更、選択してくださいボタン */
.popup_variation_edit_button,
.popup_variation_select_button,
.item_select_operation_button {
  background-image: url(img/btn_main.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-color: #f9f9f9;
  color: #333333;
}

.popup_variation_value,
.variation_selection_value,
.item_selection_value {
  color: #000000;
  font-weight: bold;
}

/* 選択済み枠 */
.variation_selection_box .validation_selection_selected_all,
.use_hover .variation_selection_box .validation_selection_selected_all:hover {
  background-color: #ffffee;
  border: 2px solid #333333;
  color: #000000;
}

.validation_selection_selected_all .variation_selection_msg_text {
  background-image: url(img/btn_main.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-color: #f9f9f9;
  color: #333333;
}

/*--------------------------------------*/
/* サムネイル写真 */

.thumbnail {
  margin-top: 5px;
}

/* サムネイル写真 */
.thumbnail .thumbnail_btn {
  border: 2px solid #ffffff;
}

.thumbnail .current .thumbnail_btn {
  border: 2px solid #ff0000;
}

/* サムネイル写真枠サイズ */
.thumbnail_listbox {
  width: 60px;
}

/*************************************************************/

/* レビュー */

/*************************************************************/

.large_rating_icon .rating_point {
  font-size: 153.9%;
}

.medium_rating_icon .rating_point {
  font-size: 123.1%;
}

/* 星ポイント */
.rating_point {
  margin-left: 10px;
  color: #ef9d35;
}

/* レビュー数 */
.review_number {
  margin-left: 10px;
}

/* グラフ */
.bar_graph {
  background-color: #ef9d35;
}

/* 年代 */
.rating_age {
  font-size: 93%;
}

/* 分析レポート内レビュー数 */
.rating_number A {
  font-size: 93%;
}

/* レビュー一覧 */
.review_data {
  border-bottom: 1px dotted #000000;
}

.mypagereview_contents .review_data {
  border-bottom: none;
}

/* レビュータイトル */
.review_title {
  font-size: 123.9%;
  font-weight: bold;
}

.itemdetail .review_data .review_title,
.mypagereview_contents .review_data .review_title {
  font-size: 108%;
}

/* 登録日 */
.review_postdate {
  background-image: url(img/h2_bg.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-color: #444444;
  color: #ffffff;
}

/* メモ */
.review_note {
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

.detail_page_body .review_note {
  border-top: 1px solid #d6d6d6;
  border-bottom: none;
}

/* ショップオーナー返信 */
.owner_note {
  border-bottom: 1px solid #d6d6d6;
}

/* ショップオーナーヘッダー */
.owner_header {
  font-size: 93%;
  color: #cc0000;
}

/* ショップオーナー登録日 */
.owner_postdate {
  display: inline-block;
  margin-left: 5px;
}

/* 参考質問数字 */
.user_number {
  font-size: 123.9%;
  font-weight: bold;
  color: #ef9d35;
}

/* 参考質問ボタン */
.review_vote_btn {
  display: block;
  margin-top: 5px;
}

/* 商品一覧レビュー数 */
.itemlist .review_number {
  font-size: 85%;
  margin-left: 5px;
}

/* 商品詳細レビュー数 */
.review_list .review_number {
  font-size: 93%;
}

/* 商品詳細ヘッダー */
.detail_review_header {
  padding-top: 10px;
}

/* 商品詳細、マイページレビュー管理ボタン */
.review_admin .global_btn {
  border-top: 1px solid #d6d6d6;
  text-align: center;
}

.detail_review_header .global_btn {
  text-align: center;
}

/********************************************************************/

/* ログイン */

/********************************************************************/

/* ID、PW枠 */
.signin_box .id_box,
.signin_box .pass_box {
  margin: 0px;
}

/* ID、PWタイトル */
.signin_box .id_title,
.signin_box .pass_title {
  margin-bottom: 10px;
  font-size: 116%;
  font-weight: bold;
}

.signin_box .password .global_link {
  font-size: 85%;
}

/* 新規登録枠 */
#register_form {
  padding-top: 20px;
  border-top: 1px solid #d6d6d6;
}

/********************************************************************/

/* カート */

/********************************************************************/

/* カートの中身各枠 */
.inner_cart_data {
  margin-bottom: 10px;
  border: 1px solid #d6d6d6;
  background-color: #ffffff;
  border-radius: 5px;
}

/* 各項目枠 */
.cart_section {
  border-top: 1px solid #d6d6d6;
}

/* 区切り線 */
.top_separator {
  border-top: 1px solid #d6d6d6;
}

.bottom_separator {
  border-bottom: 1px solid #d6d6d6;
}

/* 各項目ラベル */
.cart_label {
  font-weight: normal;
}

/* ボタン中央寄せ */
.cart_inner_btn {
  text-align: center;
}

/* 小計、送料 */
.cart_sub_total_price,
.cart_shipping_charge {
  text-align: right;
}

/* 合計 */
.cart_footer {
  text-align: right;
}

.grand_total {
  display: inline-block;
  border-bottom: 2px solid #d6d6d6;
  margin-bottom: 5px;
}

.grandtotal_price {
  font-size: 153.9%;
  color: #990000;
}

/* 買い物を続ける */
.continue_shopping {
  text-align: right;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

/* 送り主、お届け先追加変更ボタン */
.cart_recipient .global_btn {
  text-align: center;
}

/* お届け先名 */
.cart_recipient_title {
  border-left: 5px solid #ff0000;
}

/* ラジオボタン選択の強調表示 */
.checked_row {
  background-color: #ffffcc;
}

.form_area .checked_row > .form_title,
.form_inner_area .checked_row > .form_inner_title {
  color: #cc0000;
}

/* リピータ向け決済機能用 */
.inner_global_info {
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
}

/* クーポン/ポイント枠 */
.toggle_box .cart_point,
.toggle_box .box_padding,
.toggle_box .cart_point_notice {
  margin: 1px;
}

/* クーポン/ポイント変更時の金額を更新ボタン欄、強調表示背景 */
.notice_box .form_btn_spad {
  background-color: #ffffcc;
}

/*************************************************************/

/* ステップ表 */

/*************************************************************/

.step_list {
  margin: 10px 0px;
  padding: 0px 2px;
}

/* ステップ表 各枠背景 */
.step_data {
  background-color: #f5f5f5;
  border-bottom: 1px solid #f1f1f1;
  border-right: 1px solid #ffffff;
  text-align: center;
}

/* ステップ表 右端 */
.step_list .posright .step_data {
  border-right: none;
}

/* ステップ表 各枠　現ページ */
.step_check .step_data {
  background-color: var(--text_darker);
}

/* ステップ表 文字 */
.step_data span {
  color: #666666;
}

/* ステップ表 ステップ数 */
.step_data .step_number {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* ステップ表 現ページ文字 */
.step_check .step_data span {
  color: #ffffff;
}

/********************************************************************/

/* 最新情報、店長日記 */

/********************************************************************/

/* 日付 */
.article_date {
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 10px;
}

.format {
  font-size: 77%;
}

/* 記事 */
.ph_article {
  font-size: 108%;
}

/* バックナンバー */
.count_number {
  font-size: 93%;
}

/********************************************************************/

/* ご利用案内 */

/********************************************************************/

/* 上部ページ内リンクのナビゲーション */
.anchor_nav_area .nav_btn {
  border: 1px solid #d6d6d6;
  background-color: #f5f5f5;
}

.use_hover .anchor_nav_area .nav_btn:hover {
  border: 1px solid #d6d6d6;
  background-color: #ededed;
}

/* 各ブロック */
.help_contents .inner_contents_box {
  margin-bottom: 10px;
}

.help_step,
.help_payment {
  padding-bottom: 5px;
}

/* 説明各ブロック */
.help_data {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 93%;
}

/* 推奨環境 */
#spec_contents dt {
  font-weight: bold;
  padding-bottom: 5px;
}

#spec_contents dd {
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
}

/********************************************************************/

/* 特定商取引法 */

/********************************************************************/

/* 各欄枠 */
.contents_desc {
  padding: 10px 5px;
}

/********************************************************************/

/* メールマガジン */

/********************************************************************/

/* 登録、解除タイトル */
.mailmagazine_box .mailmagazine_subscribe_title,
.mailmagazine_box .mailmagazine_unsubscribe_title {
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 10px;
  font-size: 116%;
  font-weight: bold;
}

/********************************************************************/

/* マイページ */

/********************************************************************/

/* ポイント */
.member_contents .point_number {
  font-size: 138.5%;
  font-weight: bold;
  color: #990000;
}

/* リンク枠 */
.link_box .global_iconleft {
  display: block;
  margin-bottom: 10px;
}

/* 注意書き */
.mypage_note {
  font-size: 93%;
  line-height: 140%;
}

/* マイページ共通　送り主　お届け先 */
.mypage_recipient {
  padding: 5px 0px;
  font-size: 108%;
}

/*************************************************************/

/* 購入履歴 */

/*************************************************************/

/* 商品名 */
.history_data_list .item_name {
  font-weight: normal;
  color: #000000;
}

/*************************************************************/

/* 送り主、お届け先 */

/*************************************************************/

/* 住所 */
.recipient_data_list .user_address {
  font-weight: normal;
  color: #000000;
}

/*************************************************************/

/* お気に入り */

/*************************************************************/

/* 登録日、メモ */
.item_registration_date,
.item_memo {
  font-size: 93%;
}

/* 商品説明 */
.favorite_contents .item_desc {
  padding: 5px 0px;
  margin: 5px 0px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

/* メモ */
.item_memo_text {
  background-color: #f5f5f5;
  border: 1px solid #d6d6d6;
  color: #000000;
}

/*************************************************************/

/* 複数選択 */

/*************************************************************/

/* 複数削除 */
.bulk_btn {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* 複数選択 */
.inner_bulk_check_box {
  background-color: #f5f5f5;
}

.layout_column_text .inner_bulk_check_box,
.layout_text .inner_bulk_check_box {
  background-color: #f5f5f5;
}

.bulk_mode .layout_column_text .list_item_box,
.bulk_mode .layout_column_text .not_link,
.bulk_mode .layout_text .not_link {
  border-bottom: none;
}

/* 一括削除時の下部ボタン枠 */
.bulk_mode .fixed_bottom {
  background-color: #f5f5f5;
  border-top: 1px solid #d6d6d6;
}

/* 数量表示バッジ */
.badge {
  background-color: #ff0000;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
}

/*************************************************************/

/* 掲示板 */

/*************************************************************/

/* 記事枠 */
.post_box {
  margin-bottom: 5px;
  border: 1px solid #f1f1f1;
  background-color: #f5f5f5;
}

/* 記事枠レス */
.post_box_res {
  padding-left: 20px;
}

/* 記事ヘッダー */
.post_box .data_table .cell_header,
.post_box .data_table .cell_data {
  background-color: #d6d6d6;
  font-weight: normal;
}

/* 記事ヘッダー下部余白 */
.post_box .data_table {
  margin-bottom: 5px;
}

/* 記事ヘッダー中央寄せ */
.post_box .res_cell,
.post_box .toggle_cell,
.post_box .replay_cell {
  text-align: center;
}

.post_title,
.post_user,
.post_day,
.post_number {
  padding: 2px 0px;
}

/* 記事タイトル */
.post_title {
  font-weight: bold;
  font-size: 14px;
}

/* 記事ユーザー */
.post_user {
  font-size: 11px;
}

/* 記事投稿日 */
.post_day {
  font-size: 11px;
}

/* 記事No */
.post_number {
  font-size: 13px;
}

/* URL */
.post_url {
  font-size: 13px;
}

/* 記事コメント */
.bbs_comments {
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
}

/* 記事検索 */
.bbs_search {
  background-color: #f5f5f5;
}

/* 検索文字強調 */
.result_emphasis {
  background-color: #ffff73;
}

/* 検索前に戻る */
.bbs_search .global_link {
  margin-left: 10px;
}

/* 記事開閉 */
#bbs_toggle {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

/* 記事投稿欄 */
.bbs_post_form {
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
}

/*************************************************************/

/* 関連ページ */

/*************************************************************/

/* 内容 */
.link_desc_box {
  border-top: 1px solid #d6d6d6;
}

/*************************************************************/

/* 私が店長です */

/*************************************************************/

/* スタッフ画像 */
.staff_photo,
.pstaff_photo {
  text-align: center;
  margin-top: 10px;
}

/* プロフィール項目 */
.staff_contents dt,
.pstaff_contents dt {
  border-top: 1px solid #000000;
  font-weight: bold;
}

/* プロフィール内容 */
.staff_contents dd,
.pstaff_contents dd {
  border-top: 1px dotted #000000;
}

.staff_profile_desc {
  background-color: #f5f5f5;
  border: 1px solid #d6d6d6;
}

/********************************************************************/

/* カレンダー */

/********************************************************************/

/* カレンダーヘッダー */
.calendar_data {
  padding: 15px 0px;
}

.cal_month {
  padding-bottom: 15px;
  text-align: center;
}

.cal_month .prev_month,
.cal_month .next_month,
.cal_month .this_month {
  padding: 0px 10px;
}

.cal_month span.prev_month,
.cal_month span.next_month {
  padding: 0px 5px;
  font-weight: bold;
  cursor: pointer;
}

/* 今月 */
.this_month {
  font-size: 123.1%;
  font-weight: bold;
}

.side_col .this_month {
  font-size: 14px;
  padding: 0px;
}

.side_col .next_month,
.side_col .prev_month {
  font-size: 13px;
  padding: 0px;
}

/* カレンダー枠線 */
.calendar_data .data_table th.cell_header,
.calendar_data .data_table td.cell_data {
  border: 1px solid #d6d6d6;
}

/* カレンダー曜日セル */
.calendar_data .cal_day_header {
  font-size: 85%;
}

/* カレンダー各セル */
.calendar_data .data_table .cal_day_cell {
  width: 14%;
  height: 60px;
  vertical-align: top;
}

/* 日曜日 */
.sun .cal_day {
  color: #cc0000;
}

/* 土曜日 */
.sat .cal_day {
  color: #3399cc;
}

/* 今日 */
.calendar_data .today {
  font-weight: bold;
}

/* イベント一覧 */
.event_list li {
  border-bottom: 1px solid #d6d6d6;
}

/* イベント内容 */
.event_data {
  padding: 10px 0px;
}

/* イベント名 */
.event_name {
  font-weight: bold;
  line-height: normal;
}

/* アイコン画像 */
div.event_icon {
  text-align: center;
}

div.event_icon img {
  margin: 0px 1px;
}

span.event_icon {
  margin-right: 5px;
}

/* 定休日 */
.calendar_data .holiday,
.holiday_icon {
  background-color: #ffd9b3;
}

.holiday_icon {
  border: 1px solid #d6d6d6;
  display: inline-block;
  width: 15px;
  height: 15px;
}

/* イベント説明 */
.event_desc {
  font-size: 93%;
  padding: 5px;
}

/* 左右カラム */
.side_col .cal_day {
  font-size: 85%;
}

.side_col .data_table th.cell_header,
.side_col .data_table td.cell_data {
  padding: 2px;
}

.side_col .calendar_data .data_table .cal_day_cell {
  height: auto;
}

/********************************************************************/

/* table */

/********************************************************************/

/* thタグ、tdタグ */
.data_table .cell_header,
.data_table_header,
.data_table .cell_data {
  padding: 5px;
  border: 1px solid #d6d6d6;
}

/* thタグ */
.data_table .cell_header,
.data_table_header {
  background-color: #f5f5f5;
  color: #333333;
}

/* tdタグ */
.data_table .cell_data {
  background-color: #ffffff;
  color: #333333;
}

/********************************************************************/

/* フォーム */

/********************************************************************/

/* フォーム上部説明 */
.global_note li {
  border-bottom: 1px solid #d6d6d6;
}

.list_icon_circle {
  color: #000000;
}

/* フォーム項目 */
.form_element,
.form_inner_element {
  padding: 10px;
}

/* 必須項目 */
.require {
  color: #cc0000;
  font-weight: bold;
}

abbr.require {
  border: none;
  cursor: default;
}

/* 注意書き */
span.cell_note {
  font-size: 85%;
  font-weight: normal;
}

/* メールアドレス欄 */
.confirm_email {
  border-color: #e0dfe3;
  background-color: #ffffee;
}

/********************************************************************/

/* 入力エリア */

/********************************************************************/

/* 標準 */
.form_data .defaultsize {
  width: 170px;
}

/* 特小 */
.form_data .xsmallsize {
  width: 60px;
}

/* 小 */
.form_data .smallsize {
  width: 80px;
}

/* 大 */
.form_data .largesize {
  max-width: 500px;
  width: 97%;
}

/********************************************************************/

/* フォームエラー */

/********************************************************************/

/* 個別エラー表示 */
.form_error {
  border: 5px solid #ff0000;
  border-radius: 5px;
}

/* フォーム上部エラー表示 */
.error_box {
  border: 1px solid #ff0000;
  border-radius: 5px;
}

/* 商品詳細エラー表示 */
.detail_page_body .error_box {
  margin: 10px;
}

/* エラー表示　※赤枠内文字 */
.error_status {
  color: #ff0000;
  font-size: 93%;
  padding-left: 5px;
}

/* エラー時入力エリア背景色 */
.page_box .edit_form .error_row input,
.page_box .edit_form .error_row select,
.page_box .edit_form .error_row textarea {
  background-color: #fff0f0;
}

/* エラーアイコン */
.error_icon .fa {
  background-color: #ff0000;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 0px 1px #ff0000;
  color: #ffffff;
}

/* フォーム上部OK表示 */
.ok_box {
  border: 1px solid #00b200;
  border-radius: 5px;
}

/* OK表示 ※緑枠内文字 */
.ok_status {
  color: #00b200;
  font-size: 93%;
  padding-left: 5px;
}

/* OK表示アイコン位置調整 */
.ok_status img {
  padding-right: 3px;
}

/* OK時入力エリア背景色 */
.page_box .edit_form .ok_row input,
.page_box .edit_form .ok_row select,
.page_box .edit_form .ok_row textarea,
.page_box .edit_form .error_row .ok_input {
  background-color: #eeffee;
}

/* OKアイコン */
.ok_icon .fa {
  background-color: #00b200;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 0px 1px #00b200;
  color: #ffffff;
}

/* 重要な注意書き色 */
.note_color {
  color: #cc0000;
}

/********************************************************************/

/* アイコン */

/********************************************************************/

/* ヘッダーナビボタン */
.inner_header_nav .header_nav_item .fa {
  color: #000000;
}

/* グローバルナビ */
.inner_global_nav .fa {
  color: #000000;
}

.global_iconleft .fa {
  padding-right: 5px;
}

.global_iconright .fa {
  padding-left: 5px;
}

/* 閉じる、削除ボタン */
.close_btn_box .fa,
.delete_btn_box .fa {
  color: #000000;
}

.nav_close_btn .fa {
  color: #ffffff;
}

/* フッター下部ボタン */
.fixed_corner_button .fa {
  font-size: 24px;
  color: #555555;
  line-height: 1.8;
}

.use_hover .fixed_corner_button:hover .fa {
  color: #333333;
}

/* +-開閉ボタン */
.open_icon .fa,
.close_icon .fa {
  color: #000000;
}

/* 説明付き一覧表示調整 */
.right_side_list_icon {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -11px;
  font-size: 22px;
}

/********************************************************************/

/* ボタン */

/********************************************************************/

/* アイコンボタン枠 */
.icon_btn {
  padding: 0px 3px;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  border-radius: 5px;
}

.use_hover .icon_btn:hover {
  border: 1px solid #cccccc;
  background-color: #d1d1d1;
}

/* +-開閉ボタン枠 */
.open_icon,
.close_icon {
  border: 1px solid #cccccc;
  background-color: #ffffff;
}

.use_hover .open_icon:hover,
.use_hover .close_icon:hover,
.use_hover abbr .open_icon:hover,
.use_hover abbr .close_icon:hover {
  background-color: #f5f5f5;
}

/* 汎用ボタン */
.general_btn {
  padding: 2px 3px;
  border: solid 1px #cccccc;
  border-radius: 5px;
  display: inline-block;
}

.use_hover .general_btn:hover {
  border: 1px solid #cccccc;
  background-color: #f5f5f5;
}

.standard_btn {
  padding: 10px 20px;
  border: solid 1px #cccccc;
  border-radius: 5px;
  display: inline-block;
}

.use_hover .standard_btn:hover {
  border: 1px solid #cccccc;
  background-color: #f5f5f5;
}

.page_title_right_edge .general_btn,
.section_title_right_edge .general_btn {
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  color: #666666;
}

.use_hover .page_title_right_edge .general_btn:hover,
.use_hover .section_title_right_edge .general_btn:hover {
  background-color: #f5f5f5;
  color: #666666;
}

/* 画像リンク */
.use_hover .photo_link:hover {
  opacity: 0.7;
}

/*************************************************************/

/* フォームボタン */

/*************************************************************/

/* フォームボタンマウスオーバー */
.use_hover .global_btn input:hover,
.use_hover button:hover,
.use_hover .global_btn A:hover {
  opacity: 0.8;
}

/* ボタンサイズXXS */
.global_btn .btn_size_xxsmall {
  width: 30px;
  height: 30px;
}

/* ボタンサイズXS */
.global_btn .btn_size_xsmall {
  width: 50px;
  height: 30px;
}

/* ボタンサイズS */
.global_btn .btn_size_small {
  width: 70px;
  height: 30px;
}

/* ボタンサイズM */
.global_btn .btn_size_medium {
  width: 90px;
  height: 30px;
}

.global_btn A.btn_size_xxsmall,
.global_btn A.btn_size_xsmall,
.global_btn A.btn_size_small,
.global_btn A.btn_size_medium,
.global_btn A.btn_size_auto {
  line-height: 30px;
}

/* ボタンサイズL */
.global_btn .btn_size_large {
  width: 130px;
  height: 35px;
}

.global_btn A.btn_size_large {
  line-height: 35px;
}

/* ボタンサイズXL */
.global_btn .btn_size_xlarge {
  width: 180px;
  height: 40px;
  font-size: 116%;
}

.global_btn A.btn_size_xlarge {
  line-height: 40px;
}

/* ボタンサイズXXL */
.global_btn .btn_size_xxlarge {
  width: 281px;
  height: 50px;
  font-size: 123%;
}

.global_btn A.btn_size_xxlarge {
  line-height: 50px;
}

/* ボタンサイズ横幅auto */
.global_btn .btn_size_auto {
  height: 30px;
  width: auto;
  padding: 0px 20px;
}

/* ボタンサイズ小文字 */
.font_size_small {
  font-size: 77%;
}

/* 縦2段積みボタン */
.under_global_btn {
  display: block;
  margin-top: 30px;
}

/* 商品詳細 */
.detail_item_data .add_cart .global_btn {
  display: block;
  text-align: center;
  margin: 10px 0px;
}

/* 下部配置ボタン */
.form_btn {
  text-align: center;
  margin: auto;
  padding: 20px 0;
}

/* 下部ボタン上部注意書き */
.global_bottom_info {
  border-bottom: 1px dotted #000000;
}

/* ログインページ新規登録余白調整 */
#register_form .form_btn {
  padding: 0px;
}

/* Aタグボタン */
.global_btn A {
  font-weight: normal;
}

/* 外部決済ボタン */
.outside_btn_box {
  background-color: #ffffee;
  border: 1px solid #d6d6d6;
}

/* 楽天決済用 */
.payment_method_desc {
  margin-bottom: 10px;
}

/*--------------------------------------*/

/* ボタン色 */

/*--------------------------------------*/
/* 色通常 */
/* フォームボタン全般 */
.btn_color_common {
  background-image: url(img/btn_main.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-color: #f9f9f9;
  color: #333333;
}

.btn_color_common,
A.btn_color_common:link,
A.btn_color_common:visited,
A.btn_color_common:hover,
A.btn_color_common:active {
  color: #333333;
}

.use_hover .btn_color_common:hover {
  color: #333333;
}

/* 色強調 */
.btn_color_emphasis {
  /*background-image: url(img/btn_main_b.gif);
  background-repeat: repeat-x;
  background-position: left bottom;*/
  background-color: var(--text_dark);
  color: #ffffff;
}

.btn_color_emphasis,
A.btn_color_emphasis:link,
A.btn_color_emphasis:visited,
A.btn_color_emphasis:hover,
A.btn_color_emphasis:active {
  color: #ffffff;
}

.use_hover .btn_color_emphasis:hover {
  color: #ffffff;
}

/*************************************************************/

/* パンくずリスト */

/*************************************************************/

/* パンくずリスト */
.breadcrumb_list {
  font-size: 85%;
}

/********************************************************************/

/* ポップアップ */

/********************************************************************/

/* ポップアップの背景 */
.overlay_area .modal_skin {
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

/********************************************************************/

/* ロード、ページャー */

/********************************************************************/

/* 読み込み中アイコン画像 */
.loading,
.initial_loading {
  background: url(img/load_icon.gif);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: 25px 25px;
  background-size: 25px 25px;
}

.entry_box .loading {
  background-image: url(img/load_entry_icon.gif);
  -webkit-background-size: 25px 25px;
  background-size: 25px 25px;
}

/* 一覧ページャー */
.pager {
  margin: 5px 0px;
  text-align: center;
}

/* 現ページ */
.pager strong {
  min-width: 20px;
  min-height: 20px;
  padding: 3px;
  margin: 0px 1px;
  border: 1px solid #ff0000;
  background-color: #ff0000;
  color: #ffffff;
}

/* 各ページ */
.pager .pager_btn {
  min-width: 20px;
  min-height: 20px;
  margin: 0px 1px;
  padding: 3px;
  border: 1px solid #d6d6d6;
  background-color: #ffffff;
  text-decoration: none;
}

.use_hover .pager .pager_btn:hover {
  border: 1px solid #ff0000;
  background-color: #ff0000;
  color: #ffffff;
}

/********************************************************************/

/* グローバルサイトリンク */

/********************************************************************/

/* リンク一覧 */
.site_list_dropdown {
  background-color: #ffffff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4), -5px 5px 10px rgba(0, 0, 0, 0.4);
}

/* 各リンク先 */
.layout_dropdown .site_list_data {
  border-bottom: 1px solid #d6d6d6;
}

/* 各リンク文字 */
.global_site .site_list_dropdown .nav_btn,
#inner_footer .layout_dropdown .site_list_data .nav_btn {
  color: #000000;
}

.use_hover .global_site .site_list_dropdown .nav_btn:hover,
.use_hover #inner_footer .layout_dropdown .site_list_data .nav_btn:hover {
  color: #666666;
  background-color: #f5f5f5;
}

/* リスト表示タイトル */
#inner_footer .layout_dropdown .site_list_title .nav_btn {
  background-image: none;
  background-color: #ffffff;
  color: #000000;
}

/********************************************************************/

/* フッター */

/********************************************************************/

/* PCサイトボタン */
.footer_pc_site_box {
  height: 30px;
  padding: 15px 0px 15px 0px;
  position: relative;
  background-color: #ededed;
  box-sizing: content-box;
  text-align: center;
}

.pc_site_btn .pc_site_link {
  width: 80px;
  margin: auto;
  padding: 8px 8px 8px 30px;
  display: inline-block;
  background-image: url(img/icon_pc.png);
  -webkit-background-size: 30px 30px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: 5px center;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  box-sizing: content-box;
  font-size: 12px;
  text-align: center;
  color: #000000;
}

.use_hover .pc_site_btn .pc_site_link:hover {
  color: #000000;
  opacity: 0.8;
}

/* フッター */
#footer {
  text-align: center;
}

/* フッターナビゲーション */
.fix_center {
  width: inherit !important;
  justify-content: center;
}

@media (max-width: 480px) {
  .fix_center {
    align-items: center;
  }
}

.footer_nav li {
  width: inherit !important;
}

.footer_nav li a i {
  display: none;
}

.footer_upper_link_box .continued_link_box {
  border-left: 1px solid #666666;
}

/* ページトップへ戻るボタン */
.fixed_corner_button {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #555;
  text-align: center;
}

.move_to_add_cart .corner_covering_item,
.use_hover .move_to_add_cart:hover .corner_covering_item {
  color: #cccccc;
}

/* フッター下部バナー */
.footer_banner {
  text-align: center;
}

.use_hover .footer_banner .banner_box A:hover {
  opacity: 0.8;
}

/* フッター上部記入欄 */
ul.sns-link {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 0;
}

ul.sns-link li {
  list-style: none;
}

ul.sns-link li i {
  font-size: 22px;
}

ul.footer-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  margin: auto;
}

ul.footer-menu li {
  list-style: none;
}

@media (max-width: 599px) {
  ul.footer-menu {
    gap: 20px;
    width: 75%;
    margin: auto;
  }
}

/********************************************************************/

/* Powered by おちゃのこネット
※上記の文言は共用ドメインコースをご利用の場合に表示されます。
必須項目ですので、下記の編集は許可されていません。
・文言の削除
・文字色を薄くする
・文字サイズを小さくする */

#ochanoko {
  padding: 5px;
  text-align: center;
  font-size: 12px;
}

#ochanoko A {
  font-size: 12px;
}

.accessory_color {
  background-color: #ededed;
}

.accessory_color A {
  color: #333333;
}

.accessory_color A:hover {
  color: #666666;
}

/********************************************************************/

/********************************************************************/

/* トップページ */

/********************************************************************/

/* Concept */
.top_page_body .main_box:first-child {
  margin-top: 2em;
}

/* What's new */
.whatnew_list li {
  width: 100% !important;
}

/********************************************************************/

/* フリーページ用 */

/********************************************************************/
/* レスポンシブ */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 599px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* フェード */
.fluffy {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fluffy.visible {
  opacity: 1;
}

/* h1タイトル */
.kasou-title h1 {
  background-size: cover;
  background-position: 50% 25%;
  height: 240px;
  text-align: center;
  font-size: 4em;
  color: #fff;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0px 0px 10px #000;
}

#about {
  background-image: url(https://massanova.ocnk.net/data/massanova/image/main-visual4.jpg);
}

#realshop {
  background-image: url(https://massanova.ocnk.net/data/massanova/image/mail-visual7.jpg);
}

#works {
  background-image: url(https://massanova.ocnk.net/data/massanova/image/main-visual9.jpg);
}

.w640 {
  max-width: 640px;
  margin: 0 auto;
}

.page_box section {
  margin: 0 auto 10em;
}

.page_box section th,
.page_box section td {
  padding: 1em;
  border-bottom: 1px solid #ccc;
}

.page_box .th35 th {
  width: 35%;
}

@media (max-width: 599px) {
  .page_box .th35 th,
  .page_box .th35 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .page_box .th35 th {
    padding: 0.5em 1em;
    background-color: #f6f6f6;
  }
}

/* aboutページ */
dl.history-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.history-list dt,
.history-list dd {
  padding: 1em;
}

.history-list dt {
  width: 15%;
  font-weight: bold;
}

.history-list dd {
  width: 85%;
  margin: 0;
}

@media screen and (max-width: 599px) {
  .history-list dt,
  .history-list dd {
    width: 100%;
  }
  .history-list dt {
    background-color: #f6f6f6;
    padding: 0.5em 1em;
  }
}

/* realshopページ */
.dealer {
  text-align: center;
}

.dealer dt {
  font-weight: normal;
}

.dealer dd {
  margin-bottom: 2em;
}
