@charset "utf-8";


/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
    --base-color: #000;
    --main-color: #00a499;/* green */
    --bg-color: #f7f3ef;/* beige */

	--font-base: 'Zen Maru Gothic', serif;
	--font-en: 'Barlow', serif;
}


body {
	position: relative;
	font-size: 15px;
	font-family: var(--font-base);
	color: var(--base-color);
	padding-top: 60px;
}

input,
select,
textarea,
radio,
checkbox,
button {
	font-family: var(--font-base);
}
p {
	line-height: 1.6;
}
b {
	font-weight: 500;
}
img {
    vertical-align: middle;
}
.sp {
	display: none !important;
}
.inner {
    width: 100%;
    max-width: 1140px;
	padding: 0 20px;
	margin:auto;
	position: relative;
}

.link {
    color: var(--main-color);
	text-decoration: underline !important;
}


/* off */
.link-off a {
    cursor: default !important;
    color: #ccc !important;
}

/* nav-line */
.nav-line a:not(.no-line) {
	opacity: 1 !important;
	text-decoration: none !important;
    position: relative;
}
.nav-line a:not(.no-line):after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 0;
    border-top:solid 1px var(--main-color);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-line a:not(.no-line):hover:after,
a.current:after {
    transform-origin: left top;
    transform: scale(1, 1);
}


/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#gb-header {
	width: 100%;
	background: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	position: fixed;
	left:0;
	top: 0;
	z-index: 1000;
}
.header-in {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.site-title {
	width: 375px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.site-title a {
    display: block;
    line-height: 1;
}
.header-btn {
	margin-left: auto;
	margin-right: 80px;
}
.header-btn__list {
	display: flex;
    align-items: center;
}
.header-btn__list >li {
	font-size: 18px;
	margin-left: 10px;
}
.header-btn__list >li a {
	color: #fff;
	background: var(--main-color);
	border:solid 1px var(--main-color);
	display: block;
	border-radius: 1000px;
	padding: 10px 40px;
}
.header-btn__list >li a i {
	display: inline-block;
    vertical-align: -7px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 15px;
}
.header-btn__list >li.btn-cart a i {
	width: 27px;
	height: 24px;
	background-image: url("../img/cmn/icon_cart.png");
}
.header-btn__list >li.btn-login a {
	color: var(--base-color);
	background-color: #fff;
}
.header-btn__list >li.btn-login a i {
	width: 27px;
	height: 27px;
	background-image: url("../img/cmn/icon_login.png");
}

#menu-btn {
    display: block;
    width: 52px;
    height: 52px;
    background: var(--main-color);
	border-radius: 10000px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 10000;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#menu-btn span {
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#menu-btn span.t {
    top: 18px;    
}
#menu-btn span.m {
    top: 26px;    
}
#menu-btn span.b {
    bottom: 18px;
}
#menu-btn.active {
	background: #fff;
}
#menu-btn.active span{
	background: var(--main-color);
}
#menu-btn.active span.t {
    transform: rotate(45deg);
    top: 25px;
}
#menu-btn.active span.m{
    width: 0;
}
#menu-btn.active span.b {
    transform: rotate(-45deg);
    bottom: 25px;
}


/* ----------------------------
   contets
-------------------------------*/
#main-contents {
	overflow: hidden;
}

.conBox {
    padding: 100px 0;
	position:relative;
	z-index: 1;
}

/* cmn-title */
.cmn-title {
    text-align: center;
	margin-bottom: 60px;
}
.cmn-title h2 {
    font-size: 36px;
	font-family: var(-font-en);
	font-weight: 500;
	line-height: 1;
    text-align: center;
}
.cmn-title p {
    font-size: 15px;
	margin-top: 20px;
    text-align: center;
}
.cmn-title.left * {
    text-align: left;
}

/* wave-bg */
.wave-bg {
	padding-top: 0;
}
.wave-bg:before {
	content: '';
	width: 100%;
	height: 50px;
	background: url("../img/cmn/bg_wave.png") no-repeat center;
	background-size: cover;
	position: absolute;
	top:0;
	left: 0;
	z-index: -1;
}
.wave-bg:after {
	content: '';
	width: 100%;
	height: calc(100% - 50px);
	background: var(--bg-color);
	position: absolute;
	top:50px;
	left: 0;
	z-index: -1;
}

/**/
.cmn-bnr {
    margin-bottom: 50px;
}
.cmn-bnr__list {
    display: flex;
	flex-wrap: wrap;
}
.cmn-bnr__list >li {
	width: 48%;
	margin: 0 0 2% 4%;
}
.cmn-bnr__list >li:nth-child(2n+1) {
	margin-left: 0;
}


/* ----------------------------
   footer & sp nav style
-------------------------------*/

#gb-footer {
	background: #f4f2f2;
    padding: 40px 0;
}
.footer-main {
	display: flex;
	justify-content: space-between;
}
.footer-info {
	width: 50%;
}
.footer-nav {
	display: flex;
	margin-top: 40px;
}
.footer-nav__list {
	margin-right: 80px;
}
.footer-nav__list >li {
	font-size: 14px;
	margin-bottom: 15px;
}
.footer-nav__list >li a {
	color: var(--base-color);
}
.footer-cal {
	width: 50%;
}

.footer-sub {
	padding: 20px 0;
	border-top: solid 1px #b6b6b6;
	border-bottom: solid 1px #b6b6b6;
}
.footer-subnav__list {
	display: flex;
}
.footer-subnav__list >li {
	font-size: 14px;
	margin-right: 40px;
}
.footer-subnav__list >li a {
	color: var(--base-color);
}
.footer-subnav__list >li a .icon-outlink {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url("../img/cmn/outlink.png") no-repeat center;
	background-size: contain;
	margin-left: 5px;
	vertical-align: -2px;
}
.copyright {
	font-size: 12px;
	margin-top: 20px;
	text-align: center;
}




#sp-nav {
	color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 70px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -10;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#sp-nav.active {
    opacity: 1;
    visibility: visible;
    background: var(--main-color);
    z-index: 9999;
}
.sp-nav__list >li{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: dotted 1px #fff;
}
.sp-nav__list >li a{
	color: #fff;
}


/* backtotop */
#backtotop {
    color: var(--base-color);
	width: 64px;
    height: 64px;
    background: #fff;
    cursor:pointer;
	visibility: hidden;
	opacity: 0;
    border-radius: 100px;
    border: solid 1px;
	position:fixed;
	right: 10px;
	bottom: 30px;
	z-index: 10;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#backtotop.show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}
#backtotop:hover {
    color: var(--base-color);
    background: var(--main-color);
}
#backtotop:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-45deg);
    position: absolute;
    top: 26px;
    left: calc(50% - 7px);
}


/* -----------------------------------

media query

------------------------------------- */
@media (max-width: 815px) {

    body {
        font-size: 15px;
        min-width: 375px;
        overflow-x: hidden;
        padding-top: 70px;
    }
	body.menu-fix {
		overflow: hidden;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	.inner {
		 width: 100%;
	}
.header-in {
    height: 70px;
	padding: 0 15px;
}
.site-title {
    width: 250px;
}
#menu-btn {
    right: 15px;
    top: 9px;
}

	.header-btn {
		display: none;
	}
 
.conBox {
    padding: 50px 0;
}

.cmn-bnr__list {
    display: block;
}
.cmn-bnr__list >li {
    width: 100%;
    margin: 0 0 20px;
}


.footer-main {
    display: block;
}
.footer-info {
    width: 100%;
}
.footer-nav__list {
    margin-right: 0;
    width: 50%;
}
.footer-subnav__list {
    display: block;
}
.footer-subnav__list >li {
    font-size: 14px;
    margin: 10px 0;
}

}

