/* 
html5doctor.com Reset Stylesheet
v1.6.1
Author: Richard Clark - http://richclarkdesign.com 
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    font-weight: normal;
}

body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
ol, ul {
    list-style: none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    display: inline-block;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
*:focus {
  outline: none;
}
 /*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */

 .modaal-noscroll {
	overflow: hidden;
}
.modaal-accessible-hide {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}
.modaal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	opacity: 0;
}
.modaal-wrapper {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	overflow: auto;
	opacity: 1;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
	border: none;
	background: transparent;
	padding: 0;
	-webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
	display: none;
	opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
	opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
	outline: none !important;
    background-color: #f1f1f1;
}
.modaal-wrapper.modaal-fullscreen {
	overflow: hidden;
}
.modaal-outer-wrapper {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
	display: block;
}
.modaal-inner-wrapper {
	display: table-cell;
	width: 100%;
	height: 100%;
	position: relative;
	vertical-align: middle;
	text-align: center;
	padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
	padding: 0;
	display: block;
	vertical-align: top;
}
.modaal-container {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: auto;
	text-align: left;
	color: #231815;
	max-width: 700px;
	border-radius: 0px;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: auto;
}
.modaal-content-container {
    position: relative;
    width: 100%;
}
.modaal-content-container > iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modaal-container.is_loading {
	height: 100px;
	width: 100px;
	overflow: hidden;
}
.modaal-fullscreen .modaal-container {
	max-width: none;
	height: 100%;
	overflow: auto;
}
.modaal-close {
	position: fixed;
	right: 20px;
	top: 20px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border-radius: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.modaal-close:focus,
.modaal-close:hover {
	outline: none;
	/* background: #fff; */
}
.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
    opacity: .5;
	/* background: #d04718; */
}
.modaal-close span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}
.modaal-close:before,
.modaal-close:after {
	display: block;
	content: " ";
	position: absolute;
	top: 0;
	left: 23px;
	width: 2px;
	height: 46px;
	background: #fff;
    border-radius: 2px;
	-webkit-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}
.modaal-close:before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.modaal-close:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
	background: #afb7bc;
	right: 10px;
	top: 10px;
}
.modaal-content-container {
	padding: 100px 0 60px;
}
.modaal-video-wrap {
	margin: auto 10vw;
	position: relative;
}
.modaal-video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	background: #000;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modaal-iframe .modaal-content {
	width: 100%;
	height: 100%;
}
.modaal-iframe-elem {
	width: 100%;
	height: 100%;
	display: block;
}
.modaal-loading-spinner {
	background: none;
	position: absolute;
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;
	-webkit-transform: scale(0.25);
	-ms-transform: scale(0.25);
	transform: scale(0.25);
}
.modaal-loading-spinner > div {
	width: 24px;
	height: 24px;
	margin-left: 4px;
	margin-top: 4px;
	position: absolute;
}
.modaal-loading-spinner > div > div {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: #fff;
}
.modaal-loading-spinner > div:nth-of-type(1) > div {
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}
.modaal-loading-spinner > div:nth-of-type(1) {
	-ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(2) > div {
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation-delay: .12s;
	animation-delay: .12s;
}
.modaal-loading-spinner > div:nth-of-type(2) {
	-ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(3) > div {
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation-delay: .25s;
	animation-delay: .25s;
}
.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}
.modaal-loading-spinner > div:nth-of-type(3) {
	-ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(4) > div {
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation-delay: .37s;
	animation-delay: .37s;
}
.modaal-loading-spinner > div:nth-of-type(4) {
	-ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(5) > div {
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
}
.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}
.modaal-loading-spinner > div:nth-of-type(5) {
	-ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(6) > div {
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation-delay: .62s;
	animation-delay: .62s;
}
.modaal-loading-spinner > div:nth-of-type(6) {
	-ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(7) > div {
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation-delay: .75s;
	animation-delay: .75s;
}
.modaal-loading-spinner > div:nth-of-type(7) {
	-ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(8) > div {
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation-delay: .87s;
	animation-delay: .87s;
}
.modaal-loading-spinner > div:nth-of-type(8) {
	-ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}
.modaal-content-container h3 {
    font-size: 2rem;
    padding: 0 0 .5em;
}
.modaal-content-container .box {
    max-width: 28em;
    width: 90%;
    margin: 0 auto;
}
.modaal-content-container .modal_close {
    cursor: pointer;
    position: relative;
    display: block;
    margin: 20px auto 0;
    width: 3em;
}
.modaal-content-container .modal_close::before{
    content: "";
    display: block;
    background: url(/store/shinkuu/images/popup_icon.svg) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    top: 7px;
    left: -1.5em;
    position: absolute;
}
@media only screen and (min-width: 1400px) {

.modaal-video-container {
	padding-bottom: 0;
	height: 731px;
}

}
@media only screen and (max-width: 1140px) {

.modaal-image .modaal-inner-wrapper {
	padding-left: 25px;
	padding-right: 25px;
}

}
@media screen and (max-height: 1000px) {

.modaal-inner-wrapper {
	padding-top: 60px;
	padding-bottom: 60px;
}

}
@-webkit-keyframes modaal-loading-spinner {

0% {
	opacity: 1;
	-ms-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

100% {
	opacity: .1;
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

}
@keyframes modaal-loading-spinner {

0% {
	opacity: 1;
	-ms-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

100% {
	opacity: .1;
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

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

    .modaal-content-container .modal_close::before {
        top: 3px;
    }
}
/* Common */
a{
    color: #074BFF;
}
a:hover {
    transition: opacity .15s ease .1s;
    opacity: .7;
}
.spOnly {
    display: none !important;
}
.ff-b{
    font-family: 'Futo Go B101', sans-serif;
}
.ff-r{
    font-family: 'Gothic Medium BBB', sans-serif;
}
.red {
    color: #c74226;
}
img {
    vertical-align: top;
    max-width: 100%;
}
html {
    font-size:62.5%;
} 
body {
    font-size: 1.6rem;
    color: #231815;
    font-family: 'Gothic Medium BBB', sans-serif;
    line-height: 1.75;
}
body.fixed {
	position: fixed;
	left: 0;
    width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px){
    body{
        line-height: 1.5;
        font-size: 1.4rem;
    }
    .spOnly {
        display: block !important;
    }
    .pcOnly {
        display: none;
    }
}

/* Header */
.fix {
    max-height: 100vh;
    overflow-y: hidden;
}
.is_pc .scroll-content {
    width: 100%;
    height: 100%;
}
header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0 !important;
    left: 0;
    z-index: 100;
    box-sizing: border-box;
    overflow: hidden;
    transition: height 0s ease .8s !important;
}
header #gnav {
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    transform: inherit !important;
}
header #gnav:before {
    content: '';
    display: block;
    width: 100%;
    background: #fff;
    height: 60px;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
header #gnav .logo {
    position: absolute;
    top: 16px;
    left: 30px;
    z-index: 3;
}
header #gnav .logo span{
    display: none;
}
header #gnav .logo img {
    width: 140px;
    height: 28px;
}
header .gnav_inner ul li a{
    font-size: 2rem;
    color: #00271d;
    font-family: 'Futo Go B101', sans-serif;
}    
header #gnav p.account {
    width: 21px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 180px;
    z-index: 3;
}
header #gnav p.account a {
    display: block;
}
header #gnav p.account svg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    object-fit: contain;
    object-position: center;
    font-family: "object-fit: contain; object-position: center;";
}
header #gnav p.account .cls-1 {
    transition: fill 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    fill: #183029;
}
header #gnav p.help {
    width: 24px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 135px;
    z-index: 3;
}
header #gnav p.help a {
    display: block;
}
header #gnav p.help svg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    object-fit: contain;
    object-position: center;
    font-family: "object-fit: contain; object-position: center;";
}
header #gnav p.help .cls-1 {
    transition: fill 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    fill: #183029;
}
header #gnav .ig {
    width: 24px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 90px;
    z-index: 3;
}
header #gnav .ig a {
    display: block;
}
header #gnav .ig svg {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    object-fit: contain;
    object-position: center;
    font-family: "object-fit: contain; object-position: center;";
}
header #gnav .ig .cls-1 {
    transition: fill 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    fill: #183029;
}
header #gnav .ico_cart {
    width: 36px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 35px;
    z-index: 3;
}
header #gnav .ico_cart svg {
    width: 36px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
header #gnav .ico_cart .cls-1 {
    fill: none;
    stroke: #183029;
    stroke-linejoin: bevel;
    stroke-width: 1.8px;
    transition: stroke 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header #gnav .gnav_ico span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
header #gnav .gnav_ico {
    display: none;
}
header #gnav .gnav_ico .o {
    opacity: 1;
    transition: transform, opacity;
    transition-delay: .45s;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
header #gnav .gnav_ico .o .cls-1 {
    fill: none;
    stroke: #183029;
    stroke-miterlimit: 10;
    stroke-width: 3px;
    transition: stroke 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gnav header #gnav .gnav_ico .o {
    pointer-events: none;
    transition-delay: 0s;
    transform: scaleY(0.5) scaleX(1.2);
    opacity: 0;
}
header #gnav .gnav_ico .c {
    opacity: 0;
    pointer-events: none;
    transform: scaleY(0.5) scaleX(0.2);
    transition: transform, opacity;
    transition-delay: 0s;
    transition-duration: .35s;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
header #gnav .gnav_ico .c {
    opacity: 0;
    pointer-events: none;
    transform: scaleY(0.5) scaleX(0.2);
    transition: transform, opacity;
    transition-delay: 0s;
    transition-duration: .35s;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.gnav header #gnav .gnav_ico .c {
    pointer-events: inherit;
    transform: scale(1);
    transition-delay: .45s;
    opacity: 1;
}
header #gnav .gnav_ico .c .cls-1 {
    fill: none;
    stroke: #183029;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    transition: stroke 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header #gnav .introduction .cls-1, header #gnav .about .cls-1, header #gnav .philosophy .cls-1, header #gnav .allitems .cls-1 {
    fill: #183029;
}
header #gnav .help .cls-1 {
    fill: #183029;
    transition: fill 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header #gnav .help .cls-2 {
    fill: none;
    stroke: #183029;
    stroke-linejoin: bevel;
    transition: stroke 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header #gnav .account .cls-1 {
    fill: #183029;
}
header #gnav .account .cls-2 {
    fill: none;
    stroke: #183029;
    stroke-miterlimit: 10;
}
header #gnav .top .cls-2 {
    fill: none;
    stroke: #183029;
    stroke-linejoin: bevel;
    transition: stroke 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header #gnav .ico_cart:hover .cls-1 {
    stroke: #d14124;
}
header #gnav .ig:hover .cls-1{
    fill: #d14124;
}
header #gnav p.help:hover .cls-1{
    fill: #d14124;
}
header #gnav p.account:hover .cls-1{
    fill: #d14124;
}
@media screen and (min-width: 769px) {
    header .gnav_inner {
        position: absolute;
        top: 20px;
        left: 50%;
        margin-left: -300px;
        z-index: 10;
        transform: translateX(-50%);
    }
    header .gnav_inner ul{
        display: flex;
        align-items: center;
        line-height: 1;
    }
    header .gnav_inner ul li{
        margin: 0 10px;
    }
    header .gnav_inner ul li.help,header .gnav_inner ul li.account, header .gnav_inner ul li.top{
        display: none;
    }
    header .gnav_inner ul li a {
        display: inline-block;
        background: linear-gradient(to right, #f5b216 50%, transparent 50%);
        background-position: 100% center;
        background-size: 200% 30%;
        background-repeat: no-repeat;
        transition: background-position 0.4s;
        padding: 0 10px;
    }
    header .gnav_inner ul li a:hover {
        background-position: 0% center;
        opacity: 1;
    }
    header .gnav_inner ul li.faq img {
        vertical-align: baseline;
    }
}
@media (min-width: 821px) and (max-width: 1500px) {
    header .gnav_inner {
        position: absolute;
        top: 24px;
        left: 20vw;
        margin-left: 0;
        z-index: 10;
        transform: translateX(0);
    }
}
@media (min-width: 821px) and (max-width: 940px) {
    header .gnav_inner {
        left: 18vw;
    }
    header .gnav_inner ul li {
        margin: 0;
    }
}
@media screen and (max-width: 900px){
    header #gnav .logo {
        width: 118px;
        top: 18px;
        left: 10px;
    }
}
@media screen and (max-width: 820px) {
    header #gnav .gnav_ico {
        cursor: pointer;
        display: block;
    }
    header {
        width: 100%;
        height: 13.3333333333vw;
    }
    header #gnav:before {
        height: 12vw;
    }
    header #gnav .logo {
        position: absolute;
        top: 4vw;
        left: 5.3333333333vw;
        z-index: 3;
    }
    header #gnav .logo img {
        width: 23.4036533333vw;
        height: 4.63576vw;
    }
    header #gnav p.account, header #gnav p.help {
        display: none;
    }
    header #gnav .ig {
        width: 5.8666666667vw;
        height: 12vw;
        position: absolute;
        top: 0;
        right: 16vw;
        z-index: 3;
    }
    header #gnav .ig a {
        display: block;
    }
    header #gnav .ig svg {
        width: 5.8666666667vw;
        height: 5.8666666667vw;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        object-fit: contain;
        object-position: center;
        font-family: "object-fit: contain; object-position: center;";
    }
    header #gnav .ico_cart {
        width: 8.1353866667vw;
        height: 12vw;
        position: absolute;
        top: 0;
        right: 24vw;
        z-index: 3;
    }
    header #gnav .ico_cart svg {
        width: 8.1353866667vw;
        height: 5.26512vw;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    header #gnav .gnav_ico {
        width: 16vw;
        height: 12vw;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 3;
        cursor: pointer;
    }
    header #gnav img, header #gnav svg {
        object-fit: contain;
        object-position: center;
        font-family: "object-fit: contain; object-position: center;";
    }
    header #gnav .gnav_ico .o svg {
        width: 5.8666666667vw;
        height: 5.8666666667vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    header #gnav .gnav_ico .c svg {
        width: 6.8026666667vw;
        height: 4.9733333333vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    header .gnav_inner {
        transform: translateX(100%);
        transition: opacity 0s ease 0.6s,transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    }
    header #gnav .gnav_inner {
        width: 73.17808vw;
        margin-left: auto;
        background-color: #f8f8f8;
        position: relative;
        padding-top: 12vw;
        z-index: 1;
        box-sizing: border-box;
    }
    header #gnav .gnav_inner ul {
        padding-left: 9.3333333333vw;
        padding-top: 4vw;
        padding-bottom: 5.3333333333vw;
        margin-bottom: -4vw;
    }
    header #gnav .gnav_inner li {
        margin-bottom: 4vw;
    }
    header #gnav .gnav_inner li a {
        display: block;
    }
    header #gnav .gnav_inner li.contents {
        margin-bottom: 5vw;

    }
    header #gnav .gnav_inner .about svg {
        width: 38.5363466667vw;
        height: 5.4288266667vw;
    }
    header #gnav .gnav_inner .help svg {
        width: 49.1840266667vw;
        height: 5.32208vw;
        position: relative;
        left: -1.3333333333vw;
    }
    header #gnav .gnav_inner .account svg {
        width: 51.116156vw;
        height: 4.739284vw;
    }
    header #gnav .gnav_inner .top svg {
        width: 27.6511733333vw;
        height: 5.4666666667vw;
        position: relative;
        left: -.5333333333vw;
    }
    #kv .nav_top ul li.faq img {
        height: 14px;
        padding-bottom: 0;
    }
    .gnav header {
        height: 100vh;
        transition: height 0s ease 0s !important;
    }
    .gnav header .gnav_inner {
        opacity: 1;
        pointer-events: inherit;
        transform: translateX(0px);
        transition: opacity 0s ease,transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
}
/* footer */
footer {
    background-color: #f1f1f1;
    margin-top: auto;
    box-sizing: border-box;
}
footer .foot_link a img {
    transition: filter 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
footer .foot_common_link a {
    font-family: 'Futo Go B101', sans-serif;
    transition: filter 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 769px){
    footer {
        text-align: center;
        padding-top: 95px;
        padding-bottom: 80px;
        position: relative;
        z-index: 90;
    }
    footer .foot_link {
        margin-bottom: 50px;
    }
    footer .foot_link ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer .foot_link ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    footer .foot_link ul li img {
        width: auto;
        height: 28.05px;
    }
    footer .foot_common_link {
        margin-bottom: 20px;
    }
    footer .foot_common_link ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer .foot_common_link ul li {
        position: relative;
        font-size: 12px;
    }
    footer .foot_common_link ul li a {
        color: #bbbbb8;
    }
    footer .foot_common_link ul li:after {
        content: '／';
        margin: 0 .25em;
        color: #bbbbb8;
    }
    footer .foot_common_link ul li:last-of-type:after {
        content: none;
    }
    footer .copyright {
        width: 71.62px;
        height: 7.52px;
        margin: 0 auto;
    }
    footer img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        font-family: "object-fit: contain; object-position: center;";
    }
}
@media screen and (max-width: 768px){
    footer {
        text-align: center;
        padding-top: 14.6666666667vw;
        padding-bottom: 23.3333333333vw;
        position: relative;
        z-index: 90;
    }
    footer img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        font-family: "object-fit: contain; object-position: center;";
    }
    footer .foot_link {
        margin-bottom: 10.6666666667vw;
    }
    footer .foot_link ul {
        margin-bottom: -2.6666666667vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    footer .foot_link ul li {
        margin: 0 1.3333333333vw;
        margin-bottom: 2.6666666667vw;
    }
    footer .foot_link ul li.tw {
        width: 18.8834666667vw;
        height: 6.06888vw;
    }
    footer .foot_link ul li.fb {
        width: 22.2437866667vw;
        height: 6.06888vw;
    }
    footer .foot_link ul li.mail {
        width: 21.772vw;
        height: 6.06888vw;
    }
    footer .foot_link ul li.store {
        width: 27.9206933333vw;
        height: 6.06888vw;
    }
    footer .foot_link ul li.home {
        width: 28.6557066667vw;
        height: 6.06888vw;
    }
    footer .foot_common_link {
        margin-bottom: 9.3333333333vw;
    }
    footer .foot_common_link ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer .foot_common_link ul li {
        position: relative;
        font-size: 2.6666666667vw;
        line-height: 1.6827em;
    }
    footer .foot_common_link ul li a {
        color: #bbbbb8;
    }
    footer .copyright {
        width: 17.2914133333vw;
        height: 1.8056266667vw;
        margin: 0 auto;
    }


}