html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    font-family: Roboto, "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
}

img {
    width: 100%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

.flex {
    display: flex;
}

.hover-opa:hover {
    opacity: 0.7;
}

.content-center {
    align-items: center;
}

.mrn {
    margin-right: 0!important;
}

/*ヘッダーエリア共通*/
.header-inner {
    max-width: 1130px;
    margin: auto;
    padding-top: 20px;
}
.header-main {
    padding-bottom: 20px;
}
.header-logo, .h-content, .h-favorit, .h-login, .h-price {
    margin-right: 1rem;
}
.header-left {
    width: 40%;
    align-items: center;
}
.header-right {
	width: 60%;
	align-items: center;
	position: relative;
	justify-content: flex-end;
}
.header-logo {
    width: 120px;
}
.h-content {
    width: 45%;
}
.h-content p {
    font-weight: bold;
    line-height: 1.5rem;
    font-size: 15px;
    color: #525263;
}
.header-sns {/*Instagram＆YouTubeアイコン大きさ*/
    width: 95px;
}
.h-instagram {
    margin-right: 1rem;
}
.h-favorit a, .h-login a {/*お気に入り・ログインボタン*/
    border: 1px solid #0071b3;
    padding: 0.5rem;
}
.h-favorit button, .h-login button {/*お気に入り・ログインボタン*/
    border: 1px solid #0071b3;
    padding: 0.5rem;
}
.h-cart {
    cursor: pointer;
}
.h-cart a {
    background-color: #F8F8F8;
    border-radius: 20px;
    padding: 1rem 1.5rem;
}
.h-price {
    margin-right: 0;
    margin-left: 1.5rem;
    font-size: 14px;
}
.cart-count {/*カートカウント数字*/
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 20px;
    min-width: 20px;
    padding: 4px;
    font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 12px));
    font-weight: var(--text-font-bolder-weight);
    text-align: center;
    background-color: #DE5D50;
    color: white;
    border-radius: 1.75em;
    transition: transform .35s ease-in-out;
    will-change: transform;
    transform: scale(1.01);
    z-index: 1;
}

.cartTooltip {
	position:absolute;
	background: #f8f8f8;
	margin-top: 30px;
	width: 250px;
	z-index: 20;
	padding: 1rem;
}
.cartTooltip::before{
	display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8.5px 10px 8.5px;
    border-color: transparent transparent #f8f8f8 transparent;
    position: absolute;
    top: -9px;
}
.cartTooltipMessage{
	background-color: #F99;
	text-align: center;
	font-weight: bold;
	color: white;
	padding: 1rem 0.5rem;
}
.cartTooltipItem {
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #bbbbbb;
}
.cartTooltipItem:after {
	content: " ";
	clear: both;
	display: table;
}
.cartTooltip_productImage {
	width: 45%;
	float: left;
}
.cartTooltip_product {
	width: 55%;
	float: right;
	padding-left: 0.5rem;
}
.cartTooltip_productName,
.cartTooltip_productPrice,
.cartTooltip_productQuantity {
	font-size: 0.9rem;
}
.cartTooltip_productTax {
	display: inline-block;
	font-size: 0.7rem;
}
.cartTooltip_productName {
	margin-bottom: 10px;
}
.cartTooltip_productPrice {
	margin-bottom: 5px;
}
.cartTooltip_productPrice span {
	font-weight: bold;
}
.cartTooltip_productQuantity {
	font-size: 0.8rem;
}

.cart-nav-btn {
	margin: 0.5rem 0;
	text-align: center;
}
.cart-nav-btn:last-of-type {
	margin-bottom: 0;
}
.cart-nav-btn a {
	padding: 1rem;
	display: block;
}
.cart-nav-btn a.action-btn {
	background-color: #0071b3;
	color: white;
}
.cart-nav-btn a.cancel-btn {
	border: solid 1px;
	background-color: transparent;
}
.ec-cartNaviIsset__cart {
	display: flex;
	align-items: center;
}
.ec-cartNaviIsset__cart:first-child {
	display: none;
}
.ec-cartNaviIsset__cartImage {
	width: 80px;
}
.ec-cartNaviIsset__cartContent {
	text-align: left;
	margin-left: 0.5rem;
	padding: 1rem 0;
}

.header-search-inner {/*全ての商品＆キーワードを入力*/
    width: 100%;
    margin: auto;
}
.h-category {/*商品カテゴリ選択ボックス*/
    overflow: hidden;
    width: 50%;
    display: flex;
}
.h-category, .category_sl1 {
    position: relative;
    background: black;
    padding: 0.5rem;
    color: white;
    border-radius: 20px 0 0 20px;
}
.category_sl1::before {
    position: relative;
    top: 0.5em;
    left: 96%;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    pointer-events: none;
}
.h-category select, .h-keyword form input {
    width: 100%;
}
.h-category select option {
	color: #000;
}
.h-keyword {/*キーワード検索ボックス*/
    border: 1px solid #ccc;
    background-color: #f6f6f6;
    width: 50%;
    border-radius: 0 20px 20px 0;
    padding: 0.5rem;
    position: relative;
    display: flex;
}
.h-keyword input {
	width: 94%;
}
.hs-container {
    padding: 0.5rem;
    width: 100%;
    display: flex;
}
.fa-search {
    margin-left: auto;
}
.ec-icon {
	position: absolute;
	top: 0.5em;
	right: 1.2em;
}

.header-nav-inner {/*ヘッダーナビ*/
    width: 70%;
    margin: auto;
    padding: 1rem 0;
    margin-bottom: 20px;
}
.header-nav ul li {
    width: 155px;
    text-align: center;
    margin: 2px 2px 2px 0;
}
.header-nav ul li a {
    color: white;
    padding: 1.3rem;
    display: block;
    background-color: #103750;
    font-weight: bold;
}
.hnv {
    justify-content: center;
}
.header-item ul {
    display: none;
}
.open-next:before {/*生、分類階層3-1、干物・つけ魚の矢印*/
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 25px;
    right: 15px;
}
.open-next3-3:before {/*分類階層3-3の矢印*/
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 148px;
    right: 15px;
}
.open-next-trg2:before {/*海老・蟹・タコ・イカの矢印*/
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 341px;
    right: 15px;
}
.open-next-trg4:before {/*珍味・練り物の矢印*/
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 87px;
    right: 15px;
}
.header-item:hover a + .h-menu-open {
    display: block;
    position: absolute;
    z-index: 11;
}
.open-trigger1 {
	position: relative;
}
.open-trigger1:hover a + .h-menu-open2 {/*生の下層メニュー*/
    display: block;
    position: absolute;
    z-index: 11;
    left: 157px;
    top: -2px;
}
.h-menu-open3-1:hover a + .h-menu-open3-1-1 {
    display: block;
    position: absolute;
    z-index: 11;
    left: 157px;
    top: -2px;
}
.h-menu-open3-3:hover a + .h-menu-open3-3-1 {
    display: block;
    position: absolute;
    z-index: 11;
    left: 157px;
    top: 123px;
}
.open-trigger2:hover a + .h-menu-open4 {/*海老・蟹・タコ・イカの下層メニュー*/
    display: block;
    position: absolute;
    z-index: 11;
    left: 157px;
    top: 308px;
}
.open-trigger3:hover a + .h-menu-open4-1 {/*干物・つけ魚*/
    display: block;
    position: absolute;
    z-index: 11;
    left: 157px;
    top: -2px;
}
.open-trigger4:hover a + .h-menu-open4-2 {/*珍味・練り物*/
    display: block;
    position: absolute;
    z-index: 11;
    left: 157px;
    top: 61px;
}

.header-sp, .h-content-sp, .header-hum, .header-sp-close {/*spヘッダーをデスクトップで非表示*/
    display: none;
}

/* カートに追加モーダル */
.ec-modal .modal-wrap {
	padding: 20px 10px;
	width: 60%;
	margin: 20px auto;
}
.modal-cross {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.modal-cross span:hover {
	opacity: 0.7;
}
.cartAdd-message {
	text-align: center;
}
.cartAdd-button {
	margin-top: 1.5rem;
	text-align: center;
	justify-content: center;
	display: flex;
}
.cartAdd-closeBtn, .cartAdd-cartBtn {
	display: inline-block;
	width: 200px;
	padding: 1rem 0;
}
.cartAdd-cartBtn {
	background: #0071b3;
	color: white;
}
.cartAdd-closeBtn {
	background: #525263;
	color: white;
	margin-right: 10px;
	cursor: pointer;
}

/*エラー共通設定*/
.input-danger {
	border: 1px solid red!important;
	background:#FDF1F0!important;
}
.text-danger {
	width:100%;
	margin-top: 5px;
	margin-bottom: 25px;
	font-size: 12px;
	font-weight: bold;
	color: #DE5D50;
	text-align: left;
}

@media screen and (max-width:460px) {
    /*スマホヘッダーエリア*/
    .header-right, .header-search, .header-nav, .h-content {
        display: none;
    }
    .header-sp, .h-content-sp, .header-hum {
        display: block;
    }
    .header-left {
        padding: 0 1rem;
    }
    .hum-btn {
        padding: 10px;
        margin-bottom: 3rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .h-hum-area {
        display: block;
        cursor: pointer;
        border-radius: 50%;
        box-sizing: border-box;
        padding: 10px;
        width: 50px;
        height: 50px;
        font-size: 18px;
        text-align: center;
        color: black;
        background: white;
        position: fixed;
        top: 15px;
        left: 10px;
        z-index: 1000;
    }
    .header-logo {
        margin-right: 0;
    }
    .header-sp {
        overflow-y: scroll;
        width: 260px;
        height: 100vh;
        transform: translateX(-300px);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20;
        background-color: black;
    }
    .header-sp.is_active {
        display: block;
        transform: translateX(0);
        transition: all .3s;
        z-index: 100000;
    }
    .header-sp-overlay {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        background: transparent;
        transform: translateX(0);
        transition: all .3s;
        visibility: hidden;
    }
    .header-sp-overlay.have_curtanin {
        display: block;
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
        visibility: visible;
        z-index: 21;
    }

    .header-sp-close {/*スマホ時クローズボタン*/
        display: none;
        cursor: pointer;
        border-radius: 50%;
        box-sizing: border-box;
        padding: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
        text-align: center;
        color: black;
        background: white;
        position: fixed;
        top: 10px;
        left: 270px;
        z-index: 1000;
    }
    .header-sp-close.is_active {
        display: inline-block;
        transition: all .3s;
    }

    .header-left {
        width: 100%;
        justify-content: center;
    }
    .h-content-sp {
        display: block;
        text-align: center;
        font-weight: bold;
        font-size: 10px;
        margin-bottom: 1rem;
    }
    .header-sns {
        width: 25%;
        margin-left: 2rem;
    }
    .h-instagram {
        margin-right: 1rem;
    }

    .hs-container {
    	display: block;
    }

    /*ハンバーガーメニュー内*/
    .header-hum {
        display: block;
        width: 30%;
    }
    .header-search-inner {
        background-color: #EBEBEB;
        padding: 1rem 0.5rem;
    }

    .h-category, .h-keyword {/*選択ボックスとキーワード検索エリア*/
        width: 100%;
    }
    .h-category, .category_sl1 {
        border-radius: 10px 10px 0 0;
        align-items: center;
    }
    .h-keyword {
        border-radius: 0 0 10px 10px;
    }
    .category_sl1::before {
        left: 89%;
        top: 0;
    }
    .ec-icon {
    	top: 0.6em;
    	right: 1em;
    }

    .hsp-category {/*カテゴリ一覧エリア*/
        background-color: #f8f8f8;
    }
    .hsp-category-title {
        padding: 1rem 0.5rem;
    }
    .hsp-category-title p {
        font-weight: bold;
    }
    .hsp-category-item a {
        display: block;
        width: 100%;
    }
    .hsp-category-item a {
        padding: 1rem 0.5rem;
    }
    .hsp-nav-item a {
    	padding: 1rem 0.5rem;
    	border-top: 1px solid #fff;
    }
    .hsp-nav-item button {
    	padding: 1rem 0.5rem;
    	border-top: 1px solid #fff;
    	width: 100%;
    }
    .hsp-categoryItem {
    	display: flex;
    	align-items: center;
    	border-top: 1px solid #ccc;
    }
    .hsp-sub {
        display: none;
    }
    .ml1 {
        padding-left: 1.5rem!important;
    }
    .ml2 {
        padding-left: 2.5rem!important;
    }

    .hsp-nav-area {/*下の黒いナビエリア*/
        background-color: black;
    }
    .hsp-nav-item a {
        color: white;
    }
    .hsp-nav-item button {
        color: white;
    }
    .hsp-nav-icon {
        margin-right: 0.5rem;
    }
    .hsp-b {
        border-bottom: 1px solid white;
    }

    .contents-button {
    width: 10px;
    height: 10px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    -webkit-transform: rotate(135deg);
    transform: rotate(-45deg);
    transition: all 0.3s;
    margin-left: auto;
    margin-right: 7%;
	}

	.rotate .contents-button {
    transform: rotate(135deg);
	}
}
/*ヘッダーエリア共通ここまで*/


/*メインコンテンツ*/
#main {
    max-width: 1150px;
    width: 100%;
    margin: auto;
}
.contentsArea {
    margin: 0 auto;
    margin-bottom: 3rem;
    width: 85%;
    max-width: 960px;
}
.mypageArea {
    margin: 0 auto;
    margin-bottom: 3rem;
    width: 75%;
    max-width: 960px;
}
.pageTitle h1 {
    border-bottom: 1px solid #ccc;
    margin: 1rem;
    padding: 8px;
    font-size: 32px;
    font-weight: bold;
}
/* モーダル */
/*モーダルウィンドウ*/
.modal-window, .modal-window2, .modal-window-price, .modal-window-destination,
.modal-window-error {
    display: none;
    position: fixed;
    top: 5%;
    left: 30%;
    /* transform: translate(-50%, -50%); */
    width: 40rem;
    background-color: white;
    border-radius: 30px;
    z-index: 21;
    font-size: 14px;
}
.modal-contents-area {
    padding: 2rem 2rem;
}
.modal-title {
    border-bottom: 1px solid #707070;
    padding: 1rem 2rem;
}
.modal-title p {
    font-size: 1.2rem;
    font-weight: bold;
}
.modal-batsu {
    margin-left: auto;
    width: 15px;
    cursor: pointer;
}
.modal-batsu span {
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #6D6D6D;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
.modal-batsu span:nth-last-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.modal-batsu span:nth-last-child(2) {
    transform: rotate(-45deg);
    top: 10px;
}
.modal-button-area {
    justify-content: center;
    padding: 1rem 0 3rem 0;
}
.modal-button-area button {
	outline: none
}
.modal2-button-area {
    justify-content: center;
    padding: 2rem 0 0 0;
}

/*一覧＆詳細モーダルウィンドウ*/
.ec-modal {
    display: none;
    position: fixed;
    top: 20%;
    left: 30%;
    width: 40rem;
    background-color: white;
    border: 1px solid #000;
    padding: 2rem;
    z-index: 21;
    overflow-y: auto;
    max-height: 90%;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
}
#ec-modal-header {
	text-align: center;
	margin-bottom: 1rem;
}
.ec-role {
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 5px;
}
.ec-role-btn {
	display: block;
	width: 200px;
	padding: 0.5rem 0;
	color: #fff;
}
.ec__role--label {
	background-color: #525263;
}
.ec__role--a {
	background-color: #0071b3;
}
.ec-modal-wrap label span img {
	width: 20px;
	top: 15px;
	right: 15px;
	position: absolute;
}

.ec-Errormodal {
    display: none;
    position: fixed;
    top: 20%;
    left: 30%;
    width: 40rem;
    background-color: white;
    border: 1px solid #000;
    padding: 2rem;
    z-index: 21;
    overflow-y: auto;
    max-height: 90%;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
}

.cartError-cartBtn {
	background: #0071b3;
	color: white;
	display: inline-block;
	width: 200px;
	padding: 1rem 0;
}

.cartError-message {
	text-align: center;
}

.cartError-button {
	margin-top: 1.5rem;
	text-align: center;
	justify-content: center;
	display: flex;
}

.cartError-closeBtn, .cartError-cartBtn {
	display: inline-block;
	width: 200px;
	padding: 1rem 0;
}

.cartError-closeBtn {
	background: #525263;
	color: white;
	margin-right: 10px;
	cursor: pointer;
}

.overlay {/*オーバーレイ*/
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 10;
}

.bg-load-overlay {/*form２重送信防止 オーバーレイ*/
  background: rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
  position: fixed;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-around;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483647;
  opacity: 1;
}

/* 各画面入力フォーム */
.customerForm {
    flex-basis: 100%;
    justify-content: center;
}
.customerData {
    flex-basis: 85%;
}
.attention {
    line-height: 1.5rem;
    margin: 2rem 0 1rem 0;
}
.customerData dl {
    flex-basis: 100%;
    border-bottom: 1px dotted #ccc;
    padding: 1rem 0px;
}
.customerData dl:first-of-type {
    border-top: 1px dotted #ccc;
}
.customerData dt {
    flex-basis: 30%;
}
.customerData dd {
    flex-basis: 70%;
}
.label_area {
    padding: 1rem 0;
}
.required {
    vertical-align: 2px;
    color: #DE5D50;
    font-size: 12px;
    font-weight: bold;
    padding: 1rem;
}
.customerData input {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem 0.5rem;
    margin: 0.3rem 0rem;
    width: 45%;
}
.customerData input:focus {
    border: 1px solid #0092C4;
}
.name input {
    margin-right: 1rem;
}
.postalCode_area {
    flex-basis: 100%;
    align-items: center;
}
.postalCode, .Address_icon {
    flex-basis: 5%;
    text-align: center;
}
.p-postal-code {
    flex-basis: 20%;
}
.search_postalCode {
    flex-basis: 20%;
    text-align: left;
}
.postalCode_btn {
    color: #0092C4;
}
.p-region {
    -webkit-appearance: menulist;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.3rem 0.5rem;
    margin: 1rem 0rem;
}
.p-region-id {
    -webkit-appearance: menulist;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.3rem 0.5rem;
    margin: 1rem 0rem;
}
.p-region-id:focus {
    border: 1px solid #0092C4;
}
.streetAddress {
    margin-bottom: 0.5rem;
}
.streetAddress input {
    width: 100%;
}
.extendedAddress input {
    width: 100%;
}
.input_phoneNumber input {
    width: 30%;
}
.input_Email input {
    width: 100%;
}
.birthday {
    display: inline-block;
}
.birthday p {
    margin: 0 0.5rem;
}
.gender {
    flex-basis: 100%;
    padding: 1rem 0;
}
.gender-select {
    flex-basis: 20%;
}
.gender-select input {
    width: 15%;
    margin-right: 1rem;
}
.input_contact textarea {
    width: 100%;
    height: 100px;
    resize: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

/* ボタン */
.btnArea {
    flex-basis: 100%;
    justify-content: center;
    margin-top: 1rem;
}
.btn-contents label {
    font-weight: bold;
}
.nextBtn a {
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    background-color: #0071b3;
    display: block;
    line-height: 3.5rem;
}
.backBtn a {
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    background-color: #525263;
    display: block;
    line-height: 3.5rem;
}
.backBtn a:hover {
    background-color: #333;
}
.nextBtn button {
  width: 100%;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    background-color: #0071b3;
    display: block;
    line-height: 3.5rem;
    margin: auto;
}
.backBtn button {
    width: 100%;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    background-color: #525263;
    display: block;
    line-height: 3.5rem;
}
.backBtn button:hover {
    background-color: #333;
}
.m-b {
    margin-bottom: 2rem;
}

/*カート・決済/フロー部分の設定*/
.shoppingArea-progress {
    margin-top: 3rem;
    font-size: 16px;
    color: #525263;
    width: 100%;
    max-width: 1130px;
    flex-wrap: wrap;
    justify-content: center;
}
.progress-list {
    margin-bottom: 2rem;
    display: table;
    table-layout: fixed;
    width: 100%;
    max-width: 600px;
    list-style: none;
}
.progress-item {
    display: table-cell;
    position: relative;
    text-align: center;
    font-weight: bold;
}
.progress-number {
    line-height: 42px;
    width: 42px;
    height: 42px;
    font-size: 20px;
    margin-bottom: 5px;
    background-color: #525263;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
}
.progress-label {
    font-size: 12px;
}
.active .progress-number {
    background-color: #5CB1B1;
}
.active .progress-label {
    color: #5CB1B1;
}
.progress-item:after {
    content: '';
    position: absolute;
    display: block;
    background-color: #525263;
    width: 100%;
    height: 0.2em;
    top: 1.25em;
    left: 50%;
    z-index: -1;
}
.progress-list li:last-child::after {
    display: none;
}

/* マイページ/閲覧タブ */
.pageArea {
    margin: 2rem 0 1rem 0;
    padding: 0 1rem;
}
.navlistRole ul {
    justify-content: center;
    flex-basis: 100%;
    padding: 1rem 0;
}
.navlistRole a {
    border: 1px solid #D0D0D0;
    text-align: center;
    font-weight: bold;
    padding: 1rem 0;
    flex-basis: 25%;
    border-right: none;
}
.navlistRole a:last-child {
    border-right: 1px solid #D0D0D0;

}
.navlistRole a:hover {
    background-color: #f6f6f6;;
}
.active li {
    color: #DE5D50;
}
.memberName {
    text-align: center;
    border-bottom: 1px dotted #ccc;
    padding: 1rem 0 2rem 0;
}

/* トータルボックス */
.totalArea {
    flex-basis: 33%;
    padding: 0 1rem;
}
.totalBox {
    background-color: #f6f6f6;;
    position: sticky;
    top: 0;
    height: fit-content;
    padding: 1rem;
    margin: 1rem 0;
}
.statement {
    border-bottom: 1px solid #e2e2e2;
}
.totalBox-spec {
    margin-bottom: 8px;
    flex-basis: 100%;
    justify-content: space-between;
}
.totalBox-spec dt {
    font-weight: normal;
}
.totalBox-total {
    text-align: right;
    padding: 1rem 0;
    font-weight: bold;
}
.totalBox-price {
    margin: 0 0.5rem;
    font-size: 24px;
}
.totalBox-taxRate {
    text-align: right;
    font-size: 12px;
}
.totalBox-paymentTotal {
    text-align: right;
    padding: 2rem 0 1rem 0;
    font-weight: bold;
}
.totalBox-paymentTotal span {
    color: #de5d50;
}
.bn-btn {
    margin: 0.5rem 0;
}

/*商品一覧・注文履歴 ページ切り替えボタン*/
.page-button-area {
    background-color: white;
    justify-content: center;
    padding: 3rem 0 2rem 0;
}
.pagebutton-item a {
    padding: 0.5rem 1rem;
}
.pagebutton-item a:hover {
    background-color: #f0f0f0;;
}
.pagebutton-item2 span {
    background-color: #f0f0f0;
    padding: 0.5rem 1rem;
}
.page-active a {
    background-color: #f0f0f0;
}

/*エラー画面設定*/
.error-content h2 ,.error-content p {
    text-align: center;
}
.error-content h2 {
    font-size: 5rem;
    font-weight: bold;
}
.error-content p {
    margin-top: 1rem;
    margin-bottom: 3rem;
    line-height: 1.5rem;
}

@media screen and (max-width:460px) {
    /*メインコンテンツ横幅*/
    .contentsArea, .mypageArea {
        width: 92%;
    }

    /*ページタイトル共通設定*/
    .pageTitle h1 {
        border-top: 1px solid #ccc;
        border-bottom: 1px dotted #ccc;
        margin: 1rem 0;
        padding: 8px 0;
        font-size: 16px;
        font-weight: bold;
    }

    /* 各画面入力フォーム */
    .customerData {
        flex-basis: 100%;
    }
    .customerData dl {
        flex-direction: column;
    }
    .label_area {
        padding: 0;
    }
    .postalCode, .Address_icon {
        flex-basis: 10%;
    }
    .p-postal-code {
        flex-basis: 40%;
    }
    .search_postalCode {
        flex-basis: 30%;
        text-align: left;
    }
    .input_phoneNumber input {
        width: 40%;
    }

    /* ボタン */
    .btnArea-btn {
        flex-basis: 100%;
    }

    /*カート/フロー部分の共通設定*/
    .shoppingArea-progress {
        margin-top: 1rem;
        padding: 0;
    }
    .progress-number {
        line-height: 30px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .progress-item:after {
        top: 1em;
    }
    .cartForm {
        flex-basis: 100%;
    }
    .attention {
        margin-top: 1rem;
        width: 100%;
        font-size: 16px;
    }

    /* マイページ/閲覧タブ */
    .pageArea {
        margin: 1rem 0 1rem 0;
        padding: 0;
    }
    .navlistRole-navlist{
        flex-wrap: wrap;
    }
    .navlistRole ul {
        justify-content: flex-start;
        padding: 0 0 1rem 0;
    }
    .navlistRole a {
        border: 1px solid #D0D0D0;
        text-align: center;
        font-weight: bold;
        padding: 1rem 0;
        flex-basis: 50%;
        margin-right:-1px;
        margin-bottom:-1px;
    }
    /* トータルボックス */
    .totalBox-price {
        font-size: 16px;
    }

    /*ecモーダル共通*/
    .ec-modal {
		top: 30%;
		left: 50%;
		width: 90%;
		padding: 1rem;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
    }
    .ec-modal .modal-wrap {
    	width: auto;
    }
    .cartAdd-button {
    	display: flex;
    	font-size: 0.9rem;
    }

    .ec-Errormodal {
		top: 30%;
		left: 50%;
		width: 90%;
		padding: 1rem;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
    }
    .ec-Errormodal .modal-wrap {
    	width: auto;
    }
    .cartError-button {
    	display: flex;
    	font-size: 0.9rem;
    }

    /*エラー画面設定*/
	.error-content h2 {
	    font-size: 3rem;
	}
}
/*メインコンテンツここまで*/

/*フッターエリア共通*/
#footer {
    background-color: #103750;
}
.footer-content {
    margin: auto;
}
.footer-nav {
    padding: 2rem 0;
}
.footer-nav ul {
    justify-content: center;
    display: flex;
}
.footer-logo {
    width: 150px;
}
.footer-logo a {
    border-bottom: none!important;
    margin-right: 2rem;
}
.footer-item a {
    color: white;
    margin-right: 2rem;
    border-bottom: 1px solid white;
    font-size: 14px;
}
.footer-item a:hover {
    border-bottom: none;
}
.footer-cpr p {
    color: white;
    text-align: center;
    font-size: 12px;
}

@media screen and (max-width:460px) {
    .footer-nav {
        padding-bottom: 0;
    }
    .footer-nav ul {
        display: block;
    }
    .footer-item {
        text-align: center;
        border-bottom: 1px solid #7d7d7d;
        padding: 1rem 0;
    }
    .footer-item a {
        margin-right: 0;
        border-bottom: none;
    }
    .footer-logo {
        width: 120px;
        margin: auto;
        border-bottom: none;
        padding: 0;
    }
    .footer-cpr {
        padding: 3rem 0;
    }
}
/*フッターエリア共通ここまで*/