@charset "UTF-8";
.ec-debugModeAlert {
  opacity: 0.25;
  display: none;
}

/*-------------------------
  共通パーツ
-------------------------*/
body {
  background-color: white;
}

.siteHeader {
  display: block;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1em 1.5em;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: opacity 1s ease-in, background-color 0.2s linear;
  border-bottom: #004098 solid 1px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .siteHeader {
    padding: 1em;
  }
}
.siteHeader > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.logoWrapper {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  max-height: 4vw;
}
@media screen and (max-width: 768px) {
  .logoWrapper {
    height: 32px;
    max-height: 32px;
  }
}
.logoWrapper > a {
  display: block;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.logoWrapper > a > img {
  width: auto;
  height: 100%;
}
.logoWrapper.deactive a > img {
  transition: filter 0.3s;
  filter: grayscale(100%);
}

.navigationList {
  display: flex;
  font-size: 14px;
  margin-bottom: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .navigationList {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.navigationList > li {
  margin: 0 1em;
  text-transform: capitalize;
  position: relative;
  color: #333;
}
.navigationList > li a {
  text-decoration: none;
  color: inherit;
}
.navigationList > li::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  top: 100%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.25s ease;
  background-color: #004097;
}
@media screen and (max-width: 768px) {
  .navigationList > li::after {
    display: none;
  }
}
.navigationList > li:hover, .navigationList > li.active {
  color: #004097;
}
@media screen and (max-width: 768px) {
  .navigationList > li:hover, .navigationList > li.active {
    color: white;
  }
}
.navigationList > li:hover::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .navigationList > li {
    display: block;
    margin-top: 0.5em;
    margin-left: 0;
    padding: 0;
    background-color: #004098;
    color: white;
    -webkit-backdrop-filter: saturate(150%) blur(20px);
    backdrop-filter: saturate(150%) blur(20px);
    font-size: 1em;
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100%;
    transition: transform 0.25s cubic-bezier(0.6, -0.28, 0.74, 0.05);
    font-weight: 400;
  }
  .navigationList > li:nth-child(1) {
    transition-delay: 0s;
  }
  .navigationList > li:nth-child(2) {
    transition-delay: 0.05s;
  }
  .navigationList > li:nth-child(3) {
    transition-delay: 0.1s;
  }
  .navigationList > li:nth-child(4) {
    transition-delay: 0.15s;
  }
  .navigationList > li:nth-child(5) {
    transition-delay: 0.2s;
  }
  .navigationList > li:nth-child(6) {
    transition-delay: 0.25s;
  }
  .navigationList > li > a {
    display: block;
    width: 100%;
    padding: 1em 1em;
    padding-right: 2em;
    min-width: 33.333vw;
  }
}

.navigationSwitch {
  display: none;
}
@media screen and (max-width: 768px) {
  .navigationSwitch {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .gua {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: #004097;
  }
  .navigationInner {
    display: block;
    position: absolute;
    top: 72px;
    left: 100%;
    z-index: 10000;
    width: 100%;
    height: 100%;
    height: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  header ~ * {
    transition: filter 0.3s ease;
  }
  .navigationButton {
    display: block;
    position: relative;
    z-index: 0;
    width: 50px;
    height: 50px;
  }
  .hamburgerIcon {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 4px;
    border-radius: 2px;
    background: #004097;
    transition: rotate 0.2s, translate 0.2s;
    transition: 0.25s;
  }
  .hamburgerIcon::before, .hamburgerIcon::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 4px;
    border-radius: 2px;
    background: #004097;
    transition: rotate 0.2s, translate 0.2s;
    transition: 0.25s;
    right: 0;
    transform-origin: 50% 50%;
    width: 100%;
    content: "";
  }
  .hamburgerIcon::before {
    top: -200%;
  }
  .hamburgerIcon::after {
    top: 300%;
  }
  #nav-trigger:checked ~ header {
    background-color: transparent;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
  }
  #nav-trigger:checked ~ header .hamburgerIcon {
    background-color: transparent;
  }
  #nav-trigger:checked ~ header .hamburgerIcon::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  #nav-trigger:checked ~ header .hamburgerIcon::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #nav-trigger:checked ~ header li {
    transform: translateX(calc(-100% + 1em));
    transition-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.27);
  }
  #nav-trigger:checked ~ main,
  #nav-trigger:checked ~ footer {
    filter: blur(6px);
    opacity: 0.3;
  }
}
.ec-layoutRole__header {
  padding-bottom: 20px;
}
.ec-layoutRole__header .ec-headerNaviRole {
  background-color: white;
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  .ec-layoutRole__header .ec-headerNaviRole {
    padding: 0.5em 20px;
  }
}
.ec-layoutRole__header .ec-headerNaviRole__logo {
  width: 320px;
  max-width: 46vw;
}

.ec-pageHeader h1,
.ec-pageHeader .h1 {
  text-align: center;
  border-bottom: none;
  border-top: none;
  color: #004097;
}
@media screen and (max-width: 768px) {
  .ec-pageHeader h1,
  .ec-pageHeader .h1 {
    font-size: 24px;
  }
}

.ec-off1Grid__cell .notice {
  padding-bottom: 2em;
}

.ec-footerRole {
  background-color: #004097;
  border-top: none;
}
.ec-footerRole .ec-footerNavi .ec-footerNavi__link a {
  font-size: 1em;
}

[class^=ec-blockBtn],
[class^=ec-inlineBtn] {
  box-sizing: border-box;
  height: unset;
  line-height: 1.2;
  padding: 0.9em 1em;
  border-radius: 1.5em;
  min-width: 5em;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
[class^=ec-blockBtn].--small,
[class^=ec-inlineBtn].--small {
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: 0.875em;
}

.ec-blockBtn--action {
  color: #fff;
  background-color: #de5d50;
  border-color: #de5d50;
}

.breadcrumbs {
  display: flex;
  font-size: 14px;
  color: #555;
  list-style: none;
  padding-left: 20px;
}
.breadcrumbs li:not(:last-child)::after {
  content: ">";
  margin: 0 0.5em;
}
.breadcrumbs li a {
  color: #004097;
}
.breadcrumbs li a:hover {
  text-decoration: underline;
}

.ec-cartNaviIsset {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 0.5em;
  color: white;
  -webkit-backdrop-filter: blur(0.5em);
  backdrop-filter: blur(0.5em);
  padding: 1.25em;
}
@media screen and (max-width: 768px) {
  .ec-cartNaviIsset {
    border-radius: 0.5em 0 0 0.5em;
  }
}
.ec-cartNaviIsset::before {
  border-color: transparent transparent rgba(0, 0, 0, 0.75) transparent;
  top: -10px;
  right: 70px;
}
.ec-cartNaviIsset .ec-cartNaviIsset__cartContentTitle {
  font-size: 1.25em;
}

/*-------------------------
  汎用クラス
-------------------------*/
.paren::before {
  content: "（";
  margin-left: -0.5em;
}
.paren::after {
  content: "）";
  margin-right: -0.5em;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

.padd1em {
  padding: 1em;
}

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

.ws-nowrap {
  white-space: nowrap;
}

/*-------------------------
  トップページ
-------------------------*/
.ec-secHeading__ja {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

.ec-headerTitle .ec-headerTitle__title a {
  margin-bottom: 0;
}

.shop_note {
  display: block;
  text-align: center;
  margin: 1em 0;
  font-size: 1em;
  line-height: 2;
  padding: 0.75em 1em;
  border: solid 1px #004097;
  color: #004097;
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  .shop_note {
    text-align: justify;
  }
  .shop_note br {
    display: none;
  }
}

.hwefepmmpmp {
  display: flex;
  list-style: none;
  gap: 0.5em;
  justify-content: center;
  padding-left: 0;
  font-size: 0.875em;
  position: sticky;
  top: 80px;
  margin-top: 1em;
  z-index: 1;
}
.hwefepmmpmp li {
  background-color: #ddd;
  text-align: center;
  border-radius: 2em;
}
.hwefepmmpmp li a {
  display: block;
  padding: 0.5em;
  min-width: 4em;
}

.ec-allItemRole {
  padding: 32px 0;
}
@media screen and (max-width: 768px) {
  .ec-allItemRole {
    padding-top: 1em;
  }
}
.ec-allItemRole .ec-allItemRole__list {
  display: block;
}
.ec-allItemRole .ec-allItemRole__listItem {
  position: relative;
  display: flex;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 48px;
  scroll-margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .ec-allItemRole .ec-allItemRole__listItem {
    display: block;
    margin-top: 32px;
  }
}
.ec-allItemRole .ec-allItemRole__listItem:hover::after {
  /* border-color: #0056b3; */
}
.ec-allItemRole .ec-allItemRole__listItem::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 3px #eaf4ff;
  content: "";
  pointer-events: none;
  /* transition: border 0.25s; */
  top: 0;
  left: 0;
}
.ec-allItemRole .ec-allItemRole__listItemThumb {
  width: 45%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ec-allItemRole .ec-allItemRole__listItemThumb {
    width: 100%;
  }
}
.ec-allItemRole .ec-allItemRole__listItemThumb > a {
  display: block;
  width: 100%;
  padding-top: 75%;
}
.ec-allItemRole .ec-allItemRole__listItemThumb > a > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.ec-allItemRole .ec-allItemRole__listItemInfo {
  position: relative;
  flex: 1;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .ec-allItemRole .ec-allItemRole__listItemInfo {
    position: relative;
    flex: 1;
    padding: 26px;
  }
}
.ec-allItemRole .ec-allItemRole__listItemTitle {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: bold;
  color: #004097;
}
.ec-allItemRole .ec-allItemRole__listItemTitle > a {
  color: inherit;
}
.ec-allItemRole .ec-allItemRole__listItemPrice {
  margin-bottom: 16px;
  font-weight: bold;
  color: #de5d50;
}
.ec-allItemRole .ec-allItemRole__listItemPrice .ec-price__price {
  white-space: nowrap;
  padding: 0;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .ec-allItemRole .ec-allItemRole__listItemPrice .ec-price__price {
    font-size: 22px;
  }
}
.ec-allItemRole .ec-allItemRole__listItemPrice .ec-price__postage {
  font-weight: bold;
}
.ec-allItemRole .ec-allItemRole__listItemDetails {
  font-size: 16px;
  line-height: 1.5;
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  .ec-allItemRole .ec-allItemRole__listItemDetails {
    font-size: 14px;
  }
}
.ec-allItemRole .ec-allItemRole__listItemLink {
  flex: 1;
}

/*-------------------------
  商品詳細ページ
-------------------------*/
.ec-grid2 {
  gap: 60px;
}

.ec-modal .ec-role {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.ec-sliderItemRole {
  position: sticky;
  top: 80px;
  padding-left: 0;
  padding-right: 0;
}
.ec-sliderItemRole .slide-item {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background-color: #eaf4ff;
}
.ec-sliderItemRole .slide-item > a,
.ec-sliderItemRole .slide-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  top: 0;
  left: 0;
}
.ec-sliderItemRole .slide-item > a::after {
  position: absolute;
  bottom: 1em;
  right: 1em;
  content: "";
  font-size: 19px;
  width: 1em;
  height: 1em;
  background-image: url(../img/product/zoom.svg);
}
.ec-sliderItemRole .item_nav {
  gap: 20px;
}
.ec-sliderItemRole .item_nav .slideThumb {
  width: calc((100% - 40px) / 3);
}
.ec-sliderItemRole .item_nav .slideThumb > img {
  width: 100%;
}

.ec-productRole {
  color: #333;
}
.ec-productRole .ec-productRole__title {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .ec-productRole .ec-productRole__title {
    display: flex;
    align-items: flex-end;
    gap: 1em;
  }
}
.ec-productRole .ec-productRole__title .ec-productRole__productLogo > img {
  height: 72px;
  width: auto;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .ec-productRole .ec-productRole__title .ec-productRole__productLogo > img {
    height: 50px;
  }
}
.ec-productRole .ec-productRole__title .ec-headingTitle {
  font-size: 40px;
  color: inherit;
  white-space: nowrap;
}
.ec-productRole .ec-productRole__tags {
  border-bottom: none;
  padding-bottom: 0;
  margin: 0.5em 0;
}
.ec-productRole .ec-productRole__tags .ec-productRole__tag {
  font-size: 1em;
  padding: 0.25em;
  color: #333;
}
.ec-productRole .ec-productRole__priceRegularPrice {
  line-height: 2;
}
.ec-productRole .ec-productRole__price {
  border-bottom: none;
  padding: 0;
  font-size: 1em;
}
.ec-productRole .ec-productRole__price .ec-price .ec-price__price {
  font-size: 32px;
  padding: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .ec-productRole .ec-productRole__price .ec-price .ec-price__price {
    font-size: 24px;
  }
}
.ec-productRole .ec-productRole__price .ec-price .ec-price__postage {
  font-weight: bold;
}
.ec-productRole .ec-productRole__addCart {
  display: flex;
  align-items: center;
  gap: 0.75em;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1em;
}
.ec-productRole .ec-productRole__addCart .ec-productRole__actions {
  padding: 0;
}
.ec-productRole .ec-productRole__addCart .ec-numberInput {
  vertical-align: middle;
}
.ec-productRole .ec-productRole__addCart .ec-numberInput > input {
  margin-bottom: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ec-productRole .ec-productRole__addCart .ec-numberInput > input {
    max-width: 70px;
  }
}
.ec-productRole .ec-productRole__addCart .ec-productRole__btn {
  min-width: unset;
  flex: 1;
  width: unset;
  margin-bottom: 0;
}
.ec-productRole .ec-productRole__proviso {
  margin: 1em 0;
  color: #004097;
  line-height: 2;
}
.ec-productRole .ec-productRole__note {
  display: block;
  text-align: center;
  margin: 1em 0;
  font-size: 0.9em;
  line-height: 2;
  padding: 0.75em 1em;
  border: solid 1px #004097;
  color: #004097;
  font-size: 1em;
  text-align: justify;
}
.ec-productRole .ec-productRole__details dl {
  font-size: 16px;
}
.ec-productRole .ec-productRole__details dl dt {
  margin-top: 48px;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #0056b3;
  margin-bottom: 0.5em;
}
.ec-productRole .ec-productRole__details dl .notice {
  text-align: center;
}
.ec-productRole .ec-productRole__details dl .cautions {
  padding-left: 1em;
  text-indent: -1em;
}

.ec-modal .ec-modal-wrap {
  border-color: transparent;
  border-radius: 5px;
}

/*-------------------------
  カート
-------------------------*/
.ec-cartTable {
  border-collapse: separate;
  border-spacing: 2px 0;
}
.ec-cartTable .ec-cartHeader .ec-cartHeader__label {
  padding: 0.5em 1em;
  white-space: nowrap;
}

.ec-cartRow > li {
  padding: 1em;
}

.ec-cartNaviIsset {
  min-width: 300px;
  max-width: 300px;
}
.ec-cartNaviIsset .ec-cartNaviIsset__cartContent > * {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .ec-cartRole .ec-cartRole {
    padding-left: 0;
    padding-right: 0;
  }
}
.ec-cartRole .ec-cartRole__actions {
  width: 25%;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media screen and (max-width: 768px) {
  .ec-cartRole .ec-cartRole__actions {
    width: 100%;
  }
}
.ec-cartRole .ec-cartRole__total {
  line-height: 1.75;
}
.ec-cartRole .ec-cartRole__totalText {
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .ec-cartRole .ec-cartRole__totalText {
    font-size: 1em;
    padding: 1em 0;
  }
}

.ec-totalBox .ec-totalBox__btn {
  margin-top: 1em;
}

.ec-progress {
  display: flex;
  width: 100%;
  max-width: 840px;
  position: relative;
  border-radius: 3px;
  margin: 0.5em auto 2em;
  padding: 0;
  overflow: hidden;
}
.ec-progress .ec-progress__item {
  flex: 1;
  padding: 1em;
  text-align: center;
  background-color: #8d8d92;
  display: block;
  z-index: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.ec-progress .ec-progress__item:not(:first-child) {
  padding-left: calc(1em + 22px);
}
.ec-progress .ec-progress__item:last-child {
  padding-left: calc(1em + 11px);
}
@media screen and (max-width: 768px) {
  .ec-progress .ec-progress__item {
    padding: 0.5em 1em;
    font-weight: normal;
  }
  .ec-progress .ec-progress__item.is-complete {
    width: -moz-fit-content;
    width: fit-content;
  }
  .ec-progress .ec-progress__item.is-complete .ec-progress__number {
    display: block;
  }
  .ec-progress .ec-progress__item:not(.is-complete) {
    flex: 1;
  }
  .ec-progress .ec-progress__item:not(.is-complete) .ec-progress__number {
    display: block;
  }
  .ec-progress .ec-progress__item:not(.is-complete) .ec-progress__label {
    display: none;
  }
  .ec-progress .ec-progress__item:not(:first-child) {
    padding-left: calc(1em + 13px);
  }
  .ec-progress .ec-progress__item:last-child {
    padding-left: calc(1em + 6.5px);
  }
}
.ec-progress .ec-progress__item.is-complete {
  background-color: #0056b3;
}
.ec-progress .ec-progress__item::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  display: block;
  left: 0;
  width: 22px;
  background-color: white;
  z-index: 0;
  -webkit-clip-path: polygon(0% 0, 2px 0, 100% 50%, 2px 100%, 0% 100%);
  clip-path: polygon(0% 0, 2px 0, 100% 50%, 2px 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .ec-progress .ec-progress__item::before {
    width: 15px;
  }
}
.ec-progress .ec-progress__item:first-child::before {
  display: none;
}
.ec-progress .ec-progress__item::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  display: block;
  left: calc(100% - 1px);
  width: 21px;
  background-color: inherit;
  -webkit-clip-path: polygon(0% 0, 1px 0, 100% 50%, 1px 100%, 0% 100%);
  clip-path: polygon(0% 0, 1px 0, 100% 50%, 1px 100%, 0% 100%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ec-progress .ec-progress__item::after {
    width: 14px;
  }
}
.ec-progress .ec-progress__item .ec-progress__number {
  display: none;
  line-height: 1.2;
  background: none;
  width: unset;
  height: unset;
  font-size: 1.2em;
  margin-bottom: 0;
  font-weight: bold;
}
.ec-progress .ec-progress__item .ec-progress__label {
  font-size: inherit;
  line-height: 1.2;
  color: white;
  white-space: nowrap;
}

/*-------------------------
  購入
-------------------------*/
.ec-customerRole .ec-cartRole {
  padding: 0;
}

.ec-orderRole__detail {
  margin-top: -20px;
}
.ec-orderRole__detail > div {
  margin-bottom: 30px;
}

.ec-orderRole__summary {
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .ec-orderRole__summary {
    margin-bottom: 1em;
  }
}
.ec-orderRole__summary .ec-totalBox {
  position: sticky;
  top: 80px;
}

/*-------------------------
  マイページ
-------------------------*/
.ec-navlistRole .active a {
  color: #004097;
}

.ec-navlistRole__item:hover a {
  background: #eaf4ff;
}

.ec-welcomeMsg {
  border-bottom: none;
  font-size: 1.25em;
}

.ec-orderMail__body {
  border: solid 1px gray;
  padding: 1em;
}

/*-------------------------
  固定ページ
-------------------------*/
.ec-borderedDefs dl {
  align-items: center;
}
.ec-borderedDefs dl dt {
  padding-top: 0;
}
.ec-borderedDefs dl dd {
  line-height: 1.75;
}

.pripol .ec-off1Grid p,
.pripol .ec-off1Grid ol {
  line-height: 1.75;
  margin-bottom: 1rem;
}/*# sourceMappingURL=custom.css.map */