@charset "utf-8";
/* CSS Document */





section.item .container { max-width: 1140px; padding: 30px 0 60px; border-bottom: 1px solid #e8e8e8; }


section h2 { font-size: 24px; margin: 0 0 30px; font-weight: 900; }
@media screen and (max-width:768px) {
section h2 { font-size: 24px; margin: 0 0 20px; }
}




.layout { display: grid; align-items: flex-start; column-gap: 40px; }

.mp_thumbnail { padding: 0 15px; }
.layout .layout_cart { width: 420px; padding: 0 15px; position: sticky; top: 70px; }
.layout .layout_media { padding: 15px 15px; }


.layout .member_type .title { font-size: 13px; margin-bottom: 10px; }

/* 各要素にエリア名を割り当て（これは共通でOK） */
.mp_thumbnail { grid-area: image; padding: 0 15px; }
.layout_media { grid-area: text; padding: 0 15px; }
.layout_cart  { grid-area: cart; padding: 0 15px; }

/* PC用のレイアウト設定（画面幅769px以上のときだけ適用） */
@media screen and (min-width: 769px) {
  .layout {
    display: grid;
    align-items: flex-start;
    column-gap: 40px;
    grid-template-areas:
      "image cart"
      "text cart";
    /* 1行目(画像)は中身に合わせ、2行目(テキスト)が残りを埋める */
    grid-template-rows: auto 1fr; 
  }

  .layout .layout_cart {
    width: 420px;
    position: sticky;
    top: 70px; /* スクロール時に追従させる設定 */
  }
}

/* スマホ用のレイアウト設定（画面幅768px以下のとき） */
@media screen and (max-width: 768px) {
  .layout {
    display: flex;
    flex-direction: column; /* 上から順に並べる */
  }

  .layout .layout_cart {
    width: 100%;       /* 横幅いっぱい */
    position: static;  /* stickyを解除 */
    padding-top: 30px;
    order: 2;          /* 画像(1) → カート(2) → 特長(3) の順に */
  }

  .mp_thumbnail { order: 1; }
  .layout_media { order: 3; }
}


.layout h1 { margin: 0 0 5px; font-size: 32px; font-weight: 900; }
.layout h1 { margin: 0 0 5px; font-size: 26px; font-weight: 900; }
.layout h1 { margin: 0 0 5px; font-size: 22px; font-weight: 500; }
.layout h2 { margin: 30px 0 15px; font-size: 22px; font-weight: 400; text-align: left; }
.layout h2 + p {  }
.layout .fee { margin: 0 0 20px; letter-spacing: 0.05em; }

@media screen and (max-width:768px) {
.layout h1 { font-size: 26px; }
.layout h1 { font-size: 18px; }
}

iframe { width: 100%; margin-bottom: 20px; aspect-ratio: 16 / 9; border: 0; border-radius: 4px; }


.layout h2.top { margin-top: 0; }
.layout h3 { margin: 25px 0 10px; font-size: 16px; font-weight: 900; }
.layout h3.top { margin-top: 0; }



/* アコーディオン */

.layout .accd { margin: 15px 0; padding: 15px 0 0; margin: 0; padding: 15px 0; font-size: 18px; font-weight: 400; text-align: left; border-top: 1px solid #ddd; position: relative; }
.layout .accd::after { position: absolute; right: 10px; font-family: FontAwesome; content: '\f107'; text-align: center; width: 24px; height: 24px; display: inline-block; -webkit-transition: -webkit-transform .3s ease; transition: -webkit-transform .3s ease; transition: transform .3s ease; transition: transform .3s ease, -webkit-transform .3s ease; font-size: 18px; }
.layout .accd.active::after { -webkit-transform: rotate(180deg) scale(1.0); -ms-transform: rotate(180deg) scale(1.0); transform: rotate(180deg) scale(1.0); }

.layout .accd+div { display: none; padding: 15px 0; }
.layout .accd.active { font-weight: 900; }









/* 商品説明（スペック等）*/

.layout_media .feature { margin-bottom: 25px; }
.layout_media .feature h4 { font-size: 17px; font-weight: 700; line-height: 1.3; }
.layout_media .feature .col-3 img { border-radius: 7px; /*border: 1px solid #ddd;*/ }
.layout_media .typography_elevated .row.feature p { color: #989898; }
.layout_media .typography_elevated .row.feature p b { color: black; font-weight: 500; }

.layout_media hr { margin: 0; }
.mpcal-guide-msg { margin:0 0 4px; font-size:13px; color:green; font-weight:400; text-align: center; }

@media screen and (max-width:768px) {
.layout_media .feature .col-3 { padding-bottom: 15px; }
.layout_media .feature { margin-bottom: 0; }
.layout_media .feature h4 { font-size: 15px; }

}

.layout_cart .cat { margin: 0 0 3px; font-weight: 400; }
@keyframes animatedTextGradient { to { background-position: -200% center; } }


.layout .alert-danger p { line-height: 1.6; }

.layout h2 + .row > div[class^="col"] > h3 { margin-top: 15px; }
.layout .guide { padding: 0; }






/* 最短翌日お届け、当日、店頭受取り可（カートボタンの下）*/

.layout_cart .pickup {}
.layout_cart .pickup .title { margin: 0 0 10px; display: none; }
.layout_cart .pickup .delivery { margin: 0 0 5px; }
.layout_cart .pickup .locker { margin: 0; }
.layout_cart .pickup .locker .to_tokyo_dome { padding: 5px 0 0 24px; font-size: 14px; }









/* 商品画像サムネール */

.mp_thumbnail { margin: 0; overflow: hidden; }
.mp_thumbnail .mp_thumb img { width: 100%; }
.mp_thumbnail .mp_nail { width: 100%; margin-bottom: 0; }

@media screen and (max-width:768px) {
.mp_thumbnail .mp_nail { margin-bottom: 10px; }
}

section .mp_nail { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2px; }
section .mp_nail { list-style-type: none; padding: 0; }
section .mp_nail > * { width: calc(50% - 1px); box-sizing: border-box; }
section .mp_nail > *:first-child { width: 100%; }

section .mp_nail li img { width: 100%; height: auto; }
section .mp_nail li.current { border: none; opacity: 0.4; }
section .mp_nail li:hover { opacity: 0.4; }







/* スペック一覧（サムネ画像の下） */

.device_spec { margin: 15px 0 20px; clear: both; }
.device_spec ul { margin: 8px 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.device_spec ul li { list-style-type: none; padding-bottom: 8px; display: inline-block; vertical-align: middle; line-height: 1.2; border-bottom: 1px solid #ddd; flex: 1 1 100px; }
.device_spec ul li span { display: inline-block; vertical-align: middle; }
.device_spec ul li img { width: 60px; height: auto; }
.device_spec ul li:last-child { margin-right: 0; }






/* 商品料金系 */

section.item .fee.sale div:first-of-type { color: #ccc; }

section.item .fee .title { margin: 0 0 10px; font-size: 13px; font-weight: 400; }

section.item .fee .basic { font-size: 14px; line-height: 1; font-weight: 500; }
section.item .fee .basic b { font-weight: 900; line-height: 1; font-size: 24px; margin-left: 2px; font-family: "din-2014",sans-serif; }

section.item .fee .basic .sale b { color:#dc3545; }

section.item .fee .basic b span { font-size: 14px; }

section.item .fee .extend { font-size: 13px; }
section.item .fee .info { margin-top: 10px; color:red; font-size: 14px; }
section.item .fee .info small { font-size: 12px; display: block; padding-bottom: 0; }










/* カート周り */

.cart_area { margin: 10px 0 10px; padding: 0; }
.cart_area .panel { box-shadow: none; }
.cart_area .panel-body { padding: 25px 15px 10px; }
.cart_area .row { margin-bottom: 10px; }
.cart_area h2 { margin-top: 30px; font-weight: 900; }
.cart_area p {  }

.cart_area .btn { margin-bottom: 10px; }
.cart_area .btn_sim { padding: 7px 30px 7px; color: #17B610; background-color: white; border-color: #17B610; font-size: 16px; font-weight: bold; }
.cart_area .btn_sim:hover { opacity: 0.5; background-color: white; border-color: #17B610; }








/* 台数 */

.select_number_of_units {  }
.select_number_of_units .title { font-size: 13px; font-weight: 400; margin: 0 0 10px; }

.layout_cart .select_number_of_units .form-select { padding-top: 10px; padding-bottom: 10px; padding-left: 20px; border: 2px solid #0d6efd; font-weight: 900; }
.layout_cart .select_number_of_units input { padding: 10px; border: 2px solid #0d6efd; font-size: 18px; font-weight: 900; }
.layout_cart .select_number_of_units input::placeholder { color: #ccc; font-weight: 400; font-size: 14px; }



.layout_cart .btn_selected { position: relative; display: flex; flex-direction: column; /*padding: 6px 20px 6px 20px!important;*/ vertical-align: middle; cursor: pointer; background: #fff; border: 2px solid #eee; border-radius: .5rem; outline: 0; color: #666; line-height: 1.3; }
.layout_cart .btn-check:checked + .btn_selected { cursor: default; border-color: #0d6efd; color: black; }
.layout_cart .btn-check:checked + .btn_selected::before { border-color: #000; }
.layout_cart .btn-check + .btn:hover { border-color: #0d6efd; }
.layout_cart .btn-check:checked + .btn_selected::after { transform: scale(1); }
.layout_cart .form-select { position: relative; box-sizing: border-box; padding: 6px 40px 6px 20px; font-size: 18px; line-height: 1.5rem; color: #323232; cursor: pointer; /*border: 1px solid #636363;*/ border-radius: .5rem; outline: 0; box-shadow: none; appearance: none; }












.mp_modal .modal-header { border-color: #ddd; /* background: #eee; */ }

.mp_modal .selected_product { margin: 0; padding: 0 0 20px; border-bottom: 1px solid #ddd; font-size: 14px; line-height: 1.5; display: flex; column-gap: 15px; align-items: center; }
.mp_modal .selected_product ul { list-style-type: none; padding: 0; margin: 0; }
.mp_modal .selected_product li { padding: 0; }
.mp_modal .selected_product li.item { font-size: 16px; font-weight: 900; }
.mp_modal .selected_product li.option {  }
.mp_modal .selected_product li.option span { }
.mp_modal .selected_product li.option label { width: 100%; max-width: 70px; display: inline-block; }

.mp_modal .select_rental_period {  }
.mp_modal .select_rental_period .in { display: flex; grid-column-gap: 10px; justify-content: center; align-items: center; }
.mp_modal .select_rental_period .selected_rental_period { text-align: center; }
.mp_modal .select_rental_period .selected_rental_period.disabled { display: none; }
.mp_modal .select_rental_period .selected_rental_price { text-align: center; line-height: 1.2; }
.mp_modal .select_rental_period .selected_rental_price span { font-size: 24px; font-family: "din-2014",sans-serif; }
.mp_modal .select_rental_period .selected_rental_price small { font-size: 12px; }
.mp_modal .select_rental_period .selected_rental_price.disabled { display: none; }
.mp_modal .select_rental_period .sep { margin-top: 26px; }
.mp_modal .select_rental_period .title { margin: 0 0 7px; font-weight: 400; }
.mp_modal .select_rental_period .delively .title { font-size: 12px; margin: 0 0 5px; text-align: center; font-weight: 400; }
.mp_modal .select_rental_period .return .title { font-size: 12px; margin: 0 0 5px; text-align: center; font-weight: 400; }
.mp_modal .select_rental_period .title small { display: block; font-size: 12px; }
.mp_modal .select_rental_period .day { border: 2px solid #0d6efd; border-radius: .5rem; text-align: center; padding: 10px 0px; color: #0d6efd; font-weight: 900; font-size: 18px; color: black; }
.mp_modal .select_rental_period .day:hover { cursor: pointer; /*background: #0d6efd; color: white;*/ }
.mp_modal .select_rental_period .day.disabled { cursor: default; color: #ddd!important; font-weight: 400; border-color: #eee; }
.mp_modal .select_rental_period .day.disabled:hover { cursor: default; background: white; color: #0d6efd; }


.mp_modal h6 { margin: 0 0 10px; font-size: 14px; font-weight: 900; }
.mp_modal .form-select { font-size: 14px; }
.mp_modal .form-control { font-size: 14px; }
.mp_modal .form-select option:disabled { color: #ccc; font-size: 14px; }

.mp_modal .modal-footer { /*display: block; padding: 20px 15px; background: #eee;*/ /*border-radius: 0 0 14px 14px;*/ justify-content: center; }
.mp_modal .modal-footer div { display: flex; justify-content: center; align-items: center; column-gap: 20px;  }
@media screen and (max-width:768px) { .mp_modal .modal-footer div { column-gap: 10px; } }




.mp_modal .total_fee { padding: 20px 15px; border-top: 1px solid #ddd; }
.mp_modal .total_fee span { padding: 0 5px; }
.mp_modal .total_fee b { padding: 0 2px 0 6px; font-size: 22px; font-family: "din-2014",sans-serif; }

.mp_modal .opt_rec > div[class^="col"] { margin-bottom: 30px; }
.mp_modal .opt_rec .basic {}
.mp_modal .opt_rec .extend { font-size: 13px; }








/* 会員種別 */
.btn-account-type { background: transparent; border: none; border-radius: 6px !important; font-size: 14px; font-weight: 500; color: #666; padding: 8px 0; transition: all 0.2s ease; }
.btn-account-type.active { background: #fff !important; color: #0d6efd !important; box-shadow: 0 2px 4px rgba(0,0,0,0.1); font-weight: bold; }
.btn-account-type:hover:not(.active) { color: #333; }
.member-login-box:hover { background-color: #f8fbff !important; }





/* 同梱品 */
.nuri { background: #f5f5f7; padding: 20px; margin: 0 0 20px; border-radius: 14px; }
.nuri p:last-of-type { margin: 0; }



/* 無制限の注意事項 必ずご確認ください */

.confirmation { margin: 0 0 25px; padding: 0; /*background: #fdf2f3; border-radius: 14px;*/ }
.confirmation { margin: 0 0 20px; }
.confirmation .header { padding: 10px 13px; /*border: 1px solid #f9cdd2;*/ background-color: #f9cdd2; background: #eee; text-align: center; border-radius: 14px 14px 0 0; color: red; font-weight: 700; font-size: 15px; }
.confirmation .body { padding: 20px; /*border: 1px solid #f9cdd2; border-top: none;*/ border-radius: 0 0 14px 14px; background-color: #fff3f3; background: #f7f7f7; }
.confirmation ul { padding-left: 1rem; }
.confirmation ul:last-of-type { margin-bottom: 0; }
.confirmation ul li { font-size: 13px; line-height: 1.6; }





