@charset "UTF-8";
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.fadein {
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(30px);
}
.fadein.active {
  opacity: 1;
  transform: translateY(0px);
}

html {
  font-size: 65%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
html a {
  transition: opacity 0.3s;
}
html a:hover {
  opacity: 0.7;
}

* {
  min-height: 0;
  min-width: 0;
}

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

.tbdisp {
  display: none !important;
}
@media screen and (max-width: 1060px) {
  .tbdisp {
    display: block !important;
  }
}

.spdisp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .spdisp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .spleft {
    text-align: left !important;
  }
}

body {
  color: #1D2320;
  font-family: "HGPGothicM", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", sans-serif;
  line-height: normal;
  font-size: 1.6rem;
  position: relative;
  overflow-x: hidden;
}
body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.header {
  background-color: #224025;
  color: #fff;
  display: flex;
  padding: 7px 25px;
  align-items: stretch;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100vw;
  box-sizing: border-box;
}
@media screen and (max-width: 1060px) {
  .header {
    padding: 6px 16px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 15px;
    padding-left: 10px;
  }
}
.header_logo {
  width: 170px;
  display: flex;
}
@media screen and (max-width: 1060px) {
  .header_logo {
    width: 150px;
  }
}
.header_menu {
  margin-left: auto;
  display: flex;
  gap: 1em;
  margin-right: min(1em, 30px);
  align-items: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 1060px) {
  .header_menu {
    margin-right: 15px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .header_menu.spdisp {
    transition: all 0.3s;
    margin: auto;
    right: -15px;
    width: 170px;
    position: absolute;
    top: 43px;
    padding: 0px 15px 20px;
    box-sizing: border-box;
    transform: translateY(-600px);
  }
  .header_menu.spdisp::before {
    content: "";
    width: 100%;
    position: absolute;
    background: #1D2320;
    opacity: 0.7;
    display: block;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
  }
  .header_menu.spdisp.active {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .header_menu_item {
    padding: 16px 0;
    text-align: center;
    display: block;
    font-size: 1.2rem;
    border-bottom: 1px solid #fff;
  }
}
.header_btn {
  background-color: #D2CEBE;
  color: #1D2320;
  padding: 9px 14px;
  margin: 0 8px;
  margin-left: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1060px) {
  .header_btn {
    font-size: 1.4rem;
    padding: 9px 5px;
    margin: 0 4px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .header_btn {
    text-align: center;
    font-size: 1.2rem;
    margin-left: auto;
    padding: 3px 8px;
    min-height: 29px;
    line-height: 80%;
    margin-right: 15px;
  }
}

.mv {
  /*@include minq(1200px){
  max-height: 540px;
  overflow: hidden;
  }*/
  position: relative;
}
.mv:after {
  content: "豊かな自然と戦略性が共鳴する、\a​ひとつ上の一日を";
  white-space: pre;
  position: absolute;
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3rem;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 60px;
  z-index: 90;
  height: 1em;
  pointer-events: none;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv:after {
    font-size: 2rem;
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    min-height: 250px;
  }
}
.mv .img_wrap {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv .img_wrap {
    min-height: 250px;
  }
}
.mv .img_wrap img {
  min-height: 300px;
  height: 100%;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: left;
  width: 100%;
  transform: scale(1);
  animation: zoom 10s linear forwards;
}
.mv div {
  position: relative;
}
.mv img {
  width: 100%;
}

.sec {
  color: #fff;
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto 100px;
  padding-top: 30px;
  padding-bottom: 40px;
  box-sizing: border-box;
}
.sec:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1060px) {
  .sec {
    width: 100%;
    padding: 30px 10px 40px;
  }
}
@media screen and (max-width: 768px) {
  .sec {
    padding: 0 20px 25px;
    width: 100%;
    margin-bottom: 65px;
  }
}
.sec:before {
  content: "";
  width: 990px;
  height: 100%;
  background: #224025;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sec:before {
    width: calc(100% - 40px);
  }
}
.sec.no-back {
  max-width: 990px;
  color: #1D2320;
}
.sec.no-back:before {
  display: none;
}
.sec.no-back.content_box {
  padding: 90px 60px;
  margin-bottom: 0;
}
@media screen and (max-width: 1060px) {
  .sec.no-back.content_box {
    padding: 90px 30px;
  }
}
@media screen and (max-width: 768px) {
  .sec.no-back.content_box {
    padding: 45px 20px;
  }
}
.sec > * {
  position: relative;
  z-index: 1;
}
.sec_ttl {
  font-family: georgiapro, sans-serif;
  font-size: 3.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec_ttl {
    font-size: 2.1rem;
    margin-bottom: 0;
  }
}
.sec_box {
  column-gap: 40px;
  width: 730px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-left: 260px;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 1060px) {
  .sec_box {
    width: 95%;
    padding-left: max(250px, 10%);
  }
}
@media screen and (max-width: 768px) {
  .sec_box {
    display: block;
    padding: 0 15px;
    width: auto;
  }
}
.sec_box_img {
  width: 390px;
  aspect-ratio: 193/140;
  overflow: hidden;
  height: auto;
  object-fit: cover;
  position: absolute;
  left: -167px;
}
@media screen and (max-width: 1060px) {
  .sec_box_img {
    width: 250px;
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .sec_box_img {
    position: relative;
    width: 198px;
    left: -7px;
    bottom: 20px;
  }
}
.sec_box:not(:last-of-type) {
  margin-bottom: 55px;
}
.sec_box.right {
  padding-right: 260px;
  padding-left: 0;
}
@media screen and (max-width: 1060px) {
  .sec_box.right {
    padding-right: max(250px, 10%);
  }
}
@media screen and (max-width: 768px) {
  .sec_box.right {
    display: block;
    padding: 0 15px;
  }
}
.sec_box.right .sec_box_img {
  right: -167px;
  left: auto;
}
@media screen and (max-width: 1060px) {
  .sec_box.right .sec_box_img {
    right: -20px;
  }
}
@media screen and (max-width: 768px) {
  .sec_box.right .sec_box_img {
    right: 0;
  }
}
.sec_box_ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  align-self: end;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .sec_box_ttl {
    font-size: 1.6rem;
    margin-top: 25px;
  }
}
.sec_box_txt {
  line-height: 1.625;
  padding-left: 1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .sec_box_txt {
    font-size: 1.2rem;
  }
}

.top {
  position: relative;
}
.top_banner {
  margin: 0 auto 120px;
  width: 730px;
  display: block;
}
@media screen and (max-width: 768px) {
  .top_banner {
    width: 385px;
    max-width: 90%;
    margin: 0 auto 40px;
  }
}
.top_news {
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 115px;
  gap: 160px;
  max-width: 790px;
  margin: 0 auto;
}
@media screen and (max-width: 1060px) {
  .top_news {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .top_news {
    height: auto;
    gap: 25px;
    padding: 20px 25px;
    display: grid;
    grid-template-columns: 4em auto;
  }
}
.top_news_ttl {
  margin-bottom: 0;
}
.top_news_link {
  display: block;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .top_news_link {
    font-size: 1.2rem;
  }
}
.top_course .sec_box.left {
  margin-bottom: 95px;
}
@media screen and (max-width: 1060px) {
  .top_course .sec_box.left {
    width: 95%;
    padding-left: max(250px, 10%);
  }
}
@media screen and (max-width: 798px) {
  .top_course .sec_box.left {
    width: 99%;
  }
}
@media screen and (max-width: 768px) {
  .top_course .sec_box.left {
    margin-bottom: 25px;
    width: auto;
    padding: 0 15px;
  }
}
.top_course .sec_box.left .sec_box_img {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top_course .sec_box.left .sec_box_img {
    bottom: 20px;
  }
}
.top_course .sec_box.left .sec_box_txt {
  margin-right: -5%;
}
@media screen and (max-width: 1060px) {
  .top_course .sec_box.left .sec_box_txt {
    margin: auto;
  }
}
.top_course .sec_box.right {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .top_course .sec_box.right {
    margin-bottom: 25px;
    text-align: right;
  }
  .top_course .sec_box.right .sec_box_img {
    right: 0;
    bottom: auto;
    top: 0;
  }
  .top_course .sec_box.right .sec_box_ttl {
    margin-top: 15px;
  }
  .top_course .sec_box.right .sec_box_container {
    text-align: left;
  }
}
.top_restaurant .sec_box.left .sec_box_img {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top_restaurant .sec_box.left .sec_box_img {
    bottom: 20px;
  }
}
.top_restaurant_img {
  display: flex;
  column-gap: 16px;
  margin-top: 40px;
  margin-bottom: -80px;
}
@media screen and (max-width: 768px) {
  .top_restaurant_img {
    gap: 0;
    width: 100vw;
    margin: 0 -20px;
    margin-top: 25px;
  }
}
.top_facility {
  padding-bottom: 0;
  margin-bottom: 50px;
}
.top_facility .sec_box:not(:last-of-type) {
  margin-bottom: calc(110px + 1em);
}
@media screen and (max-width: 768px) {
  .top_facility .sec_box:not(:last-of-type) {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .top_facility .sec_box:first-child .sec_box_container {
    margin-top: -40px;
  }
  .top_facility .sec_box:not(:first-child) .sec_box_img {
    bottom: 0;
  }
  .top_facility .sec_box.right {
    text-align: right;
  }
  .top_facility .sec_box.right .sec_box_container {
    text-align: left;
  }
  .top_facility .sec_box_ttl {
    margin-top: 15px;
  }
}
.top_facility_img {
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .top_facility_img {
    gap: 0;
    width: 100vw;
    margin: 0 -20px;
    margin-top: 25px;
    display: block;
  }
}
.top_pick {
  color: #1D2320;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 1060px) {
  .top_pick {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .top_pick {
    margin-bottom: 45px;
  }
}
.top_pick_ttl {
  color: #224025;
}
.top_pick_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
}
@media screen and (max-width: 768px) {
  .top_pick_box {
    grid-template-columns: auto;
    max-width: 300px;
    margin: 25px auto 0;
    gap: 25px;
  }
}
.top_pick_box_link {
  display: grid;
  position: relative;
  overflow: hidden;
}
.top_pick_box_link img {
  transition: all 0.3s;
}
.top_pick_box_link:hover img {
  transform: scale(1.2);
}
.top_pick_box_link_txt {
  background: #1D2320;
  color: #fff;
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  display: block;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top_pick_box_link_txt {
    font-size: 1.2rem;
    padding: 8px 0;
  }
}
.top_pick::before {
  display: none;
}
.top_info {
  color: #1D2320;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top_info {
    padding: 0 20px;
  }
}
.top_info:before {
  display: none;
}
.top_info_ttl {
  margin-bottom: 50px;
  color: #224025;
}
@media screen and (max-width: 768px) {
  .top_info_ttl {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
.top_info_box {
  width: 442px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top_info_box {
    width: 100%;
  }
}
.top_info_box_link {
  display: grid;
  grid-template-columns: 90px auto;
  gap: 20px;
  justify-content: start;
  font-size: 1.6rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .top_info_box_link {
    font-size: 1.2rem;
    grid-template-columns: 65px auto;
    gap: 10px;
  }
}
.top_info_box_link_ttl {
  letter-spacing: 0.05em;
}
.top_info_link {
  margin-top: 30px;
  position: relative;
  display: inline-flex;
  gap: 1em;
}
.top_info_link i {
  transition: all 0.3s;
}
.top_info_link:hover i {
  transform: translateX(5px);
}
@media screen and (max-width: 768px) {
  .top_info_link {
    margin-top: 15px;
    font-size: 1.2rem;
  }
}
.top_info_link:after {
  content: "";
  width: 0%;
  height: 2px;
  background: #1D2320;
  display: block;
  position: absolute;
  bottom: -2px;
  transition: all 0.3s;
}
.top_info_link:hover:after {
  width: 100%;
}

.wrapper {
  background-color: #D2CEBE;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 45px 0;
  }
}

.btn {
  font-size: 1.8rem;
  font-family: georgiapro, sans-serif;
  text-align: center;
  border-radius: 20px;
  margin: 50px auto 0;
  padding: 9px 60px;
  border: 1px solid #fff;
  display: block;
  width: fit-content;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.3rem;
    margin: 25px auto 0;
    padding: 5px 30px;
  }
}

.footer_menu {
  background: #224025;
  color: #fff;
  display: flex;
  gap: 2em;
  justify-content: center;
  padding: 30px 10px;
}
@media screen and (max-width: 1060px) {
  .footer_menu {
    gap: 1em;
  }
}
@media screen and (max-width: 768px) {
  .footer_menu {
    font-size: 1.2rem;
    gap: 1em 2em;
    display: grid;
    grid-template-columns: repeat(4, auto);
    text-align: center;
    padding: 20px;
  }
}
.footer_etc {
  background: #1D2320;
  color: #fff;
  text-align: center;
  padding: 40px 10px;
}
@media screen and (max-width: 768px) {
  .footer_etc {
    padding: 20px 40px;
  }
}
.footer_etc_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1060px) {
  .footer_etc_menu.pcdisp {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .footer_etc_menu.tbdisp {
    display: flex !important;
  }
}
@media screen and (max-width: 1060px) and (max-width: 768px) {
  .footer_etc_menu.tbdisp {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1060px) {
  .footer_etc_menu.tbdisp:not(:last-child) {
    margin-bottom: 0.8em;
  }
}
.footer_etc_menu_link {
  display: flex;
  position: relative;
}
.footer_etc_menu_link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
  right: -1em;
}
@media screen and (max-width: 768px) {
  .footer_etc_menu {
    text-align: center;
    justify-content: center;
  }
}
.footer_etc_menu li:last-child {
  display: flex;
  align-items: center;
  gap: 1em;
}
.footer_etc_menu li:last-child .footer_etc_menu_link:after {
  display: none;
}
.footer_etc_menu_line {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .footer_etc_menu_line {
    width: 20px;
  }
}
@media screen and (max-width: 1060px) {
  .footer_etc_address {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer_etc_address {
    line-height: 1.6666666667;
    font-size: 1.2rem;
  }
  .footer_etc_address .large {
    font-size: 1.3rem;
  }
}
.footer_etc .copyright {
  padding-top: 88px;
}
@media screen and (max-width: 768px) {
  .footer_etc .copyright {
    margin: 0 -40px;
    padding: 25px 20px 20px;
    font-size: 1.2rem;
  }
}

#header_burger {
  position: relative;
  width: 27px;
  height: 22px;
  cursor: pointer;
  align-self: center;
}
#header_burger .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
#header_burger .line:nth-of-type(1) {
  top: 0;
}
#header_burger .line:nth-of-type(1).active {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#header_burger .line:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
#header_burger .line:nth-of-type(2).active {
  opacity: 0;
}
#header_burger .line:nth-of-type(3) {
  bottom: 0;
}
#header_burger .line:nth-of-type(3).active {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

/*=============================
#btn01
=============================*/
#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
#btn01.active span:nth-of-type(2) {
  opacity: 0;
}
#btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

.content {
  position: relative;
}
.content .float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 144px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .content .float {
    width: 108px;
    right: 12px;
    bottom: 12px;
  }
}
.content .float img {
  width: 100%;
}
.content_box {
  padding: 60px 95px;
}
@media screen and (max-width: 1060px) {
  .content_box {
    padding: 90px 30px;
  }
}
@media screen and (max-width: 768px) {
  .content_box {
    padding: 30px 30px 35px;
  }
}
.content_box > .facility_box_container {
  margin-bottom: 0;
}
.content_box_ttl {
  text-align: center;
  font-size: 3.2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 768px) {
  .content_box_ttl {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}
.content_box_ttl.sml {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .content_box_ttl.sml {
    font-size: 1.5rem;
  }
}
.content_box_ttl.medium {
  font-size: 2.4rem;
  text-align: left;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 768px) {
  .content_box_ttl.medium {
    font-size: 1.5rem;
  }
}
.content_box_ttl.center {
  text-align: center;
}
.content_box_txt {
  font-size: 1.8rem;
  padding: 0;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .content_box_txt {
    font-size: 1.3rem;
  }
}
.content_box_txt .sml {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .content_box_txt .sml {
    font-size: 1.2rem;
  }
}
.content_box_txt.indent {
  margin-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .content_box_txt.indent {
    margin: auto;
  }
}
.content_box_txt.center {
  text-align: center;
}
.content_box_txt .large {
  display: block;
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: normal;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .content_box_txt .large {
    font-size: 1.5rem;
  }
}
.content_box_txt .medium {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .content_box_txt .medium {
    font-size: 1.5rem;
  }
}
.content_box_txt.margin-top {
  margin-top: 1em;
}

.page_mv {
  max-height: 400px;
  overflow-y: hidden;
}
.page_mv picture {
  display: block;
}
.page_mv picture img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: bottom center;
}
.page_ttl {
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.6rem;
  padding: 20px 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_ttl {
    font-size: 1.3rem;
    padding: 15px 0 10px;
  }
}
.page_ttl .en {
  display: block;
  font-family: georgiapro, sans-serif;
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .page_ttl .en {
    font-size: 2.1rem;
  }
}

.reservation_btn {
  display: block;
  text-align: center;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(209, 206, 190) 100%);
  color: #224025;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  font-weight: bold;
  height: 85px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 378px;
  margin: 50px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reservation_btn {
    width: max(218px, 70%);
    font-size: 1.3rem;
    height: 50px;
    margin-top: 30px;
  }
}
.reservation_btn:hover .arrow {
  right: 12px;
}
@media screen and (max-width: 768px) {
  .reservation_btn:hover .arrow {
    right: 7px;
  }
}
.reservation_btn:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
.reservation_btn .sml {
  font-size: 1.7rem;
  line-height: 140%;
  display: block;
  width: 100%;
  align-self: end;
}
@media screen and (max-width: 768px) {
  .reservation_btn .sml {
    font-size: 1rem;
  }
}
.reservation_btn .arrow {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 22px;
  display: inline-block;
  width: 7px;
  height: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .reservation_btn .arrow {
    right: 12px;
    width: 4px;
    height: 12px;
  }
}
.reservation_btn .arrow:after, .reservation_btn .arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 12.2px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media screen and (max-width: 768px) {
  .reservation_btn .arrow:after, .reservation_btn .arrow:before {
    width: 7.3px;
  }
}
.reservation_btn .arrow:after {
  transform: rotate(57.7deg);
}
@media screen and (max-width: 768px) {
  .reservation_btn .arrow:after {
    transform: rotate(61.4deg);
  }
}
.reservation_btn .arrow:before {
  transform: rotate(-57.7deg);
}
@media screen and (max-width: 768px) {
  .reservation_btn .arrow:before {
    transform: rotate(-61.4deg);
  }
}
.reservation_btn:first-of-type {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .reservation_btn:first-of-type {
    margin-top: 45px;
  }
}
.reservation_btn#visitor:before {
  width: 36px;
  background-image: url("../img/reserve/visitor.svg");
  background-position: center;
  background-size: contain;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .reservation_btn#visitor:before {
    width: 22px;
    left: 12px;
  }
}
.reservation_btn#member:before {
  width: 46px;
  background-image: url("../img/reserve/member.svg");
  background-position: center;
  background-size: contain;
  left: 16px;
}
@media screen and (max-width: 768px) {
  .reservation_btn#member:before {
    width: 27px;
    left: 9px;
  }
}
.reservation_btn#reporter {
  align-items: normal;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .reservation_btn#reporter {
    margin-bottom: 45px;
  }
}
.reservation_btn#reporter:before {
  width: 32px;
  background-image: url("../img/reserve/reporter.svg");
  background-position: center;
  background-size: contain;
  left: 22px;
}
@media screen and (max-width: 768px) {
  .reservation_btn#reporter:before {
    width: 19px;
    left: 13px;
  }
}
.reservation_list {
  border: 1px solid #fff;
  padding: 18px 26px;
  margin-top: 1em;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .reservation_list {
    margin-top: 15px;
    padding: 8px 13px;
    padding-right: 1em;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    line-height: 1.3846153846;
  }
}
.reservation_list li {
  display: grid;
  grid-template-columns: 1em auto;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .reservation_list li {
    font-size: 1.4rem;
  }
}
.reservation_list li.square:before {
  content: "■";
  display: flex;
  align-items: baseline;
  margin-left: -0.3em;
}
.reservation_list li:before {
  content: "•";
  display: block;
  width: 1em;
  height: 1em;
}
.reservation_list li.etc {
  margin-top: 1em;
  margin-left: -1em;
  padding-left: 1em;
}
.reservation_list li.etc:before {
  content: "■";
}
.reservation_link {
  display: flex;
  text-align: right;
  font-size: 2rem;
  margin: auto;
  margin-top: 20px;
  margin-right: 0;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .reservation_link {
    font-size: 1.3rem;
  }
}
.reservation_link:hover:after {
  width: calc(100% + 5px);
}
.reservation_link:hover:before {
  transform: translateX(0px);
}
.reservation_link:before {
  content: "＞";
  width: 1em;
  height: 1em;
  display: block;
  transform: translateX(-5px);
  transition: all 0.3s;
}
.reservation_link:after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  bottom: -2px;
  background-color: #fff;
  transition: all 0.3s;
  left: -5px;
}
.reservation_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 90px auto 40px;
  column-gap: 40px;
}
@media screen and (max-width: 768px) {
  .reservation_container {
    margin: 50px auto 20px;
    padding: 0 17px;
    gap: 10px;
  }
}
.reservation_container_link {
  border: 1px solid #224025;
  border-radius: 85px;
  display: grid;
  padding: 25px 0;
  grid-template-columns: 42px auto;
  justify-content: center;
  column-gap: 20px;
  line-height: 1.2727272727;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .reservation_container_link {
    border-radius: 23px;
    padding: 10px 0 9px;
    grid-template-columns: auto;
    text-align: center;
  }
}
.reservation_container_link#tel {
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .reservation_container_link#tel {
    padding-top: 5px;
    padding-right: 0;
  }
}
.reservation_container_link_img {
  grid-row-end: 3;
  grid-row-start: 1;
}
@media screen and (max-width: 768px) {
  .reservation_container_link_img {
    width: 22px;
    display: block;
    margin: 0 auto 5px;
  }
}
.reservation_container_link .txt {
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .reservation_container_link .txt {
    font-size: 1.3rem;
  }
}
.reservation_container_link .sml {
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .reservation_container_link .sml {
    font-size: 1.2rem;
  }
}

.point_container {
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .point_container {
    margin: 45px auto;
  }
}
.point_container:first-child {
  margin-top: 0;
}
.point_container:last-child {
  margin-bottom: 0;
}
.point_box {
  column-gap: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}
.point_box_list {
  display: grid;
  grid-template-columns: 118px auto;
  background-color: #fff;
  font-size: 1.6rem;
  color: #1D2320;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .point_box_list {
    display: grid !important;
    grid-template-columns: 76px auto;
    font-size: 1.3rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 325px) {
  .point_box_list {
    grid-template-columns: auto auto;
  }
}
.point_box_list_num {
  text-align: center;
  display: flex;
  justify-content: end;
  padding: 0 30px;
  line-height: 46px;
  border-bottom: 1px solid #1D2320;
  border-right: 1px solid #1D2320;
}
@media screen and (max-width: 768px) {
  .point_box_list_num {
    line-height: 30px;
    padding: 0 14px;
  }
}
@media screen and (max-width: 325px) {
  .point_box_list_num {
    padding: 0 7px;
  }
}
.point_box_list_num:last-of-type {
  border-bottom: none;
}
.point_box_list_num.ttl {
  justify-content: center;
  padding: 0;
  background: #BEB9A2;
}
@media screen and (max-width: 768px) {
  .point_box_list_num.ttl {
    line-height: 33px;
  }
}
.point_box_list_discount {
  line-height: 46px;
  border-bottom: 1px solid #1D2320;
  display: grid;
  grid-template-columns: auto 4em;
  justify-content: center;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .point_box_list_discount {
    line-height: 30px;
    letter-spacing: 0.03em;
    grid-template-columns: auto 4.5em;
  }
}
.point_box_list_discount .num {
  justify-self: end;
}
.point_box_list_discount:last-child {
  border-bottom: none;
}
.point_box_list_discount.ttl {
  background: #BEB9A2;
  display: block;
}
@media screen and (max-width: 768px) {
  .point_box_list_discount.ttl {
    line-height: 33px;
  }
}
.point_ex {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 17px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 900px) {
  .point_ex {
    grid-template-columns: auto;
    row-gap: 25px;
    margin-bottom: 45px;
  }
}
.point_ex_box {
  background: #fff;
  text-align: center;
  color: #1D2320;
  display: grid;
  align-items: center;
  position: relative;
}
.point_ex_box.ok {
  border: #DEDBD0 6px solid;
}
@media screen and (max-width: 768px) {
  .point_ex_box.ok {
    padding: 15px 0;
  }
}
.point_ex_box.ok .point_ex_box_txt {
  padding: 10px 0;
  align-self: baseline;
}
@media screen and (max-width: 768px) {
  .point_ex_box.ok .point_ex_box_txt {
    padding: 0;
  }
}
.point_ex_box.ok:after {
  right: -22px;
}
@media screen and (max-width: 768px) {
  .point_ex_box.ok:after {
    right: 0;
    bottom: -25px;
  }
}
.point_ex_box_ttl {
  background-color: #DEDBD0;
  font-size: 2rem;
  line-height: 38px;
  font-weight: bolder;
  align-self: self-start;
}
@media screen and (max-width: 768px) {
  .point_ex_box_ttl {
    font-size: 1.5rem;
    line-height: 28px;
  }
}
.point_ex_box_ttl.ok {
  background: #fff;
  align-self: end;
}
.point_ex_box_balance {
  border-top: 1px solid #1D2320;
  line-height: 32px;
  align-self: self-end;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .point_ex_box_balance {
    font-size: 1.4rem;
  }
}
.point_ex_box_txt {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .point_ex_box_txt {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    padding: 7px 0 6px;
  }
  .point_ex_box_txt.spheight {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.point_ex_box_txt .large {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .point_ex_box_txt .large {
    font-size: 1.7rem;
  }
}
.point_ex_box_txt .medium {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .point_ex_box_txt .medium {
    font-size: 1.7rem;
  }
}
.point_ex_box_txt sup {
  font-size: 1.2rem;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .point_ex_box_txt sup {
    font-size: 1rem;
  }
}
.point_ex_box_txt .line {
  border-bottom: 1px solid #1D2320;
}
.point_ex_box:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 76px;
  background: #BEB9A2;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  right: -16px;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .point_ex_box:after {
    width: 285px;
    height: 110px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    right: 0;
    left: 0;
    bottom: -20px;
    top: auto;
  }
}
@media screen and (max-width: 768px) {
  .point_ex_box:after {
    width: 100px;
    height: 20px;
  }
}
.point_ex_box:last-child:after {
  display: none;
}
.point_ex.sml {
  grid-template-columns: repeat(7, 1fr);
  column-gap: 10px;
}
@media screen and (max-width: 900px) {
  .point_ex.sml {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 768px) {
  .point_ex.sml {
    row-gap: 25px;
    margin-bottom: 20px;
  }
}
.point_ex.sml .point_ex_box_ttl {
  font-size: 1.8rem;
  min-height: 64px;
  line-height: 1.3333333333;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .point_ex.sml .point_ex_box_ttl {
    font-size: 1.5rem;
    line-height: 28px;
    min-height: auto;
  }
}
.point_ex.sml .point_ex_box_txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .point_ex.sml .point_ex_box_txt {
    font-size: 1.4rem;
  }
}
.point_ex.sml .point_ex_box_txt .large {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .point_ex.sml .point_ex_box_txt .large {
    font-size: 1.7rem;
  }
}
.point_ex.sml .point_ex_box_txt .medium {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .point_ex.sml .point_ex_box_txt .medium {
    font-size: 1.7rem;
  }
}
.point_ex.sml .point_ex_box_txt.sml {
  font-size: 1.4rem;
  letter-spacing: -0.05em;
}
.point_ex.sml .point_ex_box_balance {
  line-height: 42px;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .point_ex.sml .point_ex_box_balance {
    font-size: 1.4rem;
    line-height: 32px;
  }
}
.point_ex.sml .point_ex_box:after {
  right: -9px;
}
.point_ex.sml .point_ex_box.ok:after {
  right: -15px;
}
.point_exttl {
  font-size: 2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.3em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .point_exttl {
    font-size: 1.5rem;
  }
  .point_exttl.sp-margin {
    margin-bottom: 10px;
  }
}
.point_exttl:before {
  content: "■";
  display: block;
  width: 1em;
  height: 1em;
}
.point_exttl.margin-0 {
  margin-bottom: 10px;
}
.point_exttl.sp-top {
  margin-top: -20px;
}
.point_etc {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: right;
  margin: 12px auto 20px;
}
.point_etc.margin-0 {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .point_etc {
    font-size: 1.2rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5833333333;
  }
}
.point_step {
  display: grid;
  grid-template-columns: 90px auto;
  margin-bottom: 12px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  align-items: center;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .point_step {
    margin-bottom: 15px;
    font-size: 1.3rem;
    grid-template-columns: 45px auto;
  }
}
.point_step:last-child {
  margin-bottom: 0;
}
.point_step:last-child:after {
  display: none;
}
.point_step:first-of-type {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .point_step:first-of-type {
    margin-top: 15px;
  }
}
.point_step_ttl {
  color: #224025;
  background: #BEB9A2;
  align-self: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .point_step_ttl {
    text-align: center;
    padding: 7px 0;
  }
}
.point_step_txt {
  color: #1D2320;
  background: #fff;
  padding: 9px 20px 13px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .point_step_txt {
    padding: 10px 5px;
    line-height: 1.3846153846;
    align-self: stretch;
    align-items: center;
    display: flex;
  }
}
.point_step:after {
  content: "";
  position: absolute;
  bottom: -10px;
  margin: auto;
  left: 0;
  right: 0;
  display: inline-block;
  width: 58px;
  height: 14px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.point_img {
  margin-top: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .point_img {
    margin: 15px auto;
  }
}

.restaurant .wrapper {
  padding: 38px 0 90px;
}
@media screen and (max-width: 768px) {
  .restaurant .wrapper {
    padding: 20px 0 30px;
  }
}
.restaurant_menu_box {
  display: flex;
  gap: 1em;
  font-size: 2.4rem;
  justify-content: center;
  margin-bottom: 38px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .restaurant_menu_box {
    font-size: 1.2rem;
    margin-bottom: 20px;
    gap: 0.5em;
  }
}
@media screen and (max-width: 325px) {
  .restaurant_menu_box {
    font-size: 1rem;
  }
}
.restaurant_menu_box_link {
  display: flex;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .restaurant_menu_box_link {
    gap: 0.5em;
  }
}
.restaurant_menu_box_link:after {
  content: "|";
  width: 1px;
  height: 1em;
  display: block;
}
.restaurant_menu_box li:last-child .restaurant_menu_box_link:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .restaurant_menu_box li {
    line-height: 1em;
  }
}
.restaurant_menu_box.bottom {
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .restaurant_menu_box.bottom {
    margin-top: -15px;
    gap: 0.5em;
  }
}
.restaurant_box {
  position: relative;
}
@media screen and (max-width: 1060px) {
  .restaurant_box.wide {
    margin: 0 -30px;
  }
}
.restaurant_box#competition {
  display: grid;
  grid-template-columns: 388px auto;
  gap: 24px;
  row-gap: 0;
}
@media screen and (max-width: 768px) {
  .restaurant_box#competition {
    margin-top: -5px;
    grid-template-columns: auto;
  }
}
.restaurant_box#competition .restaurant_box_ttl {
  grid-column-start: 1;
  grid-column-end: 3;
}
@media screen and (max-width: 768px) {
  .restaurant_box#competition .restaurant_box_ttl {
    grid-column-start: auto;
    grid-column-end: auto;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .restaurant_box#competition .restaurant_box_img {
    grid-row-start: 3;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .restaurant_box#about .sec_box_txt {
    padding-left: 15px;
  }
}
.restaurant_box#club {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .restaurant_box#club {
    margin-bottom: 25px;
  }
}
.restaurant_box_ttl {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-bottom: 30px;
  position: relative;
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .restaurant_box_ttl {
    font-size: 1.3rem;
    margin-bottom: 23px;
    padding-left: 20px;
  }
  .restaurant_box_ttl.large {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.restaurant_box_ttl:before {
  content: "";
  height: 2px;
  width: 72px;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -72px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .restaurant_box_ttl:before {
    width: 36px;
    left: -20px;
    height: 1px;
  }
}
.restaurant_box_ttl.center {
  text-align: center;
}
.restaurant_box_ttl.center::before {
  display: none;
}
.restaurant_box_menu {
  margin: 0 auto 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .restaurant_box_menu {
    margin: 0 auto 20px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 15px;
  }
}
.restaurant_box_menu_container_txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .restaurant_box_menu_container_txt {
    font-size: 1.3rem;
    margin-top: 7px;
    line-height: 1.3846153846;
  }
}
.restaurant_box_more {
  font-family: inherit;
  font-size: 2rem;
  padding: 10px 50px 15px;
  margin: 60px auto;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .restaurant_box_more {
    margin: 25px auto 45px;
    padding: 5px 15px 6px;
    font-size: 1.3rem;
  }
}
.restaurant_box_more:before {
  content: "";
  width: 44px;
  height: 32px;
  background-image: url("../img/restaurant/menu.svg");
  background-repeat: no-repeat;
  background-position: top center;
  display: block;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .restaurant_box_more:before {
    width: 22px;
    height: 16px;
    margin: 0 auto 5px;
    background-size: contain;
  }
}
.restaurant_box_allergy {
  margin: 1em auto;
  font-size: 1.8rem;
  display: grid;
  grid-template-columns: max(100px, 6em) auto;
  column-gap: 16px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .restaurant_box_allergy {
    font-size: 1.3rem;
    grid-template-columns: max(75px, 6em) auto;
    line-height: 1.3846153846;
    column-gap: 6px;
  }
}
@media screen and (max-width: 768px) {
  .restaurant_box_allergy_ttl {
    font-size: 1.5rem;
  }
}
.restaurant_box_allergynum {
  margin-top: 1em;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  padding-left: calc(70px + 1em);
}
@media screen and (max-width: 768px) {
  .restaurant_box_allergynum {
    font-size: 1.3rem;
    padding-left: calc(20px + 1em);
  }
}
.restaurant_box_allergynum li {
  list-style-type: none;
  counter-increment: cnt;
  text-indent: calc(-1em - 7px);
  margin-left: calc(-1em - 7px);
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}
.restaurant_box_allergynum li:before {
  content: counter(cnt) ".";
  padding-right: 7px;
}
.restaurant_img {
  margin: 60px -90px;
  max-width: 1050px;
}
@media screen and (max-width: 1060px) {
  .restaurant_img {
    margin: 60px auto;
    width: 100vw;
  }
}
@media screen and (max-width: 768px) {
  .restaurant_img {
    margin: 25px auto 45px;
    max-width: calc(100% - 40px);
  }
}

.facility_box_container {
  display: grid;
  grid-template-columns: 290px auto;
  gap: 24px;
  row-gap: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .facility_box_container {
    margin-top: -5px;
    grid-template-columns: auto;
    row-gap: 20px;
    margin-bottom: 20px;
  }
  .facility_box_container .restaurant_box_img {
    width: min(70%, 435px);
    margin: 0 auto;
  }
}
.facility_box:last-child .facility_box_container {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .facility_box_ttl {
    font-size: 1.4rem;
  }
}
.facility_box_txt .large {
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .guide .sec {
    margin-bottom: 30px;
  }
}
.guide_box_btn {
  border-color: #fff;
  display: grid;
  grid-template-columns: auto;
  row-gap: 5px;
  align-items: start;
  padding-top: 0;
  justify-content: center;
  max-width: 336px;
  margin: 60px auto;
  padding-bottom: 17px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .guide_box_btn {
    margin: 30px auto;
    font-size: 1.3rem;
    row-gap: 2px;
    max-width: 170px;
    padding-bottom: 6px;
  }
}
.guide_box_btn_img {
  display: block;
  margin: auto;
}
.guide_box_btn#reservationbtn .guide_box_btn_img {
  width: 34px;
}
@media screen and (max-width: 768px) {
  .guide_box_btn#reservationbtn .guide_box_btn_img {
    width: 17px;
  }
}
.guide_box_btn#reservationbtn_2 {
  margin: 20px auto 0;
  padding-top: 12px;
}
@media screen and (max-width: 768px) {
  .guide_box_btn#reservationbtn_2 {
    padding: 5px 0 6px;
  }
}
.guide_box_btn#reservationbtn_2 .guide_box_btn_img {
  width: 54px;
}
@media screen and (max-width: 768px) {
  .guide_box_btn#reservationbtn_2 .guide_box_btn_img {
    width: 22px;
  }
}
.guide_box_btn#noillust {
  padding: 35px 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .guide_box_btn#noillust {
    padding: 15px 0;
  }
}
.guide_box_list {
  border: none;
  padding: 0;
}
.guide_box_txt {
  margin-bottom: 1em;
}
.guide_box_txt:last-child {
  margin-bottom: 0;
}
.guide_box_txt.center {
  text-align: center;
}
.guide_box_txt.underspace {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .guide_box_txt.underspace {
    margin-bottom: 30px;
  }
}
.guide_box_time {
  display: grid;
  grid-template-columns: 3em auto;
  align-items: baseline;
  column-gap: 1em;
  justify-content: center;
}
.guide_box_time.wide {
  margin-bottom: -1.5em;
}
@media screen and (max-width: 768px) {
  .guide_box_time.wide {
    margin-bottom: -1em;
  }
}
.guide_box_time.wide dt {
  display: inline-block;
  text-align: justify;
}
.guide_box_time.wide dt:after {
  content: "";
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .guide_box_time {
    text-align: left;
  }
}
.guide_box_navi {
  display: grid;
  grid-template-columns: auto 362px;
  column-gap: 35px;
}
@media screen and (max-width: 768px) {
  .guide_box_navi {
    grid-template-columns: auto;
    row-gap: 20px;
  }
  .guide_box_navi_img {
    width: max(254px, 80%);
    margin: 0 auto;
  }
}

.access_box_ttl {
  font-size: 2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .access_box_ttl {
    font-size: 1.4rem;
  }
}
.access_box_ttl.txt {
  margin-bottom: 1em;
  line-height: 2em;
}
.access_box_ttl.txt:last-child {
  margin-bottom: 0;
}
.access_box_txt {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  line-height: 2.6;
}
.access_box_txt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .access_box_txt {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1em;
  }
  .access_box_txt:last-of-type {
    margin-bottom: 0;
  }
}
.access_box_img {
  margin-bottom: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  .access_box_img {
    margin-bottom: 20px;
  }
}

.checkin_box {
  background-color: #fff;
  color: #1D2320;
  padding: 50px 80px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-top: 50px;
}
@media screen and (max-width: 1060px) {
  .checkin_box {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .checkin_box {
    padding: 16px 15px 30px;
    margin-top: 25px;
  }
}
.checkin_box_ttl {
  text-align: center;
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .checkin_box_ttl {
    font-size: 1.5rem;
    gap: 0.3em;
    line-height: 1.4666666667;
  }
}
.checkin_box_ttl:before, .checkin_box_ttl:after {
  content: "";
  width: 44px;
  height: 2px;
  display: block;
  background-color: #1D2320;
}
@media screen and (max-width: 768px) {
  .checkin_box_ttl:before, .checkin_box_ttl:after {
    width: 33px;
    height: 1px;
  }
}
.checkin_box_ttl::before {
  transform: rotate(-125deg);
}
.checkin_box_ttl::after {
  transform: rotate(125deg);
}
.checkin_box_ttl.medium {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .checkin_box_ttl.medium {
    font-size: 1.4rem;
  }
}
.checkin_box_ttl.medium::before, .checkin_box_ttl.medium:after {
  display: none;
}
.checkin_box_line {
  width: 232px;
  margin: 20px auto 50px;
  display: block;
}
@media screen and (max-width: 768px) {
  .checkin_box_line {
    width: 116px;
    margin: 10px auto 25px;
  }
}
@media screen and (max-width: 768px) {
  .checkin_box_benefit {
    padding: 0 25px;
  }
}
.checkin_box_benefit_container {
  margin-bottom: 30px;
}
.checkin_box_benefit_container:last-child {
  margin-bottom: 0;
}
.checkin_box_benefit_container_box {
  display: grid;
  grid-template-columns: 108px auto;
  gap: 0 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .checkin_box_benefit_container_box {
    grid-template-columns: 84px auto;
    gap: 10px;
  }
}
.checkin_box_benefit_container_box_img {
  grid-row-start: 1;
  grid-row-end: 3;
}
.checkin_box_benefit_container_box_ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .checkin_box_benefit_container_box_ttl {
    font-size: 1.4rem;
  }
}
.checkin_box_benefit_container_box_ttl .txt {
  display: inline-flex;
  font-size: 1.8rem;
  border-bottom: 1px solid #1D2320;
  margin-bottom: 10px;
  align-items: center;
  line-height: 1em;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .checkin_box_benefit_container_box_ttl .txt {
    font-size: 1.4rem;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
}
.checkin_box_benefit_container_box_ttl .txt .num {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .checkin_box_benefit_container_box_ttl .txt .num {
    font-size: 2rem;
  }
}
.checkin_box_benefit_container_box_txt {
  font-size: 1.8rem;
  grid-column-start: 2;
  font-family: "HGPGothicM", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .checkin_box_benefit_container_box_txt {
    font-size: 1.3rem;
    line-height: 1.3846153846;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.checkin_box_benefit_container_box_txt .sml {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .checkin_box_benefit_container_box_txt .sml {
    font-size: 1.2rem;
  }
}
.checkin_box_howto {
  display: grid;
  grid-template-columns: repeat(6, minmax(108px, 1fr));
  gap: 28px;
  justify-content: center;
  margin: 30px -50px 35px;
}
@media screen and (max-width: 1060px) {
  .checkin_box_howto {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 30px auto;
  }
}
@media screen and (max-width: 768px) {
  .checkin_box_howto {
    margin: 20px auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 7px;
  }
}
.checkin_box_howto.second {
  grid-template-columns: repeat(2, 108px);
  gap: 30px;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .checkin_box_howto.second {
    grid-template-columns: repeat(2, 80px);
    gap: 20px;
  }
}
.checkin_box_howto_container {
  text-align: center;
}
.checkin_box_howto_container_ttl {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .checkin_box_howto_container_ttl {
    font-size: 1.5rem;
  }
}
.checkin_box_howto_container_ttl_img {
  margin-top: 5px;
  aspect-ratio: 1/1;
}
.checkin_box_howto_container_txt {
  font-family: "HGPGothicM", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .checkin_box_howto_container_txt {
    font-size: 1.3rem;
    align-self: self-start;
  }
}

.info_box {
  color: #1D2320;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .info_box {
    margin-bottom: 30px;
  }
}
.info_box:last-child {
  margin-bottom: 0;
}
.info_box_ttl {
  font-size: 1.8rem;
  background: #BEB9A2;
  padding-left: 30px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1em;
  align-items: baseline;
  height: 45px;
  font-weight: bold;
  justify-content: flex-start;
  line-height: 45px;
}
@media screen and (max-width: 768px) {
  .info_box_ttl {
    font-size: 1.3rem;
    padding: 7px 10px;
    height: auto;
    line-height: 1.2307692308;
  }
}
.info_box_txt {
  background: #fff;
  font-size: 1.7rem;
  line-height: 1.5882352941;
  padding: 20px 30px 30px;
}
@media screen and (max-width: 768px) {
  .info_box_txt {
    font-size: 1.3rem;
    line-height: 1.3846153846;
    padding: 15px 15px 20px;
  }
}
.info_box_txt_img {
  width: 180px;
  display: block;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .info_box_txt_img {
    width: 150px;
    margin: 0 auto 1em;
  }
}
.info_box_txt_link {
  display: flex;
  align-items: center;
  transition: all 0.3s;
  text-decoration: underline;
}
.info_box_txt_link:hover {
  transform: translateX(10px);
  font-weight: bold;
}
.info_box_txt_list {
  margin: 1em auto;
}
.info_box_txt_list:last-child {
  margin-bottom: 0;
}
.info_box_txt_list_txt {
  margin-bottom: 1em;
  display: flex;
  gap: 0.3em;
}
.info_box_txt_list_txt:before {
  content: "■";
  width: 1em;
  display: block;
}
.info_box_txt_list_txt:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .course .content_box {
    margin-bottom: 30px;
  }
  .course .content_box:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .course_spbox {
    display: grid !important;
    grid-template-columns: 100px auto;
    gap: 0;
    font-size: 1.4rem;
    text-align: center;
    height: 27px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    z-index: 20;
  }
  .course_spbox .course_select_spmap {
    background: #D1CEBE;
    color: #224025;
    line-height: 27px;
  }
  .course_spbox .course_select_sp {
    background-image: url("../img/course/select.webp");
    background-repeat: no-repeat;
    color: #fff;
    line-height: 27px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    text-align: center;
    position: relative;
  }
  .course_spbox .course_select_sp .options {
    display: none;
    opacity: 0;
    width: 100%;
    background: #224025;
    border: 1px solid #ccc;
    z-index: 10;
  }
  .course_spbox .course_select_sp .options.active {
    display: block;
    opacity: 1;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    margin: auto;
    height: 50vh;
    z-index: 20;
    overflow-y: scroll;
  }
  .course_spbox .course_select_sp .options.active .overlay {
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1D2320;
    opacity: 0.5;
    z-index: -1;
  }
  .course_spbox .course_select_sp .options .option {
    padding: 8px 0;
    text-align: center;
    background: #D1CEBE;
    color: #224025;
  }
}
.course_layout {
  background-color: #fff;
  color: #1D2320;
  padding: 40px 25px 35px;
  margin-bottom: 20px;
  min-height: 570px;
  max-height: 645px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .course_layout {
    padding: 0;
    position: relative;
    z-index: 0;
    min-height: auto;
  }
}
.course_layout_box {
  display: grid;
  column-gap: 64px;
  grid-template-columns: auto 490px;
}
.course_layout_box:first-child {
  display: block;
}
.course_layout_box#hole1_content .course_layout_box_left img {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole1_content .course_layout_box_left img {
    width: 50px;
  }
}
.course_layout_box#hole2_content .course_layout_box_left img {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole2_content .course_layout_box_left img {
    width: 55px;
  }
}
.course_layout_box#hole3_content .course_layout_box_left {
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole3_content .course_layout_box_left {
    padding: 0;
  }
}
.course_layout_box#hole3_content .course_layout_box_left img {
  width: 140px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole3_content .course_layout_box_left img {
    width: 50px;
  }
}
.course_layout_box#hole4_content .course_layout_box_left {
  padding-left: 70px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole4_content .course_layout_box_left {
    padding: 0;
  }
}
.course_layout_box#hole4_content .course_layout_box_left img {
  width: 108px;
  align-self: end;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole4_content .course_layout_box_left img {
    width: 50px;
    align-self: center;
  }
}
.course_layout_box#hole5_content .course_layout_box_left img {
  width: 135px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole5_content .course_layout_box_left img {
    width: 60px;
  }
}
.course_layout_box#hole6_content .course_layout_box_left img {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole6_content .course_layout_box_left img {
    width: 50px;
  }
}
.course_layout_box#hole7_content .course_layout_box_left img {
  width: 146px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole7_content .course_layout_box_left img {
    width: 60px;
  }
}
.course_layout_box#hole8_content .course_layout_box_left {
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole8_content .course_layout_box_left {
    padding-left: 0;
  }
}
.course_layout_box#hole8_content .course_layout_box_left img {
  width: 170px;
  align-self: end;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole8_content .course_layout_box_left img {
    width: 70px;
  }
}
.course_layout_box#hole9_content .course_layout_box_left img {
  width: 156px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole9_content .course_layout_box_left img {
    width: 55px;
  }
}
.course_layout_box#hole10_content .course_layout_box_left {
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole10_content .course_layout_box_left {
    padding-top: 25px;
  }
}
.course_layout_box#hole10_content .course_layout_box_left img {
  width: 212px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole10_content .course_layout_box_left img {
    width: 80px;
  }
}
.course_layout_box#hole11_content .course_layout_box_left img {
  width: 188px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole11_content .course_layout_box_left img {
    width: 75px;
  }
}
.course_layout_box#hole12_content .course_layout_box_left img {
  width: 158px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole12_content .course_layout_box_left img {
    width: 65px;
  }
}
.course_layout_box#hole13_content .course_layout_box_left img {
  width: 174px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole13_content .course_layout_box_left img {
    width: 70px;
  }
}
.course_layout_box#hole14_content .course_layout_box_left img {
  width: 210px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole14_content .course_layout_box_left img {
    width: 80px;
  }
}
.course_layout_box#hole15_content .course_layout_box_left img {
  width: 132px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole15_content .course_layout_box_left img {
    width: 55px;
  }
}
.course_layout_box#hole16_content .course_layout_box_left {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole16_content .course_layout_box_left {
    padding-top: 30px;
  }
}
.course_layout_box#hole16_content .course_layout_box_left img {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole16_content .course_layout_box_left img {
    width: 75px;
  }
}
.course_layout_box#hole17_content .course_layout_box_left {
  padding-top: 10px;
  padding-left: 70px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole17_content .course_layout_box_left {
    padding: 0;
  }
}
.course_layout_box#hole17_content .course_layout_box_left img {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole17_content .course_layout_box_left img {
    width: 65px;
  }
}
.course_layout_box#hole18_content .course_layout_box_left {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole18_content .course_layout_box_left {
    padding-top: 30px;
  }
}
.course_layout_box#hole18_content .course_layout_box_left img {
  width: 212px;
}
@media screen and (max-width: 768px) {
  .course_layout_box#hole18_content .course_layout_box_left img {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .course_layout_box {
    grid-template-columns: auto minmax(195px, 65%);
    column-gap: 5px;
  }
}
.course_layout_box_left {
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .course_layout_box_left {
    padding-left: 11px;
    padding-top: 10px;
  }
}
.course_layout_box_left_name {
  font-family: georgiapro, sans-serif;
  font-size: 2.8rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: baseline;
}
.course_layout_box_left_name .num {
  padding: 0 0.15em;
}
@media screen and (max-width: 768px) {
  .course_layout_box_left_name {
    font-size: 1.4rem;
    padding-left: 12px;
    top: 10px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  }
}
.course_layout_box_left_name:after {
  content: "";
  width: calc(100% + 25px);
  left: -25px;
  display: block;
  background: #1D2320;
  height: 1px;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .course_layout_box_left_name:after {
    left: 0;
    width: calc(100% + 12px);
  }
}
.course_layout_box_left img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .course_layout_box_right {
    padding: 10px;
    padding-left: 0;
  }
}
.course_layout_box_right_ttl {
  font-size: 2.4rem;
  font-family: georgiapro, sans-serif;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
}
.course_layout_box_right_ttl .num {
  padding: 0 0.15em;
}
@media screen and (max-width: 768px) {
  .course_layout_box_right_ttl {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}
.course_layout_box_right_txt {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .course_layout_box_right_txt {
    font-size: 1.2rem;
    line-height: 1.3333333333;
    margin-bottom: 1em;
  }
}
.course_layout_box_right_img {
  display: grid;
  grid-template-columns: 388px auto;
  gap: 14px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .course_layout_box_right_img {
    gap: 3px;
    grid-template-columns: minmax(148px, 80%) auto;
    margin-bottom: 5px;
  }
}
.course_layout_box_right_list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  border: 1px solid #1D2320;
  text-align: center;
  font-family: georgiapro, sans-serif;
}
.course_layout_box_right_list_ttl {
  border-bottom: 1px solid #1D2320;
  border-right: 1px solid #1D2320;
  font-size: 1.8rem;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .course_layout_box_right_list_ttl {
    font-size: 1.2rem;
    line-height: 15px;
  }
}
.course_layout_box_right_list_ttl:last-of-type {
  border-right: none;
}
.course_layout_box_right_list_txt {
  border-right: 1px solid #1D2320;
  font-size: 1.6rem;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .course_layout_box_right_list_txt {
    font-size: 1.1rem;
    line-height: 20px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  }
}
.course_layout_box_right_list_txt:last-of-type {
  border-right: none;
}
.course_layout_box_right_thumbnail .slick-track {
  display: grid;
  grid-template-rows: repeat(3, auto);
}
.course_layout_box_right_thumbnail .slick-track img {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .course_layout_box_right_thumbnail .slick-track img {
    margin-bottom: 3px;
  }
}
.course_layout_box_right_thumbnail .slick-track img:last-child {
  margin-bottom: 0;
}
.course_layout_btn.active {
  pointer-events: none;
}
.course_select {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.course_select_btn {
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  line-height: 40px;
  position: relative;
}
.course_select_btn span {
  font-family: georgiapro, sans-serif;
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.course_select_btn span.num {
  padding: 0 0.15em;
}
.course_select_btn:before {
  transition: all 0.3s;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #224025;
  top: 0;
  opacity: 0;
}
.course_select_btn:hover {
  opacity: 1;
}
.course_select_btn:hover:before {
  opacity: 0.5;
}
.course_select_btn.active:before {
  opacity: 0.5;
}
.course_select_btn#hole1 {
  background-image: url("../img/course/1.webp");
}
.course_select_btn#hole2 {
  background-image: url("../img/course/2.webp");
}
.course_select_btn#hole3 {
  background-image: url("../img/course/3.webp");
}
.course_select_btn#hole4 {
  background-image: url("../img/course/4.webp");
}
.course_select_btn#hole5 {
  background-image: url("../img/course/5.webp");
}
.course_select_btn#hole6 {
  background-image: url("../img/course/6.webp");
}
.course_select_btn#hole7 {
  background-image: url("../img/course/7.webp");
}
.course_select_btn#hole8 {
  background-image: url("../img/course/8.webp");
}
.course_select_btn#hole9 {
  background-image: url("../img/course/9.webp");
}
.course_select_btn#hole10 {
  background-image: url("../img/course/10.webp");
}
.course_select_btn#hole11 {
  background-image: url("../img/course/11.webp");
}
.course_select_btn#hole12 {
  background-image: url("../img/course/12.webp");
}
.course_select_btn#hole13 {
  background-image: url("../img/course/13.webp");
}
.course_select_btn#hole14 {
  background-image: url("../img/course/14.webp");
}
.course_select_btn#hole15 {
  background-image: url("../img/course/15.webp");
}
.course_select_btn#hole16 {
  background-image: url("../img/course/16.webp");
}
.course_select_btn#hole17 {
  background-image: url("../img/course/17.webp");
}
.course_select_btn#hole18 {
  background-image: url("../img/course/18.webp");
}
.course_select_mapbtn {
  grid-column-start: 5;
  grid-column-end: 7;
  color: #224025;
  background: #D1CEBE;
  font-size: 2.2rem;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 40px;
}
.course_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .course_box {
    grid-template-columns: auto;
    margin-top: 25px;
    gap: 20px;
  }
}
.course_inout {
  background-color: #fff;
  color: #1D2320;
  font-size: 1.6rem;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .course_inout {
    font-size: 1.25rem;
  }
}
.course_inout td:first-child {
  width: 5em;
}
.course_inout_top {
  color: #fff;
  background-color: #063224;
  text-align: center;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .course_inout_top {
    line-height: 20px;
  }
}
.course_inout_top th {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .course_inout_top th {
    font-size: 1.2rem;
  }
}
.course_inout_ttl {
  background: #BEB9A2;
}
.course_inout_ttl td {
  text-align: center;
  line-height: 25px;
}
@media screen and (max-width: 768px) {
  .course_inout_ttl td {
    line-height: 17px;
  }
}
.course_inout_ttl td.large {
  font-size: 1.8rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .course_inout_ttl td.large {
    font-size: 1.25rem;
  }
}
.course_inout_ttl td.large:nth-child(2) {
  padding-right: 20px;
}
@media screen and (max-width: 1060px) {
  .course_inout_ttl td.large:nth-child(2) {
    padding: 0;
    width: 3em;
  }
}
.course_inout_ttl.border {
  border-top: 1px solid #1D2320;
}
.course_inout_ttl.border td {
  width: 6em;
}
.course_inout_ttl.total td {
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .course_inout_ttl.total td {
    line-height: 28px;
  }
}
.course_inout_ttl.total td:nth-child(2) {
  padding-right: 20px;
}
@media screen and (max-width: 1060px) {
  .course_inout_ttl.total td:nth-child(2) {
    padding: 0;
  }
}
.course_inout_box td {
  text-align: center;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .course_inout_box td {
    line-height: 28px;
  }
}
.course_inout_box td:nth-child(2) {
  padding-right: 20px;
}
@media screen and (max-width: 1060px) {
  .course_inout_box td:nth-child(2) {
    padding: 0;
  }
}
.course_total {
  grid-column-start: 2;
  grid-column-end: 3;
  display: grid;
  grid-template-columns: 5em auto 6em 5em 6em;
  text-align: center;
  background: #063224;
  font-size: 1.6rem;
  line-height: 40px;
}
@media screen and (max-width: 1060px) {
  .course_total {
    grid-template-columns: 5em auto auto auto auto;
  }
}
@media screen and (max-width: 960px) {
  .course_total {
    grid-template-columns: repeat(5, auto);
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .course_total {
    grid-column-start: 1;
    grid-column-end: 1;
    font-size: 1.25rem;
    line-height: 28px;
    gap: 0;
    margin-top: -10px;
  }
}
.course_total dd:nth-child(2) {
  padding-right: 15px;
}
@media screen and (max-width: 1060px) {
  .course_total dd:nth-child(2) {
    padding: 0;
  }
}
.course_rule {
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .course_rule {
    font-size: 1.3rem;
    line-height: 1.3846153846;
  }
}
.course_rule_list {
  list-style-type: none;
  padding-left: 1.5em;
}
.course_rule_list:before {
  position: absolute;
  left: 0;
  content: counter(list-item) ".";
}
.course_pick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .course_pick {
    grid-template-columns: auto;
    gap: 40px;
  }
}
.course_pick_box {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.course_pick_box_ttl {
  font-size: 2.8rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .course_pick_box_ttl {
    font-size: 1.4rem;
    margin: 0 auto 20px;
  }
}
.course_pick_box_img {
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .course_pick_box_img {
    max-width: 218px;
    margin: 0 auto 20px;
  }
}
.course_pick_box_txt {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .course_pick_box_txt {
    font-size: 1.3rem;
    padding: 0 35px;
  }
}
.course_pick_box_link {
  display: inline-block;
  max-width: 210px;
  border-radius: 20px;
  border: 1px solid #fff;
  font-family: georgiapro, sans-serif;
  text-align: center;
  margin: auto auto 0;
  align-self: flex-start;
  padding: 10px 45px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .course_pick_box_link {
    width: 127px;
    font-size: 1.3rem;
    line-height: 25px;
    padding: 0;
  }
}/*# sourceMappingURL=style.css.map */