﻿@charset "UTF-8";

body {
  color: #000;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
}

select {
  padding: 10px 50px 10px 20px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  -webkit-appearance: none;
	appearance: none;
  background-image: url(../../img/usr/common/ico_select_arrow.png), linear-gradient(to bottom, #FFF 0%, #FFF 40%, #F0F0F0 100%);
  background-size: 12px auto, 100% 100%;
  background-position: center right 19px, top left;
  background-repeat: no-repeat, no-repeat;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="search"], input[type="password"], input[type="url"], input[type="number"], textarea {
  padding: 8px 15px;
  border: 1px solid #CCC;
  border-radius: 5px;
  font-size: 14px;
  background: #FCFCFC;
}

input[type="radio"] {
  -webkit-appearance: none;
	appearance: none;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  margin-bottom: 1px;
  border: 1px solid #BBBBBB;
  border-radius: 50%;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25);
  background: #F8F8F8;
}

input[type="radio"]:checked {
  border: 7px solid #095540;
  border-radius: 50%;
  box-shadow: none;
  background: #FFF;
}

input[type="checkbox"] {
  -webkit-appearance: none;
	appearance: none;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  margin-bottom: 1px;
  border-radius: 3px;
  background: #CCC url(../../img/usr/common/ico_check_w.png) center center no-repeat;
}

input[type="checkbox"]:checked {
  background: #095540 url(../../img/usr/common/ico_check_w.png) center center no-repeat;
}

.btn, .action .btn {
  border-width: 1px;
}

.action .btn {
  min-width: 220px;
  padding: 10px;
}

.action-buttons {
  margin: 30px 0;
}

.legend {
  font-weight: bold;
  border-bottom: 0;
}

.btn-default {
  padding: 0.86667em 0.66667em;
  border-radius: 999px;
  border: 1px solid #000;
  font-size: 15px;
  font-weight: bold;
  color: #000;
  background: #FFF;
}

.btn-secondary {
  padding: 0.86667em 0.66667em;
  border-radius: 999px;
  border: 1px solid #000;
  font-size: 15px;
  font-weight: bold;
  color: #000;
  background: #FFF;
}

.btn-primary {
  padding: 0.86667em 0.66667em;
  border-radius: 999px;
  border: 1px solid #095540;
  font-size: 15px;
  font-weight: bold;
  color: #FFF;
  background: #095540;
}

.btn-danger {
  padding: 0.86667em 0.66667em;
  border-radius: 999px;
  border: 1px solid #707070;
  font-size: 15px;
  font-weight: bold;
  color: #FFF;
  background: #707070;
}

.alert {
  margin-top: 5px;
  padding: 10px 10px 10px 50px;
  margin-bottom: 5px;
  position: relative;
  border: 1px solid #FF0000;
  border-radius: 5px;
  color: #FF0000;
  overflow: hidden;
  background-color: #FFEDED;
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: 15px 50%;
  background-image: url(../../img/usr/common/ico_form_error.png);
}

.block-common-alert {
  border: 1px solid #FF0000;
  border-radius: 5px;
  color: #FF0000;
  background-color: #FFEDED;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin: 60px 0 100px;
}

.pager ul.pagination {
  display: flex;
}

.pager ul.pagination > li {
  float: none;
  margin: 0 10px 0 0;
  padding: 0;
  border: 0;
  background: none;
}

.pager ul.pagination > li:last-of-type {
  margin-right: 0;
}

.pager ul.pagination > li a {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
  background: #F5F5F5;
}

.pager ul.pagination > li.pager-current span {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
  color: #FFF;
  background: #666666;
}

.pager ul.pagination > li.pager-current-next {
  position: relative;
  margin-right: 25px;
}

.pager ul.pagination > li.pager-current-next::after {
  position: absolute;
  top: 0;
  right: -25px;
  display: block;
  width: 25px;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 36px;
  content: "…";
}

.pager ul.pagination > li.pager-current-prev {
  position: relative;
  margin-left: 25px;
}

.pager ul.pagination > li.pager-current-prev::after {
  position: absolute;
  top: 0;
  left: -25px;
  display: block;
  width: 25px;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 36px;
  content: "…";
}

.pager ul.pagination > li.pager-previous a,
.pager ul.pagination > li.pager-next a {
  position: relative;
  font-size: 0;
}

.pager ul.pagination > li.pager-previous a::before {
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 2px);
  width: 8px;
  height: 8px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg) skew(-10deg, -10deg);
  content: "";
}

.pager ul.pagination > li.pager-next a::before {
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 2px);
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg) skew(-10deg, -10deg);
  content: "";
}

.pager .pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.pager .pagination-wrap .pagination {
  display: flex;
}

.pager .pagination-wrap .pagination li {
  float: none;
  display: block;
}

.pager .pagination-wrap .pagination li:last-of-type {
  margin-right: 0;
}

.pager .pagination-wrap .pagination .pager-first,
.pager .pagination-wrap .pagination .pager-last {
  display: none;
}

.pager .pagination-wrap .pagination .pager-previous,
.pager .pagination-wrap .pagination .pager-next {
  width: 36px;
  margin: 0;
  border: 0;
}

.pager .pagination-wrap .pagination .pager-previous a {
  display: block;
  font-size: 0;
  background: url(../../img/usr/common/pager_prev.png) top 8px center / auto auto no-repeat;
}

.pager .pagination-wrap .pagination .pager-next a {
  display: block;
  font-size: 0;
  background: url(../../img/usr/common/pager_next.png) top 8px center / auto auto no-repeat;
}

.pager .pagination li.pager-current-before {
  margin-left: 15px;
  position: relative;
}

.pager .pagination li.pager-current-after {
  margin-right: 25px;
  position: relative;
}

.pager .pagination li.pager-current-before::before {
  display: block;
  position: absolute;
  top: 0;
  left: -25px;
  width: 25px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  content: '...';
}

.pager .pagination li.pager-current-after::after {
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  content: '...';
}

h1, .h1 {
  margin: 15px 0 45px;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  line-height: 1.318;
  color: #095540;
}

h2, .h2 {
  font-weight: bold;
}

.block-search-goods h1,
.block-category-list h1,
.block-genre-page h1,
.block-event-page h1 {
  margin-bottom: 0;
}

.img-center img.img-front {
}

.img-center img.img-side {
  display: none;
}

.default-price {
  text-decoration: none;
}

.required::after {
  display: inline-block;
  margin-left: 10px;
  padding: 1px 6px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: text-top;
  border-radius: 5px;
  color: #fff;
  background-color: #FF0000;
  content: "必 須";
}

/* ----パンくずリスト---- */

.block-topic-path {
  padding: 17px 0 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3077;
}

.block-topic-path .block-topic-path--item__home {
  padding-left: 25px;
  background: url(../../img/usr/common/ico_breadcrumb_home.png) center left no-repeat;
}

/* ----共通モーダル---- */

.block-common-modal {
  display: none;
}

.block-common-modal .block-common-modal--inner {
  position: fixed;
  top: 80px;
  left: calc(50% - 450px);
  width: 900px;
  height: calc(100% - 160px);
  border-radius: 10px;
  overflow: hidden;
  z-index: 10001;
}

.block-common-modal .block-common-modal--title-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  z-index: 1;
}

.block-common-modal .block-common-modal--title-frame .block-common-modal--close {
  position: absolute;
  top: 25px;
  left: 30px;
  width: 70px;
  padding: 5px 5px 5px 22px;
  border: 0;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.53846;
  color: #FFF;
  cursor: pointer;
  background: #095540;
  z-index: 1;
}

.block-common-modal .block-common-modal--title-frame .block-common-modal--close::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 6px;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: #FFF;
  transform: rotate(45deg);
  content: "";
}

.block-common-modal .block-common-modal--title-frame .block-common-modal--close::after {
  position: absolute;
  top: calc(50% - 1px);
  left: 6px;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: #FFF;
  transform: rotate(-45deg);
  content: "";
}

.block-common-modal .block-common-modal--return {
  position: absolute;
  top: 25px;
  left: 30px;
  width: 70px;
  padding: 5px 5px 5px 28px;
  border: 0;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.53846;
  color: #FFF;
  cursor: pointer;
  background: #095540;
  z-index: 2;
}

.block-common-modal .block-common-modal--return::before {
  position: absolute;
  top: 9px;
  left: 12px;
  width: 7px;
  height: 11px;
  background: url(../../img/usr/common/ico_arrow_w_l.png) center center no-repeat;
  content: "";
}

.block-common-modal .block-common-modal--title-frame .block-common-modal--title {
  padding: 22px 0;
  border-bottom: 1px solid #095540;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.346154;
  text-align: center;
}

.block-common-modal .block-common-modal--content {
  max-height: calc(100% - 80px);
  margin-top: 80px;
  border-radius: 0 0 10px 10px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.6) transparent;
  background: #FFF;
}

.block-common-modal .block-common-modal--bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 10000;
}

.modal-alert {
  width: 850px;
}

.modal-overlay {
  opacity: 0.7;
}

.modal-dialog {
  border-radius: 10px;
  overflow: hidden;
}

.modal-content {
  background: #FFF;
}

.modal-header {
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #095540;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #000;
  background: #FFF;
}

.modal-header .modal-close {
  position: absolute;
  top: calc(50% - 15px);
  left: 20px;
  display: block;
  float: none;
  width: auto;
  padding: 8px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  color: #fff;
  background: #095540;
}

.modal-header .modal-close::after {
  content: "閉じる";
}

.modal-body {
  padding: 35px 20px 25px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.modal-dialog .modal-footer {
  padding: 0 10px 50px;
}

.modal-dialog .modal-footer .btn {
  min-width: 230px;
  margin: 0;
}

.modal-dialog .modal-footer .btn[name="btncancel"] {
  margin-right: 15px;
}

.modal-dialog .bookmarkmodal-option {
  margin: 36px 0 0;
}

.modal-dialog .bookmarkmodal-option .btn {
  min-width: 0;
  width: auto;
  padding: 0 0 0 28px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  background: url(../../img/usr/common/ico_linklist_arrow.png) center left / 21px auto no-repeat;
}