﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #804d36;
}
a:hover, a:active {
  text-decoration: none;
}
a:visited {}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.8em;
}
#totop {
  position: fixed;
  bottom: 30px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 50px;
}
#totop a {
  display: block;
  transition: all 0.5s;
}
#totop a:hover {
  opacity: 0.8;
  transform: translateY(-5px);
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  font-family: 'UTMNeoSansIntel';
  color: #666766;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container, .under #content {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}

#header {
  background: #00a84e;
  color: #fff;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo {
  margin: 0;
  position: absolute;
  left: 3%;
  top: -10px;
  z-index: 10;
}
.logo a {
  display: block;
  background: url("../W_images/bg_logo.png?v=2") no-repeat;
  background-size: 100% 220px;
  width: 323px;
  height: 230px;
  text-align: center;
  padding-right: 16px;
  padding-top: 15px;
  transition: all 0.5s;
}
.logo a img {
	position: relative;
    top: 25px;
  transition: all 0.5s;
}
#header.fixed .logo a {
	    background-size: 100% 150px;
  width: 250px;
  height: 170px;
  
}
#header.fixed .logo a img {
  width: 50%;
  top: 5px;
}
#header.fixed #gnavi {
  margin-left: calc(3% + 180px);
}
#gnavi {
  display: flex;
  align-items: center;
  margin-left: calc(3% + 225px);
  transition: all 0.5s;
}
.gnavi {
  display: flex;
  order: 2;
}
.gnavi li{ position: relative;}
/*.gnv-cate {
  position: relative;
  border-right: 1px solid #fff;
  padding-right: 20px;
}*/
.gnv-cate-icon {
  width: 25px;
  height: 20px;
  position: relative;
  display: block;
  z-index: 9999;
}
.gnv-cate-icon span, .gnv-cate-icon span:before, .gnv-cate-icon span:after {
  width: 100%;
  height: 3px;
  transition-property: transform;
  background-color: #fff;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19);
  transition-duration: .22s;
  display: block;
  position: absolute;
  top: calc(50% - 2px);
}
.gnv-cate-icon span:before, .gnv-cate-icon span:after {
  display: block;
  content: "";
  transition-property: transform;
  background-color: #fff;
  top: auto;
}
.gnv-cate-icon span:after {
  bottom: -10px;
  transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
}
.gnv-cate-icon span:before {
  transition: top .1s ease-in .25s, opacity .1s ease-in;
  top: -10px;
}
.gnv-cate-icon.active span {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1);
  transform: rotate(225deg);
}
.gnv-cate-icon.active span:before {
  top: 0;
  transition: top .1s ease-out, opacity .1s ease-out .12s;
  opacity: 0;
}
.gnv-cate-icon.active span:after {
  bottom: 0;
  transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
  transform: rotate(-90deg);
}
.gnv-icon-list {
  position: absolute;
}
.gnavi > li > a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  display: block;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.5s;
}
.gnavi > li:hover > a {
  color: #eecd62;
}
.gnv-icon-list {
  display: none;
  position: absolute;
  z-index: 99;
  width: 250px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-top: 5px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.gnv-icon-list a {
  display: block;
  text-decoration: none;
  color: #666;
  position: relative;
  padding: 10px 15px 10px 50px;
  border-bottom: 1px solid #ccc;
  background-repeat: no-repeat;
  background-position: left center;
  transition: all 0.5s;
}
.gnv-icon-list a:hover {
  background-color: #00a84e;
  color: #fff;
}
.gnv-icon-list li:last-child a {
  border-bottom: none;
}
.gnv-icon-list li:nth-child(1) a {
  background-image: url("../W_images/market_icon.png");
}
.gnv-icon-list li:nth-child(2) a {
  background-image: url("../W_images/giftbox_icon.png");
}
.gnv-icon-list li:nth-child(3) a {
  background-image: url("../W_images/skincare_icon.png");
}
.gnv-icon-list li:nth-child(4) a {
  background-image: url("../W_images/gnv_icon04.webp");
  background-position-x: 5px;
}
.gnv-icon-list li:nth-child(5) a {
    background-image: url("../W_images/gnv_icon05.webp");
    background-position-x: 5px;
    background-size: 25px;
}
.gnv-icon-list li:nth-child(6) a {
  background-image: url("../W_images/gnv_icon06.webp");
  background-position-x: 5px;
}
.gnv-icon-list li:nth-child(7) a {
  background-image: url("../W_images/gnv_icon07.webp");
  background-position-x: 5px;
}
.gnv-icon-list li:nth-child(8) a {
  background-image: url("../W_images/gnv_icon08.webp");
  background-position-x: 5px;
}
.gnv-icon-list li:nth-child(9) a {
  background-image: url("../W_images/gnv_icon09.webp");
  background-position-x: 5px;
}
.gnv-icon-list li:nth-child(10) a {
  background-image: url("../W_images/gnv_icon10.webp");
}
.h-right {
  display: flex;
  align-items: center;
}
.h-search {
  position: relative;
  border-right: 1px solid #fff;
  padding-right: 15px;
  margin-right: 15px;
}
.h-search .form {
  position: absolute;
  right: 0;
  background: #fff;
  padding: 5px;
  z-index: 10;
  width: 250px;
  display: none;
}
.h-search-ttl {
  margin: 0;
  cursor: pointer;
}
.h-tel {
  margin: 0;
  font-size: 16px;
  border-right: 1px solid #fff;
  padding-right: 15px;
  margin-right: 15px;
}
.h-search input {
  width: 100%;
  background: #e4e4e4;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
}
.h-search .button {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  color: #fff;
  background: #00a84e;
  border: none;
  font-size: 12px;
  padding: 5px;
  text-decoration:none;
}
.h-tel span {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
}
.h-cart {
  margin: 0;
}
.h-cart a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.h-cart a:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/h_cart.png") no-repeat;
  background-size: 100% auto;
  width: 24px;
  height: 23px;
  margin-right: 5px;
}
.main-itm.slick-slide {
  height: 800px;
}
.itm01 {
    background: url("/userfile/config/Slide1_Background.jpg") no-repeat center center/cover;
}
.main-itm-txt {
  margin: 0;
  position: absolute;
  top: calc(50% - 144px);
  left: 5%;
}
.main-itm-img {
  position: absolute;
  /*top: 50px;*/
  top: 0;
  left: 47%;
  width: 1037px;
  margin: 0;
}
@-webkit-keyframes rotate-in-2-cw {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotate-in-2-cw {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes fade_up {
  0% {
    transform: translateY(20px);
    opacity: 0
  }
  100% {
    transform: translateY(0px);
    opacity: 1
  }
}

.main-slide .main-itm.slick-current .slideview01 {
    -webkit-animation: rotate-in-2-cw 0.3s linear both;
    animation: rotate-in-2-cw 0.3s linear both;
    animation-delay: .3s;
    opacity: 0
}
.main-slide .main-itm.slick-current .slideview02 {
    animation: fade_up forwards ease .7s;
    animation-delay: .6s;
    opacity: 0
}
.itm02 {
  background: url("/UserFile/config/Slide1_Background.jpg");
}
.main-slide .slick-dots {
  position: absolute;
  bottom: 145px;
  left: 5%;
  display: flex;
}
.main-slide .slick-dots button {
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  text-indent: -500000px;
  margin-right: 10px;
  background: none;
}
.main-slide .slick-dots .slick-active button {
  border-color: #fff;
}
.main-slide .slick-dots button:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  left: calc(50% - 7px);
  border-radius: 50%;
  background: #fff;
}

.box01 {
  background: url("../W_images/b01_bgsp.jpg") top center;
  padding: 40px 0 10px;
  position: relative;
  margin-top: 60px;
}
.box01:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -250px;
  left: 0;
  background: url("../W_images/b01_bg.png") repeat-x top center;
}
.b01-top {
  /*display: flex;
  justify-content: space-between;*/
 
  text-align: center;
  
    background: #fff;
}
.b01-top-item {
  width: calc(25% - 22.5px);
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 247, 198, 1) 100%);
  border-radius: 20px;
  -webkit-box-shadow: 4px 9px 10px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 9px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 9px 10px 0px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  padding: 25px;
  justify-content: center;
}
.b01-top-itm-img {
  flex-shrink: 0;
  margin: 0 20px 0 0;
}
.b01-top-itm-ttl {
  font-size: 16px;
  color: #666766;
  line-height: 1.5em;
  margin: 0;
}
.b01-top-itm-ttl span {
  color: #804d36;
  text-transform: uppercase;
  display: block;
}
.b01-h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5em;
  color: #007838;
  text-shadow: rgb(255, 255, 255) 4px 0px 0px, rgb(255, 255, 255) 3.87565px 0.989616px 0px, rgb(255, 255, 255) 3.51033px 1.9177px 0px, rgb(255, 255, 255) 2.92676px 2.72656px 0px, rgb(255, 255, 255) 2.16121px 3.36588px 0px, rgb(255, 255, 255) 1.26129px 3.79594px 0px, rgb(255, 255, 255) 0.282949px 3.98998px 0px, rgb(255, 255, 255) -0.712984px 3.93594px 0px, rgb(255, 255, 255) -1.66459px 3.63719px 0px, rgb(255, 255, 255) -2.51269px 3.11229px 0px, rgb(255, 255, 255) -3.20457px 2.39389px 0px, rgb(255, 255, 255) -3.69721px 1.52664px 0px, rgb(255, 255, 255) -3.95997px 0.56448px 0px, rgb(255, 255, 255) -3.97652px -0.432781px 0px, rgb(255, 255, 255) -3.74583px -1.40313px 0px, rgb(255, 255, 255) -3.28224px -2.28625px 0px, rgb(255, 255, 255) -2.61457px -3.02721px 0px, rgb(255, 255, 255) -1.78435px -3.57996px 0px, rgb(255, 255, 255) -0.843183px -3.91012px 0px, rgb(255, 255, 255) 0.150409px -3.99717px 0px, rgb(255, 255, 255) 1.13465px -3.8357px 0px, rgb(255, 255, 255) 2.04834px -3.43574px 0px, rgb(255, 255, 255) 2.83468px -2.82216px 0px, rgb(255, 255, 255) 3.44477px -2.03312px 0px, rgb(255, 255, 255) 3.84068px -1.11766px 0px, rgb(255, 255, 255) 3.9978px -0.132717px 0px, 3px 10px 10px rgba(0, 0, 0, 0.75);
}
.b01-h2-new{
	margin-bottom: 50px;
    font-size: 45px;
    line-height: 1.5em;
    color: #fff;
    text-align: center;	
}
.b01-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 5%;
}
.b01-item {
  text-align: center;
  margin-bottom: 30px;
  width: 30%;
}
.b01-item a {
  text-decoration: none;
  position: relative;
  display: block;
  width: 100%;
  max-width: 309px;
  transition: all 0.5s;
  margin: 0 auto;
}
.b01-item a:hover {
  transform: translateY(-10px);
}
.b01-itm-en {
  position: absolute;
  top: 0;
  left: 40%;
  transform: translateX(-50%);
  color: #f99c25;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.5em;
  z-index: 2;
}
.b01-itm-en:before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  top: 25px;
  left: 50%;
  transform: translate(-45%, -50%);
  z-index: -1;
}
.b01-item:nth-child(1) .b01-itm-en:before {
  background-image: url("../W_images/b01_bg02.png");
  width: 127px;
  height: 57px;
}
.b01-item:nth-child(2) .b01-itm-en:before {
  background-image: url("../W_images/b01_bg03.png");
  width: 126px;
  height: 62px;
  left: 45%;
}
.b01-item:nth-child(3) .b01-itm-en:before {
  background-image: url("../W_images/b01_bg04.png");
  width: 126px;
  height: 61px;
  left: 47%;
}
.b01-item:nth-child(4) .b01-itm-en:before {
  background-image: url("../W_images/b01_bg05.png");
  width: 121px;
  height: 68px;
  left: 45%;
}
.b01-item:nth-child(5) .b01-itm-en:before {
  background-image: url("../W_images/b01_bg06.png");
  width: 122px;
  height: 64px;
  left: 45%;
}
.b01-item:nth-child(6) .b01-itm-en:before {
  background-image: url("../W_images/b01_bg07.png");
  width: 124px;
  height: 63px;
  left: 45%;
}
.b01-item:nth-child(5) .b01-itm-en {
  left: 55%;
}
.b01-item:nth-child(6) .b01-itm-en {
  left: 55%;
}
.b01-itm-vi {
  position: absolute;
  right: 0;
  bottom: 20px;
  font-size: 25px;
  color: #fff;
  z-index: 5;
  text-transform: uppercase;
  background: url(../W_images/b01_bg01.png) no-repeat;
  width: 109px;
  height: 80px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  padding-bottom: 20px;
  transition: all 0.5s;
}
.b01-item a:hover .b01-itm-vi {
  background-image: url("../W_images/b01_bg01_hv.png");
}
.box02 {
  padding: 50px 0;
}
.idx-ttl {
  font-size: 36px;
  color: #fff;
  line-height: 1.5em;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  padding: 0 0 5px 25px;
  margin: 0 0 15px;
  background:#00a84e;
  /*background-image: linear-gradient(132deg, #f99d20 0%, #fff 56%, #fff 100%);*/
}
.idx-ttl a{
	color: #fff;
    text-decoration: none;
}
.idx-list .slick-arrow {
  border: none;
  position: absolute;
  width: 38px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 0.5s;
  background-color: transparent;
  top: -50px;
  text-indent: -500000px;
  right: 20px;
  cursor: pointer;
}
.idx-list .slick-next {
  background-image: url("../W_images/idx_next.png");filter: sepia(1);
}
.idx-list .slick-prev {
  background-image: url("../W_images/idx_prev.png");
  right: 75px;filter: sepia(1);
}
.idx-list .slick-next:hover {
  background-image: url("../W_images/idx_next_hv.png");
}
.idx-list .slick-prev:hover {
  background-image: url("../W_images/idx_prev_hv.png");
}
.idx-item {
 /* margin: 0 13px;*/
 margin-right: 15px;
}
.idx-itm-main {
  -webkit-box-shadow: 0px 5px 5px 0px rgba(5, 5, 5, 0.3);
  -moz-box-shadow: 0px 5px 5px 0px rgba(5, 5, 5, 0.3);
  box-shadow: 0px 5px 5px 0px rgba(5, 5, 5, 0.3);
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 0 0 20px;
  margin: 0 0 10px;
  transition: all 0.5s;
}
.idx-list {
	margin:0;
  /*margin: 0 -15px;*/
}
.idx-itm-img {
  margin-bottom: 15px;
}
.idx-itm-img a {
  display: block;
  text-decoration: none;
  position: relative;
  background: #000;
  overflow: hidden;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.idx-itm-img img {
  width: 100%;
  max-width: none;
  transition: all 0.7s;
}
.idx-itm-img a:hover img {
  transform: scale(1.1, 1.1);
  opacity: 0.8;
}
.idx-itm-sale {
  position: absolute;
  color: #fff;
  top: 15px;
  right: 15px;
  background: url("../W_images/sale_bg.png") no-repeat;
  background-size: 100% auto;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 5;
}
.idx-itm-ttl a {
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1.5em;
  font-size: 15px;
  transition: all 0.5s;
  height: 45px;
  overflow: hidden;
}
.idx-itm-ttl a:hover {
  color: #f99d20;
}
.idx-itm-ttl {
  margin-bottom: 5px;
}
.idx-itm-price {
  text-align: center;
  margin: 0 0 5px;
  font-size: 15px;
}
.idx-itm-price-new {
  color: #00a84e;
  margin-right: 15px;
  display: inline-block;
}
.idx-itm-price-new span {
  font-size: 20px;
  font-weight: bold;
}
.idx-itm-price-old {
  text-decoration: line-through;
}
.idx-itm-cart {
  margin: 0;
  text-align: center;
}
.idx-itm-cart a {
  width: 160px;
  background: #db1f26;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  transition: all 0.5s;
  margin: 0 auto;
}
.idx-itm-cart a:after {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/b02_cart.png") no-repeat;
  background-size: 100% auto;
  width: 19px;
  height: 16px;
  margin-left: 5px;
}
.idx-itm-cart a:hover {
  background: #804d36;
}
.idx-bnr {
  margin: 0 0 30px;
}
.idx-bnr img {
  width: 100%;
  max-width: none;
}
.idx-itm-more{padding: 0;}
.idx-itm-more a{
	background: #00a84e;
    height: 347px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    border-radius: 20px;
}

.box03, .box04, .box05, .box06, .box07, .box08 {
  padding: 0 0 50px;
}
.box03 .idx-ttl, .box06 .idx-ttl{
	background:#00a84e;
	/*background-image: linear-gradient(132deg, #1681c5 0%, #fff 56%, #fff 100%);*/
}
.box05 .idx-ttl, .box08 .idx-ttl{
	background:#00a84e;
	/*background-image: linear-gradient(132deg, #804d36 0%, #fff 56%, #fff 100%);*/
}
#footer {
  background: #00a84e;
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 40px 0;
}
#footer:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -60px;
  left: 0;
  background: url("../W_images/f_bg.png") repeat-x top center;
}
.f-form {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 5%;
  border-radius: 100px;
  margin-bottom: 50px;
}
.f-form:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/f_icon01.png") no-repeat;
  background-size: 100% auto;
  width: 124px;
  height: 63px;
  margin-right: 40px;
}
.f-form-ttl {
  width: 315px;
  text-align: center;
  color: #8e8e8e;
  font-size: 15px;
  line-height: 1.4em;
  margin: 0 40px 0 0;
}
.f-form-ttl span {
  display: block;
  color: #00a84e;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.f-form input {
  width: 460px;
  border: 1px solid #ddd;
  font-size: 16px;
  padding: 23px 20px;
}
/*.f-form .button {
  background: #f99d20;
  border: none;
  cursor: pointer;
}*/
.f-form .button {
  background: #00a84e;
  border: none;
  cursor: pointer;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-main {
  display: flex;
  justify-content: space-between;align-items: baseline;
  color: #fff;
}
.f-mod {
  width: calc(25% - 22.5px);
}
.f-mod:first-child {
  width: calc(40% - 22.5px);
}
.f-mod:nth-child(2) {
  width: 15%;
}
.f-mod:nth-child(4) {
  width: 18%;
}
.f_title_com{font-size: 22px;}
.f-mod-ttl {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
}
.f-info {
  display: flex;
  line-height: 1.5em;
  margin: 0 0 10px;
  font-weight: bold;
}
.f-info > span:first-child {
  flex-shrink: 0;
  margin-right: 8px;
  text-decoration: underline;
}
.f-info a {
  text-decoration: none;
  color: #fff;
}
.f-tel {
  font-size: 20px;
}
.f-link a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: all 0.5s;
}
.f-link a:hover {
  color: #db1f26;
}
.f-link li:not(:last-child) {
  margin-bottom: 3px;
}
.f-social a {
  display: inline-block;
  margin-right: 20px;
}
.f-social, .f-img {
  margin-bottom: 10px;
}
.copyright {
  margin: 0;
  line-height: 1.5em;
  font-weight: bold;
}
.copyright a {
  color: #000;
  text-decoration: none;
}
.topic-path {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

    .topic-path li {
        font-size: 18px;
        color: #000;
        font-weight: bold;
    }

    .topic-path a {
        text-decoration: none;
        color: #000;
    }

    .topic-path li:not(:last-child):after {
        content: '>';
        display: inline-block;
        position: relative;
        margin: 0 10px;
    }

    .topic-path a:hover {
        color: #7f4d36;
    }

.pager {
    margin: 45px 0;
    text-align: center;
}

    .pager a {
        padding: 4px 11px;
        text-align: center;
        text-decoration: none;
        border: 1px solid ##009a4e;
        color: #333;
        transition: all 0.5s ease;
    }

        .pager a:hover {
            border: 1px solid #fff;
            color: #fff;
            background: #f99d20;
            box-shadow: 0px 0px 0px 1px #f99d20;
        }

    .pager strong {
        padding: 4px 11px;
        text-align: center;
        text-decoration: none;
        border: 1px solid #fff;
        color: #fff;
        background: #f99d20;
        box-shadow: 0px 0px 0px 1px #f99d20;
    }

    .pager a:first-child {
        padding: 4px 11px;
        background: #fff;
    }

        .pager a:first-child:hover {
            background: #f99d20;
            color: #fff;
            border-color: #fff;
            box-shadow: 0px 0px 0px 1px #f99d20;
        }

    .pager a:last-child {
        padding: 4px 11px;
        background: #fff;
    }

        .pager a:last-child:hover {
            background: #f99d20;
            color: #fff;
            border-color: #fff;
            box-shadow: 0px 0px 0px 1px #f99d20;
        }
.under .mainvisual {
    
    height: 170px;
    margin-top: -170px;
}
.under #main {
    padding-bottom: 30px;
}
.h-user {
    position: relative;
    margin-right: 15px;
    padding-right: 20px;
    border-right: 1px solid #fff;
}
.h-user-ttl {
    background: url(/W_images/ico-user.png) no-repeat left center;
    background-size: 25px;
    padding-left: 35px;
    text-align: left;
    font-size: 12px;
    line-height: 1.4em;
    margin: 0;
    cursor: pointer;
}
.h-user-ttl span {
    font-weight: 600;
    font-size: 13px;
}
.menu-user {
    display:none;
    position: absolute;
    right: calc(100% - 175px);
    top: 40px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
}
    .menu-user:before {
        content: "";
        position: absolute;
        top: -14px;
        right: calc(100% - 150px);
        border: 7px solid transparent;
        border-bottom: 7px solid #fff;
    }
    .menu-user li a {
        position: relative;
        width: 250px;
        text-align: center;
        display: block;
        color: #fff;
        background: #00a84e;
        text-decoration: none;
        padding: 5px 20px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .menu-user li:last-child a {
        margin-bottom: 0;
    }
    .menu-user li:nth-child(3) a {
     
        background: url(/W_images/ico-login-facebook.png) no-repeat left center #3b5998;
        padding-left: 35px;
        background-size: 33px;
    }
    .menu-user li:nth-child(3) .user-fb, .menu-user li:nth-child(4) .user-gg {
        position: absolute;
        top: 0;
        left: 35px;
        width: 1px;
        height: 100%;
        background: #fff;
    }

    .menu-user li:nth-child(4) a {
        background: url(/W_images/ico-login-google.png) no-repeat 7px center #dd4b39;
        padding-left: 35px;
        background-size: 24px;
    }

.idx-bnr .slick-dots {
    position: absolute;
    z-index: 5;
    bottom: 30px;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .idx-bnr .slick-dots button {
        width: 10px;
        height: 10px;
        border: none;
        background: #00a84e;
        cursor: pointer;
        border-radius: 50%;
        text-indent: -5000000px;
        margin: 0 8px;
    }

    .idx-bnr .slick-dots .slick-active button {
        background: #fff;
    }
@media screen and (min-width: 1600px) {
	.f-mod:first-child {
    width: calc(27% - 22.5px);
}
}


@media screen and (max-width: 768px) {
.menu-user{z-index:9999;}
	.idx-itm-ttl a {
        -webkit-line-clamp: 2;
	}
.under .mainvisual {
    height: 0px;
    background-size: cover;
    margin-top: 0;
}
#wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 63px;
}
  #main, #footer {
    min-width: 100%;
  }
  .container, .under #content {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: #1e6b42;
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #totop {
    width: 50px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  .logo a img {
    width: 50%;
	top: 12px;
  }
  .logo a {
    width: 170px;
	padding-top: 5px;
    padding-right: 7px;
    height: 120px;
	background-size: 100% auto;
  }
  #gnavi {
    margin: 0;
    transition: none;
    position: fixed;
    top: 63px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    height: calc(100% - 63px);
    padding: 60px 3%;
    overflow: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    display: none;
  }
  .h-right {
    margin-left: auto;
  }
  .h-tel, .h-search {
    display: none;
  }
  .gnavi {
    order: -1;
    display: block;
    width: 100%;
  }
  .gnavi > li > a {
    background: #00a84e;
  }
  .gnavi > li > a {
    background: #00a84e;
    font-size: 14px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .gnv-cate {
    width: 100%;
    padding: 0;
    border: none;
  }
  .gnv-cate-icon {
    display: none;
  }
  .gnv-icon-list {
    display: block !important;
    margin: 0 !important;
    position: relative;
    width: 100%;
    padding: 0 !important;
    box-shadow: none;
  }
  .gnv-icon-list a {
    padding: 15px 20px;
    background-color: #00a84e;
    background-image: none !important;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .main-itm.slick-slide {
    height: 260px;
  }
  .main-itm-txt {
    width: 40%;
    top: 40%;
  }
  .main-itm-img {
    width: 100%;
    top: 0;
  }
  .b01-itm-vi {
    font-size: 18px;
  }
  .box01 {
    margin-top: 0;
    background-size: cover;
    padding-top: 10vw;
  }
  .box01:before {
    background-size: 200% auto;
    top: -15vw;
  }
  .b01-top {
    flex-wrap: wrap;
    margin: 0;
  }
  .b01-top-item {
    width: 48%;
    margin-bottom: 30px;
  }
  .b01-list {
    padding: 0;
  }
  .b01-item {
    width: 48%;
  }
  .idx-ttl {
    font-size: 26px;
  }
  .idx-list .slick-arrow {
    top: -40px;
  }
  .f-form {
    flex-wrap: wrap;
    padding: 30px 8%;
    margin-bottom: 30px;
  }
  .f-form input {
    width: calc(100% - 70px);
    margin-top: 20px;
    padding: 15px 20px;
  }
  .f-form .button {
    height: 54px;
    margin-top: 20px;
  }
  .f-form:before {
    width: 100px;
    height: 51px;
    margin-right: 20px;
  }
  .f-form-ttl {
    width: calc(100% - 120px);
    margin: 0;
  }
  .f-main {
    flex-wrap: wrap;
  }
  .f-mod, .f-mod:first-child, .f-mod:nth-child(2), .f-mod:nth-child(4) {
    width: 48%;
    margin-bottom: 20px;
  }
  .f-mod-ttl {
    font-size: 18px;
  }
  #footer {
    padding: 20px 0;
  }
.box03, .box04, .box05, .box06, .box07, .box08 {
    padding: 0 0 30px;
}
}
@media screen and (max-width: 480px) {
	
.idx-itm-more a{height: 309px;}	
.idx-bnr {margin: 0;}
.idx-bnr img{min-height:200px;}
.idx-itm-main{overflow: hidden;}	
.b01-h2-new{font-size: 32px;}	
  .b01-item {width: 45%; margin-bottom:0;}
  .b01-item  .b01-itm-img{margin-bottom: 5px;}
  .idx-item{margin: 0 5px;}
  .idx-itm-ttl a{font-size:12px;height:39px;}
  .main-itm-img{left:38%;top: -50px;}
  .main-itm-txt{width:40%; top:25%; left: 2%;}
  
  .b01-top-item {
    width: 49%;
    padding: 10px;
    margin-bottom: 20px;
  }
  .b01-top-itm-img{margin: 0 10px 0 0;}
  .b01-top-itm-img img{width:30px;}
  .b01-top-itm-ttl {font-size: 12px;}
  
  .logo {left:1%;}
  .logo a{width:140px;}
  
  .b01-h2 {
    font-size: 30px;
    margin: 0 0 30px;
  }
  .idx-ttl {
    font-size: 16px;padding: 5px 0 5px 10px;
  }
  .idx-list .slick-prev {
    right: 65px;
  }
 .f-mod, .f-mod:first-child, .f-mod:nth-child(2), .f-mod:nth-child(4) {
    width: 100%;
  }
  .f-form-ttl {
    width: 100%;
  }
  .f-form:before {
    margin: 0 0 10px;
    width: 70px;
    height: 38px;
  }
  .f-form {
    padding: 30px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 375px) {
.idx-itm-more a{height: 291px;}	
.idx-itm-cart a{width: 130px;justify-content: center;padding: 2px 3px; font-size: 10px;}	
}