@charset "utf-8";
/*!
 * base CSS
 * ---------------------------------------------
 * 共通レイアウトに関わるCSS
 */

@import url('//fonts.googleapis.com/css?family=Crimson+Text:400,400i,600,600i,700,700i&display=swap');

@import url('//fonts.googleapis.com/css?family=Noto+Sans:400,500,700&display=swap');
@import url('//fonts.googleapis.com/css?family=Noto+Serif&display=swap');

/* reset
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,menu,nav,section,main {
  display:block;
}
article,aside,details,figcaption,figure,footer,header,menu,nav,section,main,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
fieldset,img {
  border: 0;
}
* {
  font-size:100%;
  max-height: 999999px;
}
body {
  font: 100%/1 'Noto Sans', sans-serif;
}
h1,h2,h3,h4,h5,h6,b {
  font-weight: 400;
}
ol,ul,li {
  list-style: none;
}
ul,ol {
  letter-spacing: -.40em;
}
ul > li,ol > li {
  letter-spacing: normal;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
*:before,*:after {
  content: "";
  display: none;
}
html {
  -webkit-text-size-adjust: 100%;
}
input,textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.hiddenPc,
.brkSp {
  display: none;
}
.brkPc {
  display: block;
}

/*===================================
  font link
=====================================*/

body,
a,a:visited {
  color: #000;
}
body {
  font-size: 14px;
  text-align: justify;
}
a {
  text-decoration: none;
}
a.underine {
  text-decoration: underline;
}
a.underine:hover {
  text-decoration: none;
}
.serif {
  font-family: 'Noto Serif', serif;
}
.enFont,
.lang__navi,
.menu a,
.footer h2,.copy {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
}
.nspace {
  display: inline-block;
  margin-right: -3px;
}

/*===================================
  layout
=====================================*/

body {
  min-width: 1200px;
}
.inner {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/*===================================
  element
=====================================*/
/*  background
---------------------------------*/

body {
  background-color: #fff;
}

/*  sprite
---------------------------------*/

.logo,
.pagetop a,
.sns a {
  background-image: url(../images/base/sprite.png);
  background-repeat: no-repeat;
}
.logo {
  width: 96px;
  height: 54px;
  background-position: 0 0;
}

/*  sns
---------------------------------*/

.sns {
  text-align: center;
}
.sns li {
  display: inline-block;
  text-align: left;
}
.sns a {
  display: block;
  border-radius: 50%;
  text-indent: -9999em;
}
.header .sns li {
  margin-left: 8px;
}
.header .sns a {
  width: 29px;
  height: 29px;
  background-color: rgba(248,182,22,.8);
}
.header .sns .inst a {
  background-position: -200px 0;
}
.header .sns .twt a {
  background-position: -300px 0;
}
.header .sns .fb a {
  background-position: -400px 0;
}
.header .sns .yt a {
  background-position: -500px 0;
}
.footer .sns li {
  margin: 0 11px;
}
.footer .sns a {
  width: 57px;
  height: 57px;
  background-color: #f8b616;
}
.footer .sns .inst a {
  background-position: -600px 0;
}
.footer .sns .twt a {
  background-position: -700px 0;
}
.footer .sns .fb a {
  background-position: -800px 0;
}
.footer .sns .yt a {
  background-position: -900px 0;
}

/*  opacity
---------------------------------*/

.pc a img,
.pc .sns a,
.pagetop,
.pc .btn a,
.pc input[type="button"],.pc input[type="submit"]  {
  transition: .7s;
}
.pc a:hover img,
.pc .sns a:hover,
.pc .pagetop a:hover,
.pc .btn a:hover,
.pc input[type="button"]:hover,.pc input[type="submit"]:hover {
  opacity: .7;
}

/*  btn
---------------------------------*/

.btn a {
  display: block;
  width: 220px;
  height: 45px;
  line-height: 45px;
  margin: auto;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.btn.bright a {
  background: #f8b616;
}

/*===================================
  header
=====================================*/

.header {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  margin-top: 15px;
  padding: 7px 20px 8px 23px;
  background: rgba(248,182,22,.8);
}
.header.fixed {
  position: fixed;
  margin-top: 0;
}
.header > div {
  position: relative;
  width: 1200px;
  margin: auto;
}
.header h1 {
  float: left;
  width: 95px;
  margin: 8px 13px 0 23px;
}
.header h1 a {
  display: block;
}
.lang__navi {
  float: left;
  width: 77px;
  margin-top: 48px;
  font-size: 12px;
}
.lang__navi li {
  display: inline-block;
}
.lang__navi li:after {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 11px;
  margin: -2px 4px 0;
  background: #000;
}
.lang__navi li:nth-last-of-type(1):after {
  display: none;
}
.lang__navi a {
  color: #fff;
}
.lang__navi a:hover {
  text-decoration: underline;
}
.jpn .lang__navi li:nth-of-type(1) a,
.eng .lang__navi li:nth-of-type(2) a,
.frc .lang__navi li:nth-of-type(3) a {
  pointer-events: none;
  color: #000;
}
.header .sns {
  position: absolute;
  top: 95px;
  right: 16px;
}

/*  menu
---------------------------------*/

.menu__pc ul {
  overflow: hidden;
  width: 968px;
  border-right: solid 1px #c6a147;
  text-align: center;
}
.menu__pc ul:after {
  content: "";
  display: block;
  clear: both;
}
.menu__pc li {
  float: left;
  border-left: solid 1px #c6a147;
}
.menu__pc li:nth-of-type(1) {
  display: none;
}
.menu__pc li a {
  display: block;
  width: 160px;
  height: 70px;
  padding-top: 25px;
  font-size: 20px;
}
.menu__pc li:nth-of-type(5) a {
  padding-top: 12px;
}
.menu__pc li a span {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
.pc .menu__pc a:hover {
  color: #fff;
}
.about .menu__pc li:nth-of-type(2) a,
.products .menu__pc li:nth-of-type(3) a,
.news .menu__pc li:nth-of-type(4) a,
.woman .menu__pc li:nth-of-type(5) a,
.event .menu__pc li:nth-of-type(6) a,
.tearoom .menu__pc li:nth-of-type(7) a {
  pointer-events: none;
  color: #fff;
}

/*===================================
  footer
=====================================*/

.footer {
  height: 453px;
  padding-top: 53px;
  text-align: center;
}
.footer h2 {
  margin: 45px 0 20px;
  font-size: 24px;
}
.footer dd {
  margin-bottom: 1em;
}
.footer dd.btn {
  margin: 40px 0 45px;
}
.footer nav li {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}
.footer nav li:after {
  content: "|";
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0.4em 0;
}
.footer nav li:nth-last-of-type(1):after {
  display: none;
}
.footer dt a:hover,.footer nav a:hover {
  text-decoration: underline;
}
.copy {
  margin-top: 27px;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.09em;
  opacity: .3;
}
.pagetop {
  position: absolute;
  position: fixed;
  right: 30px;
  z-index: 9000;
  bottom: 453px;
  text-indent: -9999em;
}
.pagetop a {
  display: block;
  width: 70px;
  height: 60px;
  background: #24201b;
}
.pagetop a:after {
  display: block;
  position: absolute;
  top: 23px;
  left: 20px;
  width: 30px;
  height: 30px;
  border-top: solid 1px #f8b616;
  border-right: solid 1px #f8b616;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-indent: -9999em;
}

/************************************************************************************
smaller than 660px
*************************************************************************************/
@media screen and (max-width: 660px) {

  .hiddenPc,
  .brkSp {
    display: block;
  }
  .hiddenSp,
  .brkPc {
    display: none;
  }

  /*===================================
    font
  =====================================*/

  body {
    font-size: 20px;
  }

  /*===================================
    layout
  =====================================*/

  body {
    min-width: 640px;
    padding-top: 105px;
  }
  .inner {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  /*===================================
    element
  =====================================*/
  /*  sprite
  ---------------------------------*/

  .logo {
    width: 120px;
    height: 68px;
    background-position: 0 -100px;
  }

  /*  sns
  ---------------------------------*/

  .header .sns li {
    margin: 0 30px;
  }
  .header .sns a {
    width: 60px;
    height: 54px;
    border-radius: 0;
    background-color: transparent;
  }
  .header .sns .inst a {
    background-position: -200px -100px;
  }
  .header .sns .twt a {
    background-position: -300px -100px;
  }
  .header .sns .fb a {
    background-position: -400px -100px;
  }
  .header .sns .yt a {
    background-position: -500px -100px;
  }
  .footer .sns li {
    margin: 0 16px;
  }
  .footer .sns a {
    width: 80px;
    height: 80px;
  }
  .footer .sns .inst a {
    background-position: -600px -100px;
  }
  .footer .sns .twt a {
    background-position: -700px -100px;
  }
  .footer .sns .fb a {
    background-position: -800px -100px;
  }
  .footer .sns .yt a {
    background-position: -900px -100px;
  }

  /*  btn
  ---------------------------------*/

  .btn a {
    font-size: 20px;
  }

  /*===================================
    header
  =====================================*/

  .header {
    position: fixed;
    height: 105px;
    margin-top: 0;
    padding: 0;
    background: #f8b616;
  }
  .header > div {
    width: auto;
    padding-top: 15px;
  }
  .header h1 {
    float: none;
    width: 120px;
    margin: 0 auto;
  }
  .lang__navi {
    float: none;
    position: absolute;
    top: 40px;
    left: 30px;
    width: 160px;
    margin-top: 0;
    font-size: 25px;
  }
  .lang__navi li {
    display: inline-block;
  }
  .lang__navi li:after {
    width: 2px;
    height: 23px;
    margin: -8px 10px 0;
  }
  .header .sns {
    position: relative;
    top: inherit;
    right: inherit;
  }

  /*  menu
  ---------------------------------*/

  .hid {
    overflow: hidden;
    height: 100%;
  }
  .menuBtn {
    position: absolute;
    top: 33px;
    right: 30px;
    width: 60px;
    height: 32px;
    cursor: pointer;
  }
  .menuBtn span,.menuBtn span:before,.menuBtn span:after {
    display: block;
    position: absolute;
    left: 0;
    width: 60px;
    height: 2px;
    background: #000;
    transition: .5s;
  }
  .menuBtn span {
    top: 0;
  }
  .menuBtn span:before {
    top: 15px;
  }
  .menuBtn span:after {
    top: 30px;
  }

  .menuBtn.open span {
    background: none;
  }
  .menuBtn.open span:before,.menuBtn.open span:after {
    top: 13px;
  }
  .menuBtn.open span:before {
    transform: rotate(45deg);
  }
  .menuBtn.open span:after {
    transform: rotate(315deg);
  }
  .menuWrap {
    position: fixed;
    top: 105px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
  }
   .menuWrap > div  {
    position: relative;
    overflow-y: auto;
    height: 100%;
    min-height: 100%;
  }
  .menu__sp {
    padding: 27px 20px 67px;
  }
  .menu__sp li {
    display: inline-block;
    vertical-align: middle;
    width: 280px;
    margin: 10px;
    text-align: center;
  }
  .menu__sp li:nth-of-type(1) {
    display: block;
  }
  .menu__sp li:nth-of-type(1) a {
    height: 58px;
    padding: 0;
    line-height: 58px;
  }
  .menu__sp a {
    display: block;
    height: 128px;
    padding-top: 44px;
    border: solid 1px #463818;
    color: #f8b616;
    font-size: 36px;
  }
  .menu__sp li:nth-of-type(5) a {
    padding-top: 22px;
  }
  .menu__sp a span {
    display: block;
    margin-bottom: 8px;
    font-size: 30px;
  }

  /*===================================
    footer
  =====================================*/

  .footer {
    height: 575px;
    padding-top: 77px;
  }
  .footer h2 {
    margin: 55px 0 20px;
    font-size: 34px;
  }
  .footer dd {
    margin-bottom: 1em;
    font-size: 18px;
  }
  .footer dd.btn {
    margin: 60px 0 60px;
  }
  .footer nav li {
    font-size: 18px;
  }
  .footer nav li:after {
    margin: -3px 0.4em 0;
  }
  .copy {
    margin-top: 24px;
    font-size: 16px;
  }
  .pagetop {
    bottom: 575px;
  }
}
