@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;800&display=swap");
/* ------------------------------------------------
 * Mixin for center - 要素中央配置する
 * @include f.center(xy); // 中央
 * @include f.center(x);  // 横中央
 * @include f.center(y);  // 縦中央
 ------------------------------------------------ */
/* ------------------------------------------------

 * transition - フェードイン効果を追加する
 * @include f.transition;

 ------------------------------------------------ */
/* ------------------------------------------------

 * opacity - 透過効果を追加する
 * @include f.opacity;

 ------------------------------------------------ */
/* ------------------------------------------------

 * font-family - フォントの指定をする
 * @include f.font(jp); // Noto Serif Japanese Regular 400

 ------------------------------------------------ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
code, img, small, strong, var,
b, i, dl, dt, dd, ol, ul, li,
form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure,
footer, header, menu, nav, section,
audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
  -webkit-text-size-adjust: none;
}

footer, header, menu, nav, section, aside, figure {
  display: block;
}

.ul,
.ol {
  list-style: none;
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

a {
  text-decoration: none;
  word-break: break-all;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  outline: none;
  text-align: inherit;
  text-transform: inherit;
  -ms-overflow-style: none;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

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

body.is-menuopen {
  overflow: hidden;
}
body.is-menuopen #header .header__inner .menu-btn .menu-line {
  background-color: #000;
}
body.is-menuopen #header .header__inner .menu-btn .menu-line:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}
body.is-menuopen #header .header__inner .menu-btn .menu-line:nth-of-type(2) {
  opacity: 0;
}
body.is-menuopen #header .header__inner .menu-btn .menu-line:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}
body.is-menuopen #header .header__inner .menu-body {
  visibility: visible;
  opacity: 1;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
#header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 70px;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner {
    padding: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .logo {
    display: block;
  }
}
#header .header__inner .logo a {
  display: block;
  width: 461px;
  height: 29px;
}
#header .header__inner .logo a img[src$=".svg"] {
  width: 461px;
  height: 29px;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .logo a {
    width: 200px;
    height: auto;
  }
  #header .header__inner .logo a img[src$=".svg"] {
    width: 200px;
    height: auto;
  }
}
#header .header__inner .menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 15px;
  z-index: 9998;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .menu-btn {
    display: block;
  }
}
#header .header__inner .menu-btn .menu-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#header .header__inner .menu-btn .menu-line:nth-of-type(1) {
  top: 0;
}
#header .header__inner .menu-btn .menu-line:nth-of-type(2) {
  top: 7px;
}
#header .header__inner .menu-btn .menu-line:nth-of-type(3) {
  top: 14px;
}
#header .header__inner .menu-body {
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .menu-body {
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-fill-available;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: -1;
  }
}
#header .header__inner .menu-body .menu-body__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .menu-body .menu-body__inner {
    display: block;
  }
}
#header .header__inner .menu-body .menu-body__inner .menulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .menu-body .menu-body__inner .menulist {
    display: block;
  }
}
#header .header__inner .menu-body .menu-body__inner .menulist li {
  text-align: center;
}
#header .header__inner .menu-body .menu-body__inner .menulist li:not(:nth-child(1)) {
  margin-left: 30px;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .menu-body .menu-body__inner .menulist li:not(:nth-child(1)) {
    margin: 30px 0 0;
  }
}
#header .header__inner .menu-body .menu-body__inner .menulist li a {
  position: relative;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#header .header__inner .menu-body .menu-body__inner .menulist li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #587a0a;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#header .header__inner .menu-body .menu-body__inner .menulist li a:hover {
  color: #587a0a;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .menu-body .menu-body__inner .menulist li a:hover {
    color: #000;
  }
}
#header .header__inner .menu-body .menu-body__inner .menulist li a:hover:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .menu-body .menu-body__inner .menulist li a:hover:before {
    width: 0;
  }
}

#footer {
  background-color: #587a0a;
}
#footer .footer__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px;
}
#footer .footer__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media only screen and (max-width: 1024px) {
  #footer .footer__inner ul {
    display: block;
  }
}
#footer .footer__inner ul li {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #footer .footer__inner ul li {
    font-size: 9px;
  }
}
#footer .footer__inner ul li a {
  color: #fff;
}
#footer .footer__inner ul li a:hover {
  opacity: 0.5;
}
#footer .footer__inner p {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #footer .footer__inner p {
    font-size: 9px;
  }
}
#footer .footer__inner p a {
  color: #fff;
}
#footer .footer__inner p a:hover {
  opacity: 0.5;
}

body {
  width: 100%;
  height: 100%;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 12px;
  }
}

#main,
#container,
#footer {
  width: 100%;
}

#main {
  position: relative;
}

a {
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* -----------------------------------
 * 共通パーツ
 ----------------------------------- */
/* 表示切り替え */
@media only screen and (max-width: 767px) {
  .display-pc {
    display: none;
  }
}

.display-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .display-sp {
    display: block;
  }
}

/* 改行切り替え */
br.sp--block {
  display: none;
}
@media only screen and (max-width: 767px) {
  br.sp--block {
    display: block;
  }
}
br.ipad--block {
  display: none;
}
@media only screen and (max-width: 1024px) {
  br.ipad--block {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  br.ipad--block {
    display: none;
  }
}
br.pc--block {
  display: block;
}
@media only screen and (max-width: 767px) {
  br.pc--block {
    display: none;
  }
}

/* -----------------------------------
 * テキスト
 ----------------------------------- */
.text__block .text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .text__block .text p {
    font-size: 12px;
  }
}
.text__block .text p.mail a {
  display: inline-block;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .text__block .text p.mail a {
    font-size: 12px;
  }
}
.text__block .text p.mail a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.text__block .text p.mail a:hover:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .text__block .text p.mail a:hover:before {
    width: 0;
  }
}
.text__block .textlist li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .text__block .textlist li {
    font-size: 12px;
  }
}
.text__block .textlist li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .text__block .textlist li a {
    font-size: 12px;
  }
}
.text__block .textlist li a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  .text__block .textlist li a:hover {
    opacity: 1;
  }
}
.text__block.color-white .text p {
  color: #fff;
}
.text__block.color-white .textlist li {
  color: #fff;
}
.text__block.color-white .textlist li a {
  color: #fff;
}

/* -----------------------------------
 * タイトル
 ----------------------------------- */
.section-title {
  margin-bottom: 70px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  color: #587a0a;
}
@media only screen and (max-width: 1024px) {
  .section-title {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.section-title.color-white {
  color: #587a0a;
}

/* -----------------------------------
 * タイトル
 ----------------------------------- */
.btn-style__border {
  display: block;
  position: relative;
  width: 400px;
  padding: 20px 40px;
  background-color: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  border: 1px solid #000;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .btn-style__border {
    padding: 15px 0;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-style__border {
    width: 100%;
  }
}
.btn-style__border:hover {
  background-color: #587a0a;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .btn-style__border:hover {
    background-color: none;
    color: #fff;
  }
}

/* -----------------------------------
 * 構成パーツ
 ----------------------------------- */
.content--m {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 120px;
}
@media only screen and (max-width: 1024px) {
  .content--m {
    max-width: 100%;
    width: auto;
    margin: 0;
    padding: 40px 16px;
  }
}

/* -----------------------------------
 * 注意書き
 ----------------------------------- */
.warning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999;
}
.warning .warning--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .warning .warning--item {
    width: 60%;
  }
}
.warning .warning--item .text__block p {
  color: #fff;
}
.warning .warning--item img {
  display: block;
  margin: 0 40px 0 0;
  width: 130px;
}
.warning.is-show {
  display: block;
}

/* -----------------------------------
 * fv
 ----------------------------------- */
#fv {
  position: relative;
  margin-top: 103px;
}
@media only screen and (max-width: 1024px) {
  #fv {
    margin-top: 50px;
  }
}
#fv:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: #FAF7F2;
  z-index: -1;
}
#fv .fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: calc(85vh - 103px);
  margin: 0 auto;
  background-color: #fff;
}
#fv .fv__inner .fv__logo {
  position: absolute;
  width: 200px;
  z-index: 100;
}
@media only screen and (max-width: 1024px) {
  #fv .fv__inner .fv__logo {
    width: 150px;
    height: 102px;
  }
}
#fv .fv__inner video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  #fv .fv__inner {
    width: calc(100% - 32px);
    height: calc(80vh - 50px);
  }
}

/* -----------------------------------
 * concept
 ----------------------------------- */
#concept {
  position: relative;
  width: 100%;
  background-color: #FAF7F2;
}
#concept .concept__inner {
  width: 900px;
  margin: 0 auto;
  padding: 110px 0;
}
@media only screen and (max-width: 1024px) {
  #concept .concept__inner {
    width: 100%;
    margin: 0;
    padding: 40px 16px;
  }
}
#concept .concept__inner .concept-img__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  #concept .concept__inner .concept-img__block {
    display: block;
    margin-bottom: 0;
  }
}
#concept .concept__inner .concept-img__block .item-img {
  width: 440px;
}
@media only screen and (max-width: 1024px) {
  #concept .concept__inner .concept-img__block .item-img {
    width: 100%;
  }
}
#concept .concept__inner .concept-img__block .heading {
  margin-left: auto;
  color: #587a0a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #concept .concept__inner .concept-img__block .heading {
    font-size: 16px;
    margin: 16px 0;
  }
}

/* -----------------------------------
 * 私たちについて
 ----------------------------------- */
#share {
  position: relative;
  width: 100%;
  background-color: #FAF7F2;
  /*.share-bg {
  	position: relative;
  	width: 100%;
  	height: 400px;
  	background: url(./img/top/share-salon_img_pc.jpg) no-repeat center;
  	background-size: cover;
  	@include f.MQ(L) {
  		height: auto;
  		padding: 29.103% 0;
  		background: url(./img/top/share-salon_img_sp.jpg) no-repeat center;
  		background-size: cover;
  	}
  }*/
}
#share .share__inner {
  width: 900px;
  margin: 0 auto;
  padding: 110px 0;
}
@media only screen and (max-width: 1024px) {
  #share .share__inner {
    width: 100%;
    margin: 0;
    padding: 40px 16px;
  }
}
#share .share__inner .sharelist__block .sharelist__item:not(:nth-child(1)) {
  margin-top: 24px;
}
#share .share__inner .sharelist__block .sharelist__item .heading {
  margin-bottom: 16px;
  color: #587a0a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #share .share__inner .sharelist__block .sharelist__item .heading {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
#share .share__inner .sharelist__block .sharelist__item .sharelist__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #share .share__inner .sharelist__block .sharelist__item .sharelist__block {
    display: block;
  }
}
#share .share__inner .sharelist__block .sharelist__item .sharelist__block:not(:nth-child(1)) {
  margin-left: auto;
}
#share .share__inner .sharelist__block .sharelist__item .sharelist__block .sharelist {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #share .share__inner .sharelist__block .sharelist__item .sharelist__block .sharelist {
    width: 100%;
  }
}
#share .share__inner .sharelist__block .sharelist__item .sharelist__block .sharelist li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #share .share__inner .sharelist__block .sharelist__item .sharelist__block .sharelist li {
    font-size: 12px;
  }
}

/* -----------------------------------
 * 主な活動
 ----------------------------------- */
#shop {
  position: relative;
  width: 100%;
}
#shop .shop__inner {
  width: 1300px;
  margin: 0 auto;
  padding: 110px 0;
}
@media only screen and (max-width: 1024px) {
  #shop .shop__inner {
    width: 100%;
    margin: 0;
    padding: 40px 16px;
  }
}
#shop .shop__inner div.text {
  text-align: center;
  margin-bottom: 50px;
}
#shop .shop__inner .shop-imglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  #shop .shop__inner .shop-imglist {
    display: block;
  }
}
#shop .shop__inner .shop-imglist .item-img {
  width: 100%;
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
}
#shop .shop__inner .shop-imglist .item-img .text_m {
  margin: 10px 0 10px;
  color: #587a0a;
  letter-spacing: 0.1em;
  line-height: 2;
}
#shop .shop__inner .shop-imglist .item-img .text {
  margin: 10px 0 30px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  #shop .shop__inner .shop-imglist .item-img {
    width: 100%;
  }
}
#shop .shop__inner .shop-imglist .item-img:not(:nth-child(1)) {
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  #shop .shop__inner .shop-imglist .item-img:not(:nth-child(1)) {
    margin: 16px 0 0;
  }
}

/* -----------------------------------
 * 商品について
 ----------------------------------- */
#product {
  position: relative;
  width: 100%;
  background: url(./img/top/product_bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
  /*.share-bg {
  	position: relative;
  	width: 100%;
  	height: 400px;
  	background: url(./img/top/share-salon_img_pc.jpg) no-repeat center;
  	background-size: cover;
  	@include f.MQ(L) {
  		height: auto;
  		padding: 29.103% 0;
  		background: url(./img/top/share-salon_img_sp.jpg) no-repeat center;
  		background-size: cover;
  	}
  }*/
}
#product .share__inner {
  width: 900px;
  margin: 0 auto;
  padding: 110px 0;
}
@media only screen and (max-width: 1024px) {
  #product .share__inner {
    width: 100%;
    margin: 0;
    padding: 40px 16px;
  }
}
#product .share__inner .section-title {
  color: #fff;
}
#product .share__inner .sharelist__block .sharelist__item:not(:nth-child(1)) {
  margin-top: 24px;
}
#product .share__inner .sharelist__block .sharelist__item .heading {
  margin-bottom: 16px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #product .share__inner .sharelist__block .sharelist__item .heading {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
#product .share__inner .sharelist__block .sharelist__item .sharelist__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #product .share__inner .sharelist__block .sharelist__item .sharelist__block {
    display: block;
  }
}
#product .share__inner .sharelist__block .sharelist__item .sharelist__block:not(:nth-child(1)) {
  margin-left: auto;
}
#product .share__inner .sharelist__block .sharelist__item .sharelist__block .sharelist {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #product .share__inner .sharelist__block .sharelist__item .sharelist__block .sharelist {
    width: 100%;
  }
}
#product .share__inner .sharelist__block .sharelist__item .sharelist__block .sharelist li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #product .share__inner .sharelist__block .sharelist__item .sharelist__block .sharelist li {
    font-size: 12px;
  }
}

/* -----------------------------------
 * contact
 ----------------------------------- */
#contact {
  position: relative;
  width: 100%;
}
#contact .contact__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 120px;
}
@media only screen and (max-width: 1024px) {
  #contact .contact__inner {
    max-width: 100%;
    width: auto;
    margin: 0;
    padding: 40px 16px;
  }
}
#contact .contact__inner .text__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .contact__inner .text__block .text p {
  text-align: center;
}
#contact .contact__inner form {
  margin-top: 50px;
}
@media only screen and (max-width: 1024px) {
  #contact .contact__inner form {
    margin-top: 40px;
  }
}
#contact .contact__inner form .contactform__block dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
#contact .contact__inner form .contactform__block dl:not(:nth-child(1)) {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  #contact .contact__inner form .contactform__block dl {
    margin-top: 16px;
  }
}
#contact .contact__inner form .contactform__block dl dt,
#contact .contact__inner form .contactform__block dl dd {
  padding-bottom: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #contact .contact__inner form .contactform__block dl dt,
  #contact .contact__inner form .contactform__block dl dd {
    font-size: 12px;
  }
}
#contact .contact__inner form .contactform__block dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 230px;
  margin-rigth: 40px;
  border-bottom: 2px solid #000;
}
#contact .contact__inner form .contactform__block dl dt .hissu {
  display: inline-block;
  margin-left: 10px;
  color: #FF0000;
}
#contact .contact__inner form .contactform__block dl dd {
  width: calc(100% - 270px);
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 767px) {
  #contact .contact__inner form .contactform__block dl dd {
    width: 100%;
  }
}
#contact .contact__inner form .contactform__block dl dd input[type=text],
#contact .contact__inner form .contactform__block dl dd input[type=email] {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding-left: 5px;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  vertical-align: middle;
  -webkit-text-fill-color: #000;
}
@media only screen and (max-width: 1024px) {
  #contact .contact__inner form .contactform__block dl dd input[type=text],
  #contact .contact__inner form .contactform__block dl dd input[type=email] {
    font-size: 12px;
  }
}
#contact .contact__inner form .contactform__block dl dd input[type=text]:-webkit-autofill,
#contact .contact__inner form .contactform__block dl dd input[type=email]:-webkit-autofill {
  color: #000 !important;
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}
#contact .contact__inner form .contactform__block dl dd textarea {
  width: 100%;
  height: 200px;
  padding: 5px;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  -webkit-text-fill-color: #000;
}
@media only screen and (max-width: 1024px) {
  #contact .contact__inner form .contactform__block dl dd textarea {
    font-size: 12px;
  }
}
#contact .contact__inner form .contactform__block dl dd textarea:-webkit-autofill {
  color: #000 !important;
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}
#contact .contact__inner form .contactform__block dl.contact-contacts dt {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#contact .contact__inner form .btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 56px;
}
@media only screen and (max-width: 1024px) {
  #contact .contact__inner form .btn__wrap {
    margin-top: 40px;
  }
}

/* -----------------------------------
 * イベントリンク
 ----------------------------------- */
#sns {
  position: relative;
  width: 100%;
}
#sns .shop__inner {
  width: 1000px;
  margin: 0 auto;
  padding: 110px 0;
}
@media only screen and (max-width: 1024px) {
  #sns .shop__inner {
    width: 100%;
    margin: 0;
    padding: 40px 16px;
  }
}
#sns .shop__inner .shop-imglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #sns .shop__inner .shop-imglist {
    display: block;
  }
}
#sns .shop__inner .shop-imglist .item-img {
  width: 100%;
}
#sns .shop__inner .shop-imglist .item-img:hover {
  opacity: 0.5;
}
#sns .shop__inner .shop-imglist .item-img .text {
  margin: 10px 0 30px;
}
@media only screen and (max-width: 767px) {
  #sns .shop__inner .shop-imglist .item-img {
    width: 100%;
  }
}
#sns .shop__inner .shop-imglist .item-img:not(:nth-child(1)) {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  #sns .shop__inner .shop-imglist .item-img:not(:nth-child(1)) {
    margin: 16px 0 0;
  }
}

/* -----------------------------------
 * privacy
 ----------------------------------- */
.page-privacy .privacy__inner {
  width: 900px;
  margin: 0 auto;
  padding: 110px 0;
}
@media only screen and (max-width: 1024px) {
  .page-privacy .privacy__inner {
    width: 100%;
    margin: 0;
    padding: 107px 16px 40px;
  }
}
.page-privacy .privacy__inner .privacylist__block .privacylist__item:not(:nth-child(1)) {
  margin-top: 24px;
}
.page-privacy .privacy__inner .privacylist__block .privacylist__item .heading {
  margin-bottom: 16px;
  color: #587a0a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .page-privacy .privacy__inner .privacylist__block .privacylist__item .heading {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
.page-privacy .btn__wrap {
  margin-top: 56px;
}
@media only screen and (max-width: 1024px) {
  .page-privacy .btn__wrap {
    margin-top: 40px;
  }
}
.page-privacy .btn__wrap .btn-style__border {
  margin: 0 auto;
  color: #000;
  border: 1px solid #000;
}
.page-privacy .btn__wrap .btn-style__border:hover {
  background-color: #000;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .page-privacy .btn__wrap .btn-style__border:hover {
    color: #000;
    border: 1px solid #000;
  }
}

/* -----------------------------------
 * thanks
 ----------------------------------- */
#page-thanks {
  min-height: 100vh;
}
#page-thanks #main {
  min-height: 100vh;
}
#page-thanks #container {
  padding-top: 101px;
  height: calc(100vh - 56px);
}
@media only screen and (max-width: 1024px) {
  #page-thanks #container {
    padding-top: 67px;
    height: calc(100vh - 52px);
  }
}

.page-thanks .text__block {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .page-thanks .text__block {
    text-align: left;
  }
}
.page-thanks .btn__wrap {
  margin-top: 56px;
}
@media only screen and (max-width: 1024px) {
  .page-thanks .btn__wrap {
    margin-top: 40px;
  }
}
.page-thanks .btn__wrap .btn-style__border {
  margin: 0 auto;
  color: #000;
  border: 1px solid #000;
}
.page-thanks .btn__wrap .btn-style__border:hover {
  background-color: #000;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .page-thanks .btn__wrap .btn-style__border:hover {
    color: #000;
    border: 1px solid #000;
  }
}

/* -----------------------------------
 * errow
 ----------------------------------- */
#page-error {
  min-height: 100vh;
}
#page-error #main {
  min-height: 100vh;
}
#page-error #container {
  padding-top: 101px;
  height: calc(100vh - 56px);
}
@media only screen and (max-width: 1024px) {
  #page-error #container {
    padding-top: 67px;
    height: calc(100vh - 52px);
  }
}

.page-error .text__block {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .page-error .text__block {
    text-align: left;
  }
}
.page-error .text__block .error_messe {
  color: #FF0000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .page-error .text__block .error_messe {
    font-size: 12px;
  }
}
.page-error .btn__wrap {
  margin-top: 56px;
}
@media only screen and (max-width: 1024px) {
  .page-error .btn__wrap {
    margin-top: 40px;
  }
}
.page-error .btn__wrap .btn-style__border {
  margin: 0 auto;
  color: #000;
  border: 1px solid #000;
}
.page-error .btn__wrap .btn-style__border:hover {
  background-color: #000;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .page-error .btn__wrap .btn-style__border:hover {
    color: #000;
    border: 1px solid #000;
  }
}