@charset "UTF-8";
/*
 * Theme Name: FV Food Theme
 * Description: 専用テーマ
 * Version: 1.0
 * Author: 株式会社ファイブスターコーポレーション
 */

/* Fonts */
html {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  scroll-behavior: smooth;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
html:lang(en) {
  font-family: 'Libertinus Sans', 'Noto Sans JP', sans-serif;
}
html:lang(ko) {
  font-family: 'Noto Sans KR', 'Noto Sans JP', sans-serif;
}
html:lang(zh-CN) {
  font-family: 'Noto Sans SC', 'Noto Sans JP', sans-serif;
}
html:lang(zh-TW) {
  font-family: 'Noto Sans TC', 'Noto Sans JP', sans-serif;
}

/* Variables */
:root {
  --font-size-10: 0.625rem;
  --font-size-11: 0.6875rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.8125rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-21: 1.3125rem;
  --font-size-22: 1.375rem;
  --font-size-24: 1.5rem;
  --font-size-25: 1.5625rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.6875rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-32: 2rem;
  --font-size-34: 2.125rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;

  --padding-horizontal: min(5.13%, 40px);
  --gap: 30;
}

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

body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,ul,ol,dl,dd,input,textarea{
	margin:0;
}

ul,ol {
  margin-left: 1em;
  padding: 0;
}

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

picture, img{
  display:inline-block;
}

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

address {
  font-style: normal;
}

button {
  appearance: none;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

ul ul {
  list-style: disc;
}

ul.no-list-style {
  list-style: none;
  margin-left: 0;
}

.no-list-style > li {
  display: grid;
}

.no-list-style > li::before {
  content: '\200B';
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

iframe {
  display: block;
  border: none;
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details .content {
  overflow: hidden;
}

body {
  line-height: 1.5;
  overflow-y: scroll;
}

body.no-scroll {
  position: fixed;
  left: 0;
  width: 100%;
}

/* Components */
.link-wrap {
  display: grid;
  gap: 10px 20px;
  place-content: center;
}

.link-button {
  position: relative;
  min-width: 220px;
  padding: 16px;
  border-radius: 100px;
  font-size: var(--font-size-15);
  text-align: center;
}

.link-button i {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  display: grid;
  place-content: center;
  font-size: var(--font-size-12);
}

.link-button.bg-main-color {
  background-color: var(--main-color);
  color: #fff;
}

.link-button.bg-sub-color {
  background-color: var(--sub-color);
  color: #fff;
}

.section-inner {
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
}

section h2 {
  font-size: var(--font-size-30);
  font-weight: 700;
  text-align: center;
}

p > a {
  text-decoration: underline;
}

/* Header */
header {
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
}
@media (width >= 960px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
  }
  .header-nav {
    flex-shrink: 0;
    border-radius: 100px;
    overflow: hidden;
  }
}
@media (width >= 1280px) {
  header {
    padding-right: 70px;
  }
}

.header-logo {
  position: relative;
  z-index: 1;
}
.header-logo img {
  width: 220px;
  height: auto;
}
.header-logo span {
  display: inline-block;
  padding: 20px 10px;
  font-size: clamp(1.875rem, 1.125rem + 1.875vw, 2.25rem);
  font-weight: bold;
}
@media (width >= 960px) {
  .header-logo {
    display: grid;
    align-content: center;
  }
}

.header-menu-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100dvh;
  padding-top: calc(120px - 15px);
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
  background-color: #fff;
  font-size: var(--font-size-15);
  translate: 0 0;
  opacity: 1;
}
@media (width < 960px) {
  .header-menu-wrap {
    transition: opacity 0.4s ease-in, translate 0.3s ease-out;
  }
}
@media (width >= 960px) {
  .header-menu-wrap {
    position: static;
    height: 100%;
    padding: 20px 40px;
  }
  .header-menu {
    display: flex;
    gap: 24px;
  }
}

.header-menu-wrap[inert] {
  translate: -100% 0;
  opacity: 0;
}

@media (width < 960px) {
  .header-menu li {
    border-bottom: 1px solid #cccccc;
  }
  .header-menu a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
@media (width >= 960px) {
  .header-sns {
    display: none;
  }
}

.header-sns li {
  flex: 0 0 48px;
}

.header-toggle-button {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #fff;
}
@media (width >= 960px) {
  .header-toggle-button {
    display: none;
  }
}

.header-toggle-button span {
  position: absolute;
  inset: 0;
  width: 30px;
  height: 2px;
  margin: auto;
  background-color: #000;
  transition: transform 0.3s ease;
  transform: translate(0, 0) rotate(0deg);
}

.header-toggle-button span:nth-of-type(1) {
  --translateY: -6px;
  --rotate: 30deg;
}
.header-toggle-button span:nth-of-type(3) {
  --translateY: 6px;
  --rotate: -30deg;
}

.header-toggle-button[aria-expanded="false"] span:nth-of-type(1),
.header-toggle-button[aria-expanded="false"] span:nth-of-type(3) {
  transform: translate(0, var(--translateY)) rotate(0deg);
}

.header-toggle-button[aria-expanded="true"] span {
  opacity: 0;
}

.header-toggle-button[aria-expanded="true"] span:nth-of-type(1),
.header-toggle-button[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 1;
  transform: translate(0, 0) rotate(var(--rotate));
}

/* Footer */
footer {
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, -40px + 12.5vw, 80px);
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 20px;
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
}
@media (width >= 960px) {
  .footer-inner {
    display: grid;
    place-items: start;
    grid-template-columns: 298px 1fr;
    gap: 32px;
  }
  .footer-gmap {
    grid-column-start: 2;
    grid-row: 1/span 4;
  }
  footer .link-wrap {
    justify-self: center;
  }
}

.footer-logo {
  max-width: 298px;
}
.footer-logo span {
  display: inline-block;
  padding: 20px 10px;
  font-size: clamp(1.875rem, 1.125rem + 1.875vw, 2.25rem);
  font-weight: bold;
}
@media (width >= 960px) {
  .footer-logo {
    display: grid;
    align-content: center;
  }
}

footer address {
  display: grid;
  gap: 5px;
  font-size: var(--font-size-13);
}

.footer-address {
  width: 100%;
}

.footer-gmap {
  justify-self: stretch;
  aspect-ratio: 350/268;
  margin-bottom: 40px;
}
@media (width >= 960px) {
  .footer-gmap {
    aspect-ratio: 518/384;
    margin-bottom: 0;
  }
}

.footer-gmap iframe {
  width: 100%;
  height: 100%;
}

.to-top {
  position: fixed;
  bottom: calc(var(--bottom, var(--gap)) + env(safe-area-inset-bottom));
  right: 20px;
  display: grid;
  place-content: center;
  place-items: center;
  aspect-ratio: 1;
  width: 3.69em;
  height: 3.69em;
  margin-left: auto;
  padding: 12px 0;
  border-radius: 100em;
  background-color: var(--accent-color);
  color: #fff;
  font-size: var(--font-size-13);
  will-change: bottom;
}
@media (width >= 960px) {
  .to-top {
    gap: 10px;
    width: 4.7em;
    height: 4.7em;
    font-size: var(--font-size-20);
  }
}

.to-top i {
  font-size: var(--font-size-12);
}

.copyright {
  margin-top: 105px;
  padding: 20px;
  background-color: var(--copyright-bg-color);
  color: var(--copyright-text-color);
  font-size: var(--font-size-12);
  text-align: center;
}
@media (width >= 960px) {
  .copyright {
    margin-top: 155px;
  }
}

/* MV */
.section-mv {
  position: relative;
}

.section-mv h1 {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--text-color);
  font-size: clamp(1.875rem, 1.125rem + 1.875vw, 2.25rem);
  font-weight: 700;
  text-align: center;
}


.mv-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-info {
  background-color: var(--info-bg-color);
  color: var(--info-text-color);
}
.section-message {
  background-color: var(--message-bg-color);
  color: var(--message-text-color);
}
.section-menu {
  background-color: var(--menu-bg-color);
  color: var(--menu-text-color);
}
.section-faq {
  background-color: var(--faq-bg-color);
  color: var(--faq-text-color);
}
.section-sister {
  background-color: var(--sister-bg-color);
  color: var(--sister-text-color);
}

/* About us */
:where(.section-info, .section-message, .section-menu, .section-faq, .section-sister) .section-inner {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(40px, 6.25vw, 60px);
  padding-bottom: clamp(40px, 6.25vw, 60px);
}

.lead-text {
  margin-top: 25px;
}
@media (width >= 640px) {
  .lead-text {
    text-align: center;
  }
}

.info-wrap {
  margin-top: 50px;
}
@media (width >= 960px) {
  .info-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }
  .info-image {
    grid-row: span 2;
  }
}

.info-list {
  display: grid;
  padding: 20px;
  font-size: var(--font-size-15);
}
@media (width >= 960px) {
  .info-list {
    display: grid;
    grid-template-columns: 168px 1fr;
  }
}

.info-list dt {
  padding-top: 10px;
}
@media (width >= 960px) {
  .info-list dt {
    padding-bottom: 10px;
    border-bottom: 1px solid #cccccc;
  }
}
@media (width < 960px) {
  .info-list dt:first-of-type {
    padding-top: 0;
  }
}

.info-list dd {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}

.info-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 0;
}

.info-sns li {
  flex: 0 0 42px;
}

.section-info .link-wrap {
  margin-top: 20px;
  padding-bottom: 20px;
}
@media (width >= 960px) {
  .section-info .link-wrap {
    grid-column: 2/3;
    grid-template-columns: 1fr auto auto 1fr;
  }
  .section-info .link-button:nth-of-type(1) {
    grid-column-start: 2;
  }
  .section-info .link-button:nth-of-type(2) {
    grid-column-start: 3;
  }
}

/* Message */
.staff_container  {
  display: grid;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}
.staff_container.vertical {
  max-width: 920px;
}
.staff_container .img {
  padding-top: 32px;
  padding-bottom: 32px;
}
.staff_info {
  padding: 20px 32px 52px;
}
.staff_container h3 {
  font-size: var(--font-size-14);
  font-weight: 400;
}
.staff_container .name {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: var(--font-size-20);
}
.staff_container .message {
  display: grid;
  gap: 1em;
}
@media (width >= 640px) {
  .section-message .lead-text {
    margin-bottom: 24px;
  }
  .staff_container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0;
  }
  .staff_container.horizontal {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .staff_container .img {
    padding: 32px;
  }
  .staff_container:nth-of-type(even) .img {
    grid-column-start: 2;
  }
  .staff_container:nth-of-type(even) .staff_info {
    grid-row-start: 1;
  }
  .staff_info {
    padding: 30px;
  }
}

/* Menu */
.section-menu ul {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  margin-left: 0;
}
.section-menu li {
  display: grid;
}
.section-menu li .img {
  position: relative;
}
.section-menu li img {
  width: 100%;
}
.section-menu li a {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1em;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 8px 20px;
  background-color: #fff;
}
.section-menu li p {
  order: 1;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (width >= 640px) {
  .section-menu ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 32px;
    margin-top: 50px;
  }
}
@media (width >= 1024px) {
  .section-menu ul {
    grid-template-columns: repeat(3, 1fr);
  }
}


.photo-gallery {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2,1fr);
  margin-top: 40px;
}
.photo-gallery img {
  width: 100%;
}
@media (width >= 640px) {
  .photo-gallery {
    grid-template-columns: repeat(3,1fr);
    gap: 6px;
  }
}
@media (width >= 1024px) {
  .photo-gallery {
    grid-template-columns: repeat(4,1fr);
  }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #7a7676;
}

.faq-label {
  display: grid;
  place-content: center;
  flex: 0 0 30px;
  height: 30px;
  border: 1px solid var(--main-color);
  border-radius: 100em;
  font-size: 16px;
  font-weight: 400;
}
@media (width >= 960px) {
  .faq-label {
    flex-basis: 36px;
    height: 36px;
  }
}

.faq-label.label-q {
  background-color: var(--main-color);
  color: #fff;
}

.faq-label.label-a {
  background-color: #fff;
  color: var(--main-color);
}

.faq-summary,
.faq-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-summary {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: var(--font-size-18);
  font-weight: 700;
}

.faq-question {
  padding-top: 2px;
}

.faq-summary .fa-chevron-down {
  margin-top: 4px;
  margin-left: auto;
  font-size: 15px;
}

details[open] .faq-summary .fa-chevron-down {
  rotate: 180deg;
}

.faq-inner {
  padding-bottom: 30px;
  font-size: var(--font-size-15);
}

.faq-answer {
  padding-top: 4px;
}

.faq-answer a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--main-color);
  font-weight: 700;
}

.section-faq-inner {
  display: grid;
  max-width: 1026px;
  margin-right: auto;
  margin-left: auto;
}

.faq-lead {
  margin-top: 25px;
  margin-bottom: 40px;
  font-size: var(--font-size-15);
  text-align: center;
}

/* 姉妹店 */
.sister-list {
  display: grid;
  gap: 46px;
  margin-top: 43px;
}
@media (width >= 640px) {
  .sister-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (width >= 940px) {
  .sister-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sister-list li {
  display: grid;
  align-items: start;
  grid-template-rows: auto auto 1fr;
}
.sister-list p {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: var(--font-size-18);
}
.sister-list dl {
  display: grid;
  grid-template-columns: auto 1fr;
}
.sister-list dt {
  padding-right: 14px;
}
.sister-list :where(dt, dd) {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
}
.sister-list a {
  word-break: break-all;
}