@charset "UTF-8";
.container {
  max-width: 100%; }

/* 共通 */
.checkout-nav {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 5em auto 3em; }
  .checkout-nav .checkout-nav-item {
    padding: 20px 0;
    text-align: center;
    flex-grow: 1;
    background: #E7F6F1;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    .checkout-nav .checkout-nav-item::before, .checkout-nav .checkout-nav-item::after {
      position: absolute;
      content: "";
      display: block;
      height: 100%;
      width: 30px;
      clip-path: polygon(0 0, 70% 50%, 0 100%);
      background: #E7F6F1;
      right: -29px;
      z-index: 10; }
    .checkout-nav .checkout-nav-item::before {
      background: #FFF;
      right: -30px; }
    .checkout-nav .checkout-nav-item.active {
      background-color: #000;
      color: #FFF; }
      .checkout-nav .checkout-nav-item.active::after {
        background: #000; }

.cart-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px; }
  .cart-wrap h2 {
    margin-bottom: 3em; }
  .cart-wrap .title {
    margin: 2em 0; }
  .cart-wrap.parts {
    border-top: none; }

.amazon-pay-btn {
  display: block;
  background-color: #FFD814;
  color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
  border: none;
  margin-bottom: 10px;
  cursor: pointer; }

.w290 {
  width: 100%;
  max-width: 290px; }

.required-message {
  color: #38B281;
  margin-bottom: 1em;
  font-weight: bold; }

/* 1,ショッピングカート */
#shop-cart {
  /* よく一緒に購入されている製品 */ }
  #shop-cart .product-header {
    /* タイトル */
    display: flex;
    margin-bottom: 10px; }
    #shop-cart .product-header .product-image-space {
      width: 100px;
      min-width: 100px; }
    #shop-cart .product-header .product-details-space {
      flex: 1;
      min-width: 200px;
      padding: 0 20px; }
    #shop-cart .product-header .quantity-header {
      width: 110px;
      min-width: 110px;
      text-align: center; }
    #shop-cart .product-header .delete-space {
      width: 110px;
      min-width: 110px; }
    #shop-cart .product-header .price-header {
      width: 150px;
      min-width: 150px;
      text-align: center; }
  #shop-cart .parts .product-header {
    /* タイトル */ }
    #shop-cart .parts .product-header .product-model-number {
      width: 150px; }
    #shop-cart .parts .product-header .product-name {
      width: 300px; }
    #shop-cart .parts .product-header .product-color, #shop-cart .parts .product-header .product-size, #shop-cart .parts .product-header .product-delete,
    #shop-cart .parts .product-header .product-quantity, #shop-cart .parts .product-header .product-price {
      flex: 1;
      text-align: center; }
  #shop-cart .parts .product-list .product-item .product-model-number {
    width: 150px; }
  #shop-cart .parts .product-list .product-item .product-name {
    width: 300px;
    flex: none; }
    #shop-cart .parts .product-list .product-item .product-name .product-title {
      font-weight: bold; }
    #shop-cart .parts .product-list .product-item .product-name .product-message {
      font-size: 1.4rem; }
  #shop-cart .parts .product-list .product-item .product-color, #shop-cart .parts .product-list .product-item .product-size,
  #shop-cart .parts .product-list .product-item .product-delete, #shop-cart .parts .product-list .product-item .product-price,
  #shop-cart .parts .product-list .product-item .product-quantity {
    flex: 1;
    justify-content: center;
    text-align: center; }
  #shop-cart .product-list {
    /* 商品リスト */
    width: 100%;
    margin-bottom: 20px; }
  #shop-cart .product-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0; }
    #shop-cart .product-item .error-wrap {
      margin: 0.5em 0;
      width: 100%; }
      #shop-cart .product-item .error-wrap .balloon {
        width: 100%;
        font-size: 1.4rem;
        color: #FF0000;
        background: #FFF5F5;
        border: solid 1px #FF0000;
        padding: 0.5em; }
    #shop-cart .product-item .product-image {
      width: 100px;
      min-width: 100px; }
      #shop-cart .product-item .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain; }
    #shop-cart .product-item .product-details {
      flex: 1;
      min-width: 200px;
      padding: 0 20px; }
      #shop-cart .product-item .product-details .product-title {
        font-weight: bold;
        margin-bottom: 5px;
        word-break: break-all;
        white-space: pre-wrap; }
      #shop-cart .product-item .product-details .product-message {
        font-size: 1.4rem; }
    #shop-cart .product-item .product-quantity {
      display: flex;
      align-items: center;
      text-align-last: center;
      justify-content: center;
      width: 110px; }
      #shop-cart .product-item .product-quantity .form-group-select {
        width: 100%;
        max-width: 108px; }
      #shop-cart .product-item .product-quantity .wrap {
        width: 100%;
        min-width: 100%; }
    #shop-cart .product-item .product-delete {
      width: 110px;
      min-width: 110px;
      margin: 0 auto; }
      #shop-cart .product-item .product-delete .btn-style3 {
        width: 90px;
        height: 44px;
        margin: 0 auto; }
    #shop-cart .product-item .product-price {
      width: 150px;
      min-width: 150px;
      text-align: center; }
  #shop-cart .cart-notice {
    text-align: right;
    padding: 1em 0;
    margin: 1em 0;
    border-bottom: 1px solid #e0e0e0; }
  #shop-cart .clearfix {
    display: flex;
    justify-content: space-between; }
    #shop-cart .clearfix .info-links {
      width: 40%;
      font-size: 1.4rem;
      padding: 1em 2em; }
      #shop-cart .clearfix .info-links ul {
        list-style: none;
        padding: 0; }
        #shop-cart .clearfix .info-links ul li {
          margin-bottom: 10px; }
          #shop-cart .clearfix .info-links ul li::before {
            content: "•";
            margin-right: 5px; }
    #shop-cart .clearfix .cart-summary {
      width: 50%;
      max-width: auto;
      padding: 1em 2em; }
      #shop-cart .clearfix .cart-summary .cart-total-item,
      #shop-cart .clearfix .cart-summary .cart-total-price {
        text-align: right; }
      #shop-cart .clearfix .cart-summary .wr-message {
        color: #544EAC;
        background: #CCCCFF;
        border: 1px solid #544EAC;
        padding: 1em;
        margin: 1em 0; }
      #shop-cart .clearfix .cart-summary .btn-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-end; }
      #shop-cart .clearfix .cart-summary .btn-style1, #shop-cart .clearfix .cart-summary .btn-style3 {
        width: 100%;
        margin: 1em 0;
        max-width: 300px; }
      #shop-cart .clearfix .cart-summary .amazon-pay-btn {
        max-width: 300px;
        margin-top: 1em;
        margin-bottom: 5px; }
      #shop-cart .clearfix .cart-summary #AmazonPayButton {
        width: 100%;
        max-width: 300px;
        margin-top: 1em; }
  #shop-cart .cart-total {
    display: flex;
    justify-content: end;
    margin-bottom: 10px; }
    #shop-cart .cart-total .cart-total-item {
      font-size: 1.4rem; }
  #shop-cart .cart-total-price {
    font-size: 2.0rem;
    font-weight: bold; }
  #shop-cart .amazon-account-text {
    max-width: 300px;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px; }
  #shop-cart .cart-parts-title {
    width: 90%;
    max-width: 1300px;
    margin: 1em auto;
    text-align: center;
    color: #FFF;
    background: #585858;
    padding: 15px; }
  #shop-cart .addon-item-wrap {
    position: relative;
    width: calc(100% - 100px);
    margin-left: auto;
    margin: 1em 0 0 auto;
    background: #F6F4F5;
    padding: 20px 100px; }
    #shop-cart .addon-item-wrap h3 {
      font-size: 1.6rem;
      margin: 0 0 1em; }
    #shop-cart .addon-item-wrap .swiper-addon-item {
      padding: 10px;
      overflow: hidden; }
    #shop-cart .addon-item-wrap .swiper-slide {
      height: auto; }
    #shop-cart .addon-item-wrap .item-wrap {
      display: flex;
      width: 100%; }
      #shop-cart .addon-item-wrap .item-wrap .item-image {
        width: 100px;
        height: 100px; }
        #shop-cart .addon-item-wrap .item-wrap .item-image img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
      #shop-cart .addon-item-wrap .item-wrap .item-detail {
        flex: 1;
        padding: 0 10px; }
        #shop-cart .addon-item-wrap .item-wrap .item-detail .item-name {
          font-size: 1.4rem;
          margin: 0.5em 0; }
        #shop-cart .addon-item-wrap .item-wrap .item-detail .item-modelnumber {
          font-size: 1.4rem;
          margin: 0.5em 0 2em; }
        #shop-cart .addon-item-wrap .item-wrap .item-detail .btn-style3 {
          width: auto; }
    #shop-cart .addon-item-wrap .swiper-button-next, #shop-cart .addon-item-wrap .swiper-button-prev {
      width: 40px;
      height: 40px;
      background-color: #2ebb89;
      border-radius: 50%;
      color: #FFF; }
    #shop-cart .addon-item-wrap .swiper-button-next {
      right: 30px; }
    #shop-cart .addon-item-wrap .swiper-button-prev {
      left: 30px; }
    #shop-cart .addon-item-wrap .swiper-button-next:after, #shop-cart .addon-item-wrap .swiper-button-prev:after {
      position: absolute;
      font-size: 1.8rem;
      font-weight: bold; }

/* 2,ログイン */
#cart-login .login-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 5% 0;
  border: 1px solid #DDD; }
#cart-login .login-section {
  flex: 1;
  min-width: 300px;
  padding: 0 5%; }
  #cart-login .login-section:first-child {
    border-right: 1px solid #ddd; }
  #cart-login .login-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1em;
    font-weight: bold; }
  #cart-login .login-section .required-text {
    margin-bottom: 1em; }
  #cart-login .login-section .text {
    margin-bottom: 1em; }
  #cart-login .login-section .right-box {
    text-align: center;
    margin-bottom: 10px;
    width: auto; }
    #cart-login .login-section .right-box .pw-forget {
      display: block;
      color: #333;
      text-decoration: underline;
      font-size: 1.4rem;
      margin: 2em 0;
      text-align: left; }
  #cart-login .login-section .form-wrap .form-group-input {
    margin-bottom: 1em; }
  #cart-login .login-section .privacy-policy {
    margin: 3em 0 5em; }
    #cart-login .login-section .privacy-policy a {
      text-decoration: underline; }
  #cart-login .login-section .verification-section {
    margin-top: 30px; }
    #cart-login .login-section .verification-section .verification-title {
      font-size: 1.8rem;
      margin-bottom: 1em;
      line-height: 1.8; }
  #cart-login .login-section .help-section {
    /* メールが届かない場合 */
    margin: 3em 0; }
    #cart-login .login-section .help-section .help-title {
      color: #38B281;
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 1em; }
    #cart-login .login-section .help-section .help-list {
      color: #38B281;
      list-style-type: none;
      border-top: 1px solid #38B281;
      border-bottom: 1px solid #38B281;
      padding: 20px;
      font-size: 1.6rem; }
      #cart-login .login-section .help-section .help-list li {
        list-style-type: disc;
        line-height: 1.8;
        margin-left: 1em;
        margin-bottom: 1em; }
#cart-login .amazon-wrap {
  margin: 3em 0; }
#cart-login .amazon-button {
  background-color: #f0c14b;
  border: 1px solid #a88734;
  color: #111;
  padding: 10px 20px;
  cursor: pointer;
  width: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0; }
#cart-login .amazon-info {
  margin: 20px 0;
  font-size: 1.6rem;
  line-height: 1.8; }
@media screen and (max-width: 768px) {
  #cart-login .login-container {
    flex-direction: column; }
  #cart-login .login-section:first-child {
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 30px; } }

/* 3,ご注文方法の指定 */
#cart-address {
  /* ご注文主 */
  /* 住所 */
  /* 電話番号 */
  /* 会員登録 */
  /* お届け先 */
  /* お届け先変更 */
  /* お支払い方法 */
  /* クーポンコード */
  /* ノベルティ */
  /* 合計金額 */
  /* ご注文主(会員登録済み) */ }
  #cart-address .kome {
    color: #6E6E6E; }
  #cart-address h2 {
    font-size: 1.8rem;
    text-align: center;
    font-weight: bold;
    margin: 3em 0; }
  #cart-address h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: bold; }
  #cart-address .form-style1 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto; }
  #cart-address .info-box {
    color: #6E6E6E;
    background-color: #f2f2f2;
    padding: 1em;
    font-size: 1.4rem;
    max-width: 1000px;
    margin: 1em auto;
    line-height: 1.8; }
    #cart-address .info-box .title, #cart-address .info-box .agreement-notice, #cart-address .info-box .registration-info {
      margin: 1em 0; }
    #cart-address .info-box .terms-link a, #cart-address .info-box .txt-link {
      text-decoration: underline;
      color: #6E6E6E; }
  #cart-address .section {
    padding: 0 5% 5em;
    margin-bottom: 40px;
    border-bottom: 1px solid #BFBFBF; }
  #cart-address .section2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid #BFBFBF; }
    #cart-address .section2 .section-title {
      width: 200px; }
    #cart-address .section2 .form-style1 {
      flex: 1; }
    #cart-address .section2 .pay {
      /* お支払い方法 */ }
      #cart-address .section2 .pay .form-group-radio {
        flex-direction: column;
        align-items: flex-start; }
        #cart-address .section2 .pay .form-group-radio label {
          margin-bottom: 3em; }
  #cart-address .product-header {
    /* タイトル */
    display: flex;
    margin-bottom: 10px; }
    #cart-address .product-header .product-image-space {
      width: 100px;
      min-width: 100px; }
    #cart-address .product-header .product-details-space {
      flex: 1;
      min-width: 200px;
      padding: 0 20px; }
    #cart-address .product-header .quantity-header {
      width: 110px;
      min-width: 110px;
      text-align: center; }
    #cart-address .product-header .delete-space {
      width: 110px;
      min-width: 110px; }
    #cart-address .product-header .price-header {
      width: 150px;
      min-width: 150px;
      text-align: center; }
  #cart-address .parts .product-header {
    /* タイトル */ }
    #cart-address .parts .product-header .product-model-number {
      width: 150px; }
    #cart-address .parts .product-header .product-name {
      width: 300px; }
    #cart-address .parts .product-header .product-color, #cart-address .parts .product-header .product-size, #cart-address .parts .product-header .product-delete,
    #cart-address .parts .product-header .product-quantity, #cart-address .parts .product-header .product-price {
      flex: 1;
      text-align: center; }
  #cart-address .parts .product-list .product-item .product-model-number {
    width: 150px; }
  #cart-address .parts .product-list .product-item .product-name {
    width: 300px;
    flex: none; }
    #cart-address .parts .product-list .product-item .product-name .product-title {
      font-weight: bold; }
    #cart-address .parts .product-list .product-item .product-name .product-message {
      font-size: 1.4rem; }
  #cart-address .parts .product-list .product-item .product-color, #cart-address .parts .product-list .product-item .product-size,
  #cart-address .parts .product-list .product-item .product-delete, #cart-address .parts .product-list .product-item .product-price,
  #cart-address .parts .product-list .product-item .product-quantity {
    flex: 1;
    justify-content: center;
    text-align: center; }
  #cart-address .product-list {
    /* 商品リスト */
    width: 100%;
    margin-bottom: 20px; }
    #cart-address .product-list .product-item {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 20px 0; }
      #cart-address .product-list .product-item .product-image {
        width: 100px;
        min-width: 100px; }
        #cart-address .product-list .product-item .product-image img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
      #cart-address .product-list .product-item .product-details {
        flex: 1;
        min-width: 200px;
        padding: 0 20px; }
        #cart-address .product-list .product-item .product-details .product-title {
          font-weight: bold;
          margin-bottom: 5px;
          word-break: break-all;
          white-space: pre-wrap; }
        #cart-address .product-list .product-item .product-details .product-message {
          font-size: 1.4rem; }
      #cart-address .product-list .product-item .product-quantity {
        display: flex;
        align-items: center;
        width: 110px; }
        #cart-address .product-list .product-item .product-quantity .form-group-select {
          width: 100%; }
        #cart-address .product-list .product-item .product-quantity .wrap {
          width: 100%;
          min-width: 100%; }
      #cart-address .product-list .product-item .product-delete {
        width: 110px;
        min-width: 110px;
        margin: 0 1em; }
        #cart-address .product-list .product-item .product-delete .basic-btn {
          width: 80px;
          height: 46px;
          border: 1px solid #DDD;
          margin: 0 auto; }
      #cart-address .product-list .product-item .product-price {
        width: 150px;
        min-width: 150px;
        text-align: center; }
  #cart-address .form-wrap .form-group-input span {
    display: block;
    width: 2.5em;
    text-align: center; }
  #cart-address .orderer h3 {
    margin: 5em 0; }
  #cart-address .orderer.change .info-box {
    margin: 3em 0; }
    #cart-address .orderer.change .info-box p {
      margin-bottom: 1em; }
  #cart-address .orderer.change .btn-style1 {
    color: #6E6E6E;
    background: #f2f2f2;
    border: 1px solid #6E6E6E;
    padding: 0.5em;
    text-align: center;
    width: 300px;
    position: relative; }
    #cart-address .orderer.change .btn-style1::before {
      position: absolute;
      left: 1em;
      content: "×"; }
  #cart-address .form-wrap.address .content_add {
    flex: 1; }
  #cart-address .form-wrap.address .form-group-input, #cart-address .form-wrap.address .form-group-select {
    margin-bottom: 1em; }
  #cart-address .form-wrap.address .form-group-input.postal-code label, #cart-address .form-wrap.address .form-group-input.postal-code .help,
  #cart-address .form-wrap.address .form-group-select.prefectures label,
  #cart-address .form-wrap.address .form-group-select.prefectures .help {
    width: 100%; }
  #cart-address .form-wrap.address .place .place-row {
    display: flex;
    align-items: flex-start; }
    #cart-address .form-wrap.address .place .place-row .prefectures {
      width: 250px;
      padding-right: 10px; }
    #cart-address .form-wrap.address .place .place-row .city {
      flex: 1; }
  #cart-address .form-wrap.tel .form-group-input {
    max-width: 380px; }
  #cart-address .sign-up .message {
    margin: 3em 0; }
  #cart-address .sign-up .birth-date-group span {
    display: block;
    padding: 10px; }
  #cart-address .sign-up .form-group-select.short .wrap {
    min-width: 130px; }
  #cart-address .sign-up .checkbox-group label {
    line-height: 2; }
  #cart-address .sign-up .checkbox-group span {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0.5em 0; }
  #cart-address .destination .flex-box {
    align-items: center;
    margin-bottom: 2em; }
    #cart-address .destination .flex-box .form-label {
      width: 300px; }
    #cart-address .destination .flex-box .btn-style4 {
      width: 160px; }
  #cart-address .form-group-radio.m-radio {
    margin-bottom: 2rem; }
    #cart-address .form-group-radio.m-radio label {
      font-size: 1.5rem; }
  #cart-address .address-item {
    margin-bottom: 3rem; }
    #cart-address .address-item .checkbox-item {
      margin-bottom: 5rem; }
    #cart-address .address-item .flex-box.wrap .content dl {
      margin: 0 0 15px; }
      @media (min-width: 768px) {
        #cart-address .address-item .flex-box.wrap .content dl {
          display: flex;
          flex-wrap: wrap; } }
    #cart-address .address-item .flex-box.wrap .content dt, #cart-address .address-item .flex-box.wrap .content dd {
      padding: 0;
      margin: 0;
      width: 100%;
      line-height: 1.5;
      word-break: break-all;
      white-space: pre-wrap; }
      @media (min-width: 768px) {
        #cart-address .address-item .flex-box.wrap .content dt:last-of-type, #cart-address .address-item .flex-box.wrap .content dd:last-of-type {
          margin-bottom: 0; } }
    @media (max-width: 767px) {
      #cart-address .address-item .flex-box.wrap .content dt {
        margin-bottom: 0.5em; } }
    @media (min-width: 768px) {
      #cart-address .address-item .flex-box.wrap .content dt {
        width: 52px;
        margin-bottom: 21px; } }
    @media (max-width: 767px) {
      #cart-address .address-item .flex-box.wrap .content dd {
        margin-bottom: 2em; } }
    @media (min-width: 768px) {
      #cart-address .address-item .flex-box.wrap .content dd {
        width: calc(100% - 52px);
        margin-bottom: 21px; } }
  #cart-address .payment {
    /* クレジット */
    /* 銀行振込 */
    /* ペイディ */ }
    #cart-address .payment .credit-box {
      padding: 0 2em; }
      #cart-address .payment .credit-box .explanation {
        display: flex;
        align-items: center;
        font-size: 1.4rem;
        margin-bottom: 3em; }
        #cart-address .payment .credit-box .explanation img {
          height: 60px; }
        #cart-address .payment .credit-box .explanation p {
          padding: 0 30px;
          line-height: 1.8; }
      #cart-address .payment .credit-box .credit-info {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 660px;
        margin: 1em 0;
        font-size: 1.4rem; }
        #cart-address .payment .credit-box .credit-info dt, #cart-address .payment .credit-box .credit-info dd {
          margin-bottom: 2em; }
        #cart-address .payment .credit-box .credit-info dt {
          width: 180px; }
        #cart-address .payment .credit-box .credit-info dd {
          width: calc(100% - 180px); }
        #cart-address .payment .credit-box .credit-info .expiration-date {
          display: flex;
          flex-wrap: wrap;
          align-items: center; }
          #cart-address .payment .credit-box .credit-info .expiration-date span {
            display: block;
            padding: 10px; }
        #cart-address .payment .credit-box .credit-info .security-code-wrap input {
          width: 200px; }
        #cart-address .payment .credit-box .credit-info .security-code-wrap .kome {
          margin: 0 10px; }
    #cart-address .payment .bank-box {
      padding: 0 2em;
      font-size: 1.4rem; }
      #cart-address .payment .bank-box .message {
        line-height: 1.5; }
      #cart-address .payment .bank-box .account-number {
        margin: 3em 0; }
        #cart-address .payment .bank-box .account-number p {
          margin-bottom: 1em; }
    #cart-address .payment .paidy-box {
      padding: 0 2em;
      font-size: 1.4rem; }
      #cart-address .payment .paidy-box .message {
        line-height: 1.5; }
      #cart-address .payment .paidy-box p {
        margin-bottom: 2em; }
  #cart-address .coupon-code .form-group-input input {
    max-width: 300px; }
  #cart-address .coupon-code .kome {
    width: 100%; }
  #cart-address .cart-notice {
    text-align: right; }
  #cart-address .novelty-wrap {
    display: flex;
    align-items: center;
    width: 100%; }
    #cart-address .novelty-wrap .novelty-image {
      width: 100px;
      min-width: 100px;
      margin: 0 auto;
      transform: scale(0.9); }
      #cart-address .novelty-wrap .novelty-image img {
        width: 100%;
        height: 100%; }
    #cart-address .novelty-wrap .novelty-title {
      padding: 0 10px;
      flex: 1.5;
      min-width: 200px;
      padding: 0 20px; }
    #cart-address .novelty-wrap .novelty-quantity {
      flex: 1; }
  #cart-address .total-box {
    margin-top: 1em;
    border-top: 1px solid #BFBFBF; }
    #cart-address .total-box .font-bold {
      padding: 1em;
      text-align: right; }
      #cart-address .total-box .font-bold span {
        display: inline-block;
        margin-left: auto;
        width: 100px;
        vertical-align: middle; }
        #cart-address .total-box .font-bold span:first-of-type {
          width: 230px;
          text-align: left; }
    #cart-address .total-box .total {
      background: #E7F6F1;
      padding: 1.5em 1em; }
  #cart-address .button-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 2em; }
    #cart-address .button-wrap .btn-style1, #cart-address .button-wrap .btn-style3 {
      width: 100%;
      max-width: 290px;
      margin: 0 1em; }
    #cart-address .button-wrap .box {
      width: 100%;
      max-width: 320px; }
      #cart-address .button-wrap .box .list-style1 {
        font-size: 1.4rem;
        margin: 1em 0; }
        #cart-address .button-wrap .box .list-style1 li {
          margin: 0.5em 0; }
  #cart-address .orderer-registered {
    border-bottom: 1px solid #BFBFBF;
    margin-bottom: 3em; }
    #cart-address .orderer-registered .check-list {
      display: flex;
      flex-wrap: wrap;
      width: calc(100% - 200px);
      margin-bottom: 2em; }
      #cart-address .orderer-registered .check-list dt {
        width: 150px;
        margin-bottom: 1em; }
      #cart-address .orderer-registered .check-list dd {
        width: calc(100% - 150px);
        margin-bottom: 1em; }
      #cart-address .orderer-registered .check-list .kome-red {
        display: block;
        color: #FF1115; }

/* 4,ご注文確認 */
#cart-address .cart-wrap.conf .section2 {
  flex-wrap: nowrap; }
#cart-address .cart-wrap.conf .section2:first-of-type {
  margin-top: 5em; }
#cart-address .cart-wrap.conf .check-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 200px);
  margin-bottom: 2em; }
  #cart-address .cart-wrap.conf .check-list dt, #cart-address .cart-wrap.conf .check-list dd {
    margin-bottom: 1em; }
  #cart-address .cart-wrap.conf .check-list dt {
    width: 150px; }
  #cart-address .cart-wrap.conf .check-list dd {
    width: calc(100% - 150px); }
  #cart-address .cart-wrap.conf .check-list .kome-red {
    display: block;
    color: #FF1115; }
#cart-address .cart-wrap.conf .product-name {
  width: 400px; }
#cart-address .cart-wrap.conf .product-color, #cart-address .cart-wrap.conf .product-size,
#cart-address .cart-wrap.conf .product-quantity, #cart-address .cart-wrap.conf .product-price {
  flex: 1;
  text-align: center; }
#cart-address .cart-wrap.conf .product-list .product-item .product-details {
  width: 300px;
  flex: none; }
#cart-address .cart-wrap.conf .product-list .product-item .product-quantity {
  justify-content: center; }
#cart-address .cart-wrap.conf .conf-message {
  text-align: center;
  margin: 2em; }
#cart-address .cart-wrap.conf .button-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 2em; }

/* 5,ご注文完了 */
#cart-address .cart-wrap.done h2 {
  font-size: 2.6rem; }
#cart-address .cart-wrap.done .message {
  max-width: 800px;
  margin: 2em auto;
  text-align: center; }
  #cart-address .cart-wrap.done .message p {
    margin-bottom: 2em; }
    #cart-address .cart-wrap.done .message p:first-child, #cart-address .cart-wrap.done .message p:nth-child(2) {
      font-size: 2rem; }
#cart-address .cart-wrap.done .flex-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  #cart-address .cart-wrap.done .flex-box .btn-style3 {
    width: 100%;
    margin: 1em 0; }
  #cart-address .cart-wrap.done .flex-box .line-btn {
    margin: 2em 0; }

/* 閲覧履歴からのおすすめ商品 */
.recommended-section {
  margin: 40px auto;
  width: 100%;
  max-width: 1200px;
  padding: 20px; }
  .recommended-section .section-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative; }
  .recommended-section .section-title h2 {
    font-size: 18px;
    font-weight: normal; }
  .recommended-section .section-title .tag {
    font-size: 12px;
    color: #4CAF87;
    position: absolute;
    right: 0; }
  .recommended-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 5em;
    margin: 4em 0; }
  .recommended-section .product-card {
    text-align: center; }
  .recommended-section .product-image {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #FFF;
    margin-bottom: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .recommended-section .product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .recommended-section .product-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
    min-height: 40px; }
  .recommended-section .product-code {
    font-size: 1.4rem;
    margin-bottom: 8px; }
  .recommended-section .product-price {
    font-size: 1.5rem;
    font-weight: bold; }

/* セキュリティコードのモーダル */
#securityCodeModal .img-box {
  justify-content: center; }
  #securityCodeModal .img-box div {
    text-align: center;
    padding: 30px; }
    #securityCodeModal .img-box div .img-text {
      margin: 1em 0; }

/* ウェイティングルームのモーダル */
#waitingRoom .modal-title {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0 0 1em;
  border-bottom: 2px solid #e0e0e0; }
#waitingRoom .modal-content {
  text-align: center; }
#waitingRoom .wr-text-wrap {
  background: #EEE;
  max-width: 400px;
  margin: 2.5em auto;
  padding: 1em;
  border-radius: 10px; }
#waitingRoom .wr-text {
  font-size: 2rem;
  margin: 1em 0; }

ul.wr-list {
  width: fit-content;
  margin: 0 auto 30px; }
  ul.wr-list .wr-item {
    margin-left: 1em;
    font-size: 1.5rem;
    line-height: 2;
    position: relative;
    text-align: left; }
    ul.wr-list .wr-item::before {
      position: absolute;
      display: block;
      content: "・";
      width: 10px;
      height: 10px;
      left: -18px; }

/*ウェイティングルーム(カート)*/
.wr-boot {
  background: #CCCCFF;
  border: 1px solid #34339B;
  color: #34339B;
  padding: 10px 10px;
  font-size: 13px;
  margin-top: 10px; }

.wr-boot-text {
  line-height: 1.2; }

.wr-boot-inner {
  width: 100%; }

@media screen and (max-width: 768px) {
  /* フロー */
  .checkout-nav {
    width: calc(90% - 30px);
    flex-wrap: wrap;
    margin: 2em auto; }
    .checkout-nav .checkout-nav-item {
      width: 100px;
      font-size: 1.0rem;
      padding: 0;
      height: 3em; }
      .checkout-nav .checkout-nav-item.active {
        width: 120px; }
      .checkout-nav .checkout-nav-item::before, .checkout-nav .checkout-nav-item::after {
        clip-path: polygon(0 0, 30% 50%, 0 100%); }

  /* 1,ショッピングカート */
  #shop-cart {
    /* よく一緒に購入されている製品 */ }
    #shop-cart .product-header {
      display: none; }
    #shop-cart .product-item {
      flex-direction: column;
      margin-bottom: 2em;
      padding: 2em 0 1em;
      border-bottom: 1px solid #e0e0e0; }
      #shop-cart .product-item .product-image {
        width: 80%;
        max-width: 270px; }
      #shop-cart .product-item .product-details {
        padding: 0.5em 0; }
      #shop-cart .product-item .product-quantity {
        width: 100%;
        margin: 0.5em 0; }
      #shop-cart .product-item .product-delete {
        margin: 0.5em 0; }
      #shop-cart .product-item .product-price {
        font-size: 2rem;
        margin: 0.5em 0; }
      #shop-cart .product-item .product-delete .btn-style3 {
        width: 120px;
        margin: 0; }
    #shop-cart .cart-parts-title {
      font-size: 1.4rem; }
    #shop-cart .parts .product-model-number, #shop-cart .parts .product-name,
    #shop-cart .parts .product-color, #shop-cart .parts .product-size {
      text-align: center;
      margin-bottom: 1em; }
    #shop-cart .clearfix {
      flex-direction: column-reverse; }
      #shop-cart .clearfix .cart-summary {
        width: 100%;
        margin: 0 auto 2em;
        padding: 1em; }
      #shop-cart .clearfix .info-links {
        width: 100%; }
    #shop-cart .cart-notice {
      text-align: left; }
    #shop-cart .addon-item-wrap {
      width: 100%;
      padding: 1em 0 1.5em; }
      #shop-cart .addon-item-wrap h3 {
        margin: 1em;
        text-align: center; }
      #shop-cart .addon-item-wrap .item-wrap {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: calc(100% - 80px);
        margin: 0 auto; }
        #shop-cart .addon-item-wrap .item-wrap .item-image {
          width: 130px;
          height: 130px; }
        #shop-cart .addon-item-wrap .item-wrap .item-detail {
          width: 100%; }
      #shop-cart .addon-item-wrap .swiper-button-prev {
        left: 10px; }
      #shop-cart .addon-item-wrap .swiper-button-next {
        right: 10px; }
      #shop-cart .addon-item-wrap .item-wrap .item-detail .btn-style3 {
        font-size: 1.4rem; }
    #shop-cart .clearfix .cart-summary .btn-wrap {
      align-items: center; }

  /* 合計 */
  .cart-total-price {
    margin-bottom: 2em; }

  /* 閲覧履歴からのおすすめ商品 */
  .recommended-section .product-image {
    max-width: 300px;
    margin: 0 auto 1em; }

  /* 2,ログイン */
  #cart-login .login-container {
    flex-direction: column;
    width: 100%; }
  #cart-login .login-section:first-child {
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 30px; }

  /* 3,ご注文方法の指定 */
  #cart-address {
    /* お届け先 */
    /* お支払い方法 */
    /* クーポンコード */
    /* ご注文内容 */
    /* ノベルティ */ }
    #cart-address .info-box {
      margin: 0; }
    #cart-address .section {
      padding: 0 0 5em; }
    #cart-address .form-label {
      width: 100%;
      margin-bottom: 5px; }
    #cart-address .form-input {
      width: 100%; }
    #cart-address .address-details {
      margin-left: 0; }
    #cart-address .button {
      width: 100%;
      margin-bottom: 10px; }
    #cart-address .form-group-input.postal-code input {
      width: 60%; }
    #cart-address .form-group-input.postal-code .btn-style3 {
      flex: 1;
      font-size: 1.2rem;
      height: 44px;
      padding: 0 5px; }
    #cart-address .destination .form-style1 .flex-box {
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-direction: column; }
    #cart-address .form-group-input.form-double span {
      display: none; }
    #cart-address .form-group-input.form-double input {
      width: 100%;
      flex: auto;
      margin-bottom: 1em; }
    #cart-address .form-wrap.address .place .place-row {
      flex-direction: column; }
      #cart-address .form-wrap.address .place .place-row .prefectures {
        width: 100%; }
    #cart-address .form-style1.form-border .form-wrap {
      border-bottom: none;
      margin-bottom: 0; }
    #cart-address .form-style1 .form-wrap .help-text {
      font-size: 1.2rem;
      margin-bottom: 1em; }
    #cart-address .payment .form-group-radio label span {
      flex: 1; }
    #cart-address .payment .credit-box {
      padding: 0 1em; }
      #cart-address .payment .credit-box .explanation {
        font-size: 1.2rem; }
        #cart-address .payment .credit-box .explanation img {
          height: 50px; }
        #cart-address .payment .credit-box .explanation p {
          padding: 0;
          margin-left: 10px; }
      #cart-address .payment .credit-box .credit-info dt {
        width: 100%;
        background: #EEE;
        padding: 10px;
        margin-bottom: 10px; }
      #cart-address .payment .credit-box .credit-info dd {
        width: 100%; }
      #cart-address .payment .credit-box .credit-info .expiration-date {
        align-items: baseline; }
        #cart-address .payment .credit-box .credit-info .expiration-date .form-group-select {
          width: calc(100% - 60px);
          margin-bottom: 1em; }
          #cart-address .payment .credit-box .credit-info .expiration-date .form-group-select .wrap {
            width: 100%; }
      #cart-address .payment .credit-box .credit-info .security-code-wrap .kome {
        margin: 0.5em 0 0; }
    #cart-address .payment .paidy-box {
      padding: 0 1em; }
      #cart-address .payment .paidy-box img {
        max-width: 50%;
        max-height: max-content; }
    #cart-address .payment .section-title {
      width: 100%; }
    #cart-address .coupon-code .section-title {
      width: 100%; }
    #cart-address .product-header {
      display: none; }
    #cart-address .product-list .product-item {
      flex-direction: column;
      margin-bottom: 3em;
      border-bottom: 1px solid #BFBFBF; }
      #cart-address .product-list .product-item .product-image {
        width: 50%;
        max-width: 200px;
        margin-bottom: 10px; }
      #cart-address .product-list .product-item .product-details {
        padding: 0; }
      #cart-address .product-list .product-item .product-quantity {
        width: 100%; }
      #cart-address .product-list .product-item .product-price {
        font-size: 2.3rem;
        margin: 1em 0; }
      #cart-address .product-list .product-item .product-details, #cart-address .product-list .product-item .product-quantity,
      #cart-address .product-list .product-item .product-delete {
        margin-bottom: 1em; }
    #cart-address .parts .product-model-number, #cart-address .parts .product-name,
    #cart-address .parts .product-color, #cart-address .parts .product-size {
      text-align: center;
      margin-bottom: 1em; }
    #cart-address .novelty-wrap {
      flex-direction: column;
      border-bottom: 1px solid #BFBFBF;
      padding-bottom: 3em; }
      #cart-address .novelty-wrap .novelty-image {
        width: 50%;
        max-width: 200px;
        margin-bottom: 10px; }
      #cart-address .novelty-wrap .novelty-title {
        width: 100%; }
    #cart-address .cart-notice {
      text-align: left; }
    #cart-address .total-box .font-bold span,
    #cart-address .total-box .font-bold span:first-of-type {
      width: 50%; }
    #cart-address .button-wrap {
      flex-direction: column-reverse; }
      #cart-address .button-wrap .box {
        margin: 0 auto 2em; }
      #cart-address .button-wrap .btn-style1, #cart-address .button-wrap .btn-style3 {
        margin: 0 auto 1em; }
    #cart-address .orderer-registered .section-title, #cart-address .orderer-registered .check-list,
    #cart-address .orderer-registered .check-list dt, #cart-address .orderer-registered .check-list dd {
      width: 100%; }
    #cart-address .orderer-registered .check-list dt {
      background: #EEE;
      padding: 0 10px;
      margin-bottom: 10px;
      line-height: 2.6; }

  /* 4,ご注文確認 */
  #cart-address .cart-wrap.conf .section2 {
    flex-direction: column; }
    #cart-address .cart-wrap.conf .section2 .section-title {
      width: 100%; }
    #cart-address .cart-wrap.conf .section2 .check-list {
      width: 100%; }
      #cart-address .cart-wrap.conf .section2 .check-list dt {
        width: 100%;
        background: #EEE;
        padding: 10px;
        margin-bottom: 10px; }
        #cart-address .cart-wrap.conf .section2 .check-list dt.btn-box {
          background: none; }
      #cart-address .cart-wrap.conf .section2 .check-list dd {
        width: 100%; }
  #cart-address .cart-wrap.conf .cart-notice {
    font-size: 1.4rem; }
  #cart-address .conf-message {
    font-size: 1.4rem;
    margin: 2em 0; }
  #cart-address .product-list .product-item .product-image {
    width: 200px; }

  /* セキュリティコードのモーダル */
  #securityCodeModal .modal-title {
    padding-right: 25px; }
  #securityCodeModal .flex-box.img-box {
    flex-direction: column; }
    #securityCodeModal .flex-box.img-box img {
      width: 100%; }

  /* ウェイティングルームのモーダル */
  #waitingRoom .modal-title {
    font-size: 2rem; } }
