/* 閉じボタン */
/* .btn {
    color: #333;
    padding: .3em .5em;
    border-radius: .3em;
    text-align: center;
    display: table;
    cursor: pinter;
    border: 1px solid;
    z-index: 6;
}

.btn:hover {
    cursor: pinter;
} */

.round_btn {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    /*border: 2px solid #333;
    background: #fff;
    border-radius: 50%;*/
}

.round_btn::before,
.round_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    /* 棒の幅（太さ） */
    height: 22px;
    /* 棒の高さ */
    background: #333;
    /* バツ印の色 */
}

.round_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.round_btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* close button */
.action-close {
    position: relative;
    /*margin-top: 2em;*/
}

.action-close .btn {
    position: absolute;
    right: 5px;
    top: -10px;
}

/* checkbox non-display */
.add-control .checkbox {
    display: none;
}

/* close button's control */
.add-control .action-close #close:checked~.btn {
    display: none;
}

.add-control .action-close #close:checked~.box {
    display: none;
}

/* フッターバナー */
#footerbanner {
    position: fixed;
    right: 0;
    z-index: 5;
    opacity: 0;
    transform: translateY(100px);
    /*width: 100%;*/
	/*margin-bottom: -10px;*/
	display: none;
}

/* 上に上がる動き */
#footerbanner.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 下に下がる動き */
#footerbanner.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

.fbox {
    /*display: flex;*/
    /*flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    clear: both;
    align-items: center;
    position: relative;
    justify-content: center;
    text-align: center;*/
}

.fbox_img {
    /*width: 100%;*/
    /*margin: 10px 0 -7px 25px;*/
	text-align: right;
}

.fbox_img img {
    width: 80%;
}

.fbox_text {
    margin: 5px 20px;
    border: 1px solid #fff;
    padding: .5em 2em;
    color: #fff;
    text-align: center;
}

.fbox_text_icon {
    width: 20px;
    margin: 0 5px -2px 0;
}

.fbox_text span {
    font-weight: 900;
}

.fbox_text p {
    margin-top: 8px;
}

/* ボタンデザイン */
.fbox .gb-button {
    flex-grow: 1;
}

.fbox .gb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: .2s background-color ease-in-out, .2s color ease-in-out, .2s border-color ease-in-out, .2s opacity ease-in-out, .2s box-shadow ease-in-out;
    border-radius: 5px;
}

.fbox .gb-button-primary {
    transition: all 0.5s ease;
}

.fbox .gb-button-primary,
.fbox .gb-button-primary:visited,
.fbox .gb-button-secondary,
.fbox .gb-button-secondary:visited {
    background-color: #e68402;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 22px;
    /*border: 1px solid #707070;*/
    text-transform: uppercase;
    max-width: 180px;
    margin: 0 20px;
    position: relative;
}

.gb-button i {
    position: absolute;
    right: 15px;
}

.fbox .gb-button-secondary:last-child,
.fbox .gb-button-secondary:last-child:visited {
    margin-right: 0;
}

.p-fixBtnWrap {
		left: 1em;
		right: auto;
	}

@media screen and (max-width: 1335px) {
    .action-close .btn {
        top: 10px;
    }
}

@media screen and (max-width: 768px) {

    #footerbanner {
        bottom: 100px;
        left: 0;
		/*margin: 0;*/
    }

    .fbox {
        /*padding: 10px;*/
    }

    .fbox .gb-button-primary,
    .fbox .gb-button-primary:visited,
    .fbox .gb-button-secondary,
    .fbox .gb-button-secondary:visited {
        padding: 8px;
        font-size: 14px;
        max-width: 50%;
        margin-right: 10px;
        letter-spacing: 0;
        margin-top: 7px;
    }

    .fbox .gb-button-secondary,
    .fbox .gb-button-secondary:visited {
        margin-right: 0;
    }

    .fbox_text_icon {
        width: 13px;
        margin: 0 5px -2px 0;
    }

    .fbox_text {
        margin: 0;
        border: none;
        padding: 0 10px 10px;
    }

    .fbox_text p {
        font-weight: 900;
        margin-top: 0;
    }

    #page-top {
        bottom: 120px !important;
    }
	
	.fbox_img img {
		width: 50%;
	}

}

@media screen and (max-width: 360px) {

    .fbox .gb-button-primary,
    .fbox .gb-button-primary:visited,
    .fbox .gb-button-secondary,
    .fbox .gb-button-secondary:visited {
        font-size: 12px;
    }
}

@media screen and (max-width: 280px) {

    .fbox .gb-button-primary,
    .fbox .gb-button-primary:visited,
    .fbox .gb-button-secondary,
    .fbox .gb-button-secondary:visited {
        font-size: 10px;
    }
}

#content-w {
    padding-top: 0;
}

@media (min-width: 960px) {
    .p-fixBtnWrap {
/* 		bottom: 11.5em; */
}
}