@charset "UTF-8";
/*---------- 共通設定 ----------*/
body {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

@media (max-width: 799px) {
  body {
    font-size: 3.2vw;
  }
}

h1, h2, h3, h4, div, p, ul, li, a {
  /* word-break: break-all; */
  /* word-wrap: break-word; */
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-weight: 400;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: bottom;
}
img.pc {display: block;}
img.sp {display: none;}

@media (max-width: 799px) {
  img.pc {display: none;}
  img.sp {display: block !important;}
}
header.mainHeader {
  display: none;
}
div.wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
footer.mainFooter {
  display: none;
}

/*---------- コンテンツ設定 ----------*/
.tpl__content {
  background-color: #202f32;
  padding-bottom: 20px;
}
@media (max-width: 799px) {
  .tpl__content {
    padding-bottom: 2.08333vw;
  }
}

/*---------- ヘッダー要素 ----------*/
.tpl__content_header {
  box-sizing: border-box;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 2;
  width: 960px;
  font-size: 0;
  background-color: #202f32;
  padding: 30px 0;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_header-logo,
.tpl__content_header-hamburger {
  display: inline-block;
  vertical-align: middle;
}
.tpl__content_header-logo {
  width: 100%;
  text-align: left;
}
.tpl__content_header-logo img {
  width: 200px;
}
.tpl__content_header-hamburger {
  cursor: pointer;
  position: absolute;
  top: 23px;
  right: calc((100% - 930px) / 2);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: calc(50px / 2);
  background-color: #202f32;
  transition: background-color .4s;
}
.tpl__content_header-hamburger:hover {
  background-color: #fff;
}
.tpl__content_header-hamburger span {
  position: absolute;
  right: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #85d107;
  transition: opacity .4s, transform .4s;
  margin: auto;
}
.tpl__content_header-hamburger span:nth-of-type(1) {
  top: 13px;
}
.tpl__content_header-hamburger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  opacity: 1;
}
.tpl__content_header-hamburger span:nth-of-type(3) {
  bottom: 13px;
}
.tpl__content_header-hamburger.open span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg)
}
.tpl__content_header-hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.tpl__content_header-hamburger.open span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg)
}
@media (max-width: 799px) {
  .tpl__content_header {
    width: 100%;
    padding: 20px 0;
  }
  .tpl__content_header-logo img {
    width: 140px;
    margin-left: 4.16667vw;
  }
  .tpl__content_header-hamburger {
    top: 8px;
    right: 2.60417vw;
  }
  .tpl__content_header-hamburger:hover {
    background-color: #202f32;
  }
}

/*---------- メニュー要素 ----------*/
.tpl__content_menu {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -250px;
  z-index: 2;
  width: 250px;
  height: 100vh;
  background-color: rgba(0,0,0,.6);
  transition: top .2s ease, right .4s;
  overflow-y: auto;
  padding: 20px;
}
.tpl__content_menu.open {
  right: 0;
}
.tpl__content_menu ul {
  margin-bottom: 40px;
}
.tpl__content_menu li {
  text-align: left;
  margin-bottom: 20px;
}
.tpl__content_menu li.btn {
  margin-bottom: 30px;
}
.tpl__content_menu li:last-child {
  margin-bottom: 0;
}
.tpl__content_menu a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 3px;
  line-height: 1.2;
  transform: scaleY(0.85);
  transition: color .4s;
}
.tpl__content_menu li.btn a {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  border-radius: 5px;
  background-color: #76b60b;
  transform: scaleY(1);
  transition: color .4s, background-color .4s;
  overflow: hidden;
}
.tpl__content_menu li.btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_menu a:hover {
  color: #76b60b;
}
.tpl__content_menu li.btn a::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  content: "";
  width: 16px;
  height: 13px;
  background-image: url("/img/longrain-dinner-winter/icon_blank.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  transition: background-image .4s;
  margin: auto;
}
.tpl__content_menu li.btn a:hover {
  color: #76b60b;
  background-color: #fff;
}
.tpl__content_menu li.btn a:hover::after {
  background-image: url("/img/longrain-dinner-winter/icon_blank_hover.svg");
}
.tpl__content_menu li.btn a span {
  position: absolute;
  top: 56%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_menu-close {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 3px;
  line-height: .72;
  transform: scaleY(0.85);
  transition: color .4s;
  padding-right: 15px;
}
.tpl__content_menu-close::before,
.tpl__content_menu-close::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
  transition: background-color .4s;
}
.tpl__content_menu-close::before {
  transform: translateY(4px) rotate(-45deg);
}
.tpl__content_menu-close::after {
  transform: translateY(4px) rotate(45deg);
}
.tpl__content_menu-close:hover {
  color: #76b60b;
}
.tpl__content_menu-close:hover::before,
.tpl__content_menu-close:hover::after {
  background-color: #76b60b;
}
@media (max-width: 799px) {
  .tpl__content_menu {
    right: -60vw;
    width: 60vw;
    padding: 3.125vw;
  }
  .tpl__content_menu ul {
    margin-bottom: 4.16667vw;
  }
  .tpl__content_menu li {
    margin-bottom: 2.03833vw;
  }
  .tpl__content_menu li.btn {
    margin-bottom: 3.125vw;
  }
  .tpl__content_menu a {
    font-size: 3.4vw;
    line-height: 1.2;
  }
  .tpl__content_menu li.btn a {
    height: 8.33333vw;
    font-size: 3.8vw;
    border-radius: 1.04167vw;
  }
  .tpl__content_menu a:hover {
    color: #fff;
  }
  .tpl__content_menu li.btn a::after {
    right: 1.5vw;
    width: 4.2vw;
    height: 3.7vw;
  }
  .tpl__content_menu li.btn a:hover {
    color: #fff;
    background-color: #85d107;
  }
  .tpl__content_menu li.btn a:hover::after {
    background-image: url("/img/longrain-dinner-winter/icon_blank.svg");
  }
  .tpl__content_menu li.btn a span {
    top: 56%;
  }
  .tpl__content_menu-close {
    font-size: 3.4vw;
    padding-right: 4vw;
  }
  .tpl__content_menu-close::before,
  .tpl__content_menu-close::after {
    width: 4vw;
    height: .20833vw;
  }
  .tpl__content_menu-close::before {
    transform: translateY(.5vw) rotate(-45deg);
  }
  .tpl__content_menu-close::after {
    transform: translateY(.5vw) rotate(45deg);
  }
  .tpl__content_menu-close:hover {
    color: #fff;
  }
  .tpl__content_menu-close:hover::before,
  .tpl__content_menu-close:hover::after {
    background-color: #fff;
  }
}

/*---------- キービジュアル ----------*/
.tpl__content_kv {
  position: relative;
  width: 960px;
  overflow: hidden;
  padding-top: 95px;
  margin-right: auto;
  margin-bottom: 120px;
  margin-left: auto;
}
.tpl__content_kv--wrap {
  position: absolute;
  z-index: 1;
  top: 95px;
  right: 0;
  left: 0;
  width: 100%;
  height: 640px;
  margin: auto;
}
.tpl__content_kv--wrap span {
  position: absolute;
  top: 47%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_kv-text {
  color: #e0f4b5;
  font-size: 64px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  line-height: 1.5;
  letter-spacing: 2px;
  transform: scaleY(0.85);
  text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,.7);
  margin-bottom: 40px;
}
.tpl__content_kv-btn {
  width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_kv-btn a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 70px;
  border-bottom: 5px solid #476f05;
  border-radius: calc(70px / 2);
  background-color: #76b60b;
  overflow: hidden;
  transition: border-bottom .4s, background-color .4s;
}
.tpl__content_kv-btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_kv-btn p {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: center;
  margin-left: 20px;
}
.tpl__content_kv-btn p:nth-of-type(1) {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-top: -3px;
  transition: color .4s;
}
.tpl__content_kv-btn p:nth-of-type(2) {
  color: #76b60b;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  background-color: #fff;
  padding: 1px 2px;
  transition: color .4s, background-color .4s;
}
.tpl__content_kv-btn span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_kv-btn span::before,
.tpl__content_kv-btn span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.tpl__content_kv-btn span::before {
  left: 20px;
  width: 30px;
  height: 30px;
  background-image: url("/img/longrain-dinner-winter/icon_page.png");
  transition: background-image .4s;
}
.tpl__content_kv-btn span::after {
  right: 20px;
  width: 9px;
  height: 16px;
  background-image: url("/img/longrain-dinner-winter/icon_arrow.svg");
  transition: background-image .4s;
}
.tpl__content_kv-btn a:hover {
  border-bottom: 5px solid #76b60b;
  background-color: #fff;
}
.tpl__content_kv-btn a:hover p:nth-of-type(1) {
  color: #76b60b;
}
.tpl__content_kv-btn a:hover p:nth-of-type(2) {
  color: #fff;
  background-color: #76b60b;
}
.tpl__content_kv-btn a:hover span::before {
  background-image: url("/img/longrain-dinner-winter/icon_page_hover.png");
}
.tpl__content_kv-btn a:hover span::after {
  background-image: url("/img/longrain-dinner-winter/icon_arrow_hover.svg");
}
.tpl__content_kv-bg {
  width: 960px;
}
.tpl__content_kv-bg img {
  width: 100%;
}

@media (max-width: 799px) {
  .tpl__content_kv {
    width: 100%;
    padding-top: 66px;
    margin-bottom: 12.5vw;
  }
  .tpl__content_kv--wrap {
    top: 66px;
    height: 66.7vw;
  }
  .tpl__content_kv-text {
    font-size: 7.2vw;
    text-shadow: 0 0 1.0417vw rgba(0,0,0,.7);
    margin-bottom: 2vw;
  }
  .tpl__content_kv-btn {
    width: 76vw;
  }
  .tpl__content_kv-btn a {
    height: 15vw;
    border-bottom: 1vw solid #476f05;
    border-radius: calc(15vw / 2);
  }
  .tpl__content_kv-btn p {
    margin-left: 4vw;
  }
  .tpl__content_kv-btn p:nth-of-type(1) {
    font-size: 3.6vw;
    margin-top: 0;
  }
  .tpl__content_kv-btn p:nth-of-type(2) {
    font-size: 3vw;
    padding: .1vw .5vw;
  }
  .tpl__content_kv-btn span::before {
    left: 4vw;
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_kv-btn span::after {
    right: 4vw;
    width: 2.5vw;
    height: 4.5vw;
  }
  .tpl__content_kv-btn a:hover {
    border-bottom: 1vw solid #476f05;
    background-color: #76b60b;
  }
  .tpl__content_kv-btn a:hover p:nth-of-type(1) {
    color: #fff;
  }
  .tpl__content_kv-btn a:hover p:nth-of-type(2) {
    color: #76b60b;
    background-color: #fff;
  }
  .tpl__content_kv-btn a:hover span::before {
    background-image: url("/img/longrain-dinner-winter/icon_page.png");
  }
  .tpl__content_kv-btn a:hover span::after {
    background-image: url("/img/longrain-dinner-winter/icon_arrow.svg");
  }
  .tpl__content_kv-bg {
    width: 100%;
  }
}

/*---------- INFORMATION ----------*/
.tpl__content_info {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_info h2 {
  position: relative;
  height: 64px;
  color: #85d107;
  font-size: 42px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 4px;
  text-align: center;
  transform: scaleY(0.85);
  margin-bottom: 30px;
}
.tpl__content_info h2 span {
  position: relative;
  z-index: 1;
  background-color: #202f32;
  padding: 0 40px;
}
.tpl__content_info h2::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2d464d;
  margin: auto;
}
.tpl__content_info-photo {
  margin-bottom: 40px;
}
.tpl__content_info-photo img {
  width: 100%;
}
.tpl__content_info-text {
  color: #e0f4b5;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: left;
}
.tpl__content_info-text span {
  font-size: 18px;
}
.tpl__content_info-text span.text-s {
  font-size: 12px;
}
.tpl__content_info-text span.text-red {
  color: #f00;
}
.tpl__content_info-text a {
  color: #e0f4b5;
  text-decoration: underline;
  transition: opacity .4s;
}
.tpl__content_info-text a:hover {
  opacity: .7;
}
@media (max-width: 799px) {
  .tpl__content_info {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_info h2 {
    height: 9vw;
    font-size: 6vw;
    margin-bottom: 3.125vw;
  }
  .tpl__content_info h2 span {
    padding: 0 4.16667vw;
  }
  .tpl__content_info h2::before {
    height: .20833vw;
  }
  .tpl__content_info-photo {
    margin-bottom: 4.16666vw;
  }
  .tpl__content_info-text {
    width: calc(100% - 10vw);
    font-size: 3.2vw;
    margin-right: auto;
    margin-left: auto;
  }
  .tpl__content_info-text span {
    font-size: 3.6vw;
  }
  .tpl__content_info-text span.text-s {
    font-size: 2.8vw;
  }
  .tpl__content_info-text a:hover {
    opacity: 1;
  }
}

/*---------- ABOUT LONGRAIN ----------*/
.tpl__content_about {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_about h2 {
  position: relative;
  height: 64px;
  color: #85d107;
  font-size: 42px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 4px;
  text-align: center;
  transform: scaleY(0.85);
  margin-bottom: 30px;
}
.tpl__content_about h2 span {
  position: relative;
  z-index: 1;
  background-color: #202f32;
  padding: 0 40px;
}
.tpl__content_about h2::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2d464d;
  margin: auto;
}
.tpl__content_about-slide {
  position: relative;
  width: 960px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
}
.tpl__content_about-slide img {
  width: 100%;
}
.tpl__content_about-slide .slick-dots {
  position: absolute;
  font-size: 0;
  right: 0;
  bottom: 20px;
  left: 0;
}
.tpl__content_about-slide .slick-dots li {
  cursor: pointer;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  border-radius: 10px;
  background-color: #2d464d;
  opacity: .7;
  margin: 0 14px;
}
.tpl__content_about-slide .slick-dots li.slick-active {
  opacity: 1;
  background-color: #85d107;
}
.tpl__content_about-text {
  color: #e0f4b5;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  letter-spacing: .05em;
  line-height: 1.8;
}
@media (max-width: 799px) {
  .tpl__content_about {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_about h2 {
    height: 9vw;
    font-size: 6vw;
    margin-bottom: 3.125vw;
  }
  .tpl__content_about h2 span {
    padding: 0 4.16667vw;
  }
  .tpl__content_about h2::before {
    height: .20833vw;
  }
  .tpl__content_about-slide {
    width: 100%;
    margin-bottom: 4.16667vw;
  }
  .tpl__content_about-slide .slick-dots {
    bottom: 2.08333vw;
  }
  .tpl__content_about-slide .slick-dots li {
    width: 2.669vw;
    height: 2.669vw;
    border-radius: calc(2.669vw / 2);
    margin: 0 1.5vw;
  }
  .tpl__content_about-text {
    width: calc(100% - 10vw);
    font-size: 3.2vw;
    margin-right: auto;
    margin-left: auto;
  }
}

/*---------- PREMIUM LUNCH COURSE ----------*/
.tpl__content_dinner {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_dinner h2 {
  position: relative;
  height: 64px;
  color: #85d107;
  font-size: 42px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 4px;
  text-align: center;
  transform: scaleY(0.85);
  margin-bottom: 30px;
}
.tpl__content_dinner h2 span {
  position: relative;
  z-index: 1;
  background-color: #202f32;
  padding: 0 40px;
}
.tpl__content_dinner h2::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2d464d;
  margin: auto;
}
.tpl__content_dinner-slide {
  position: relative;
  width: 790px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_dinner-slide .slick-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 50px;
  margin: auto;
}
.tpl__content_dinner-slide .prev-arrow {
  left: -50px;
  transform: scale(-1,1);
}
.tpl__content_dinner-slide .next-arrow {
  right: -50px;
}
.tpl__content_dinner-slide img {
  width: 100%;
}
.tpl__content_dinner-slide--wrap {
  box-sizing: border-box;
  width: 790px;
  background-color: #505050;
  padding: 30px 24px;
  margin: 0 auto 40px;
}
.tpl__content_dinner-slide-subname {
  color: #85d107;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  margin-bottom: -5px;
}
.tpl__content_dinner-slide-name {
  position: relative;
  color: #85d107;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 3px;
  text-align: left;
  transform: scaleY(0.85);
  margin-bottom: 10px;
}
.tpl__content_dinner-slide-name.jp {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  transform: scaleY(0.9);
}
.tpl__content_dinner-slide-text {
  color: #e0f4b5;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  letter-spacing: .05em;
  line-height: 1.8;
}
.tpl__content_dinner-slide-text span {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.tpl__content_dinner-btn {
  width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_dinner-btn a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 70px;
  border-bottom: 5px solid #476f05;
  border-radius: calc(70px / 2);
  background-color: #76b60b;
  overflow: hidden;
  transition: border-bottom .4s, background-color .4s;
}
.tpl__content_dinner-btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_dinner-btn p {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: center;
  margin-left: 20px;
}
.tpl__content_dinner-btn p:nth-of-type(1) {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-top: -3px;
  transition: color .4s;
}
.tpl__content_dinner-btn p:nth-of-type(2) {
  color: #76b60b;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  background-color: #fff;
  padding: 1px 2px;
  transition: color .4s, background-color .4s;
}
.tpl__content_dinner-btn span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_dinner-btn span::before,
.tpl__content_dinner-btn span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.tpl__content_dinner-btn span::before {
  left: 20px;
  width: 30px;
  height: 30px;
  background-image: url("/img/longrain-dinner-winter/icon_page.png");
  transition: background-image .4s;
}
.tpl__content_dinner-btn span::after {
  right: 20px;
  width: 9px;
  height: 16px;
  background-image: url("/img/longrain-dinner-winter/icon_arrow.svg");
  transition: background-image .4s;
}
.tpl__content_dinner-btn a:hover {
  border-bottom: 5px solid #76b60b;
  background-color: #fff;
}
.tpl__content_dinner-btn a:hover p:nth-of-type(1) {
  color: #76b60b;
}
.tpl__content_dinner-btn a:hover p:nth-of-type(2) {
  color: #fff;
  background-color: #76b60b;
}
.tpl__content_dinner-btn a:hover span::before {
  background-image: url("/img/longrain-dinner-winter/icon_page_hover.png");
}
.tpl__content_dinner-btn a:hover span::after {
  background-image: url("/img/longrain-dinner-winter/icon_arrow_hover.svg");
}
@media (max-width: 799px) {
  .tpl__content_dinner {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_dinner h2 {
    height: 9vw;
    font-size: 6vw;
    letter-spacing: 2px;
    margin-bottom: 3.125vw;
  }
  .tpl__content_dinner h2 span {
    padding: 0 1.5vw;
  }
  .tpl__content_dinner h2::before {
    height: .20833vw;
  }
  .tpl__content_dinner-slide {
    width: calc(100% - 15vw);
  }
  .tpl__content_dinner-slide .slick-arrow {
    width: 4.16666vw;
    height: 8.68421vw;
  }
  .tpl__content_dinner-slide .prev-arrow {
    left: -6vw;
    transform: scale(-1,1);
  }
  .tpl__content_dinner-slide .next-arrow {
    right: -6vw;
  }
  .tpl__content_dinner-slide-photo {
    margin-bottom: 3.125vw;
  }
  .tpl__content_dinner-slide--wrap {
    width: calc(100% - 15vw);
    padding: 3.125vw;
    margin: 0 auto 6vw;
  }
  .tpl__content_dinner-slide-subname {
    font-size: 3.6vw;
    margin-bottom: -.5vw;
  }
  .tpl__content_dinner-slide-name {
    font-size: 5vw;
    margin-bottom: 1.04166vw;
  }
  .tpl__content_dinner-slide-name.jp {
    font-size: 4.7vw;
  }
  .tpl__content_dinner-slide-text {
    font-size: 3vw;
  }
  .tpl__content_dinner-slide-text span {
    font-size: 3.4vw;
  }
  .tpl__content_dinner-btn {
    width: 76vw;
  }
  .tpl__content_dinner-btn a {
    height: 15vw;
    border-bottom: 1vw solid #476f05;
    border-radius: calc(15vw / 2);
  }
  .tpl__content_dinner-btn p {
    margin-left: 4vw;
  }
  .tpl__content_dinner-btn p:nth-of-type(1) {
    font-size: 3.6vw;
    margin-top: 0;
  }
  .tpl__content_dinner-btn p:nth-of-type(2) {
    font-size: 3vw;
    padding: .1vw .5vw;
  }
  .tpl__content_dinner-btn span::before {
    left: 4vw;
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_dinner-btn span::after {
    right: 4vw;
    width: 2.5vw;
    height: 4.5vw;
  }
  .tpl__content_dinner-btn a:hover {
    border-bottom: 1vw solid #476f05;
    background-color: #76b60b;
  }
  .tpl__content_dinner-btn a:hover p:nth-of-type(1) {
    color: #fff;
  }
  .tpl__content_dinner-btn a:hover p:nth-of-type(2) {
    color: #76b60b;
    background-color: #fff;
  }
  .tpl__content_dinner-btn a:hover span::before {
    background-image: url("/img/longrain-dinner-winter/icon_page.png");
  }
  .tpl__content_dinner-btn a:hover span::after {
    background-image: url("/img/longrain-dinner-winter/icon_arrow.svg");
  }
}

/*---------- GALLERY ----------*/
.tpl__content_gallery {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_gallery h2 {
  position: relative;
  height: 64px;
  color: #85d107;
  font-size: 42px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 4px;
  text-align: center;
  transform: scaleY(0.85);
  margin-bottom: 30px;
}
.tpl__content_gallery h2 span {
  position: relative;
  z-index: 1;
  background-color: #202f32;
  padding: 0 40px;
}
.tpl__content_gallery h2::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2d464d;
  margin: auto;
}
.tpl__content_gallery-list {
  font-size: 0;
}
.tpl__content_gallery-list div {
  display: inline-block;
  width: 320px;
}
.tpl__content_gallery-list a {
  display: block;
  width: 100%;
  height: 213px;
  overflow: hidden;
}
.tpl__content_gallery-list a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.tpl__content_gallery-list a:hover img {
  transform: scale(1.1);
}
.lum-lightbox {
  z-index: 10001;
}
.lum-lightbox-inner img.lum-img {
  max-width: 90%;
}
@media (max-width: 799px) {
  .tpl__content_gallery {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_gallery h2 {
    height: 9vw;
    font-size: 6vw;
    margin-bottom: 3.125vw;
  }
  .tpl__content_gallery h2 span {
    padding: 0 4.16667vw;
  }
  .tpl__content_gallery h2::before {
    height: .20833vw;
  }
  .tpl__content_gallery-list div {
    width: calc(100% / 2);
  }
  .tpl__content_gallery-list a {
    height: 50vw;
  }
  .tpl__content_gallery-list a:hover img {
    transform: scale(1.0);
  }
  .lum-lightbox-inner img.lum-img {
    max-width: 100%;
  }
  .lum-gallery-button:after {
    width: 7vw !important;
    height: 7vw !important;
  }
}

/*---------- CHEFFS MESSAGE ----------*/
.tpl__content_message {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_message h2 {
  position: relative;
  height: 64px;
  color: #85d107;
  font-size: 42px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 4px;
  text-align: center;
  transform: scaleY(0.85);
  margin-bottom: 30px;
}
.tpl__content_message h2 span {
  position: relative;
  z-index: 1;
  background-color: #202f32;
  padding: 0 40px;
}
.tpl__content_message h2::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2d464d;
  margin: auto;
}
.tpl__content_message-movie iframe {
  width: 100%;
  height: 408px;
  border: none;
}
@media (max-width: 799px) {
  .tpl__content_message {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_message h2 {
    height: 9vw;
    font-size: 6vw;
    margin-bottom: 3.125vw;
  }
  .tpl__content_message h2 span {
    padding: 0 4.16667vw;
  }
  .tpl__content_message h2::before {
    height: .20833vw;
  }
  .tpl__content_message-movie iframe {
    height: 65vw;
  }
}

/*---------- 住所関連 ----------*/
.tpl__content_access {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_access h2 {
  position: relative;
  height: 64px;
  color: #85d107;
  font-size: 42px;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
  letter-spacing: 4px;
  text-align: center;
  transform: scaleY(0.85);
  margin-bottom: 30px;
}
.tpl__content_access h2 span {
  position: relative;
  z-index: 1;
  background-color: #202f32;
  padding: 0 40px;
}
.tpl__content_access h2::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2d464d;
  margin: auto;
}
.tpl__content_access-map {
  margin-bottom: 20px;
}
.tpl__content_access-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%);
}
.tpl__content_access-text {
  width: 860px;
  color: #e0f4b5;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: left;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}
.tpl__content_access-text span {
  display: block;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.4;
  transform: scaleY(0.85);
}
@media (max-width: 799px) {
  .tpl__content_access {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_access h2 {
    height: 9vw;
    font-size: 6vw;
    margin-bottom: 3.125vw;
  }
  .tpl__content_access h2 span {
    padding: 0 4.16667vw;
  }
  .tpl__content_access h2::before {
    height: .20833vw;
  }
  .tpl__content_access-map {
    margin-bottom: 2.08333vw;
  }
  .tpl__content_access-map iframe {
    height: 62.5vw;
  }
  .tpl__content_access-text {
    width: calc(100% - 10vw);
    font-size: 3.6vw;
    margin-bottom: 3.125vw;
  }
  .tpl__content_access-text span {
    letter-spacing: 2px;
  }
}

/*---------- PDF ----------*/
.tpl__content_pdf {
  width: 960px;
  font-size: 0;
  margin-right: auto;
  margin-bottom: 120px;
  margin-left: auto;
}
.tpl__content_pdf div {
  display: inline-block;
  width: calc(100% / 2);
  vertical-align: top;
  background-color: #000;
}
.tpl__content_pdf a {
  position: relative;
  width: 100%;
}
.tpl__content_pdf a.pc {
  display: block;
}
.tpl__content_pdf a.sp {
  display: none;
}
.tpl__content_pdf span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_pdf p {
  pointer-events: none;
  color: #85d107;
  font-weight: 700;
  font-family: 'Hind', sans-serif;
}
.tpl__content_pdf-name {
  font-size: 32px;
  letter-spacing: 4px;
  text-align: center;
  transform: scaleY(0.85);
}
.tpl__content_pdf-download {
  position: relative;
  font-size: 12px;
  letter-spacing: 2px;
  padding-bottom: 18px;
  margin-top: 10px;
}
.tpl__content_pdf-download::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/img/longrain-dinner-winter/icon_download.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.tpl__content_pdf a img {
  width: 100%;
  height: 100%;
  opacity: .5;
  object-fit: cover;
  transition: opacity .7s, transform .7s;
}
.tpl__content_pdf a:hover img {
  opacity: .8;
  transform: scale(1.05);
}
.modaal-container {
  height: calc(100% - 10vh) !important;
}
@media (max-width: 799px) {
  .tpl__content_pdf {
    width: 100%;
    margin-bottom: 12.5vw;
  }
  .tpl__content_pdf a.pc {
    display: none;
  }
  .tpl__content_pdf a.sp {
    display: block;
  }
  .tpl__content_pdf-name {
    font-size: 7vw;
  }
  .tpl__content_pdf-download {
    font-size: 3.2vw;
    padding-bottom: 4vw;
    margin-top: 0;
  }
  .tpl__content_pdf-download::after {
    width: 3.4vw;
    height: 3.6vw;
  }
  .tpl__content_pdf a:hover img {
    opacity: .5;
    transform: scale(1);
  }
}

/*---------- クロージングメッセージ ----------*/
.tpl__content_closing {
  width: 960px;
  margin-right: auto;
  margin-bottom: 120px;
  margin-left: auto;
}
.tpl__content_closing p {
  color: #e0f4b5;
  font-size: 28px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 4px;
  line-height: 2;
}
@media (max-width: 799px) {
  .tpl__content_closing {
    width: calc(100% - 10vw);
    margin-bottom: 12.5vw;
  }
  .tpl__content_closing p {
    font-size: 5.6vw;
  }
}

/*---------- 最下部ボタン ----------*/
.tpl__content_foot {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_foot-btn {
  width: 400px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_foot-btn a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 70px;
  border-bottom: 5px solid #476f05;
  border-radius: calc(70px / 2);
  background-color: #76b60b;
  overflow: hidden;
  transition: border-bottom .4s, background-color .4s;
}
.tpl__content_foot-btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_foot-btn p {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: center;
  margin-left: 20px;
}
.tpl__content_foot-btn p:nth-of-type(1) {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-top: -3px;
  transition: color .4s;
}
.tpl__content_foot-btn p:nth-of-type(2) {
  color: #76b60b;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  background-color: #fff;
  padding: 1px 7px;
  transition: color .4s, background-color .4s;
}
.tpl__content_foot-btn span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_foot-btn span::before,
.tpl__content_foot-btn span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.tpl__content_foot-btn span::before {
  left: 20px;
  width: 30px;
  height: 30px;
  background-image: url("/img/longrain-dinner-winter/icon_page.png");
  transition: background-image .4s;
}
.tpl__content_foot-btn span::after {
  right: 20px;
  width: 9px;
  height: 16px;
  background-image: url("/img/longrain-dinner-winter/icon_arrow.svg");
  transition: background-image .4s;
}
.tpl__content_foot-btn a:hover {
  border-bottom: 5px solid #76b60b;
  background-color: #fff;
}
.tpl__content_foot-btn a:hover p:nth-of-type(1) {
  color: #76b60b;
}
.tpl__content_foot-btn a:hover p:nth-of-type(2) {
  color: #fff;
  background-color: #76b60b;
}
.tpl__content_foot-btn a:hover span::before {
  background-image: url("/img/longrain-dinner-winter/icon_page_hover.png");
}
.tpl__content_foot-btn a:hover span::after {
  background-image: url("/img/longrain-dinner-winter/icon_arrow_hover.svg");
}
.tpl__content_foot-sns {
  width: 270px;
  font-size: 0;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_foot-sns div {
  display: inline-block;
  width: 50px;
  vertical-align: top;
  margin-right: 20px;
  margin-left: 20px;
}
.tpl__content_foot-sns a {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: calc(50px / 2);
  background-color: #76b60b;
  transition: background-color .4s;
}
.tpl__content_foot-sns a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 25px;
  background-size: 100%;
  background-repeat: no-repeat;
  transition: background-image .4s;
  margin: auto;
}
.tpl__content_foot-sns a.instagram::after {
  background-image: url("/img/longrain-dinner-winter/icon_instagram.svg");
}
.tpl__content_foot-sns a.home::after {
  background-image: url("/img/longrain-dinner-winter/icon_home.svg");
}
.tpl__content_foot-sns a.tel::after {
  background-image: url("/img/longrain-dinner-winter/icon_tel.svg");
}
.tpl__content_foot-sns a:hover {
  background-color: #fff;
}
.tpl__content_foot-sns a.instagram:hover::after {
  background-image: url("/img/longrain-dinner-winter/icon_instagram_hover.svg");
}
.tpl__content_foot-sns a.home:hover::after {
  background-image: url("/img/longrain-dinner-winter/icon_home_hover.svg");
}
.tpl__content_foot-sns a.tel:hover::after {
  background-image: url("/img/longrain-dinner-winter/icon_tel_hover.svg");
}
@media (max-width: 799px) {
  .tpl__content_foot {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_foot-btn {
    width: 76vw;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_foot-btn a {
    height: 15vw;
    border-bottom: 1vw solid #476f05;
    border-radius: calc(15vw / 2);
  }
  .tpl__content_foot-btn p {
    margin-left: 4vw;
  }
  .tpl__content_foot-btn p:nth-of-type(1) {
    font-size: 3.6vw;
    margin-top: 0;
  }
  .tpl__content_foot-btn p:nth-of-type(2) {
    font-size: 3vw;
    padding: .1vw .5vw;
  }
  .tpl__content_foot-btn span::before {
    left: 4vw;
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_foot-btn span::after {
    right: 4vw;
    width: 2.5vw;
    height: 4.5vw;
  }
  .tpl__content_foot-btn a:hover {
    border-bottom: 1vw solid #476f05;
    background-color: #76b60b;
  }
  .tpl__content_foot-btn a:hover p:nth-of-type(1) {
    color: #fff;
  }
  .tpl__content_foot-btn a:hover p:nth-of-type(2) {
    color: #76b60b;
    background-color: #fff;
  }
  .tpl__content_foot-btn a:hover span::before {
    background-image: url("/img/longrain-dinner-winter/icon_page.png");
  }
  .tpl__content_foot-btn a:hover span::after {
    background-image: url("/img/longrain-dinner-winter/icon_arrow.svg");
  }
  .tpl__content_foot-sns {
    width: 100%;
    text-align: center;
  }
  .tpl__content_foot-sns div {
    width: 12vw;
    margin-right: 2.08333vw;
    margin-left: 2.08333vw;
  }
  .tpl__content_foot-sns a {
    height: 12vw;
    border-radius: calc(12vw / 2);
  }
  .tpl__content_foot-sns a::after {
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_foot-sns a:hover {
    background-color: #85d107;
  }
  .tpl__content_foot-sns a.instagram:hover::after {
    background-image: url("/img/longrain-dinner-winter/icon_instagram.svg");
  }
  .tpl__content_foot-sns a.home:hover::after {
    background-image: url("/img/longrain-dinner-winter/icon_home.svg");
  }
  .tpl__content_foot-sns a.tel:hover::after {
    background-image: url("/img/longrain-dinner-winter/icon_tel.svg");
  }
}

/*---------- ページTOPに戻る矢印 ----------*/
.tpl__content_totop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 45px;
  opacity: 0;
  text-align: center;
  transition: top .7s, opacity .4s;
  margin: auto;
}
.tpl__content_totop a {
  pointer-events: none;
  display: block;
}
.tpl__content_totop.scroll {
  opacity: 1;
}
.tpl__content_totop.scroll a {
  pointer-events: painted;
}
.tpl__content_totop:hover {
  top: -40px;
}
.tpl__content_totop img {
  width: 7px;
  height: 45px;
}
@media (max-width: 799px) {
  .tpl__content_totop {
    width: 35px;
    height: 56px;
  }
  .tpl__content_totop:hover {
    top: 0;
  }
  .tpl__content_totop img {
    width: 8px;
    height: 56px;
  }
}

/*---------- フッター要素 ----------*/
.tpl__content_footer {
  width: calc(100% - 130px);
  padding-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_footer-copyright,
.tpl__content_footer-link {
  float: right;
  width: 50%;
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
.tpl__content_footer-copyright {
  color: #e0f4b5;
  text-align: left;
}
.tpl__content_footer-link {
  text-align: right;
}
.tpl__content_footer-link a {
  color: #e0f4b5;
  transition: opacity .4s;
}
.tpl__content_footer-link a:hover {
  opacity: .7;
}
@media (max-width: 799px) {
  .tpl__content_footer {
    width: 100%;
    padding-bottom: 2.08333vw;
  }
  .tpl__content_footer-copyright,
  .tpl__content_footer-link {
    float: none;
    width: 100%;
    font-size: 2.8vw;
  }
  .tpl__content_footer-copyright {
    text-align: center;
  }
  .tpl__content_footer-link {
    text-align: center;
    margin-bottom: .52088vw;
  }
  .tpl__content_footer-link a:hover {
    opacity: 1;
  }
}

/*---------- アニメーション詳細 ----------*/
@-webkit-keyframes shinyshiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
