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

kv

------------------------------------------- */
.top-kv {
  position: relative;
  height: 100vh;
}

.top-kv .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 10rem;
}

#main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#main,
.CMS-NOT-EDITABLE-AREA {
  height: 100vh;
}

@media screen and (max-width: 768px) {
  .top-kv {
    height: auto;
  }
  .top-kv .wrap {
    width: 8rem;
  }
  #main,
  .CMS-NOT-EDITABLE-AREA {
    height: 48rem;
  }
}
/* -------------------------------------------

concept

------------------------------------------- */
.top-concept {
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/top-concept-bg-1.png) no-repeat center top 16rem, url(../img/top-concept-bg-2.png) no-repeat left 20rem bottom;
  background-size: 100% auto, 48rem auto;
}

.top-concept section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.top-concept h3 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
}

.top-concept p {
  margin: 4rem 0 6rem 0;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .top-concept {
    padding: 10rem 3rem;
    background-size: 100% auto, 100% auto;
  }
  .top-concept section {
    text-align: left;
  }
  .top-concept p {
    width: auto;
    line-height: 2;
    margin: 3rem 0 6rem 0;
  }
}
/* -------------------------------------------

menu

------------------------------------------- */
.top-menu {
  position: relative;
  background: url(../img/top-menu-bg.png) no-repeat left bottom -17rem;
  background-size: 60% auto;
  padding: 15rem 0 15rem 0;
}
.top-menu::before {
  content: "";
  width: 95%;
  height: 48rem;
  position: absolute;
  left: 0;
  top: 20rem;
  background: linear-gradient(to right, #161616 63%, #fff 63%);
}

.top-menu .deco {
  position: absolute;
  right: 0;
  top: 6rem;
  width: 48rem;
  z-index: 10;
}

.top-menu .wrap {
  display: flex;
  justify-content: space-between;
}
.top-menu .wrap > div {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}
.top-menu .wrap > div h2 {
  text-align: left;
}
.top-menu .wrap > div p {
  margin-bottom: 6rem;
}
.top-menu .wrap > figure {
  width: 60%;
  margin-top: 20rem;
}
.top-menu .wrap h3 {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .top-menu {
    position: relative;
    background: url(../img/top-menu-bg.png) no-repeat left bottom;
    background-size: 150% auto;
    padding: 10rem 3rem 8rem 3rem;
  }
  .top-menu::before {
    content: "";
    width: 100%;
    height: calc(100% - 15rem);
    position: absolute;
    left: 0;
    top: 15rem;
    background: linear-gradient(to right, #161616 85%, #fff 85%);
  }
  .top-menu .deco {
    top: 6rem;
    width: 28rem;
    z-index: 10;
    pointer-events: none;
  }
  .top-menu .wrap {
    flex-direction: column;
  }
  .top-menu .wrap > div {
    width: 100%;
    display: contents;
  }
  .top-menu .wrap > div h2 {
    text-align: left;
    order: -2;
  }
  .top-menu .wrap > div p {
    margin-bottom: 6rem;
    padding-right: 5.5rem;
  }
  .top-menu .wrap > div .more-wrap {
    display: flex;
    justify-content: flex-start;
  }
  .top-menu .wrap > figure {
    width: 100%;
    margin-top: 0;
    order: -1;
    margin-bottom: 3rem;
  }
}
/* -------------------------------------------

gallery

------------------------------------------- */
.top-gallery {
  padding: 8rem 0 4rem 0;
}

.top-gallery .ttl-wrap {
  display: flex;
  justify-content: flex-end;
  padding-right: calc((100% - 88rem) / 2);
}
.top-gallery .ttl-wrap h2 {
  text-align: left;
}

.top-gallery .wrap {
  display: flex;
  align-items: flex-end;
}
.top-gallery .wrap > div:nth-of-type(1) {
  width: 73%;
  position: relative;
}
.top-gallery .wrap > div:nth-of-type(2) {
  width: 27%;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

@media screen and (max-width: 768px) {
  .top-gallery {
    padding: 8rem 0 4rem 0;
    background: url(../img/top-menu-bg.png) no-repeat left top;
    background-size: 100% auto;
  }
  .top-gallery .ttl-wrap {
    display: flex;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 3rem;
  }
  .top-gallery .ttl-wrap h2 {
    text-align: left;
  }
  .top-gallery .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-gallery .wrap > div:nth-of-type(1) {
    width: 85%;
    margin-bottom: 4rem;
  }
  .top-gallery .wrap > div:nth-of-type(2) {
    width: 100%;
  }
}
/* -------------------------------------------

news

------------------------------------------- */
.top-news {
  padding: 15rem 0 10rem 0;
  position: relative;
}

.top-news .deco {
  position: absolute;
  left: 0;
  top: 0;
  width: 48rem;
}

.top-news .wrap {
  width: 90%;
  margin: 0 auto;
  background: #fff;
  padding: 4.5rem 6rem;
}

.top-news .more {
  margin: 5rem auto 0 auto;
}

@media screen and (max-width: 768px) {
  .top-news {
    padding: 12rem 0 8rem 0;
  }
  .top-news .deco {
    width: 24rem;
  }
  .top-news .wrap {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
  }
  .top-news .more {
    margin: 4rem auto 0 auto;
  }
}
/* cms */
.top-news .CMS-NEWS-INDEX {
  padding-bottom: 0;
}

.top-news .CMS-NEWS-MORE-READ {
  display: none;
}

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

access

------------------------------------------- */
.top-access {
  padding-top: 8rem;
  position: relative;
}
.top-access > * {
  position: relative;
  z-index: 10;
}
.top-access::before {
  content: "";
  width: 78.5%;
  height: 90%;
  position: absolute;
  right: 0;
  top: 0;
  background: #161616;
}

.top-access .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.top-access .wrap > * {
  width: 46%;
}
.top-access .wrap h2 {
  text-align: left;
}
.top-access .wrap .more-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 5rem;
  margin-right: 2rem;
}

.top-access dl {
  border-top: 0.1rem solid #4A4A4A;
  border-left: 0.1rem solid #4A4A4A;
}
.top-access dl dt {
  display: flex;
  align-items: center;
  padding-left: 2rem;
}
.top-access dl dd {
  border-left: 0.1rem solid #4A4A4A;
  padding-left: 2rem;
}

@media screen and (max-width: 768px) {
  .top-access {
    padding: 6rem 3rem 0 3rem;
  }
  .top-access::before {
    content: "";
    width: 78.5%;
    height: 90%;
    position: absolute;
    right: 0;
    top: 0;
    background: #161616;
  }
  .top-access .wrap {
    flex-direction: column;
    margin-bottom: 6rem;
  }
  .top-access .wrap > * {
    width: 100%;
  }
  .top-access .wrap > figure {
    order: -1;
    margin-bottom: 2rem;
  }
  .top-access .wrap > div {
    display: contents;
  }
  .top-access .wrap h2 {
    text-align: left;
    order: -2;
  }
  .top-access .wrap .more-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 5rem;
    margin-right: 2rem;
  }
  .top-access dl {
    border-right: 0.1rem solid #4A4A4A;
  }
}
/* -------------------------------------------

instagram

------------------------------------------- */
.top-insta {
  padding: 10rem 0;
}
.top-insta .wrap {
  width: 80rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top-insta {
    padding: 8rem 0;
  }
  .top-insta .wrap {
    width: auto;
    padding: 0 3rem;
  }
}
/* cms */
.CMS-INSTAGRAM-LIST {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.CMS-INSTAGRAM-LIST > * {
  width: calc((100% - 4rem) / 3);
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

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

layout

------------------------------------------- */
.container {
  margin: 8rem auto 10rem auto;
  width: 88rem;
}

@media screen and (max-width: 768px) {
  .container {
    margin: 8rem 3rem;
    width: auto;
  }
}
/* -------------------------------------------

page-ttl

------------------------------------------- */
.page-ttl {
  background: url(../img/top-kv-1.jpg) no-repeat center/cover;
}

.page-ttl > div {
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24rem;
  padding-top: 4rem;
}

@media screen and (max-width: 768px) {
  .page-ttl > div {
    height: 24rem;
  }
}
.page-ttl h2 {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-ttl h2 .en {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15em;
}
.page-ttl h2 .jp {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.4rem;
  color: #929292;
}

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

menu

------------------------------------------- */
ul.lcmenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}

ul.lcmenu li {
  text-align: center;
  flex: 1;
}

ul.lcmenu li a {
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding-bottom: 0.1rem;
  white-space: nowrap;
}

ul.lcmenu li.current a {
  background: var(--sub);
  color: #fff;
}

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

concept

------------------------------------------- */
.container .wrap {
  display: flex;
  justify-content: space-between;
}

.container .wrap.reverse {
  flex-direction: row-reverse;
}

.container .wrap > figure {
  width: 35%;
}

.container .wrap > figure img {
  aspect-ratio: 3/2;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container .wrap > div {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .container .wrap,
  .container .wrap.reverse {
    flex-direction: column;
  }
  .container .wrap > figure {
    width: 100%;
    margin-bottom: 2rem;
  }
  .container .wrap > div {
    width: 100%;
  }
}
/* -------------------------------------------

gallery

------------------------------------------- */
.gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-list li {
  width: calc((100% - 4rem) / 5);
}

.gallery-list img {
  aspect-ratio: 1/1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .gallery-list li {
    width: calc((100% - 3rem) / 4);
  }
}
/* -------------------------------------------

Retty

------------------------------------------- */
.CMS-FORM-GROUP {
  margin-bottom: 2rem;
}

.CMS-FORM-INPUT-LABEL,
.CMS-FORM-EMAIL-LABEL,
.CMS-FORM-TEXTAREA-LABEL {
  display: block;
  font-weight: 600;
}

.CMS-FORM-INPUT,
.CMS-FORM-TEXTAREA,
.CMS-FORM-EMAIL {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: solid 0.1rem #000;
}

.CMS-FORM-RADIO-LABEL {
  font-weight: 600;
}

.menu-price-list__row:last-of-type {
  margin-bottom: 8rem;
}

.content__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.3rem solid var(--sub);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}

.content__title > *:nth-child(2) {
  font-size: 1.4rem;
}

.restaurant-menu__title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.restaurant-menu__title::before {
  content: "";
  width: 0.3rem;
  height: 1.2rem;
  background: var(--sub);
  margin-right: 1.2rem;
  margin-top: 0.15rem;
}

.menu-price-list__wrapper-in-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 0.1rem #444;
  padding: 1.5rem 1.5rem 1.6rem 1.5rem;
}

@media screen and (max-width: 768px) {
  .menu-price-list__wrapper-in-wrapper {
    flex-direction: column;
  }
  .menu-price-list__wrapper-in-wrapper > * {
    width: 100%;
  }
  .menu-price-list__price {
    text-align: right;
  }
}
.menu-price-list__supplement {
  font-size: 1.2rem;
}

.restaurant-detail__menu:nth-child(n+2) {
  margin-top: 1.5rem;
}

.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;";
  -o-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: 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 {
  display: flex;
}

.course-list-item__price {
  display: flex;
  align-items: center;
  justify-content: center;
  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 {
  margin-left: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

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

.course-list-item__actions-list li:first-child {
  /* display: none; */
}

.course-list-item__action {
  width: 96px;
  display: flex;
  justify-content: center;
}

.course-list-item__action a {
  color: #fff;
  text-align: center;
  background: var(--sub);
  font-size: 12px !important;
}

.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;";
  -o-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 #ccc;
  font-size: 1.07692rem;
}

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

.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: 1.4rem;
}

.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: 0.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: 0.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: 0.92308rem;
}

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

.restaurant-coupon__link:hover {
  opacity: 0.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 0.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.4rem;
}

/* .menu-price-list__row {
    display: flex;
    border-top:1px solid #ccc
} */
.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;";
  -o-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.6rem;
}

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

@media screen and (max-width: 768px) {
  .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: 768px) {
  .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;";
    -o-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 {
    display: flex;
  }
  .course-list-item__price {
    display: flex;
    align-items: center;
    justify-content: center;
    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 {
    margin-left: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .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;
    display: flex;
    justify-content: center;
  }
  .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;";
    -o-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 #ccc;
    font-size: 1.07692rem;
  }
  .course-info-list__description, .course-info-list__title {
    border-top: 1px solid #ccc;
  }
  .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: 0.92308rem;
  }
}/*# sourceMappingURL=style.css.map */