/* リセットとベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


body {
  min-height: 100svh;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  font-size: 16px;
  color: #333;
  background-image: url(../images/bg_pc.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@supports (background-image: url(../images/bg_pc.webp)) {
  body {
    background-image: url(../images/bg_pc.webp);
  }
}

@media (max-width: 767px) {
  body {
    background-image: url(../images/bg_sp.png);
  }
}
@supports (background-image: url(../images/bg_sp.webp)) {
  @media (max-width: 767px) {
    body {
      background-image: url(../images/bg_sp.webp);
    }
  }
}


.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .container {
    padding-top: 60px;
    padding-inline: 20px;
  }
}

/* ヘッダー */
.header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 16px;
  padding-block: 20px;
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: row-reverse;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 20px;
    z-index: 50;
  }
}

.header__search {
  width: 30px;
}
@media (max-width: 767px) {
  .header__search {
    display: none;
  }
}

.header__menu {
  width: 30px;
}
@media (max-width: 767px) {
  .header__menu {

  }
}

.header__sp-logo {
  display: none;
}
@media (max-width: 767px) {
  .header__sp-logo {
    display: block;
    color: #fff;
    width: 200px;
  }
}


.mv {
  position: relative;
}
@media (max-width: 767px) {
  .mv {
    display: none;
  }
}

.mv__heading {
  width: 50%;
  margin-inline: auto;
}

.mv__sub-heading-and-badge {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .mv__sub-heading-and-badge {
    flex-direction: column;
    align-items: initial;
    justify-content: initial;
    margin-top: 30px;
  }
}

.mv__sub-heading {
  width: 30%;
}
@media (max-width: 767px) {
  .mv__sub-heading {
    width: 60%;
    margin-inline: auto;
  }
}

.mv__badge {
  width: 15%;
}
@media (max-width: 767px) {
  .mv__badge {
    width: 40%;
    margin-top: 30px;
  }
}

.mv__button-group {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  max-width: 660px;
  padding-inline: 30px;
  margin-inline: auto;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .mv__button-group {
    margin-top: 40px;
  }
}

.mv__read {
  width: fit-content;
  margin-inline: auto;
  font-size: 30px;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .mv__read {
    font-size: 20px;
    margin-top: 40px;
  }
}

.mv__text-group {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .mv__text-group {
    margin-top: 30px;
  }
}

.mv__text {
  width: fit-content;
  margin-inline: auto;
  font-size: 20px;
}
@media (max-width: 767px) {
  .mv__text {
    font-size: 18px;
  }
}

.news {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .news {
    margin-top: 50px;
  }
}

.news::after {
  content: '';
  position: absolute;
  top: -50px;
  right: 0;
  width: 50px;
  height: 52px;
  background: url(../images/icon-heart.png) no-repeat center / contain;
}
@media (max-width: 767px) {
  .news::after {
    top: -30px;
    width: 25px;
    height: 26px;
  }
}

.news__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 30px;
}
@media (max-width: 767px) {
  .news__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

.news__text-area {
  grid-area: 1 / 2 / 2 / 4;
}
@media (max-width: 767px) {
  .news__text-area {
    grid-area: 1 / 2 / 2 / 3;
  }
}

@media (max-width: 767px) {
  .news__heading {
    font-size: 16px;
  }
}


.news__list {
  padding-left: 20px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .news__list {
    padding-left: 0;
    margin-top: 0;
  }
}

.news__text {
  position: relative;
  font-size: 18px;
  border-bottom: 2px dotted #333;
  margin-left: 30px;
  padding-block: .2em;
}
@media (max-width: 767px) {
  .news__text {
    font-size: 14px;
    margin-left: 20px;
    padding-block: .4em;
  }
}

.news__text::before {
  content: '';
  position: absolute;
  top: 11px;
  left: -30px;
  width: 16px;
  height: 16px;
  background-color: #333;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .news__text::before {
    top: 12px;
    left: -16px;
    width: 10px;
    height: 10px;
  }
}

.news__item:nth-of-type(2) {
  grid-area: 1 / 1 / 2 / 2;
}
.news__item:nth-of-type(3) {
  grid-area: 2 / 1 / 3 / 2;
}
.news__item:nth-of-type(4) {
  grid-area: 2 / 2 / 3 / 3;
}
.news__item:nth-of-type(5) {
  grid-area: 2 / 3 / 3 / 4;
}
.news__item:nth-of-type(6) {
  grid-area: 3 / 1 / 4 / 2;
}
.news__item:nth-of-type(7) {
  grid-area: 3 / 2 / 4 / 3;
}
.news__item:nth-of-type(8) {
  grid-area: 3 / 3 / 4 / 4;
}

@media (max-width: 767px) {
  .news__item:nth-of-type(2) {
    grid-area: 1 / 1 / 2 / 2;
  }
  .news__item:nth-of-type(3) {
    grid-area: 2 / 1 / 3 / 2;
  }
  .news__item:nth-of-type(4) {
    grid-area: 2 / 2 / 3 / 3;
  }
  .news__item:nth-of-type(5) {
    grid-area: 3 / 1 / 4 / 2;
  }
  .news__item:nth-of-type(6) {
    grid-area: 3 / 2 / 4 / 3;
  }
  .news__item:nth-of-type(7) {
    grid-area: 4 / 1 / 5 / 2;
  }
  .news__item:nth-of-type(8) {
    grid-area: 4 / 2 / 5 / 3;
  }
}

.news__item-image-wrap {
  aspect-ratio: 4 / 3;
}

.news__item-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__item figcaption {
  display: grid;
  place-content: center;
  font-size: 18px;
  padding: .5em 1.5em;
  background-color: #e9e4de;
}
@media (max-width: 767px) {
  .news__item figcaption {
    font-size: 14px;
    padding: 0.5em;
  }
}

.section {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .section {
    margin-top: 40px;
  }
}

.c-heading {
  position: relative;
  font-size: 24px;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .c-heading {
    font-size: 18px;
    padding-top: 0;
  }
}

.c-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 80px;
  background: url(../images/icon-ribbon.png) no-repeat center / contain;
}
@media (max-width: 767px) {
  .c-heading::before {
    content: none;
  }
}


.section__read {
  font-size: 20px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .section__read {
    font-size: 16px;
  }
}


.c-swiper-container {
  width: 100vw;
  margin-right: calc(50% - 50vw);
}

.c-swiper {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-swiper {
    margin-top: 20px;
  }
}

.c-swiper figure {
  padding: 16px;
  background-color: #dfe0f4;
}
@media (max-width: 767px) {
  .c-swiper figure {
    padding: 10px;
  }
}

.c-swiper figcaption {
  font-size: 18px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .c-swiper figcaption {
    font-size: 14px;
    margin-top: 10px;
  }
}

.c-link {
  position: relative;
  display: block;
  width: fit-content;
  font-size: 18px;
  color: #545454;
  padding-right: 5em;
  padding-bottom: 6px;
  margin-top: 30px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .c-link {
    font-size: 14px;
    padding-right: 3em;
    padding-bottom: 3px;
    margin-top: 10px;
  }
}

.c-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #545454;
}
@media (max-width: 767px) {
  .c-link::before {
  }
}

.c-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #545454;
  border-right: 2px solid #545454;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .c-link::after {
    bottom: -2px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #545454;
    border-right: 2px solid #545454;
  }
}

.sns {
  min-height: 300px;
  padding: 60px;
  background-color: #9394d7;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .sns {
    padding: 26px;
  }
}

.sns .sbi_feedtheme_header_text {
  color: #fff;
}


/* レストラン 一覧ページ */
.restaurant-archive-mv {
  width: 100vw;
  margin-top: 40px;
  margin-inline: calc(50% - 50vw);
}

.restaurant-archive-section {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .restaurant-archive-section {
    margin-top: 10px;
  }
}

.restaurant-archive-heading {
  width: min(400px, 80%);
  margin-left: auto;
}
@media (max-width: 767px) {
  .restaurant-archive-heading {
    width: min(400px, 65%);
  }
}
.restaurant-archive-heading img {
  max-width: initial;
  width: 100%;
  height: auto;
}

.restaurant-archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .restaurant-archive-list {
    gap: 10px;
    margin-top: 20px;
  }
}

.restaurant-archive-list .c-figure {
  width: calc( (100% - 20px - 20px) / 3 );
}
@media (max-width: 767px) {
  .restaurant-archive-list .c-figure {
    width: calc( (100% - 10px) / 2 );
  }
}

/* レストラン 詳細ページ */
.restaurant-mv {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .restaurant-mv {
    margin-top: 40px;
  }
}

.restaurant-mv__image {
  aspect-ratio: 16 / 9;
}

.restaurant-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-mv figcaption {
  width: fit-content;
  font-size: 16px;
  margin-left: auto;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .restaurant-mv figcaption {
    font-size: 14px;
    margin-inline: auto;
  }
}

.restaurant-heading-group {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 6px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .restaurant-heading-group {
    row-gap: 3px;
    margin-top: 20px;
  }
}

.restaurant-heading {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .restaurant-heading {
    font-size: 24px;
  }
}

.restaurant-sub-heading {
  font-size: 16px;
}

.restaurant-images {
  position: relative;
  display: flex;
  column-gap: 8px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .restaurant-images {
    width: 100vw;
    margin-top: 30px;
    margin-inline: calc(50% - 50vw);
  }
}

.restaurant-images::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 0;
  width: 50px;
  height: 52px;
  background: url(../images/icon-heart.png) no-repeat center / contain;
}
@media (max-width: 767px) {
  .restaurant-images::before {
    top: -40px;
    right: 20px;
    width: 25px;
    height: 26px;
  }
}

.restaurant-images li {
  width: calc((100% - 8px - 8px) / 3);
}

.restaurant-images li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-sub-section {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .restaurant-sub-section {
    margin-top: 40px;
  }
  .restaurant-sub-section.info {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 20px;
    padding-top: 40px;
    background-color: #fff5f3;
  }
}

.restaurant-sub-section__heading {
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .restaurant-sub-section__heading {
    font-size: 18px;
  }
}

.restaurant-read {
  font-size: 18px;
  line-height: 1.75;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .restaurant-read {
    font-size: 14px;
    margin-top: 10px;
  }
}

.restaurant-point {
  display: flex;
  column-gap: 30px;
  justify-content: center;
  padding-inline: 60px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .restaurant-point {
    column-gap: 4px;
    padding-inline: 0;
    margin-top: 10px;
  }
}

.restaurant-point li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  width: calc((100% - 30px - 30px - 60px - 60px) / 3);
  max-width: 377px;
  padding: 28px;
  border-radius: 16px;
  background-color: #c1c0e8;
}
@media (max-width: 767px) {
  .restaurant-point li {
    row-gap: 10px;
    width: calc((100% - 4px - 4px) / 3);
    padding: 10px 5px;
    border-radius: 8px;
  }
}

.restaurant-point__heading {
  font-size: 26px;
}
@media (max-width: 767px) {
  .restaurant-point__heading {
    font-size: 14px;
  }
}

.restaurant-point__text {
  font-size: 18px;
  text-align: center;
}
@media (max-width: 767px) {
  .restaurant-point__text {
    font-size: 12px;
  }
}

.restaurant-info-wrap {
  margin-top: 40px;
  padding: 60px 180px;
  background-color: #fff5f3;
}
@media (max-width: 767px) {
  .restaurant-info-wrap {
    margin-top: 0;
    padding: 20px 0 40px;
  }
}

.restaurant-info {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  color: #555356;
  word-wrap: break-word;
}

.restaurant-info dt {
  font-size: 20px;
  font-weight: bold;
  width: 10em;
  padding-right: 2em;
  padding-top: 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #555356;
}
@media (max-width: 767px) {
  .restaurant-info dt {
    font-size: 14px;
  }
}

.restaurant-info dd {
  width: calc(100% - 200px);
  font-size: 18px;
  padding-top: 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #555356;
}
@media (max-width: 767px) {
  .restaurant-info dd {
    width: calc(100% - 140px);
    font-size: 14px;
  }
}

.restaurant-info dd a {
  text-decoration: underline;
}

.restaurant-button {
  display: grid;
  place-content: center;
  max-width: 600px;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  margin-top: 50px;
  margin-inline: auto;
  padding: 0.6em 1.5em;
  background-color: #9394d7;
  border-radius: 25px;
  box-shadow: 0px 10px 0px 0px #dad0ce;
}
@media (max-width: 767px) {
  .restaurant-button {
    width: 75%;
    font-size: 16px;
    margin-top: 20px;
    padding: 0.5em;
    border-radius: 15px;
    box-shadow: 0px 6px 0px 0px #dad0ce;
  }
}

.restaurant-recommend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .restaurant-recommend {
    gap: 8px;
    margin-top: 10px;
  }
}

.restaurant-recommend .c-figure {
  width: calc( ( 100% - 16px - 16px ) / 3 );
}
@media (max-width: 767px) {
  .restaurant-recommend .c-figure {
    width: calc( ( 100% - 8px ) / 2 );
  }
}
.c-figure__image {
  aspect-ratio: 1 / 1;
}

.c-figure__image img {
  height: 100%;
  object-fit: cover;
}

.c-figure figcaption {
  display: grid;
  place-content: center;
  font-size: 20px;
  padding: 1em;
  background-color: #e9e4de;
}
@media (max-width: 767px) {
  .c-figure figcaption {
    font-size: 14px;
    padding: .5em;
  }
}

/* フォトギャラリーの画像のスタイル */
.photo-gallery-image-wrap {
  aspect-ratio: 4 / 3;
}

.photo-gallery-image {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* footer */
#footer {
  width: 100%;
  font-size: 12px;
  margin-top: 25px;
  clear: both;
}
#footer a {
  color: #069;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
  -webkit-transition: color 0.3s, background-color 0.3s;
}

.footer_navi{
  background: #FFF;
  padding: 20px 0;
  float: left;
  width: 100%;
  border-top: 1px solid #e4e0ca;
  border-bottom: 1px solid #e4e0ca;
}
.footerLogo{
  float: left;
  max-width: 223px;
  min-height: 200px;
  margin: 10px 10px 0 20px;
}
@media screen and (max-width:980px){
  .footerLogo{
    float: none;
    min-height: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width:480px){
  .footerLogo{
    min-height: 20px;
    margin: 5px 10px 20px 20px;
  }
}
.banner-footer{
  margin-top: 15px;
}

#logoimg-footer img{
  width: 100%;
}
.footer_sitemapUl{
  float: left;
  margin: 10px 30px 10px 20px;
}
@media screen and (max-width:480px){
  .footer_sitemapUl{
    margin: 0 10px 0 20px;
    width: 100%;
  }
}
.footer_sitemapUl li{
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (max-width:480px){
  .footer_sitemapUl li{
    background:url("../img/arrow_blue.png") no-repeat 0 2px ;
    background-size: 9px;
    padding: 0 0 0 15px;
    margin-bottom: 10px;
  }
}
.footer_sitemapUlinli{
  margin: 5px 0 0 20px;
  list-style: disc;
}
@media screen and (max-width:480px){
  .footer_sitemapUlinli{
    display: none;
  }
}
.footer_sitemapUlinli li{
  margin-bottom: 5px;
}
.footerUnyou{
  clear: both;
  float: right;
  margin: 0 20px;
}
.copy{
  float: right;
  margin: 10px 20px 20px;
  height: 20px;
}
