/* 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;
  -o-object-fit: cover;
  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 {
    -o-object-fit: cover;
    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;
    -o-object-fit: cover;
    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;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 60px;
  padding: 0 0px;
}

.hamburger:before {
  content: "";
  width: 26px;
  border-top: 2px solid;
  position: absolute;
  top: 29px;
  left: 11px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  display: none;
}

.hamburger:after {
  content: "MENU";
  letter-spacing: 0.05em;
  line-height: 1;
  display: none;
}

.hamburger span {
  color: #282828;
  height: 10px;
  width: 40px;
  position: relative;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

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

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

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

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

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

@media screen and (max-width: 767px) {
  .hamburger.is-active span {
    color: #fff;
  }
}

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

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

@media screen and (min-width: 768px) {
  .hamburger {
    background-color: transparent !important;
    top: 36px;
  }

  .hamburger:hover {
    opacity: 0.8;
  }

  .hamburger span {
    width: 55px;
    height: 14px;
  }

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

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

  .hamburger.white span {
    color: #fff;
  }

  .hamburger.white.is-active span {
    color: #000;
  }
}

@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: -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: #fff;
  color: #000;
  text-align: center;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease 0s;
  box-sizing: border-box;
}

#navigation .group {
  padding: 60px 5% 58px;
  position: relative;
}

#navigation .tog-nav {
  position: relative;
  width: 75%;
  margin: 0 auto;
}

#navigation .tog-nav li {
  position: relative;
  margin-bottom: 5px;
  font-size: 20px;
  border-bottom: 1px solid #cdcccb;
}

#navigation .tog-nav li a {
  position: relative;
  letter-spacing: 0.07em;
  color: #2d2b27;
  display: block;
  padding: 5px;
}

#navigation .tog-nav li span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

#navigation .tog-nav li.active,
#navigation .tog-nav li:hover {
  border-bottom: 1px solid #000;
}

#navigation .tog-nav li.sub:hover {
  border-bottom: 1px solid #cdcccb;
}

#navigation .tog-nav li.sub li {
  border: none !important;
}

#navigation .tog-nav li.sub li a:hover,
#navigation .tog-nav li.sub li a.active {
  opacity: 0.7;
}

#navigation .sns {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  text-align: right;
  padding: 15vw 0 0;
}

#navigation .sns li {
  margin-bottom: 20px;
}

#navigation .sns img {
  width: auto;
  height: 32px;
}

#navigation .photo {
  margin: 0 -5vw;
}

@media screen and (min-width: 768px) {
  #navigation {
    text-align: left;
  }

  #navigation .group {
    padding: 0;
    display: flex;
    justify-content: flex-end;
  }

  #navigation .group .gr {
    width: 45%;
    max-width: 593px;
    position: static;
    height: 100vh;
    display: flex;
    align-items: center;
  }

  #navigation .tog-nav {
    display: inline-block;
    text-align: left;
    width: auto;
    margin: 0 0 0 60px;
  }

  #navigation .tog-nav li {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(205, 204, 203, 0);
  }

  #navigation .tog-nav li a {
    text-align: left;
    padding: 7px 0;
  }

  #navigation .tog-nav li.sub {
    padding: 7px 0 0;
    border: none !important;
  }

  #navigation .tog-nav li.sub li {
    border: none !important;
    margin-bottom: 0;
  }

  #navigation .tog-nav li.sub li a {
    line-height: 20px;
    padding: 4px;
  }

  #navigation .sns {
    padding: 0;
    position: absolute;
    right: 60px;
    bottom: 0;
  }

  #navigation .sns li {
    margin-bottom: 20px;
  }

  /* #navigation .sns li:nth-child(2) {
    display: none;
  } */

  #navigation .sns img {
    width: auto;
    height: 28px;
  }

  #navigation .photo {
    position: absolute;
    left: 0;
    right: 593px;
    top: 88px;
    bottom: 0;
    margin: 0;
  }

  #navigation .contact {
    color: #fff;
    position: absolute;
    top: 117px;
    right: 620px;
    z-index: 9;
    display: flex;
    gap: 17px;
    align-items: center;
  }

  #navigation .contact .tel {
    letter-spacing: 0.13em;
    font-size: 20px;
  }

  #navigation .contact .tel span {
    font-size: 16px;
    letter-spacing: 0.13em;
  }

  #navigation .contact .bnr-shared {
    width: 210px;
  }

  #navigation .contact .bnr-shared a {
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
  }

  #navigation .contact .bnr-shared a img {
    width: 27px;
  }
}

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

.navOpen #navigation .group {
  opacity: 1;
}

@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;
}

header h1 {
  position: absolute;
  top: 10px;
  left: 5%;
  right: 5%;
  z-index: 999;
  font-size: 10px;
  color: rgba(45, 43, 39, 0.5);
}

header .logo {
  width: 41%;
  position: relative;
  z-index: 2;
  margin: 0 auto 10vw;
}

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

@media screen and (min-width: 768px) {
  header h1 {
    position: absolute;
    top: 45px;
    right: 120px;
    z-index: 9;
    font-size: 12px;
    padding: 0;
    text-align: right;
  }

  header .ham-pc {
    width: 139px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
  }

  header .hd-contact {
    position: absolute;
    left: 116px;
    top: 39px;
    /* display: flex; */
    gap: 30px;
    align-items: center;
  }

  header .hd-contact .tel {
    font-size: 21px;
    color: #000;
    margin-top: 7px;
  }

  header .hd-contact .bnr a {
    color: #000;
    display: flex;
    border-bottom: 1px solid;
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
  }

  header .hd-contact .bnr a img {
    width: 28px;
    height: auto;
  }

  header .hd-contact .bnr a:hover {
    opacity: 0.8;
  }

  header .hd-contact li:first-child .on {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
  }

  header .hd-contact.white li:first-child {
    position: relative;
  }

  header .hd-contact.white li:first-child img {
    opacity: 0;
  }

  header .hd-contact.white li:first-child .on {
    opacity: 1;
  }

  header .hd-contact.white .bnr a {
    color: #fff;
  }

  header .hd-contact.white .bnr a:before {
    background: url("../img/shared/ft_ico3.png") no-repeat 0 0/100%;
  }

  header .logo {
    width: 52px;
    left: 50px;
    position: absolute;
    top: 26px;
    left: 36px;
    margin: 0;
  }
}

footer {
  background-color: #fff;
  color: #000;
  padding: 0 0% 60px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.13em;
  text-align: left;
}

footer .wrap {
  padding: 0 5%;
}

footer .photo-lead {
  height: 55vw;
}

footer .ft-photo {
  gap: 6px;
  margin: 0 6px;
}

footer .ft-photo li {
  width: calc(50% - 3px);
}

footer .photo {
  margin: 0 14vw 0;
}

footer .logo {
  width: 20%;
  margin: 0 auto 5vw;
}

footer .tel {
  text-align: center;
  font-size: 30px;
  padding: 5vw 0;
}

footer .tel span {
  font-size: 20px;
  letter-spacing: 0.13em;
}

footer .ft-gr {
  border-top: 1px solid #333333;
  padding: 30px 0;
  margin-top: 30px;
}

footer .info {
  padding: 10vw 0 5vw;
}

footer .info .bnr-shared a:before {
  content: "";
  background: url(../img/shared/ft_ico2.png) no-repeat center/100%;
  width: 30px;
  height: 30px;
  display: inline-block;
}

footer .tbl-info {
  padding: 0 0 10vw;
}

footer .tbl-info dl {
  padding-bottom: 10px;
  display: table;
  width: 100%;
  line-height: 24px;
  letter-spacing: 0.1em;
}

footer .tbl-info dl dt,
footer .tbl-info dl dd {
  display: table-cell;
}

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

footer .tit {
  font-size: 18vw;
  line-height: 1.4;
  color: #2d2b27;
  letter-spacing: 0.07em;
  margin: 0px 0px 0 114px;
}

footer .ft-sns {
  position: relative;
  border-bottom: 1px solid #000000;
}

footer .sns {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  text-align: right;
  padding: 5vw 5% 0;
  position: relative;
  z-index: 1;
}

footer .sns li {
  margin-bottom: 20px;
}

footer .sns img {
  width: auto;
  height: 40px;
}

footer .ft_end {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.17em;
  padding: 30px 0;
}

footer .cookies_link a {
  box-shadow: 0px 1px 0px #ababaa;
}

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

footer .socialbuttons {
  padding: 0px 0 20px;
}

footer .btn-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
}

footer .btn-copy span {
  font-weight: 500;
  letter-spacing: 0.15em;
}

footer .btn-copy:before {
  content: "";
  background: url(../img/shared/copy.png) no-repeat center/100%;
  width: 16px;
  height: 16px;
}

footer .tog-nav {
  display: none;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 0 0px 0;
    font-size: 15px;
  }

  footer .ft_end {
    padding: 30px 0 90px;
  }

  footer .photo-lead {
    height: 552px;
    position: relative;
  }

  footer .wrap {
    padding: 120px 0 0;
    max-width: 850px;
  }

  footer .ft-photo {
    gap: 6px;
    flex-wrap: nowrap;
  }

  footer .ft-photo li {
    width: calc((100% - 18px) / 4);
  }

  footer .ft-photo li img {
    width: 100%;
    height: auto;
  }

  footer .photo {
    margin: 0 0;
    text-align: center;
  }

  footer .logo {
    width: 87px;
    margin: 0;
    padding-bottom: 33px;
  }

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

  footer .tel {
    text-align: left;
    font-size: 20px;
    padding: 0;
    letter-spacing: 0.13em;
  }

  footer .tel span {
    font-size: 16px;
  }

  footer .info {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 0;
  }

  footer .info .bnr-shared {
    width: 210px;
    margin: 0;
  }

  footer .info .bnr-shared a {
    font-size: 14px;
    line-height: 48px;
    gap: 10px;
    letter-spacing: 0.13em;
  }

  footer .info .bnr-shared a:before {
    width: 27px;
  }

  footer .info .bnr-shared a:hover:before {
    background: url(../img/shared/ft_ico3.png) no-repeat center/100%;
  }

  footer .tog-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 53px 0 60px;
  }

  footer .tog-nav li a {
    letter-spacing: 0.07em;
    font-size: 16px;
    letter-spacing: 0.07em;
    color: #2d2b27;
  }

  footer .tog-nav li a:hover {
    opacity: 0.7;
  }

  footer .tog-nav li span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.07em;
  }

  footer .tog-nav li.sub {
    display: flex;
    gap: 16px;
  }

  footer .tog-nav li.sub ul {
    display: flex;
    gap: 22px;
  }

  footer .ft-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }

  footer .ft-link .btn-copy {
    padding: 0;
  }

  footer .ft-link .btn-copy a:hover {
    text-decoration: underline;
  }

  footer address {
    font-size: 14px;
    padding: 25px 0 7px;
  }

  footer .cookies_link {
    font-size: 11px;
  }

  footer .socialbuttons {
    padding: 0;
  }

  footer .ft-gr {
    border-top: 1px solid #333333;
    padding: 30px 0;
    margin-top: 30px;
  }

  footer .tbl-info {
    padding: 25px 14px 53px;
  }

  footer .tbl-info dl {
    padding-bottom: 29px;
    line-height: 1.66;
    font-size: 15px;
    letter-spacing: 0.13em;
  }

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

  footer .tit {
    font-size: 197px;
    margin: 0px 0px 38px;
    margin-left: calc(50% - 415px);
    white-space: nowrap;
  }

  footer .sns {
    padding: 0;
    width: 450px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 29px;
  }

  footer .sns li {
    margin-bottom: 25px;
  }

  footer .sns img {
    height: 38px;
  }
}

#key {
  position: relative;
}

#key .tit {
  padding: 2vw 5vw 3vw;
  font-size: 6vw;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.85);
}

#key .photo {
  height: 90vw;
}

@media screen and (min-width: 768px) {
  #key .tit {
    font-size: 24px;
    padding: 15px 20px;
    line-height: 30px;
    width: 280px;
  }

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

.pagetop {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 28px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  gap: 5px;
  align-items: center;
}

.pagetop span {
  letter-spacing: 0.07em;
}

.pagetop:after {
  content: "";
  background: url(../img/shared/up.png) no-repeat center/100%;
  width: 30px;
  height: 30px;
}

@media screen and (min-width: 768px) {
  .pagetop {
    font-size: 20px;
    bottom: 20px;
    right: calc(50% - 449px);
    gap: 10px;
  }

  .pagetop:after {
    width: 19px;
    height: 19px;
  }

  .pagetop:hover {
    opacity: 0.8 !important;
  }
}

/*
#belt {

  position: fixed;
  height: 90px;z-index: 999;
}
*/
/*========layout pc===========*/
@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
    line-height: 26px;
  }

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

  #belt {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
}

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

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

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

@media screen and (min-width: 768px) {
  .remodal-close {
    width: 60px;
  }
}

.remodal-cancel {
  border: 1px solid #666666;
  cursor: pointer;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  letter-spacing: 0.09em;
  position: relative;
  padding: 10px 0;
  width: 45%;
  margin: 0 auto;
}

.remodal-cancel:before {
  content: "";
  background: url("../img/gourmet_burger/x.png") no-repeat center/100%;
  position: absolute;
  width: 19px;
  top: 0;
  bottom: 0;
  right: 5%;
  z-index: 1;
}

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

@media screen and (min-width: 768px) {
  .remodal-cancel {
    width: 272px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 68px;
    padding: 0;
  }

  .remodal-cancel:before {
    width: 25px;
    right: 12px;
  }
}

.remodal-wrapper {
  padding: 10px;
}

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

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

.remodal {
  background-color: #fff;
  box-sizing: border-box;
  padding: 10px 0px 30px;
  max-width: 1040px;
}

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

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

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

.ft-bnr-fixed {
  background: #fff;
  color: #000;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  display: flex;
  border-top: 1px solid;
}

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

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

.ft-bnr-fixed li:nth-child(2) {
  width: calc(100% - 160px);
  border-left: 1px solid;
  border-right: 1px solid;
}

.ft-bnr-fixed li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 5px;
  color: #2d2b27;
}

.bnr-shared {
  width: 90%;
  margin: 0 auto;
}

.bnr-shared a,
.bnr-shared i {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  position: relative;
  padding: 15px 0;
  border: 1px solid #575552;
}

.bnr-shared a:after,
.bnr-shared i:after {
  content: "";
  background: url("../img/shared/arow.png") no-repeat center/100%;
  position: absolute;
  width: 19px;
  top: 0;
  bottom: 0;
  right: 5%;
  z-index: 1;
}

.bnr-shared a span,
.bnr-shared i span {
  letter-spacing: 0.09em;
}

.bnr-shared a.unsmooth:after,
.bnr-shared i.unsmooth:after {
  background: url(../img/takeout/ico_pop.png) no-repeat center/100%;
}

.bnr-shared.white i,
.bnr-shared.white a {
  border: 1px solid #fff;
  color: #fff;
}

.bnr-shared.white i:after,
.bnr-shared.white a:after {
  background: url("../img/shared/arow1.png") no-repeat center/100%;
}

.bnr-shared.white i.unsmooth:after,
.bnr-shared.white a.unsmooth:after {
  background: url(../img/takeout/ico_pop_w.png) no-repeat center/100%;
}

.bnr-shared.bnr-shop a {
  font-weight: 700;
}

.bnr-shared.bnr-shop img {
  width: 30px;
  height: auto;
  opacity: 1 !important;
}

.bnr-shared.bnr-shop a:after {
  display: none;
}

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

  .bnr-shared a,
  .bnr-shared i {
    font-size: 18px;
    padding: 0px 0;
    letter-spacing: 0.09em;
    line-height: 59px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }

  .bnr-shared a:after,
  .bnr-shared i:after {
    right: 20px;
    width: 23px;
  }

  .bnr-shared a:hover,
  .bnr-shared i:hover {
    background-color: #000;
    color: #fff;
  }

  .bnr-shared a:hover:after,
  .bnr-shared i:hover:after {
    background: url("../img/shared/arow1.png") no-repeat center/100%;
  }

  .bnr-shared a.unsmooth:hover:after,
  .bnr-shared i.unsmooth:hover:after {
    background: url(../img/takeout/ico_pop_w.png) no-repeat center/100%;
    width: 25px;
  }

  .bnr-shared.white a.unsmooth:after {
    width: 25px;
  }
}

.popup-shared {
  padding: 3vw 5% 10vw;
}

.popup-shared h2 {
  letter-spacing: 0.13em;
  line-height: 1.4;
  padding: 5vw 0;
  font-size: 5vw;
}

.popup-shared h2 span {
  letter-spacing: 0.15em;
  font-size: 8vw;
}

.popup-shared .txt-pop {
  padding-bottom: 10vw;
}

.popup-shared .menu-shared {
  padding: 10vw 0;
}

.popup-shared .menu-list {
  padding-bottom: 20px;
}

.popup-shared .menu-list h3 {
  background-color: #000;
  color: #fff;
  padding: 10px 5px;
  margin-bottom: 10px;
}

.popup-shared .menu-list dl {
  border-bottom: 1px solid #a1a1a1;
  padding: 10px 0;
}

.popup-shared .menu-list dl:after {
  content: "." !important;
  clear: both !important;
  display: block !important;
  height: 0 !important;
  visibility: hidden !important;
}

.popup-shared .menu-list dl dt {
  float: left;
  text-align: left;
}

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

@media screen and (min-width: 768px) {
  .popup-shared {
    padding: 25px 20px 40px;
  }

  .popup-shared h2 {
    padding: 10px 0;
    font-size: 24px;
  }

  .popup-shared h2 span {
    font-size: 50px;
  }

  .popup-shared .txt-pop {
    max-width: 575px;
    margin: 55px auto 80px;
  }

  .popup-shared .menu-shared {
    padding: 40px 20px 25px;
  }

  .popup-shared .menu-list {
    padding-bottom: 37px;
  }

  .popup-shared .menu-list h3 {
    padding: 10px 5px;
    margin-bottom: 10px;
  }

  .popup-shared .menu-list dl {
    padding: 13px 0 14px;
  }

  .popup-shared .menu-list dl dt {
    width: 377px;
  }
}

/*# sourceMappingURL=header.css.map */