
/*----------------------------------------
	ヘッダー
----------------------------------------*/

header{
	width: 100%;
}

.head_inner {
    display: flex;
    justify-content: space-between;
    padding: 2%;
    align-items: flex-start;
}
@media screen and (max-width: 1000px){
	.c_name,.c_logo{
		width: 70px;
		height: 70px;
	}
}/*END*/
@media screen and (max-width: 768px){
	.c_name,.c_logo{
		width: 60px;
		height: 60px;
	}
}/*END*/
@media screen and (max-width: 599px){
    .head_inner {
        padding: 4% 2%;
    }
}/*END*/
@media screen and (max-width: 400px){
	.c_name,.c_logo{
		width: 45px;
		height: 45px;
	}
}/*END*/
/*----------------------------------------
	ハンバーガー
----------------------------------------*/
.fake{
    width: 80px;
    height: 80px;
    background: transparent
}

.btn_menu_works {
    position: fixed;
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    z-index: 100;
    right: 2%;
    cursor: pointer;
}
.btn_menu_works span{
	display: inline-block;
	height: 2px;
	background: #fff;
	position: absolute;
	transform: translateX(-50%);
	transition: all 0.5s;
}
.btn_menu_works span:nth-child(1){
	top: 30%;
    width: 60%;
    left: 50%;
}
.btn_menu_works span:nth-child(2){
	bottom: 50%;
	width: 60%;
	left: 50%;
}
.btn_menu_works span:nth-child(3){
    top: 65%;
	width: 60%;
	left: 50%;
}
.open .btn_menu_works{
	background: transparent;
}
.open .btn_menu_works span:nth-child(1){
	transform: rotate(-45deg);
	margin-top: 10px;
    margin-left: -25px;
    top: 37%;
    width: 60%;
    left: 49%;
}
.open .btn_menu_works span:nth-child(2){
	background-color: transparent;
}
.open .btn_menu_works span:nth-child(3){
	transform: rotate(45deg);
    margin-left: -25px;
    top: 50%;
}
@media screen and (max-width: 1000px){
	.btn_menu_works,.fake{
		width: 70px;
		height: 70px;
	}
    .open .btn_menu_works span:nth-child(1) {
        top: 36%;
    }
}/*END*/
@media screen and (max-width: 768px){
	.btn_menu_works,.fake{
		width: 60px;
		height: 60px;
	}
    .open .btn_menu_works span:nth-child(1) {
        top: 34%;
    }

}/*END*/
@media screen and (max-width: 599px){

	.open .btn_menu_works span:nth-child(1) {
		top: 32%;
	}
}/*END*/
@media screen and (max-width: 400px){
    .btn_menu_works span:nth-child(2) {
        bottom: 48%;
    }
	.btn_menu_works,.fake{
		width: 45px;
		height: 45px;
	}
    .open .btn_menu_works span:nth-child(1) {
        top: 28%;
    }
}/*END*/
/*----------------------------------------
	visitor plan
----------------------------------------*/
.visitor_ttl img{
    max-width: 820px;
    width: 100%;
}
/*----------------------------------------
	recommended
----------------------------------------*/
.recommended_ttl img {
    max-width: 320px;
    width: 70%;
}
.recommended_grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
    width: 80%;
    margin: auto;
}
@media screen and (max-width: 599px){
    .recommended_grid {
        width: 100%;
    }
}
/*----------------------------------------
	upgrade campaign
----------------------------------------*/
.visitor_inner_frame{
	width: 100%;
	max-width:1350px;
	position: relative;
	box-sizing: border-box;
    margin: 0 auto;
}
@media screen and (max-width: 599px){
	.visitor_inner_frame{
		padding-right: 4%;
		padding-left: 4%;
	}
}/*END*/
.upgrade_ttl img {
    max-width: 435px;
    width: 70%;
}
.cashback_ttl img {
    max-width: 373px;
    width: 75%;
}
.staff_inner{
    border: 1px solid #000;
    border-radius: 20px;
    padding: 4%;
}
.upgrade_flex{
    display: flex;
    align-items: center;
    gap: 3.5%;
}
.upgrade_flex > div{
    width: 50%;
}
.upgrade_p_flex{
    display: flex;
}
.upgrade_p_flex > div{
    flex: 0 0 80%;
}
.margin_auto{
    margin: auto;
}
.staff_flex {
    display: flex;
    justify-content: center;
    text-align: left;
    gap: 12px;
}
.stay tr{
    width: 100%;
    vertical-align: baseline;
}
.stay th {
    width: 25%;
    font-weight: normal;
}
.stay td{
    width: 75%;
}
@media screen and (max-width: 1000px){
    .upgrade_p_flex > div {
        flex: 0 0 90%;
    }
}/*END*/
@media screen and (max-width: 599px){
    .upgrade_flex {
        gap: 30px;
        flex-direction: column;
    }
    .upgrade_flex > div {
        width: 100%;
    }
    .upgrade_p_flex > div {
        flex: 0 0 100%;
    }
}/*END*/