/* 
*  
*
* ベーススタイル
*
*
*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

:root {
  /* color */
  --base-color: #222222;
  --base-color-rgb: 34, 34, 34;
  --bg-color: #EFF4F5;
  --line-color: #C8C8C8;
  --line-color-rgb: 200, 200, 200;
  --point-color: #C7000B;
  --gray-color: #E4E9EA;
  --green-color: #06C755;
  /* transition */
  --base-transition: 0.4s ease;
  /* z-index */
  --header-index: 999;
  --modal-index: 9999;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  font-weight: 400;
  font-style: normal;
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

section {
  position: relative;
  padding: 120px 0;
}
.c-section {
  position: relative;
  padding: 80px 0 120px;
}
@media (max-width: 767px) {
  section,
  .c-section {
    padding: 60px 0 80px;
  }
}

.en {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Roboto Condensed", sans-serif;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner.inner_small {
  max-width: 1040px;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

a,
button,
select {
  background-color: transparent;
  color: var(--base-color);
  cursor: pointer;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
  text-decoration: none !important;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--base-color);
  }
}

img, iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p.txt {
  line-height: 2;
}

.ib {
  display: inline-block;
  font-weight: inherit;
}

.bg {
  background-color: var(--bg-color);
}


/* 
*  
*
* コンポーネントパーツ
*
*
*/
/* ------------------------------------------------------------
*  下層メインビジュアル（c-under__mv)
------------------------------------------------------------ */
.c-under__mv {
  padding: 44px 0 0;
}
.c-under__mv_title {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.3;
  position: relative;
  margin: 0;
  padding-bottom: 44px; 
  margin-bottom: 24px;
}
.c-under__mv_title::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--line-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-under__mv_title::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: var(--point-color);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width:767px) {
  .c-under__mv {
    padding: 50px 0 0;
  }
  .c-under__mv_title {
    font-size: 2.4rem;
    padding-bottom: 50px; 
  }
}

/* ------------------------------------------------------------
*  パンくずリスト（breadcrumb)
------------------------------------------------------------ */
.breadcrumb {
  padding: 0;
  margin: 0;
  background-color: transparent;
  overflow-x: auto;
}
.breadcrumb::-webkit-scrollbar {
  background-color: transparent;
  height: 6px;
}
.breadcrumb::-webkit-scrollbar-track {
  background-color: var(--bg-color);
  border-radius: 10px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb ol li {
  flex-shrink: 0;
}
.breadcrumb li:not(:last-of-type) {
  position: relative;
  padding-right: 15px;
  opacity: 0.3;
}
.breadcrumb li:not(:last-of-type)::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: solid 1px var(--base-color);
  border-right: solid 1px var(--base-color);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.breadcrumb li:last-of-type {
  pointer-events: none;
}
.breadcrumb a {
  font-size: 1.2rem;
  color: var(--base-color);
}


/* ------------------------------------------------------------
*  タイトル（c-title）
------------------------------------------------------------ */
/* 01 */
.c-title01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
}
.c-title01 span {
  text-align: center;
}
.c-title01 .en {
  font-size: 4.5rem;
}
.c-title01 .ja {
  color: var(--point-color);
  font-size: 1.4rem;
  font-weight: 600;
}
.c-title01__left {
  align-items: flex-start;
}
@media screen and (max-width:767px) {
  .c-title01 {
    gap: 8px;
    margin-bottom: 40px;
  }
  .c-title01 .en {
    font-size: 3.6rem;
  }
  .c-title01 .ja {
    font-size: 1.2rem;
  }
  .c-title01__left {
  align-items: center;
}
}

/* ------------------------------------------------------------
*  ボタン（c-btn）
------------------------------------------------------------ */
/* 01 */
.c-btn01 {
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
          align-items: center;
  width: 250px;
  height: 60px;
  margin-top: 40px;
  padding: 0 25px;
  overflow: hidden;
  background-color: var(--point-color);
  font-weight: 700;
}
.c-btn01 span {
  color: #fff;
  z-index: 1;
  position: relative;
}
.c-btn01::before {
  -webkit-transform: translateX(-100%);
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
          transform: translateX(-100%);
  background-color: var(--base-color);
  content: "";
  transition: var(--base-transition);
}
.c-btn01::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 1px;
  margin: auto;
  background-color: #fff;
  content: "";
}
.c-btn01__dark {
  border: solid 1px #fff;
  background-color: transparent;
}
.c-btn01__dark::before {
  background-color: #fff;
}
.c-btn01__center {
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  .c-btn01 {
    margin: 60px auto 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01:hover::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .c-btn01__dark:hover {
    color: var(--base-color);
  }
}

/* 02 */
.c-btn02 a {
  width: 260px;
  height: 60px;
  background-color: var(--point-color);
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn02 a:hover {
    opacity: 0.6;
  }
}

/* ------------------------------------------------------------
*  テーブル（c-table）
------------------------------------------------------------ */
.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  padding: 25px 0;
}
.c-table th {
  text-align: left;
  width: 265px;
}
.c-table ul {
  padding-left: 20px;
  list-style: disc;
}
@media screen and (max-width:1024px) {
  .c-table th {
    width: 220px;
  }
}
@media screen and (max-width:767px) {
  .c-table th,
  .c-table td {
    width: 100%;
    display: block;
  }
  .c-table th {
    border-bottom: none;
    padding: 20px 20px 0;
  }
  .c-table td {
    border: none;
    padding: 5px 20px 20px;
  }
  .c-table tr:last-of-type td {
    border-bottom: solid 1px var(--line-color);
  }
}

/* ------------------------------------------------------------
*  背景テキスト
------------------------------------------------------------ */
.bg__txt {
  font-size: 18.0rem;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: -1;
  background: linear-gradient(180deg, rgba(var(--base-color-rgb), 0.6) 0%, rgba(var(--base-color-rgb), 0.4) 60%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
  line-height: 1;
}
@media screen and (max-width:767px) {
  .bg__txt {
    font-size: 11.0rem;
  }
}

/* ------------------------------------------------------------
*  その他のコンテンツ
------------------------------------------------------------ */
.other__title {
  font-size: 2.4rem;
  background-color: var(--bg-color);
  padding: 10px 20px;
  line-height: 1.5;
  border-bottom: solid 4px var(--gray-color);
  margin-bottom: 40px;
}
.other__wrapper + .other__title {
  margin-top: 100px;
}
.other__title_h3 {
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 23px;
  position: relative;
  margin: 60px 0 20px;
}
.other__title_h3.no-space {
  margin-top: 0;
}
.other__title_h3::before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--base-color);
  position: absolute;
  top: 4px;
  left: 0;
}
.other__title_h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 20px 0 8px;
}
.other__wrapper {
  padding: 0 30px;
}
.other__wrapper ul,
.other__wrapper ol {
  padding-left: 20px;
  line-height: 2;
}
.other__wrapper ul {
  list-style: disc;
}
.other__wrapper ol {
  list-style: decimal;
}
.other__wrapper ol ol {
  list-style: lower-alpha;
}
.other__wrap {
  background-color: #f1f1f1;
  padding: 15px 30px;
  margin-top: 10px;
  max-width: max-content;
  width: 100%;
}
.other__table {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 860px;
  margin: 30px auto 0;
  border-top: solid 1px var(--line-color);
}
.other__table dt, .other__table dd {
  border-bottom: solid 1px var(--line-color);
  font-weight: 400;
  padding: 15px 20px;
}
.other__img {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  list-style: none !important;
  padding: 0;
  margin: 20px 0 50px;
}
.other__img_item {
  width: 70px;
}
.other__img_item figure {
  margin: 0;
  text-align: center;
}
.other__img_item figcaption {
  text-transform: uppercase;
  font-size: 12px;
}
.other__wrapper a {
  display: inline-block;
  text-decoration: underline;
  color: var(--blue-color);
}
.other__intro {
  margin-bottom: 100px;
}
@media screen and (max-width:767px) {
  .other__title {
    font-size: 1.8rem;
    padding: 5px 10px;
    margin-bottom: 30px;
  }
  .other__wrapper + .other__title {
    margin-top: 60px;
  }
  .other__title_h3 {
    font-size: 1.6rem;
    padding-left: 20px;
    margin: 40px 0 10px;
  }
  .other__title_h3::before {
    width: 12px;
    height: 12px;
  }
  .other__title_h4 {
    font-size: 1.4rem;
    margin-top: 30px;
  }
  .other__wrapper {
    padding: 0 10px;
  }
  .other__wrapper ul,
  .other__wrapper ol {
    padding-left: 14px;
  }
  .other__table {
    grid-template-columns: 110px 1fr;
    margin: 20px auto 0;
  }
  .other__table dt, .other__table dd {
    padding: 15px 10px;
    place-content: center;  
  }
  .other__intro {
    margin-bottom: 60px;
  }
}

/* 
*  
*
* ブロックレイアウトスタイル
*
*
*/
/* ------------------------------------------------------------
*  ヘッダー（Block/header.twig）
------------------------------------------------------------ */
.header__top {
  background-color: var(--base-color);
  padding: 8px 0;
}
.header__inn {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.header__top_txt {
  font-size: 1.2rem;
  color: #fff;
}
.header__top_link {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__top_item a {
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__top_item.guide a::before {
  content: '';
  background: url(../img/common/icon-guide.svg) no-repeat center center / contain;
  width: 20px;
  height: 20px;
}
.header__top_item.member a::before {
  content: '';
  background: url(../img/common/icon-member.svg) no-repeat center center / contain;
  width: 25px;
  height: 25px;
}
.header__top_item.login a::before {
  content: '';
  background: url(../img/common/icon-login.svg) no-repeat center center / contain;
  width: 25px;
  height: 25px;
}
.header__top_item.cart a {
  gap: 8px;
}
.header .ec-cartNavi__icon {
  position: relative;
}
.header .ec-cartNavi__icon::before {
  content: '';
  background: url(../img/common/icon-cart.svg) no-repeat center center / contain;
  width: 20px;
  height: 20px;
  display: block;
}
.header .ec-cartNavi__badge {
  font-size: 1.0rem;
  font-weight: 600;
  background-color: var(--point-color);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -6px;
  color: #fff;
}
.header__bottom {
  background-color: #fff;
  height: 90px;
}
.header__logo {
  margin: 0;
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__bottom_list {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}
.header__bottom_list a {
  color: var(--base-color);
}
.header__bottom_item:has(.megamenu) {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.megamenu {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  padding: 40px 0;
  background-color: #fff;
  transition: var(--base-transition);
  opacity: 0;
  visibility: hidden;
}
.megamenu__inn {
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.megamenu__hover {
  position: relative;
  padding-right: 20px;
}
.megamenu__hover::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px var(--point-color);
  border-right: solid 2px var(--point-color);
  transform: rotate(135deg);
  position: absolute;
  top: 5px;
  right: 0;
  transition: var(--base-transition);
}
.megamenu__title .title {
  font-size: 2.8rem;
  font-weight: 500;
}
.megamenu__list {
  max-width: 670px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.megamenu__item {
  width: calc((100% / 3) - 10px);
  height: 90px;
}
.megamenu__item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 1.0rem;
}
.megamenu__item .en {
  font-size: 1.8rem;
  line-height: 1;
}
.megamenu__list.maker {
  gap: 30px 15px;
}
.megamenu__list.maker .megamenu__item {
  width: calc((100% / 3) - 10px);
  height: auto;
}
.megamenu__list.maker .megamenu__item a {
  color: var(--base-color);
  padding: 0;
  flex-direction: row;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.megamenu__list.maker .maker__icon {
  width: 44px;
  height: 44px;
}
.megamenu__list.maker .maker__txt {
  gap: 2px;
}
.megamenu__list.maker .maker__txt .en {
  font-size: 1.8rem;
}
.header .sp__nav {
  display: none;
}
.ec-drawerRole {
  position: absolute;
  top: 102px;
  width: 100%;
  height: calc(100vh - 102px);
  transform: translate(0);
  overflow-y: scroll;
  background-color: var(--base-color);
  opacity: 0;
  visibility: hidden;
  transition: var(--base-transition);
}
.ec-drawerRole.is_active {
  opacity: 1;
  visibility: visible;
}
.ec-layoutRole.is_active .ec-headerNavSP .fa-bars::before {
  content: "\f00d";
}
.sp__nav_inn {
  padding: 20px 20px 60px;
  background-color: #fff;
}
.sp__nav_item {
  border-bottom: solid 1px var(--line-color);
}
.sp__nav_item a {
  font-weight: 700;
  padding: 25px 30px 25px 0;
  position: relative;
}
.sp__nav_item a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--point-color);
  border-right: solid 2px var(--point-color);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}
.sp__nav .ec-itemNav__nav {
  padding-bottom: 20px;
  display: none;
}
.sp__nav .ec-headerCategoryArea__heading {
  display: block;
  font-weight: 700;
  padding: 25px 30px 25px 0;
  position: relative;
  width: 100%;
}
.sp__nav .ec-headerCategoryArea__heading::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--point-color);
  border-right: solid 2px var(--point-color);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  transition: var(--base-transition);
}
.sp__nav .ec-headerCategoryArea__heading.open::after {
  transform: rotate(-45deg);
}
.sp__nav .ec-itemNav__nav li {
  width: max-content;
}
.sp__nav .ec-itemNav__nav a {
  border: none;
  color: rgba(var(--base-color-rgb), 0.6);
  font-size: 1.4rem;
  padding: 10px 30px 10px 10px;
}
.sp__nav_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 40px 0 0;
}
.sp__nav_button {
  width: 250px;
  height: 60px;
}
.sp__nav_button a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  color: #fff;
  font-weight: 1.4;
  font-weight: 700;
}
.sp__nav_button.line {
  background-color: var(--green-color);
}
.sp__nav_button.contact {
  background-color: var(--point-color);
}
.sp__nav_button a::before {
  content: '';
  width: 26px;
  height: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.sp__nav_button.line a::before {
  background-image: url(../img/common/icon-line.svg);
}
.sp__nav_button.contact a::before {
  background-image: url(../img/common/icon-mail.svg);
}
.sp__nav_bottom {
  padding: 30px 0 50px;
}
.sp__nav_bottom_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sp__nav_bottom_sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}
.sp__nav_bottom_sub a {
  font-size: 1.2rem;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .header__bottom_item:has(.megamenu):hover .megamenu {
    opacity: 1;
    visibility: visible;
  }
  .header__bottom_item:has(.megamenu):hover .megamenu__hover::after {
    top: 10px;
    transform: rotate(-45deg);
  }
  .megamenu__item a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1024px) {
  .header__top {
    padding: 5px 0;
  }
  .header__top_link,
  .header__bottom_list {
    display: none;
  }
  .header__top_item a {
    font-size: 1.3rem;
    gap: 2px;
  }
  .header__top_txt {
    font-size: 1.0rem;
  }
  .header__logo {
    width: 220px;
  }
  .header__bottom {
    height: 80px;
  }
  .header__bottom .header__inn {
    padding-right: 10px;
  }
  .sp__nav {
    display: flex !important;
    align-items: center;
    gap: 20px;
  }
  .header .ec-cartNavi__icon::before {
    background: var(--base-color);
    mask: url(../img/common/icon-cart.svg) no-repeat center center / contain;
    width: 28px;
    height: 28px;
  }
  .ec-headerNavSP {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    justify-content: center;
    position: relative;
    top: inherit;
    left: inherit;
  }
  .ec-headerNaviRole .fa-bars {
    position: relative;
    top: inherit;
    left: inherit;
    transform: translate(0, 0);
  }
  .ec-headerNavSP .en {
    font-size: 1.2rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .header__top_txt {
    font-size: 0.9rem;
  }
}

/* ------------------------------------------------------------
*  フッター（Block/footer.twig）
------------------------------------------------------------ */
.footer {
  background-color: var(--base-color);
  color: #fff;
  padding: 60px 0 20px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
}
.footer__nav_item a {
  color: #fff;
}
.footer__copy {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    gap: 30px 15px;
  }
  .footer__nav_item a {
    font-size: 1.2rem;
  }
  .footer__copy {
    font-size: 0.9rem;
  }
}

/* ------------------------------------------------------------
*  お知らせ（Block/news.twig）
------------------------------------------------------------ */
.news .inner {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
}
.news .ec-newsRole__news {
  max-width: 820px;
  width: 100%;
}
.news .ec-newsRole__newsItem {
  border-bottom: solid 1px var(--line-color);
  padding: 25px 0;
}
.news .ec-newsRole__newsHeading {
  display: flex;
  align-items: flex-start;
  gap: 10px 50px;
  cursor: pointer;
}
.news .ec-newsRole__newsDate {
  font-size: 2.0rem;
  font-weight: 700;
  opacity: 0.35;
}
.news .ec-newsRole__newsColumn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-right: 20px;
  width: 100%;
}
.news .ec-newsRole__newsTitle {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.news .fa-angle-down:before {
  content: '';
  width: 8px;
  height: 8px;
  display: block;
  border-bottom: solid 2px var(--point-color);
  border-right: solid 2px var(--point-color);
  transform: rotate(45deg);
}
.news .ec-newsRole__newsDescription {
  padding: 5px 20px 0 154px;
  font-size: 1.4rem;
  display: none;
}
.news .ec-newsRole__newsDescription a {
  color: var(--point-color);
  font-weight: 500;
  text-decoration: underline !important;
  padding-right: 20px;
  position: relative;
  width: max-content;
}
.news .ec-newsRole__newsDescription a[target="_blank"]::after {
  content: '';
  width: 14px;
  height: 14px;
  mask: url(../img/common/icon-tab.svg) no-repeat center center / contain;
  background-color: var(--point-color);
  position: absolute;
  bottom: 0;
  right: 0;
  top: 2px;
  margin: auto;
}
.news .c-btn01 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .news .inner {
    flex-direction: column;
    justify-content: center;
  }
  .news .ec-newsRole__newsItem {
    padding: 20px 0;
  }
  .news .ec-newsRole__newsColumn {
    padding: 0;
  }
  .news .ec-newsRole__newsHeading {
    flex-direction: column;
  }
  .news .ec-newsRole__newsDate {
    font-size: 1.6rem;
  }
  .news .ec-newsRole__newsDescription {
    padding: 5px 0 0;
  }
}

/* ------------------------------------------------------------
*  会社案内（Block/eyecatch.twig）
------------------------------------------------------------ */
.company__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 6.4rem;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.company__title span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: rgba(var(--base-color-rgb), 0.5);
  position: relative;
}
.company__title span::before {
  content: '';
  width: 10px;
  height: 1px;
  background-color: var(--point-color);
}
.company__title_sub {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 60px;
}
.company__img {
  width: 50%;
  max-width: 500px;
  flex-shrink: 0;
}
.company .bg__txt {
  bottom: -92px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .company__title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .company__title {
    font-size: 3.8rem;
  }
  .company__title_sub {
    font-size: 1.2rem;
    margin-bottom: 35px;
  }
  .company__img {
    width: 100%;
    padding: 0 30px;
    margin: 0 auto 10px;
  }
  .company .bg__txt {
    bottom: -58px;
  }
}

/* ------------------------------------------------------------
*  インスタグラム（Block/instagram.twig）
------------------------------------------------------------ */
.instagram {
  padding-top: 200px;
}
.instagram::after {
  content: '';
  width: 100%;
  height: 340px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--bg-color);
  z-index: -1;
}
.instagram__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 4.0rem;
  margin-bottom: 60px;
}
.instagram__title::before {
  content: '';
  background: url(../img/common/icon-instagram.svg) no-repeat center center / contain;
  width: 36px;
  height: 36px;
}
.instagram__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.instagram__item {
  width: calc(20% - 24px);
}
.instagram__item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.instagram .c-btn01 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .instagram {
    padding-top: 140px;
  }
  .instagram__title {
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
  .instagram__list {
    gap: 10px;
  }
  .instagram__item {
    width: calc((100% / 3) - 7px);
  }
  .instagram__item[data-num="10"] {
    display: none;
  }
}

/* ------------------------------------------------------------
*  注目商品（Block/recommend_product_block.twig）
------------------------------------------------------------ */
.pickup .ec-shelfGrid {
  gap: 40px;
}
.pickup .ec-shelfGrid__item {
  width: calc(25% - 30px);
}
.pickup .ec-shelfGrid__item .item_img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pickup .ec-shelfGrid__item .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}
.pickup .ec-shelfGrid__item .item_name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.pickup .ec-shelfGrid__item .item_number {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.4;
  margin: 4px 0 22px;
}
.pickup .ec-shelfGrid__item .item_price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 3px 10px;
  line-height: normal;
}
.pickup .ec-shelfGrid__item .item_price_regular {
  color: var(--point-color);
  font-weight: 700;
}
.pickup .ec-shelfGrid__item .item_price_regular .price {
  font-size: 1.8rem;
}
.pickup .ec-shelfGrid__item .item_price_sales {
  opacity: 0.5;
  font-weight: 500;
  position: relative;
}
.pickup .ec-shelfGrid__item .item_price_sales .price {
  font-size: 1.2rem;
  text-decoration: line-through;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pickup .ec-shelfGrid__item .item_price_regular .tax,
.pickup .ec-shelfGrid__item .item_price_sales .tax {
  font-size: 1.0rem;
}
.pickup .item_discount {
  margin-top: 10px;
  width: 100%;
}
.pickup .item_discount span {
  display: inline-block;
  background-color: var(--base-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 5px 10px;
}
.pickup .c-btn01 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .pickup .ec-shelfGrid {
    gap: 40px 10px;
  }
  .pickup .ec-shelfGrid__item {
    width: calc(50% - 5px);
  }
  .pickup .ec-shelfGrid__item .item_name {
    font-size: 1.4rem;
    margin-top: 5px;
  }
  .pickup .ec-shelfGrid__item .item_number {
    font-size: 1.0rem;
    margin: 3px 0 15px;
  }
  .pickup .ec-shelfGrid__item .item_price {
    gap: 0 10px;
  }
  .pickup .ec-shelfGrid__item .item_price_regular .price {
    font-size: 1.4rem;
  }
  .pickup .ec-shelfGrid__item .item_price_sales::before {
    top: 12px;
  }
  .pickup .ec-shelfGrid__item .item_price_sales .price {
    font-size: 1.0rem;
  }
  .pickup .ec-shelfGrid__item .item_price_sales .tax {
    font-size: 0.7rem;
  }
  .pickup .item_discount span {
    font-size: 1.0rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .pickup .ec-shelfGrid__item a:hover {
    opacity: 0.6;
  }
  .pickup .ec-shelfGrid__item a:hover img {
    transform: scale(1.1);
  }
}

/* ------------------------------------------------------------
*  商品カテゴリー：パーツ（Block/category.twig）
------------------------------------------------------------ */
.parts__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.parts__item {
  width: calc((100% / 3) - 10px);
  height: 150px;
}
.parts__item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 1.2rem;
}
.parts__item .en {
  font-size: 3.0rem;
  line-height: 1;
}
.parts .c-btn01 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .parts__item {
    height: 110px;
  }
  .parts__item a {
    padding: 20px;
    gap: 5px;
  }
  .parts__item .en::before {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .parts__list {
    flex-direction: column;
  }
  .parts__item {
    width: 100%;
    height: 135px;
  }
  .parts__item a {
    font-size: 1.0rem;
  }
  .parts__item .en {
    font-size: 2.8rem;
  }
  .c-btn01 {
    margin-top: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .parts__item a:hover {
    opacity: 0.6;
  }
}

/* ------------------------------------------------------------
*  商品カテゴリー：メーカー（Block/category.twig）
------------------------------------------------------------ */
.maker__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 25px;
}
.maker__item {
  width: calc(25% - 19px);
}
.maker__item a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}
.maker__icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}
.maker__txt {
  display: flex;
  flex-direction: column;
  font-size: 1.0rem;
  font-weight: 500;
}
.maker__txt .en {
  font-size: 2.0rem;
}
@media screen and (max-width: 1024px) {
  .maker__item {
    width: calc((100% / 3) - 19px);
  }
}
@media screen and (max-width: 767px) {
  .maker__list {
    gap: 15px 10px;
  }
  .maker__item {
    width: calc(50% - 5px);
  }
  .maker__item a {
    gap: 12px;
  }
  .maker__icon {
    width: 44px;
    height: 44px;
  }
  .maker__txt {
    font-size: 0.8rem;
  }
  .maker__txt .en {
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .maker__item a:hover {
    opacity: 0.6;
  }
}

/* ------------------------------------------------------------
*  ページネーション（pager.twig）
------------------------------------------------------------ */
.ec-pager {
  padding: 120px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.ec-pager .ec-pager__item--active {
  background-color: var(--bg-color);
}
.ec-pager .ec-pager__item,
.ec-pager .ec-pager__item--active {
  width: 35px;
  height: 40px;
  transition: var(--base-transition);
  position: relative;
}
.ec-pager .ec-pager__item a,
.ec-pager .ec-pager__item--active a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.ec-pager .ec-pager__item.prev::after,
.ec-pager .ec-pager__item.next::after,
.ec-pager .ec-pager__item.first::before,
.ec-pager .ec-pager__item.first::after,
.ec-pager .ec-pager__item.end::before,
.ec-pager .ec-pager__item.end::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px var(--base-color);
  border-right: solid 2px var(--base-color);
  position: absolute;
  top: 15px;
  pointer-events: none;
}
.ec-pager .ec-pager__item.prev::after,
.ec-pager .ec-pager__item.first::before,
.ec-pager .ec-pager__item.first::after {
  transform: rotate(-135deg);
}
.ec-pager .ec-pager__item.next::after,
.ec-pager .ec-pager__item.end::before,
.ec-pager .ec-pager__item.end::after {
  transform: rotate(45deg);
}
.ec-pager .ec-pager__item.prev::after {
  left: 15px;
}
.ec-pager .ec-pager__item.first::before {
  left: 11px;
}
.ec-pager .ec-pager__item.first::after {
  left: 18px;
}
.ec-pager .ec-pager__item.next::after {
  left: 11px;
}
.ec-pager .ec-pager__item.end::before {
  left: 14px;
}
.ec-pager .ec-pager__item.end::after {
  left: 7px;
}
@media screen and (max-width: 767px) {
  .ec-pager {
    padding-top: 80px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .ec-pager .ec-pager__item:hover {
    background-color: var(--bg-color);
  }
}


/* 
*  
*
* ページレイアウトスタイル
*
*
*/
/* ------------------------------------------------------------
*  トップページ（index.twig）
------------------------------------------------------------ */
.front_page .mv {
  position: relative;
}
.front_page .mv .slick-list {
  overflow: inherit;
}
.front_page .mv__slider_main {
  padding: 20px 0;
  margin-bottom: 20px;
  background-color: var(--bg-color);
}
.front_page .mv__slider_main_item {
  margin: 0 15px;
  box-shadow: 0 4px 10px  rgba(var(--base-color-rgb), 0.2);
  opacity: 0.5;
  transition: var(--base-transition);
}
.front_page .mv__slider_main_item.slick-active {
  opacity: 1;
}
.front_page .mv .slick-arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--base-color);
  border: none;
  z-index: 10;
  color: transparent;
}
.front_page .mv .slick-prev {
  left: 0;
}
.front_page .mv .slick-next {
  right: 0;
}
.front_page .mv .slick-arrow::after {
  content: '';
  width: 18px;
  height: 18px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.front_page .mv .slick-prev::after {
  transform: scale(-1, 1) rotate(45deg);
  left: 0;
}
.front_page .mv .slick-next::after {
  left: -7px;
}
.front_page .mv__slider_thumb {
  margin: 0 auto;
  max-width: 1280px;
  width: max-content;
}
.front_page .mv__slider_thumb .slick-list {
  overflow: hidden;
  margin: 0 120px;
}
.front_page .mv__slider_thumb_item {
  margin: 0 10px;
}
.front_page .mv__slider_thumb .slick-arrow {
  background-color: #909090;
  width: 40px;
  height: 40px;
}
.front_page .mv__slider_thumb .slick-prev {
  left: 20px;
}
.front_page .mv__slider_thumb .slick-next {
  right: 20px;
}
.front_page .mv__slider_thumb .slick-arrow::after {
  width: 10px;
  height: 10px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
}
.front_page .line__fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: grid;
  gap: 10px;
  max-width: 332px;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}
.front_page .line__fixed_title {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  font-weight: 700;
  text-align: center;
}
.front_page .line__fixed_title .green {
  color: #06C755;
  font-size: 2.2rem;
}
.front_page .line__fixed_title .big {
  font-size: 1.8rem;
}
.front_page .line__fixed .txt {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  font-size: 1.2rem;
  line-height: 1.8;
}
.front_page .line__fixed a {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #06C755;
  border-radius: 3px;
  width: 100%;
  height: 35px;
}
.front_page .line__fixed a::before {
  content: '';
  background: url(../img/common/icon-line.svg) no-repeat center center / contain;
  width: 16px;
  height: 16px;
}
.front_page .line__fixed a::after {
  content: '';
  background: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
  width: 12px;
  height: 10px;
}
.front_page .line__fixed_img {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  width: 90px;
  height: 90px;
}
.front_page .line__fixed .line__fixed_button {
  color: transparent;
  width: 38px;
  height: 38px;
  background-color: #4a4a4a;
  border: none;
  border-radius: 100px;
  position: absolute;
  top: -13px;
  right: -11px;
}
.front_page .line__fixed .line__fixed_button::before,
.front_page .line__fixed .line__fixed_button::after {
  content: '';
  width: 16px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.front_page .line__fixed .line__fixed_button::before {
  transform: rotate(45deg);
}
.front_page .line__fixed .line__fixed_button::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .front_page .mv__slider_main_item {
    box-shadow: 4px 0 10px  rgba(var(--base-color-rgb), 0.2);
    margin: 0;
    opacity: 1;
  }
  .front_page .mv__slider_thumb {
    padding: 0 10px;
    width: 100%;
  }
  .front_page .mv__slider_thumb .slick-list {
    margin: 0;
  }
  .front_page .mv .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .front_page .mv .slick-arrow::after {
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  .front_page .mv .slick-prev::after {
    left: 3px;
  }
  .front_page .mv .slick-next::after {
    left: -3px;
  }
  .front_page .mv__slider_thumb .slick-prev {
    left: 0;
  }
  .front_page .mv__slider_thumb .slick-next {
    right: 0;
  }
  .front_page .line__fixed {
    display: none;
  }
}


/* ------------------------------------------------------------
*  商品一覧（Product/list.twig）
------------------------------------------------------------ */
.product_page .product__category {
  margin-bottom: 40px;
}
.product_page .product__category_button {
  border-bottom: solid 1px #D3D3D3;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  display: none;
  align-items: flex-end;
  gap: 10px;
}
.product_page .product__category_button button {
  width: calc(50% - 5px);
  border: none;
  padding: 22px 20px;
  background-color: var(--bg-color);
  border-radius: 5px 5px 0 0;
  font-weight: 600;
}
.product_page .product__category_button button.current {
  background-color: var(--point-color);
  color: #fff;
}
.product_page .product__category_wrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
.product_page .product__category_wrap + .product__category_wrap {
  margin-top: 30px;
}
.product_page .product__category_title {
  font-size: 1.6rem;
  font-weight: 500;
  width: 150px;
  flex-shrink: 0;
}
.product_page .product__category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product_page .product__category_item a {
  background-color: var(--bg-color);
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 5px 18px;
}
.product_page .product__category_item.current a {
  background-color: var(--base-color);
  color: #fff;
}
.product_page .banner {
  margin: 0 auto 60px;
  max-width: 800px;
  width: 100%;
}

.product_page .ec-searchnavRole__infos {
  align-items: baseline;
  margin-bottom: 40px;
}
.product_page .ec-searchnavRole__counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-weight: 500;
}
.product_page .ec-searchnavRole__counter .ec-font-bold {
  color: var(--point-color);
  font-size: 3.2rem;
}
.product_page .ec-searchnavRole .ec-select {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.product_page .ec-searchnavRole .ec-select__box {
  position: relative;
}
.product_page .ec-searchnavRole .ec-select__box::after {
  content: '';
  border-bottom: solid 2px var(--base-color);
  border-left: solid 2px var(--base-color);
  width: 8px;
  height: 8px;
  position: absolute;
  top: -3px;
  bottom: 0;
  right: 12px;
  margin: auto;
  transform: rotate(-45deg);
}
.product_page .ec-searchnavRole .ec-select select {
  background-color: var(--bg-color);
  border: none;
  border-radius: 5px;
  padding: 10px 30px 10px 15px;
  width: 148px;
  height: auto;
  -webkit-appearance: none;
}
.product_page .ec-shelfGrid {
  gap: 80px 40px;
}
.product_page .ec-shelfGrid__item {
  width: calc((100% / 4) - 30px);
}
.product_page .ec-shelfGrid__item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product_page .ec-shelfGrid__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}
.product_page .ec-shelfGrid__item .item_name {
  line-height: 1.8;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product_page .ec-shelfGrid__item .item_number_wrap {
  margin: 5px 0 20px;
}
.product_page .ec-shelfGrid__item .item_number {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.4;
}
.product_page .ec-shelfGrid__item .item_number + .item_number {
  margin-bottom: 5px;
} 
.product_page .ec-shelfGrid__item .item_price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 3px 10px;
  line-height: normal;
}
.product_page .ec-shelfGrid__item .item_price_regular {
  color: var(--point-color);
  font-weight: 700;
}
.product_page .ec-shelfGrid__item .item_price_regular .price {
  font-size: 1.8rem;
}
.product_page .ec-shelfGrid__item .item_price_regular .tax,
.product_page .ec-shelfGrid__item .item_price_sales .tax {
  font-size: 1.0rem;
}
.product_page .ec-shelfGrid__item .item_price_sales {
  font-weight: 500;
  opacity: 0.5;
  position: relative;
}
.product_page .ec-shelfGrid__item .item_price_sales .price {
  font-size: 1.2rem;
  text-decoration: line-through;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product_page .item_discount {
  margin-top: 10px;
  width: 100%;
}
.product_page .item_discount span {
  display: inline-block;
  background-color: var(--base-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 5px 10px;
}
@media screen and (max-width: 1024px) {
  .product_page .ec-shelfGrid {
    gap: 60px 20px;
  }
  .product_page .ec-shelfGrid__item {
    width: calc((100% / 4) - 15px);
  }
}
@media screen and (max-width: 767px) {
  .product_page .product__category_button {
    display: flex;
  }
  .product_page .product__category_wrap {
    margin-top: 40px;
    display: none;
  }
  .product_page .product__category_wrap.current {
    display: block;
  }
  .product_page .product__category_title {
    display: none;
  }
  .product_page .banner {
    margin: 0 auto 40px;
  }
  .c-section.product {
    padding-top: 30px;
  }
  .product_page .ec-searchnavRole__counter .ec-font-bold {
    font-size: 2.4rem;
  }
  .product_page .ec-searchnavRole .ec-select select {
    width: auto;
    font-size: 1.4rem;
  }
  .product_page .ec-shelfGrid {
    gap: 40px 10px;
  }
  .product_page .ec-shelfGrid__item {
    width: calc(50% - 5px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .product_page .ec-shelfGrid__item a:hover {
    opacity: 0.6;
  }
  .product_page .ec-shelfGrid__item a:hover img {
    transform: scale(1.1);
  }
  .product_page .product__category_item a:hover {
    background-color: #DBE0E0;
  }
  .product_page .product__category_item.current a:hover {
    background-color: var(--base-color);
    color: #fff;
  }
}


/* ------------------------------------------------------------
*  商品詳細（Product/detail.twig）
------------------------------------------------------------ */
.product_detail {
  padding: 40px 0 0;
}
.product_detail .breadcrumb__list {
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 70px;
}
.product_detail .breadcrumb__list::-webkit-scrollbar {
  background-color: transparent;
  height: 6px;
}
.product_detail .breadcrumb__list::-webkit-scrollbar-thumb {
  background-color: var(--bg-color);
  border-radius: 10px;
}
.product_detail .breadcrumb {
  overflow-x: visible;
}
.product_detail .breadcrumb + .breadcrumb {
  margin-top: 5px;
}
.product_detail .ec-productRole {
  border-bottom: solid 1px var(--line-color);
  padding-bottom: 120px;
  max-width: inherit;
}
.product_detail .ec-sliderItemRole {
  padding: 0;
}
.product_detail .slick-slider {
  margin-bottom: 10px;
}
.product_detail .ec-sliderItemRole .item_nav {
  gap: 10px;
}
.product_detail .ec-sliderItemRole .slideThumb {
  width: calc((100% / 4) - 8px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
}
.product_detail .ec-sliderItemRole .slideThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_detail .ec-productRole__profile {
  margin-left: 60px;
}
.product_detail .ec-productRole__tags {
  border: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
}
.product_detail .ec-productRole__tag {
  border: solid 1px var(--base-color);
  background-color: #fff;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 3px 10px;
}
.product_detail .ec-productRole__tag.tag_2 {
  border: none;
  background-color: var(--gray-color);
}
.product_detail .ec-productRole__tag.tag_3 {
  border: none;
  background-color: rgba(var(--base-color-rgb), 0.5);
  color: #fff;
}
.product_detail .ec-productRole__tag.tag_4 {
  border: none;
  background-color: #FFCD29;
}
.product_detail .ec-headingTitle {
  color: var(--base-color);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.product_detail .ec-productRole__code {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  color: rgba(var(--base-color-rgb), 0.4);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 0 30px;
}
.product_detail .product__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 20px;
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}
.product_detail .ec-productRole__price {
  color: var(--point-color);
  font-size: 2.8rem
}
.product_detail .ec-price .ec-price__price {
  padding: 0;
  font-size: 2.8rem;
}
.product_detail .ec-price .ec-price__tax {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.product_detail .product__delivery {
  border-bottom: 1px dotted #ccc;
  font-size: 1.4rem;
  padding: 20px 0;
}
.product_detail .product__delivery a {
  display: inline;
  text-decoration: underline !important;
}
.product_detail .ec-productRole__priceRegular {
  padding: 0;
  opacity: 0.5;
}
.product_detail .ec-productRole__priceRegularPrice {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  text-decoration: line-through;
}
.product_detail .ec-productRole__priceRegularTax {
  font-size: 1.0rem;
  margin: 0;
}
.product_detail .item_discount {
  margin: 0;
}
.product_detail .add_cart {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
}
.product_detail .add_cart:not(:has(.ec-productRole__actions)) {
  justify-content: flex-end;
}
.product_detail .ec-productRole__actions {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.product_detail .ec-productRole__actions .ec-select {
  position: relative;
  width: max-content;
}
.product_detail .ec-productRole__actions .ec-select::after {
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: solid 2px var(--base-color);
  border-right: solid 2px var(--base-color);
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 15px;
  margin: auto;
  pointer-events: none;
}
.product_detail .ec-productRole__actions .ec-select select {
  appearance: none;
  border: none;
  background-color: var(--bg-color);
  padding: 8px 30px 8px 15px;
  height: 45px;
}
.product_detail .ec-numberInput {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}
.product_detail .ec-numberInput input {
  background-color: var(--bg-color);
  border: none;
  margin: 0;
  font-weight: 700;
}
.product_detail .ec-productRole__btn {
  margin: 0;
  width: 250px;
  height: 60px;
  min-width: inherit;
}
.product_detail .ec-blockBtn--action {
  background-color: var(--point-color);
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  transition: var(--base-transition);
}
.product_detail .ec-blockBtn--action::before {
  content: '';
  width: 23px;
  height: 23px;
  background: url(../img/common/icon-cart_fill.svg) no-repeat center center / contain;
}
.product_detail .ec-blockBtn--action[disabled] {
  background-color: #999;
  pointer-events: none !important;
}
.product_detail .add_favorite {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.product_detail .ec-blockBtn--cancel {
  background-color: var(--base-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  transition: var(--base-transition);
}
.product_detail .ec-blockBtn--cancel#favorite:before {
  content: '';
  width: 23px;
  height: 23px;
  background: url(../img/common/icon-favorite.svg) no-repeat center center / contain;
}
.product_detail .expected__date {
  font-size: 1.2rem;
  margin: 60px 0 40px;
}
.product_detail__wrap {
  background-color: var(--bg-color);
  padding: 20px;
  margin-top: 40px;
  color: #36636C;
}
.product_detail__wrap_title {
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
  line-height: 2;
}
.product_detail__wrap_title::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #36636C;
  position: absolute;
  top: 7.5px;
  left: 0;
}
.product_detail__wrap .txt {
  font-size: 1.2rem;
}
.product_detail__wrap .txt + .ec-blockBtn--cancel {
  margin: 10px auto 0;
  max-width: 260px;
}
.product_detail__wrap .txt a {
  display: inline;
  color: #36636C;
  text-decoration: underline !important;
}
.product_detail .detail__description_wrap {
  margin-top: 40px;
}
.product_detail .detail__description_title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
  font-size: 1.4rem;
  padding-left: 15px;
  position: relative;
  line-height: 2;
}
.product_detail .detail__description_title::before {
  content: '';
  background-color: var(--base-color);
  width: 2px;
  height: 16px;
  position: absolute;
  top: 7px;
  left: 0;
}
.product_detail .detail__description_title .caution {
  color: var(--point-color);
}
.product_detail .detail__description_txt > * {
  font-size: 1.4rem;
  line-height: 2;
}
.product_detail .detail__description_txt a {
  display: inline-block;
  text-decoration: underline !important;
}
@media screen and (max-width: 1024px) {
  .product_detail .breadcrumb__list {
    margin-bottom: 30px;
  }
  .product_detail .ec-productRole {
    padding-left: 0;
    padding-right: 0;
  }
  .product_detail .ec-productRole__profile {
    margin-left: 30px;
  }
  .ec-productRole .ec-productRole__title .ec-headingTitle {
    font-size: 2.4rem;
  }
  .product_detail .add_cart {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .product_detail {
    padding-top: 10px;
  }
  .product_detail .breadcrumb__list {
    margin-bottom: 30px;
  }
  .product_detail .breadcrumb__list::-webkit-scrollbar {
    height: 4px;
  }
  .product_detail .ec-sliderItemRole {
    margin-bottom: 40px;
  }
  .ec-sliderItemRole .item_nav {
    display: flex;
    flex-wrap: wrap;
  }
  .product_detail .ec-productRole__profile {
    margin: 0;
  }
  .ec-productRole .ec-productRole__title .ec-headingTitle {
    font-size: 1.6rem;
  }
  .product_detail .ec-productRole__code {
    font-size: 1.0rem;
    padding: 0 0 20px;
  }
  .product_detail .product__price {
    padding: 10px 0 20px;
  }
  .product_detail .product__delivery {
    font-size: 1.2rem;
  }
  .product_detail .ec-price .ec-price__price {
    font-size: 2.4rem;
  }
  .product_detail .ec-productRole__priceRegularPrice {
    font-size: 1.2rem;
  }
  .product_detail .ec-productRole__actions .ec-select {
    width: 100%;
  }
  .product_detail .add_cart,
  .product_detail .add_cart:not(:has(.ec-productRole__actions)) {
    justify-content: center;
  }
  .product_detail .ec-productRole__actions {
    width: 100%;
  }
  .product_detail .add_favorite {
    justify-content: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product_detail .ec-blockBtn--action:hover,
  .product_detail .ec-blockBtn--cancel:hover {
    opacity: 0.6;
  }
}


/* ------------------------------------------------------------
*  フォーム系（お問い合わせ、新規会員登録）
------------------------------------------------------------ */
.c-form .ec-forgotRole__intro {
  margin-bottom: 30px;
}
.c-form .ec-para-normal {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.c-form .ec-forgotRole__intro .ec-para-normal {
  text-align: center;
  margin-bottom: 0;
}
.c-form .ec-borderedDefs {
  border: none;
  margin: 0 0 30px;
}
.c-form th,
.c-form td {
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  padding: 25px 20px 25px 0;
  vertical-align: middle;
  font-size: 1.6rem;
}
.c-form th {
  width: 30%;
}
.c-form td {
  width: 70%;
}
.c-form .ec-label {
  font-size: 1.6rem;
}
.c-form td .ec-halfInput {
  display: flex;
  align-items: center;
  gap: 20px;
}
.c-form td .ec-halfInput input {
  width: 100%;
}
.c-form .input_address {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-form input {
  margin: 0;
  background-color: var(--bg-color);
  border: solid 1px var(--line-color);
  height: 45px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
}
.c-form textarea {
  margin: 0;
  background-color: var(--bg-color);
  border: solid 1px var(--line-color);
  height: 160px;
}
.c-form td .ec-halfInput span {
  width: calc(50% - 10px);
}
.c-form .ec-select {
  width: max-content;
  position: relative;
}
.c-form .ec-select::after {
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: solid 2px var(--base-color);
  border-right: solid 2px var(--base-color);
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 10px;
  margin: auto;
  pointer-events: none;
}
.c-form .ec-birth {
  display: flex;
  align-items: center;
  gap: 20px;
}
.c-form .ec-select select {
  appearance: none;
  background-color: var(--bg-color);
  border: solid 1px var(--line-color);
  width: 170px;
  height: 45px;
}
.c-form .ec-birth select {
  width: 120px;
}
.c-form .ec-select select#entry_job {
  width: 290px;
}
.c-form .ec-zipInput input {
  width: 140px;
  max-width: inherit;
}
.c-form .ec-telInput input {
  width: 170px;
  max-width: inherit;
}
.c-form .ec-radio div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 25px;
}
.c-form .ec-radio input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  visibility: hidden;
}
.c-form .ec-radio label {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}
.c-form .ec-radio label::before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 7px;
  left: 0;
  border: solid 1px var(--base-color);
  border-radius: 50%;
}
.c-form .ec-radio label::after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 3px;
  background-color: var(--point-color);
  border-radius: 50%;
  opacity: 0;
}
.c-form .ec-radio input:checked + label::after {
  opacity: 1;
}
.c-form .ec-errorMessage {
  color: var(--point-color);
  margin: 5px 0 0;
}
.c-form .ec-RegisterRole__actions {
  margin-top: 50px;
}
.c-form .ec-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}
.c-form .ec-checkbox label {
  cursor: pointer;
  text-align: center;
  margin: 0;
  position: relative;
  padding-left: 28px;
}
.c-form .ec-checkbox label::before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 5px;
  left: 0;
  border: solid 1px var(--base-color);
}
.c-form .ec-checkbox label::after {
  content: '';
  width: 12px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 3px;
  border-bottom: solid 2px var(--point-color);
  border-left: solid 2px var(--point-color);
  transform: rotate(-45deg);
  opacity: 0;
}
.c-form .ec-checkbox label:has(input:checked)::after {
  opacity: 1;
}
.c-form .ec-checkbox input {
  width: 1px;
  height: 1px;
  position: absolute;
  visibility: hidden;
}
.c-form .ec-checkbox a {
  display: inline-block;
}
.c-form_complete {
  padding-top: 80px;
}
.c-form_complete .title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 30px;
}
.c-form_complete  .txt {
  font-size: 1.6rem;
  text-align: center;
}
.c-form_complete .ec-off4Grid {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .c-form .ec-para-normal {
    font-size: 1.3rem;
  }
  .c-form .ec-borderedDefs {
    border-bottom: solid 1px var(--line-color);
    margin-bottom: 20px;
  }
  .c-form th,
  .c-form td {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }
  .c-form th {
    border-bottom: none;
    padding: 20px 0 0;
  }
  .c-form td {
    border: none;
    padding: 5px 0 20px;
  }
  .c-form .ec-label {
    font-size: 1.4rem;
  }
  .c-form td .ec-halfInput,
  .c-form .input_address {
    gap: 10px;
  }
  .c-form td .ec-halfInput span {
    width: calc(50% - 5px);
  }
  .c-form input {
    font-size: 1.4rem;
  }
  .c-form .ec-select select {
    font-size: 1.4rem;
  }
  .c-form .title {
    font-size: 1.8rem;
  }
  .c-form .ec-birth {
    justify-content: space-between;
    gap: 10px;
  }
  .c-form .ec-birth .ec-select {
    width: 100%;
  }
  .c-form .ec-birth select {
    width: 100%;
  }
  .c-form .ec-radio div {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-form .ec-radio label {
    font-size: 1.4rem;
  }
  .c-form .ec-radio label::before {
    top: 5px;
  }
  .c-form .ec-radio label::after {
    top: 8px;
  }
  .c-form_complete .title {
    font-size: 2.4rem;
  }
  .c-form_complete  .txt {
    font-size: 1,4rem;
  }
}


/* ------------------------------------------------------------
*  会社案内（company）
------------------------------------------------------------ */
.company__about .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.company__about_txt {
  max-width: 460px;
  width: 100%;
}
.company__about_title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.company__about_title .en {
  color: var(--point-color);
  font-size: 1.8rem;
}
.company__about_title .ja {
  font-size: 3.6rem;
  line-height: 1.8;
}
@media screen and (max-width:1024px) {
  .company__about_img {
    width: 40%;
  }
  .company__about_txt {
    max-width: 400px;
  }
  .company__about_title .ja {
    font-size: 2.4rem;
  }
}
@media screen and (max-width:767px) {
  .company__about_img {
    width: calc(100% - 40px);
    margin: 0 auto 40px;
  }
  .company__about_title .en {
    font-size: 1.2rem;
  }
}
.company__access::after {
  content: '';
  background-color: var(--bg-color);
  width: 100%;
  height: 348px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.company__access_map {
  width: 100%;
  height: 450px;
}
@media screen and (max-width:767px) {
  .company__access::after {
    height: 253px;
  }
  .company__access_map {
    height:  335px;
  }
}


/* ------------------------------------------------------------
*  マイページログイン（Mypage/login.twig）
------------------------------------------------------------ */
#page_mypage_login .ec-input input,
#page_shopping_login .ec-input input {
  border: none;
  height: 45px;
}
#page_mypage_login .form-check input,
#page_shopping_login .form-check input {
  width: 1px;
  height: 1px;
  position: absolute;
  visibility: hidden;
}
#page_mypage_login .form-check label,
#page_shopping_login .form-check label {
  cursor: pointer;
  padding-left: 28px;
  position: relative;
}
#page_mypage_login .form-check label::before,
#page_shopping_login .form-check label::before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 5px;
  left: 0;
  background-color: #fff;
  border: solid 1px var(--line-color);
  border-radius: 3px;
}
#page_mypage_login .form-check label::after,
#page_shopping_login .form-check label::after {
  content: '';
  width: 12px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 3px;
  border-bottom: solid 2px var(--point-color);
  border-left: solid 2px var(--point-color);
  transform: rotate(-45deg);
  opacity: 0;
}
#page_mypage_login .form-check input:checked + label::after,
#page_shopping_login .form-check input:checked + label::after {
  opacity: 1;
}
#page_mypage_login .ec-grid2 .ec-grid2__cell,
#page_shopping_login .ec-grid2 .ec-grid2__cell {
  width: auto;
}
#page_mypage_login .ec-grid2,
#page_shopping_login .ec-grid2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #page_mypage_login .ec-grid2,
  #page_shopping_login .ec-grid2 {
    flex-direction: column;
    align-items: flex-start;
  }
  #page_mypage_login .ec-grid2 .ec-link,
  #page_shopping_login .ec-grid2 .ec-link {
    text-align: center;
  }
  #page_mypage_login .ec-grid2 .ec-grid2__cell,
  #page_shopping_login .ec-grid2 .ec-grid2__cell {
    margin: 0 auto;
  }
}


/* ------------------------------------------------------------
*  ショッピングログイン
------------------------------------------------------------ */
#page_shopping_login .ec-grid3 {
  gap: 20px;
}
#page_shopping_login .ec-grid3 .ec-grid3__cell2 {
  width: calc(((100% / 3) - 10px) * 2);
}
#page_shopping_login .ec-grid3 .ec-grid3__cell {
  width: calc(100% / 3);
}
#page_shopping_login .ec-guest {
  padding: 10%;
}
#page_shopping_login .ec-blockBtn--cancel {
  background-color: #629BAF;
  border: solid 1px #629BAF;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #page_shopping_login .ec-login {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  #page_shopping_login .ec-grid3 {
    display: flex;
    flex-direction: column;
  }
  #page_shopping_login .ec-grid3 .ec-grid3__cell2,
  #page_shopping_login .ec-grid3 .ec-grid3__cell {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  #page_shopping_login .ec-blockBtn--cancel:hover {
    opacity: 0.6;
  }
}


/* ------------------------------------------------------------
*  カート系
------------------------------------------------------------ */
.ec-cartRole__totalText {
  font-size: 1.6rem;
  text-align: center;
}
.ec-cartRow .ec-cartRow__summary .ec-cartRow__name {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ec-cartRow .ec-cartRow__summary .ec-cartRow__name a {
  color: #629BAF;
  font-size: 1.6rem;
  font-weight: 700;
}
.ec-cartRow .arrive-schedule {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 5px 0 20px;
}
.ec-cartRow__amountDownButton__icon,
.ec-cartRow__amountUpButton__icon {
  display: block;
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #629BAF;
}
.ec-cartRow__amountUpButton__icon::before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #629BAF;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.ec-cartRow__amountDownButtonDisabled .ec-cartRow__amountDownButton__icon,
.ec-cartRow__amountDownButtonDisabled .ec-cartRow__amountUpButton__icon,
.ec-cartRow__amountDownButtonDisabled .ec-cartRow__amountUpButton__icon::before {
  background-color: var(--gray-color);
}
.ec-cartRow__sutbtotal {
  font-weight: 700;
}
.cart_page .pickup {
  padding-top: 0;
}
.cart_page .pickup .c-title01 {
  padding-top: 120px;
  border-top: solid 1px var(--line-color);
}
@media screen and (max-width: 767px) {
  .ec-cartRole__totalText {
    font-size: 1.4rem;
  }
  .cart_page .pickup .c-title01 {
    padding-top: 60px;
  }
  .ec-cartRow .ec-cartRow__summary .ec-cartRow__name a {
    font-size: 1.4rem;
  }
  .ec-cartRow .arrive-schedule {
    font-size: 1.0rem;
  }
  .ec-cartRow .arrive-schedule {
    margin: 8px 0 10px;
  }
  .ec-cartRow__unitPrice {
    font-size: 1.5rem;
    text-align: right;
  }
}


/* ------------------------------------------------------------
*  ご注文手続き・ご注文内容確認
------------------------------------------------------------ */
#page_shopping .ec-layoutRole,
#page_shopping_confirm .ec-layoutRole {
  overflow: inherit;
}
#page_shopping .ec-orderAccount,
#page_shopping_confirm .ec-orderAccount {
  margin-bottom: 40px;
}
#page_shopping .ec-inlineBtn--action,
#page_shopping_confirm .ec-inlineBtn--action {
  width: auto;
  height: auto;
  padding: 8px 20px;
}
#page_shopping .c-form .ec-borderedDefs,
#page_shopping_confirm .c-form .ec-borderedDefs {
  margin-bottom: 20px;
}
#page_shopping .c-form .mod-button,
#page_shopping_confirm .c-form .mod-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}
#page_shopping .c-form .ec-inlineBtn--action,
#page_shopping_confirm .c-form .ec-inlineBtn--action {
  width: 200px;
  height: 50px;
  padding: 10px 16px;
}
#page_shopping .ec-borderedList li,
#page_shopping_confirm .ec-borderedList li {
  border-top: 1px dotted #ccc;
  padding: 20px;
}
#page_shopping .ec-borderedList li + li,
#page_shopping_confirm .ec-borderedList li + li {
  margin-top: -1px;
}
#page_shopping .ec-imageGrid,
#page_shopping_confirm .ec-imageGrid {
  border: none;
}
#page_shopping .ec-imageGrid__content,
#page_shopping_confirm .ec-imageGrid__content {
  padding-left: 15px;
}
#page_shopping .ec-imageGrid__content .name,
#page_shopping_confirm .ec-imageGrid__content .name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #629BAF;
}
#page_shopping .ec-imageGrid__content .arrive-schedule,
#page_shopping_confirm .ec-imageGrid__content .arrive-schedule {
  font-size: 1.2rem;
  margin: 5px 0 10px;
}
#page_shopping .ec-imageGrid__content .price,
#page_shopping_confirm .ec-imageGrid__content .price {
  font-size: 1.6rem;
  font-weight: 700;
}
#page_shopping .ec-orderDelivery,
#page_shopping_confirm .ec-orderDelivery {
  margin-bottom: 40px;
}
#page_shopping .ec-orderDelivery .ec-select,
#page_shopping_confirm .ec-orderDelivery .ec-select {
  margin-bottom: 20px;
  position: relative;
  width: max-content;
}
#page_shopping .ec-select::after {
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: solid 2px var(--base-color);
  border-right: solid 2px var(--base-color);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  pointer-events: none;
}
#page_shopping .ec-select select,
#page_shopping_confirm .ec-select select {
  appearance: none;
  background-color: var(--bg-color);
  border: none;
  width: 200px;
  height: 45px;
}
#page_shopping .ec-orderDelivery__edit p,
#page_shopping_confirm .ec-orderDelivery__edit p {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}
#page_shopping .ec-orderPayment,
#page_shopping_confirm .ec-orderPayment {
  margin-bottom: 40px;
}
#page_shopping .ec-orderPayment input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  visibility: hidden;
}
#page_shopping .ec-orderPayment label {
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  margin: 0 0 5px;
}
#page_shopping .ec-orderPayment label::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: solid 1px var(--base-color);
}
#page_shopping .ec-orderPayment label::after {
  content: '';
  background-color: var(--point-color);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 6px;
  left: 3px;
  opacity: 0;
}
#page_shopping .ec-orderPayment input[type=radio]:checked + label::after {
  opacity: 1;
}
#page_shopping .ec-orderPayment .ec-radio div {
  margin-bottom: 15px;
}
#page_shopping .payment-text-list {
  padding-left: 28px;
}
#page_shopping .payment-text-item {
  font-size: 1.4rem;
  line-height: 2;
  padding-left: 20px;
  position: relative;
}
#page_shopping .payment-text-item::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}
#page_shopping .payment-text-item.-caution::before {
  content: none;
}
#page_shopping .payment-text-list input[type=radio]:checked {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #page_shopping .ec-inlineBtn--action,
  #page_shopping_confirm .ec-inlineBtn--action {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
  #page_shopping .ec-borderedList li,
  #page_shopping_confirm .ec-borderedList li {
    border-top: none;
    padding: 10px;
  }
  #page_shopping .ec-imageGrid__content .name,
  #page_shopping_confirm .ec-imageGrid__content .name {
    font-size: 1.4rem;
  }
  #page_shopping .ec-imageGrid__content .arrive-schedule,
  #page_shopping_confirm .ec-imageGrid__content .arrive-schedule {
    font-size: 1.0rem;
  }
  #page_shopping .ec-imageGrid__content .price,
  #page_shopping_confirm .ec-imageGrid__content .price {
    font-size: 1.4rem;
    text-align: right;
  }
  #page_shopping .ec-imageGrid__content .price span,
  #page_shopping_confirm .ec-imageGrid__content .price span {
    display: block;
  }
  #page_shopping .ec-orderDelivery .ec-orderDelivery__address p,
  #page_shopping_confirm .ec-orderDelivery .ec-orderDelivery__address p {
    font-size: 1.4rem;
  }
}


/* ------------------------------------------------------------
*  お届け先指定
------------------------------------------------------------ */
#page_shopping_shipping .ec-off1Grid__cell {
  margin: 0;
  width: 100%;
}
#page_shopping_shipping .ec-addressRole__actions {
  margin: 0;
}
#page_shopping_shipping .ec-addressRole .ec-inlineBtn--action {
  width: auto;
  height: auto;
  padding: 8px 20px;
  max-width: 196px;
}
#page_shopping_shipping .ec-addressList__item {
  display: flex;
  align-items: center;
}
#page_shopping_shipping .ec-addressList__remove {
  position: relative;
  width: 20%;
}
#page_shopping_shipping .ec-addressList__remove input {
  width: 1px;
  height: 1px;
  position: absolute;
  visibility: hidden;
}
#page_shopping_shipping .ec-addressList__remove::before {
  content: '';
  width: 20px;
  height: 20px;
  border: solid 1px var(--base-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#page_shopping_shipping .ec-addressList__remove::after {
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--point-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#page_shopping_shipping .ec-addressList__address {
  font-size: 1.4rem;
  margin: 0;
}
#page_shopping_shipping .ec-registerRole__actions {
  margin-top: 40px;
}


/* ------------------------------------------------------------
*  お届け先追加
------------------------------------------------------------ */
#page_shopping_shipping_multiple .ec-inlineBtn--action,
#page_shopping_shipping_multiple .ec-inlineBtn--cancel {
  width: auto;
  height: auto;
  padding: 8px 20px;
  max-width: 196px;
}
#page_shopping_shipping_multiple .ec-AddAddress__add .ec-select {
  position: relative;
  display: flex;
  align-items: center;
}
#page_shopping_shipping_multiple .ec-AddAddress__add .ec-select label,
#page_shopping_shipping_multiple .ec-AddAddress__add .ec-input label {
  font-weight: 700;
  flex-shrink: 0;
}
#page_shopping_shipping_multiple .ec-AddAddress__add .ec-select::after {
  content: '';
  width: 7px;
  height: 7px;
  border-bottom: solid 2px var(--base-color);
  border-right: solid 2px var(--base-color);
  transform: rotate(45deg);
  position: absolute;
  top: -4px;
  bottom: 0;
  right: 15px;
  margin: auto;
  pointer-events: none;
}
#page_shopping_shipping_multiple .ec-AddAddress__add select {
  background-color: var(--bg-color);
  border: none;
  height: auto;
  padding: 12px 35px 12px 8px;
  width: 100%;
  max-width: 430px;
  min-width: inherit;
  appearance: none;
  font-size: 1.4rem;
}
#page_shopping_shipping_multiple .ec-AddAddress__add .ec-input input {
  background-color: var(--bg-color);
  border: none;
  font-size: 1.4rem;
}
#page_shopping_shipping_multiple .ec-AddAddress__actions {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #page_shopping_shipping_multiple .ec-AddAddress__selectNumber {
    margin-top: 10px;
  }
  #page_shopping_shipping_multiple .ec-AddAddress .ec-AddAddress__itemThumb {
    min-width: 100px;
  }
  #page_shopping_shipping_multiple .ec-AddAddress .ec-AddAddress__itemtTitle {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #page_shopping_shipping_multiple .ec-AddAddress__itemtPrice,
  #page_shopping_shipping_multiple .ec-AddAddress__itemtNumber {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #page_shopping_shipping_multiple .ec-AddAddress__add .ec-select label,
  #page_shopping_shipping_multiple .ec-AddAddress__add .ec-input label {
    font-size: 1.4rem;
  }
  #page_shopping_shipping_multiple .ec-AddAddress__actions {
    margin-top: 40px;
  }
}


/* ------------------------------------------------------------
*  マイページ
------------------------------------------------------------ */
#page_mypage_history .ec-layoutRole {
  overflow: inherit;
}
.ec-welcomeMsg {
  border: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 25px;
  text-align: left;
  padding: 0;
  margin: 0 0 40px;
}
.ec-welcomeMsg a {
  color: #629BAF;
  text-decoration: underline !important;
}
.ec-navlistRole .ec-navlistRole__navlist {
  margin-bottom: 60px;
}
.ec-navlistRole .active a {
  background-color: var(--base-color);
  color: #fff;
  transition: var(--base-transition);
  pointer-events: none;
}
.ec-navlistRole .ec-navlistRole__item:not(.active) a {
  opacity: 0.2;
}
.ec-mypageRole {
  padding: 0;
}
.ec-mypageRole .ec-para-normal {
  font-weight: 500;
}
.ec-mypageRole .ec-para-normal .num {
  color: var(--point-color);
  padding-right: 4px;
}
.ec-historyListHeader .ec-historyListHeader__date {
  font-size: 1.6rem;
}
.ec-historyListHeader .ec-historyListHeader__action a {
  width: auto;
  height: auto;
  padding: 8px 20px;
  max-width: 130px;
  font-weight: 500;
}
.ec-imageGrid .ec-imageGrid__content {
  padding-left: 20px;
}
.ec-historyRole .ec-historyRole__detail {
  border: none;
}
.ec-historyRole .ec-historyRole__detail .ec-imageGrid {
  padding: 10px 0;
}
.ec-historyRole .ec-historyRole__detail .ec-imageGrid:first-of-type {
  padding-top: 0;
}
.ec-historyRole .ec-historyRole__detail .ec-historyRole__detailTitle {
  margin: 0;
}
.ec-historyRole .ec-historyRole__standard {
  font-size: 1.4rem;
  margin-top: 3px;
}
.ec-historyRole .ec-historyRole__standard span {
  margin: 0;
}
.ec-historyRole .ec-historyRole__detail .ec-historyRole__detailPrice {
  margin: 10px 0;
}
#page_mypage_history .ec-imageGrid {
  padding: 20px 0;
}
.ec-imageGrid .ec-imageGrid__content a {
  color: #629BAF;
  font-weight: 700;
}
.ec-imageGrid .ec-imageGrid__content .name {
  display: flex;
  align-items: center;
}
.ec-imageGrid .ec-imageGrid__content .standard {
  font-size: 1.4rem;
  font-weight: 500;
}
.ec-imageGrid .ec-imageGrid__content .arrive-schedule {
  font-size: 1.3rem;
  margin-top: 8px;
}
.ec-imageGrid .ec-imageGrid__content .price {
  font-weight: 700;
  margin-top: 15px;
}
#page_mypage_history .ec-orderDelivery,
#page_mypage_history .ec-orderPayment,
#page_mypage_history .ec-orderConfirm,
#page_mypage_history .ec-orderMails {
  margin-bottom: 40px;
}
#page_mypage_history .ec-orderRole__summary .ec-blockBtn--action {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #page_mypage .ec-welcomeMsg {
    margin-bottom: 20px;
  }
  .ec-navlistRole .ec-navlistRole__item a {
    font-size: 1.3rem;
    padding: 10px;
  }
  .ec-historyListHeader .ec-historyListHeader__date,
  .ec-historyListHeader .ec-definitions,
  .ec-historyListHeader .ec-definitions,
  .ec-historyRole .ec-historyRole__detail .ec-historyRole__detailTitle {
    font-size: 1.4rem;
  }
  .ec-historyRole .ec-historyRole__standard {
    font-size: 1.2rem;
  }
  #page_mypage_history .mypage-back {
    margin: 40px auto 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .ec-navlistRole .ec-navlistRole__item:hover {
    background-color: #fff;
  }
  .ec-navlistRole .ec-navlistRole__navlist a:hover {
    background-color: var(--gray-color);
    color: var(--base-color);
    opacity: 1;
  }
}


/* ------------------------------------------------------------
*  お気に入り
------------------------------------------------------------ */
.ec-favoriteRole .ec-favoriteRole__header .num {
  color: var(--point-color);
  font-weight: 500;
  padding-right: 5px;
}
.ec-favoriteRole .ec-favoriteRole__itemList {
  gap: 30px;
}
.ec-favoriteRole .ec-favoriteRole__item {
  width: calc(25% - 23px);
  padding: 20px 20px 0 0;
  margin: 0;
}
.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
  background-color: var(--line-color);
  top: 0;
  right: 0;
  max-width: inherit;
  min-width: inherit;
}
.ec-favoriteRole .ec-favoriteRole__itemTitle {
  font-weight: 700;
  margin-bottom: 10px;
}
.ec-favoriteRole .ec-favoriteRole__itemPrice {
  color: var(--point-color);
  font-size: 2.0rem;
}
.ec-favoriteRole .ec-favoriteRole__itemPrice span {
  font-size: 1.0rem;
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item {
    padding: 10px 0 0;
    width: calc(50% - 15px);
  }
  .ec-favoriteRole .ec-favoriteRole__itemTitle {
    font-size: 1.4rem;
  }
  .ec-favoriteRole .ec-favoriteRole__itemPrice {
    font-size: 1.6rem;
  }
  .ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
    right: -10px;
  }
  .ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
    width: 30px;
    height: 30px;
  }
  .ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle .ec-icon img {
    width: 14px;
    height: 14px;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}


/* ------------------------------------------------------------
*  お届け先一覧
------------------------------------------------------------ */
.ec-addressList .ec-addressList__item {
  display: flex;
  align-items: center;
}
.ec-off1Grid .ec-off1Grid__cell {
  margin: 0;
  width: 100%;
}
.ec-addressList .ec-addressList__remove {
  width: 10%;
}
.ec-addressList .ec-addressList__address {
  font-weight: 500;
  line-height: normal;
  margin: 0;
  width: 70%;
}
.ec-addressList .ec-addressList__action {
  padding: 0;
  top: inherit;
  width: 20%;
}
#page_mypage_delivery .ec-addressList__action .ec-inlineBtn--action {
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: 10px;
  padding: 8px 20px;
  max-width: 90px;
}
@media screen and (max-width: 767px) {
  .ec-addressRole .ec-addressRole__actions {
    margin-top: 10px;
  }
  .ec-addressList .ec-addressList__remove {
    padding: 0;
  }
  .ec-addressList .ec-addressList__address {
    font-size: 1.4rem;
  }
  #page_mypage_delivery .ec-addressList__action .ec-inlineBtn--action {
    margin-right: 0;
  }
}


/* ------------------------------------------------------------
*  退会手続き
------------------------------------------------------------ */
#page_mypage_withdraw .c-form_complete .title,
#page_mypage_withdraw_complete .c-form_complete .title {
  color: var(--point-color);
}
#page_mypage_withdraw .ec-icon {
  text-align: center;
  margin-bottom: 30px;
}
#page_mypage_withdraw .ec-off4Grid .ec-off4Grid__cell {
  flex-direction: column;
  gap: 20px;
}
#page_mypage_withdraw .ec-off4Grid .ec-blockBtn {
  width: 260px;
  height: 60px;
}