/*===========================
全体
===========================*/
#couponguide{
    max-width: 900px;
	margin: 20px auto 0;
}
#couponguide h1{
	margin-bottom: 25px;
}
#couponguide h2{
	/* margin-top: 30px; */
    border-bottom: 2px solid #333;
    margin: 30px auto 0;
    padding: 0;
    text-align: left;
}
#couponguide > h2:nth-of-type(1){
	margin-top: 0;
}
#couponguide h2::before{
	content: " ■ ";
}
#couponguide section{
	box-sizing: border-box;
	padding: 10px;
    text-align: left;
}
#couponguide p > a{
	color: #cb6767;
	font-weight: bold;
	border-bottom: 1px solid;
}
#couponguide .pc_none{
    display: none !important;
}
#couponguide .red {
    font-weight: bold;
    color: #b10e1b;
}

#couponguide .warning_txt{
    box-sizing: border-box;
    padding: 10px;
    background-color: #f6eee3;
    margin-top: 5px;
}
#couponguide .warning_txt li{
    display: flex;    
}
#couponguide .warning_txt li.card_img{
    flex-wrap: wrap;
    margin-bottom: 10px;
}
#couponguide .warning_txt li.card_img .img_box,
#couponguide .warning_txt li.bn_box{
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
}
#couponguide .warning_txt li.bn_box{
    margin-bottom: 10px;
}
#couponguide .warning_txt li.bn_box a:hover img,
#couponguide .warning_txt li.bn_box2 a:hover img,
#couponguide .link_img a:hover img{
    opacity: 0.7;
    transition: 0.5s all;
}
#couponguide .warning_txt li.bn_box2{
    display: inline-block;
    box-sizing: border-box;
    padding-left: 20px;
}
#couponguide .warning_txt li:nth-child(n+2){
    margin-top: 5px;
}
#couponguide .warning_txt li::before{
    content: "※";
    margin-right: 3px;
}
#couponguide .warning_txt li.bn_box::before,
#couponguide .warning_txt li.bn_box2::before{
    content: none;
}
#couponguide .bank_box{
    border: 1px solid #a7a7a7;
    box-sizing: border-box;
    padding: 10px 50px 10px 10px;
    display: inline-block;
    margin: 10px 0;
}
#couponguide .bank_box p::before,
#couponguide .link_txt::before{
    font-family: 'Material Icons';
    content: "chevron_right";
    font-size: 16px;
    vertical-align: middle;
    color: #a7a7a7;
    font-weight: bold;
}
#couponguide .link_img a{
    border-bottom: none;
}
#couponguide .link_txt{
    margin: 5px 0 10px;
}


/*------------------------------------
アンカーメニュー
-------------------------------------*/
#couponguide .anchor_menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 25px auto 30px;
}
#couponguide .anchor_menu li{
    width: calc(97%/4);
    margin: 0px 5px 0 0px;
    text-align: center;
}
#couponguide .anchor_menu li:nth-child(n+5){
    margin-top: 10px;
}
#couponguide .anchor_menu li a{
    display: block;
    box-sizing: border-box;
    padding: 7px 0 14px;
    background-color: #609cc0;
    color: #fff;
    font-size: 13px;
    border-radius: 8px;
    /* box-shadow: 0 3px 0 #3c6178; */
    position: relative;
    border: 2px solid #609cc0;
    transition: 0.5s;
    /* top: -3px; */
}
#couponguide .anchor_menu li a:hover{
    box-shadow: none;
    top: 0;
    color: #609cc0 !important;
    background-color: #fff;
}
#couponguide .anchor_menu li.consumption_tax a{
    background-color: #e1e1e1;
    /* box-shadow: 0 3px 0 #999999; */
    color: #575757;
    border-color: #e1e1e1;
}
#couponguide .anchor_menu li.consumption_tax a:hover{
    box-shadow: none;
    top: 0;
    color: #575757 !important;
}
#couponguide .anchor_menu li a::after{
    font-family: 'Material Icons';
    content: "expand_more";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 18px;
    color: #fff;
    transition: 0.5s;
}
#couponguide .anchor_menu li a:hover::after{
    bottom: -5px;
    color: #609cc0 !important;
}
#couponguide .anchor_menu li.consumption_tax a::after{
    color: #575757;
}
#couponguide .anchor_menu li.consumption_tax a:hover::after{
    color: #575757 !important;
}

/***---------------------------------
TOPに戻る
---------------------------------***/
#page_top{
    width: 80px;
    height: 80px;
    position: fixed;
    right: 4vw;
    bottom: 80px;
    /* background: #ef3f98; */
    border: 2px solid #666;
    opacity: 1.0;
    border-radius: 50%;
}
#page_top a{
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    text-decoration: none;
}
#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f077';
    font-size: 25px;
    color: #666;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    margin: auto;
    text-align: center;
}