@charset "UTF-8";
/* Scss Document */
.cl1 {
  color: #9a8f30;
}
.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;
  }
}
.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: 70px;
}
.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 {
  background: #ffffff;
  position: relative;
  z-index: 1001;
  box-sizing: border-box;
  cursor: pointer;
  width: 120px;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.hamburger:before {
  content: '';
  width: 37px;
  background-color: #000;
  height: 1px;
  position: absolute;
  top: 22px;
  left: 17px;
  opacity: 0;
}
.hamburger:after {
  content: 'MENU';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  line-height: 1;
  display: block;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #000;
}
.hamburger span {
  height: 17px;
  width: 27px;
  position: relative;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.hamburger span:before, .hamburger span:after {
  content: '';
  background-color: #000;
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0px;
  margin: 0 auto;
  display: block;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.hamburger span:after {
  top: auto;
  bottom: 0;
}
.hamburger.is-active:after {
  content: 'CLOSE';
}
.hamburger.is-active:before {
  opacity: 0;
}
.hamburger.is-active span:before {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}
.hamburger.is-active span:after {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
}
@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: #1a4472;
}
.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: 3px 3px 8px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.3);
}
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: rgba(255, 255, 255, 0.95);
  text-align: center;
  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: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#navigation .gr {
  position: relative;
}
#navigation .group {
  padding: 8vw 8% 100px;
}
#navigation .tog-nav {
  position: relative;
  text-align: left;
}
#navigation .tog-nav li {
  padding-bottom: 20px;
}
#navigation .tog-nav li a {
  font-size: 16px;
  position: relative;
  display: block;
}
#navigation .tog-nav li a span {
  letter-spacing: 0em;
  color: #000;
}
#navigation .tog-nav li a span.fnt-pacifico {
  letter-spacing: 0.05em;
  font-size: 26px;
}
#navigation .tog-nav li a span:nth-child(2) {
  color: #9d0101;
  position: absolute;
  left: 0;
  font-weight: 700;
  opacity: 0;
}
#navigation .tog-nav li a span:nth-child(2):before {
  content: '';
  position: absolute;
  left: 0;
  left: 0;
  right: 0;
  bottom: 3px;
  border-bottom: 1px solid;
}
#navigation .tog-nav li a.active span, #navigation .tog-nav li a:hover span {
  opacity: 0;
}
#navigation .tog-nav li a.active span:nth-child(2), #navigation .tog-nav li a:hover span:nth-child(2) {
  opacity: 1;
}
#navigation .contact {
  border-top: 1px solid #000;
  padding: 30px 0 0;
  margin-top: 30px;
  text-align: left;
  font-weight: 700;
}
#navigation .contact .tel {
  line-height: 1;
  font-size: 16px;
  letter-spacing: 0em;
}
#navigation .contact .tel .num {
  letter-spacing: 0.05em;
  padding-top: 10px;
  display: inline-block;
}
#navigation .contact .tel .num span {
  font-size: 26px;
}
#navigation .contact .tel .note {
  letter-spacing: 0.05em;
  font-size: 11px;
  font-weight: 400;
}
#navigation .contact .sns {
  position: absolute;
  border: 1px solid;
  border-radius: 60px;
  padding: 30px 15px;
  letter-spacing: 0.1em;
  top: 89px;
  right: 10%;
  z-index: 1;
  font-size: 10px;
}
#navigation .contact .sns img {
  width: 100%;
  height: auto;
}
#navigation .contact .sns dd {
  width: 30px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}
#navigation .contact .sns dt {
  margin: 0 auto 10px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  #navigation {
    display: block;
    width: 100%;
    position: relative;
    padding: 0;
    height: 100px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    margin: 0;
    overflow: visible;
  }
  #navigation .group {
    padding: 0 24px;
    text-align: left;
  }
  #navigation .tog-nav {
    position: relative;
    text-align: left;
    display: flex;
    gap: 24px;
    padding: 21px 0 0px;
  }
  #navigation .tog-nav li {
    padding-bottom: 20px;
  }
  #navigation .tog-nav li a {
    white-space: nowrap;
  }
  #navigation .tog-nav li a span {
    font-size: 13px;
    color: #000;
  }
  #navigation .tog-nav li a span.fnt-pacifico {
    font-size: 18px;
  }
  #navigation .tog-nav li a span:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
  }
  #navigation .tog-nav li a span:nth-child(2):before {
    content: '';
    position: absolute;
    left: 0;
    left: 0;
    right: 0;
    bottom: -3px;
    border-bottom: 1px solid;
  }
  #navigation .tog-nav li.active a span, #navigation .tog-nav li:hover a span {
    opacity: 0;
  }
  #navigation .tog-nav li.active a span:nth-child(2), #navigation .tog-nav li:hover a span:nth-child(2) {
    opacity: 1;
  }
  #navigation .contact {
    border-top: none;
    padding: 0 0;
    margin-top: 0px;
  }
  #navigation .contact .tel {
    font-size: 13px;
    position: absolute;
    left: 26px;
    bottom: 19px;
  }
  #navigation .contact .tel br {
    display: none;
  }
  #navigation .contact .tel .num {
    padding: 0px 14px 0 17px;
    font-size: 15px;
  }
  #navigation .contact .tel .num span {
    font-size: 24px;
  }
  #navigation .contact .tel .note {
    font-size: 11px;
  }
  #navigation .contact .btn-web {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
  }
  #navigation .contact .btn-web a {
    display: block;
    background-color: #97351a;
    height: 100px;
    padding: 20px 0 0;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.05em;
    color: #fff;
  }
  #navigation .contact .btn-web a img {
    width: 18px;
    height: auto;
    display: block;
    margin: 0 auto 9px;
  }
  #navigation .contact .btn-web a:hover {
    opacity: 0.8;
  }
}
.ft-active .pagetop {
  opacity: 0;
}
.navOpen .pagetop {
  opacity: 0 !important;
  pointer-events: none;
}
.navOpen #navigation {
  opacity: 1;
  pointer-events: auto;
}
header {
  position: relative;
}
header h1 {
  color: #000;
  font-size: 10px;
  line-height: 1.4;
  text-align: left;
  z-index: 10;
  position: absolute;
  top: 10px;
  left: 5%;
  right: 90px;
  z-index: 1;
}
header .logo {
  position: absolute;
  width: 44%;
  left: 50%;
  top: 13vw;
  z-index: 9;
  transform: translateX(-50%);
}
header .logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  header h1 {
    width: 485px;
    right: 50px;
    left: auto;
    top: 75px;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-align: left;
    pointer-events: none;
  }
  header .logo {
    width: 320px;
    top: 119px;
  }
  header .hd-pc .contact {
    position: absolute;
    left: 50px;
    top: 34px;
    z-index: 9;
    color: #000;
    line-height: 1;
  }
  header .hd-pc .contact .tel {
    font-size: 15px;
    letter-spacing: 0em;
    line-height: 26px;
    padding-bottom: 26px;
    font-weight: 700;
  }
  header .hd-pc .contact .tel .num {
    font-size: 15px;
    letter-spacing: 0.05em;
    padding-left: 12px;
  }
  header .hd-pc .contact .tel .num span {
    font-size: 24px;
    letter-spacing: 0.05em;
  }
  header .hd-pc .contact .tel .note {
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  header .hd-pc .tog-nav {
    position: absolute;
    top: 35px;
    right: 50px;
    z-index: 9;
    display: inline-flex;
    gap: 18px;
  }
  header .hd-pc .tog-nav li a {
    font-size: 18px;
    position: relative;
    display: block;
  }
  header .hd-pc .tog-nav li a span {
    display: block;
    white-space: nowrap;
    letter-spacing: 0em;
    color: #000;
  }
  header .hd-pc .tog-nav li a span.fnt-pacifico {
    letter-spacing: 0.05em;
    font-size: 18px;
  }
  header .hd-pc .tog-nav li a span:nth-child(2) {
    color: #9d0101;
    position: absolute;
    font-size: 13px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-weight: 700;
    opacity: 0;
  }
  header .hd-pc .tog-nav li a span:nth-child(2):before {
    content: '';
    position: absolute;
    left: 0;
    left: 0;
    right: 0;
    bottom: -3px;
    border-bottom: 1px solid;
  }
  header .hd-pc .tog-nav li a.active span, header .hd-pc .tog-nav li a:hover span {
    opacity: 0;
  }
  header .hd-pc .tog-nav li a.active span:nth-child(2), header .hd-pc .tog-nav li a:hover span:nth-child(2) {
    opacity: 1;
  }
  header .hd-pc .sns {
    position: absolute;
    border: 1px solid;
    border-radius: 60px;
    padding: 40px 0 45px;
    font-size: 15px;
    letter-spacing: 0.1em;
    top: 270px;
    right: 50px;
    z-index: 1;
    width: 80px;
  }
  header .hd-pc .sns img {
    width: 100%;
    height: auto;
  }
  header .hd-pc .sns dd {
    width: 28px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
    display: flex;
  }
  header .hd-pc .sns dt {
    margin: 0 auto 19px;
    white-space: nowrap;
  }
  header .hd-pc .sns dt span {
    letter-spacing: 0.1em;
  }
}
footer {
  background: #000;
  color: #fff;
  text-align: left;
  letter-spacing: 0.15em;
  font-size: 13px;
  line-height: 20px;
  position: relative;
  padding: 100px 5% 80px;
}
footer .logo {
  width: 65%;
  margin: 0 auto 8vw;
}
footer .logo img {
  width: 100%;
  height: auto;
}
footer .tbl-info p {
  padding-bottom: 15px;
}
footer .link li {
  padding: 10px 0 15px;
  line-height: 1;
}
footer .link li span {
  border-bottom: 1px solid #fff;
}
footer .link li a {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}
footer .link li a:before {
  content: '';
  background: url("../img/shared/copy.png") no-repeat 0 0/100%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  position: relative;
  vertical-align: text-bottom;
}
footer .link li.pagetop {
  padding-top: 30px;
}
footer .link li.pagetop a:before {
  background: none;
  content: '↑';
  width: auto;
  height: auto;
}
footer address {
  color: #ece0c8;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding-bottom: 30px;
}
footer .socialbuttons {
  padding: 20px 0;
}
footer .ft-bottom {
  padding-bottom: 20px;
}
@media screen and (min-width: 767px) {
  footer {
    text-align: left;
    font-size: 15px;
    line-height: 24px;
    padding: 94px 20px 0px;
  }
  footer .wrap {
    max-width: 1300px;
    padding-bottom: 52px;
  }
  footer .logo {
    position: absolute;
    top: -7px;
    right: 58px;
    z-index: 1;
    width: 225px;
    margin: 0;
  }
  footer .tbl-info p {
    padding-bottom: 24px;
  }
  footer .link li {
    padding: 10px 0 5px;
    line-height: 1;
    font-size: 13px;
  }
  footer .link li span {
    letter-spacing: 0.15em;
  }
  footer .link li a {
    padding-bottom: 5px;
  }
  footer .link li a:before {
    width: 14px;
    height: 14px;
    margin-right: 15px;
  }
  footer .link li a:hover span {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
  }
  footer .link li.pagetop {
    padding-top: 20px;
  }
  footer address {
    font-size: 13px;
    text-align: center;
    padding-bottom: 30px;
  }
  footer .socialbuttons {
    padding: 20px 0 32px;
  }
  footer .ft-bottom {
    position: absolute;
    width: 280px;
    right: 0;
    top: 177px;
    padding-bottom: 0px;
  }
  footer .tog-nav {
    color: #ece0c8;
    display: flex;
    justify-content: center;
    padding: 83px 0 7px;
  }
  footer .tog-nav li a {
    padding: 0 14px 0 10px;
    color: #ece0c8;
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  footer .tog-nav li a:hover {
    text-decoration: underline;
  }
  footer .tog-nav li:after {
    content: '｜';
  }
}
#key {
  position: relative;
}
#key .photo {
  height: 110vw;
}
@media screen and (min-width: 768px) {
  #key .photo {
    height: 900px;
  }
}
.pagetop {
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
}
#belt {
  position: fixed;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  #belt {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  #belt > * {
    pointer-events: none;
  }
}
/*========layout pc===========*/
@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
    line-height: 32px;
  }
  section .padd_wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .has-nav header .hd-fixed {
    opacity: 1;
    visibility: visible;
  }
}
.has-nav .ft-bnr-fixed {
  opacity: 1;
  visibility: visible;
}
.has-nav header .hd-js {
  pointer-events: none;
  opacity: 0 !important;
}
@media screen and (min-width: 768px) {
  .has-nav #belt {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .has-nav #belt > * {
    pointer-events: auto;
  }
}
/*content*/
.remodal button {
  cursor: pointer;
}
.remodal button:hover {
  opacity: 0.6;
}
.remodal.ext {
  vertical-align: top;
}
.remodal-close {
  position: sticky;
  margin-left: auto;
  margin-bottom: 0px;
  letter-spacing: 0.05em;
  font-size: 10px;
  top: 5px;
  right: 0px;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
  width: 30px;
}
.remodal-close span {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .remodal-close {
    font-size: 13px;
    text-align: center;
    width: 60px;
  }
  .remodal-close span {
    font-size: 60px;
  }
}
.remodal-cancel {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 600;
  margin: 20px auto 0;
  letter-spacing: 0.1em;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.remodal-cancel span {
  font-size: 25px;
}
.remodal-cancel:hover {
  opacity: 0.7 !important;
}
@media screen and (min-width: 768px) {
  .remodal-cancel {
    font-size: 28px;
    padding: 0;
    margin: 0;
  }
  .remodal-cancel span {
    font-size: 43px;
  }
}
.remodal-wrapper {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .remodal-wrapper {
    padding: 20px;
  }
}
.remodal-wrapper, .remodal-wrapper-ext {
  text-align: center;
}
.remodal {
  max-width: 1040px;
  padding: 0px 0;
  box-sizing: border-box;
}
.remodal-overlay {
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .has-nav .hamburger {
    opacity: 1;
    visibility: visible;
  }
}
.ft-bnr-fixed {
  background: #8d2002;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  letter-spacing: 0.1em;
  font-weight: 700;
  justify-content: space-between;
}
.ft-bnr-fixed li {
  position: relative;
  width: 120px;
}
.ft-bnr-fixed li:nth-child(1) {
  width: calc(100% - 120px);
}
.ft-bnr-fixed li:nth-child(1) img {
  width: 20px;
  height: auto;
}
.ft-bnr-fixed li:nth-child(1) a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  gap: 10px;
  height: 100%;
}
@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);
  }
}
.h2222[style*="visible"] .t, .h2222[style*="visible"] .ani {
  animation: textshow 1s ease-out forwards;
}
.h2222.txt-vertical[style*="visible"] .t {
  animation: textshow1 1s ease-out forwards;
}
.bnr-shared {
  margin-top: 5vw;
}
.bnr-shared a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 15px;
  background-color: rgba(141, 32, 2, 0.9);
  border: 5px solid rgba(255, 255, 255, 0.9);
  padding: 15px 10px;
}
.bnr-shared a:before {
  content: '';
  background: url("../img/index/arow.png") no-repeat center/100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  width: 28px;
}
.bnr-shared a.efo {
  gap: 10px;
}
.bnr-shared a.efo:before {
  display: none;
}
.bnr-shared a.efo img {
  width: 22px;
  height: auto;
  opacity: 1 !important;
}
.bnr-shared a.unsmooth:before {
  background: url("../img/dinner/ico.png") no-repeat center/100%;
  width: 18px;
}
@media screen and (min-width: 768px) {
  .bnr-shared {
    width: 300px;
    margin: 0;
  }
  .bnr-shared a {
    font-size: 16px;
    padding: 0;
    line-height: 70px;
  }
  .bnr-shared a:hover {
    opacity: 0.8;
  }
  .bnr-shared a:before {
    right: 37px;
  }
}
h2, h3, h4 {
  font-weight: 700;
}
.bg1 {
  background: url("../img/shared/bg1.jpg") repeat center 0;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.img-loop {
  position: relative;
}
.img-loop img {
  animation: rotate 15s linear infinite;
}
#cta {
  background: url("../img/dinner/cta_bg.png") no-repeat center 0/cover;
  margin: 0 -5vw;
  padding: 15vw 5%;
  text-align: center;
  position: relative;
}
#cta .decor {
  width: 60vw;
  position: absolute;
  top: -14vw;
  right: 0vw;
  z-index: -1;
}
#cta .decor.ext {
  top: -16vw;
  right: 4vw;
}
#cta .fnote {
  color: #8d2002;
  font-weight: 700;
  font-size: 13px;
  padding: 30px 0 0;
}
#cta .fnote span {
  display: inline-block;
  border-bottom: 1px solid;
}
#cta .tel {
  padding: 20px 0;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.0em;
}
#cta .tel .num {
  color: #8d2002;
  font-size: 18px;
  letter-spacing: 0.05em;
}
#cta .tel .num span {
  font-size: 30px;
  letter-spacing: 0.05em;
}
#cta .tel .note {
  font-size: 12px;
  font-weight: 400;
}
#cta .bnr-shared {
  width: 80%;
  margin: 0 auto;
}
#cta .btn-web {
  margin: 30px auto -20px;
  position: relative;
  z-index: 1;
}
#cta .policy {
  padding: 15% 5% 10%;
  border: 1px solid #fff;
}
#cta .policy dt {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #cta {
    margin: 0 -20px;
    padding: 120px 20px 150px;
  }
  #cta .decor {
    width: auto;
    top: -96px;
    right: calc(50% - 549px);
  }
  #cta .decor.ext {
    top: -183px;
    right: calc(50% - 562px);
  }
  #cta .fnote {
    font-size: 15px;
    padding: 122px 0 0;
  }
  #cta .tel {
    padding: 21px 0;
    font-size: 20px;
    line-height: 35px;
  }
  #cta .tel .num {
    font-size: 24px;
  }
  #cta .tel .num span {
    font-size: 40px;
  }
  #cta .tel .note {
    font-size: 15px;
    letter-spacing: 0.2em;
  }
  #cta .bnr-shared {
    width: 400px;
  }
  #cta .btn-web {
    width: 300px;
    margin: 30px auto -30px;
  }
  #cta .policy {
    padding: 70px 0 60px;
    margin: 0 auto;
    width: 800px;
    line-height: 27px;
  }
  #cta .policy dt {
    padding-bottom: 20px;
  }
}