.pconly {display:inline-block !important;}
.sponly {display:none!important;}
@media only screen and (max-width:767px){

    .pconly {display:none!important;}
    .sponly {display:inline!important;}
}

header {
    border-bottom: 1px solid #CCC;
    overflow: hidden;
    margin-bottom: 2.3rem !important;
}
.l-head__inner{
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
}
.l-head__wrap {
	max-width: 1200px;
	width: 100%;
    margin: 16px auto;
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width:767px){
    .l-head__wrap {
        margin: 8px;
    }
    header {
        margin-bottom: 0rem !important;
    }
}

/* ロゴ */
.l-head__logo{
    display: flex;
    align-items: center;
}
.l-head__logo a{
	background: url(/img/image_header-logo.png) left top no-repeat;
    background-size: 146px 48px;
    width: 146px;
    height: 48px;
    display: block;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
}
.l-head__logo-count {
	display:block;
	position: relative;
	background: #FDB913;
	float:left;
	font-size:1.6rem;
	font-weight:700;
	border-radius: 4px;
	color:#FFF;
	padding: 4px 12px;
    margin-left: 24px;
}
@media only screen and (max-width:899px){
    .l-head__logo{
        width: 43%;
    }
    .l-head__logo-count {
        font-size:1.4rem;
    }
}
@media only screen and (max-width:767px){
    .l-head__logo-count{
        display: none !important;
    }
    .l-head__logo a{
        background-size: 131px 43px;
        width: 131px;
        height: 43px;
    }
}

/* 検索 */
.l-head__list-search {
	float:right;
    display: flex;
    align-items: center;
}
.l-head__list-search li {
	display:inline-block;
	padding:0 1.5rem;
	line-height:1.5;
	font-size:1.3rem;
	width:auto;
	float:none;
	text-align:left;
    font-size: 14px;
}
.l-head__list-search li a,
.l-head__list-search li label{
	display: block;
}
/* マイページ */
.l-head__list-search li.ico_mypage{
	background: url(/img/ico_login.png) 1.6rem 0.3rem no-repeat;
	background-size: 14px 14px;
	padding-left: 3.5rem;
	padding-top:0;
}
.l-head__list-search li a {
	color:#999999!important;
	text-decoration:none!important;
}
.l-head__list-search li a:hover {color:#999!important;}
@media only screen and (max-width:899px){
    .l-head__list-search {
        text-align: right;
    }
    .l-head__list-search li {
        padding:0 1rem;
    }
    .l-head__list-search li.ico_mypage {
        padding-left: 2.5em;
    }
}
@media only screen and (max-width:767px){
    .l-head__list-search {
        margin-right: 15px;
    }
    .l-head__list-search li{
        display: block;
        width: 50px;
        float: left;
        text-align: center;
        font-size: 10px;
        font-weight: 600;
        padding:0 0rem;
    }
    .l-head__list-search li a,
    .l-head__list-search li label{
        padding: 2.3rem 0 0;
    }
    .l-head__list-search li.icon_search{
        background: url(/img/icon_header-search-sp.png) center top no-repeat;
        background-size: 40px 40px;
        height: 40px;
    }
    .l-head__list-search li.icon_menu{
        background: url(/img/ico_menu.png) center top no-repeat;
        background-size: 20px;
    }
    .l-head__list-search li.ico_mypage{
        background: url(/img/ico_login.png) center top no-repeat;
        background-size: 20px;
        padding-left: 0;
        width: 70px;
    }
}

/* 検索ボックス（PC） */
.l-head__list-search input[type="text"] {
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
    border-left: 1px solid #CCC;
    border-radius: 6px 0 0 6px;
	-webkit-border-radius: 6px 0 0 6px;
	-moz-border-radius: 6px 0 0 6px;
    font-size: 16px;
	padding: 1rem 1rem;
	width: 300px;
    color: #999 !important;
    outline:none;
}
.l-head__list-search input[type="submit"] {
	background: url(/img/icon_header-search.png) right center no-repeat;
	background-size: contain;
	width: 89px;
	height: 41px;
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	margin: 0;
	margin-left: -7px;
	color:#59A534;
	cursor:pointer;
}
@media only screen and (max-width:899px){
    .l-head__list-search input[type="text"] {
        width: 200px;
    }
}

/* 検索ボックス（SP） */
.l-head__search-box-modal {
    display: none; /* デフォルトでは非表示に設定 */
    position: fixed; /* モーダルがページ全体に固定されるように設定 */
    top: 0; /* ページの最上部からスタート */
    left: 0; /* ページの最左端からスタート */
    width: 100%; /* モーダルが画面全体の幅を占める */
    height: 100%; /* モーダルが画面全体の高さを占める */
    background-color: rgba(0, 0, 0, 0.8) !important; /* 背景を半透明の黒に設定（モーダルの背後が見えるように） */
    z-index: 9999;
}
.modal-content {
    position: fixed; /* モーダル内容が画面上に固定されるように設定 */
    top: 10%; /* 縦方向の中央に配置 */
    left: 50%; /* 横方向の中央に配置 */
    transform: translateX(-50%); /* 完全に中央に配置するための補正 */
    padding: 24px 20px 10px; /* モーダル内の余白を設定 */
    width: 92%; 
    height: 150px; 
    background-color: #FFF; 
    border-radius: 10px;
}
/* モーダルを閉じるボタン（×）のスタイル */
#closeModal {
    position: absolute; /* モーダル内で絶対位置に配置 */
    display: flex; /* ボタン内のテキストが中央に配置されるようにフレックスボックスを使用 */
    align-items: center; /* ボタン内のテキストを縦方向に中央揃え */
    justify-content: center; /* ボタン内のテキストを横方向に中央揃え */
    top: -20%; /* モーダル内容の上部から離れた位置に配置 */
    right: 0%; /* モーダル内容の右端から離れた位置に配置 */
    font-size: 20px; /* 閉じるボタンのフォントサイズ */
    font-weight: bold; /* 閉じるボタンのフォントを太字に設定 */
    cursor: pointer; /* ホバー時にポインタが表示されるように設定 */
    color: #FFF; /* 閉じるボタンのテキストカラーを白に設定 */
    width: 30px; /* ボタンの幅 */
    height: 30px; /* ボタンの高さ */
}
.l-head__search-box-modal input[type="text"] {
	border: 1px solid #CCCCCC;
    background-color: #F5F5F5;
    border-radius: 6px;
    font-size: 1.3rem;
    padding: 10px 1rem;
    width: 100%;
    line-height: 1;
}
#search_box input[type="submit"] {
    background: url(/img/icon_header-search.png) right center no-repeat;
    background-size: contain;
    width: 94px;
    height: 40px;
    display: block;
    overflow: hidden;
    text-indent: 100%;
    margin: 0;
    cursor: pointer;
    border-radius: 6px;
    margin: 20px auto;
    background-color: #59A534;
}

/* ヘッダーナビ */
/* CSS上書き */
.mm-menu.mm-offcanvas {
    width: 100%;
}
html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-80%, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.mm-panels{
    background: #FFF !important;
}
.mm-next::after{
    content: none !important;
}
.mm-menu .mm-divider, .mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel, .mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next, .mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel, .mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
    background:none !important;
}
.mm-listview .mm-vertical .mm-panel, .mm-vertical .mm-listview .mm-panel {
    padding: 0 !important;
}
.mm-listview .mm-opened ul li a::after{
    content: none !important;
}

.l-head__nav-inner{
    padding: 50px 30px 12px;
}
.l-head__nav-list{
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 12px;
    margin: 0 !important;
}
.l-head__nav-list:last-child{
    margin-bottom: 0;
    border-bottom: none;
}
.l-head__nav-list-item-title{
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 20px 0 7px !important;
}
.l-head__nav-list-item-category{
    font-weight: 700;
    color: #0061D2;
    align-items: center;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 7px 0 !important;
}
.l-head__nav-list-item-category .allow {
    display: inline-block;
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 15px;
    border-bottom: solid 2px #DDDDDD;
    border-right: solid 2px #DDDDDD;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    padding-right: 0 !important;
}
.l-head__nav-list-item-category.active .allow {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    margin-top: .2em;
    border-bottom: solid 2px #0061D2;
    border-right: solid 2px #0061D2;
}
.l-head__nav-list-item-category:hover {
    cursor: pointer;
}
.l-head__nav-list-item-sub {
    display: none;
    padding: 15px 10px;
    background-color: #F1F8FF;
    margin-bottom: 12px;
    margin-top:10px;
}
/* .l-head__nav-list-item-sub.active {
    margin-bottom: 12px;
    margin-top:10px;
} */
.l-head__nav-list-item-sub-category{
    display: inline-flex !important;
    align-items: center;
    padding: 3px 12px 3px 0 !important;
}
.l-head__nav-list-item-sub-category:before{
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 6px;
    border-bottom: solid 2px #0061D2;
    border-right: solid 2px #0061D2;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -ms-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
}
.l-head__nav-list-item-sub-category a{
    text-decoration: none;
    font-size: 12px;
    color: #000;
    font-weight: 500;
}
.l-head__nav-close{
    position: absolute; 
    align-items: center;
    justify-content: center;
    top: 4%;
    right: 10%;
    font-size: 20px;
    cursor: pointer;
    color: #999999;
    width: 30px;
    height: 30px;
    text-align: center;
}
.l-head__nav-close a{
    color: #999999 !important;
}
.l-head__nav-close span{
    font-size: 10px;
    font-weight: 700;
    display: block;
}

/*IEだけ*/
/* @media all and (-ms-high-contrast:none){
    .checkbox input {display: none!important;}
    header select {
        border:1px solid #CCC;
        border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        font-size:1.3rem;
        padding:0.6rem 2rem 0.6rem 1rem;
        background:url(/img/ico_arrow01.png) 9rem center no-repeat #FFF;
        background-size:6px 4px;
    }
    #search_box select {
        border:1px solid #CCC;
        border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        font-size:1.3rem;
        padding:9px 2rem 9px 1rem;
        background:url(/img/ico_arrow01.png) 9rem center no-repeat #FFF;
        background-size:6px 4px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        line-height:1;
    }
} */
/*Firefoxだけ*/
/* @-moz-document url-prefix() {
    header select {
        border:1px solid #CCC;
        border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        font-size:1.3rem;
        padding:0.6rem 2rem 0.6rem 1rem;
        background:url(/img/ico_arrow01.png) 9rem center no-repeat #FFF;
        background-size:6px 4px;
    }
    #search_box select {
        border:1px solid #CCC;
        border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        font-size:1.3rem;
        padding:8px 2rem 8px 1rem;
        background:url(/img/ico_arrow01.png) 9rem center no-repeat #FFF;
        background-size:6px 4px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        line-height:1;
    }
    header input[type="submit"] {
        background: url(/img/ico_sarch02.png) right center no-repeat;
        background-size: contain;
        width: 36px;
        height: 33px;
        display: inline-block;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        margin: 0;
        font-size: 1.4rem;
        margin-left: -7px;
        color:#59A534;
        cursor:pointer;
    }
    #search_box input[type="text"] {
        border-top: 1px solid #CCC;
        border-bottom: 1px solid #CCC;
        font-size: 1.3rem;
        padding: 11px 1rem 11px 1rem;
        border-left: none;
        margin-left: -3px;
        width: 40%;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        line-height:1;
    }
} */