/* Scss Document */
.text-link:hover {
  text-decoration: underline;
}

.img-parallax {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.img-parallax img {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0) !important;
}

.box-parallax {
  position: relative;
}

@media screen and (max-width: 767px) {
  .box-parallax .img-parallax-pc {
    position: relative;
  }

  .box-parallax .img-parallax-pc img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.padd_wrap {
  padding-left: 8%;
  padding-right: 8%;
}

@media screen and (min-width: 768px) {
  .txt-vertical-pc {
    cursor: vertical-text;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    word-wrap: break-word;
  }

  .txt-vertical-pc .int {
    writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -moz-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    display: inline-block;
    text-align: center;
    line-height: 1;
  }

  .txt-vertical-pc .txt-latin {
    direction: rtl;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: sideways-right;
    -o-text-orientation: sideways-right;
    -ms-text-orientation: upright;
    -ms-text-orientation: sideways-right;
    -moz-text-orientation: sideways-right;
    -webkit-text-orientation: sideways-right;
  }

  .txt-vertical-pc .txt-dot {
    cursor: vertical-text;
    direction: ltr;
    writing-mode: vertical-lr;
    -o-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    -moz-writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
    text-orientation: sideways-right;
    -o-text-orientation: sideways-right;
    -ms-text-orientation: upright;
    -ms-text-orientation: sideways-right;
    -moz-text-orientation: sideways-right;
    -webkit-text-orientation: sideways-right;
    line-height: 1;
    position: relative;
    left: -2px;
  }

  .none_hover {
    pointer-events: none;
  }

  .sp {
    display: none !important;
  }

  .img-parallax-pc {
    clip: rect(0, auto, auto, 0);
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
  }

  .img-parallax-pc img {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    object-fit: cover;
    z-index: 0;
    transform: translateZ(0) !important;
  }
}

.ham-img {
  cursor: pointer;
  position: fixed;
  z-index: 1001;
  top: 0px;
  right: 0px;
  width: 90px;
}

.ham-img img {
  width: 100%;
  height: auto;
}

.ham-img img.on {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  opacity: 0;
}

.ham-img.is-active img {
  opacity: 0;
}

.ham-img.is-active img.on {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .ham-img {
    width: 128px;
    top: 0;
    right: 0;
  }
}

.hamburger {
  position: relative;
  z-index: 1001;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #000;
  padding-bottom: 15px;
}

.hamburger:before {
  content: '';
  width: 53%;
  border-top: 1px solid;
  height: 1px;
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.hamburger:after {
  content: 'MENU';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  text-align: center;
  letter-spacing: 0.27em;
  line-height: 1;
}

.hamburger span {
  height: 19px;
  width: 53%;
  position: relative;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.hamburger span:before,
.hamburger span:after {
  content: '';
  border-top: 1px solid;
  width: 100%;
  position: absolute;
  top: 0px;
  margin: 0 auto;
  display: block;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.hamburger span:after {
  top: auto;
  bottom: 0;
}

.hamburger.is-active {
  background-color: #000;
  color: #fff;
}

.hamburger.is-active:after {
  content: 'CLOSE';
}

.hamburger.is-active:before {
  opacity: 0;
}

.hamburger.is-active span:before {
  transform: translate3d(0, 11px, 0) rotate(20deg);
}

.hamburger.is-active span:after {
  transform: translate3d(0, -7px, 0) rotate(-20deg);
}

@media screen and (min-width: 768px) {
  .hamburger:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
}

.fc-form [class^='error'] {
  position: static;
}

.f_cl1 {
  color: #92845a;
}

.txt_r {
  text-align: right;
}

i {
  font-style: normal;
}

/*
::-webkit-scrollbar {
width:4px;


}
::-webkit-scrollbar-thumb {
background:#999	;
}
::-webkit-scrollbar * {
background:rgba(0,0,0,0);
}
*/
.d-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brk-in {
  display: inline-block;
}

.box-shadown {
  box-shadow: 2px 5px 13px -5px rgba(0, 0, 0, 0.58);
  -webkit-box-shadow: 2px 5px 13px -5px rgba(0, 0, 0, 0.58);
  -moz-box-shadow: 2px 5px 13px -5px rgba(0, 0, 0, 0.58);
}

.img-shadown {
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.35);
}

.sns-banner .btn {
  margin-bottom: 20px;
}

.sns-banner .btn a {
  color: #fff;
  text-align: center;
  display: block;
  border: 1px solid;
  letter-spacing: 0.08em;
  font-size: 18px;
  padding: 13px 0 13px 40px;
  position: relative;
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 400;
}

.sns-banner .btn a img {
  width: 33px;
  height: auto;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .sns-banner .btn a {
    font-size: 17px;
    padding: 18px 0 19px 40px;
    position: relative;
  }

  .sns-banner .btn a img {
    width: 41px;
    left: 21px;
  }

  .sns-banner .btn a:hover {
    opacity: 0.7;
  }
}

header .btn-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  z-index: 9;
  cursor: pointer;
}

header .btn-close:hover {
  opacity: 0.8;
}

header .btn-close img {
  width: 100%;
  height: auto;
}

section .padd_wrap {
  padding-left: 5%;
  padding-right: 5%;
}

section .wrap {
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
}

@media screen and (min-width: 768px) {
  section .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.wrap>* {
  box-sizing: border-box;
}

main {
  position: relative;
}

#navigation {
  background: url("../img/shared/bg1.jpg") repeat center 0;
  color: #fff;
  text-align: left;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#navigation .group {
  background: url("../img/shared/hd_p_sp.jpg") no-repeat center bottom/100%;
  padding: 40px 5% 77vw;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s;
  transition-delay: 0.3s;
}

#navigation .tog-nav {
  gap: 0 20px;
  width: 100%;
  line-height: 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 320px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#navigation .tog-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

#navigation .tog-nav li a span {
  letter-spacing: 0.05em;
  font-size: 18px;
  display: block;
  padding: 15px 0;
  line-height: 30px;
  position: relative;
  z-index: 1;
}

#navigation .tog-nav li a span:before {
  width: 30px;
  height: 30px;
  background: url("../img/shared/bg2.jpg") repeat 0 0;
  content: '';
  position: absolute;
  top: 64%;
  left: 42%;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

#navigation .tog-nav li a.active span:before,
#navigation .tog-nav li a:hover span:before {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  #navigation:before {
    content: '';
    background: url("../img/shared/hd_bg.jpg") no-repeat center/cover;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    z-index: 99;
  }

  #navigation .group {
    background: none;
    padding: 100px 0 100px 50%;
  }

  #navigation .tog-nav {
    width: 385px;
    margin: 0 auto;
    gap: 0 20px;
    line-height: 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 320px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #navigation .tog-nav li a span {
    font-size: 17px;
    padding: 14px 0 15px;
  }

  #navigation .tog-nav li a span:before {
    width: 26px;
    height: 26px;
    top: 37px;
    left: 42%;
  }

  #navigation .tog-nav li.sub ul {
    padding: 14px 0 0 7px;
    position: relative;
  }

  #navigation .tog-nav li.sub ul:before {
    content: '';
    position: absolute;
    left: 3px;
    right: 12px;
    top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  #navigation .tog-nav li.sub li {
    margin-right: 7px;
  }

  #navigation .tog-nav li.sub li:last-child {
    margin-right: 0;
  }

  #navigation .tog-nav li.sub li a span {
    padding-top: 16px;
    position: relative;
  }

  #navigation .tog-nav li.sub li a span:before {
    content: '';
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    top: -1px;
    left: 50%;
    height: 12px;
    position: absolute;
  }

  #navigation .contact {
    text-align: center;
  }

  #navigation .contact .bnr-shared {
    width: 340px;
    margin: 40px auto 35px;
  }

  #navigation .contact .bnr-shared a {
    font-size: 18px;
    line-height: 51px;
  }

  #navigation .contact .lang {
    position: relative;
    width: 125px;
    background: url("../img/shared/boder_bg.png") repeat center;
    margin: 0 auto 57px;
    display: flex;
    justify-content: center;
    padding: 1px;
  }

  #navigation .contact .lang:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: url("../img/shared/boder_bg.png") 0 0 repeat;
  }

  #navigation .contact .lang li {
    width: 61px;
  }

  #navigation .contact .lang li a {
    font-size: 17px;
    text-align: center;
    display: block;
    background: url("../img/shared/lang_bg.jpg") 0 0 repeat;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 32px;
  }

  #navigation .contact .lang li a:hover {
    background: url("../img/shared/lang_bg_on.jpg") 0 0 repeat;
  }

  #navigation .contact .tel {
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.13em;
    position: relative;
    z-index: 1;
    color: #000;
    padding: 14px 0 28px;
  }

  #navigation .contact .tel:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url("../img/shared/bg3.jpg") repeat center 0;
    opacity: 0.7;
  }

  #navigation .contact .tel .num {
    justify-content: center;
    align-items: flex-end;
    display: flex;
    font-size: 31px;
    letter-spacing: 0.05em;
    gap: 4px;
    line-height: 1;
  }

  #navigation .contact .tel .num img {
    width: 26px;
    height: auto;
  }
}

.ft-active .pagetop {
  opacity: 0;
}

.navOpen header .hd-pc .hd-fixed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.navOpen .pagetop {
  opacity: 0;
}

.navOpen #navigation {
  opacity: 1;
  pointer-events: auto;
}

.navOpen #navigation .group {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .navOpen .ft-bnr-fixed li:not(:last-child) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

header {
  position: relative;
  color: #fff;
}

header:before {
  content: '';
  background: url("../img/shared/h_bg_sp.png") no-repeat center 0/100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45vw;
  z-index: 5;
}

header h1 {
  color: #dadada;
  line-height: 1.4;
  font-size: 10px;
  position: absolute;
  left: 5%;
  top: 20px;
  right: 141px;
  text-align: left;
  z-index: 100;
}

header .logo {
  text-align: center;
  position: absolute;
  top: 23vw;
  left: 25%;
  right: 25%;
  z-index: 90;
}

header .logo img {
  width: 100%;
  height: auto;
}

header .hd-lang,
header .hd-pc .lang {
  position: fixed;
  top: 20px;
  right: 3%;
  display: flex;
  z-index: 10;
  background: url("../img/shared/boder_bg.png") repeat 0 0;
  padding: 1px;
}

header .hd-lang:before,
header .hd-pc .lang:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: url("../img/shared/boder_bg.png") repeat 0 0;
}

header .hd-lang li,
header .hd-pc .lang li {
  width: 61px;
}

header .hd-lang li a,
header .hd-pc .lang li a {
  font-size: 14px;
  text-align: center;
  display: block;
  background: url("../img/shared/lang_bg.jpg") 0 0 repeat;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 45px;
}

header .hd-lang li a:hover,
header .hd-lang li a.active,
header .hd-pc .lang li a:hover,
header .hd-pc .lang li a.active {
  background: url("../img/shared/lang_bg_on.jpg") 0 0 repeat;
}

header .hd-lang li:nth-child(1) a,
header .hd-pc .lang li:nth-child(1) a {
  background: url("../img/shared/lang_bg_on.jpg") 0 0 repeat;
}

@media screen and (min-width: 768px) {

  header .hd-lang,
  header .hd-pc .lang {
    position: absolute;
  }

  header:before {
    background: url("../img/shared/h_bg.png") no-repeat center 0;
    height: 233px;
  }

  header h1 {
    line-height: 19px;
    font-size: 12px;
    left: 70px;
    top: auto;
    bottom: 30px;
    right: auto;
    text-align: left;
  }

  header h1.ext {
    bottom: auto;
    left: auto;
    right: calc(50% - 562px);
    top: 337px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  header h1.ext {
    right: 20px;
  }
}

@media screen and (min-width: 768px) {
  header .logo {
    top: 43px;
    left: calc(50% - 136px);
    right: calc(50% - 136px);
  }

  header .hd-lang,
  header .hd-pc .lang {
    top: 128px;
    right: auto;
    left: calc(50% + 145px);
  }

  header .hd-lang li,
  header .hd-pc .lang li {
    width: 61px;
  }

  header .hd-lang li a,
  header .hd-pc .lang li a {
    font-size: 17px;
    line-height: 32px;
  }

  header .hd-pc .tel {
    text-align: center;
    font-size: 15px;
    width: 320px;
    position: absolute;
    top: 33px;
    right: 0;
    z-index: 5;
    line-height: 32px;
  }

  header .hd-pc .tel .num {
    justify-content: center;
    align-items: flex-end;
    display: flex;
    font-size: 31px;
    letter-spacing: 0.05em;
    gap: 4px;
    line-height: 1;
  }

  header .hd-pc .tel .num img {
    width: 26px;
    height: auto;
  }

  header .hd-pc .bnr-access {
    position: absolute;
    top: 116px;
    right: 94px;
    z-index: 5;
    width: auto;
    background: none;
    padding: 0;
  }

  header .hd-pc .bnr-access a {
    border: none;
    display: flex;
    background: url("../img/shared/circle.png") no-repeat center;
    width: 117px;
    height: 117px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 23px;
    padding: 0;
  }

  header .hd-pc .bnr-access a:before {
    top: 61px;
    right: 50px;
  }

  header .hd-pc .bnr-access a:hover:before {
    right: 40px !important;
  }

  header .hd-pc .tog-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 231px;
    justify-content: center;
    gap: 22px;
    z-index: 4;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  header .hd-pc .tog-nav {
    top: 270px;
  }
}

@media screen and (min-width: 768px) {
  header .hd-pc .tog-nav li a span {
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
  }

  header .hd-pc .tog-nav li a span:before {
    position: absolute;
    background: url(../img/shared/bg2.jpg) repeat 0 0;
    transform: rotate(45deg);
    content: '';
    width: 26px;
    height: 26px;
    top: 2px;
    left: calc(50% - 15px);
    z-index: -1;
    transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -webkit-transition: opacity .3s ease;
    opacity: 0;
  }

  header .hd-pc .tog-nav li a:hover span:before,
  header .hd-pc .tog-nav li a.active span:before {
    opacity: 1;
  }

  header .hd-pc .hd-fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 508px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  header .hd-pc .hd-fixed .lang {
    left: auto;
    top: 30px;
    right: 0;
  }

  header .hd-pc .hd-fixed .h-tel {
    position: relative;
    font-size: 14px;
    letter-spacing: 0.13em;
    color: #fff;
    padding: 29px 0 0 25px;
  }

  header .hd-pc .hd-fixed .h-tel a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  header .hd-pc .hd-fixed .h-tel img {
    width: 26px;
    height: auto;
    margin: 0 2px 0 10px;
  }

  header .hd-pc .hd-fixed .h-tel .num {
    font-size: 30px;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  header .hd-pc .hd-fixed .h-tel {
    padding-top: 0;
    width: 295px;
    text-align: center;
  }

  header .hd-pc .hd-fixed .h-tel .t {
    width: 100%;
    text-align: center;
  }
}

footer {
  padding: 10vw 0% 60px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #d2d2d2;
}

footer .shopinfo {
  padding: 0 5% 10vw;
  margin-bottom: 10vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}

footer .shopinfo .logo {
  width: 59%;
  margin: 0 auto;
}

footer .shopinfo .logo img {
  width: 100%;
  height: auto;
}

footer .shopinfo .tel {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 10px;
  width: 80%;
  margin: 20px auto;
}

footer .shopinfo .tel .num {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  gap: 5px;
  font-size: 26px;
}

footer .shopinfo .tel .num img {
  width: 25px;
  height: auto;
}

footer .shopinfo .tbl-info .link img {
  width: 17px;
  height: auto;
  margin: 0 4px 3px 0;
}

footer .shopinfo .tbl-info dl {
  display: table;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .shopinfo .tbl-info dl dt,
footer .shopinfo .tbl-info dl dd {
  display: table-cell;
  padding: 10px 0;
  text-align: left;
}

footer .shopinfo .tbl-info dl dt {
  width: 84px;
}

footer .socialbuttons {
  padding: 30px 0 10px;
}

footer .btn-copy a span {
  display: inline-block;
  letter-spacing: 0.05em;
}

footer .btn-copy a:before {
  content: '';
  background: url("../img/shared/copy.png") no-repeat 0 bottom/100%;
  display: inline-block;
  width: 20px;
  height: 26px;
  margin-right: 7px;
}

footer .cookies_link a {
  color: #b6aca5;
  font-size: 12px;
}

footer .cookies_link a span {
  letter-spacing: 0.05em;
  box-shadow: 0 1px 0 0 #929292;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 95px 0px 0;
    text-align: left;
    font-size: 13px;
    line-height: 14px;
  }

  footer .wrap {
    padding-bottom: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
  }

  footer .shopinfo {
    padding: 0 0 96px;
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.05em;
  }

  footer .shopinfo .logo {
    width: 226px;
    margin: 0 auto 8px;
  }

  footer .shopinfo .tel {
    padding: 12px 0 25px;
    width: 336px;
    margin: 26px auto 20px;
    font-size: 15px;
    letter-spacing: 0.13em;
    line-height: 30px;
  }

  footer .shopinfo .tel .num {
    letter-spacing: 0.05em;
    gap: 5px;
    font-size: 31px;
  }

  footer .shopinfo .tel .num img {
    width: 25px;
    height: auto;
  }

  footer .shopinfo .tbl-info {
    width: 700px;
    margin: 0 auto;
  }

  footer .shopinfo .tbl-info .link:hover {
    text-decoration: underline;
  }

  footer .shopinfo .tbl-info .link img {
    width: 20px;
    height: auto;
    margin-right: 4px;
  }

  footer .shopinfo .tbl-info dl dt,
  footer .shopinfo .tbl-info dl dd {
    padding: 14px 0 15px;
  }

  footer .shopinfo .tbl-info dl dt {
    width: 118px;
  }

  footer .tog-nav {
    width: 100%;
    justify-content: center;
    gap: 22px;
    position: relative;
    z-index: 4;
    padding: 0 0 84px;
    width: 1000px;
  }

  footer .tog-nav li a span {
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.05em;
    position: relative;
  }

  footer .tog-nav li a span:before {
    position: absolute;
    background: url(../img/shared/bg2.jpg) repeat 0 0;
    transform: rotate(45deg);
    content: '';
    width: 26px;
    height: 26px;
    top: 2px;
    left: calc(50% - 15px);
    z-index: -1;
    transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -webkit-transition: opacity .3s ease;
    opacity: 0;
  }

  footer .tog-nav li a:hover span:before,
  footer .tog-nav li a.active span:before {
    opacity: 1;
  }

  footer .col-l {
    padding-left: 18px;
  }

  footer .col-l .lang {
    width: 125px;
    position: relative;
    display: flex;
    z-index: 5;
    background: url("../img/shared/boder_bg.png") repeat 0 0;
    padding: 1px;
    margin-bottom: 20px;
  }

  footer .col-l .lang:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: url("../img/shared/boder_bg.png") repeat 0 0;
  }

  footer .col-l .lang li {
    width: 61px;
  }

  footer .col-l .lang li a {
    font-size: 17px;
    text-align: center;
    display: block;
    background: url("../img/shared/lang_bg.jpg") 0 0 repeat;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 32px;
  }

  footer .col-l .lang li a:hover {
    background: url("../img/shared/lang_bg_on.jpg") 0 0 repeat;
  }

  footer .col-l .lang li:nth-child(1) a {
    background: url("../img/shared/lang_bg_on.jpg") 0 0 repeat;
  }

  footer .col-l .bnr-shared {
    width: 340px;
  }

  footer .col-l .bnr-shared a {
    font-size: 18px;
    line-height: 51px;
    padding: 0px 0px 0 2px;
    letter-spacing: 0.2em;
  }

  footer .col-r {
    position: relative;
    padding: 0 18px 0 0;
    letter-spacing: 0.05em;
  }

  footer .socialbuttons {
    padding: 0;
    position: absolute;
    right: 166px;
    top: 84px;
  }

  footer .btn-copy {
    text-align: right;
  }

  footer .btn-copy a span {
    letter-spacing: 0.15em;
  }

  footer .btn-copy a:before {
    width: 18px;
    height: 22px;
    margin-right: 9px;
  }

  footer .cookies_link {
    text-align: right;
    padding: 20px 0 30px;
  }

  footer .cookies_link a {
    font-size: 13px;
  }

  footer .cookies_link a:hover span {
    box-shadow: 0 1px 0 0 rgba(146, 146, 146, 0);
  }

  footer address {
    text-align: right;
    font-size: 17px;
    letter-spacing: 0.05em;
  }
}

#key {
  position: relative;
  padding-top: 13vw;
}

#key .photo {
  height: 97vw;
}

@media screen and (min-width: 768px) {
  #key {
    padding-top: 0;
  }

  #key .photo {
    height: 925px;
  }
}

.pagetop {
  background: #000 url("../img/shared/page_bg.jpg") repeat 0 0/100%;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding: 28px 0 37px;
  margin-top: 40px;
  line-height: 25px;
}

.pagetop span {
  display: block;
}

.pagetop img {
  width: 17px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .pagetop {
    background-size: auto;
  }

  .pagetop:hover img,
  .pagetop:hover span {
    opacity: 0.5 !important;
  }
}

/*
#belt {

  position: fixed;
  height: 90px;z-index: 999;
}
*/
/*========layout pc===========*/
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 36px;
    text-align: justify;
    letter-spacing: 0.05em;
  }

  section .padd_wrap {
    padding-left: 0;
    padding-right: 0;
  }

  /*
    #belt {

           pointer-events: none;
  position: fixed;
      left: 0;
      top: 0;

      right: 0;



  opacity: 0;
      height: 100vh;
      background-color: rgba(0,0,0,0.92);
      &>* {
          pointer-events: none;
      }

      &.fixed {

  opacity: 1;
         pointer-events: auto;
      &>* {
          pointer-events: auto;
      }
      }

    }
    */
  #belt {
    height: 94px;
    position: absolute;
    left: 0;
    right: 0;
  }
}

.has-nav .ft-bnr-fixed {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.has-nav header .hd-js {
  pointer-events: none;
  opacity: 0 !important;
}

@media screen and (min-width: 768px) {
  .has-nav header .hd-fixed {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/*content*/
.remodal.ext {
  vertical-align: top;
}

.remodal-close {
  position: sticky;
  margin-left: auto;
  width: 50px;
  font-size: 10px;
  top: 0px;
  right: 0px;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
}

.remodal-close span {
  letter-spacing: 0.05em;
}

.remodal-close img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .remodal-close {
    width: 65px;
    font-size: 16px;
    line-height: 33px;
  }

  .remodal-close img {
    width: auto;
  }
}

.remodal-cancel {
  padding: 0px;
  color: #000;
  cursor: pointer;
}

.remodal-cancel img {
  display: block;
  width: 30px;
  height: auto;
  margin: 0 auto;
}

.remodal-cancel span {
  font-size: 30px;
}

.remodal-cancel:hover {
  opacity: 0.7 !important;
}

@media screen and (min-width: 768px) {
  .remodal-cancel {
    width: auto;
    margin-top: 50px;
    font-size: 16px;
  }

  .remodal-cancel img {
    width: auto;
  }
}

.bnr-shared.cancel {
  margin: 0 auto;
  max-width: 383px;
}

.bnr-shared.cancel a {
  cursor: pointer;
}

.bnr-shared.cancel a:before {
  background: url(../img/index/close.png) no-repeat center/100%;
  width: 28px;
}

.remodal-wrapper {
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .remodal-wrapper {
    padding: 20px;
  }
}

.remodal-wrapper,
.remodal-wrapper-ext {
  text-align: center;
}

.remodal {
  background: url("../img/shared/bg1.jpg") repeat center 0;
  color: #fff;
  box-sizing: border-box;
  max-width: 1116px;
  padding: 10px 15px 30px;
}

.remodal button {
  cursor: pointer;
}

.remodal button:hover {
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
  .remodal {
    padding: 30px 20px 140px;
  }
}

.remodal-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 768px) {
  .has-nav .hamburger {
    opacity: 1;
    visibility: visible;
  }
}

.ft-bnr-fixed {
  background: url("../img/shared/bg1.jpg") repeat center 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: #000;
}

.ft-bnr-fixed li {
  width: 25%;
  position: relative;
  line-height: 15px;
  letter-spacing: 0;
  font-size: 10px;
}

.ft-bnr-fixed li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url("../img/shared/bg3.jpg") repeat center 0;
  opacity: 0.7;
}

.ft-bnr-fixed li img {
  width: 20px;
  height: auto;
}

.ft-bnr-fixed li a {
  height: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 5px;
}

.ft-bnr-fixed li:nth-child(2) {
  background: url("../img/shared/bg2.jpg") repeat center 0;
  color: #fff;
}

.ft-bnr-fixed li.ham:before {
  background: url("../img/shared/bg4.jpg") repeat center 0;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .ft-bnr-fixed {
    height: 94px;
    bottom: auto;
    top: 0;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .ft-bnr-fixed li {
    width: 170px;
    font-size: 15px;
    letter-spacing: 0.13em;
  }

  .ft-bnr-fixed li img {
    width: 28px;
  }

  .ft-bnr-fixed li.ham {
    width: 140px;
  }

  .ft-bnr-fixed li.ham .hamburger {
    padding-bottom: 21px;
    height: 94px;
  }

  .ft-bnr-fixed li.ham .hamburger:before {
    width: 63px;
    top: 36px;
    left: 39px;
    transform: none;
  }

  .ft-bnr-fixed li.ham .hamburger:after {
    bottom: 20px;
  }

  .ft-bnr-fixed li.ham .hamburger span {
    width: 63px;
    height: 22px;
  }
}

@keyframes mymove {
  0% {
    filter: grayscale(100%);
  }

  100% {
    filter: grayscale(0%);
  }
}

.fade_photo[style*="visible"] img {
  animation-name: mymove;
  animation-duration: .3s;
  animation-delay: 1s;
  animation-fill-mode: backwards;
}

.photo_on {
  position: relative;
}

.photo_on .on {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0 !important;
  transition: opacity .8s ease 0.7s !important;
  -moz-transition: opacity .8s ease 0.7s !important;
  -webkit-transition: opacity .8s ease 0.7s !important;
}

.photo_on[style*="visible"] .on {
  opacity: 1 !important;
}

@keyframes textshow {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes textshow1 {
  0% {
    clip-path: inset(0% 0 100% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

.bnr-shared {
  background: url("../img/shared/boder_bg1.png") repeat center 0;
  padding: 1px;
}

.bnr-shared a {
  font-family: 'Shippori Mincho';
  font-style: normal;
  font-weight: 400;
  display: block;
  background: url("../img/shared/shape.png") no-repeat right bottom, url("../img/shared/bg1.jpg") repeat center 0;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.32em;
  position: relative;
}

.bnr-shared a:before {
  content: '';
  background: url("../img/shared/arow.png") no-repeat center/100%;
  width: 17px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.bnr-shared a.unsmooth:before {
  background: url("../img/shared/ico_pop.png") no-repeat center/100%;
  width: 13px;
}

.bnr-shared.ext {
  background: url("../img/shared/boder_bg.png") repeat center 0;
}

@media screen and (min-width: 768px) {
  .bnr-shared {
    width: 383px;
  }

  .bnr-shared a {
    font-size: 21px;
    padding: 0;
    line-height: 58px;
    text-align: center;
    padding: 0px 20px;
  }

  .bnr-shared a:before {
    right: 30px;
    width: 15px;
  }

  .bnr-shared a:hover:before {
    right: 15px !important;
  }
}

.bg1 {
  background: url("../img/shared/bg1.jpg") repeat center 0;
  color: #fff;
}

.bg2 {
  background: #000 url("../img/shared/pt_bg.png") repeat center 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .bg2 {
    background-size: 60%;
    background-position: -75vw 0;
  }
}

.line_bg {
  position: relative;
}

.line_bg:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  z-index: 5;
  background: url("../img/shared/bg1.jpg") repeat center 0;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .line_bg {
    padding-top: 10px;
  }

  .line_bg:before {
    height: 10px;
  }
}

.menu-shared .menu-list dl {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px 0;
  align-items: flex-end;
  justify-content: space-between;
  display: flex;
}

.menu-shared .menu-list dl dt {
  width: calc(100% - 80px);
  text-align: left;
}

.menu-shared .menu-list dl dd {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .menu-shared .menu-list dl {
    line-height: 30px;
    padding: 15px 0;
  }
}