@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
/* ==== contents === */
.pc {
  display: block;
}

.sp {
  display: none !important;
}

img {
  max-width: 100%;
}

.tel {
  pointer-events: none;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.ec-headerSearch .ec-headerSearch__keyword {
  width: 100%;
  background-color: #fff;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
}

.ec-headerNaviRole {
  max-width: 1600px;
  flex-wrap: wrap;
}

.hd_member_link {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #b8b566, #a0a060);
  padding: 5px;
}
.hd_member_link a {
  display: flex;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 0 10px;
}
.hd_member_link a:hover {
  border-bottom: 1px solid #B4AF28;
}
.hd_member_link a:hover .txt::before {
  right: 0;
}
.hd_member_link a .name {
  font-size: 14px;
}
.hd_member_link a .title {
  font-size: 16px;
  padding: 0 20px;
}
.hd_member_link a .txt {
  font-size: 14px;
  position: relative;
  padding-right: 15px;
}
.hd_member_link a .txt::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 3px;
  transition: 0.3s;
}

.ec-headerRole__navSP {
  display: none;
}

.hd_block {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hd_block .hd_nav {
  width: 60%;
  overflow-x: scroll;
  /* スクロールバーのスタイル */
}
.hd_block .hd_nav::-webkit-scrollbar {
  height: 6px;
}
.hd_block .hd_nav::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.hd_block .hd_nav::-webkit-scrollbar-thumb {
  background: rgba(160, 160, 96, 0.5);
  border-radius: 3px;
}
.hd_block .hd_nav::-webkit-scrollbar-thumb:hover {
  background: rgba(160, 160, 96, 0.7);
}
.hd_block .hd_nav .nav_list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 5px;
  min-width: -moz-max-content;
  min-width: max-content;
}
.hd_block .hd_nav .nav_list li {
  position: relative;
}
.hd_block .hd_nav .nav_list li:hover .nav_clist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.hd_block .hd_nav .nav_list a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  display: block;
  font-size: 14px;
}
.hd_block .hd_nav .nav_list a .en {
  display: block;
}
.hd_block .hd_nav .nav_list a .ja {
  display: block;
  font-size: 12px;
  text-align: center;
}
.hd_block .hd_nav .nav_list a:hover {
  color: #a0a060;
}
.hd_block .hd_item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hd_block .hd_item .ec-headerNaviRole__search {
  margin-top: 0;
}
.hd_block .hd_item .ec-headerRole__cart .ec-cartNavi {
  padding: 10px;
  min-width: 0;
  background: #fff;
  height: auto;
}
.hd_block .hd_item .fa-fw {
  width: 1.5em;
}

@media screen and (max-width: 1240px) {
  .hd_block .hd_nav .nav_list a {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1090px) {
  .hd_block .hd_logo {
    width: 100px;
  }
  .hd_block .hd_nav .nav_list a {
    text-decoration: none;
    color: #000;
    padding: 5px 10px;
    display: block;
  }
  .hd_block .hd_nav .nav_list a .en {
    display: block;
    font-size: 14px;
  }
  .hd_block .hd_nav .nav_list a .ja {
    display: block;
    font-size: 10px;
    text-align: center;
  }
  .hd_block .hd_item .ec-headerNaviRole__search {
    margin-top: 0;
  }
  .hd_block .hd_item .ec-headerRole__cart .ec-cartNavi {
    padding: 5px;
    min-width: 0;
    background: #fff;
    height: auto;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hd_block .hd_nav .nav_list .nav_clist {
  display: none;
  transition: All 0.5s ease;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
}
.hd_block .hd_nav .nav_list .nav_clist li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}
.hd_block .hd_nav .nav_list .nav_clist li a {
  background: #fff;
  color: #000;
  display: block;
  padding: 10px 5px;
  text-decoration: none;
  font-size: 12px;
}
.hd_block .hd_nav .nav_list .nav_clist li a:hover, .hd_block .hd_nav .nav_list .nav_clist li a.current {
  opacity: 0.8;
}
.hd_block .hd_nav .nav_list .nav_clist li a .en {
  font-size: 12px;
}
.hd_block .hd_nav .nav_list .nav_clist li:hover .nav_glist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.front_page .ec-layoutRole__contents {
  max-width: none;
}
.front_page .ec-layoutRole__contents .ec-sliderRole {
  max-width: none;
}
.front_page .ec-layoutRole__contents .ec-sliderRole .slick-initialized .slick-slide {
  margin: 0 20px;
}

.slick-slide {
  transform: scale(0.85);
  transition: 1s;
}

.slick-current {
  transform: scale(1);
}

.ec-newItemRole {
  width: 100%;
}
.ec-newItemRole .new_item_ttl {
  text-align: center;
}
.ec-newItemRole .new_item_ttl .en {
  font-size: 30px;
  color: #000;
  display: inline-block;
  position: relative;
  padding: 0 50px;
}
.ec-newItemRole .new_item_ttl .en::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
}
.ec-newItemRole .new_item_ttl .en::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
}
.ec-newItemRole .new_item_ttl .ja {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #000;
}
.ec-newItemRole .ec-newItemRole__list {
  margin: 50px 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ec-newItemRole .ec-newItemRole__list .ec-newItemRole__listItem {
  width: 33.3333333333%;
  margin: 0;
}

.ec-recomendRole {
  width: 100%;
  margin: 60px 0;
}
.ec-recomendRole .recomend_ttl {
  text-align: center;
}
.ec-recomendRole .recomend_ttl .en {
  font-size: 30px;
  color: #000;
  display: inline-block;
  position: relative;
  padding: 0 50px;
}
.ec-recomendRole .recomend_ttl .en::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
}
.ec-recomendRole .recomend_ttl .en::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
}
.ec-recomendRole .recomend_ttl .ja {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #000;
}
.ec-recomendRole .ec-recomendRole__list {
  margin: 50px 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.ec-recomendRole .ec-recomendRole__list .ec-recomendRole__listItem {
  width: calc(25% - 9px);
  margin-right: 12px;
}
.ec-recomendRole .ec-recomendRole__list .ec-recomendRole__listItem:nth-child(4n) {
  margin-right: 0;
}
.ec-recomendRole .ec-recomendRole__list .ec-recomendRole__listItem a {
  text-decoration: none;
  color: #000;
}
.ec-recomendRole .ec-recomendRole__list .ec-recomendRole__listItem a .ttl01 {
  font-size: 14px;
}
.ec-recomendRole .ec-recomendRole__list .ec-recomendRole__listItem a .price {
  font-size: 14px;
}

.ec-categoryRole {
  width: 100%;
  background: #fff;
}
.ec-categoryRole .category_ttl {
  text-align: center;
}
.ec-categoryRole .category_ttl .en {
  font-size: 30px;
  color: #000;
  display: inline-block;
  position: relative;
  padding: 0 50px;
}
.ec-categoryRole .category_ttl .en::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
}
.ec-categoryRole .category_ttl .en::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
}
.ec-categoryRole .category_ttl .ja {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #000;
}
.ec-categoryRole .ec-categoryRole__list {
  margin: 50px 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem {
  width: calc(50% - 15px);
  height: 200px;
  margin: 0;
  margin-right: 30px;
  margin-bottom: 30px;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  /* iida 追記 */
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem .bg {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:hover .bg {
  transform: scale(1.05);
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:hover .bg .en {
  transform: scale(0.95);
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:hover .bg .ja {
  transform: scale(0.95);
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:nth-child(2n) {
  margin-right: 0;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:nth-child(1) .bg {
  background: url(../img/top/cate01_bg.png) center no-repeat;
  background-size: cover;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:nth-child(2) .bg {
  background: url(../img/top/cate02_bg.png) center no-repeat;
  background-size: cover;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:nth-child(3) .bg {
  background: url(../img/top/cate03_bg.png) center no-repeat;
  background-size: cover;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:nth-child(4) .bg {
  background: url(../img/top/cate04_bg.png) center no-repeat;
  background-size: cover;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:nth-child(5) .bg {
  background: url(../img/top/cate05_bg.png) center no-repeat;
  background-size: cover;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem:nth-child(6) .bg {
  background: url(../img/top/cate06_bg.png) center no-repeat;
  background-size: cover;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 50px 0;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem a .en {
  font-size: 40px;
  display: block;
  margin-bottom: 5px;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem a .ja {
  font-size: 14px;
  display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ec-blockTopBtn {
  display: none !important;
}

.ec-footerRole {
  background: #f3f3f3;
  width: 100%;
  border-top: none;
}
.ec-footerRole .ec-footerRole__inner {
  max-width: 1200px;
}
.ec-footerRole .ec-footerRole__inner .ft_logo {
  width: 130px;
  margin: 30px auto;
  display: block;
}
.ec-footerRole .ec-footerRole__inner .ft_sns {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.ec-footerRole .ec-footerRole__inner .ft_sns a {
  padding: 10px 15px;
}
.ec-footerRole .ec-footerRole__inner .ft_sns a img {
  max-width: 100%;
  width: auto;
}
.ec-footerRole .ec-footerRole__inner .ec-footerNavi {
  color: #000;
  margin-bottom: 50px;
}
.ec-footerRole .ec-footerRole__inner .ec-footerNavi .ec-footerNavi__link a {
  text-decoration: none;
}

.ft_copy {
  font-size: 0.9em;
  text-align: center;
  width: 100%;
  background: #222222;
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.guide_block .box {
  margin-bottom: 50px;
}
.guide_block .box .guide_ttl {
  font-size: 24px;
  position: relative;
  padding-left: 10px;
  margin-bottom: 20px;
}
.guide_block .box .guide_ttl::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
.guide_block .box p {
  font-size: 16px;
  line-height: 2em;
}
.guide_block .box.contact {
  padding: 20px;
  background: #f3f3f3;
}
.guide_block .box a {
  text-decoration: none;
  color: #525263;
}

.matomegai_block .box {
  margin-bottom: 50px;
}
.matomegai_block .box .matomegai_ttl {
  font-size: 24px;
  position: relative;
  padding-left: 10px;
  margin-bottom: 20px;
}
.matomegai_block .box .matomegai_ttl::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
.matomegai_block .box p {
  font-size: 16px;
  line-height: 2em;
  margin-bottom: 1em;
}
.matomegai_block .box.contact {
  padding: 20px;
  background: #f3f3f3;
}
.matomegai_block .box a {
  text-decoration: none;
  color: #525263;
}
.matomegai_block .box .matomegai_tb table {
  width: 50%;
  max-width: 400px;
}
.matomegai_block .box .matomegai_tb table tr th {
  padding: 10px;
  background: #ddd;
}
.matomegai_block .box .matomegai_tb table tr td {
  padding: 10px;
}
.matomegai_block .box .matomegai_tb table tr:nth-child(2n-1) td {
  background: #eee;
}

#news-ticker-container {
  position: relative; /* コンテナの位置を設定 */
  overflow: hidden; /* コンテンツがコンテナを超える場合に非表示にする */
  height: 40px; /* コンテナの高さを設定 */
  display: flex; /* フレックスボックスモデルを適用 */
  justify-content: center; /* 主軸方向に空間を挿入して要素間隔を最大にする */
  align-items: center; /* 交差軸方向に要素を中央揃えにする */
}

#news-ticker {
  position: absolute; /* ティッカーの位置を設定 */
  transition: transform 0.8s ease-in-out; /* transformプロパティの変化を0.8秒間で緩やかに適用する */
}

#controls {
  right: 0; /* コントロールを右側に配置 */
  display: flex; /* フレックスボックスモデルを適用 */
  align-items: center; /* 交差軸方向に要素を中央揃えにする */
  justify-content: flex-end; /* 主軸の終端に要素を配置 */
  gap: 10px; /* 各要素間のギャップを設定 */
  margin-right: 20px;
}

#controls button {
  height: 30px; /* ボタンの高さを設定 */
  line-height: 30px; /* ボタン内のテキストの行高を設定 */
  display: flex; /* フレックスボックスモデルを適用 */
  align-items: center; /* 交差軸方向に要素を中央揃えにする */
  color: #fff;
  background: #333;
}
#controls button#prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: background-color 0.3s ease;
  left: 10px;
}
#controls button#next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: background-color 0.3s ease;
  right: 10px;
}

@keyframes slide-up {
  from {
    transform: translateY(100%); /* アニメーション開始時、要素を下（Y軸方向）に100%移動 */
  }
  to {
    transform: translateY(0); /* アニメーション終了時、要素の位置を初期状態（Y軸方向0%）に戻す */
  }
}/*# sourceMappingURL=style.css.map */