/* Variable */
:root{
  --pc-width:1024px;
  --tb-width:768px;
  --sp-width:480px;
  --article-width:1200px;
  --section-width:1000px;
  --small-width:880px;
  --main-color:#F7AF07;
  --font-mincho: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Hiragino Mincho", "MS PMincho", "MS Mincho", serif;
}

.article-width{
width: 100%;
max-width: var(--article-width);
margin-left:auto;
margin-right:auto;
}

.section-width{
width: 100%;
max-width: var(--section-width);
margin-left:auto;
margin-right:auto;
}

.small-width{
width: 100%;
max-width: var(--small-width);
margin-left:auto;
margin-right:auto;
}

/* Utility */
.text-\[18px\]{font-size: 18px;}
.text-\[24px\]{font-size: 24px;}
.text-\[25px\]{font-size: 25px;}
.bg-\[\#FFFFFF\]{background-color: #FFFFFF;}
.size-fit{ width: fit-content; height: fit-content;}
.min-w-\[320px\]{min-width: 320px;}
.m-auto{margin:0 auto;}
.mb-20{margin-bottom:5rem;}
.text-left{text-align: left;}
.gap-8{gap: calc(var(--spacing) * 8);}
.gap-24{gap: calc(var(--spacing) * 24);}
.w-\[300px\]{width: 300px;}
.text-end{text-align: end;}
.justify-items-center{
justify-items: center;}
.py-\[48px\]{padding-top:48px; padding-bottom:48px;}
.pt-\[64px\]{padding-top: 64px;}
.sm\:flex-col{flex-direction: column;}
.md\:grid-cols-2{grid-template-columns: 1fr;}
.md\:grid-cols-6{grid-template-columns: 1fr;}

@media screen and (min-width: 768px) {
.md\:grid-cols-2{grid-template-columns: repeat(2, 1fr);}
.md\:grid-cols-6{grid-template-columns: repeat(6, 1fr);}
}

@media screen and (min-width: 1024px) {
.md:px-12{
  padding-inline:calc(var(--spacing)*12);
}
   .lg\:pt-\[112px\] {
        padding-top: 112px;
    }
}
@media screen and (max-width: 1024px) {
   max-lg\:hidden{
       display:none;
       }
}




.u-color__text--alert{
  color: #CA0000;
}

.link{
  color:#4DAADD;
  text-decoration: underline;
}

.main-color{
  color: var(--main-color);
}

.text-pale-orange{
  color:#E7B134;
  }

.border-orange{
border:1px solid #F7AF07;
}

.border-b-orange{
  border-bottom:1px solid #F7AF07;
}

.bg-pale-orange{
  background-color: #FFEFC8;
}

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

.font-mincho{
  font-family: var(--font-mincho);
}

pre{
  text-wrap: auto;
}

.scrollbar-hide{
scrollbar-width: none;
-ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}


/* 共通レイアウト */

#page-container{
  margin-top:3vw;
}

.col-1-conteiner{
  width: var(--article-width);
}

.grid-img-text{
grid-template-columns: 1fr;
img{
  width: 100%;
  height: auto;
}
}

@media screen and (min-width: 768px) {
.grid-img-text{
  grid-template-columns: minmax(300px, 440px) 1fr;
  }
}

.section-full{
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}



/* 商品ページ */

#select_sort{
  justify-content: flex-end;
}

#pagenation{
  display: flex;
  justify-content: center;
  gap: 16px;
}

#quantity{
  width: 100%;
  height: 48px;
  text-align: center;
}

#option_types{
  margin-bottom: 8px;
}

#option_types .option_type .input_option_type{
  background-color: var(--color-white);
  margin-top: calc(var(--spacing) * 2);
  border-radius: var(--radius-lg);
  border-style: var(--tw-border-style);
  border-width: 1px;
  padding-inline: calc(var(--spacing) * 4);
  border-color: #d5d5d5;
  width: 100%;
  height: 50px;
  text-align: center;
}

#btn-add{
width: 100%;
height: 80px;
text-align: center;
cursor:pointer;
}

#btn-add-async{
  width: 100%;
  height: 80px;
  text-align: center;
}

.p-product_content{
  gap:40px;
  margin-bottom: 5vw;
  grid-template-columns: 760px 1fr;
}

@media screen and (min-width:1025px) and (max-width:1400px){
  .p-product_content{
      gap:24px;
      grid-template-columns: 580px 1fr;
  }
}

@media screen and (min-width:768px) and (max-width:1024px){
  .p-product_content{
      gap:16px;
      grid-template-columns: 380px 1fr;
  }
}

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

.p-product_content .p-product_content__left{
  display: block;
  position: sticky;
  top: 10vh;
  gap: 16px;
  padding: 32px;
    border-radius: 12px;
    background-color: #fffdf5;
}

@media screen and (max-width:768px) {
  .p-product_content .p-product_content__left{
      display: block;
      position: static;
      top: 0;
      height: auto;
      padding: 0;
      gap: 0;
  }   
}

.p-product_content .p-product_content__right{
  width: 90%;
}

#main-img{
    border: 1px solid #eeeeee;
    }

/* @media screen and (min-width: 480px) {
  #main-img {
      width: 100%!important;
      height: 80vh!important;
  }
} */

@media screen and (max-width: 1024px) {
  #sub-images-view {
      max-width: 100%;
      display: flex;
      flex-direction: row;
  }
}


.img-box {
  width: 100% !important;
  margin: 12px 0;
  border: 1px solid #ffffff;
}

.img-box img{
  border-radius:8px;
  border: 1px solid #00000025;
}

/* お買い物ガイド */

#guide-all{
width: 100%;
max-width: 1200px;
margin: auto;
}

#guide-all .nav-menu {
  grid-gap: 16px;
  margin-bottom: 20px;
  max-width: 1200px;
}

#guide-all .nav-menu_btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  background-color: #ffffff;
  padding:56px 48px 104px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.5s ease;
}

@media screen and (max-width: 768px) {
  #guide-all .nav-menu_btn {
      width: 94%;
      margin: 0 3%;
      flex-direction: row;
      padding: 16px;

      span{
          margin-right:16px;
      }
      h2{
          margin-top:0!important;
      }
      p{
          margin-top:8px!important;
      }
  }
}


#guide-all .nav-menu_btn .nav-menu_btn_icon{
  fill:#F7AF07;
  transition: fill 0.3s ease;
}

#guide-all .nav-menu_btn:hover ,#guide-all .nav-menu_btn.active{
  background-color: #F7AF07;
  color:#ffffff;
}

#guide-all .nav-menu_btn:hover .nav-menu_btn_icon,#guide-all .nav-menu_btn.active .nav-menu_btn_icon{
  fill:#ffffff;
}

#shop-guide{
width: 1024px;
margin: auto;
}

@media screen and (max-width: 768px) {
  #shop-guide{
      width: 100%;
  }
}

#shop-guide .nav-menu {
  grid-gap: 16px;
  width: 96%;
  max-width: 820px;
  margin:24px auto;
}

#shop-guide .nav-menu_btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background-color: #ffffff;
  height: 100px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.5s ease;
}

@media screen and (max-width: 768px) {

  #shop-guide .nav-menu {
  grid-gap: 8px;
  }

  #shop-guide .nav-menu_btn {
      flex-direction: row;
      height: auto;
      padding: 12px 8px;
      font-size: 10px;
      justify-content: start;
      text-align: left;
  }

  #shop-guide .nav-menu_btn span{
      margin-right:4px;
  }

  #shop-guide .nav-menu_btn p{
      margin-top:0;
  }

}

#shop-guide .nav-menu_btn .nav-menu_btn_icon{
  fill:#F7AF07;
  transition: fill 0.3s ease;
}

#shop-guide .nav-menu_btn:hover ,#shop-guide .nav-menu_btn.active{
  background-color: #F7AF07;
  color:#ffffff;
}

#shop-guide .nav-menu_btn:hover .nav-menu_btn_icon,#shop-guide .nav-menu_btn.active .nav-menu_btn_icon{
  fill:#ffffff;
}

#shop-guide .content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* アニメーションの設定 */
}

#shop-guide .content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* アニメーション開始時に即座に表示 */
}
.details-summary {
position: relative;
display: block;
padding: 12px 20px;
font-size: 18px;
&:hover {
  cursor: pointer;
  opacity: 0.8;
}
.btn {
  position: absolute;
      top: 37%;
      right: 4%;
      width: 18px;
      height: 18px;
      transform-origin: center center;
      transition-duration: 0.2s;

      &:before,
      &:after {
          content: "";
          background-color: #F7AF07;
          border-radius: 10px;
          width: 18px;
          height: 2px;
          position: absolute;
          top: 8px;
          left: 0;
          transform-origin: center center;
      }
      &:before {
          width: 2px;
          height: 18px;
          top: 0;
          left: 8px;
      }
  }
&.is-active {
  .btn {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    &:before {
            content: none;
        }	
  }
  }
}

.details-summary::-webkit-details-marker {
display: none;
}

.details-content {
padding: 20px;
p {
  margin: 0 0 20px;
  font-size: 16px;
  text-align: left;
  &:last-of-type {
    margin: 0 0 0;
  }
}
}


/* フリーページ（こだわり） */

#page-kodawari .nav-menu {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width:768px){
  #page-kodawari .nav-menu {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 8px;
  }
}

#page-kodawari .nav-menu_btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background-color: #ffffff;
  height: 84px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.5s ease;
}

@media screen and (max-width:768px){
#page-kodawari .nav-menu_btn {
  height: 64px;
}
}

#page-kodawari .nav-menu_btn .nav-menu_btn_icon{
  fill:#F7AF07;
  transition: fill 0.3s ease;
}

#page-kodawari .nav-menu_btn:hover ,#page-kodawari .nav-menu_btn.active{
  background-color: #F7AF07;
  color:#ffffff;
}

#page-kodawari .nav-menu_btn:hover .nav-menu_btn_icon,#page-kodawari .nav-menu_btn.active .nav-menu_btn_icon{
  fill:#ffffff;
}

#page-kodawari .content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* アニメーションの設定 */
}

#page-kodawari .content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* アニメーション開始時に即座に表示 */
}


/* フリーページ（ごまパワー） */

#page-goma-power .nav-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width:768px){
  #page-goma-power .nav-menu {
    grid-template-columns: 1fr;
  grid-gap: 8px;
  }
}

#page-goma-power .nav-menu_btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background-color: #ffffff;
  height: 100px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.5s ease;
}

#page-goma-power .nav-menu_btn .nav-menu_btn_icon{
  fill:#F7AF07;
  transition: fill 0.3s ease;
}

#page-goma-power .nav-menu_btn:hover ,#page-goma-power .nav-menu_btn.active{
  background-color: #F7AF07;
  color:#ffffff;
}

#page-goma-power .nav-menu_btn:hover .nav-menu_btn_icon,#page-goma-power .nav-menu_btn.active .nav-menu_btn_icon{
  fill:#ffffff;
}

#page-goma-power .content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* アニメーションの設定 */
}

#page-goma-power .content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* アニメーション開始時に即座に表示 */
}

#page-goma-power .text-red{
  color:#CA0000;
}

.goma-power-1-04{
  content:"";
  background-image: url;    
}

.goma-power-1-04{
  height: 660px;
  display: flex;
  flex-direction: column;
  padding: 0 92px;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .goma-power-1-04{
    height: max-content;
    padding: 5% 3%;
  }
}

.grid-06{
  grid-template-columns: repeat(6, 1fr);
}

@media screen and (max-width: 768px) {
  .grid-06{
    grid-template-columns: repeat(3, 1fr);
  }
}

.bg-img{
  z-index: -1;
}

.goma-power-1-04,#goma-content2 .content__inner,#goma-content3 .content__inner ,.bg-01{
  content:"";
  background: url(https://d2w53g1q050m78.cloudfront.net/wwwonizakicojp/uploads/page/goma-power/goma_ikiiki_bg.png);
  background-repeat: repeat;
  background-size: inherit;
  border-radius: 40px;
  background-position: center top;
}

.content1_goma-img{
min-width:540px;
}

@media screen and (max-width: 768px) {
  .content1_goma-img{
    min-width: 100%;
    max-width: 300px;
  }
}

.goma-content3__list li:before{
  content:"◯";
  color: #F7AF07;
width:24px;
height:24px;
object-fit:contain;
margin-right:8px;
}


.p-cart_content {
  padding-right: 40px;
  padding-left: 40px;
  width: min(100%, 1280px);
  margin: auto;
}
@media screen and (max-width: 719px) {
  .p-cart_content {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-cart_content__message-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: min(100%, 1200px);
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 719px) {
  .p-cart_content__message-container {
    margin: -40px auto 20px;
  }
}
.p-cart_content__message-container + .c-cart_item {
  border-top: 1px solid var(--color-page-border);
}
.p-cart_content__message-body {
  line-height: 1.65;
  font-size: var(--font-size-text-body);
  color: var(--color-page-accent);
  width: 100%;
}
.p-cart_content__title {
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .p-cart_content__inner {
    display: grid;
    grid-template: "products sidebar" auto "gifts    sidebar" auto/1fr auto;
    gap: 0 60px;
  }
}
.p-cart_content__inner__gift {
  grid-area: gifts;
}
.p-cart_content__inner__product {
  grid-area: products;
}
@media screen and (max-width: 719px) {
  .p-cart_content__inner__product {
    width: 100%;
  }
}
.p-cart_content__inner__side {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #ffffff;
  padding: 32px 24px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .p-cart_content__inner__side {
    width: 320px;
  }
}
@media screen and (max-width: 1023px) {
  .p-cart_content__inner__side {
    margin-top: 24px;
  }
}

.p-cart_content__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  padding: 8px 24px;
  height: 40px;
  width: 280px;
  margin: 20px auto;
  border: 1px solid var(--color-input-border);
  color: var(--color-text-body);
}
.p-cart_content .c-cart_submit {
  width: 100%;
  margin: 0 auto;
  order: 2;
}
@media screen and (min-width: 1024px) {
  .p-cart_content .c-cart_submit {
    order: 2;
  }
}
.p-cart_content .c-billing_list {
  width: 100%;
  margin: 0 0 24px;
  order: 1;
}
@media screen and (min-width: 1024px) {
  .p-cart_content .c-billing_list {
    order: 1;
    margin: 0 0 40px;
  }
}
#cv-xsells-view .p-cart_content__inner {
  justify-content: center;
}
#cv-xsells-view .p-cart_content__inner__side {
  display: none;
}
.p-checkout__list__block {
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
@media screen and (max-width: 719px) {
  .p-checkout__list__block {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-checkout__list__block__inner {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.p-checkout__list__block__inner__content {
  margin-bottom: 40px;
}
.p-checkout__list__block__inner__content a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.p-checkout__list__block__inner__title {
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 719px) {
  .p-checkout__list__block__inner__title {
    font-size: 22px;
  }
}
.p-checkout__list__block__inner__title.--shipping-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 719px) {
  .p-checkout__list__block__inner__payment--credit {
    margin-top: 20px;
  }
}
.p-checkout__list__block__inner__button {
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 719px) {
  .p-checkout__list__block__inner__button {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}
.p-checkout__list__block__inner__button i {
  font-size: 24px;
}
.p-checkout__list__block__inner__button span {
  font-size: 14px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.p-checkout__list__block__inner__category {
  margin-top: 40px;
}
.p-checkout__list__block__inner__category__title {
  display: flex;
  justify-content: space-between;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 7px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 18px;
}
.p-checkout__list__block__inner__category__title button {
  display: flex;
  align-items: center;
}
.p-checkout__list__block__inner__category__title button span {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  line-height: 1.5;
  font-size: 14px;
}
.p-checkout__list__block__inner__category__title button i {
  font-size: 23px;
}
.p-checkout__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-checkout__bottom__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__submit {
    font-size: 16px;
  }
}
.p-checkout__bottom__submit:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__submit {
    max-width: 280px;
    height: 50px;
  }
}
.p-checkout__bottom__back {
  font-size: 14px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  margin-top: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__back {
    font-size: 14px;
  }
}
.p-checkout__bottom__back:hover {
  opacity: 0.7;
}
.p-checkout__bottom.is-new-view {
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom.is-new-view {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-checkout__bottom__select {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__select {
    font-size: 16px;
  }
}
.p-checkout__bottom__select:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__select {
    max-width: 280px;
    height: 50px;
  }
}
.p-checkout__bottom__wrapper_newview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__wrapper_newview {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.p-checkout__bottom__backbtn_wrap {
  padding-right: 20px;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__backbtn_wrap {
    padding-right: 0;
    margin-top: 20px;
  }
}
.p-checkout__bottom__buttons_wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  flex: 0 0 660px;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__buttons_wrap {
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-basis: auto;
  }
}
.p-checkout__bottom__buttons_wrap > *:last-child {
  margin-right: 20px;
}
@media screen and (max-width: 719px) {
  .p-checkout__bottom__buttons_wrap > *:last-child {
    margin-top: 20px;
    margin-right: 0;
  }
}
.p-checkout__add-shipping-address {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border-radius: 2px;
  border: 1px solid var(--color-input-border, #bdc1c2);
  background: var(--color-page-bg, #ffffff);
  width: clamp(190px, 55.5555555556%, 280px);
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .p-checkout__add-shipping-address {
    margin: 0;
  }
}
.p-checkout__add-shipping-address i {
  font-size: 1.8461538462em;
}
#cv-xsells-view .p-checkout__list__block {
  padding-top: 90px;
  border-top: 1px solid;
  border-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 719px) {
  #cv-xsells-view .p-checkout__list__block {
    padding-top: 60px;
  }
}
/* stylelint-disable scss/at-extend-no-missing-placeholder */
.p-checkout_confirm {
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-checkout_confirm__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner {
    flex-direction: column;
  }
}
.p-checkout_confirm__inner__list {
  width: calc(100% - 380px);
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner__list {
    order: 2;
    width: 100%;
    margin-top: 60px;
  }
}
.p-checkout_confirm__inner__list__block:first-of-type, .p-checkout_confirm__inner__list__block--bottom:first-of-type {
  margin-top: 40px;
}
.p-checkout_confirm__inner__list__block:not(:last-child), .p-checkout_confirm__inner__list__block--bottom:not(:last-child) {
  margin-bottom: 40px;
}
.p-checkout_confirm__inner__list__block__title {
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner__list__block__title {
    font-size: 22px;
  }
}
.p-checkout_confirm__inner__list__block__category {
  font-size: 18px;
  border-bottom: 1px solid;
  margin-bottom: 10px;
  padding-bottom: 7px;
  font-weight: bold;
}
.p-checkout_confirm__inner__list__block__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner__list__block__submit {
    font-size: 16px;
  }
}
.p-checkout_confirm__inner__list__block__submit:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner__list__block__submit {
    max-width: 280px;
    height: 50px;
  }
}
.p-checkout_confirm__inner__list__block__back {
  font-size: 14px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  margin-top: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner__list__block__back {
    font-size: 14px;
  }
}
.p-checkout_confirm__inner__list__block__back:hover {
  opacity: 0.7;
}
.cv-confirm-view .p-checkout_confirm__inner__list__block__back {
  display: none;
}
.p-checkout_confirm__inner__list__block--bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-checkout_confirm__inner__list__block__content:not(:last-child) {
  margin-bottom: 40px;
}
.p-checkout_confirm__inner__side {
  width: 320px;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner__side {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.p-checkout_confirm__inner__side .c-billing_list {
  margin-bottom: 30px;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner__side .c-billing_list {
    order: 2;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__inner__side .c-cart_list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__static {
    display: none;
  }
}
.p-checkout_confirm__float {
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100vw;
  padding: 8px 20px 9px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
@media screen and (min-width: 720px) {
  .p-checkout_confirm__float {
    display: none;
  }
}
.p-checkout_confirm__float #AmazonPayButton {
  margin: auto !important;
  flex-basis: 165px;
}
.p-checkout_confirm__float_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 500px;
  margin: auto;
}
.p-checkout_confirm__form {
  font-size: 14px;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__form {
    font-size: 14px;
  }
}
.p-checkout_confirm__total {
  flex-grow: 1;
}
.p-checkout_confirm__price {
  font-size: 24px;
}
@media screen and (max-width: 719px) {
  .p-checkout_confirm__price {
    font-size: 22px;
  }
}
.p-checkout_confirm__submit {
  flex-basis: 165px;
  padding: 10px 0;
  border-radius: 2px;
  margin-left: 15px;
  font-size: inherit;
}
.p-login {
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 719px) {
  .p-login {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-login__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 719px) {
  .p-login__inner {
    display: block;
  }
}
.p-login__inner__login {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 719px) {
  .p-login__inner__login {
    width: 100%;
  }
}
.p-login__inner__login .p-page_header {
  margin-bottom: 30px;
}
@media screen and (max-width: 719px) {
  .p-login__inner__login .p-page_header {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-login__inner__login__bottom {
  text-align: center;
  margin-top: 40px;
}
.p-login__inner__login__bottom__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
  margin: 0 auto 20px;
  background: #000000;
  color: #ffffff;
}
@media screen and (max-width: 719px) {
  .p-login__inner__login__bottom__submit {
    font-size: 16px;
  }
}
.p-login__inner__login__bottom__submit:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-login__inner__login__bottom__submit {
    max-width: 280px;
    height: 50px;
  }
}
.p-login__inner__login__bottom__forget {
  font-size: 14px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
@media screen and (max-width: 719px) {
  .p-login__inner__login__bottom__forget {
    font-size: 14px;
  }
}
.p-login__inner__registration {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 719px) {
  .p-login__inner__registration {
    width: 100%;
    margin-top: 60px;
  }
}
.p-login__inner__registration .p-page_header {
  margin-bottom: 30px;
}
@media screen and (max-width: 719px) {
  .p-login__inner__registration .p-page_header {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-login__inner__registration__text {
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 719px) {
  .p-login__inner__registration__text {
    font-size: 14px;
  }
}
.p-login__inner__registration__bottom {
  margin-top: 40px;
}
.p-login__inner__registration__bottom__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
  margin: 0 auto;
  background: #000000;
  color: #ffffff;
}
@media screen and (max-width: 719px) {
  .p-login__inner__registration__bottom__btn {
    font-size: 16px;
  }
}
.p-login__inner__registration__bottom__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-login__inner__registration__bottom__btn {
    max-width: 280px;
    height: 50px;
  }
}
.p-login__inner__registration__line {
  margin-top: 40px;
}
.p-login__inner__registration__line__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
  margin: 0 auto;
}
@media screen and (max-width: 719px) {
  .p-login__inner__registration__line__btn {
    font-size: 16px;
  }
}
.p-login__inner__registration__line__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-login__inner__registration__line__btn {
    max-width: 280px;
    height: 50px;
  }
}
.p-account_form {
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 719px) {
  .p-account_form {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-account_form__inner {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.p-account_form__inner__bottom {
  text-align: center;
  margin-top: 60px;
}
.p-account_form__inner__bottom__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
  margin: 0 auto 20px;
  background-color: #000000;
  color: #ffffff;
}
@media screen and (max-width: 719px) {
  .p-account_form__inner__bottom__btn {
    font-size: 16px;
  }
}
.p-account_form__inner__bottom__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-account_form__inner__bottom__btn {
    max-width: 280px;
    height: 50px;
  }
}
.p-account_form__inner__bottom__mailbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
  max-width: 400px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 719px) {
  .p-account_form__inner__bottom__mailbtn {
    font-size: 16px;
  }
}
.p-account_form__inner__bottom__mailbtn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-account_form__inner__bottom__mailbtn {
    max-width: 280px;
    height: 50px;
  }
}
@media screen and (max-width: 719px) {
  .p-account_form__inner__bottom__mailbtn {
    max-width: 100%;
  }
}
.p-account_form__inner__bottom__link {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  transition: 0.3s;
}
.p-account_form__inner__bottom__link:hover {
  opacity: 0.7;
}
.p-account {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 719px) {
  .p-account {
    padding-right: 15px;
    padding-left: 15px;
  margin-bottom: 40px;
  }
}
.p-account__inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 719px) {
  .p-account__inner {
    flex-wrap: wrap;
  }
}
.p-account__inner__menu {
  width: 240px;
  border-right-width: 1px;
  border-right-style: solid;
}
@media screen and (max-width: 719px) {
  .p-account__inner__menu {
    width: 100%;
    border-right: none;
    margin-top: 60px;
    order: 2;
  }
}
.p-account__inner__content {
  width: calc(100% - 300px);
}
@media screen and (max-width: 719px) {
  .p-account__inner__content {
    width: 100%;
    margin-top: 15px;
    order: 1;
  }
}
.p-account__inner__content > .order_cancel_on_mypage {
  margin-top: 10px;
}
.p-account__inner__content__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-account__inner__content__title__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-radius: 2px;
  transition: 0.3s;
  margin-left: 20px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__title__btn {
    font-size: 14px;
  }
}
.p-account__inner__content__title__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__title__btn {
    margin-left: 0;
    margin-top: 20px;
  }
}
.p-account__inner__content__title__subs-form {
  width: 280px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__title__subs-form {
    width: 100%;
    margin-top: 20px;
  }
}
.p-account__inner__content__title__subs-form__btn {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 2px;
}
.p-account__inner__content__title__subs-form__note {
  margin-bottom: 10px;
}
.p-account__inner__content__title__subs-form__bottom {
  margin-top: 20px;
}
.p-account__inner__content__title__subs-form__bottom__btn {
  width: 100%;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
  border-radius: 2px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__title__subs-form__bottom__btn {
    max-width: 240px;
  }
}
.p-account__inner__content__title__form {
  max-width: 240px;
  width: 100%;
  margin-left: 20px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__title__form {
    margin-left: 0;
    margin-top: 20px;
  }
}
.p-account__inner__content__title__form .p-account__inner__content__title__btn {
  margin-left: 0;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__title__form .p-account__inner__content__title__btn {
    margin-top: 0;
  }
}
.p-account__inner__content__lead {
  font-size: 14px;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__lead {
    font-size: 14px;
  }
}
.p-account__inner__content__lead a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.p-account__inner__content__copy {
  margin-top: 40px;
}
.p-account__inner__content__copy__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-radius: 2px;
  transition: 0.3s;
  margin-left: 10px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__copy__btn {
    font-size: 14px;
  }
}
.p-account__inner__content__copy__btn:hover {
  opacity: 0.7;
}
.p-account__inner__content__form {
  margin-top: 40px;
}
.p-account__inner__content__form__text {
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__form__text {
    font-size: 14px;
  }
}
.p-account__inner__content__form__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
.p-account__inner__content__form__bottom__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  width: 100%;
  height: 60px;
  font-size: 13px;
  border-radius: 2px;
  transition: 0.3s;
  background: #000000;
  color: #ffffff;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__form__bottom__btn {
    font-size: 12px;
  }
}
.p-account__inner__content__form__bottom__btn:hover {
  opacity: 0.7;
}
.p-account__inner__content__form__bottom__link {
  font-size: 14px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  margin-top: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__form__bottom__link {
    font-size: 14px;
  }
}
.p-account__inner__content__form__bottom__link:hover {
  opacity: 0.7;
}
.p-account__inner__content__form__bottom__link--deletebtn {
  display: flex;
  align-items: center;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.p-account__inner__content__form__bottom__link--deletebtn > i {
  font-size: 24px;
  display: inline-block;
}
.p-account__inner__content__form__bottom__link--deletebtn > span {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.p-account__inner__content__form__bottom__leave {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
  margin-top: 60px;
}
@media screen and (max-width: 719px) {
  .p-account__inner__content__form__bottom__leave {
    font-size: 16px;
  }
}
.p-account__inner__content__form__bottom__leave:hover {
  opacity: 0.7;
}
.p-account__inner__content .p-history_list {
  margin-top: 40px;
}
.p-account__inner__content .c-pagination {
  margin-top: 80px;
}
.p-mypage {
  margin-top: 20px;
}
.p-mypage__name {
  font-size: 20px;
}
@media screen and (max-width: 719px) {
  .p-mypage__name {
    font-size: 16px;
  }
}
.p-mypage__block {
  margin-top: 60px;
}
.p-mypage__block__title {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 8px;
}
@media screen and (max-width: 719px) {
  .p-mypage__block__title {
    font-size: 18px;
  }
}
.p-mypage__block__subscription__item {
  display: flex;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 719px) {
  .p-mypage__block__subscription__item {
    display: block;
  }
}
.p-mypage__block__subscription__item:not(:last-child) {
  margin-bottom: 10px;
}
.p-mypage__block__subscription__item__label {
  font-size: 14px;
  margin-right: 20px;
}
@media screen and (max-width: 719px) {
  .p-mypage__block__subscription__item__label {
    font-size: 14px;
  }
}
@media screen and (max-width: 719px) {
  .p-mypage__block__subscription__item__label {
    margin-right: 0;
    margin-bottom: 6px;
  }
}
.p-mypage__block__subscription__item__date {
  flex: 1;
  font-size: 14px;
  margin-right: 20px;
}
@media screen and (max-width: 719px) {
  .p-mypage__block__subscription__item__date {
    font-size: 14px;
  }
}
@media screen and (max-width: 719px) {
  .p-mypage__block__subscription__item__date {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.p-mypage__block__subscription__item__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-mypage__block__subscription__item__btn {
    font-size: 14px;
  }
}
.p-mypage__block__subscription__item__btn:hover {
  opacity: 0.7;
}
.p-mypage__block.--more {
  grid-column: 1/-1;
  display: none;
  margin: unset;
}
.p-mypage__coupon {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 1024px) {
  .p-mypage__coupon {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-mypage__coupon .c-button.--more {
  grid-column: 1/-1;
  margin: auto;
}
.p-mypage__membership {
  container-type: inline-size;
  container-name: mypage_membership_container;
  background: #f5f8fa;
}
.p-mypage .c-membership_rank,
.p-mypage .c-avairable_points {
  width: auto;
}
@container mypage_membership_container (min-width: 480px) {
  .p-mypage .c-membership_rank,
  .p-mypage .c-avairable_points {
    width: 480px;
    margin: auto;
  }
}
.p-mypage .c-membership_rank + .c-avairable_points {
  border-top: 1px solid var(--color-page-border, #d8dddf);
}
.p-mypage__coupon-modal {
  width: 94.8717948718vw;
  max-width: 560px;
}
.p-history_list__item:not(:last-child) {
  margin-bottom: 40px;
}
.p-history_list__item__header {
  display: flex;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 719px) {
  .p-history_list__item__header {
    flex-wrap: wrap;
  }
}
.p-history_list__item__header__id {
  font-size: 18px;
  margin-right: 20px;
}
@media screen and (max-width: 719px) {
  .p-history_list__item__header__id {
    font-size: 18px;
  }
}
.p-history_list__item__header__date {
  flex: 1;
  font-size: 14px;
  margin-right: 20px;
}
@media screen and (max-width: 719px) {
  .p-history_list__item__header__date {
    font-size: 14px;
  }
}
@media screen and (max-width: 719px) {
  .p-history_list__item__header__date {
    margin-right: 0;
  }
}
.p-history_list__item__header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-history_list__item__header__btn {
    font-size: 14px;
  }
}
.p-history_list__item__header__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-history_list__item__header__btn {
    margin-top: 10px;
  }
}
.p-history_list__item__detail .c-cart_item:first-child {
  border-top: none;
}
.p-address_list {
  margin-top: 30px;
}
.p-address_list__add {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  width: 100%;
  height: 40px;
  font-size: 13px;
  border-radius: 2px;
  transition: 0.3s;
  background: #000000;
  color: #ffffff;
}
@media screen and (max-width: 719px) {
  .p-address_list__add {
    font-size: 12px;
  }
}
.p-address_list__add:hover {
  opacity: 0.7;
}
.p-address_list .c-account_table {
  margin-top: 60px;
}
.p-payment_list {
  margin-top: 30px;
}
.p-payment_list__add__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  width: 100%;
  height: 40px;
  font-size: 13px;
  border-radius: 2px;
  transition: 0.3s;
  background: #000000;
  color: #ffffff;
}
@media screen and (max-width: 719px) {
  .p-payment_list__add__btn {
    font-size: 12px;
  }
}
.p-payment_list__add__btn:hover {
  opacity: 0.7;
}
.p-payment_list__add__win {
  margin-top: 40px;
}
.p-payment_list__add__win__form__text {
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 719px) {
  .p-payment_list__add__win__form__text {
    font-size: 14px;
  }
}
.p-payment_list__add__win__form__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.p-payment_list__add__win__form__bottom__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-payment_list__add__win__form__bottom__btn {
    font-size: 16px;
  }
}
.p-payment_list__add__win__form__bottom__btn:hover {
  opacity: 0.7;
}
.p-payment_list__add__win__form__bottom__link {
  font-size: 14px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  margin-top: 20px;
}
@media screen and (max-width: 719px) {
  .p-payment_list__add__win__form__bottom__link {
    font-size: 14px;
  }
}
.p-payment_list .c-account_table {
  margin-top: 60px;
}
.p-history_detail {
  margin-top: 30px;
}
.p-history_detail + .p-history_detail {
  margin-top: 60px;
}
@media screen and (max-width: 719px) {
  .p-history_detail + .p-history_detail {
    margin-top: 50px;
  }
}
.p-history_detail__block:not(:last-child) {
  margin-bottom: 60px;
}
.p-history_detail__block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 719px) {
  .p-history_detail__block__head {
    display: block;
  }
}
.p-history_detail__block__head__title {
  font-size: 18px;
}
@media screen and (max-width: 719px) {
  .p-history_detail__block__head__title {
    font-size: 18px;
  }
}
.p-history_detail__block__head__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-history_detail__block__head__btn {
    font-size: 14px;
  }
}
.p-history_detail__block__head__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-history_detail__block__head__btn {
    margin-top: 10px;
  }
}
.p-history_detail__block__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 719px) {
  .p-history_detail__block__wrapper {
    display: block;
  }
}
.p-history_detail__block__wrapper .p-history_detail__block__list {
  width: calc(100% - 380px);
}
@media screen and (max-width: 719px) {
  .p-history_detail__block__wrapper .p-history_detail__block__list {
    width: 100%;
  }
}
.p-history_detail__block__wrapper .c-billing_list {
  width: 320px;
}
@media screen and (max-width: 719px) {
  .p-history_detail__block__wrapper .c-billing_list {
    width: 100%;
    margin-top: 60px;
  }
}
.p-history_detail__list + .p-history_detail__list {
  margin-top: 20px;
}
.p-subscription_list {
  margin-top: 30px;
}
.p-subscription_list__item:not(:last-child) {
  margin-bottom: 20px;
}
/* stylelint-disable */
.p-subscription_detail {
  margin-top: 30px;
}
.p-subscription_detail__block {
  width: 100%;
  margin-bottom: 40px;
}
.p-subscription_detail__block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__head {
    display: block;
  }
}
.p-subscription_detail__block__head__title {
  font-size: 18px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__head__title {
    font-size: 18px;
  }
}
.p-subscription_detail__block__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__wrapper {
    display: block;
  }
}
.p-subscription_detail__block__wrapper .p-subscription_detail__block__list {
  width: calc(100% - 380px);
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__wrapper .p-subscription_detail__block__list {
    width: 100%;
  }
}
.p-subscription_detail__block__wrapper .c-billing_list {
  width: 320px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__wrapper .c-billing_list {
    width: 100%;
    margin-top: 60px;
  }
}
.p-subscription_detail__block__additional-items {
  margin-top: 30px;
}
.p-subscription_detail__block__additional-items__list {
  display: flex;
  width: 100%;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.p-subscription_detail__block__additional-items__list:not(.js-subs-detail-productslider) {
  width: calc(100% + 45px);
  padding-left: 0;
  padding-right: 0;
  margin-left: -22.5px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list:not(.js-subs-detail-productslider) {
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-left: -10px;
    padding-left: 0;
    padding-right: 0;
    justify-content: space-between;
  }
  .p-subscription_detail__block__additional-items__list:not(.js-subs-detail-productslider) > .c-product_item {
    width: calc(50% - 20px);
    margin: 0 10px 10px;
  }
}
.p-subscription_detail__block__additional-items__list .c-product_item {
  width: calc((100% - 180px) / 4);
  margin: 0 22.5px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list .c-product_item {
    margin: 0 10px;
  }
}
.p-subscription_detail__block__additional-items__list .slick-track {
  margin-left: 0;
}
.p-subscription_detail__block__additional-items__list .slick-arrow {
  width: 20px;
  height: 24px;
  background: url("./images/history_slider_arrow.png") center/contain no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list .slick-arrow {
    width: 10px;
    height: 16px;
  }
}
.p-subscription_detail__block__additional-items__list .slick-arrow:before {
  content: none;
}
.p-subscription_detail__block__additional-items__list .slick-arrow.slick-next {
  transform: scale(-1, 1);
  right: -10px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list .slick-arrow.slick-next {
    right: 0px;
  }
}
.p-subscription_detail__block__additional-items__list .slick-arrow.slick-prev {
  z-index: 1;
  left: -10px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list .slick-arrow.slick-prev {
    left: 0;
  }
}
.p-subscription_detail__block__additional-items__list .slick-arrow.slick-disabled {
  opacity: 0;
}
.p-subscription_detail__block__additional-items__list .slick-dots {
  bottom: -30px;
  left: 0;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list .slick-dots {
    margin-bottom: 40px;
    bottom: -60px;
  }
}
.p-subscription_detail__block__additional-items__list .slick-dots > li {
  margin: 0;
}
.p-subscription_detail__block__additional-items__list .slick-slide {
  padding: 0 12px;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list .slick-slide {
    padding: 0 10px;
  }
}
.p-subscription_detail__block__additional-items__list .slick-slide .c-product_item {
  margin: 0;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__additional-items__list .slick-slide .c-product_item {
    margin: 0;
  }
}
.p-subscription_detail__block__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.p-subscription_detail__block__bottom__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__bottom__btn {
    font-size: 16px;
  }
}
.p-subscription_detail__block__bottom__btn:hover {
  opacity: 0.7;
}
.p-subscription_detail__resume-form {
  max-width: 350px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-subscription_detail__resume-form__input {
  margin-top: 5px;
}
.p-subscription_detail__block__head {
  gap: 8px;
}
.p-subscription_detail__block__head__title {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
}
.p-subscription_detail__block__head__title .c-encircled_number {
  color: #ffffff;
  font-size: 0.8235294118em;
  --circle-color: var(--color-page-accent);
  --circle-radius: calc(24 / 14 / 2 * 1em);
}
.p-subscription_detail__block__head__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  padding: 0 16px;
  box-sizing: border-box;
  height: 40px;
  max-width: 240px;
  min-width: 180px;
  width: auto;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__head__btn {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
}
.p-subscription_detail__block__head__navigation {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail__block__head__navigation:has(> :nth-child(2)) > * {
    width: calc((100% - 8px) / 2);
  }
}
.p-subscription_detail__management {
  float: right;
}
@media screen and (max-width: 719px) {
  .p-subscription_detail .c-cart_item__info {
    display: flex;
    flex-direction: column;
  }
  .p-subscription_detail__management {
    order: 1;
    align-self: end;
    margin-top: auto;
  }
  .p-subscription_detail .c-toggle_menu__list {
    right: 0;
    z-index: 1;
  }
}
.p-subscription_edit {
  margin-top: 40px;
}
.p-subscription_edit__block {
  padding: 40px 0;
  border-top-width: 1px;
  border-top-style: solid;
}
.p-subscription_edit__block .p-account__inner__content__form {
  margin-top: 30px;
}
.p-subscription_edit__block .p-account__inner__content__form__bottom {
  margin-top: 30px;
}
.p-subscription_edit__block__title {
  font-size: 18px;
}
@media screen and (max-width: 719px) {
  .p-subscription_edit__block__title {
    font-size: 18px;
  }
}
.p-subscription_edit__block__lead {
  font-size: 14px;
  line-height: 2;
  margin-top: 10px;
}
@media screen and (max-width: 719px) {
  .p-subscription_edit__block__lead {
    font-size: 14px;
  }
}
.p-subscription_edit__block__point {
  font-size: 14px;
}
@media screen and (max-width: 719px) {
  .p-subscription_edit__block__point {
    font-size: 14px;
  }
}
.p-subscription_edit__block__notes {
  font-size: 12px;
}
@media screen and (max-width: 719px) {
  .p-subscription_edit__block__notes {
    font-size: 12px;
  }
}
.p-point_list {
  margin-top: 30px;
}
.p-favorite__header {
  margin-top: 40px;
}
.p-favorite__list {
  margin-top: 40px;
}
.p-favorite__list .p-product_list__list__item {
  width: calc((100% - 120px) / 3);
}
@media screen and (max-width: 719px) {
  .p-favorite__list .p-product_list__list__item {
    width: calc((100% - 15px) / 2);
  }
}
.p-favorite__list .p-product_list__list__item:not(:nth-child(3n)) {
  margin-right: 60px;
}
@media screen and (max-width: 719px) {
  .p-favorite__list .p-product_list__list__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.p-favorite__list .p-product_list__list__item:nth-child(n+4) {
  margin-top: 40px;
}
@media screen and (max-width: 719px) {
  .p-favorite__list .p-product_list__list__item:nth-child(n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 719px) {
  .p-favorite__list .p-product_list__list__item:nth-child(odd) {
    margin-right: 15px;
  }
}
@media screen and (max-width: 719px) {
  .p-favorite__list .p-product_list__list__item:nth-child(n+3) {
    margin-top: 20px;
  }
}
.p-contact__link {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 719px) {
  .p-contact__link {
    flex-direction: column;
    align-items: center;
  }
}
.p-contact__link__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-contact__link__btn {
    font-size: 16px;
  }
}
.p-contact__link__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-contact__link__btn {
    max-width: 280px;
    height: 50px;
  }
}
.p-contact__link__btn:not(:first-child) {
  margin-left: 40px;
}
@media screen and (max-width: 719px) {
  .p-contact__link__btn:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
.p-contact__head {
  margin-top: 60px;
  margin-bottom: 30px;
}
.p-contact__head__title {
  font-size: 24px;
}
@media screen and (max-width: 719px) {
  .p-contact__head__title {
    font-size: 22px;
  }
}
.p-contact__head__notes {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 719px) {
  .p-contact__head__notes {
    font-size: 14px;
  }
}
.p-password {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.p-password__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 40px;
}
@media screen and (max-width: 719px) {
  .p-password__inner {
    padding: 20px;
  }
}
.p-password__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.p-password__logo {
  margin-bottom: 60px;
}
.p-password__title {
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 719px) {
  .p-password__title {
    font-size: 24px;
  }
}
.p-password__form {
  display: flex;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 719px) {
  .p-password__form {
    display: block;
    text-align: center;
  }
}
.p-password__input {
  flex: 1;
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
}
@media screen and (max-width: 719px) {
  .p-password__input {
    font-size: 16px;
  }
}
@media screen and (max-width: 719px) {
  .p-password__input {
    padding: 0 15px;
  }
}
.p-password__input::-webkit-input-placeholder {
  opacity: 0.7;
}
.p-password__submit {
  width: 100px;
  height: 40px;
  font-size: 16px;
  border-radius: 2px;
  margin-left: 10px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-password__submit {
    font-size: 16px;
  }
}
.p-password__submit:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-password__submit {
    margin-top: 10px;
    margin-left: 0;
  }
}
.p-password__text {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 719px) {
  .p-password__text {
    font-size: 14px;
  }
}
.p-password__link {
  font-size: 14px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
@media screen and (max-width: 719px) {
  .p-password__link {
    font-size: 14px;
  }
}
.p-password__copyright {
  font-size: 12px;
}
@media screen and (max-width: 719px) {
  .p-password__copyright {
    font-size: 12px;
  }
}
/* stylelint-disable no-descending-specificity */
.p-calendar__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-calendar__header .prev,
.p-calendar__header .next {
  flex-shrink: 0;
  flex-grow: 0;
}
.p-calendar__header .prev a,
.p-calendar__header .next a {
  display: inline-block;
}
.p-calendar__header .prev a > span,
.p-calendar__header .next a > span {
  font-size: 14px;
  letter-spacing: 0.05em;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
@media screen and (max-width: 719px) {
  .p-calendar__header .prev a > span,
  .p-calendar__header .next a > span {
    font-size: 14px;
  }
}
.p-calendar__header > .month {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 719px) {
  .p-calendar__header > .month {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
.p-calendar__header > .month > .backlink {
  padding: 5px 10px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
}
@media screen and (max-width: 719px) {
  .p-calendar__header > .month > .backlink {
    padding: 3px 5px;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.p-calendar__header > .month > .backlink > span {
  font-size: 14px;
}
@media screen and (max-width: 719px) {
  .p-calendar__header > .month > .backlink > span {
    font-size: 14px;
  }
}
@media screen and (max-width: 719px) {
  .p-calendar__header > .month > .backlink > span {
    font-size: 12px;
  }
}
.p-calendar__header > .month > .month_value {
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 719px) {
  .p-calendar__header > .month > .month_value {
    font-size: 18px;
  }
}
@media screen and (max-width: 719px) {
  .p-calendar__header > .month > .month_value {
    font-size: 16px;
  }
}
@media screen and (max-width: 719px) {
  .p-calendar__wrap {
    max-width: 100%;
    width: 100%;
    overflow: auto;
  }
}
.p-calendar__table {
  margin-top: 20px;
  table-layout: auto;
  border-top-style: solid;
  border-left-style: solid;
  border-top-width: 2px;
  border-left-width: 2px;
}
.p-calendar__table > thead > tr > th {
  width: 14.2857142857%;
  padding: 6px;
  text-align: center;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
}
@media screen and (max-width: 719px) {
  .p-calendar__table > thead > tr > th {
    padding: 0;
    height: 26px;
  }
}
.p-calendar__table > thead > tr > th > span {
  font-size: 14px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 719px) {
  .p-calendar__table > thead > tr > th > span {
    font-size: 14px;
  }
}
@media screen and (max-width: 719px) {
  .p-calendar__table > thead > tr > th > span {
    font-size: 12px;
    line-height: 22px;
  }
}
.p-calendar__table > tbody > tr > td {
  position: relative;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
}
.p-calendar__table > tbody > tr > td > .date {
  font-size: 14px;
  position: absolute;
  top: 8px;
  left: 11px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .date {
    font-size: 14px;
  }
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .date {
    font-size: 10px;
    top: 4px;
    left: 5px;
    width: 16px;
    height: 16px;
  }
}
.p-calendar__table > tbody > tr > td > .detail {
  min-height: 115px;
  display: flex;
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .detail {
    min-height: 90px;
  }
}
.p-calendar__table > tbody > tr > td > .detail > .info-box {
  padding-top: 30px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 30px;
  width: 100%;
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .detail > .info-box {
    padding-top: 20px;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 15px;
  }
}
.p-calendar__table > tbody > tr > td > .detail > .info-box > span {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .detail > .info-box > span {
    font-size: 12px;
  }
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .detail > .info-box > span {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: top;
  }
}
.p-calendar__table > tbody > tr > td > .detail > .change {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 15px;
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .detail > .change {
    text-align: center;
    padding-left: 1px;
    padding-right: 1px;
    padding-bottom: 2px;
  }
}
.p-calendar__table > tbody > tr > td > .detail > .change > a {
  font-size: 12px;
  letter-spacing: 0.05em;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .detail > .change > a {
    font-size: 12px;
  }
}
@media screen and (max-width: 719px) {
  .p-calendar__table > tbody > tr > td > .detail > .change > a {
    font-size: 10px;
  }
}
.p-calendar__buttons {
  width: 100%;
  display: flex;
  justify-content: center;
}
.p-calendar__buttons > a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-calendar__buttons > a {
    max-width: 280px;
    height: 50px;
  }
}
@media screen and (min-width: 720px) {
  .p-calendar__buttons > a:hover {
    opacity: 0.7;
  }
}
.p-calendar__buttons > a > span {
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 719px) {
  .p-calendar__buttons > a > span {
    font-size: 16px;
  }
}
.p-set_list {
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 719px) {
  .p-set_list {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-set_list__list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 100px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 720px) {
  .p-set_list__list .c-set_item {
    width: calc((100% - 121px) / 3);
  }
  .p-set_list__list .c-set_item:not(:nth-child(4n)) {
    margin-right: 40px;
  }
  .p-set_list__list .c-set_item:not(:nth-child(-n+4)) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 719px) {
  .p-set_list__list .c-set_item {
    width: 100%;
  }
  .p-set_list__list .c-set_item:not(:first-child) {
    margin-top: 30px;
  }
}
/* stylelint-disable no-descending-specificity */
.p-set_selection {
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width: 719px) {
  .p-set_selection {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-set_selection__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 719px) {
  .p-set_selection__inner {
    display: block;
  }
}
.p-set_selection__details {
  width: 100%;
  max-width: 360px;
}
.p-set_selection__content {
  width: calc(100% - 360px);
  padding-right: 60px;
}
@media screen and (max-width: 719px) {
  .p-set_selection__content {
    width: 100%;
    padding-right: 0;
  }
}
.p-set_selection__content__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 720px) {
  .p-set_selection__content__list .c-product_item {
    width: calc((100% - 61px) / 3);
  }
  .p-set_selection__content__list .c-product_item:not(:nth-child(3n)) {
    margin-right: 30px;
  }
  .p-set_selection__content__list .c-product_item:not(:nth-child(-n+3)) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__content__list .c-product_item {
    width: calc(50% - 10px);
  }
  .p-set_selection__content__list .c-product_item:nth-child(odd) {
    margin-right: 20px;
  }
  .p-set_selection__content__list .c-product_item:not(:nth-child(-n+2)) {
    margin-top: 20px;
  }
}
.p-set_selection__content__change-sets {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.p-set_selection__content__change-sets .label_container {
  display: flex;
}
.p-set_selection__content__change-sets .label_container:not(:first-child) {
  margin-top: 16px;
}
.p-set_selection__content__change-sets .set_label {
  display: flex;
  align-items: center;
}
.p-set_selection__content__change-sets .set_label input[type=radio] {
  display: none;
}
.p-set_selection__content__change-sets .set_label input:checked + span:before {
  background-color: inherit;
}
.p-set_selection__content__change-sets .set_label .checkbox {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  vertical-align: middle;
}
.p-set_selection__content__change-sets .set_label .checkbox:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
  background-color: #ffffff;
  transition: 0.3s;
}
.p-set_selection__content__change-sets .set_label .value {
  font-size: 14px;
  letter-spacing: 1;
  line-height: 1.5;
}
@media screen and (max-width: 719px) {
  .p-set_selection__content__change-sets .set_label .value {
    font-size: 14px;
  }
}
.p-set_selection__sidebar {
  width: 360px;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar {
    width: 100%;
    max-height: 90%;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.p-set_selection__sidebar__inner {
  position: relative;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__inner {
    border-top-style: solid;
    border-top-width: 1px;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__header {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.p-set_selection__sidebar__header .set_status {
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__header .set_status {
    font-size: 18px;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__header .set_status {
    font-size: 14px;
    padding-right: 10px;
  }
}
.p-set_selection__sidebar__header .select_clear {
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__header .select_clear:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__header .select_clear {
    display: none;
  }
}
.p-set_selection__sidebar__header .select_clear i {
  font-size: 24px;
  vertical-align: middle;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__header .select_clear i {
    font-size: 22px;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__header .select_clear i {
    font-size: 16px;
  }
}
.p-set_selection__sidebar__header .select_clear span {
  font-size: 14px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__header .select_clear span {
    font-size: 14px;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__header .select_clear span {
    font-size: 12px;
  }
}
.p-set_selection__sidebar__header .toggle_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 140px;
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__header .toggle_btn {
    display: none;
  }
}
.p-set_selection__sidebar__header .toggle_btn.is-open i {
  transform: rotate(90deg);
}
.p-set_selection__sidebar__header .toggle_btn i {
  font-size: 18px;
  vertical-align: middle;
  transform: rotate(-90deg);
}
.p-set_selection__sidebar__header .toggle_btn span {
  font-size: 12px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__form__inner {
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.p-set_selection__sidebar__form__inner .clear_btn_alt {
  cursor: pointer;
  display: block;
  width: 130px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__form__inner .clear_btn_alt {
    display: none;
  }
}
.p-set_selection__sidebar__form__inner .clear_btn_alt i {
  font-size: 20px;
  vertical-align: middle;
}
.p-set_selection__sidebar__form__inner .clear_btn_alt span {
  font-size: 12px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__list {
    order: 0;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__list {
    max-height: 350px;
    overflow: auto;
    padding: 20px;
  }
}
.p-set_selection__sidebar__item {
  padding: 20px 0;
  border-top-style: solid;
  border-top-width: 1px;
}
.p-set_selection__sidebar__item:last-child {
  border-bottom-style: solid;
  border-block-width: 1px;
}
.p-set_selection__sidebar__item__inner {
  display: flex;
}
.p-set_selection__sidebar__item__inner > .thumbnail {
  width: 54px;
}
.p-set_selection__sidebar__item__inner > .thumbnail > img {
  width: 100%;
  height: auto;
}
.p-set_selection__sidebar__item__inner > .info {
  width: calc(100% - 54px);
  padding-left: 20px;
}
.p-set_selection__sidebar__item__inner > .info > .name {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__item__inner > .info > .name {
    font-size: 14px;
  }
}
.p-set_selection__sidebar__item__inner > .info > .variant {
  font-size: 12px;
  margin-top: 5px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__item__inner > .info > .variant {
    font-size: 12px;
  }
}
.p-set_selection__sidebar__item__inner > .info > .control {
  margin-top: 10px;
  max-width: 160px;
  width: 100%;
  height: 35px;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  display: flex;
}
.p-set_selection__sidebar__item__inner > .info > .control > .cut,
.p-set_selection__sidebar__item__inner > .info > .control .add {
  font-size: 20px;
  width: 35px;
  height: 35px;
  flex-grow: 0;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__item__inner > .info > .control > .cut,
  .p-set_selection__sidebar__item__inner > .info > .control .add {
    font-size: 19px;
  }
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__item__inner > .info > .control > .cut:hover,
  .p-set_selection__sidebar__item__inner > .info > .control .add:hover {
    opacity: 0.6;
  }
}
.p-set_selection__sidebar__item__inner > .info > .control > .cut i,
.p-set_selection__sidebar__item__inner > .info > .control .add i {
  vertical-align: middle;
}
.p-set_selection__sidebar__item__inner > .info > .control > .quantity {
  flex-grow: 1;
  flex-shrink: 0;
  width: calc(100% - 70px);
  height: 35px;
  line-height: 35px;
  text-align: center;
}
.p-set_selection__sidebar__button {
  margin-top: 40px;
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__button {
    order: 1;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__button {
    margin-top: 0;
  }
}
.p-set_selection__sidebar__button > input {
  font-size: 16px;
  width: 100%;
  height: 60px;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__button > input {
    font-size: 16px;
  }
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__button > input {
    border-radius: 0;
  }
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__button > input:hover {
    opacity: 0.6;
  }
}
.p-set_selection__sidebar__button > input:disabled {
  opacity: 0.2;
}
.p-set_selection__sidebar__prices {
  padding: 20px;
}
@media screen and (min-width: 720px) {
  .p-set_selection__sidebar__prices {
    display: block !important;
    order: 2;
  }
}
.p-set_selection__sidebar__prices > .price_title {
  font-size: 18px;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__prices > .price_title {
    font-size: 18px;
  }
}
.p-set_selection__sidebar__prices > .price_table {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
.p-set_selection__sidebar__prices > .price_table > .price_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-set_selection__sidebar__prices > .price_table > .price_part:not(:first-child) {
  margin-top: 8px;
}
.p-set_selection__sidebar__prices > .price_table > .price_part > .price_label {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 20%;
  padding-right: 10px;
  flex-grow: 0;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__prices > .price_table > .price_part > .price_label {
    font-size: 14px;
  }
}
.p-set_selection__sidebar__prices > .price_table > .price_part > .price_value {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  flex-grow: 1;
  text-align: right;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__prices > .price_table > .price_part > .price_value {
    font-size: 16px;
  }
}
.p-set_selection__sidebar__prices > .price_total {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-set_selection__sidebar__prices > .price_total > .price_label {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 20%;
  padding-right: 10px;
  flex-grow: 0;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__prices > .price_total > .price_label {
    font-size: 14px;
  }
}
.p-set_selection__sidebar__prices > .price_total > .price_value {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  flex-grow: 1;
  text-align: right;
}
@media screen and (max-width: 719px) {
  .p-set_selection__sidebar__prices > .price_total > .price_value {
    font-size: 22px;
  }
}
.p-browsing_history {
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 719px) {
  .p-browsing_history {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-browsing_history__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.p-browsing_history__inner__title {
  text-align: center;
  margin-bottom: 40px;
}
.p-browsing_history__inner__title__en {
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.p-subs_cancel {
  margin-top: 40px;
}
.p-subs_cancel__part {
  display: flex;
  align-items: center;
}
.p-subs_cancel__part:not(:first-child) {
  margin-top: 20px;
}
.p-subs_cancel__part__checkbox {
  display: flex;
  align-items: center;
  position: relative;
}
.p-subs_cancel__part__checkbox input {
  width: 20px;
  height: 20px;
  border-width: 1px;
  border-style: solid;
  margin-right: 6px;
}
.p-subs_cancel__part__checkbox__frame {
  width: 12px;
  height: 6px;
  position: absolute;
  left: 4px;
  top: calc(50% - 4px);
  border-left-width: 2px;
  border-left-style: solid;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  transform: rotate(-45deg);
  opacity: 0;
}
.p-subs_cancel__part__checkbox__text {
  font-size: 14px;
}
@media screen and (max-width: 719px) {
  .p-subs_cancel__part__checkbox__text {
    font-size: 14px;
  }
}
input:checked + .p-subs_cancel__part__checkbox__frame {
  opacity: 1;
}
.p-subs_cancel__part__textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-style: solid;
  border-width: 1px;
}
.p-subs_cancel__part__textarea:placeholder {
  opacity: 0.2;
}

.c-form_table, .c-form_table--confirm {
  table-layout: auto;
  margin: -10px 0;
}
@media screen and (max-width: 720px) {
  .c-form_table, .c-form_table--confirm {
    display: block;
    margin: 0;
  }
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody, .c-form_table--confirm > tbody {
    display: block;
  }
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr, .c-form_table--confirm > tbody > tr {
    display: block;
  }
  .c-form_table > tbody > tr:not(:last-child), .c-form_table--confirm > tbody > tr:not(:last-child) {
    margin-bottom: 20px;
  }
}
.c-form_table > tbody > tr > th, .c-form_table--confirm > tbody > tr > th {
  font-size: 14px;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  padding: 20px 20px 10px 0;
  font-weight:normal;
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr > th, .c-form_table--confirm > tbody > tr > th {
    font-size: 14px;
  }
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr > th, .c-form_table--confirm > tbody > tr > th {
    display: block;
    padding: 0;
    margin-bottom: 6px;
  }
}
.c-form_table > tbody > tr > th.is-star, .c-form_table--confirm > tbody > tr > th.is-star {
  padding-top: 16px;
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr > th.is-star, .c-form_table--confirm > tbody > tr > th.is-star {
    padding-top: 0;
  }
}
.c-form_table > tbody > tr > td, .c-form_table--confirm > tbody > tr > td {
  width: 100%;
  vertical-align: top;
  position: relative;
  padding: 10px 0;
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr > td, .c-form_table--confirm > tbody > tr > td {
    display: block;
    padding: 0;
  }
}
.c-form_table > tbody > tr > td input[type=text], .c-form_table--confirm > tbody > tr > td input[type=text],
.c-form_table > tbody > tr > td input[type=email],
.c-form_table--confirm > tbody > tr > td input[type=email],
.c-form_table > tbody > tr > td input[type=tel],
.c-form_table--confirm > tbody > tr > td input[type=tel],
.c-form_table > tbody > tr > td input[type=number],
.c-form_table--confirm > tbody > tr > td input[type=number],
.c-form_table > tbody > tr > td input[type=password],
.c-form_table--confirm > tbody > tr > td input[type=password] {
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  width: 100%;
  border-color: #d6d6d6;
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr > td input[type=text], .c-form_table--confirm > tbody > tr > td input[type=text],
.c-form_table > tbody > tr > td input[type=email],
.c-form_table--confirm > tbody > tr > td input[type=email],
.c-form_table > tbody > tr > td input[type=tel],
.c-form_table--confirm > tbody > tr > td input[type=tel],
.c-form_table > tbody > tr > td input[type=number],
.c-form_table--confirm > tbody > tr > td input[type=number],
.c-form_table > tbody > tr > td input[type=password],
.c-form_table--confirm > tbody > tr > td input[type=password] {
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr > td input[type=text], .c-form_table--confirm > tbody > tr > td input[type=text],
.c-form_table > tbody > tr > td input[type=email],
.c-form_table--confirm > tbody > tr > td input[type=email],
.c-form_table > tbody > tr > td input[type=tel],
.c-form_table--confirm > tbody > tr > td input[type=tel],
.c-form_table > tbody > tr > td input[type=number],
.c-form_table--confirm > tbody > tr > td input[type=number],
.c-form_table > tbody > tr > td input[type=password],
.c-form_table--confirm > tbody > tr > td input[type=password] {
    padding: 0 15px;
  }
}
.c-form_table > tbody > tr > td input[type=text]::-webkit-input-placeholder, .c-form_table--confirm > tbody > tr > td input[type=text]::-webkit-input-placeholder,
.c-form_table > tbody > tr > td input[type=email]::-webkit-input-placeholder,
.c-form_table--confirm > tbody > tr > td input[type=email]::-webkit-input-placeholder,
.c-form_table > tbody > tr > td input[type=tel]::-webkit-input-placeholder,
.c-form_table--confirm > tbody > tr > td input[type=tel]::-webkit-input-placeholder,
.c-form_table > tbody > tr > td input[type=number]::-webkit-input-placeholder,
.c-form_table--confirm > tbody > tr > td input[type=number]::-webkit-input-placeholder,
.c-form_table > tbody > tr > td input[type=password]::-webkit-input-placeholder,
.c-form_table--confirm > tbody > tr > td input[type=password]::-webkit-input-placeholder {
  opacity: 0.7;
}
.c-form_table > tbody > tr > td textarea, .c-form_table--confirm > tbody > tr > td textarea {
  width: 100%;
  font-size: 16px;
  padding: 6px 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  border-color: #d6d6d6;
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr > td textarea, .c-form_table--confirm > tbody > tr > td textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  .c-form_table > tbody > tr > td textarea, .c-form_table--confirm > tbody > tr > td textarea {
    padding: 6 15px;
  }
}
.c-form_table > tbody > tr > td textarea::-webkit-input-placeholder, .c-form_table--confirm > tbody > tr > td textarea::-webkit-input-placeholder {
  opacity: 0.7;
}
.c-form_table__select {
  position: relative;
}

.c-form_table__select > * {
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0 40px 0 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  border-color: #d6d6d6;
}
@media screen and (max-width: 720px) {
  .c-form_table__select > * {
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  .c-form_table__select > * {
    padding: 0 40px 0 15px;
  }
}
.c-form_table__radio {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}
.c-form_table__radio input {
  width: 20px;
  height: 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  margin-right: 6px;
}
.c-form_table__radio__frame {
  width: 8px;
  height: 8px;
  position: absolute;
  left: 6px;
  top: calc(50% - 4px);
  border-radius: 50%;
  opacity: 0;
}
.c-form_table__radio__text {
  font-size: 14px;
}
@media screen and (max-width: 720px) {
  .c-form_table__radio__text {
    font-size: 14px;
  }
}
input:checked + .c-form_table__radio__frame {
  opacity: 1;
}
.c-form_table__checkbox {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}
.c-form_table__checkbox input {
  width: 20px;
  height: 20px;
  border-width: 1px;
  border-style: solid;
  margin-right: 6px;
}
.c-form_table__checkbox__frame {
  width: 12px;
  height: 6px;
  position: absolute;
  left: 4px;
  top: calc(50% - 4px);
  border-left-width: 2px;
  border-left-style: solid;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}
.c-form_table__checkbox__text {
  font-size: 14px;
}
@media screen and (max-width: 720px) {
  .c-form_table__checkbox__text {
    font-size: 14px;
  }
}
input:checked + .c-form_table__checkbox__frame {
  opacity: 1;
}
.c-form_table__name {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.c-form_table__name input {
  max-width: calc((100% - 20px) / 2);
}
.c-form_table__name.is-single input {
  max-width: 100%;
}
.c-form_table__postcode {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 14px;
}
@media screen and (max-width: 720px) {
  .c-form_table__postcode {
    font-size: 14px;
  }
}
.c-form_table__postcode input {
  max-width: 160px;
}
.c-form_table__postcode *:not(:last-child) {
  margin-right: 10px;
}
.c-form_table__postcode.is-single input {
  max-width: 320px;
}
.c-form_table__tel {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  font-size: 14px;
  margin-bottom: -5px;
}
@media screen and (max-width: 720px) {
  .c-form_table__tel {
    font-size: 14px;
  }
}
.c-form_table__tel input {
  max-width: 120px;
}
.c-form_table__tel > * {
  margin-bottom: 5px;
}
.c-form_table__tel > *:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 720px) {
  .c-form_table__tel > *:not(:last-child) {
    margin-right: 5px;
  }
}
.c-form_table__tel.is-single input {
  max-width: 100%;
}
.c-form_table__gender {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 10px 0;
}
.c-form_table__gender > *:not(:last-child) {
  margin-right: 20px;
}
.c-form_table__newsletter {
  padding: 10px 0;
}
.c-form_table__vertical > *:not(:last-child) {
  margin-bottom: 10px;
}
.c-form_table__subscription .c-account_table {
  margin-top: 20px;
}
.c-form_table__notes {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 720px) {
  .c-form_table__notes {
    font-size: 14px;
  }
}
.c-form_table__text {
  font-size: 14px;
  padding-top: 10px;
}
@media screen and (max-width: 720px) {
  .c-form_table__text {
    font-size: 14px;
  }
}
.c-form_table--confirm > tbody > tr {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
@media screen and (max-width: 720px) {
  .c-form_table--confirm > tbody > tr {
    padding-bottom: 10px;
  }
}
.c-form_table--confirm > tbody > tr > th {
  padding: 20px 20px 10px 10px;
}
@media screen and (max-width: 720px) {
  .c-form_table--confirm > tbody > tr > th {
    padding: 0;
  }
}
.c-form_table--confirm > tbody > tr > td {
  font-size: 14px;
  padding: 20px 10px 10px 0;
}
@media screen and (max-width: 720px) {
  .c-form_table--confirm > tbody > tr > td {
    font-size: 14px;
  }
}
@media screen and (max-width: 720px) {
  .c-form_table--confirm > tbody > tr > td {
    padding: 0;
  }
}
.c-form_table .formError, .c-form_table--confirm .formError {
  width: auto !important;
  height: auto !important;
  background: #E21E1E;
  color: #FFFFFF;
  font-size: 12px;
  padding: 4px 10px;
  margin: 0 !important;
  top: -6px !important;
  left: auto !important;
  right: -10px !important;
  z-index: 1;
  opacity: 1 !important;
}
@media screen and (max-width: 720px) {
  .c-form_table .formError, .c-form_table--confirm .formError {
    font-size: 12px;
  }
}
.c-form_table .formError > *, .c-form_table--confirm .formError > * {
  margin: 0 !important;
}
.c-form_table__select .formError {
  top: -16px !important;
}

.c-account_menu {
  direction: ltr;
  writing-mode: horizontal-tb;
  background: #fff;
  padding: 0 16px;
}
@media screen and (max-width: 719px) {
  .c-account_menu {
    margin: 0 calc(50% - 50vw);
    border-bottom: 1px solid var(--color-page-border, #d8dddf);
  padding: 0;
  }
}
.c-account_menu__list {
  padding: 10px 20px 10px 0px;
}
@media screen and (max-width: 719px) {
  .c-account_menu__list {
    padding: 10px 0;
  }
}
.c-account_menu__content {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 10px 0;
}
@media screen and (max-width: 719px) {
  .c-account_menu__content {
    padding-inline: 15px;
  }
}
.c-account_menu__content.--main-heading {
  gap: 8px;
}
.c-account_menu__content.--sub-heading {
  padding-block: 5px;
  gap: 0;
}
.c-account_menu__content.--separator {
  padding-inline: 0;
}
.c-account_menu__content.--separator::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-page-border, #d8dddf);
}
.c-account_menu__logout {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  padding: 0 16px;
  box-sizing: border-box;
  background: #000000;
  color: var(--color-btn-text, #ffffff);
  width: 100%;
  padding: 10px 16px;
  text-align: center;
}
.c-account_menu__logout::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMi41IDMuMzMzYzAtLjQ2LjM3My0uODMzLjgzMy0uODMzSDEwdjEuNjY3SDQuMTY3djExLjY2NkgxMFYxNy41SDMuMzMzYS44MzMuODMzIDAgMCAxLS44MzMtLjgzM1YzLjMzM1ptMTEuNjY3IDIuOTg5IDMuMDg5IDMuMDg5YS44MzMuODMzIDAgMCAxIDAgMS4xNzhsLTMuMDkgMy4wOS0xLjE3OC0xLjE3OSAxLjY2Ny0xLjY2N0g2LjY2N1Y5LjE2N2g3Ljk4OEwxMi45ODggNy41bDEuMTc5LTEuMTc4WiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+") no-repeat center;
}
.c-account_menu__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  flex: 1 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-account_menu__icon {
  width: 24px;
  height: auto;
  font-size: 24px;
}
@media (hover: hover) and (pointer: fine) {
  .c-account_menu a {
    transition: 0.3s;
  }
  .c-account_menu a:not([disabled]):hover {
    opacity: 0.7;
  }
}
.c-account_menu__toggle-button {
  display: none;
  width: 100%;
  color: var(--color-text-overlay, #ffffff);
  background: #868686;
}
@media screen and (max-width: 719px) {
  .c-account_menu__toggle-button {
    display: grid;
    grid-template-areas: "text button";
    grid-template-columns: 1fr auto;
    padding: 10px 15px;
    align-items: center;
  }
}
.c-account_menu__toggle-button .u-icon--minus {
  opacity: 0;
  transform: scale(0);
}
.c-account_menu__toggle-button-icon {
  grid-area: button;
  font-size: 20px;
  top: calc(50% - 10px);
  right: 15px;
  transition: 0.3s;
}
.c-account_menu__toggle-button-text {
  grid-area: text;
  margin-right: auto;
}
.c-account_menu__toggle-button.is-active .u-icon--plus {
  opacity: 0;
  transform: scale(0);
}
.c-account_menu__toggle-button.is-active .u-icon--minus {
  opacity: 1;
  transform: none;
}

.p-page_header {
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 719px) {
  .p-page_header {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-page_header__inner__title {
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 719px) {
  .p-page_header__inner__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 719px) {
  .p-page_header__inner__title {
    font-size: 22px;
  }
}
.p-page_header__inner__lead {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 719px) {
  .p-page_header__inner__lead {
    font-size: 14px;
  }
}
.p-page_header__inner__lead a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.p-page_header__inner__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 2px;
  transition: 0.3s;
  margin: 40px auto 0;
}
@media screen and (max-width: 719px) {
  .p-page_header__inner__btn {
    font-size: 16px;
  }
}
.p-page_header__inner__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .p-page_header__inner__btn {
    max-width: 280px;
    height: 50px;
  }
}
#perform-view .p-page_header__inner__lead {
  margin-top: 30px;
}


.accordion-button {
  position: absolute;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  top: 50%;
  right: 8px;
  transform: translate(0px, -50%);
}

/* ▼ 矢印（下向き） */
.accordion-button::after {
  content: "";
  border: solid #f7af0a;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: auto;
}

/* ▼ アクティブ時は上向きに回転 */
.accordion-button.active::after {
  transform: rotate(-135deg);
}

/* ▼ コンテンツ開閉アニメーション */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-button.active + .accordion-content {
  max-height: 500px; /* 必要に応じて調整 */
}

/* stylelint-disable scss/at-extend-no-missing-placeholder */
.c-breadcrumbs {
display: flex;
flex-wrap: wrap;
}
.c-breadcrumbs__item {
display: inline-flex;
align-items: center;
font-size: 12px;
}
.c-breadcrumbs__item:not(:last-child):after {
content: ">";
font-size: 1.0em;
margin-right: 6px;
margin-left: 6px;
}
.c-breadcrumbs__item a {
-webkit-text-decoration: underline;
text-decoration: underline;
}
.p-product_content__breadcrumbs--sp .c-breadcrumbs {
padding: 15px 30px;
}
@media screen and (min-width: 1024px) {
.p-product_content__breadcrumbs .c-breadcrumbs:not(:first-child) {
  margin-top: 8px;
}
}
@media screen and (max-width: 719px) {
.p-product_content__breadcrumbs .c-breadcrumbs:not(:first-child) {
  border: inherit;
}
}
.p-breadcrumbs--sp .c-breadcrumbs {
padding-inline: calc(var(--spacing) * 2);
}
@media screen and (min-width: 720px) {
.p-breadcrumbs .c-breadcrumbs:not(:first-child) {
  margin-top: 8px;
}
}
@media screen and (max-width: 719px) {
.p-breadcrumbs .c-breadcrumbs:not(:first-child) {
  border: inherit;
}
}

.p-breadcrumbs{
max-width: 1400px;
  margin: auto;
  padding-inline: calc(var(--spacing) * 12);
}

@media screen and (max-width: 1024px) {
.p-breadcrumbs{
padding-inline: calc(var(--spacing) * 2);
}
}

.c-cart_item {
display: flex;
padding: 20px 0;
border-top-width: 1px;
border-top-style: solid;
flex-wrap: wrap;
/********
 * gift
 ********/
/*********
 * thanks-offer
 ********/
}
.c-cart_item:not(:has(+ .c-cart_item)) {
border-bottom-width: 1px;
border-bottom-style: solid;
}
.c-cart_item__img, .c-cart_item--table .variant-image {
width: 120px;
}
.c-cart_item__img:not(.--no-hover), .c-cart_item--table .variant-image:not(.--no-hover) {
transition: 0.3s;
}
.c-cart_item__img:not(.--no-hover):hover, .c-cart_item--table .variant-image:not(.--no-hover):hover {
opacity: 0.7;
}
@media screen and (max-width: 719px) {
.c-cart_item__img, .c-cart_item--table .variant-image {
  width: 80px;
}
}
.c-cart_item__img__inner {
padding-top: 133.3333333333%;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.c-cart_item__info {
flex: 1;
padding-left: 20px;
}
@media screen and (max-width: 719px) {
.c-cart_item__info {
  padding-left: 15px;
}
}
.c-cart_item__info__status {
display: flex;
margin-bottom: 10px;
}
.c-cart_item__info__status__payment {
font-size: 14px;
margin-right: 20px;
}
@media screen and (max-width: 719px) {
.c-cart_item__info__status__payment {
  font-size: 14px;
}
}
.c-cart_item__info__status__shipping {
font-size: 14px;
}
@media screen and (max-width: 719px) {
.c-cart_item__info__status__shipping {
  font-size: 14px;
}
}
.c-cart_item__info__preorder {
padding: 3px 15px;
background-color: var(--color-btn-bg);
display: inline-block;
color: var(--color-text-overlay);
font-size: 14px;
margin-bottom: 15px;
}
.c-cart_item__info__category {
font-size: 12px;
margin-bottom: 10px;
}
@media screen and (max-width: 719px) {
.c-cart_item__info__category {
  font-size: 12px;
}
}
@media screen and (max-width: 719px) {
.c-cart_item__info__category {
  margin-bottom: 4px;
}
}
.c-cart_item__info__title {
word-break: break-all;
}
.c-cart_item__info__title:not(.--no-hover) {
transition: 0.3s;
}
.c-cart_item__info__title:not(.--no-hover):hover {
opacity: 0.7;
}
.c-cart_item__info__variant {
margin-top: 5px;
}
@media screen and (min-width: 1024px) {
.c-cart_item__info__variant {
  margin-top: 10px;
}
}
.c-cart_item__info__quantity {
display: flex;
margin-top: 20px;
}
@media screen and (max-width: 719px) {
.c-cart_item__info__quantity {
  margin-top: 10px;
}
}
.c-cart_item__info__quantity__submit {
border-radius: 2px;
margin-left: 8px;
transition: 0.3s;
font-size: 12px;
}
.c-cart_item__info__quantity__submit:hover {
opacity: 0.7;
}
.c-cart_item__info__total {
display: flex;
align-items: center;
margin-top: 10px;
}
.c-cart_item__info__total__quantity {
font-size: 14px;
margin-right: 20px;
}
@media screen and (max-width: 719px) {
.c-cart_item__info__total__quantity {
  font-size: 14px;
}
}
.c-cart_item__info__total__price {
font-size: 18px;
}
@media screen and (max-width: 719px) {
.c-cart_item__info__total__price {
  font-size: 18px;
}
}
.c-cart_item .--only-PC {
display: none;
}
@media screen and (min-width: 1024px) {
.c-cart_item .--only-PC {
  display: revert;
}
}
@media screen and (min-width: 1024px) {
.c-cart_item .--only-SP {
  display: none;
}
}
.c-cart_item.--gift .c-order_quantity {
width: unset;
flex-grow: 1;
}
.c-cart_item__badges {
margin-top: 10px;
display: flex;
flex-wrap: wrap;
gap: 4px;
}
.c-cart_item__button {
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 2px;
padding: 0 16px;
box-sizing: border-box;
}
.c-cart_item__gift-target-items {
display: none;
border-top: 1px solid var(--color-page-border);
}
.c-cart_item__gift-target-items .c-cart_item__info {
padding: 15px 0;
}
.c-cart_item__toggle-icon {
display: inline-grid;
}
.c-cart_item__toggle-icon i {
grid-area: 1/-1;
font-size: 1.4117647059em;
}
.c-cart_item__toggle-gift-target-items {
margin-top: 20px;
padding: 10px 0;
display: flex;
align-items: center;
cursor: pointer;
justify-content: space-between;
border-top: 1px solid var(--color-page-border);
}
.c-cart_item__toggle-gift-target-items[data-current-state=open] .u-icon--plus {
visibility: hidden;
}
.c-cart_item__toggle-gift-target-items[data-current-state=close] .u-icon--minus {
visibility: hidden;
}
.c-cart_item__gift-form.--only-PC {
display: none;
}
.c-cart_item__gift-form.--only-SP {
display: contents;
}
@media screen and (min-width: 1024px) {
.c-cart_item__gift-form.--only-PC {
  display: contents;
}
.c-cart_item__gift-form.--only-SP {
  display: none;
}
}
.c-cart_item__gift-relation {
display: flex;
flex-direction: column;
gap: 10px;
padding: 20px;
border-top: 1px solid var(--color-page-border);
}
@media screen and (min-width: 1024px) {
.c-cart_item__gift-relation {
  display: grid;
  grid: "order_item_summary  . part_of_noshi" "order_item_quantity order_item_quantity ."/1fr 20px 1fr;
  gap: 20px 0;
}
.c-cart_item__gift-relation .--grid-area-order-item-summary {
  grid-area: order_item_summary;
}
.c-cart_item__gift-relation .--grid-area-order-item-quantity {
  grid-area: order_item_quantity;
}
.c-cart_item__gift-relation .--grid-area-part-of-noshi {
  grid-area: part_of_noshi;
}
}
.c-cart_item.--gift .c-cart_item__info {
gap: 20px;
display: grid;
grid: "gift-summary" "gift-info" "gift-subtotal";
}
@media screen and (min-width: 1024px) {
.c-cart_item.--gift .c-cart_item__info {
  grid: "gift-summary ." auto "gift-info    gift-subtotal" auto/1fr auto;
}
}
.c-cart_item__gift-info {
grid-area: gift-info;
background-color: var(--js-color-page-accent-lighten, #f5f8fa);
}
.c-cart_item__gift-summary {
grid-area: gift-summary;
}
.c-cart_item__gift-subtotal {
grid-area: gift-subtotal;
display: flex;
justify-content: space-between;
}
@media screen and (min-width: 1024px) {
.c-cart_item__gift-subtotal {
  flex-direction: column;
  width: 80px;
  align-items: end;
  justify-content: end;
}
}
.c-cart_item__text {
margin-top: 5px;
word-break: break-all;
}
@media screen and (min-width: 1024px) {
.c-cart_item__text.--gift-quantity {
  display: none;
}
}
.c-cart_item__text.--color-head {
color: var(--color-text-head);
}
.c-cart_item__text.--title {
padding: 10px 20px;
margin: 0;
}
.c-cart_item__text.--catalog {
margin-bottom: 10px;
}
.c-cart_item__delete.--only-PC {
align-self: center;
}
.c-cart_item .c-input-with-button.--only-PC {
margin-top: 6px;
}
@media screen and (min-width: 1024px) {
.c-cart_item .c-input-with-button.--only-PC {
  display: flex;
}
}
.c-cart_item__action {
display: flex;
flex-direction: column;
align-items: flex-end;
padding-left: 20px;
}
@media screen and (max-width: 719px) {
.c-cart_item__action {
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  padding-left: 95px;
  margin-top: 8px;
}
}
.c-cart_item__action__delete {
flex: 1;
}
@media screen and (max-width: 719px) {
.c-cart_item__action__delete {
  flex: auto;
}
}
.c-cart_item__action__delete__btn {
display: flex;
align-items: center;
transition: 0.3s;
font-size: 13px;
}
@media screen and (max-width: 1024px) {
.c-cart_item__action__delete__btn {
  font-size: 12px;
}
}
.c-cart_item__action__delete__btn:hover {
opacity: 0.7;
}
.c-cart_item__action__delete__btn i {
font-size: 24px;
}
.c-cart_item__action__delete__btn span {
-webkit-text-decoration: underline;
text-decoration: underline;
}
.c-cart_item__action__price {
font-size: 22px;
}
@media screen and (max-width: 719px) {
.c-cart_item__action__price {
  font-size: 20px;
}
}
.c-cart_item--table {
font-size: initial;
border: 0;
padding: 0;
}
.c-cart_item--table:first-child {
border: 0;
}
.c-cart_item--table table {
padding: 0;
}
.c-cart_item--table tbody {
height: 100%;
display: flex;
}
.c-cart_item--table tr {
flex: 1;
position: relative;
}
.c-cart_item--table td + td {
margin-top: 10px;
}
.c-cart_item--table table,
.c-cart_item--table tbody,
.c-cart_item--table tr,
.c-cart_item--table td {
display: block;
}
.c-cart_item--table .cv-xsell-variant-row {
display: none;
padding: 20px 0;
}
.c-cart_item--table .cv-xsell-variant-row:not(.default-hide):not([id$=form]) {
display: block;
overflow: hidden;
}
.c-cart_item--table .cv-xsell-variant-row:nth-of-type(n) {
border-top: 1px solid var(--color-page-border);
}
.c-cart_item--table .cv-xsell-variant-row:nth-last-of-type(-n + 2) {
border-bottom: 1px solid var(--color-page-border);
}
.c-cart_item--table .variant-image {
float: left;
margin-right: 20px;
transition: none;
}
.c-cart_item--table .variant-image:hover {
opacity: initial;
}
.c-cart_item--table .variant-name-area {
font-size: var(--font-text-subhead);
}
.c-cart_item--table .variant_quantity::before {
content: "数量：";
}
.c-cart_item--table .variant-sum {
position: absolute;
bottom: 20px;
right: 0;
font-size: var(--font-text-subhead);
}
@media screen and (max-width: 719px) {
.c-cart_item--table .variant-sum {
  text-align: right;
  position: static;
  margin-top: 20px;
}
}
.c-cart_item--table .variant_remove {
position: absolute;
top: 20px;
right: 0;
margin: 0;
-webkit-text-decoration: underline;
text-decoration: underline;
transition: 0.3s;
}
.c-cart_item--table .variant_remove:hover {
opacity: 0.7;
}
@media screen and (max-width: 719px) {
.c-cart_item--table .variant_remove {
  top: auto;
  bottom: 20px;
  left: 100px;
  transform: translate(-5px, 2px);
}
}
.c-cart_item--table .variant_remove i {
font-size: 24px;
pointer-events: none;
}
.c-cart_item--table .variant_remove i::before {
display: inline-block;
}
.c-cart_item--table .cv_xsell_variant_remove {
display: flex;
align-items: center;
justify-content: center;
font-size: var(--font-size-text-link);
color: var(--color-text-link);
}

.c-cart_submit__block__submit {
display: flex;
justify-content: center;
align-items: center;
max-width: 320px;
width: 100%;
height: 60px;
font-size: 13px;
border-radius: 2px;
transition: 0.3s;
margin: 0 auto;
}
@media screen and (max-width: 719px) {
.c-cart_submit__block__submit {
  font-size: 12px;
}
}
.c-cart_submit__block__submit:hover {
opacity: 0.7;
}
@media screen and (max-width: 719px) {
.c-cart_submit__block__submit {
  max-width: 280px;
  height: 50px;
}
}
.c-cart_submit__block__link {
display: inline-block;
font-size: 12px;
-webkit-text-decoration: underline;
text-decoration: underline;
margin-top: 10px;
}
@media screen and (max-width: 719px) {
.c-cart_submit__block__link {
  font-size: 12px;
}
}
.c-cart_submit .formError {
width: auto !important;
height: auto !important;
background: #e21e1e;
color: #ffffff;
font-size: 12px;
padding: 4px 10px;
margin: 0 !important;
top: -6px !important;
left: auto !important;
right: -10px !important;
z-index: 1;
opacity: 1 !important;
}
@media screen and (max-width: 719px) {
.c-cart_submit .formError {
  font-size: 12px;
}
}
.c-cart_submit .formError > * {
margin: 0 !important;
}
.c-cart_list + .c-cart_list {
margin-top: 30px;
}
.c-cart_list__title {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
align-items: center;
}
.c-cart_list__gift {
border-top-width: 1px;
border-top-style: solid;
padding-top: 15px;
}
.c-cart_list__list {
border-top-width: 1px;
border-top-style: solid;
}
.c-cart_list__list__item {
display: flex;
padding: 15px 0;
border-bottom-width: 1px;
border-bottom-style: solid;
}
.c-cart_list__list__item__img {
width: 54px;
}
.c-cart_list__list__item__img__inner {
padding-top: 133.3333333333%;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.c-cart_list__list__item__multiple_shipping {
border: none;
}
.c-cart_list__list__item__info {
flex: 1;
padding-left: 20px;
}
.c-cart_list__list__item__info__category {
font-size: 12px;
margin-bottom: 4px;
}
@media screen and (max-width: 719px) {
.c-cart_list__list__item__info__category {
  font-size: 12px;
}
}
.c-cart_list__list__item__info__title {
font-size: 14px;
margin-bottom: 4px;
}
@media screen and (max-width: 719px) {
.c-cart_list__list__item__info__title {
  font-size: 14px;
}
}
.c-cart_list__list__item__info__variant {
font-size: 12px;
margin-bottom: 8px;
}
@media screen and (max-width: 719px) {
.c-cart_list__list__item__info__variant {
  font-size: 12px;
}
}
.c-cart_list__list__item__info__text {
margin-bottom: 8px;
}
.c-cart_list__list__item__info__total {
display: flex;
}
.c-cart_list__list__item__info__total__quantity {
font-size: 14px;
margin-right: 10px;
}
@media screen and (max-width: 719px) {
.c-cart_list__list__item__info__total__quantity {
  font-size: 14px;
}
}
.c-cart_list__list__item__info__total__price {
font-size: 14px;
}
@media screen and (max-width: 719px) {
.c-cart_list__list__item__info__total__price {
  font-size: 14px;
}
}
.c-cart_list__list__item.--gift {
display: grid;
grid: "image info" "image toggle-gift-target-items" "image gift-target-items"/auto 1fr;
gap: 0 20px;
}
.c-cart_list__list__item.--gift .c-cart_list__list__item__img {
grid-area: image;
}
.c-cart_list__list__item.--gift .c-cart_list__list__item__info {
grid-area: info;
padding: 0 0 15px;
}
.c-cart_list__list__item.--gift .c-cart_list__toggle-gift-target-items {
grid-area: toggle-gift-target-items;
padding: 10px 0;
border-top: 1px solid var(--color-page-border);
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
}
.c-cart_list__list__item.--gift .c-cart_list__gift-target-items {
grid-area: gift-target-items;
border-top: 1px solid var(--color-page-border);
display: none;
}
.c-cart_list__gift-target-items .c-cart_list__list__item__info.--gift {
padding: 15px 0;
}
.c-cart_list__toggle-icon {
display: inline-grid;
}
.c-cart_list__toggle-icon i {
grid-area: 1/-1;
font-size: 1.4117647059em;
}
.c-cart_list__toggle-gift-target-items[data-current-state=open] .u-icon--plus {
visibility: hidden;
}
.c-cart_list__toggle-gift-target-items[data-current-state=close] .u-icon--minus {
visibility: hidden;
}

/* 注文前確認ページ */

.c-steps_to_order {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.c-steps_to_order__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  text-align: center;
}
.c-steps_to_order__step--1 {
  margin-right: 87px;
}
.c-steps_to_order__step--2 {
  margin-right: 109px;
}
@media screen and (max-width: 719px) {
  .c-steps_to_order__step {
    flex: 0 1 0;
  }
  .c-steps_to_order__step--1 {
    margin-right: 7.73vw;
  }
  .c-steps_to_order__step--2 {
    margin-right: 12.53vw;
  }
}
.c-steps_to_order__number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f8fa;
  color: #000000;
}
.c-steps_to_order__number.is-active, .c-steps_to_order__number.is-complete {
  background-color: var(--theme-color);
  color: var(--text-color);
}
.c-steps_to_order__number.is-complete::after {
  border-color: var(--theme-color);
}
.c-steps_to_order__step--3 .c-steps_to_order__number::before, .c-steps_to_order__step--3 .c-steps_to_order__number::after {
  content: none;
}
.c-steps_to_order__text br {
  display: none;
}
@media screen and (max-width: 719px) {
  .c-steps_to_order__text {
    white-space: nowrap;
    max-width: 20vw;
    font-size: 12px;
  }
  .c-steps_to_order__text br {
    display: inline;
  }
}
.c-steps_to_order__number + .c-steps_to_order__text {
  margin-top: 10px;
}
.c-steps_to_order__number {
  position: relative;
}
.c-steps_to_order__number::before, .c-steps_to_order__number::after {
  content: "";
  display: block;
  width: 160px;
  border-top: 1px solid #d8dddf;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateX(100%);
}
@media screen and (max-width: 719px) {
  .c-steps_to_order__number::before, .c-steps_to_order__number::after {
    width: clamp(60px, 16vw, 80px);
    right: -2.67vw;
  }
}
.c-steps_to_order__number::before {
  z-index: 0;
}
.c-steps_to_order__number::after {
  z-index: 1;
}