@charset "UTF-8";
@import url("./node_modules/normalize.css");
body {
  font-family: "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.blk {
  display: block !important;
}

.ilbl {
  display: inline-block !important;
}

.fw-b {
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .sponly {
    display: none !important;
  }
}
.lft {
  text-align: left;
}

.ctr {
  text-align: center;
}

.rht {
  text-align: right;
}

img.icon_header {
  max-width: 30px;
}

/* ボタン */
.link-button-pink {
  display: inline-block;
  height: 40px;
  min-width: 200px;
  border-radius: 5px;
  margin: 0.75em auto;
  background-color: #E63282;
  color: white;
  text-align: center;
}
.link-button-pink a {
  display: flex;
  justify-content: center;
  justify-self: center;
  align-items: center;
  width: 100%;
  height: 40px;
  text-align: center;
  color: white;
}

.ec-blockBtn {
  border-radius: 8px;
  font-size: 1.2em;
}
.ec-blockBtn--action {
  background-color: #E63282;
  border-color: #E63282;
  border-radius: 8px;
  font-size: 1.2em;
}
.ec-blockBtn--cancel {
  border-radius: 8px;
  font-size: 1.2em;
}

.btn-success {
  color: #fff;
  background-color: #38a1d9;
  border-color: #38a0d3;
}

.btn-check:checked + .ec-blockBtn--action, .btn-check:active + .ec-blockBtn--action,
.ec-blockBtn--action:active, .ec-blockBtn--action.active, .show > .ec-blockBtn--action.dropdown-toggle {
  color: #fff;
  background-color: #ffc107;
  border-color: #f3c107;
}

.ec-blockBtn--action:hover {
  color: #fff;
  background-color: #ffc107;
  border-color: #f3c107;
}

.ec-inlineBtn--cancel {
  min-width: 150px;
  background-color: #525263;
  border-color: #525263;
  border-radius: 5px;
}

.ec-inlineBtn--action {
  display: inline-block;
  margin-bottom: 0;
  min-width: 150px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 0.875rem;
  border-radius: 1.42857142;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px 16px;
  text-decoration: none;
  color: #fff;
  background-color: #E63282;
  border-color: #E63282;
  border-radius: 5px;
}

@media only screen and (max-width: 767px) {
  .ec-inlineBtn--cancel {
    margin-top: 0.5rem;
  }
  .ec-inlineBtn--action {
    margin-top: 0.5rem;
  }
}
.table-base {
  margin: 1rem 0;
  border-collapse: collapse;
  font-size: 0.95em;
}
.table-base tr th {
  padding: 0.5rem;
  border: 1px solid #666;
}
.table-base tr td {
  padding: 0.5rem;
  border: 1px solid #666;
}

/* ドロワーメニュー、ドロップダウン */
.ec-itemNav__nav .submenu {
  display: none;
}
.ec-itemNav__nav .toggle-arrow {
  cursor: pointer;
  position: relative;
  width: 55px;
  height: 35px;
  top: -10px;
  padding: 10px;
  z-index: 110;
  float: right;
}
.ec-itemNav__nav .category2nd__dropBtn {
  cursor: pointer;
  position: relative;
  width: 55px;
  height: 35px;
  top: -10px;
  padding: 10px;
  z-index: 110;
  float: right;
}
@media only screen and (min-width: 768px) {
  .ec-itemNav__nav .category2nd__dropBtn {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .ec-itemNav__nav .category2nd__dropBtn {
    display: inline-block;
  }
  .ec-itemNav__nav .submenu {
    display: none;
  }
  .ec-itemNav__nav .toggle-arrow {
    cursor: pointer;
    width: 55px;
    height: 35px;
    z-index: 111;
  }
  .ec-itemNav__nav .toggle-arrow,
  .ec-itemNav__nav .toggle-arrow.dropped {
    position: relative;
    display: block;
    width: 0px;
    height: 0;
    top: 0.5em;
    margin-left: 1.5em;
  }
  .ec-itemNav__nav .toggle-arrow::before,
  .ec-itemNav__nav .toggle-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 0.8em;
    height: 1px;
    background-color: #333;
  }
  .ec-itemNav__nav .toggle-arrow::before {
    right: 0;
    transform-origin: right center;
    transform: translate3d(0, -0.3em, 0) rotate(-40deg);
  }
  .ec-itemNav__nav .toggle-arrow::after {
    left: 0;
    transform-origin: left center;
    transform: translate3d(0, -0.3em, 0) rotate(40deg);
  }
  .ec-itemNav__nav .toggle-arrow.dropped::before {
    right: 0;
    transform-origin: right center;
    transform: translate3d(0, 0.2em, 0) rotate(40deg);
  }
  .ec-itemNav__nav .toggle-arrow.dropped::after {
    left: 0;
    transform-origin: left center;
    transform: translate3d(0, 0.2em, 0) rotate(-40deg);
  }
}

/* メインコンテンツ */
.ec-layoutRole .ec-layoutRole__contents {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  .ec-layoutRole .ec-layoutRole__contents {
    margin-top: 91px;
  }
}

.ec-role {
  color: #222233;
}
@media only screen and (max-width: 767px) {
  .ec-role {
    max-width: 96%;
    margin: 0 2%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.ec-role p {
  line-height: 1.8;
  padding-bottom: 0.5em;
}

h1 {
  border-bottom: 2px solid #E63282;
  color: #5D5D5D;
}

/* ヘッダー */
.ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search {
  background-color: #E63282;
}
@media only screen and (min-width: 768px) {
  .ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search {
    border-radius: 10px 0px 0px 10px;
    background-color: #E63282;
    font-size: 1.1rem;
  }
}
.ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search::before {
  position: absolute;
  top: 0.9em;
  right: 1.4em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .ec-headerSearch .ec-headerSearch__keyword input[type=search] {
    width: 100%;
    height: 34px;
    font-size: 16px;
    border: 0 none;
    padding: 0.5em 50px 0.5em 1em;
    box-shadow: none;
    background: none;
    box-sizing: border-box;
    margin-bottom: 0;
    border-radius: 0px 10px 10px 0px;
  }
}

.ec-headerNaviRole .ec-cartNaviNull .ec-cartNaviNull__message {
  font-size: 14px;
}
.ec-headerNaviRole .headerNaviRole__spMenu .ec-headerNav__item img.icon_header {
  display: inline-block;
  max-width: 30px;
}
/* ドロワーメニュー */
.ec-drawerRole {
  width: 300px;
  padding-top: 0px;
  background-color: #E63282;
}
@media only screen and (max-width: 767px) {
  .ec-drawerRole {
    width: 100%;
    padding-top: 93.5px;
    overflow-y: scroll;
    width: 0px;
    height: 100vh;
    transform: translateX(-300px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    transition: z-index 0ms 1ms;
  }
}
.ec-drawerRole.is_active {
  display: block;
  width: 500px;
  transform: translateX(0);
  transition: all 0.3s;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .ec-drawerRole.is_active {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .ec-drawerRole.is_active {
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.ec-drawerRole.is_active .ec-drawerRoleInner {
  background-color: rgb(230, 50, 130);
  z-index: 1000;
}
@media only screen and (min-width: 768px) {
  .ec-drawerRole.is_active .ec-drawerRoleInner {
    position: absolute;
    box-sizing: border-box;
    width: 80vw;
    max-width: 1100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    opacity: 0;
    animation: fadeIn 0.4s ease-in forwards;
    border: 1px solid #bbb;
  }
}
.ec-drawerRole.is_active .ec-drawerRoleInner div:nth-child(1) {
  margin-bottom: 0; /* 最初の要素と2つ目の要素の間のギャップを0に */
}
.ec-drawerRole.is_active .ec-drawerRoleInner div:nth-child(2) {
  margin-bottom: 0;
  flex-grow: 0;
  border: 0px;
}
.ec-drawerRole .ec-itemNav__nav li {
  float: left;
  width: 100%;
}
.ec-drawerRole .ec-itemNav__nav li ul li {
  width: 100%;
  min-width: 350px;
}
.ec-drawerRole .ec-headerLinkArea {
  width: 100%;
  max-height: 300px;
  background: #E63282;
}
@media only screen and (min-width: 768px) {
  .ec-drawerRole .ec-headerLinkArea .ec-headerLink__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .ec-drawerRole .ec-headerLinkArea .ec-headerLink__list .ec-headerLink__item {
    border-bottom: 1px solid #ffbbbb;
  }
  .ec-drawerRole .ec-headerLinkArea .ec-headerLink__list .ec-headerLink__item:nth-child(1) {
    border-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .ec-drawerRole .ec-headerLinkArea .ec-headerLink__list .ec-headerLink__item {
    border: 0;
  }
}
@media only screen and (max-width: 767px) {
  .ec-drawerRole .ec-headerLinkArea .ec-headerLink__list .headerLink__itemCart {
    margin-top: 0;
    border-top: 0;
  }
}
.ec-drawerRole .ec-headerSearch {
  padding: 18px 20px 18px 20px;
  background: #EBEBEB;
  color: #636378;
}
@media only screen and (min-width: 768px) {
  .ec-drawerRole .ec-headerSearch {
    width: 100%;
    height: 76px;
    padding: 20px 40% 20px 12px;
    background-color: #fff;
  }
}
.ec-drawerRole .ec-headerSearch .ec-headerSearch__category .ec-select select {
  max-width: 100%;
  padding-left: 2em;
}

.ec-drawerRoleClose {
  position: absolute;
  z-index: 10001;
  right: 13px;
  left: auto;
  width: 52px;
  height: 52px;
  border-radius: 25%;
  font-size: 28px;
  color: #E63282;
}
.ec-drawerRoleClose.is_active {
  display: block;
}
@media only screen and (max-width: 767px) {
  .ec-drawerRoleClose.is_active {
    top: 24px;
    left: auto;
    right: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .ec-headerNavSP {
    display: none;
  }
  .ec-headerNaviRole {
    display: block;
    position: fixed;
    z-index: 10;
    margin: 0px auto 0 auto;
    padding: 10px 4px 10px 6px;
    background-color: white;
    box-shadow: 1px 1px 2px 2px rgba(160, 160, 160, 0.1);
  }
  .ec-headerNaviRole .ec-headerNaviRole__left {
    width: 100%;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftSubTitle {
    position: relative;
    top: -2px;
    width: 100%;
    font-size: 9px;
    font-weight: 600;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftSitelogo {
    width: 35%;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftSitelogo img {
    max-width: 160px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox {
    display: flex;
    align-items: center;
    margin-top: 2px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu {
    width: 65%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerNav__item {
    display: block;
    width: 60px;
    height: 50px;
    text-align: center;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerNav__item .ec-headerNav__itemLink {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: #5D5D5D;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerRole__mypage {
    padding: 2px 0 2px 0;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerRole__mypage .ec-headerNav .ec-headerNav__item {
    width: 60px;
    height: 40px;
    text-align: center;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerRole__mypage .ec-headerNav .ec-headerNav__item a {
    display: block;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerRole__mypage .ec-headerNav .ec-headerNav__item a img {
    display: inline-block;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-cartNavi {
    padding: 8px 0 0 5px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-cartNavi .ec-headerNav__item .icon_headerCart {
    height: 30px;
    width: auto;
    max-width: 40px;
    margin-bottom: 2px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-cartNavi .ec-headerNav__item .ec-headerNav__itemLink {
    position: relative;
    top: 1px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-cartNavi .ec-headerNav__item .ec-cartNavi__badge {
    position: relative;
    left: -2px;
    top: -44px;
    background-color: #F38D30;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerRole__menuChoco {
    padding: 8px 0 2px 10px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerRole__menuChoco .globalMneu {
    display: block;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerRole__menuChoco .globalMneu img {
    display: inline-block;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftMainbox .headerNaviRole__spMenu .ec-headerRole__menuChoco .globalMneu .ec-headerNav__itemLink {
    position: relative;
    top: 3px;
  }
}
@media only screen and (min-width: 768px) {
  .ec-pageHeader h1 {
    margin: 10px 16px 36px;
    padding: 1.4rem 0 0.7rem;
    border-bottom: 2px solid #E63282;
    font-size: 1.8rem;
    color: #5D5D5D;
  }
  .ec-headerNaviRole {
    padding-bottom: 0px;
    height: 140px;
  }
  .ec-cartNavi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0 0 0;
    width: auto;
    min-width: 120px;
    height: 44px;
    background: #FFF;
  }
  .ec-headerNaviRole {
    width: 100%;
    max-width: 1130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__leftSubTitle {
    position: relative;
    top: -10px;
    font-weight: 600;
    color: #6f6f6f;
  }
  .ec-headerNaviRole .ec-headerNaviRole__left .headerNaviRole__spMenu {
    display: none;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right {
    width: 66.6666666667%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    text-align: right;
    margin-top: 16px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow {
    width: 100%;
    min-height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    text-align: right;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow .ec-headerNav__item {
    margin-left: 2rem;
    font-weight: 600;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow .ec-headerNav__item img.icon_header {
    margin-right: 5px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow .ec-headerNav__item a {
    display: inline-block;
    color: #5D5D5D;
    vertical-align: middle;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow .ec-headerNav__item a.ec-blockBtn--action {
    color: white;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow .ec-headerNav__item .ec-headerNav__itemLink {
    display: inline-block;
    margin-top: 5px;
    vertical-align: middle;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow .ec-headerNav__item .ec-headerNav .ec-headerNav__itemLink {
    margin-right: 5px;
    font-size: 15px;
    color: #5D5D5D;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow .ec-headerNav__item.ec-headerRole__cart {
    margin-left: 0.1rem;
    margin-right: 0.15rem;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow .ec-headerNav__item.ec-headerRole__cart .ec-headerNav__itemLink {
    color: #5D5D5D;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow:nth-child(1) .ec-headerNav__item {
    font-size: 15px;
  }
  .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNaviRole__rightRow:nth-child(2) .ec-headerNav__item {
    font-size: 15px;
  }
  .ec-headerNaviRole img.icon_header {
    width: 25px;
    max-width: 30px;
  }
  .ec-headerNaviRole img.icon_header.icon_headerCart {
    width: 32px;
  }
  .ec-headerNaviRole .ec-cartNavi .ec-cartNavi__badge {
    text-align: center;
  }
  .ec-headerNaviRole .ec-cartNavi.is-active .ec-cartNavi__badge {
    display: inline-block;
  }
  .ec-headerNaviRole .ec-cartNavi .ec-cartNaviNull {
    margin-top: 10px;
    min-width: 350px;
    max-width: 350px;
  }
  .ec-headerNaviRole .ec-cartNaviIsset {
    top: 0px;
    margin-top: 0px;
    min-width: 440px;
    max-width: 440px;
  }
  .ec-headerNaviRole .ec-cartNaviIsset .ec-cartNaviIsset__cart {
    font-weight: normal;
    white-space: wrap;
    overflow-wrap: break-word;
    padding-bottom: 1em;
  }
  .ec-headerNaviRole .ec-cartNaviIsset .ec-cartNaviIsset__cart .ec-cartNaviIsset__cartImage {
    width: 30%;
  }
  .ec-headerNaviRole .ec-cartNaviIsset .ec-cartNaviIsset__cart .ec-cartNaviIsset__cartContent {
    width: 69%;
    white-space: wrap;
  }
  .ec-headerNaviRole .ec-cartNaviIsset .ec-cartNaviIsset__cart .ec-cartNaviIsset__cartContent .ec-cartNaviIsset__cartContentTitle {
    font-size: 15px;
  }
  .headerNaviRole__leftSubTitle {
    font-size: 11px;
  }
  .headerNaviRole__leftSitelogo img {
    max-width: 200px;
  }
}
.ec-headerGlobalNavi {
  width: 100%;
  background-color: #E63282;
}
@media only screen and (max-width: 991px) {
  .ec-headerGlobalNavi {
    display: none;
  }
}
.ec-headerGlobalNavi .ec-headerGlobalNavi__wrapper {
  max-width: 1200px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  text-align: center;
}
.ec-headerGlobalNavi .ec-headerGlobalNavi__wrapper .ec-headerGlobalNavi__item {
  width: 180px;
  border-left: 1px solid white;
  font-weight: bold;
}
.ec-headerGlobalNavi .ec-headerGlobalNavi__wrapper .ec-headerGlobalNavi__item:last-child {
  border-right: 1px solid white;
}
.ec-headerGlobalNavi .ec-headerGlobalNavi__wrapper .ec-headerGlobalNavi__item a {
  display: inline-block;
  margin: 4px auto 2px auto;
  color: white;
  font-size: 16px;
}
.ec-headerGlobalNavi .ec-headerGlobalNavi__wrapper .ec-headerGlobalNavi__item a:hover {
  color: yellow;
}

/* カテゴリナビ */
@media only screen and (min-width: 768px) {
  .ec-headerCategoryArea {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .ec-headerCategoryArea .ec-itemNav {
    margin: 0;
    padding: 0;
  }
}
.ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4列に分ける */
    height: 40vh;
  }
}
@media only screen and (min-width: 768px) {
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li {
    min-width: 20%;
    padding-bottom: 2rem;
    background-color: #fff;
  }
}
@media only screen and (min-width: 768px) {
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li.ca .categoryName1st {
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    padding-left: 18px;
  }
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li.ca:hover .categoryName1st:hover {
    background-color: #ffbbbb;
  }
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li.ca:hover .ca2 {
    background-color: #fff;
  }
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li a {
    background-color: #fff;
    text-align: left;
    border: 0;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li a {
    padding: 0;
    background-color: #fff;
  }
}
.ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul {
    position: static;
    width: 100%;
  }
}
.ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul li {
  width: 100%;
  color: #5D5D5D;
}
@media only screen and (min-width: 768px) {
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul li {
    overflow: visible;
    height: auto;
    min-width: inherit;
    z-index: inherit;
  }
}
.ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul li.ca2 {
  background-color: #fff;
}
.ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul li.ca2:hover {
  background-color: #fff;
}
.ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul li.ca2 > a:hover {
  background-color: #ffbbbb;
}
.ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul li a {
  color: #5D5D5D;
}
@media only screen and (min-width: 768px) {
  .ec-headerCategoryArea .ec-itemNav .ec-itemNav__nav > li ul li a {
    /*
    margin: 7px 0px 7px 24px;
    padding: 0;
    */
    padding: 7px 0px 7px 24px;
    border: 0;
    background: none;
    font-size: 0.95rem;
  }
}

/* カテゴリナビ（PC） */
.ec-categoryNaviRole .ec-itemNav .ec-itemNav__nav > li {
  min-width: 210px;
  border-bottom: 2px solid #ffff33;
  margin: 10px 10px 20px 10px;
}
.ec-categoryNaviRole .ec-itemNav .ec-itemNav__nav > li > a {
  padding: 14px 16px 10px 16px;
}
.ec-categoryNaviRole .ec-itemNav .ec-itemNav__nav > li ul {
  top: calc(100% + 2px);
  min-width: 300px;
  font-size: 0.85em;
}
.ec-categoryNaviRole .ec-itemNav .ec-itemNav__nav > li ul li > a {
  background-color: #ffffdd;
  color: #5D5D5D;
}

/* セクション */
.ec-secHeadingTitle h2 {
  width: 250px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #E63282;
  color: #5D5D5D;
  font-weight: 600;
  text-align: center;
}

/* モーダル */
.ec-modal .ec-modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 120, 160, 0.1);
  width: 100%;
  height: 100%;
}
.ec-modal .ec-modal-wrap {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 20px;
  padding: 40px 5px;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 5px;
}

/* ブロック */
.ec-layoutRole__mainTop {
  margin: 1rem auto 2rem auto;
}

/* トップページ */
.front_page .ec-layoutRole .ec-layoutRole__contents {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  .front_page .ec-layoutRole .ec-layoutRole__contents {
    margin-top: 91px;
  }
}
.front_page .ec-layoutRole .ec-layoutRole__contents .ec-layoutRole__main {
  margin-top: 0;
}
.front_page .ec-layoutRole .ec-layoutRole__contents .ec-layoutRole__main .ec-layoutRole__mainTop {
  margin: 0 auto;
}
.front_page .ec-topicRole {
  width: 100%;
  margin: 0 auto;
  padding: 0 0;
  background-color: #FFF;
}
@media only screen and (min-width: 768px) {
  .front_page .ec-topicRole {
    padding: 0 0;
  }
}
.front_page .ec-topicRole .ec-frontHeroRole {
  width: 100%;
  max-width: 2000px;
}
.front_page .ec-topicRole .ec-frontHeroRole .main_heroimage {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
.front_page .ec-topicRole .ec-frontHeroRole .main_heroimage img {
  width: 100%;
}
.front_page .ec-topicRole .ec-role {
  margin-top: 2.5rem;
  background-color: #FFF;
}
@media only screen and (max-width: 767px) {
  .front_page .ec-topicRole .ec-role {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .front_page .ec-topicRole .ec-topicRole__list .ec-topicRole__listItem {
    margin: 0 auto 1rem auto;
    max-width: 350px;
    text-align: center;
  }
}
.front_page .ec-role .ec-newsRole {
  margin: 30px 0 80px 0;
  padding: 30px 0 50px 0;
  background-color: #F8F8F8;
}
.front_page .ec-role .ec-newsRole .ec-newsRole__news {
  width: 100%;
  max-width: 1500px;
  /*border: 16px solid #F8F8F8;*/
  padding: 0px 30px;
  background-color: #F8F8F8;
}
.front_page .ec-role .ec-newsRole .ec-newsRole__news .ec-newsRole__newsItem {
  max-width: 731px;
  margin: 0 auto;
  color: #222;
  font-weight: bold;
}
.front_page .ec-role .ec-newsRole .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsDate {
  font-size: 0.975rem;
}
.front_page .ec-role .ec-newsRole .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsColumn {
  font-size: 1rem;
}
.front_page .ec-role .ec-newsRole .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsColumn .ec-newsRole__newsTitle {
  display: inline-block;
  margin-bottom: 10px;
  width: 90%;
  font-size: 1rem;
  font-weight: bold;
  color: #222233;
  line-height: 1.8;
}
.front_page .ec-role .ec-newsRole .ec-newsRole__newsCloseBtn {
  background-color: #E63282;
}
.front_page .ec-role .ec-newsRole .ec-newsRole__newsCloseBtn::before {
  background-color: #E63282;
}
@media only screen and (min-width: 768px) {
  .front_page .ec-role.ec-role-w1500 {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1500px;
  }
  .front_page .ec-role.ec-role-w1500 .ec-newsRole__news {
    width: 100%;
    max-width: 1500px;
    /*border: 16px solid #F8F8F8;*/
    padding: 0px 30px;
    background-color: #F8F8F8;
  }
  .front_page .ec-role.ec-role-w1500 .ec-newsRole__news .ec-newsRole__newsItem {
    max-width: 731px;
    margin: 0 auto;
    color: #222233;
  }
  .front_page .ec-role.ec-role-w1500 .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsDescription {
    margin: 0px 0 15px;
    padding: 0 1rem;
  }
  .front_page .ec-role.ec-role-w1500 .ec-newsRole__news .ec-newsRole__newsItem.is_active .ec-newsRole__newsDescription {
    margin: 0px 0 15px;
    padding: 0 1rem;
  }
  .front_page .ec-newsRole {
    margin: 30px 0 60px 0;
    padding: 50px 0 40px 0;
  }
  .front_page .ec-newsRole .ec-newsRole__newsDate {
    display: inline-block;
    margin: 0;
    min-width: 120px;
    line-height: 1.8;
  }
}
.front_page .slick-slider {
  margin-bottom: 30px;
}
.front_page .slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
.front_page .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.front_page .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.front_page .slick-dots li button:hover,
.front_page .slick-dots li button:focus {
  outline: none;
}
.front_page .slick-dots li button:hover:before,
.front_page .slick-dots li button:focus:before {
  opacity: 1;
}
.front_page .slick-dots li button:before {
  content: " ";
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  text-align: center;
  opacity: 0.25;
  background-color: black;
  border-radius: 50%;
}
.front_page .slick-dots li.slick-active button:before {
  opacity: 0.75;
  background-color: black;
}
.front_page .slick-dots li button.thumbnail img {
  width: 0;
  height: 0;
}

/* mypage */
.mypage .ec-layoutRole .ec-layoutRole__contents .ec-layoutRole__main {
  margin: 1rem auto 0 auto;
  width: 100%;
  max-width: 1130px;
}
@media only screen and (max-width: 767px) {
  .mypage .ec-layoutRole .ec-layoutRole__contents .ec-layoutRole__main {
    margin-top: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mypage .ec-layoutRole .ec-layoutRole__contents .ec-layoutRole__main .ec-mypageRole .ec-pageHeader h1 {
    border-top: 0;
  }
}

/* フッター */
.ec-footerAboveRole {
  border-top: 0px;
  margin-top: 60px;
  padding: 45px 0;
  background: #FCE6F1;
  color: #222233;
}
@media only screen and (min-width: 992px) {
  .ec-footerAboveRole {
    height: 450px;
  }
}
.ec-footerAboveRole .ec-footerAboveRole__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  text-align: center;
}
.ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item {
  width: 33.333%;
}
@media only screen and (max-width: 767px) {
  .ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item {
    width: 100%;
  }
}
.ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item .ec-footerAboveRole__itemMenu {
  font-size: 20px;
  color: #333344;
  font-weight: bold;
  margin-bottom: 15px;
}
.ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item .ec-footerAboveRole__itemMenu span {
  display: inline-block;
  width: 250px;
  padding-bottom: 3px;
  border-bottom: 2px solid #E63282;
}
.ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item .ec-footerAboveRole__itemText .ec-footerAboveRole__itemTextInner {
  width: 260px;
  min-height: 250px;
  margin: 0 auto;
}
.ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item .ec-footerAboveRole__itemText .ec-footerAboveRole__itemTextInner p {
  line-height: 1.7;
  padding-left: 0.8em;
  padding-right: 0.4em;
  text-align: left;
  color: #333344;
}
.ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item .ec-footerAboveRole__itemText .ec-footerAboveRole__itemTextInner .ec-footerAboveRole__freeShipping {
  font-weight: bold;
  font-size: 1.4em;
}
.ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item .ec-footerAboveRole__itemText .ec-footerAboveRole__itemTextInner .fw-b {
  display: inline-block;
  margin-top: 0.5em;
  margin-bottom: 0.3em;
  position: relative;
  left: -0.3em;
}
.ec-footerAboveRole .ec-footerAboveRole__inner .ec-footerAboveRole__item .ec-footerAboveRole__itemText .ec-footerAboveRole__itemTextInner .ec-footerAboveRole__itemCards img {
  width: auto;
  height: 30px;
  margin-left: 2px;
}
@media only screen and (max-width: 767px) {
  .ec-footerAboveRole .ec-footerAboveRole__inner {
    display: none;
  }
}
.ec-footerAboveRole .ec-footerAboveRole__innerSp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .ec-footerAboveRole .ec-footerAboveRole__innerSp {
    display: block;
  }
  .ec-footerAboveRole .ec-footerAboveRole__innerSp a {
    display: block;
    padding: 15px 0;
    font-size: 17px;
    font-weight: bold;
    color: #525263;
    text-align: center;
    text-decoration: none;
    border: 0;
  }
}
@media only screen and (max-width: 767px) {
  .ec-footerAboveRole {
    padding: 10px 0;
  }
}

.ec-footerRole {
  border-top: 0px;
  margin-top: 0px;
  background: #E63282;
  color: white;
}
.ec-footerRole .ec-footerRole__inner {
  text-align: left;
}
.ec-footerRole .ec-footerRole__inner .ec-footerNavi {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .ec-footerRole .ec-footerRole__inner .ec-footerNavi {
    text-align: left;
    padding-left: 100px;
  }
}
.ec-footerRole .ec-footerRole__inner .ec-footerNavi .ec-footerNavi__link {
  line-height: 1.8;
  border-left: 0px solid white;
}
@media only screen and (min-width: 768px) {
  .ec-footerRole .ec-footerRole__inner .ec-footerNavi .ec-footerNavi__link {
    text-align: left;
    min-width: 240px;
    margin-bottom: 0.75em;
  }
}
.ec-footerRole .ec-footerRole__inner .ec-footerNavi .ec-footerNavi__link a {
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  border: 0;
}
.ec-footerRole .ec-footerRole__inner .ec-footerTitle {
  padding: 20px 0 10px;
}
.ec-footerRole .ec-footerRole__inner .ec-footerTitle .ec-footerTitle__logo img {
  max-width: 240px;
}
.ec-footerRole .ec-footerRole__inner .ec-footerTitle .ec-footerTitle__copyright {
  font-size: 12px;
  margin-top: 30px;
}

.ec-blockTopBtn {
  display: none;
  position: fixed;
  width: 90px;
  height: 60px;
  right: 30px;
  bottom: 40px;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  line-height: 60px;
  opacity: 0.75;
  background-color: #333;
  border-radius: 5px 5px;
}

/* 商品一覧ページ */
@media only screen and (max-width: 767px) {
  #page_product_list .ec-layoutRole__main {
    max-width: 96%;
    margin: 0 2%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
#page_product_list .ec-layoutRole__main .ec-pageHeader h1 {
  margin: 10px 16px 36px;
  padding: 1.4rem 0 0.7rem;
  border-bottom: 2px solid #E63282;
  font-size: 1.7rem;
  color: #5D5D5D;
}
@media only screen and (max-width: 767px) {
  #page_product_list .ec-layoutRole__main .ec-pageHeader h1 {
    margin: 5px 0px 30px 0px;
    padding: 1.4rem 0 0.7rem;
    border-top: 0px;
    border-bottom: 1px solid #E63282;
    font-size: 1.55rem;
  }
}
@media only screen and (max-width: 767px) {
  #page_product_list .ec-layoutRole__main .ec-shelfRole {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/* 商品一覧 */
.ec-shelfRole .ec-shelfGrid .ec-shelfGrid__item .ec-shelfGrid__item-image {
  border: 1px solid #f3f3f3;
}
@media only screen and (min-width: 768px) {
  .ec-shelfRole .ec-shelfGrid .ec-shelfGrid__item .ec-shelfGrid__item-image {
    min-height: 248.5px;
  }
}
.ec-shelfRole .ec-shelfGrid .ec-shelfGrid__item .ec-shelfGrid__item-name {
  font-weight: bold;
}
.ec-shelfRole .ec-shelfGrid .ec-shelfGrid__item .ec-shelfGrid__item-description_list {
  display: block;
  margin: 0.2em 0.4em;
  font-size: 0.8em;
  color: #86869C;
}
.ec-shelfRole .ec-shelfGrid .ec-shelfGrid__item .price02-default {
  text-align: right;
  font-weight: bold;
  color: #E63282;
}

/* 商品一覧 おすすめ */
.ec-shelfRole__recommendProduct {
  margin: 1em auto 3rem auto;
}
.ec-shelfRole__recommendProduct .ec-shelfGrid {
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}
.ec-shelfRole__recommendProduct .ec-shelfGrid .ec-shelfGrid__itemImageWrapper {
  display: inline-block;
  width: 100%;
  text-align: center;
  border: 1px solid #f3f3f3;
}
@media only screen and (min-width: 768px) {
  .ec-shelfRole__recommendProduct .ec-shelfGrid .ec-shelfGrid__itemImageWrapper {
    min-height: 248.5px;
  }
}

/* カート */
.ec-progress .is-complete .ec-progress__number {
  background: #38a1d9;
}
.ec-progress .is-complete .ec-progress__label {
  color: #38a1d9;
}

@media only screen and (max-width: 767px) {
  .ec-cartRole__cart .ec-cartRow .ec-cartRow__img {
    display: block;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .ec-cartRole__cart .ec-cartRow .ec-cartRow__summary {
    display: block;
    width: 100%;
  }
}
.ec-cartRole__cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name {
  word-break: break-all;
}
.ec-cartRole__cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name .ec-cartRow__classCategories {
  font-size: 0.95em;
}
.ec-cartRole__cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name .ec-cartRow__CartItemOptions {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.4;
}
.ec-cartRole__cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name .ec-cartRow__CartItemOptions .ec-cartRow__CartItemOption {
  display: block;
}

/* オプション */
.option_description .modal-body h3 {
  margin: 0;
  background: #efefef;
  padding: 0.25rem 0.2rem;
  font-size: 20px;
}
.option_description .modal-body img {
  padding-left: 0.5rem;
  border: 1px solid #f3f3f3;
}

/* ご注文手続き */
.ec-orderRole .ec-orderRole__detail .ec-orderDelivery__OrderItemOptions {
  font-size: 0.9em;
  margin: 0.25em auto;
}

.ec-totalBox .ec-totalBox__btn .ec-blockBtn--action {
  font-size: 1.2em;
  font-weight: bold;
}

/* その他のページ */
.other_page .ec-pageHeader h1 {
  margin: 10px 16px 36px;
  padding: 1.4rem 0 0.7rem;
  border-bottom: 2px solid #E63282;
  font-size: 1.7rem;
  color: #5D5D5D;
}
@media only screen and (max-width: 767px) {
  .other_page .ec-pageHeader h1 {
    margin: 5px 0px 30px 0px;
    padding: 1.4rem 0 0.7rem;
    border-top: 0px;
    border-bottom: 1px solid #E63282;
    font-size: 1.55rem;
  }
}
@media only screen and (max-width: 767px) {
  .other_page .ec-layoutRole__main {
    margin-top: 0px;
  }
}
.other_page .ec-off1Grid .ec-off1Grid__cell {
  width: 90%;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .other_page .ec-off1Grid .ec-off1Grid__cell {
    width: 100%;
    margin-left: 0%;
    padding: 0 0.5% 0 1%;
  }
}
.other_page .ec-off1Grid .ec-off1Grid__cell h2 {
  margin: 1.5rem 0 2.25rem 0;
  padding: 0.6rem 0.45rem 0.6rem 0.95rem;
  width: calc(100% + 2rem);
  position: relative;
  left: -1rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  background-color: #E63282;
}
@media only screen and (max-width: 767px) {
  .other_page .ec-off1Grid .ec-off1Grid__cell h2 {
    margin: 1.5rem 0 1.5rem 0;
    padding: 0.6rem 0.45rem 0.6rem 0.25rem;
    width: 102%;
    left: -1%;
    font-size: 1.1rem;
  }
}
.other_page .ec-off1Grid .ec-off1Grid__cell h2:nth-child(n+2) {
  margin-top: 2.5rem;
}
.other_page .ec-off1Grid .ec-off1Grid__cell h3 {
  margin: 30px auto 25px auto;
  padding-bottom: 0.2em;
  border-bottom: 0.6px solid #ffbbbb;
  color: #E63282;
  font-size: 1.25rem;
  font-weight: bold;
}
.other_page .ec-off1Grid .ec-off1Grid__cell h4 {
  margin: 25px auto 15px auto;
  font-weight: bold;
  font-size: 1.15rem;
}
.other_page .ec-off1Grid .ec-off1Grid__cell .span-h4 {
  margin: 25px auto 15px auto;
  color: #333344;
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 160%;
}
.other_page .ec-off1Grid .ec-off1Grid__cell p {
  padding: 0.5rem 0 0.65rem 0;
}
.other_page .ec-off1Grid .ec-off1Grid__cell li {
  padding: 0.6rem 0 0.45rem 0;
}
.other_page .ec-off1Grid .ec-off1Grid__cell .ec-off1Grid__itemCards {
  margin-left: 1em;
}
.other_page .ec-off1Grid .ec-off1Grid__cell .ec-off1Grid__itemCards img {
  width: auto;
  height: 30px;
  margin-left: 2px;
}/*# sourceMappingURL=style_agf.css.map */