@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@800&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
body {
  background: url(../img/texture-1.jpg) center top;
  background-size: 100% auto;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
/* link */
a {
  color: #fff;
}

/* -------------------------------------------

header

------------------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 2rem 3rem;
}

@media screen and (max-width: 768px) {
  header {
    justify-content: center;
    padding: 0.6rem 0 0 0;
  }
}
header h1 {
  width: 14rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  header h1 {
    width: 10rem;
  }
}
/* -------------------------------------------

nav

------------------------------------------- */
header .gnav {
  padding-top: 1rem;
}

.gnav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.gnav-menu > li {
  font-weight: bold;
  white-space: nowrap;
  font-size: 1.8rem;
}

.gnav-menu > li:last-child {
  font-size: 3rem;
}

.gnav-menu > li > a {
  display: inline-block;
  position: relative;
}

.gnav-menu > li > a::after {
  content: "";
  background: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: ease-in-out 0.3s;
}

.gnav-menu > li > a:hover::after {
  transform: scale(1, 1);
}

.gnav-menu > li > a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

@media screen and (max-width: 768px) {
  .gnav-menu {
    gap: 0;
  }
  .gnav-menu > li {
    text-align: center;
    width: 50%;
  }
  .gnav-menu > li a {
    display: block;
    padding: 0.6rem 0;
  }
  .gnav-menu > li > a::after {
    display: none;
  }
}
/* -------------------------------------------

footer

------------------------------------------- */
footer {
  padding: 6rem 0 2rem 0;
  background: url(../img/line.png) no-repeat center top;
  background-size: 100% auto;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .logo {
  width: 14rem;
  margin: 6rem 0;
}

footer small {
  display: block;
  font-size: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 6rem 0 8rem 0;
    background-size: 200% auto;
  }
  footer .logo {
    width: 16rem;
  }
}
/* -------------------------------------------

class

------------------------------------------- */
/* heading */
.heading-1 {
  line-height: 1;
  margin-bottom: 4rem;
  font-family: "Kaisei Tokumin", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heading-1 .jp {
  font-size: 2.4rem;
  margin-bottom: 0.7rem;
}
.heading-1 .en {
  color: #ffc8c8;
}

/* more */
.more {
  color: #ffc8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 20rem;
  height: 4.4rem;
  padding-bottom: 0.15rem;
  margin: 0 auto;
  font-family: "Kaisei Tokumin", serif;
  border: solid 0.15rem #ffc8c8;
}
.more:hover {
  opacity: 1;
  color: #000;
  background: #ffc8c8;
}

/* detail */
dl.detail {
  display: flex;
  flex-wrap: wrap;
}

dl.detail dt {
  padding: 1.5rem 0;
  width: 25%;
  white-space: nowrap;
  font-weight: bold;
}

dl.detail dd {
  padding: 1.5rem 0;
  width: 75%;
}

@media screen and (max-width: 768px) {
  dl.detail {
    display: block;
  }
  dl.detail dt {
    display: flex;
    align-items: center;
    padding: 1.5rem 0 0.3rem 0;
    width: 100%;
  }
  dl.detail dt::before {
    content: "◆";
    color: #c8a050;
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  dl.detail dd {
    padding: 0 0 1.5rem 0;
    width: 100%;
  }
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
  border-bottom: none;
}

dl.bk dt,
dl.bk dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

dl.wh dt,
dl.wh dd {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  dl.bk dt {
    border-bottom: none;
  }
  dl.wh dt {
    border-bottom: none;
  }
}
/* ttl */
.ttl,
.CMS-NEWS-TITLE,
.CMS-ARTICLE-TITLE {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  padding: 1rem 0 1.5rem 0;
  position: relative;
}

.ttl:after,
.CMS-NEWS-TITLE:after,
.CMS-ARTICLE-TITLE::after {
  content: "";
  background: #c8a050;
  display: block;
  height: 4px;
  bottom: -4px;
  position: absolute;
  width: 25%;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .ttl:after,
  .CMS-NEWS-TITLE:after,
  .CMS-ARTICLE-TITLE::after {
    width: 40%;
  }
}
/* base-width */
.base-width {
  width: 88rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .base-width {
    width: auto;
  }
}
/* page-top */
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}
#page-top a {
  background: #c8a050;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-left: 0.1rem;
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 7rem;
  }
}
/* txt-vertical */
.txt-vertical {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .txt-vertical.not {
    writing-mode: horizontal-tb;
    white-space: normal;
  }
}
/* list */
ul.list-group li {
  margin-left: 2rem;
  list-style: disc;
}
ul.list-group li:not(:last-child) {
  margin-bottom: 0.3rem;
}

/* preapre */
.prepare {
  color: #c8a050;
  font-size: 2rem;
  text-align: center;
  padding: 8rem 0;
}

/* map */
.gmap iframe {
  width: 100%;
  height: 36rem;
}

.gmap.grey iframe {
  filter: grayscale(100%);
}

/* display */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* margin */
.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
  background: #000;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s;
  z-index: -1;
  -webkit-overflow-scrolling: touch;
}

.gnav-sp nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.gnav-sp-menu li {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.gnav-sp-menu li:last-child {
  font-size: 3.5rem;
}

.gnav-sp-menu li span {
  display: block;
}

.gnav-sp-menu li a {
  display: block;
  padding: 1rem 0;
  white-space: nowrap;
}

/* toggle */
.toggle-btn {
  background: #000;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  transition: all 0.5s;
  z-index: 100000;
}

.toggle-btn span {
  background: #fff;
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

/* -------------------------------------------

fade

------------------------------------------- */
.fade {
  opacity: 0;
  transform: translateY(2rem);
}

.fade.is-animation {
  animation: fade 0.5s ease;
  animation-fill-mode: both;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-1 {
  animation-delay: 0.1s !important;
}

.delay-2 {
  animation-delay: 0.2s !important;
}

.delay-3 {
  animation-delay: 0.3s !important;
}

.delay-4 {
  animation-delay: 0.4s !important;
}

.delay-5 {
  animation-delay: 0.5s !important;
}

/* -------------------------------------------

news / blog　common

------------------------------------------- */
/* MORE-READ */
.CMS-NEWS-MORE-READ,
.CMS-ARTICLE-MORE-READ {
  background: #c8a050;
  border: none;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  margin: 0 auto;
  width: 24rem;
  height: 4.8rem;
  transition: all 0.3s;
  padding-bottom: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.CMS-NEWS-MORE-READ:hover,
.CMS-ARTICLE-MORE-READ:hover {
  cursor: pointer;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .CMS-ARTICLE-MORE-READ {
    width: 100%;
  }
}
/* DETAIL */
.CMS-NEWS-CONTENT img,
.CMS-ARTICLE-CONTENT img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 3rem auto;
}

@media screen and (max-width: 768px) {
  .CMS-NEWS-CONTENT img,
  .CMS-ARTICLE-CONTENT img {
    width: 100%;
  }
}
/* -------------------------------------------

news / blog　thumbnail

------------------------------------------- */
/* INDEX */
.CMS-NEWS-INDEX,
.CMS-ARTICLE-INDEX,
.CMS-NEWS-CATEGORY-INDEX,
.CMS-ARTICLE-CATEGORY-INDEX {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding-bottom: 10rem;
  position: relative;
}

.CMS-NEWS-INDEX > *,
.CMS-ARTICLE-INDEX > *,
.CMS-NEWS-CATEGORY-INDEX > *,
.CMS-ARTICLE-CATEGORY-INDEX > * {
  width: calc((100% - 8rem) / 3);
}

.CMS-NEWS-ITEM a,
.CMS-ARTICLE-ITEM a {
  display: block;
}

@media screen and (max-width: 768px) {
  .CMS-NEWS-INDEX,
  .CMS-ARTICLE-INDEX,
  .CMS-NEWS-CATEGORY-INDEX,
  .CMS-ARTICLE-CATEGORY-INDEX {
    flex-direction: column;
  }
  .CMS-NEWS-INDEX > *,
  .CMS-ARTICLE-INDEX > *,
  .CMS-NEWS-CATEGORY-INDEX > *,
  .CMS-ARTICLE-CATEGORY-INDEX > * {
    width: 100%;
  }
}
/* TIME */
.CMS-NEWS-TIME,
.CMS-ARTICLE-TIME {
  font-size: 1.2rem;
  line-height: 1;
  margin: 1.5rem 0 0.5rem 0;
}

/* THUMBNAIL */
.CMS-NEWS-THUMBNAIL,
.CMS-ARTICLE-THUMBNAIL {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------------------------------

fixed

------------------------------------------- */
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 999;
  width: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    flex-direction: row;
    gap: 0;
  }
  .fixed-btn li {
    width: 50%;
    border-top: solid 0.15rem #fff;
  }
  .fixed-btn li:first-child {
    border-right: solid 0.15rem #fff;
  }
  .fixed-btn a {
    width: 100%;
    padding: 0;
    height: 6rem;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bd6767;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .fixed-btn a span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fixed-btn li img {
    width: 2rem;
    margin-right: 0.7rem;
  }
}









/*  ----------------------------------------------------------

ベタ打ち

----------------------------------------------------------  */

/* .ttl3 {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 2.2rem;
	line-height: 1.4;
	margin-bottom: 3rem;
	padding: 1rem 0 1.4rem 0;
	position: relative;
}
.ttl3:after {
	border-bottom: solid 5px #006baf;
	bottom: -5px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 767px) {
	.ttl3:after {
		width: 40%;
	}	
} */


.menu_betauchi:not(:last-of-type) {
	margin-bottom: 5rem;
}
.content__title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0 1rem;
    border-bottom: 2px solid #d5d5d8;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 3.5rem;
}
.restaurant-detail__menu:nth-child(n+2) {
    margin-top: 1.5rem;
}
.menu-price-list:last-of-type {
    border-bottom: 1px solid #d5d5d8;
}
.menu-price-list__row {
    display: flex;
    border-top: 1px solid #d5d5d8;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
.menu-price-list__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 16px 24px 16px 0;
    font-weight: 700;
}
.menu-price-list__price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    align-items: flex-end;
    padding: 16px 0 16px 24px;
	text-align: right;
}
.menu-price-list__text {
	display: block;
	font-size: 0.9em;
	line-height: 1.6;
	font-weight: 400;
	color: #fff;
}
@media screen and (max-width: 767px) {
    .menu-price-list__row {
        display: block;
    }
    .menu-price-list__name {
        padding: 16px 24px 0;
    }
    .menu-price-list__price {
        padding: 0px 0 16px 24px;
    }
}


.course-list-heading {
    display: flex;
    align-items: center;
    padding:0 0 12px;
}

.course-list-heading__title {
    flex-shrink: 0;
    font-size: 2.4rem;
    font-weight:700
}

.course-list-heading__supplement {
    align-self: flex-end;
    margin-left: auto;
    padding-left: 10px;
    color: #6c6c75;
    font-size: 14px;
    font-weight:400
}

.course-list__item {
    display: flex;
    flex-direction: column;
    border-bottom:1px solid #d5d5d8
}

.course-list__item:first-child {
    border-top:1px solid #d5d5d8
}

.course-list-item {
    display: flex;
    width: 100%;
    min-height: 80px;
    align-items: center;
    padding:16px 0
}

.course-list-item__thumbnail {
    flex-shrink:0
}

.course-list-item__thumbnail img {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 80px;
    height: 80px;
    background-color:#f4f4f5
}

.course-list-item__detail {
    flex:1 1 auto
}

.course-list-item__detail:nth-child(n + 2) {
    margin-left:12px
}

.course-list-item__title {
    font-size: 1.5rem;
    font-weight:700;
    margin-bottom: 10px;
}

.course-list-item__title:nth-child(n + 2) {
    margin-top:6px
}

.course-list-item__description {
    font-size:12px;
    margin-bottom: 10px;
}

.course-list-item__footer {
    /* display:flex */
}

.course-list-item__price {
    display: flex;
    align-items: flex-start;
    /* justify-content: center; */
    color: #d70025;
    font-size: 20px;
    font-weight:700;
	margin-bottom: 1rem;
}

.course-list-item__label {
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid #ffa014;
    background-color: #fff;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: #ffa014;
    vertical-align:top;
    margin-right: 5px;
}

.course-list-item__label--discount {
    background: #d70025;
    border-color: #d70025;
    color:#fff
}

.course-list-item__before-discount {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-decoration:line-through
}

.course-list-item__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration:none
}

.course-list-item__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size:20px;
}

.course-list-item__term {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.course-list-item__actions-list {
    display: flex;
    flex: 0 0 150px;
    flex-direction: column;
    justify-content: center;
    align-items:center
}

.course-list-item__action {
    width: 9rem;
    display: flex;
    justify-content:center;
    /* display: none; */
    margin-top: -0.3rem;
}
.course-list-item__action button {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5rem;
	background: #c7171e;
    color: #fff;
	font-size: 1.1rem;
    text-decoration: none;
	border: none;
}

.course-list-item__action:nth-child(n + 2) {
    /* margin-top:12px */
}

.course-list-item__button {
    width: 96px;
    padding:6px 0
}

.course-summary {
    display:flex
}

.course-summary:nth-child(n + 2) {
    margin-top:10px
}

.course-summary__label {
    width: 100%;
    flex:0 0 100%
}

.course-summary__photo {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 184px;
    height: 184px;
    flex: 0 0 184px;
    align-self:flex-start
}

.course-summary__body:nth-child(n + 2) {
    margin-left:16px;
    font-size:1.07692rem
}

.course-summary-label {
    display:block
}

.course-info-list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eaeaeb;
    font-size:1.07692rem
}

.course-info-list__description, .course-info-list__title {
    border-top:1px solid #eaeaeb
}

.course-info-list__title {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: 216px;
    flex: 0 0 216px;
    background-color:#fafbfc
}

.course-info-list__description {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: calc(100% - 216px);
    flex-basis: calc(100% - 216px);
    flex-grow: 1;
    flex-shrink:0
}

.course-info-list__description--pre {
    white-space: pre-line;
    word-break:break-all
}

.course-info-list__description--strong {
    font-weight: 700;
    color: #d70025;
    font-size:1.23077rem
}

.course-info-list__before-discount {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.07692rem;
    font-weight: 400;
    text-decoration:line-through
}

.course-info-list__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration:none
}

.course-info-list__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size:.92308rem
}

.restaurant-coupon-heading {
    display: flex;
    align-items: center;
    padding: 0 0 12px;
    border-bottom:1px solid #d5d5d8
}

.restaurant-coupon-heading__title {
    flex-shrink: 0;
    max-width: calc(100% - 300px);
    color: #fff;
    font-size: 1.38462rem;
    font-weight:700
}

.restaurant-coupon-heading__supplement {
    align-self: flex-end;
    margin-left: auto;
    padding-left: 10px;
    color: #6c6c75;
    font-size: .92308rem;
    font-weight:400
}

.restaurant-coupon-list {
    border:1px solid #d5d5d8
}

.restaurant-coupon-list:nth-child(n + 2) {
    margin-top:20px
}

.restaurant-coupon-list__item:nth-child(n + 2) {
    border-top:1px dashed #d5d5d8
}

.restaurant-coupon {
    display:flex
}

.restaurant-coupon:before {
    display: block;
    min-height: 80px;
    flex: 0 0 48px;
    background: url("https://assets.retty.me/v-202103090658-master-5faacc28934ec9ceed6332f40621248775413203/images/pancake/ic_coupon.svg") #ffa014;
    background-position: 50%;
    background-repeat: no-repeat;
    content: ""
}

.restaurant-coupon--marked {
    position:relative
}

.restaurant-coupon--marked:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 0;
    border-color: #ffc814 transparent transparent #ffc814;
    border-style: solid;
    border-width: 8px;
    content: ""
}

.restaurant-coupon__body {
    flex: 1 1 auto;
    padding:18px 20px
}

.restaurant-coupon__title {
    color: #fff;
    font-size: 1.23077rem;
    font-weight:700
}

.restaurant-coupon__description {
    color: #6c6c75;
    font-size:.84615rem
}

.restaurant-coupon__description:nth-child(n + 2) {
    margin-top:4px
}

.restaurant-coupon__supplement {
    display: flex;
    box-sizing: border-box;
    flex: 0 0 200px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:12px 16px
}

.restaurant-coupon__supplement:nth-child(n + 2) {
    border-left:1px dashed #d5d5d8
}

.restaurant-coupon__expiration {
    color: #6c6c75;
    font-size:.92308rem
}

.restaurant-coupon__link {
    cursor: pointer;
    color: #2d88d9;
    font-size:.92308rem
}

.restaurant-coupon__link:hover {
    opacity:.8
}

.restaurant-coupon__link--external {
    display: flex;
    align-items:center
}

.restaurant-coupon__link--external:after {
    content: "\EA0C";
    font-size:1.23077rem
}

@keyframes show-sticky-actions {
    0% {
        opacity:0
    }

    to {
        opacity:1
    }
}

.restaurant-sidebar {
    width: 300px;
    flex-direction:column
}

.restaurant-sidebar__prepare-stuck {
    z-index: 90;
    display:none
}

.restaurant-sidebar__prepare-stuck[data-stuck=true] {
    display: flex;
    animation:show-sticky-actions .1s ease-out
}

.restaurant-sidebar__campaign-banner {
    z-index: 90;
    padding-top:12px
}

.menu-description__text {
    margin-bottom: 4rem;
}

.menu-price-list {
    font-size:1.07692rem
}

.menu-price-list:last-of-type {
border-bottom:1px solid #d5d5d8
}

.menu-price-list__row {
    display: flex;
    border-top:1px solid #d5d5d8
}

.menu-price-list__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 16px 24px 16px 0;
    font-weight:700
}

.menu-price-list__supplement {
    font-weight:400
}

.menu-price-list__price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    align-items: flex-end;
    padding:16px 0 16px 24px
}

.photo-menu {
    display: flex;
    flex-wrap: wrap;
    margin-left:-36px;
    margin-bottom: 4rem;
}

.photo-menu__item {
    width: calc((100% - 108px) / 3);
    margin-left:35px
}

.photo-menu__item:nth-child(n + 4) {
    margin-top:36px
}

.photo-menu__figure {
    width: 100%;
    height:auto
}

.photo-menu__image {
    position: relative;
    height:auto
}

.photo-menu__image:before {
    display: block;
    padding-top: 100%;
    content: ""
}

.photo-menu__image img {
    font-family: "object-fit: cover;";
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#f4f4f5
}

.photo-menu__caption {
    display: flex;
    flex-direction:column
}

.photo-menu__caption:nth-child(n + 2) {
    margin-top:16px
}

.photo-menu__reporter:nth-child(n + 2) {
    margin-top:8px
}

.photo-menu__title {
    font-size: 1.6rem;
    font-weight:700
}

.photo-menu__price {
    align-self: flex-end;
    font-size:1.2rem
}

.photo-menu__price:nth-child(n + 2) {
    margin-top:8px
}

.menu-price-list__wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.menu-price-list__wrapper-in-wrapper{
  display: flex;
  justify-content: space-between;
}


@media screen and (max-width: 767px) {
    .photo-menu {
        display: block;
        margin-left:0;
    }
    .photo-menu__item {
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }
    .photo-menu__figure {
        width: auto;
        height:auto
    }   

}


@media screen and (max-width: 767px) {
    .course-list-heading {
        display: flex;
        align-items: center;
        padding:0 0 12px;
    }

    .course-list-heading__title {
        flex-shrink: 0;
        max-width: 100%;
        font-size: 2.2rem;
        font-weight:700
    }

    .course-list-heading__supplement {
        align-self: flex-end;
        margin-left: auto;
        padding-left: 10px;
        color: #6c6c75;
        font-size: 14px;
        font-weight:400
    }

    .course-list__item {
        display: block;
        flex-direction: column;
        border-bottom:1px solid #d5d5d8
    }

    .course-list__item:first-child {
        border-top:1px solid #d5d5d8
    }

    .course-list-item {
        display: block;
        width: 100%;
        min-height: 80px;
        align-items: center;
        padding:16px 0
    }

    .course-list-item__thumbnail {
        flex-shrink:0
    }

    .course-list-item__thumbnail img {
        font-family: "object-fit: cover;";
        object-fit: cover;
        width: 60%;
        height: 60%;
        background-color:#f4f4f5;
        display: block;
        margin: 0 auto 20px auto;
    }

    .course-list-item__detail {
        flex:1 1 auto
    }

    .course-list-item__detail:nth-child(n + 2) {
        margin-left:12px
    }

    .course-list-item__title {
        font-size: 16px;
        font-weight:700;
        margin-bottom: 10px;
    }

    .course-list-item__title:nth-child(n + 2) {
        margin-top:6px
    }

    .course-list-item__description {
        font-size:12px;
        margin-bottom: 10px;
    }

    .course-list-item__footer {
		margin-bottom: 3rem;
    }

    .course-list-item__price {
        display: flex;
        color: #d70025;
        font-size: 20px;
        font-weight:700
    }

    .course-list-item__label {
        display: inline-block;
        padding: 5px 11px;
        border: 1px solid #ffa014;
        background-color: #fff;
        border-radius: 2px;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
        color: #ffa014;
        vertical-align:top;
        margin-right: 5px;
    }

    .course-list-item__label--discount {
        background: #d70025;
        border-color: #d70025;
        color:#fff
    }

    .course-list-item__before-discount {
        display: inline-flex;
        align-items: center;
        font-size: 16px;
        font-weight: 400;
        text-decoration:line-through
    }

    .course-list-item__discount-arrow {
        margin: 0 4px;
        color: #fff;
        font-weight: 400;
        text-decoration:none
    }

    .course-list-item__tax {
        display: inline;
        align-self: auto;
        color: #d70025;
        font-size:20px;
    }

    .course-list-item__term {
        display: flex;
        align-items: center;
    }

    .course-list-item__actions-list {
        display: flex;
        flex: 0 0 150px;
        flex-direction: column;
        justify-content: center;
        align-items:center
    }

    .course-list-item__action {
        width: 96px;
        width: 12rem;
        display: flex;
        justify-content:center;
        /* display: none; */
    }
    .course-list-item__action button {
        height: 4.5rem;
        font-size: 1.6rem;
    }

    .course-list-item__action:nth-child(n + 2) {
        margin-top:12px
    }

    .course-list-item__button {
        width: 96px;
        padding:6px 0
    }

    .course-summary {
        display:flex
    }

    .course-summary:nth-child(n + 2) {
        margin-top:10px
    }

    .course-summary__label {
        width: 100%;
        flex:0 0 100%
    }

    .course-summary__photo {
        font-family: "object-fit: cover;";
        object-fit: cover;
        width: 184px;
        height: 184px;
        flex: 0 0 184px;
        align-self:flex-start
    }

    .course-summary__body:nth-child(n + 2) {
        margin-left:16px;
        font-size:1.07692rem
    }

    .course-summary-label {
        display:block
    }

    .course-info-list {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid #eaeaeb;
        font-size:1.07692rem
    }

    .course-info-list__description, .course-info-list__title {
        border-top:1px solid #eaeaeb
    }

    .course-info-list__title {
        box-sizing: border-box;
        padding: 16px 24px;
        max-width: 216px;
        flex: 0 0 216px;
        background-color:#fafbfc
    }

    .course-info-list__description {
        box-sizing: border-box;
        padding: 16px 24px;
        max-width: calc(100% - 216px);
        flex-basis: calc(100% - 216px);
        flex-grow: 1;
        flex-shrink:0
    }

    .course-info-list__description--pre {
        white-space: pre-line;
        word-break:break-all
    }

    .course-info-list__description--strong {
        font-weight: 700;
        color: #d70025;
        font-size:1.23077rem
    }

    .course-info-list__before-discount {
        display: inline-flex;
        align-items: center;
        color: #fff;
        font-size: 1.07692rem;
        font-weight: 400;
        text-decoration:line-through
    }

    .course-info-list__discount-arrow {
        margin: 0 4px;
        color: #fff;
        font-weight: 400;
        text-decoration:none
    }

    .course-info-list__tax {
        display: inline;
        align-self: auto;
        color: #d70025;
        font-size:.92308rem
    }
}




/* ---- */

.course-dialog {
	width: 100%;
	padding: 0;
	border: none;
	border-radius: 1.6rem;
	height: 95vh;
	max-height: 95vh;
	overflow: hidden;
	background: transparent;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.course-dialog::backdrop {
	background: rgba(0, 0, 0, 0.6);
}

.course-dialog__inner {
	position: relative;
	height: 95vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	border-radius: 1.6rem;
	overscroll-behavior: contain;
	padding: 0 0 7rem;
}

.course-dialog__header {
	padding: 3.2rem 3.2rem 2.4rem;
	border-bottom: 1px solid #ececec;
	background: #fff;
}

.course-dialog__close {
	position: sticky;
	top: 0;
	margin-left: auto;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 4.2rem;
	height: 4.2rem;

	border: none;
	border-radius: 50%;
	background: #f3f3f3;

	font-size: 2rem;
	line-height: 1;
	cursor: pointer;

	z-index: 10;
}

/* ボタンだけだと左に寄るのでラッパー追加 */
.course-dialog__close-wrap {
	position: sticky;
	top: 0;
	display: flex;
	justify-content: flex-end;
	padding: 1.2rem 1.2rem 0;
	background: #fff;
	z-index: 10;
}
.course-dialog__title {
	padding-right: 5.2rem;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.4rem;
	color: #222;
}

.course-dialog__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 1.6rem;
}

.course-dialog__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	background: #fff3f4;
	border: 1px solid #f4c8cf;
	color: #c84b5d;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
}

.course-dialog__lead {
	font-size: 1.45rem;
	line-height: 2;
	color: #444;
}

.course-dialog__summary {
	padding: 0 3.2rem;
	background: #fff;
}

.course-dialog__info {
	border-top: 1px solid #e7e7e7;
}

.course-dialog__infoRow {
	display: grid;
	grid-template-columns: 16rem 1fr;
	border-bottom: 1px solid #e7e7e7;
}

.course-dialog__infoTitle {
	padding: 1.4rem 1.6rem;
	background: #fafafa;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.8;
	color: #333;
}

.course-dialog__infoText {
	padding: 1.4rem 1.6rem;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #333;
}

.course-dialog__section {
	padding: 2.8rem 3.2rem 0;
}

.course-dialog__section + .course-dialog__section {
	padding-top: 3.2rem;
}

.course-dialog__sectionTitle {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0rem;
	padding-bottom: 0.8rem;
	border-bottom: 2px solid #ccc;
	color: #222;
}

.course-dialog__raw {
	white-space: pre-line;
	font-size: 1.45rem;
	line-height: 2;
	color: #333;
	word-break: break-word;
}

.course-dialog__foot {
	padding: 3.2rem;
}

html.is-dialog-open,
body.is-dialog-open {
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.course-dialog {
		width: calc(100% - 1.6rem);
		height: 94vh;
		max-height: 94vh;
		border-radius: 1.2rem;
	}

	.course-dialog__inner {
		height: 94vh;
		border-radius: 1.2rem;
	}

	.course-dialog__header {
		padding: 2.2rem 1.6rem 1.8rem;
	}

	.course-dialog__close {
		top: 1rem;
		right: 1rem;
		width: 3.8rem;
		height: 3.8rem;
		font-size: 1.8rem;
	}

	.course-dialog__title {
		padding-right: 4.4rem;
		font-size: 2rem;
		margin-bottom: 1.2rem;
	}

	.course-dialog__lead,
	.course-dialog__raw,
	.course-dialog__infoText {
		font-size: 1.3rem;
		line-height: 1.9;
	}

	.course-dialog__infoRow {
		grid-template-columns: 1fr;
	}

	.course-dialog__infoTitle {
		padding: 1rem 1.2rem 0.6rem;
		background: #fff;
		font-size: 1.2rem;
		color: #777;
	}

	.course-dialog__infoText {
		padding: 0 1.2rem 1rem;
	}

	.course-dialog__summary,
	.course-dialog__section,
	.course-dialog__foot {
		padding-left: 1.6rem;
		padding-right: 1.6rem;
	}

	.course-dialog__sectionTitle {
		font-size: 1.7rem;
	}
}

.course-dialog span.red {
	color: red;
	font-weight: 700;
}