@charset "UTF-8";
.c-section {
  padding: 60px 30px;
}
@media screen and (max-width: 700px) {
  .c-section {
    padding: 30px;
  }
}
.c-section.-bk_green {
  background-color: #E5F6EE;
}
.c-section.-bk_green .c-ttl {
  margin-top: 0;
}

.c-ttl, .c-sub_ttl {
  color: #02A558;
  text-align: center;
  font-weight: bold;
}

.c-ttl {
  font-size: 32px;
  margin-top: 90px;
}
@media screen and (max-width: 700px) {
  .c-ttl {
    margin-top: 30px;
  }
}

.c-sub_ttl {
  font-size: 24px;
  margin-top: 50px;
}
@media screen and (max-width: 700px) {
  .c-sub_ttl {
    margin-top: 20px;
  }
}
.c-sub_ttl + .c-txt {
  margin-top: 50px;
}
.c-sub_ttl.-left {
  text-align: left;
}

.c-txt_head {
  color: #02A558;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  margin-top: 90px;
}
.c-txt_head + .c-txt {
  margin-top: 40px;
}

.c-txt {
  font-size: 16px;
  color: #363636;
  line-height: 1.8;
  max-width: 768px;
  margin: 50px auto 0;
}

.c-2column_wrap {
  display: flex;
  gap: 30px;
  max-width: 1086px;
  justify-content: space-between;
  margin: 80px auto 0;
}
.c-2column_wrap + .c-moreBtn_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 700px) {
  .c-2column_wrap + .c-moreBtn_wrap {
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .c-2column_wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
}

.c-2column_wrap.-min {
  max-width: 990px;
}

.c-2column_wrap_in {
  width: 430px;
}
@media screen and (max-width: 700px) {
  .c-2column_wrap_in {
    width: 100%;
  }
}

.c-panel {
  margin-top: 50px;
}
.c-panel + .c-sub_ttl {
  margin-top: 200px;
}
@media screen and (max-width: 700px) {
  .c-panel + .c-sub_ttl {
    margin-top: 50px;
  }
}
.c-panel + .c-txt {
  margin-top: 50px;
}
@media screen and (max-width: 700px) {
  .c-panel + .c-txt {
    margin-top: 30px;
  }
}

.c-panel.-square .c-panel_img {
  margin: 0 auto;
  width: 610px;
  height: 610px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 700px) {
  .c-panel.-square .c-panel_img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 700px) {
  .c-panel.-square {
    aspect-ratio: 1/1;
    width: 100%;
  }
}

.c-panel-2column {
  display: flex;
  gap: 30px;
  width: 100%;
}
.c-panel-2column .c-panel_img {
  width: calc(50% - 15px);
}
@media screen and (max-width: 700px) {
  .c-panel-2column .c-panel_img {
    aspect-ratio: 1/1;
  }
}
.c-panel-2column + .c-panel-2column {
  margin-top: 30px;
}
@media screen and (max-width: 700px) {
  .c-panel-2column + .c-panel-2column {
    margin-top: 15px;
  }
}
@media screen and (max-width: 700px) {
  .c-panel-2column {
    gap: 15px;
  }
}

.c-panel_img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
@media screen and (max-width: 700px) {
  .c-panel_img {
    height: auto;
    aspect-ratio: 3/2;
  }
}

.c-tabCont {
  display: none;
}

.c-tabCont.is-active {
  display: block;
}

.c-tabs_wrap {
  margin-top: 90px;
}
@media screen and (max-width: 700px) {
  .c-tabs_wrap {
    margin-top: 30px;
  }
}

.c-tabs {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  color: #02A558;
  border: 2px solid #02A558;
  border-radius: 50px;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .c-tabs {
    font-size: 14px;
    padding: 8px;
    gap: 5px;
  }
}

.c-tab_item {
  flex: 1;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  padding: 14px 10px;
  line-height: 1.3;
}
.c-tab_item span {
  display: block;
  text-align: center;
}
.c-tab_item.is-active {
  color: #fff;
  background-color: #02A558;
}
.c-tab_item:hover {
  cursor: pointer;
}

.c-moreBtn_wrap {
  text-align: center;
}

.c-moreBtn {
  margin-top: 30px;
  display: inline-block;
  color: #fff;
  background-color: #02A558;
  border-radius: 50px;
  padding: 10px 40px 10px 20px;
  position: relative;
}
.c-moreBtn::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_plus.svg);
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
.c-moreBtn.is-open {
  color: #02A558;
  border: 2px solid #02A558;
  background-color: transparent;
}
.c-moreBtn.is-open::after {
  background-image: url(../images/icon_minus.svg);
}

.c-moreCont {
  max-width: 768px;
  margin: 90px auto;
  display: none;
  position: relative;
}

.c-footer {
  background-color: #e6f7f2;
  text-align: center;
  padding: 50px 0;
}

.c-footer_sns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.c-footer_sns_item {
  display: inline-block;
}

.c-footer_sns_link {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
}

.c-footer_sns_link.-x {
  background-image: url("../images/sns-x.png");
}

.c-footer_sns_link.-insta {
  background-image: url("../images/sns-insta.png");
}

.c-footer_sns_link.-facebook {
  background-image: url("../images/sns-facebook.png");
}

.c-footer_sns_link.-youtube {
  background-image: url("../images/sns-youtube.png");
}

.c-footer_links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.c-footer_links_item {
  display: inline-block;
}

.c-footer_links_link {
  color: #333;
}

.c-footer_copy {
  margin-top: 40px;
  display: block;
  color: #666;
  font-size: 15px;
}
@media screen and (max-width: 700px) {
  .c-footer_copy {
    font-size: 12px;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  font-family: "Noto Sans JP";
}

.l-h {
  position: fixed;
  top: -1px;
  width: 100%;
  height: 100px;
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
@media screen and (max-width: 700px) {
  .l-h {
    height: 70px;
  }
}
.l-h_in {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .l-h_in {
    font-size: 1.6vw;
    gap: 2vw;
  }
}
@media screen and (max-width: 700px) {
  .l-h_in {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .l-h_in {
    width: calc(100% - 30px);
  }
}
.l-h_in_btn {
  display: block;
  text-decoration: none;
  color: #333;
}
@media screen and (max-width: 700px) {
  .l-h_in_btn {
    font-size: 16px;
    padding: 16px;
  }
}
.l-h_in_btn.u-green {
  color: #02A558;
}
.l-h_in_lang {
  display: flex;
  gap: 0;
}
.l-h_in_lang_select {
  line-height: 1;
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .l-h_in_lang_select {
    font-size: 16px;
    padding: 16px 0;
  }
}
.l-h_in_lang_select.u-active {
  color: #02A558;
}
@media screen and (max-width: 700px) {
  .l-h_in.u-active {
    display: block;
    top: 70px;
    position: absolute;
    text-align: center;
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 700px) {
  .l-h_in.u-active .l-h_in_lang {
    text-align: center;
    justify-content: center;
  }
}
.l-h_homebtn {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #D00F31;
  text-align: center;
  line-height: 100px;
}
@media screen and (max-width: 700px) {
  .l-h_homebtn {
    width: auto;
    line-height: 70px;
    display: inline-block;
    text-align: left;
  }
}
@media screen and (max-width: 450px) {
  .l-h_homebtn {
    font-size: 24px;
  }
}
.l-h .c-togglebtn_sidebar {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  top: calc(50% - 18px);
  right: 18px;
  z-index: 10000;
}
@media screen and (min-width: 701px) {
  .l-h .c-togglebtn_sidebar {
    display: none;
  }
}
.l-h .c-togglebtn_sidebar span {
  content: "";
  position: absolute;
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background-color: #02A558;
  left: 0;
}
.l-h .c-togglebtn_sidebar span:nth-child(1) {
  top: 7px;
}
.l-h .c-togglebtn_sidebar span:nth-child(2) {
  top: 16px;
}
.l-h .c-togglebtn_sidebar span:nth-child(3) {
  top: 25px;
}
.l-h .c-togglebtn_sidebar.u-active span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}
.l-h .c-togglebtn_sidebar.u-active span:nth-child(2) {
  width: 0;
}
.l-h .c-togglebtn_sidebar.u-active span:nth-child(3) {
  top: 16px;
  transform: rotate(-45deg);
}

.p-hero_video {
  display: block;
  width: 100%;
  height: unset;
  aspect-ratio: 3/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 99px;
}
@media screen and (max-width: 1400px) {
  .p-hero_video {
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 700px) {
  .p-hero_video {
    margin-top: 69px;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 500px) {
  .p-hero_video {
    aspect-ratio: 2/3;
  }
}

.p-lead {
  width: 580px;
  margin: 100px auto 100px;
}
@media screen and (max-width: 700px) {
  .p-lead {
    width: calc(100% - 60px);
    margin: 80px auto 80px;
  }
}

.p-lead_ttl {
  color: #02A558;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
}
.p-lead_ttl.u-center {
  text-align: center;
}

.p-lead_txt {
  margin-top: 50px;
}

.p-lead_img_wrap {
  width: 100%;
  aspect-ratio: 4/1;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .p-lead_img_wrap {
    aspect-ratio: 2/1;
  }
}

.p-lead_img {
  width: 100%;
  height: 30vw;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 700px) {
  .p-lead_img {
    height: 80vw;
  }
}
.p-profile_thumb {
  width: 486px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
@media screen and (max-width: 700px) {
  .p-profile_thumb {
    width: 100%;
    height: unset;
  }
}
@media screen and (max-width: 700px) {
  .p-profile_thumb img {
    height: 120vw;
  }
}

.p-profile_thumb_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-profile_links {
  margin-top: 30px;
  text-align: right;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .p-profile_links {
    max-width: 480px;
    margin: 30px 0;
    font-size: 14px;
    text-align: left;
  }
}

.p-profile_info {
  width: 480px;
}
@media screen and (max-width: 700px) {
  .p-profile_info {
    width: 100%;
    margin-top: 0;
  }
}
.p-profile_info .c-sub_ttl {
  text-align: left;
  margin-top: 0;
}
.p-profile_info .c-txt {
  margin-top: 30px;
}
.p-profile_info .c-txt_link {
  color: #02A558;
  text-decoration: none;
}

.p-profile_link {
  text-decoration: none;
  color: #02A558;
  line-height: 2;
}

.p-restaurant_thumb {
  width: 480px;
  height: 512px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
@media screen and (max-width: 700px) {
  .p-restaurant_thumb {
    width: 100%;
    height: 80vw;
  }
}

.p-restaurant_thumb_wrap {
  display: flex;
  flex-direction: column;
}

/* ページトップに戻るボタン用CSS */
.scroll-to-top {
  position: fixed;
  bottom: 50px;
  right: calc(50% - 480px);
  width: 50px;
  height: 50px;
  background-color: #02A558;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  transition: opacity 0.3s;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .scroll-to-top {
    right: 20px;
    bottom: 60px;
  }
}

.scroll-to-top svg {
  fill: #ffffff;
  width: 24px;
  height: 24px;
}

.scroll-to-top.show {
  opacity: 1;
}

.c-panel_video {
  display: block;
  background-color: #ccc;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 768px;
  margin: 20px auto 0;
  border-radius: 18px;
}
.c-panel_video.u-margintop {
  margin: 100px auto 50px;
}

#sec_author {
  padding: 30px 0;
}

.swiper_outside {
  width: 768px;
  margin: 30px auto;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .swiper_outside {
    width: 600px;
  }
}
@media screen and (max-width: 700px) {
  .swiper_outside {
    width: 100%;
  }
}

.swiper {
  width: 768px;
}
@media screen and (max-width: 1000px) {
  .swiper {
    width: 600px;
  }
}
@media screen and (max-width: 700px) {
  .swiper {
    width: 100%;
  }
}

.swiper--wrapper {
  width: 100%;
}

.swiper-slide {
  color: #ffffff;
  background-color: #ccc;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  text-align: center;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.6s;
  cursor: pointer;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_plus.svg);
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  top: 12px;
  right: 12px;
  opacity: 0.7;
}
@media (any-hover: hover) {
  .swiper-slide img {
    opacity: 1;
    transition: 0.6s;
  }
  .swiper-slide img:hover {
    opacity: 0.7;
    transition: 0.6s;
  }
}

.swiper-slide-caption {
  display: inline-block;
  height: 30px;
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80px;
  width: 100%;
  text-align: left;
  border-radius: 0;
  line-height: 1.2;
  padding: 20px 20px 20px;
  font-size: 16px;
}
.swiper-slide-caption.u-small {
  font-size: 12px;
  letter-spacing: -0.02em;
}

.swiper-pagination-bullets {
  position: static;
  margin-top: 16px;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #333 !important;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper-button-prev {
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/tokyo_food_arrow_prev.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: -70px;
  position: absolute;
}
@media screen and (max-width: 700px) {
  .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next {
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/tokyo_food_arrow_next.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -70px;
  position: absolute;
}
@media screen and (max-width: 700px) {
  .swiper-button-next {
    display: none;
  }
}

.c-popup_author {
  width: 100%;
  height: calc(100% - 100px);
  position: fixed;
  top: 100px;
  left: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 8000;
}
@media screen and (max-width: 700px) {
  .c-popup_author {
    height: calc(100% - 70px);
    top: 70px;
  }
}
.c-popup_author.u-active {
  display: grid;
}
.c-popup_author_in {
  position: absolute;
  width: 1000px;
  padding: 50px;
  border-radius: 18px;
  background-color: #E5F6EE;
}
@media screen and (max-width: 1200px) {
  .c-popup_author_in {
    width: 60vw;
  }
}
@media screen and (max-width: 700px) {
  .c-popup_author_in {
    width: 90vw;
    height: calc(100% - 100px);
    overflow-y: auto;
    padding: 30px;
  }
}
.c-popup_author_in_unit {
  display: flex;
  justify-content: center;
  place-items: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .c-popup_author_in_unit {
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .c-popup_author_in_unit {
    flex-direction: column;
  }
}
.c-popup_author_in_unit_half {
  width: 200px;
}
@media screen and (max-width: 1200px) {
  .c-popup_author_in_unit_half {
    width: 25vw;
  }
}
@media screen and (max-width: 700px) {
  .c-popup_author_in_unit_half {
    width: 100%;
  }
}
.c-popup_author_in_portrait {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 18px;
}
.c-popup_author_in_links {
  display: flex;
  gap: 20px;
  justify-content: center;
  height: 50px;
  margin-top: 20px;
}
.c-popup_author_in_links_btn {
  display: block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-popup_author_in_links_btn:hover {
  opacity: 0.8;
}
.c-popup_author_in_links_btn.u-website {
  background-image: url(../images/tokyofood_icon_web.svg);
}
.c-popup_author_in_links_btn.u-instagram {
  background-image: url(../images/tokyofood_icon_instagram.svg);
}
.c-popup_author_in_links_btn.u-article {
  background-image: url(../images/tokyofood_icon_article.svg);
}
.c-popup_author_in_instagram {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}
.c-popup_author_in_close {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
  background-image: url(../images/tokyofood_close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .c-popup_author_in_close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}
.c-popup_author_in .c-ttl {
  margin-top: 0;
}
@media screen and (max-width: 1200px) {
  .c-popup_author_in .c-ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {
  .c-popup_author_in .c-ttl {
    font-size: 20px;
  }
}
.c-popup_author_in .c-sub_ttl {
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  .c-popup_author_in .c-sub_ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  .c-popup_author_in .c-sub_ttl {
    font-size: 14px;
  }
}

#sec_pr_movie {
  padding-top: 0;
}
#sec_pr_movie .c-ttl {
  margin-top: 0;
}

.c-txt.u-companylink {
  color: #02A558;
  text-align: center;
}
.c-txt.u-companylink .c-txt_link {
  color: #02A558;
}

.c-sub_ttl.u-margintop {
  margin-top: 100px;
}

.c-sub_ttl + .c-txt {
  margin-top: 30px;
}

#beforeMoreBtn_Chef {
  margin-top: 50px;
}/*# sourceMappingURL=style.css.map */