@charset "utf-8";

* {
	box-sizing: border-box;
}

/*-----------------------------------------------
 __header
-----------------------------------------------*/

#header {
	width:100%;
	background:#095ca8;
	position: fixed;
	z-index: 1000;
    padding: 0 20px;
}

#header_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width:1200px;
	height:70px;
	margin: 0 auto;
}

#header #header_wrap a.logo {
	display: block;
	width: 300px;
	align-self: end;
}

h1#logo {
	width: 300px;
}
h1#logo a {
text-indent:-9999px;
}


/*-----------------------------------------------
__header_right
-----------------------------------------------*/

#header_right {
	display: flex;
	align-items: center;
    gap: 20px;
}

/*-----------------------------------------------
 __search_box
-----------------------------------------------*/
#searchform2 {
	display: flex;
}
#keywords2	{
	width: 200px;
	height: 30px;
	background: var(--white-color);
	border: none;
	padding: 6px 10px;
}
#searchBtn2	{
width :30px;
height :30px;
background-color: var(--white-color);
background-image:url("../../../images/view/icon/search-icon.svg");
background-repeat: no-repeat;
background-position: center;
text-indent:-9999px;
border:0px;
}

input#keywords2[type="text"] {
    color: #999;
}

a.contact_btn {
    background-color: var(--yellow-color);
    width: 170px;
    height: 50px;
    color: var(--black-color);
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
}

a.contact_btn:hover {
    background-color: var(--skyblue-color);
    color: var(--white-color);
    transition: all 0.3s;
}

a.contact_btn .mail-icon svg {
    fill: var(--black-color);
}

a.contact_btn:hover .mail-icon svg {
    fill: var(--white-color);
    transition: fill 0.3s;
}


/*����ē�*/
.mem_guide a{

color:var(--white-color);



}
.mem_guide {


float:right;padding:5px 10px 0 0;


}




/*cart*/
.cart {
    color: var(--white-color);
    width: 45px;
    text-align: right;
    background: url(../../../images/view/common/cart.gif) no-repeat;
}
.cart a {

color:var(--white-color);
font-weight:bold;
}

/*-----------------------------------------------
__g_navi
-----------------------------------------------*/

#gnavi {
	display: flex;
	justify-content: end;
	align-items: center;
	height: 50px;
	max-width:1200px;
	margin: 0 auto;
}


#gnavi ul {
	display: flex;
	align-items: center;
	gap: 20px;
}

#gnavi ul li a {
	height: 100%;
	text-decoration: none;
	display: block;
	color: var(--white-color);
	font-size: 15px;
}

#gnavi ul li a:hover {
	text-decoration: underline;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

/* スマホ用スタイル */
@media screen and (max-width: 768px) {
    #gnavi,
    .contact_btn.pc,
    .login {
        display: none;
    }

    #header,
    .header_left,
    #header_right,
    #searchform2,
    #keywords2 {
        width: 100%;
    }

    #header {
        padding: 10px 2.7% 15px;
    }

    #header_wrap {
        flex-direction: column;
        height: 100px;
        padding: 0;
    }

    .header_left {
        display: flex;
        justify-content: space-between;
    }

    .sp-menu {
        display: flex;
        align-items: center;
    }

    #header_right {
        align-items: flex-end;
        height: 30px;
        gap: 0;
    }

    #header #header_wrap a.logo {
        align-self: center;
    }

    h1#logo {
        width: 220px;
    }

    h1#logo img {
        width: 100%;
        height: auto;
    }

    #search_box {
        margin: 10px auto 5px;
        width: 550px;
    }

    #keywords2 {
        max-width: 550px;
        min-width: 280px;
    }

    .menu-toggle {
        width: 60px;
        height: 54px;
        display: block;
        cursor: pointer;
        text-align: center;
        color: var(--white-color);
        position: relative;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white-color);
        margin: 5px auto;
        transition: all 0.3s;
    }

    .menu-toggle span:first-child {
        margin-top: 20px;
    }

    .menu-toggle span:before,
    .menu-toggle span:after {
        content: '';
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white-color);
        position: absolute;
        transition: all 0.3s;
    }

    .menu-toggle span:before {
        transform: translateY(-8px);
    }

    .menu-toggle span:after {
        transform: translateY(8px);
    }

    .menu-text {
        color: var(--white-color);
        font-size: 14px;
        margin-top: 10px;
    }

    .mobile-menu {
        display: block;
        padding: 10px 20px 20px;
        background-color: #095ca8;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 100%;
        max-width: 400px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .mobile-menu.open {
        right: 0;
    }

    .mobile-menu ul {
        display: block;
        padding: 0;
        margin-bottom: 40px;
        list-style: none;
    }

    .mobile-menu ul li {
        border-bottom: 1px solid white;
    }

    .mobile-menu ul li a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 12px 20px;
        font-size: 14px;
        color: var(--white-color);
        text-decoration: none;
    }

    .mobile-menu ul li a .arrow {
        margin-left: 8px;
    }

    .mobile-menu ul li a::before {
        content: "-";
        margin-right: 10px;
    }

    .mobile-menu .section-title {
        margin-top: 30px;
        padding-bottom: 12px;
        font-weight: bold;
        color: var(--white-color);
        font-size: 18px;
        border-bottom: 1px solid var(--white-color);
    }

    .close-btn-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .close-btn {
        cursor: pointer;
        color: var(--white-color);
        font-size: 28px;
        font-weight: bold;
        text-align: center;
    }

    .close-btn .menu-text {
        display: block;
        font-size: 14px;
        margin-top: -4px;
    }

    .mobile-menu.open .close-btn-container {
        display: flex;
    }
    #header_wrap.header-2 {
        height: 34px;
    }
}
