@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap');

/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
    font-family: 'Shippori Mincho', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size: 16px;
    font-size: 1.6em;
	color: #000000;
    line-height: 1.87;
	letter-spacing:0.04em;
	font-weight: 400;
	background: #ffffff;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
.contents_inner{
	max-width: 1090px;
    width: 90%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
    color: #000000;
	text-decoration:none;
    cursor: pointer;
}
a:hover {
    opacity: 0.6;
	text-decoration:none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
.left{
	float: left;
}
.right{
	float: right;
}
@media screen and (max-width: 1090px) {
}
@media screen and (max-width: 840px) {
    .sp{
        display:block;
    }
    .pc{
        display:none;
    }
}
@media screen and (max-width: 640px) {
	body {
		font-size: 12px;
		font-size: 1.2em;
	}
   
}

/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
    position: fixed;
    z-index: 999;
    width: 100%;
}
.menu_btn_wrap {
    width: 50px;
    height: 50px;
    cursor:pointer;
    display: block;
    position: absolute;
    top: 40px;
    left: 40px;
    border: 1px solid #707070;
    border-radius: 50%;
    background: #FFF;
    z-index:9999;
}
.menu_btn_wrap .menu_btn {
    width: 20px;
    height: 12px;
    display: block;
    position: absolute;
    top: 19px;
    right: 14px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.menu_btn_wrap .menu_btn .lineh {
    position:absolute;
    width: 20px;
    height: 2px;
    background: #707070;
    top:0;
    right:0;
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transition:all 0.3s;
}
.menu_btn_wrap .menu_btn .linem {
    position:absolute;
    width: 20px;
    height: 2px;
    background: #707070;
    top: 5px;
    right:0;
    opacity: 1;
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transition:all 0.3s;
}
.menu_btn_wrap .menu_btn .lineb {
    position:absolute;
    width: 20px;
    height: 2px;
    background: #707070;
    bottom: 0;
    right:0;
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transition:all 0.3s;
}
.menu_btn_wrap.active {
    border: 1px solid #FFF;
    background: #B4B4B5;
}
.menu_btn_wrap.active .menu_btn .lineh {
    -moz-transform:rotate(-135deg);
    -webkit-transform:rotate(-135deg);
    transform:rotate(-135deg);
    top: 5px;
    background: #FFF;
}
.menu_btn_wrap.active .menu_btn .linem {
    opacity: 0;
}
.menu_btn_wrap.active .menu_btn .lineb {
    -moz-transform:rotate(135deg);
    -webkit-transform:rotate(135deg);
    transform:rotate(135deg);
    bottom: 5px;
    background: #FFF;
}
header #nav {
    max-width: 490px;
    width: 100%;
    height: 100%;
    background: #B4B4B5;
    position: fixed;
    top: 0;
    left: -100%;
    border-radius: 0 80px 0 0;
    padding: 155px 40px 40px 40px;
    display:inline-block;
    z-index: 999;
    box-sizing: border-box;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
header #nav::-webkit-scrollbar{
 display: none;
}
header #nav.toggle{
    left: 0 !important;
}
header #nav .nav_menu {
    margin-bottom: 80px;
}
header #nav .nav_menu li a {
    width: 100%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 50px;
    color: #FFF;
}
header #nav .nav_menu li a span {
    font-size: 14px;
}
header #nav .nav_sns {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
header #nav .nav_sns li:not(:last-child) {
    margin-right: 20px;
}
header #nav .nav_sns li a {
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid #FFF;
    border-radius: 50%;
    position: relative;
}
header #nav .nav_sns li img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}
header #nav .nav_sns li.insta a img {
    width: 20px;
}
header #nav .nav_sns li.fb a img {
    width: 11px;
}
header #nav .nav_sns li.x a img {
    width: 21px;
}
header #nav .nav_sns li.line a img {
    width: 21px;
}
header #nav .nav_icons {
    display: none;
}
header .icons {
    position: absolute;
    top: 40px;
    right: 40px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    z-index: 999;
}
header .icons li.base {
    margin-right: 20px;
}
header .icons li a {
    display: block;
    width: 50px;
    height: 50px;
    background: #FFF;
    border-radius: 50%;
    position: relative;
}
header .icons li a img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}
header .icons li.base a img {
    width: 25px;
}
header .icons li.cart a img {
    width: 21px;
}
@media screen and (max-width: 1090px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 640px) {
    .menu_btn_wrap {
        top: 20px;
        left: 20px;
    }
    header #nav {
        max-width: none;
        border-radius: 0;
        padding: 130px 20px 40px;
    }
    header #nav .nav_menu li a {
        font-size: 26px;
    }
    header #nav .nav_sns {
        -webkit-box-pack: center;
    	-ms-flex-pack: center;
    	justify-content: center;
    }
    header #nav .nav_icons {
        position: absolute;
        top: 20px;
        right: 20px;
        display:-webkit-box;
      	display:-ms-flexbox;
      	display:flex;
    }
    header #nav .nav_icons li.base {
        margin-right: 20px;
    }
    header #nav .nav_icons li a {
        display: block;
        width: 50px;
        height: 50px;
        background: #FFF;
        border-radius: 50%;
        position: relative;
    }
    header #nav .nav_icons li a img {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
    }
    header #nav .nav_icons li.base a img {
        width: 25px;
    }
    header #nav .nav_icons li.cart a img {
        width: 21px;
    }
    header .icons {
        display: none;
    }
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
    background: #FFF;
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #0099FF;
    border-radius: 50%;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}
#pagetop::after {
    content: "";
    width: 11px;
    height: 6px;
    background: url(../img/common/pagetop_icon_bl.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
}
#pagetop:hover {
    background: #0099FF;
}
#pagetop:hover::after {
    background: url(../img/common/pagetop_icon_wh.png) no-repeat;
    background-size: contain;
}
@media screen and (max-width: 640px) {
}

/*-----------------------------------

	footer

-----------------------------------*/
footer {
    background: #FFF;
    padding: 40px 5%;
    border-top: 1px solid #B4B4B5;
}
footer .details {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	    justify-content: center;
    margin-bottom: 50px;
}
footer .details .logo {
    width: 150px;
    margin-right: 20px;
}
footer .details .text {
    font-size: 14px;
}
footer .nav {
    text-align: center;
    font-size: 14px;
}
footer .nav nav ul {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	 justify-content: center;
    gap: 35px;
	margin-bottom: 30px;
}
@media screen and (max-width: 1250px) {
    footer .details .logo {
        margin-right: 20px;
    }
    footer .nav nav ul {
        display:-webkit-box;
      	display:-ms-flexbox;
      	display:flex;
        gap: 20px;
    }
    footer .nav {
        font-size: 12px;
    }
}
@media screen and (max-width: 1090px) {
    footer {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
        gap: 30px;
    }
    footer .nav {
        text-align: center;
    }
    footer .nav nav ul {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 640px) {
    footer {
        gap: 50px;
    }
    footer .details {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
        gap: 30px;
    }
    footer .details .logo {
        margin-right: 0;
    }
    footer .details .text {
        text-align: center;
    }
    footer .nav nav ul {
        -ms-flex-wrap: wrap;
      	flex-wrap: wrap;
        -webkit-box-pack: center;
    	-ms-flex-pack: center;
    	justify-content: center;
        gap: 0 15px;
    }
}
