/**************************************/
/*    共通レイアウト
/**************************************/
/* popup */
.openPopup {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
.popupCheckbox {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
.popupCheckbox:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: rgba(0,0,0,0.7);
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.popupWindow {
	position: relative;
	top: 40%;
	left: 50vw;
	padding: 0px 20px 20px;
	width: 90vw;
	max-width: 380px;
	min-height: 240px;
	background-color: #F7F8F8;
	border-radius: 6px;
	transform: translate(-50%, -50%);
}
.popup_title{
	font-size: 16px;
	line-height: 64px;
	text-align: center;
}
.popup_subtitle{
	line-height: 32px;
	text-align: center;
}
.closePopup {
	cursor:pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 20px;
}
.btn_close_popup{
	display: block;
	position: absolute;
	top: -20px;
	right: -12px;
	line-height: 38px;
	text-align:center;
	width: 40px;
	height: 40px;
	background-color: #FFF;
	border: solid 1px #EBF2EE;
	border-radius: 20px;
}

.overlay_base{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.7);
	z-index:10;
}

.popup-trigger{cursor: pointer;}


/**************************************/
/*    ローディング中
/**************************************/
#loading {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.spinner_box {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: spinner_anime 0.8s infinite linear;
}

@keyframes spinner_anime {
    100% {
        transform: rotate(360deg);
    }
}


/**************************************/
/*    ページャー
/**************************************/
#pagenation{}
#pagenation .pagination_box{
	line-height: 42px;
	margin: 20px auto;
}
#pagenation .pagination_box .prev_arrow,
#pagenation .pagination_box .next_arrow{
	display: block;
	color: #ABB3AF;
	font-size: 20px;
	text-align: center;
	line-height: 40px;
	width: 42px;
	height: 42px;
	border: solid 1px #ABB3AF;
	border-radius: 21px;
}
#pagenation .pagination_box .pagination_num_box{
	width: calc(100% - 84px);
}
#pagenation .pagination_box .pagination_num{
	color: #ABB3AF;
	text-align: center;
	width: 20%;
}
#pagenation .pagination_box .pagination_num.active_page{
	font-weight: bold;
	color: #0A8647;
}

.error_txt{
	padding:8px;
	color: #C00;
	line-height: 150%;
}

/**************************************/
/*    ヘッダー＆フッター
/**************************************/
/**header**/
header {
	height: 64px;
	border-bottom: solid 1px #EBF2EE;
}
.header_logo_box{
	line-height: 50px;
	width: 50%;
	font-size:16px;
	padding: 6px 8px;
	overflow: hidden;
}
.header_logo_box .logo_img{
	width: auto;
	height: 50px;
}

.header_nav_box{
	position:relative;
	text-align: right;
	width: 50%;
	height: 62px;
}
.header_nav_box .btn_checkout{
	display:block;
	position: absolute;
	right: 84px;
	top: 12px;
	text-align:center;
	padding-top: 32px;
	width: 72px;
	height: 48px;
	background-image: url('/img/common/icon_checkout.png');
	background-size: 28px 28px;
	background-repeat:no-repeat;
	background-position: center top;
}
.header_nav_box .btn_checkout span{font-size: 11px;}

.header_nav_box .btn_login{
	display:block;
	position: absolute;
	right: 8px;
	top: 12px;
	line-height: 1;
	text-align:center;
	padding-top: 32px;
	width: 72px;
	height: 48px;
	background-color: transparent;
	border:none;
	background-image: url('/img/common/icon_login.png');
	background-size: 28px 28px;
	background-repeat:no-repeat;
	background-position: center top;
}
.header_nav_box .btn_login span{font-size: 11px;}
.header_nav_box .btn_account{
	display:block;
	position: absolute;
	right: 8px;
	top: 12px;
	line-height: 1;
	text-align:center;
	padding-top: 32px;
	width: 72px;
	height: 48px;
	background-color: transparent;
	border:none;
	background-image: url('/img/common/icon_user.png');
	background-size: 28px 28px;
	background-repeat:no-repeat;
	background-position: center top;
}
.header_nav_box .btn_account span{font-size: 11px;}

/* メニューボタン */
.header_nav_box .header_nav_menu_box{
	position: absolute;
	right: 24px;
	top: 12px;
	width:32px;
	height:32px;
}
.header_nav_menu_box .btn_header_nav {
	display:block;
	height: 32px;
	width: 32px;
	background: none;
	border: none;
	transform-origin: center;
	transition: .3s;
}
.btn_header_nav::after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: #333;
    display: block;
    left: calc(50% - 4px);
    top: calc(50% - 4px);
    box-shadow: -8px 0 0 #333,8px 0 0 #333,-8px -8px 0 #333,0 -8px 0 #333,8px -8px 0 #333,-8px 8px 0 #333, 0 8px 0 #333,8px 8px 0 #333;
}
.btn_header_nav::before {
    position: absolute;
    content: '';
    height: 18px;
    width: 2px;
    left: 16px;
    top: 8px;
    background: #fff;
}
.btn_header_nav.isActive {
    background: #333!important;
    border-radius: 22px;
    transform: rotate(45deg);
}
.btn_header_nav.isActive::after {
      box-shadow: none;
      width: 18px;
      height: 2px;
      left: 8px;
      top: 16px;
      background: #fff;
}
.header_nav_box .header_nav_menu_box span{
	display: block;
	position: absolute;
	bottom:-14px;
	left: -20px;
	color:#8D928F;
	font-size:11px;
	text-align:center;
	width:72px;
}

.global_menu{
	display: block;
	position: fixed;
	top:0px;
	right:0px;
	width:100%;
	height: 0vh;
	background-color:#FAFBFB;
	transition:0.3s all;
	z-index:5;
}
.global_menu.isActive{
	height: 100vh;
}
.global_menu .global_menu_link_title{
	font-size:16px;
	text-align: center;
	line-height: 120%;
}
.global_menu .global_menu_link_box{
	display: block;
	width:100%;
}
.global_menu .global_menu_link_box .global_menu_link_list a,
.global_menu .global_menu_link_box .global_menu_link_list span{
	position: relative;
	display: block;
	color:#000;
	font-size:16px;
	cursor: pointer;
	margin:10px auto;
	width:80%;
	line-height: 36px;
	border-bottom:solid 2px #CCC;
	transition: 0.2s all;
}
.global_menu .global_menu_link_box .global_menu_link_list a::after,
.global_menu .global_menu_link_box .global_menu_link_list span::after{
	position: absolute;
	top:0px;
	right:8px;
	content:'';
	width: 8px;
	height: 8px;
	top: calc(50% - 2px);
	border-top:solid 2px #000;
	border-right:solid 2px #000;
	transform: rotate(45deg) translateY(-50%);
}
.global_menu .global_menu_link_box .global_menu_link_list a.hover,
.global_menu .global_menu_link_box .global_menu_link_list span.hover{
	color:#0A8647;
}
.global_menu .global_menu_link_box .global_menu_link_list a > i,
.global_menu .global_menu_link_box .global_menu_link_list span > i{
	margin-right:8px;
}

/**footer**/
footer{
	position: sticky;
	top: 100vh;
	width: 100%;
	background-color: #EBF2EE;
	height: 60px;
}
footer .footer_lang_box{
	width: 50%;
	height: 60px;
	padding: 8px 12px;
}
footer .footer_lang_box select{
	font-size: 12px;
	padding: 0px 4px 0px 20px;
	width: 140px;
	height: 44px;
	background-color: #FFF;
	border-radius: 4px;
	background-image: url('/img/common/icon_globe.png');
	background-size: 12px 12px;
	background-repeat:no-repeat;
	background-position: 8px center;
}
footer .footer_link_box{
	font-size: 12px;
	line-height: 24px;
	text-align: right;
	width: 50%;
	padding: 6px 12px 0px 0px;
}
footer .footer_link_box a{
	position: relative;
	text-decoration: underline!important;
}

/* 共通レイアウト */
.common_layout{
	margin-bottom: 2px;
}
.common_layout .common_visual{
	text-align: center;
	height: 160px;
	overflow: hidden;
	background-color: #000;
}
.common_layout .common_visual img{
	width: 100%;
	height: auto;
}
.common_layout .common_btn_box{
	padding: 12px 8px;
}
.common_layout .common_btn_box_rsv{
	padding: 0px 0px 24px 0px;
}
