@charset "utf-8";

/* ======================================

  CommonElements

======================================= */
body {
  width: 100%;
  min-width: 960px;
  color: #111;
  /*font-size: 16px;*/
  font-size: 62.5%;
  line-height: 1.6;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 980px) {
  body {
    width: 980px;
  }
}
@media screen and (max-width: 768px){
  body {
    min-width: 320px;
    width: 100%;
  }
}

.noscroll {
  overflow: hidden;
}

a { color: #111; }
a:link { text-decoration:none;}
a:visited { text-decoration:none;}
a:active { text-decoration:none;}
a:hover { text-decoration:none; color: #111;}
a:focus{ overflow: visible; }

img {
  max-width: 100%;
}

.font-mincho {
  /*font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", HGS明朝E, serif;*/
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-font-smoothing: antialiased;
}

.js-switch {
  /*visibility: hidden;*/
  display: none;
}

.sp-only {
  display: none!important;
}
.sp-s-only {
  display: none!important;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none!important;
  }
  .sp-only {
    display: inherit!important;
  }
}
@media screen and (max-width: 480px) {
  .sp-s-only {
    display: inherit!important;
  }
}

.container {
  width: 980px;
  margin:  0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 12px;
  }
}

.align-left {text-align: left;}
.align-center {text-align: center;}
.align-right {text-align: right;}

.relative {position: relative;}
.absolute {position: absolute;}

.opa {
  transition: all  0.3s ease-out;
}
.opa:hover {
  text-decoration: none!important;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .opa {
    transition: initial;
  }
  .opa:hover {
    opacity: 1;
  }
}

.zoom {
  transition-duration: 0.3s;
  overflow: hidden;
}
.zoomWrap:hover .zoom {
  transform: scale(1.1);  /*画像の拡大率*/
  transition-duration: 0.3s;  /*変化に掛かる時間*/
}

.arw {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
.arw::before{
  content: '';
  width: 4px;
  height: 4px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .arw {
    padding-right: 8px;
  }
  .arw::before{
    width: 3px;
    height: 3px;
    margin-top: -1px;
  }
}

@media screen and (max-width: 768px) {
  .arw-sp-menu {
    position: relative;
  }
  .arw-sp-menu::after {
    position: absolute;
    content: "";
    right: 4vw;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 100;
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

/* ------------------------------------
  header
------------------------------------ */
.l-header {
  width: 100%;
  background-color: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eee;
}
.header__inner {
  position: relative;
  height: 70px;
}
.header__logo {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -25px;
}
.header__navi {
  height: 70px;
  line-height: 70px;
}
.header__navi ul {
  display: inline-block;
}
.header__navi li {
  display: inline-block;
  line-height: 1;
  margin-right: 25px;
  font-size: 16px;
  vertical-align: middle;
}
.header__navi li:last-child {
  margin-right: 0;
  padding-bottom: 2px;
}
#topPage .header__navi li:last-child {
  padding-bottom: 0;
}
.header__navi li img {
  vertical-align: middle;
}
.header__naviOnlineShop {
}
.header__sns {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -16px;
}
.header__sns li {
  display: inline-block;
  margin-right: 5px;
}
.header__sns li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1220px) {
  .header__inner {
    height: auto;
  }
  .header__navi {
    height: auto;
    line-height: 3;
    margin: 0 140px 0 120px;
    padding: 20px 0 15px;
  }
  .header__navi li {
    display: inline-block;
    margin-right: 15px;
    font-size: 15px;
  }
  .header__navi li:last-child {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 67px;
  }
  .header__inner {
    height: 67px;
  }
  .header__logo {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 0;
    padding-top: 15px;
  }
  .header__logo img {
    width: 42px;
  }
  .header__panel {
    display: none;
    position: absolute;
    left: 0;
    top: 67px;
    width: 100%;
    padding: 45px 0 55px;
    z-index: 100;
    background: #f5efef;
  }
  .header__hedding {
    position: relative;
    line-height: 1;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 18px;
  }
  .header__hedding::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom:  0;
    width: 30px;
    height: 1px;
    margin-left: -15px;
    background-color: #ccc;
  }
  .header__navi {
    height: auto;
    line-height: 2;
    margin: 0 0 30px;
    padding: 0;
  }
  .header__navi ul {
    display: block;
  }
  .header__navi li {
    display: block;
    line-height: 2.9;
    margin-right: 0;
    font-size: 14px;
  }
  .header__naviSpExternaLink {
    padding-right: 12px;
    background: url('../images/common/ico_externa_link_sp.png') right center no-repeat;
    background-size: 8px auto;
  }
  .header__naviOnlineShop {
    display: inline-block;
    width: 220px;
    height: 45px;
    line-height: 45px;
    margin-top: 10px;
    font-size: 13px;
    border: 1px solid #666;
  }
  .header__naviOnlineShop span {
    padding-left: 25px;
    background: url('../images/common/ico_online_shop_sp.png') left 12px no-repeat;
    background-size: 17px auto;
  }
  .header__sns {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 0;
  }
  .header__sns li {
    width: 45px;
    margin-right: 25px;
  }
  .header__onlineshop {
    position: absolute;
    right: 15px;
    top:  50%;
    width: 28px;
    margin-top: -19px;
  }
}
@media screen and (max-width: 320px) {
  .header__panel {
    padding: 30px 0 35px;
  }
  .header__hedding {
    margin-bottom: 10px;
  }
  .header__navi li {
    line-height: 2.5;
  }
  .header__navi {
    margin-bottom: 22px;
  }
}

.header-sp-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-sp-menu {
    display: inherit;
    position: absolute;
    top: 24px;
    left: 15px;
    text-align: center;
  }
  .header-sp-menu__btn,
  .header-sp-menu__btn span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .header-sp-menu__btn {
    position: relative;
    width: 25px;
    height: 17px;
  }
  .header-sp-menu__btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
  }
  .header-sp-menu__btn span:nth-of-type(1) {
    top: 0;
  }
  .header-sp-menu__btn span:nth-of-type(2) {
    top: 8px;
  }
  .header-sp-menu__btn span:nth-of-type(3) {
    bottom: 0px;
  }
  .header-sp-menu__btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-315deg);
    transform: translateY(8px) rotate(-315deg);
  }
  .header-sp-menu__btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header-sp-menu__btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(315deg);
    transform: translateY(-8px) rotate(315deg);
  }
  .header-sp-menu__text {
    font-size: 1em;
    font-weight: bold;
    text-align: center;
  }
}

/* ------------------------------------
  main
------------------------------------ */
.l-main {
  position: relative;
  padding-top: 70px;
}
#topPage .l-main {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 65px;
    padding-bottom: 0px;
  }
  .l-main_index {
    padding-top: 65px;
    padding-bottom: 60px;
  }
}

.btnOnlineshop {
  position: fixed;
  right: 50%;
  bottom:  15px;
  margin-right: -580px;
  z-index: 2;
}
.btnOnlineshop img {
  opacity: 0.9;
}
.icon_cart {
    color: #007440;
    position: relative;
    top: 0;
    left: 0;
}
.btnOnlineshop a{
    position: relative;
    z-index: 10;
  }
.link_d {
    zoom:1;
  width: 72px;
  height: 72px;
  -webkit-border-radius: 75%;
  -moz-border-radius: 75%;
  border-radius: 75%;
  opacity: 1;
  -ms-filter: "alpha(opacity=100)";
  /* pointer-events: none; */
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.link-background_bg.on {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  -webkit-transition: all 0.5s ;
  -moz-transition: all 0.5s ;
  transition: all 0.5s ;
}

.link_d.on {
  border: 1px solid rgba(255,255,255,0);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
@media screen and (max-width: 768px) {
	.btnOnlineshop {
		right: 12px;
		bottom:  15px;
		margin-right: 0;
	}
	.btnOnlineshop img {
		width: 79px;
	}
	.icon_cart {
		color: #007440;
		position: relative;
		top: 0;
		left: 0;
	}
	.btnOnlineshop a{
		position: relative;
		z-index: 10;
	}
	.link_d {
		zoom:1;
		width: 65px;
		height: 65px;
		-webkit-border-radius: 75%;
		-moz-border-radius: 75%;
		border-radius: 75%;
		opacity: 1;
		-ms-filter: "alpha(opacity=100)";
		/* pointer-events: none; */
		display: block;
		position: absolute;
		top: 7px;
		left: 7px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

/* ------------------------------------
  footer
------------------------------------ */
.l-footer {
}
.footer__links {
  display: flex;
  margin-bottom: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.footer__links li {
  width: calc(100%/3);
  padding-left: 16px;
}
.footer__links li:first-child {
  padding-left: 0;
}
.footer__linksHeading {
  position: relative;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 1.8px;
}
.footer__linksHeading::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 1px;
  margin-left:  -20px;
  background-color: #ccc;
}
.footer__links dd {
  overflow: hidden;
}
.footer__linksItem {
  display: table;
  width: 100%;
  border: solid 10px #f6f6f6;
  overflow: hidden;
  transition-duration: 0.3s;
}
.footer__linksItem.onlineshop {
  height: 76px;
  margin-bottom: 8px;
  background-color: #eaedf3;
}
.footer__linksItem.mailmag {
  height: 76px;
  background-color: #f6ecf5;
}
.footer__linksItem.onlineshop:hover,
.footer__linksItem.mailmag:hover {
  background-color: #fff;
}
.footer__linksItemInner {
  position: relative;
  display: table-cell;
  font-size: 13px;
  font-weight: bold;
  vertical-align: middle;
}
.footer__linksItemImgContact {
  height: 140px;
  background: url('../images/common/footer_contact_bg_pc.jpg') center center no-repeat;
  background-size:  cover;
}
.footer__linksItemImgRecruit {
  height: 140px;
  background: url('../images/common/footer_recruit_bg_pc.jpg') center center no-repeat;
  background-size:  cover;
}
.footer__linksItemText {
  position: absolute;
  left:  0;
  top:  0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 176px;
  height: 48px;
  line-height: 48px;
  background: rgba(255, 255, 255, 0.6);
  transition: all  0.3s ease-out;
}
.footer__linksItem:hover .footer__linksItemText {
  background: rgba(255, 255, 255, 1);
}
.footer__btm {
  position: relative;
  width: 100%;
}
.footer__navigation {
  margin-bottom: 25px;
}
.footer__navigation ul {
  display: flex;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.8px;
}
.footer__navigation li {
  padding-right: 6px;
}
.footer__navigationPrivacyProlicy,
.footer__navigationLinkProlicy {
  display: none;
}
.footer__navigation li::after {
  content: "|";
  padding-left: 6px;
}
.footer__navigationOnlineShop::after {
  display: none;
}
.footer__navigationExternaLink {
  padding-right: 12px;
  background: url('../images/common/ico_externa_link.png') right center no-repeat;
}
.footer__navigationOnlineShop span {
  padding-left: 20px;
  background: url('../images/common/ico_online_shop.png') left center no-repeat;
}
.footer__linksBottom {
  display: flex;
  margin-bottom: 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.footer__linksBottom a {
  margin-right: 20px;
}
.footer__linksSns {
  position: absolute;
  top:  50%;
  right: 0;
  display: flex;
  margin-top: -16px;
  text-align: right;
  vertical-align: middle;
}
.footer__linksSns li {
  margin-right: 8px;
}
.footer__linksSns li:last-child {
  margin-right: 0;
}

.footer__copyright {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 500;
  background-color: #555;
  letter-spacing: 0.9px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer .container {
    padding: 0;
  }
  .footer__links {
    flex-wrap: wrap;
    margin: 0 15px 13px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer__links li {
    width: calc(100%/2);
    padding-left: 12px;
    padding-bottom: 12px;
  }
  .footer__links li:nth-child(even) {
    padding-left: 0;
  }
  .footer__linksHeading {
    display: none;
  }
  .footer__linksHeading::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 1px;
    margin-left:  -20px;
    background-color: #ccc;
  }
  .footer__links dd {
    overflow: hidden;
  }
  .footer__linksItem {
    display: table;
    width: 100%;
    border: solid 5px #f6f6f6;
    transition-duration: initial;
  }
  .footer__linksItem.onlineshop {
    height: auto;
    margin-bottom: 0;
    padding: 0 5px;
  }
  .footer__linksItem.mailmag {
    height: auto;
    padding: 0 5px;
  }
  .footer__linksItem.onlineshop:hover,
  .footer__linksItem.mailmag:hover {
    background-color: #fff;
  }
  .footer__linksItemInner {
    height: 80px;
    font-size: 11px;
  }
  .footer__linksItemImgContact {
    height: 80px;
    background: url('../images/common/footer_contact_bg_pc.jpg') center center no-repeat;
    background-size:  cover;
  }
  .footer__linksItemImgRecruit {
    height: 80px;
    background: url('../images/common/footer_recruit_bg_pc.jpg') center center no-repeat;
    background-size:  cover;
  }
  .footer__linksItemText {
    width: auto;
    width: 112px;
    height: 32px;
    line-height: 32px;
  }
  .footer__btm {
    position: relative;
    width: 100%;
  }
  .footer__navigation {
    margin-bottom: 20px;
  }
  .footer__navigation ul {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  .footer__navigation li {
    width: 50%;
    padding-right: 0;
    border-top: 1px solid #eee;
  }
  .footer__navigationHome,
  .footer__navigationOnlineShop {
    display: none;
  }
  .footer__navigationPrivacyProlicy,
  .footer__navigationLinkProlicy {
    display: block;
  }
  .footer__navigationNews,
  .footer__navigationCollection,
  .footer__navigationCompany,
  .footer__navigationRecruit,
  .footer__navigationPrivacyProlicy {
    border-right: 1px solid #eee;
  }
  .footer__navigation li::after {
    display: none;
  }
  .footer__navigation li a {
    display: block;
    padding: 18px 15px;
  }
  .footer__navigation li a::before{
    content: '';
    width: 5px;
    height: 5px;
    border: 0px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -2px;
  }
  .footer__navigationExternaLink {
    padding-right: 12px;
    background: url('../images/common/ico_externa_link.png') right center no-repeat;
  }
  .footer__linksBottom {
    display: none;
  }
  .footer__linksSns {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 0 0 20px;;
    text-align: center;
  }
  .footer__linksSns li {
    display: inline-block;
    margin-right: 25px;
  }
  .footer__linksSns li img {
    width: 45px;
  }
  .footer__copyright {
    padding: 6px 0;
    font-size: 11px;
    letter-spacing: 0.9px;
  }
}

/* ------------------------------------
  pageTop
------------------------------------ */
.pageTop {
  margin: 0 0 45px 0;
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.pageTop_index {
  margin: 120px 0 45px 0;
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.pageTop a {
  position: relative;
  padding-right: 10px;
}
.pageTop a::after {
  content: '';
  width: 4px;
  height: 4px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -1px;
}
.pageTopSp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pageTopSp {
    position:fixed;
    left: 12px;
    bottom: 12px;
    margin: 0;
    padding: 0;
    z-index: 2;
  }
  .pageTopSp img {
    width: 44px;
    height: 44px;
    opacity: 0.8;
  }
}

/* ------------------------------------
  effect
------------------------------------ */
.effect-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.effect-underline::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.effect-underline:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .effect-underline::after {
    display: none;
  }
}

/* ------------------------------------
  loding
------------------------------------ */
#progress {
  width:100vw;
  height:100vh;
  position:fixed;
  z-index:50000;
}
#progressBar {
  width:0;
  height:100vh;
  background: -webkit-linear-gradient(right, #7c7a78 ,#e0d5cd ,#f4e4e7);
  background: linear-gradient(0deg, #7c7a78 ,#e0d5cd ,#f4e4e7);
  background-size: 200% 200%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position:absolute;
}
#progress #logo_load{
  position: fixed;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  display:block;
  z-index:1000;
  width:80px;
  height:66px;
  display:none;
}
#barba-wrapper{
  position: relative;
  opacity:0;
}
@media screen and (max-width: 768px) {
  #progress #logo_load{
    width: 64px;
    height: auto;
  }
}

/* ------------------------------------
  ClearFixElements
------------------------------------ */
.cf::before {
  content: " ";
  display: table;
}
.cf::after {
  clear: both;
}
.cf {
  *zoom: 1;
}


::selection {
  background: #f3eaea;
}
::-moz-selection {
  background: #f3eaea;
}



/* animate.css */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.floating-short {
  -webkit-animation-name: floating-short;
  animation-name: floating-short;
}

@-webkit-keyframes floating-short {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.9, 0.9, 0.9) translateY(80px);
    -ms-transform: scale3d(0.9, 0.9, 0.9) translateY(80px);
    -webkit-transform: scale3d(0.9, 0.9, 0.9) translateY(80px);
    transform: scale3d(0.9, 0.9, 0.9) translateY(80px);
  }
  40% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes floating-short {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.9, 0.9, 0.9) translateY(80px);
    -ms-transform: scale3d(0.9, 0.9, 0.9) translateY(80px);
    -webkit-transform: scale3d(0.9, 0.9, 0.9) translateY(80px);
    transform: scale3d(0.9, 0.9, 0.9) translateY(80px);
  }
  40% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*オンラインショップボタンの表示・非表示*/
#pc_online{
    display: inline-block;
}
#sp_online {
    display: none;
}

@media screen and (max-width: 768px) {
    #pc_online{
        display: none;
    }
    #sp_online {
        display: inline-block;
    }
}
