@charset 'UTF-8';
/* CSS Document */

/* Reset default
---------------------------------------*/
body {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  color: #35281b;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: auto;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
  line-height: 2;
}

a {
  text-decoration: none;
}

a,
img,
article,
input,
textarea {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

label {
  cursor: pointer;
}

/*input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}*/
input:focus,
textarea:focus {
  outline: none;
}

/* Header
---------------------------------------*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1050;
}

.site_tl {
  margin: 24px 0 24px 32px;
}

.site_tl img {
  display: block;
  height: 20px;
}

.site_tl a {
  display: block;
  max-width: 320px;
}

.site_tl2 {
  margin: 4px 0 4px 32px;
}

.site_tl2 img {
  display: block;
  height: 60px;
}

/* Burger button */
#burger {
  position: absolute;
  width: 40px;
  height: 30px;
  right: 32px;
  top: 10px;
  text-align: center;
  font-size: 0%;
  display: inline-block;
  z-index: 999999999;
  cursor: pointer;
}

#burger:after {
  font-family: "EB Garamond", serif;
  content: "Menu";
  font-style: italic;
  font-size: 13px;
  text-align: center;
  letter-spacing: 2px;
  color: #80674f;
}

#burger.show:after {
  color: #fff;
  content: "Close";
}

#burger>span {
  height: 2px;
  /* ラインの太さ*/
  display: inline-block;
  background: #80674f;
  margin: 4px auto;
  /* ラインの間隔*/
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

#burger.show>span {
  background-color: #fff;
}

#burger.show>span:nth-child(3) {
  /* ラインの幅+間隔分を下へ*/
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

#burger.show>span:nth-child(2) {
  opacity: 0;
}

#burger.show>span:first-child {
  -webkit-transform: translateY(10px) rotate(-45deg);
  /* ラインの幅+間隔分を上へ*/
  transform: translateY(10px) rotate(-45deg);
}

/* Navigation */
.g_nav {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 999999998;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
  background: url(../images/menu_bg.png) rgba(135, 103, 79, 0.98);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 960px;
  padding: 0 16px;
  /*ロゴ分の下げを調整*/
  border-bottom: none;
  overflow: scroll;
  padding-top: 64px;
}

.g_nav.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.g_nav h4 {
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 40px;
  margin-bottom: 40px;
}

.g_nav nav {
  max-width: 800px;
  margin: 0 auto 64px;
  overflow: hidden;
}

.g_nav nav ul {
  width: 47.5%;
  float: left;
}

.g_nav nav ul:first-child {
  margin-right: 5%;
}

.g_nav nav ul li {
  float: none;
}

.g_nav nav ul li a {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 18px;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.g_nav nav ul li:last-child a {
  margin-bottom: 0;
}

.g_nav h5 {
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 28px;
  margin-bottom: 8px;
}

.g_nav .tel a {
  text-align: center;
  color: rgba(255, 255, 255, 1);
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  letter-spacing: 8px;
  font-style: italic;
}

.sns {
  overflow: hidden;
}

.sns ul {
  position: relative;
  left: 50%;
  float: left;
}

.sns li {
  position: relative;
  left: -50%;
  float: left;
}

.sns li a {
  display: block;
  margin: 0 16px;
}

.sns li a img {
  display: block;
  height: 16px;
}

.tel_sp {
  display: none;
}

header .shop {
  display: block;
  position: absolute;
  top: 20px;
  right: 120px;
}

header .shop a {
  display: inline-block;
  background: #80674f;
  color: #fff;
  font-size: 11px;
  padding: 3px 15px;
  margin-left: 10px;
  text-align: center;
  border: #80674f 1px solid;
}

header .shop a:hover {
  background: #fff;
  color: #80674f;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* Top page
---------------------------------------*/
#home .mv {
  padding-top: 64px;
  display: block;
}
#home .swiper-slide img,
#home .mv img {
  width: 100%;
}

#home .swiper-slide img.pc,
#home .mv img.pc {
  display: block;
}

#home .swiper-slide img.sp,
#home .mv img.sp {
  display: none;
}

.conc a {
  color: #000;
}
.conc a:hover {
  text-decoration: underline;
}

#home .swiper-slide-content {
  width: 90%;
  text-align: center;
  color: #fff;
  font-size: 30px;
  text-shadow: 2px 2px 1px #000000;
  background: rgba(0, 0, 0, 0.5);
  background-size: cover;
  padding: 40px 5% 30px;
}

#home .swiper-slide-content span {
  display: block;
  padding-top: 30px;
  font-size: 16px;
}

#home .swiper-slide-content span.kaigyo {
  display: inline;
  font-size: 30px;
}

#home h2 {
  font-size: 24px;
  color: #80674f;
  margin-bottom: 60px;
  line-height: 1.3;
  text-align: center;
}

#home h2 span {
  font-size: 14px;
  color: #c45461;
}

#home h2 span.kaigyo {
  font-size: 24px;
  color: #80674f;
}

#home .area1 {
  margin-top: 120px;
  margin-bottom: 120px;
}

#home .area1 h2 {
  margin-bottom: 100px;
}

#home .area1 .box {
  overflow: hidden;
}

#home .area1 .box .txt {
  width: 550px;
  float: left;
  margin-top: 30px;
}

#home .area1 .box .txt h3 {
  border-bottom: #e7bbc0 1px solid;
  margin: 40px 0 30px;
}

#home .area1 .box figure {
  width: 350px;
  height: 485px;
  float: right;
  margin-top: 45px;
  border: #e7bbc0 1px solid;
  position: relative;
}

#home .area1 .box figure img {
  position: absolute;
  top: -40px;
  left: -40px;
}

#home .area2 {
  background: #f8f8f8;
  padding: 100px 0 80px;
}

#home .area2 h2 {
  text-align: center;
  margin-bottom: 80px;
}

#home .area2 li {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

#home .area2 li figure {
  width: 350px;
}

#home .area2 li .txt {
  width: 620px;
  margin: 0 20px 0 0;
}

#home .area2 li .txt h3 {
  font-size: 18px;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: #e7bbc0 1px solid;
}

#home .area2 li:first-child .txt h3::after,
#about_keio .info_tl span::after {
  content: "NEW";
  display: inline-block;
  font-size: 11px;
  padding: 0 1em;
  line-height: 20px;
  border-radius: 3px;
  background: #c45461;
  color: #fff;
  margin: 0 0 0 1em;
}
#home .area2 li:first-child .txt h3.no-new::after,
#about_keio .info_tl span.no-new::after {
  display: none;
}

.renewal {
  font-size: 14px;
  display: inline-block;
  border: 1px solid #c45461;
  border-radius: 4px;
  padding: 0.5em 1em;
  margin: 0;
  color: #c45461;
  font-weight: 700;
  position: relative;
  top: 1em;
}

#home .area2 li .txt p {
  margin-bottom: 15px;
}

#home .area2 li .txt .link {
  text-align: right;
}

#home .area2 li .txt .link2 {
  padding: 1em 0;
}

#home .area2 li .txt .link a {
  width: 240px;
  display: inline-block;
}

#home .area3 {
  padding: 80px 0 100px;
  background: #f8f8f8;
}

#home .area3 h2 {
  margin-bottom: 30px;
}

#home .area3 .desc {
  text-align: center;
  margin-bottom: 30px;
}

#home .area3 .wrap {
  border-bottom: #ccc 1px dotted;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

#home .area3 .inner_wrap {
  padding: 60px 50px 30px;
  background: #fff;
}

#home .area3 .wrap .cat {
  min-width: 220px;
  float: left;
}

#home .area3 .cat_label,
#home .news .cat_label {
  margin-left: 10px;
}

#home .area3 .wrap h4 a {
  color: #35281b;
}

#home .area3 .wrap h4 a:hover {
  text-decoration: underline;
}

#home .area3 .wrap .tx {
  font-size: 14px;
}

#home .area3 .wrap:nth-child(n + 2) .tx {
  display: none;
}

#home .area4 {
  padding: 80px 0;
}

#home .area4 .box {
  border-top: #eee 1px solid;
  border-bottom: #eee 1px solid;
  margin-bottom: 60px;
}

.swiper-container-cube {
  margin-top: 44px;
}

/* old
---------------------------------------*/
.key {
  background: url(../images/top_bg.jpg) no-repeat top center;
  background-size: 2000px;
  margin-top: 68px;
}

.key .inner_wrap {
  position: relative;
  height: 400px;
}

.key h2 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  position: absolute;
  bottom: 32px;
  right: 0;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 6);
  z-index: 1;
}

.deco01 {
  position: absolute;
  bottom: -80px;
  left: -96px;
  z-index: 1;
}

.deco01 img,
.deco02 img {
  width: 360px;
  display: block;
}

/* Common */
.bg {
  background: url(../images/pattern.png);
  background-size: 40px;
  height: 320px;
}

.border {
  height: 1px;
  background: #e7bbc0;
  margin-left: -64px;
}

/* Intro */
.intro .inner_wrap {
  margin-top: -264px;
  position: relative;
}

.intro .inner_wrap>.wrap {
  width: 50%;
  background: #fff;
  padding: 32px;
  box-sizing: border-box;
  font-size: 13px;
}

.intro .inner_wrap>.wrap p {
  line-height: 2;
}

.intro .inner_wrap>.wrap span {
  color: #c45461;
  font-size: 22px;
  line-height: 1.2;
}

.intro .border {
  width: 416px;
  margin: 24px 0 24px -64px;
}

.intro .cpt_lnk {
  background: url(../images/intro_bg.jpg) no-repeat center center;
  background-size: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 64px 48px;
  box-sizing: border-box;
}

.intro .cpt_lnk .wrap {
  border: 1px solid rgba(255, 255, 255, 0.6);
  height: 100%;
  position: relative;
}

.intro .cpt_lnk .lnk_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -44px 0 0 -120px;
}

.intro .cpt_lnk h3 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.intro .cpt_lnk .link a {
  background: #fff;
  color: #80674f;
  width: 240px;
}

.intro .cpt_lnk .link a::after {
  border-top: 1px solid #80674f;
  border-right: 1px solid #80674f;
}

.intro .cpt_lnk .link a:hover {
  background: #80674f;
  color: #fff;
}

.intro .cpt_lnk .link a:hover:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* News */
#home .news .inner_wrap {
  max-width: 100%;
  padding: 0 5%;
}

.news .wrap {
  display: flex;
  margin-bottom: 60px;
}

.news article {
  width: 25%;
  padding: 0 1%;
  box-sizing: border-box;
}

.news article .icatch {
  border: 1px solid #eee;
  box-sizing: border-box;
}

.news article a {
  color: #35281b;
}

.news article h4 {
  font-size: 16px;
  margin: 8px 0;
}

.news article a:hover h4 {
  text-decoration: underline;
}

.news article .cat {
  font-size: 13px;
  color: #b8aa9c;
}

/* Product */
.prd_top {
  background: url(../images/top_pd_bg.jpg) no-repeat center center;
  background-size: cover;
}

.prdli {
  overflow: hidden;
}

.prdli li {
  float: left;
  width: 20%;
  background: #fff;
  position: relative;
}

.prdli li img {
  width: 100%;
}

.prdli li:nth-child(5n + 5) {
  margin-right: 0;
}

.prdli li .caption {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  text-align: right;
  color: #fff;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.prd_top .link a {
  background: #fff;
  color: #80674f;
  margin-top: 31px;
}

.prd_top .link a:hover {
  background: #80674f;
  color: #fff;
}

.prd_top .link a::after {
  border-top: 1px solid #80674f;
  border-right: 1px solid #80674f;
}

.prd_top .link a:hover:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* Column */
.clm {
  background: url(../images/pattern.png);
  background-size: 40px;
}

.clm .inner_wrap {
  background: #fff;
}

.clm .inner_wrap .wrap {
  padding: 32px;
  width: 50%;
  float: left;
  box-sizing: border-box;
}

.clm .inner_wrap .wrap h3 {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.clm .inner_wrap .wrap h3:first-letter {
  color: #c45461;
}

.clm .inner_wrap .wrap .border {
  max-width: 416px;
}

.clm .inner_wrap .wrap h4 {
  font-size: 16px;
  margin: 16px 0 4px;
}

.clm .inner_wrap .wrap .cat {
  font-size: 13px;
  color: #b8aa9c;
  margin-bottom: 16px;
}

.clm .inner_wrap .wrap .tx {
  font-size: 13px;
}

.clm .inner_wrap .wrap .link a {
  margin: 24px 0 0;
  max-width: 240px;
}

.clm .inner_wrap .icatch {
  float: right;
  width: 50%;
}

.prd_msg {
  margin-top: 48px;
  margin-bottom: 40px;
  font-size: 20px;
  text-align: center;
}

/* Lower pages
---------------------------------------*/
.lw_cnt {
  margin-top: 68px;
}

.lw_cnt section {
  padding: 64px 0;
}

.lw_tl {
  font-size: 32px;
  text-align: center;
  margin-bottom: 64px;
}

.lw_tl:first-letter {
  color: #c45461;
}

.patt {
  background: url(../images/pattern.png);
  background-size: 40px;
}

.lw_inner {
  background: #fff;
  padding: 50px 32px;
  font-size: 16px;
}

/* Concept */
.lw_cnt .cpt {
  padding-top: 0;
}

.cpt_intro p {
  font-size: 20px;
  line-height: 2.2;
  text-align: center;
}

.cpt_tl {
  background: url(../images/cpt_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 120px 0;
}

.cpt_tl h2 {
  color: #fff;
  font-size: 32px;
  text-align: center;
}

.cpt .inner_wrap {
  margin-top: -40px;
}

.fl_tl {
  font-size: 21px;
  margin-bottom: 8px;
}

.fl_tl:first-letter {
  color: #c45461;
}

.cpt_msg {
  border-bottom: 1px solid rgba(128, 103, 79, 0.2);
}

/* Service */
.spn_tl {
  font-size: 24px;
  margin-bottom: 8px;
}

.spn_tl span {
  color: #c45461;
  font-size: 13px;
  margin-left: 1em;
}

.srv .lw_inner .border {
  margin-bottom: 24px;
}

.srv .wrap {
  overflow: hidden;
}

.srv .btnBup {
  text-align: center;
}

.srv .btnBup a {
  font-size: 16px;
  display: inline-block;
  padding: 1em 2em;
  border: 1px solid #c45461;
  transition: all 0.5s;
  background: #fff;
  color: #c45461;
}

.srv .btnBup a:hover {
  background: #c45461;
  color: #fff;
}

.srv .lw_wrap .lw_inner:nth-child(n + 2) {
  margin-top: 40px;
}

.srv .wrap .im {
  float: left;
  width: 178px;
}

.srv .wrap .tx {
  float: right;
  width: 694px;
  font-size: 16px;
}

.srv .wrap .tx .tenpo {
  font-size: 14px;
  border-top: #ccc 1px dotted;
  margin-top: 20px;
  padding-top: 10px;
}

.srv .wrap .link {
  clear: both;
  float: right;
  width: 240px;
}

.srv .wrap .tx table {
  width: 100%;
  background: #f5f3f2;
  padding: 8px 32px;
  display: inline-block;
  box-sizing: border-box;
  font-size: 13px;
  margin-top: 24px;
}

.srv .wrap .tx th,
.srv .wrap .tx td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(128, 103, 79, 0.1);
}

.srv .wrap .tx tr:last-child th,
.srv .wrap .tx tr:last-child td {
  border-bottom: none;
}

.srv .wrap .tx th {
  text-align: left;
}

.srv .wrap .tx th span {
  color: #c45461;
}

.srv .wrap .tx td {
  white-space: nowrap;
  padding-left: 32px;
}

/* Products */
.prd .fl_tl,
.prd_lw .fl_tl {
  margin-bottom: 24px;
}

.prd .wrap article:nth-child(n + 2) {
  margin-top: 40px;
}

.prd article .inner {
  background: #fff;
  padding: 48px 32px;
  box-sizing: border-box;
}

.prd article .inner table {
  width: 100%;
  table-layout: fixed;
}

.prd article .inner th {
  width: 448px;
  /*50%*/
  padding-right: 48px;
  padding-left: 16px;
  box-sizing: border-box;
}

.prd article .inner td {
  width: 448px;
}

.prd article .inner td p {
  font-size: 16px;
  line-height: 1.8;
}

.prd_tl {
  border-bottom: 1px solid #80674f;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.prd_tl img {
  height: 32px;
  display: block;
  margin: auto;
}

.prd article .detail {
  color: #b8aa9c;
  border-top: 1px solid rgba(128, 103, 79, 0.2);
  padding-top: 12px;
  margin-top: 16px;
}

.prd article .link a {
  margin: 32px 0 0;
}

.prd_lw .wrap {
  overflow: hidden;
}

.prd_lw .wrap article {
  width: 30.2083333%;
  float: left;
  margin-right: 4.6875%;
}

.prd_lw article:last-child {
  margin-right: 0;
}

.prd_lw article .prd_tl {
  padding-bottom: 12px;
  margin-bottom: 12px;
  text-align: center;
}

.prd_lw article:last-child .prd_tl {
  line-height: 32px;
}

.prd_lw article .sub {
  line-height: 1.4;
  text-align: center;
  font-size: 13px;
  margin-bottom: 16px;
}

.prd_lw article .tx {
  background: #fff;
  padding: 16px;
  height: 280px;
  box-sizing: border-box;
}

.prd_lw article .tx p {
  font-size: 14px;
  line-height: 1.8;
}

/* About */
.abt .lw_inner {
  overflow: hidden;
}

.map {
  float: right;
  width: 460px;
}

.abt .wrap {
  float: left;
  width: 470px;
}

.abt .wrap p {
  line-height: 2;
  margin-bottom: 40px;
}

.abt .wrap .link a {
  margin: 16px 0 0;
  max-width: 100%;
}

.stf {
  border-bottom: 1px solid rgba(128, 103, 79, 0.2);
}

.stf .wrap {
  overflow: hidden;
}

.stf article {
  width: 288px;
  margin-right: 48px;
  float: left;
  text-align: center;
  margin-bottom: 40px;
}

.stf article:nth-child(3n + 3) {
  margin-right: 0;
}

.stf article:last-child {
  margin-bottom: 0;
}

.stf article .katagaki {
  font-size: 13px;
  margin-top: 16px;
}

.stf article h4 {
  font-size: 17px;
}

.stf article .name {
  font-size: 13px;
  color: #c45461;
  margin-bottom: 16px;
}

.open {
  color: #fff;
}

.open .inner_wrap {
  overflow: hidden;
}

.open .face {
  width: 30.625%;
  float: left;
}

.open .tx {
  width: 65.2083333%;
  float: right;
  font-size: 14px;
}

.katagaki02 {
  font-size: 14px;
}

.open h5 {
  font-size: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.open h5 span {
  font-size: 13px;
  margin-left: 2em;
}

.open .msg {
  margin-top: 24px;
}

/* magnificPopup */
.mfp-close {
  position: fixed;
}

.mfp-close .closeBtn01,
.mfp-close .closeBtn02 {
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 44px;
  height: 2px;
  background: #fff;
}

.mfp-close .closeBtn01 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mfp-close .closeBtn02 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Contact */
.form .inner_wrap {
  position: relative;
}

.form table {
  width: 100%;
  background: #fff;
  font-size: 14px;
}

.form th,
.form td {
  padding: 24px 0;
}

.form th {
  white-space: nowrap;
  background: #80674f;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.form td {
  border-bottom: 1px solid rgba(128, 103, 79, 0.2);
  padding: 24px 32px;
}

.form td label:nth-child(n + 2) {
  margin-left: 16px;
}

.form td input[type="text"],
.form td input[type="tel"],
.form td input[type="email"],
.form td textarea {
  background: #edeceb;
  border: none;
  width: 100%;
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 4px;
}

.form td textarea {
  height: 180px;
}

.form .link {
  margin-top: 32px;
}

.form .link input {
  width: 100%;
}

.deco02 {
  position: absolute;
  bottom: -80px;
  left: -140px;
}

.screen-reader-response ul,
.wpcf7-response-output {
  display: none;
}

/*reCapcha*/
.grecaptcha-badge {
  visibility: hidden;
}

/* Policy */
.law p span {
  display: block;
  text-decoration: underline;
}

.law p a {
  color: #80674f;
  text-decoration: underline;
}

/* Single */
.sgl .wrap {
  overflow: hidden;
}

.sgl .m_clm {
  background: #fff;
}

.sgl .m_clm {
  width: 72.9166666%;
  float: left;
  padding: 48px 32px 32px;
  box-sizing: border-box;
}

.sgl .s_clm {
  width: 22.91666666%;
  float: right;
}

.sgl_tl {
  font-size: 24px;
  line-height: 1.4;
}

.sgl .cat {
  color: #b8aa9c;
  font-size: 13px;
  margin: 4px auto 24px;
}

.sgl .social>div {
  display: inline-block;
  margin-left: 5px;
  height: 20px;
  vertical-align: middle;
  line-height: 0;
}

.sgl .social>div:first-child {
  margin-left: 0;
}

.sgl .tx_wrap {
  border-top: 1px solid rgba(128, 103, 79, 0.2);
  margin-top: 24px;
  padding-top: 24px;
  font-size: 16px;
}

.sgl .m_clm .tx_wrap .news_eyec {
  text-align: center;
  margin-bottom: 50px;
}

.sgl .m_clm .tx_wrap p {
  margin-bottom: 1.5em;
}
.sgl .m_clm .tx_wrap h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.sgl .m_clm .tx_wrap h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
.sgl .m_clm .tx_wrap h6 {
  font-size: 16px;
}

.sgl .s_clm .wrap {
  background: #fff;
  margin-bottom: 40px;
}

.sgl .s_clm h4 {
  font-size: 17px;
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(128, 103, 79, 0.2);
}

.sgl .s_clm h4:first-letter {
  color: #c45461;
}

.sgl .s_clm .wrap .inner {
  padding: 8px 16px;
}

.sgl .s_clm .inner ul+p {
  margin: 8px 0;
}

.sgl .s_clm .inner li a {
  display: block;
  font-size: 13px;
  padding: 8px 20px 8px 0;
  border-bottom: 1px dotted rgba(128, 103, 79, 0.2);
  color: #35281b;
  position: relative;
}

.sgl .s_clm .inner li:last-child a {
  border-bottom: none;
}

.sgl .s_clm .inner li a:hover {
  color: #c45461;
}

.sgl .s_clm .inner li a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(128, 103, 79, 0.4);
  border-right: 1px solid rgba(128, 103, 79, 0.4);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -4px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.sgl .s_clm .inner li a:hover:after {
  border-top: 1px solid #c45461;
  border-right: 1px solid #c45461;
  right: 0;
}

.pager {
  overflow: hidden;
  margin-top: 40px;
}

.pager li {
  float: left;
}

.pager li a {
  margin: 0;
  line-height: 1.7;
  width: 200px;
}

.pager li:nth-child(2) a {
  margin-left: 16px;
}

.prv a::after {
  -webkit-transform: rotate(-135deg) !important;
  transform: rotate(-135deg) !important;
  left: 16px;
}

/* Archive */
.ahv article {
  overflow: hidden;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dotted rgba(128, 103, 79, 0.2);
}

.ahv article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ahv article .icatch {
  float: left;
}

.ahv article .inner {
  float: right;
  width: 58.49056603%;
}

.ahv article .tx {
  font-size: 13px;
}

.ahv article .inner .link {
  float: right;
}

.ahv article .inner .link a {
  margin: 24px 0 0;
  width: 200px;
}

/* Store -------------------------------------------------*/
.store img {
  width: 100%;
}

.store h2 {
  font-size: 24px;
  text-align: center;
  color: #80674f;
}

.store section {
  padding: 80px 0;
}

.store section h2 {
  margin-bottom: 60px;
  line-height: 1.3;
}

.store section h2 span {
  font-size: 14px;
  color: #c45461;
}

.store section .box {
  width: 1040px;
  margin: 0 auto;
}

.store .eyec {
  margin: 50px 0 100px;
  position: relative;
}

.store .eyec .eyec_cap {
  display: block;
  width: 90%;
  padding: 20px 5%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
}

.store .eyec .eyec_cap .title {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 20px;
}

.store .eyec .eyec_cap .desc {
  font-size: 14px;
}

.store .conc {
  width: 1040px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

.store .conc span {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 50px;
}

.store .members_link {
  text-align: center;
  padding: 0 1% 50px;
}

.store .members_link a {
  display: inline-block;
  font-size: 22px;
  padding: 1.5em 2em 1em;
  border: 2px solid #c45461;
  color: #c45461;
  background: #fff;
  font-weight: 700;
  border-radius: 8px;
  transition: 0.3s;
}

.store .members_link a:hover {
  color: #fff;
  background: #c45461;
}

.store .members_link a span {
  display: block;
  font-size: 67%;
  padding: 0 0 1em
}

.store .st_sns {
  margin-top: 30px;
  text-align: center;
}

.store .st_sns li {
  display: inline-block;
  margin: 0 10px;
}

.store .news ul {
  width: 1040px;
  margin: 0 auto;
}

.store .news ul li {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.store .news ul li h5 {
  font-size: 14px;
}

.store .news ul li a {
  color: #35281b;
}

.store .news ul li a:hover>h5 .title {
  text-decoration: underline;
}

.cat_label {
  display: inline-block;
  background: #c45461;
  color: #fff;
  border-radius: 3px;
  font-size: 12px !important;
  padding: 0.3em 1em;
  margin: 0 5px 5px 0;
}

.store .prod,
.store .mess {
  background: #f8f8f8;
  overflow: hidden;
}

.store .prod .slide {
  width: 1040px;
  margin: 0 auto;
}

.store .prod .slide .slick-slide {
  background: #fff;
  min-height: 520px;
}

.store .prod .slide .slick-slide {
  margin: 0 15px;
}

.store .prod .slide .slick-slide h3 {
  padding: 30px 10px 10px;
  text-align: center;
}

.store .prod .slide .slick-slide p {
  padding: 10px;
  font-size: 14px;
}

.store .prod .slide .slick-list {
  padding: 0 !important;
}

.slick-prev {
  left: -40px !important;
}

.slick-next {
  right: -40px !important;
}

.slick-prev:before,
.slick-next:before {
  color: #c45461 !important;
}

.store .serv .box {
  margin-bottom: 80px;
  overflow: hidden;
}

.store .serv .box:last-child {
  margin-bottom: 0;
}

.store .serv .box figure {
  width: 40%;
  float: left;
}

.store .serv .box dl {
  width: 52%;
  float: right;
  min-height: 310px;
  border-bottom: 1px dotted #ccc;
  margin: 0;
}

.store .serv .box:nth-child(odd) figure {
  float: right;
}

.store .serv .box:nth-child(odd) dl {
  float: left;
}

.store .serv .box dl dt {
  font-size: 20px;
  margin-bottom: 40px;
}

.store .serv .box dl dd {
  margin: 0;
}

.store .syousai {
  text-align: right;
  padding: 30px 0;
}

.store .syousai a {
  font-size: 13px;
  display: inline-block;
  background: #80674f;
  border: 1px solid #80674f;
  color: #fff;
  padding: 0.7em 3em;
}

.store .syousai a:hover {
  background: #fff;
  color: #35281b;
}

.store .mess .box figure {
  width: 30%;
  float: left;
  margin-right: 50px;
}

.store .info .box {
  width: 878px;
  padding: 50px 80px;
  border: 1px solid #eee;
}

.store .info .box dl {
  border-bottom: 1px dotted #eee;
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.store .info .box dl dt {
  width: 25%;
  float: left;
}

.store .info .box dl dd {
  width: 75%;
  float: left;
  margin: 0;
}

.store .gmap {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 40%;
}

.store .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* BEAUTY UP PROGRAM -------------------------------------------------*/
.bupIntro {
  text-align: center;
  font-size: 18px;
}

.bupIntro .price {
  font-size: 22px;
  color: #c45461;
  margin-bottom: 20px;
}

.bupIntro p {
  line-height: 3;
}

.bupIntro p span {
  color: #c45461;
  display: inline-block;
  margin: 0 1em;
}

.bupIntro ul {
  padding: 30px 0;
}

.bupIntro li {
  width: 60%;
  margin: 0 auto 10px;
  border: 1px solid #80674f;
  padding: 0.7em 0;
}

.bup h3 {
  background: #80674f;
  font-size: 24px;
  padding: 0.5em 20px;
  color: #fff;
  margin-bottom: 20px;
}

.bup .lead {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.bup .lead figure {
  width: 48%;
}

.bup .lead .midashi {
  width: 48%;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5em;
}

.bup .midashi .catch {
  color: #c45461;
  font-size: 22px;
  padding: 1em 20px;
  border-bottom: 1px solid #eee;
}

.bup .midashi dl {
  font-size: 18px;
  display: flex;
  padding: 1.5em 20px 0;
  margin: 0;
}

.bup .midashi dl dt {
  min-width: 3.5em;
  font-weight: 700;
}

.bup .midashi dl dd {
  margin: 0;
}

.bup .midashi dl dd span {
  display: inline-block;
  font-size: 13px;
  padding: 4px 15px;
  margin-left: 10px;
  background: #c45461;
  color: #fff;
  border-radius: 4px;
  font-family: sans-serif;
}

.bup .midashi dl .hide span {
  display: none;
}

.bup .midashi dl .hide.san span:nth-child(1) {
  display: inline-block;
}

.bup .midashi dl .hide.nishi span:nth-child(2) {
  display: inline-block;
}

.bup .midashi dl .hide.sannishi span {
  display: inline-block;
}

.bup .detail {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bup .detail dl {
  width: 48%;
  padding: 1em 20px;
  box-sizing: border-box;
  margin: 30px 0 0;
}

.bup .detail dl dt {
  margin-bottom: 1.5em;
  font-size: 18px;
  font-weight: 700;
}

.bup .detail dl dd {
  margin: 0;
}

.bup .detail dl dd li {
  list-style: disc;
  list-style-position: outside;
  margin-bottom: 1em;
}

.bup .biko {
  margin-top: 30px;
  padding: 10px 20px 0;
  border-top: 1px solid #eee;
  font-size: 13px;
}

/* Footer
---------------------------------------*/
footer {
  font-size: 15px;
  padding-top: 64px;
  border-top: #eee 1px solid;
}

footer .inner_wrap {
  overflow: hidden;
}

footer .wrap {
  float: left;
}

.info_tl {
  margin-bottom: 32px;
}

.info_tl span {
  border-bottom: 1px solid #e7bbc0;
  padding-bottom: 8px;
  font-size: 16px;
}

.info_tl:first-letter {
  color: #c45461;
  font-size: 16px;
}

footer .wrap p {
  line-height: 2;
  font-size: 13px;
}

footer .wrap ul {
  margin-top: 16px;
}

footer .wrap li {
  line-height: 2;
  margin-top: 8px;
}

footer .wrap li a {
  margin: 0;
  max-width: 240px;
}

footer .shop_sp {
  display: none;
}

.sitemap {
  float: right;
}

.sitemap nav {
  overflow: hidden;
}

.sitemap ul {
  float: left;
  width: 200px;
}

.sitemap ul:first-child {
  margin-right: 32px;
}

.sitemap li a {
  display: block;
  color: #35281b;
  border-bottom: 1px solid rgba(128, 103, 79, 0.2);
  padding: 10px 0;
  font-size: 13px;
  position: relative;
}

.sitemap li a:hover {
  border-bottom: 1px solid #e7bbc0;
  color: #c45461;
}

.sitemap li a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(128, 103, 79, 0.4);
  border-right: 1px solid rgba(128, 103, 79, 0.4);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.sitemap li a:hover:after {
  border-top: 1px solid #e7bbc0;
  border-right: 1px solid #e7bbc0;
  right: 0;
}

.copy {
  background: #80674f;
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 8px 0;
  margin-top: 64px;
}

/* Common
---------------------------------------*/
.inner_wrap {
  max-width: 1040px;
  margin: auto;
}

.pdd {
  padding: 80px 0;
}

/* Link */
.link a,
.link input {
  background: #80674f;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 8px 0;
  max-width: 320px;
  display: block;
  margin: auto;
  position: relative;
  border: none;
}

.link a::after,
.link input::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.link a:hover,
.link input:hover {
  background: #fff;
  color: #80674f;
}

.link a:hover:after,
.link input:hover:after {
  border-top: 1px solid #80674f;
  border-right: 1px solid #80674f;
}

/* Title */
.sc_tl {
  position: relative;
  font-family: "Julius Sans One", serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.sc_tl span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 1em 0 0;
  background-color: #fff;
  text-align: left;
}

.sc_tl::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e7bbc0;
}

.fl span:first-letter {
  color: #c45461;
}

.ctr_tl {
  font-family: "Julius Sans One", serif;
  font-size: 28px;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.wh {
  color: #fff;
}

/* Parts */
.eng {
  font-family: "EB Garamond", serif;
  font-style: italic;
  letter-spacing: 2px;
}

.eng02 {
  font-family: "Julius Sans One", serif;
  letter-spacing: 2px;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.indoor iframe {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
}

.sitemap li:nth-child(6)>a {
  border-bottom: none;
  padding-bottom: 0;
}

.sitemap li:nth-child(6) li a {
  border-bottom: none;
  padding-bottom: 5px;
  padding-left: 14px;
}

.sitemap li:nth-child(5) li:last-child a {
  border-bottom: 1px solid rgba(128, 103, 79, 0.2);
}

.lw_inner {
  margin-top: 40px;
}

/* style.css 1010 */
.info_tl:first-letter {
  color: inherit;
}

.eyec img {
  width: 100%;
}

.about_list .info_tl span {
  line-height: 2.6;
}

.about_list .info_tl {
  margin-bottom: 25px;
}

.abt .about_list .wrap.full {
  width: auto;
}

/* swiper
---------------------------------------*/
.swiper-container .swiper-slide {
  position: relative;
}

.swiper-container .swiper-slide .swiper-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*opacity: 0;
  transition: all 3s ease 0s;*/
}

.swiper-button-prev,
.swiper-button-next {
  width: 32px;
  height: 32px;
  margin-top: -16px;
}

.swiper-button-prev {
  background: url(../images/arrow01.png) no-repeat center center / contain;
}

.swiper-button-next {
  background: url(../images/arrow02.png) no-repeat center center / contain;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* クッキープラグイン */
#cookie-law-info-bar .cli-bar-container {
  font-size: 12px;
}

#cookie-law-info-bar .cli-plugin-button,
#cookie-law-info-bar .cli-plugin-button:visited,
#cookie-law-info-bar .medium.cli-plugin-button,
#cookie-law-info-bar .medium.cli-plugin-button:visited {
  font-size: 12px;
}

.home .mv {

}

.single-shop {}

.news.single-shop .inner_wrap {
  max-width: 100%;
  padding: 0 5%;
}


/* ニュースのリスト化 */
.list-style-disc {
  display: block;
  margin-bottom: 20px;
}
.list-style-disc ul {
  list-style-type: disc;
}
.list-style-disc ul li {
  list-style: disc;
  list-style-position: inside;
}