/*!
Theme Name: やどり
Author: -
Author URI: -
Description: -
Version: 1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yadori
Tags: custom, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, full-site-editing, one-column, template-editing, wide-blocks
*/

/**************************************************************
* CSS vars
**************************************************************/

body {
  --alphabetic-font: var(--wp--preset--font-family--alphabetic-font);
  --kana-font: var(--wp--preset--font-family--kana-font);
  --base-font-family: var(--kana-font);
  --mv-text-color: #ffffff;
}



/**************************************************************
* Global settings
**************************************************************/

html,
.editor-styles-wrapper {
  font-size: 3.733vw;
  scroll-behavior: smooth;
}

body,
.editor-styles-wrapper body {
  position: relative;
  min-width: 320px;
  font-family: var(--base-font-family);
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

@media (min-width: 768px) and (max-width: 1023px) {
  html,
  .editor-styles-wrapper {
    font-size: 1.5vw;
  }
}

@media (min-width: 1024px) {
  html,
  .editor-styles-wrapper {
    font-size: 0.8333vw;
  }
}

/* hover */
@media (hover: hover) {
  a img {
    transition: opacity 0.3s ease-out;
  }

  a:hover img {
    opacity: 0.8;
  }
}



/**************************************************************
* WP styles
//MEMO: 
cherry picked from "wp-block-library" and now defined here 
**************************************************************/

.wp-element-button {
  cursor: pointer
}

.has-regular-font-size {
  font-size: 1em
}

.has-larger-font-size {
  font-size: 2.625em
}

.has-normal-font-size {
  font-size: var(--wp--preset--font-size--normal)
}

.has-huge-font-size {
  font-size: var(--wp--preset--font-size--huge)
}

.has-text-align-center {
  text-align: center
}

.has-text-align-left {
  text-align: left
}

.has-text-align-right {
  text-align: right
}

.aligncenter {
  clear: both
}

.items-justified-left {
  justify-content: flex-start
}

.items-justified-center,
.is-content-justification-center {
  justify-content: center
}

.items-justified-right {
  justify-content: flex-end
}

.items-justified-space-between {
  justify-content: space-between
}

.has-custom-color-1-gradient-background {
  background: linear-gradient(145deg, var(--wp--preset--color--gradient-color-1) 28%, var(--wp--preset--color--gradient-color-2) 100%);
}



/**************************************************************
* WP overrides
**************************************************************/

/* wp-block-cover
********************************/
.wp-block-cover {
  padding: inherit;
}

.wp-block-cover,
.wp-block-cover-image {
  height: 100%;
}

.wp-block-cover,
.wp-block-cover-image {
  min-height: 100%;
}


/* wp-block-social
********************************/
.wp-block-social-links .wp-block-social-link.wp-social-link {
  display: inherit;
}

.wp-block-social-link-label.screen-reader-text {
  display: none;
}

/* wp-block-cb-carousel
********************************/
.wp-block-cb-carousel,
.wp-block-cb-carousel .slick-list,
.wp-block-cb-carousel .slick-track {
  height: 100%;
} 

.wp-block-cb-carousel .slick-slide {
  padding-left: inherit;
  padding-right: inherit;
}


/**************************************************************
* WPブロックの指定 (wp-)
**************************************************************/

/* wp-headline
********************************/
.wp-headline {
  position: relative;
  display: table;
  line-height: 2.5;
  margin-bottom: calc(120/1920 * 100vw);
  margin-right: auto;
  margin-left: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.wp-headline::before,
.wp-headline::after {
  content: "";
  position: absolute;
  top: 0;
  display: inline-flex;
  width: 3px;
  height: 50px;
  background-color: var(--wp--preset--color--primary);
  transform: skew(-30deg);
}
.wp-headline::before {
  left: 0;
}
.wp-headline::after {
  right: 0;
}

.wp-headline__kana {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.wp-headline__alphabetic {
  padding-bottom: 0.5rem;
  text-align: center;
  font-family: var(--alphabetic-font);
  font-size: 8vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--primary);
}

@media all and (min-width: 1024px) {
  .wp-headline {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .wp-headline::before,
  .wp-headline::after {
    height: 100px;
  }

  .wp-headline > p {
    font-size: 2.9vw;
  }
}


/* wp-section
************************************************/
.wp-section {
  position: relative;
}


/* wp-block-button
************************************************/
.wp-block-button {
  position: relative;
}
.wp-block-button:not(.has-custom-width) {
  width: 100%;
  height: 64px;
}

.wp-block-button .wp-block-button__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  background: var(--wp--preset--color--primary);
}

@media (max-width: 1023px) {
  .wp-block-button {
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .wp-block-button:not(.has-custom-width) {
    max-width: 220px;
    min-width: 220px;
  }
}



/**************************************************************
* コンテンツの共通要素
**************************************************************/

/* padded-content
************************************************/
.padded-content {
  padding-left: 5.333%;
  padding-right: 5.333%;
}

@media all and (min-width: 1024px) {
  .padded-content {
    padding-left: calc(3.66vw + 1rem);
    padding-right: calc(3.66vw + 1rem)
  }
}

@media all and (min-width: 1486px) {
  .padded-content {
    padding-left: calc(14vw + 1rem);
    padding-right: calc(14vw + 1rem)
  }
}

@media all and (min-width: 1920px) {
  .padded-content {
    margin-left: auto;
    margin-right: auto
  }
}



/**************************************************************
* グロバル要素
**************************************************************/

/* g-header
************************************************/
.g-header {
  padding-left: 5.333%;
  padding-right: 5.333%;
}

.g-header__inner {
  position: relative;
  display: flex;
}

.g-header .wp-block-site-logo {
  position: relative;
  display: flex;
  align-items: center;
}

.g-header .wp-block-site-logo a {
  display: flex;
  width: 100%;
  height: 100%;
}

.g-header .wp-block-site-logo a img {
  display: block;
  width: 100%;
  margin: auto;
}

@media all and (max-width: 1023px) {
  .g-header {
    position: fixed;
    top: 0;
    z-index: 9999;
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .g-header .wp-block-site-logo {
    width: 170px;
  }

  .g-header__nav-block {
    display: none;
  }
}

@media all and (min-width: 1024px) {
  .g-header {
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
  }

  .g-header__inner {
    justify-content: space-between;
  }

  .g-header__nav-block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: min(2.5vw, 40px);
  }
}


/* g-nav
************************************************/
.g-nav {
  position: relative;
  top: 0.05rem;
}

.g-nav__list {
  display: grid;
  position: relative;
}

.g-nav__list > li {
  font-size: 1rem;
  font-weight: 500;
}

@media all and (max-width: 1023px) {}

@media all and (min-width: 1024px) {
  .g-nav {
    display: flex;
    justify-content: flex-end;
  }

  .g-nav__list {
    display: flex;
    gap: calc(20/1600 * 100vw);
    padding-left: 1vw;
  }
}

@media all and (min-width: 1600px) {
  .g-nav__list {
    gap: calc(40/1920 * 100vw);
  }
}


/* g-footer
************************************************/
.g-footer {
  position: relative;
  padding-left: 5.333%;
  padding-right: 5.333%;
  background-color: var(--wp--preset--color--background-secondary);
}

.g-footer .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.g-footer .wp-block-site-logo {
  max-width: calc(410/16 * 1rem);
}

.g-footer .wp-block-site-logo img {
  filter: invert(1);
}

.g-footer .wp-block-social-links {
  display: flex;
  gap: calc(20/16 * 1rem);
  justify-content: center;
}

.g-footer .wp-social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50/16 * 1rem);
  height: calc(50/16 * 1rem);
  border-radius: 50%;
  border: 1px solid var(--wp--preset--color--foreground)
}

.g-footer__inner {
  color: var(--wp--preset--color--foreground);
}

.footer-info {
  margin-top: calc(40/28 * 1rem);
}

@media all and (max-width: 1023px) {
  .g-footer {
    padding-top: calc(100/28 * 1rem);
    padding-bottom: calc(100/28 * 1rem);
  }

  .g-footer .wp-block-site-logo {
    margin: auto;
  }

  .g-footer .wp-block-social-links {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .footer-info > li {
    display: flex;
    align-items: baseline;
  }
}

@media all and (min-width: 1024px) {
  .g-footer {
    padding-top: calc(150/16 * 1rem);
    padding-bottom: calc(150/16 * 1rem);
  }

  .footer-info {
    margin-top: calc(60/16 * 1rem);
  }  

  .footer-info > li {
    font-size: calc(14/16 * 1rem);
  }

  .g-footer .wp-block-social-links {
    justify-content: end; 
  }
}



/**************************************************************
* その他の要素
**************************************************************/

/* rail-horizontal-txt
************************************************/
.rail-horizontal-txt {
  position: relative;
  overflow: hidden;
  margin-top: -1rem;
}

.rail-horizontal-txt__body {
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  gap: 4rem;
  width: 100%;
}

.rail-horizontal-txt__body > p {
  display: block;
  flex: 0 0 auto;
  line-height: 1;
  word-break: break-all;
}


/* miscellany 
************************************************/

/* seo-tagline */
.seo-tagline {
  display: none;
}

/* sns icons */
.line-custom-icn {
  position: relative;
}

.line-custom-icn .wp-block-social-link-anchor::before {
  content: "";
  width: 1em;
  height: 1em;
  fill: currentColor;
  color: currentColor;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: contain;
  background-image: url(./assets/imagery/line_icn.svg);
}

.line-custom-icn .wp-block-social-link-anchor > svg {
  display: none;
}

.line-custom-icn[class*="--inverted"] .wp-block-social-link-anchor::before {
  filter: invert(1);
}

/* footer-nav */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 1rem;
}

.footer-nav > li a {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .footer-nav {
    margin-top: calc(60/28 * 1rem);
  }
}

@media (min-width: 1024px) {
  .footer-nav {
    gap: calc(25/16 * 1rem) calc(60/16 * 1rem);
    justify-content: center;
    max-width: 25rem;
    margin: auto;
  }
}

/* hover */
@media (hover: hover) {
  .footer-nav>li a:hover {
    transition: color 0.3s ease;
  }

  .footer-nav>li a:hover {
    color: var(--wp--preset--color--primary);
  }
}

/* copyright */
.copyright {
  font-family: var(--alphabetic-font);
  font-weight: bold;
  text-align: right;
}

@media all and (max-width: 1023px) {
  .copyright {
    text-align: center !important;
  }
}



/**************************************************************
* MV
**************************************************************/

.mv {
  position: relative;
  height: 100vh;
}

.mv__inner {
  z-index: 99;
  padding-left: 5%;
  padding-right: 5%;
}

.mv__inner .wp-block-heading {
  line-height: 2 !important;
  text-decoration: underline;
  text-underline-offset: 20px;
  text-decoration-thickness: 3px;
}

.mv__inner h1.wp-block-heading {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--mv-text-color, #ffffff);
}

.mv__inner .wp-block-cover__inner-container p {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  color: var(--mv-text-color, #ffffff);
}


@media all and (max-width: 1023px) {
  .mv__inner .wp-block-heading {
    font-size: 30px !important;
    line-height: 2.6 !important;
  }
}

@media all and (min-width: 1024px) {
  .mv__inner {
    padding-left: 5.8vw;
    padding-right: 5.8vw;
  }

  .mv__inner .wp-block-cover__inner-container p {
    font-size: 18px;
  }
}


/* hero*
************************************************/
.hero {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}



/**************************************************************
* CONCEPT
**************************************************************/

.concept {
  position: relative;
  padding-top: 20vw;
  padding-bottom: 14vw;
}

.concept__body {
  position: relative;
  padding-left: 10%;
}


@media all and (min-width: 1024px) {
  .concept {
    padding-top: 10vw;
  }

  .concept__body {
    padding-left: calc(360/1920 * 100%);
  }
}


/* concept-visual-*
************************************************/
.concept-visual-1,
.concept-visual-2,
.concept-visual-3,
.editor-styles-wrapper .concept-visual-1,
.editor-styles-wrapper .concept-visual-2,
.editor-styles-wrapper .concept-visual-3 {
  position: absolute;
}

.concept-visual-1 {
  top: 0;
  right: 5%;
  width: 28%;
}

.concept-visual-2 {
  left: 0;
  width: 28%;
  margin: auto;
}

.concept-visual-3 {
  bottom: -12vw;
  left: 0;
  right: 0;
  width: 38%;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(25%);
}

.concept-visual-1 > img,
.concept-visual-2 > img,
.concept-visual-3 > img  {
  width: 100%;
}

@media all and (max-width: 1023px) {
  .concept {
    overflow-x: hidden;
  }

  .concept-contents .wp-block-heading {
    left: 10%;
    font-size: 6.2vw;
    line-height: 1.5;
  }

  .concept-contents__inner > p br {
    /* display: none; */
  }

  .concept-visual-1 {
    transform: translateY(-20px);
  }

  .concept-visual-2 {
    bottom: 2rem;
    transform: translateX(-30%);
  }
}

@media all and (min-width: 1024px) {
  .concept-visual-1 {
    top: -10%;
  }

  .concept-visual-2,
  .editor-styles-wrapper .concept-visual-2 {
    top: 0;
    left: -15%;
    bottom: 0;
  }
}


/* concept-contents
************************************************/
.concept-contents,
.editor-styles-wrapper .concept-contents {
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  padding-top: 38vw;
  padding-bottom: 38vw;
  padding-right: 5vw;
  padding-left: 7vw;
  background-image:  linear-gradient(145deg, var(--wp--preset--color--gradient-color-1) 28%, var(--wp--preset--color--gradient-color-2) 100%);
}

.concept-contents__inner > p {
  text-align: justify;
}

.concept-contents .wp-block-heading {
  position: relative;
  display: inline-block;
  text-align: left;
}
.concept-contents .wp-block-heading::before,
.concept-contents .wp-block-heading::after {
  position: absolute;
  font-family: "EB Garamond", Georgia, "Times New Roman", Times, serif;
  font-size: 12vw;
  font-weight: 500;
  line-height: 0;
}
.concept-contents .wp-block-heading::before {
  content: "“";
  top: 0;
  left: 0;
  transform: translateX(-120%);
}
.concept-contents .wp-block-heading::after {
  content: "”";
  bottom: -15%;
  right: 0;
  transform: translateX(100%) translateY(50%);
}

@media all and (min-width: 1024px) {
  .concept-contents,
  .editor-styles-wrapper .concept-contents {
    padding-top: 13vw;
    padding-right: 26vw;
    padding-bottom: 13vw;
    padding-left: 20vw;
  }

  .concept-contents__inner {
    transform: translateX(-10%);
  }

  .concept-contents .wp-block-heading {
    font-size: 2.9vw;
  }
  .concept-contents .wp-block-heading::before,
  .concept-contents .wp-block-heading::after {
    font-size: 6vw;
  }
}



/**************************************************************
* OUR PRIDE
**************************************************************/

.pride {
  position: relative;
  padding-top: calc(200/28 * 1rem);
  padding-bottom: calc(140/28 * 1rem);
}

.pride .rail-horizontal-txt__body > p {
  font-family: var(--alphabetic-font);
  font-size: calc(200/1920 * 100vw);
  font-weight: 600;
  line-height: 1.2;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(145deg, var(--wp--preset--color--gradient-color-2) 0%, var(--wp--preset--color--gradient-color-1) 15%, var(--wp--preset--color--gradient-color-2) 100%);
}

@media all and (min-width: 1024px) {
  .pride {
    padding-top: calc(200/16 * 1rem);
    padding-bottom: calc(200/16 * 1rem);
  }   

  .pride .wp-headline {
    text-align: center;
  }

  .pride .rail-horizontal-txt {
    margin-top: -6.5rem;
  }

  .pride .rail-horizontal-txt__body > p {
    font-size: calc(120/1024 * 100vw);
  }
}

/* pride-points
************************************************/
.pride-points {
  display: grid;
  gap: 4rem;
  padding-bottom: 6rem;
  counter-reset: pride-point-counter;
}

@media all and (min-width: 1024px) {
  .pride-points {
    gap: 12.5rem;
    padding-bottom: 12.5rem;
  }
}


/* pride-point
************************************************/
.pride-point {
  width: 100%;
  counter-increment: pride-point-counter;
}

.pride-point__content-block {
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
  background-color: var(--wp--preset--color--background-secondary);
}

.pride-point__content-block .wp-block-heading {
  margin-bottom: 1.25rem;
}

.pride-point__fig-block {
  position: relative;
}

.pride-point__fig-block > .wp-block-group,
.pride-point__fig-block > .wp-block-group > .wp-block-cover {
  height: 100%;
}

.pride-point-content > h3::before {
  content: '―　Point' counter(pride-point-counter, decimal-leading-zero);
  display: block;
  font-family: var(--alphabetic-font);
}

@media all and (max-width: 1023px) {
  .pride-point__content-block {
    padding-left: 5.8vw;
    padding-right: 5.8vw;
  }

  .pride-point.is-animating .pride-point-content > h3,
  .pride-point-content > h3::before {
    font-size: 120%;
  }

  .pride-point__fig-block {
    min-height: 240px;
  }

  .pride-point__fig-block > div {
    width: 100%;
    height: 100%;
  }
}

@media all and (min-width: 1024px) {
  .pride-point:nth-child(even) {
    flex-direction: row-reverse;
  }

  body:not(.editor-styles-wrapper) .pride-point__content-block {
    min-height: 600px;
  }

  .pride-point:nth-child(odd) .pride-point-content {
    padding-left: calc(360/1920 * 100%);
    padding-right: 26%;
  }
  .pride-point:nth-child(even) .pride-point-content {
    padding-left: 26%;
    padding-right: calc(360/1920 * 100%);
  }

  .pride-point:nth-child(odd) .pride-point__fig-block > div {
    right: 100px;
  }
  .pride-point:nth-child(even) .pride-point__fig-block > div {
    left: 100px;
  }

  .pride-point__content-block .wp-block-heading {
    font-size: 1.666vw;
  }

  .pride-point-content > h3 {
    letter-spacing: 0.1em;
  }
  .pride-point-content > h3::before {
    font-size: 0.9375vw;
    letter-spacing: 0;
  }

  .pride-point__fig-block {
    display: grid;
    top: 5rem;
  }
  .pride-point__fig-block > div {
    position: relative;
  }
}


/* pride-aside
************************************************/
.pride-aside {
  position: relative;
}

.pride-aside .wp-block-heading {
  font-size: 1.75rem;
  margin-bottom: 3.125vw;
  color: var(--wp--preset--color--foreground);
}

.pride-aside .wp-block-cover__inner-container p {
  color: var(--wp--preset--color--foreground);
}

@media all and (max-width: 1023px) {
  .pride-aside .wp-block-cover {
    min-height: 60vh !important;
  }

  .pride-aside .wp-block-heading {
    line-height: 1.5;
  }

  .pride-aside .wp-block-cover__inner-container {
    padding: 5%;
    background-color: rgba(255, 255, 255, 0.3);
  }
}

@media all and (min-width: 1024px) {
  .pride-aside {
    padding-left: calc(360/1920 * 100%);
  }

  .pride-aside .wp-block-heading {
    position: relative;
    font-size: calc(56/1920 * 100vw);
    line-height: 1.57;
    letter-spacing: 0.1em;
  }
  .pride-aside .wp-block-heading::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1px;
    margin-top: 3.5rem;
    background-color: var(--wp--preset--color--primary);
  }

  .pride-aside .wp-block-cover__inner-container {
    max-width: 80%;
    margin-right: auto;
  }
}



/**************************************************************
* RECOMMEND MENU
**************************************************************/

.menu {
  margin-bottom: 5.625rem;
  padding-top: calc(120/28 * 1rem);
  padding-bottom: calc(120/28 * 1rem);
}

@media all and (min-width: 1024px) {
  .menu {
    padding-top: calc(120/16 * 1rem);
    padding-bottom: calc(120/16 * 1rem);
  }

  .menu .wp-headline {
    text-align: center;
  }
}


/* featured-menu-list
************************************************/
.featured-menu-list {
  position: relative;
  gap: 5rem;
  padding-left: 5.8vw;
  padding-right: 5.8vw;
  /* background: none !important;  //MEMO can't do much here for now (it's the background needed for the admin side) */
  background: none;
  counter-reset: featured-menu-item-counter;
}
.featured-menu-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  margin: auto;
  padding-bottom: 1.875rem;
  background: var(--wp--preset--color--background-secondary);
  transform: translateY(5.625rem);
}

.featured-menu-list > .wp-block-column {
  counter-increment: featured-menu-item-counter;
}

@media all and (max-width: 1023px) {
  .featured-menu-list {
    padding-top: 2.5rem;
  }
}


/* menu-item
************************************************/
.menu-item {
  position: relative;
}

.menu-item__counter {
  position: absolute;
  top: 0;
  z-index: 99;
  line-height: 1;
  transform: translateY(calc(-100% - 5px));
}
.menu-item__counter::before,
.menu-item__counter::after {
  font-family: var(--alphabetic-font);
  color: var(--wp--preset--color--primary);
}

.menu-item__counter::before {
  content: "#";
  position: relative;
  top: 0.5rem;
  font-size: 80%;
  font-weight: normal;
  vertical-align: top;
}
.menu-item__counter::after {
  content: counter(featured-menu-item-counter, decimal-leading-zero);
  font-size: 2.8rem;
}

.menu-item__fig {
  margin-bottom: 1.75rem;
}

.menu-item__data {
  position: relative;
}

.menu-item__data > .wp-block-heading {
  position: relative;
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
.menu-item__data > .wp-block-heading::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  display: block;
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  background-color: currentColor;
}

@media all and (min-width: 1024px) {
  .menu-item__counter {
    right: 0;
    transform: translateX(45%) translateY(-50%);
  }
  .menu-item__counter::before {
    font-size: calc(32/1920 * 100vw);
  }
  .menu-item__counter::after {
    font-size: calc(80/1920 * 100vw);
  }
}



/**************************************************************
* RECOMMEND MENU
**************************************************************/

.grand-menu {
  position: relative;
  padding-top: calc(120/28 * 1rem);
  padding-bottom: calc(120/28 * 1rem);
}

@media all and (min-width: 1024px) {
  .grand-menu {
    padding-top: calc(120/16 * 1rem);
    padding-bottom: calc(120/16 * 1rem);
  }

  .grand-menu .wp-headline {
    text-align: center;
  }
}

.grand-menu__guts {
  display: grid;
  justify-content: center;
}

.grand-menu__guts .wp-block-columns {
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 5rem;
}

@media all and (min-width: 768px) and (max-width: 1260px) {
  .grand-menu .wp-block-columns {
    flex-wrap: wrap !important;
  }
}

.grand-menu__guts .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
  flex-basis: inherit;
  flex-grow: inherit;
}


/* grand-menu-data-block
************************************************/
.grand-menu-data-block {
  padding-left: 5.8vw;
  padding-right: 5.8vw;
}

.grand-menu-data-block .wp-block-heading {
  position: relative;
  text-align: center;
  margin-bottom: 3.125rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.grand-menu-data-block .wp-block-heading::after {
  content: "● ● ●";
  display: block;
  margin-top: 0.75rem;
  font-size: 10px;
  color: var(--wp--preset--color--primary);
}

@media all and (min-width: 1024px) {
  .grand-menu-data-block {
    padding-left: 4.1666vw;
    padding-right: 4.1666vw;
  }

  .grand-menu__guts .wp-block-column:not(:last-child) .grand-menu-data-block {
    border-right: 1px dashed var(--wp--preset--color--primary);
  }
}


/* menu-price-list
************************************************/
.menu-price-list {
  position: relative;
}

.menu-price-list > li {
  display: flow-root;
}

.menu-price-list > li + li {
  margin-top: 1.25rem;
}

.menu-price-list > li span {
  float: right;
  margin-left: 1rem;
}

@media all and (min-width: 1024px) {
  .menu-price-list > li span {
    margin-left: 8rem;
  }
}



/**************************************************************
* INSTAGRAM
**************************************************************/

.instagram {
  padding-top: calc(160/28 * 1rem);
  padding-bottom: calc(160/28 * 1rem);
}

.instagram-heading {
  position: relative;
}
.instagram-heading > span {
  font-family: var(--alphabetic-font);
  font-size: calc(48/28 * 1rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: calc(60/28 * 1rem);
}

@media all and (max-width: 1023px) {
  .instagram-heading {
    text-align: center;
  }
}

@media all and (min-width: 1024px) {
  .instagram {
    padding-top: calc(200/16 * 1rem);
    padding-bottom: calc(200/16 * 1rem);
  }

  .instagram-heading > span {
    font-size: calc(60/16 * 1rem);
    margin-bottom: calc(60/16 * 1rem);
  }
}



/**************************************************************
* NEWS
**************************************************************/

.news {
  position: relative;
  padding-top: calc(120/28 * 1rem);
  padding-bottom: calc(200/28 * 1rem);
}

@media all and (min-width: 1024px) {
  .news {
    padding-top: calc(120/16 * 1rem);
    padding-bottom: calc(200/16 * 1rem);
  }

  .news .wp-headline {
    text-align: center;
  }
}

.news-list {
  position: relative;
}

.news-item {
  display: grid;
  gap: 5%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.news-list li:not(:last-child) .news-item {
  border-bottom: 1px dashed var(--wp--preset--color--primary);
}

@media all and (max-width: 1023px) {
  .news-list {
    padding-left: 5.8vw;
    padding-right: 5.8vw;
  }
}

@media all and (min-width: 1024px) {
  .news-list {
    max-width: 57.5rem;
    margin: auto;
  }
  
  .news-item {
    grid-template-columns: 15% 1fr;
  }
  .news-item > dd {
    padding-right: 15%;
  }
}



/**************************************************************
* GREETING
**************************************************************/

.greeting {
  position: relative;
}
.greeting::after {
  content: "";
  right: 0;
  content: "";
  position: absolute;
  top: calc(10.4166vw + 30px);
  z-index: -1;
  display: block;
  width: 85%;
  height: calc(100% - 10.4166vw - 30px);
  background: var(--wp--preset--color--background-secondary);
}

@media all and (min-width: 1024px) {
  .greeting::after {
    top: calc(10vw - 160px);
    height: calc(100% - 10.4166vw + 160px);
  }

  .greeting .wp-headline {
    text-align: center;
  }
}

.greeting__body {
  position: relative;
  padding-bottom: 4rem;
}

.greeting__guts {
  position: relative;
  padding-top: 5rem;
}

.greeting__guts > p {
  width: 72%;
  margin-left: auto;
  margin-right: inherit;
  padding-right: 5.8vw;
}


@media all and (min-width: 1024px) {
  .greeting::after {
    width: calc(100% - 350px);
  }

  .greeting .wp-block-cover {
    min-height: 80vh;
  }

  .greeting__body {
    padding-bottom: 9.375rem;
  }

  .greeting__guts > p {
    width: 52%;
    padding-right: calc(360/1920 * 100vw);
  }
}


/* greeting-cover
************************************************/
.greeting-cover {
  overflow: visible;
  max-width: 1250px;
  margin-left: 5.8vw;
}

.greeting-cover__catch {
  font-family: var(--alphabetic-font);
  font-size: 12vw;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--wp--preset--color--primary);
  transform: translateX(-2.5%) translateY(55%);
  background: linear-gradient(145deg, var(--wp--preset--color--gradient-color-1) 10%, var(--wp--preset--color--gradient-color-2) 60%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

@media all and (max-width: 767px) {
  .greeting-cover.wp-block-cover {
    min-height: 40vh !important;
  }
}

@media all and (min-width: 1024px) {
  .greeting-cover {
    min-height: 80vh;
  }

  .greeting-cover__catch {
    font-size: 6.25vw;
    transform: translateX(-2.5%) translateY(65%);
  }
}




/**************************************************************
* Q&A
**************************************************************/

.qa {
  position: relative;
  padding-top: calc(180/28 * 1rem);
}

.qa__heading-block {
  display: grid;
  justify-content: center;
  align-items: center;
}

@media all and (min-width: 1024px) {
  .qa .wp-headline {
    text-align: center;
  }


  .qa .wp-block-columns {
    align-items: center!important;
  }
}

@media all and (min-width: 1024px) {
  .qa {
    padding-top: calc(180/16 * 1rem);
  }

  .qa .wp-custom-headline {
    margin-bottom: inherit;
  }

  .qa__heading-block.is-sticky {
    /* position: sticky;
    top: 0;
    height: 100vh; */
  }
}


/* qa-list
************************************************/
.qa-list {
  gap: 2.5rem;
}

.qa-data-item {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 5.8vw;
  padding-right: 5.8vw;
  background-color: var(--wp--preset--color--background-secondary);
}

.qa-data-item__question {
  position: relative;
  padding-left: 3.25rem;
  cursor: pointer;
}
.qa-data-item__question::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  font-family: var(--alphabetic-font);
  color: #000000;
  border-radius: 50%;
  background-color: #ffffff;
  transform: translateY(-10%);
}
.qa-data-item__question::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: auto;
  border-radius: 0.12rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

@media all and (max-width: 1023px) {
  .qa-data-item__question {
    padding-right: 1.5rem;
  }
}

@media all and (min-width: 1024px) {
  .qa-data-item {
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 3.125vw;
    padding-right: 2.125vw;
  }

  .qa-data-item__question {
    position: relative;
    padding-left: 6.25rem;
    font-size: 1.125rem;
  }
  .qa-data-item__question::before {
    width: 3.25rem;
    height: 3.25rem;
  }

  .qa-data-item__answer {
    padding-left: 6.25rem;
    padding-right: 11.5vw;
    font-size: 0.875rem;
  }
}



/**************************************************************
* SHOP INFO
**************************************************************/

.shop-info {
  position: relative;
  padding-top: calc(160/28 * 1rem);
  padding-bottom: calc(40/28 * 1rem);
}
.shop-info::after {
  content: "";
  position: absolute;
  top: calc(10.4166vw + 30px);
  left: 0;
  z-index: -1;
  display: block;
  width: 85%;
  height: calc(100% - 10.4166vw - 30px);
  pointer-events: none;
  background: var(--wp--preset--color--background-secondary);
}

@media all and (min-width: 1024px) {
  .shop-info {
    padding-top: calc(220/16 * 1rem);
    padding-bottom: calc(40/16 * 1rem);
  }

  .shop-info .wp-headline {
    text-align: center;
  }
}

.shop-info .wp-custom-headline {
  margin-bottom: calc(80/1920 * 100vw);
}

.shop-info__body {
  position: relative;
  gap: 4.1666vw;
  padding-bottom: 5rem;
  padding-left: 5.8vw;
  padding-right: 5.8vw;
}

.shop-info__guts {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  background: var(--wp--preset--color--background);
}

@media all and (max-width: 1023px) {
  .shop-info__body {
    flex-direction: column-reverse;
  }
}

@media all and (min-width: 1024px) {
  .shop-info::after {
    width: calc(100% - 350px);
  }

  .shop-info__body {
    padding-bottom: 10.375rem;
  }

  .shop-info__guts {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}


/* shop-visual
************************************************/
.shop-visual {
  height: 250px;
  margin-bottom: 2rem;
}

.shop-visual img {
  object-fit: cover;
  height: 100%;
}

@media all and (min-width: 1024px) {
  .shop-visual {
    height: 480px;
    margin-top: 3rem;
    margin-bottom: 3.125rem;
  }
}


/* shop-map
************************************************/
.shop-map {
  position: relative;
}

@media all and (max-width: 1023px) {
  .shop-map > iframe,
  .google-map > iframe {
    height: 250px !important; /* override plugin inline style */
  }
}



/**************************************************************
* LISTING SITES
**************************************************************/

.listing-sites {
  position: relative;
  padding-top: calc(200/28 * 1rem);
  padding-bottom: calc(100/28 * 1rem);
}


@media all and (min-width: 1024px) {
  .listing-sites {
    padding-top: calc(200/16 * 1rem);
    padding-bottom: calc(200/16 * 1rem);
  }

  .listing-sites .wp-headline {
    text-align: center;
  }
}


.listing-sites__banners {
  gap: 1.25rem;
}

.listing-sites__banners .wp-block-image {
  border: 1px solid var(--wp--preset--color--primary);
}

@media all and (max-width: 1023px) {
  .listing-sites__banners {
    padding-left: 5.8vw;
    padding-right: 5.8vw;
  }
}

/* hover */
@media (hover: hover) {
  .listing-sites__banners figure,
  .listing-sites__banners figure img {
    transition: all 0.3s ease;
  }

  .listing-sites__banners figure:hover {
    border-color: #000000;
  }
  .listing-sites__banners figure:hover img {
    filter: brightness(120%);
  }
}



/**************************************************************
* CONTACT
**************************************************************/

.contact {
  position: relative;
  padding-top: calc(120/28 * 1rem);
  padding-bottom: calc(180/28 * 1rem);
}

.contact .wp-block-columns {
  gap: 3rem;
}

@media all and (max-width: 1023px) {
  .contact {
    padding-left: 5.8vw;
    padding-right: 5.8vw;
  }
}

@media all and (min-width: 1024px) {
  .contact {
    padding-bottom: calc(180/16 * 1rem);
  }

  .contact .wp-block-columns {
    gap: 6.25rem;
  }

  .contact .wp-headline {
    text-align: center;
  }
}


/* contact-lead-block
************************************************/
.contact-lead-block {
  position: relative;
}

.contact-lead-block > p {
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}
.contact-lead-block > .wp-block-separator {
  border-top: 2px dashed;
  border-bottom: none;
}
.contact-lead-block > ul {
  margin-top: 2.5rem;
}

body:not(.editor-styles-wrapper) .contact-lead-block > ul li {
  list-style: disc;
  list-style-position: inside;
}

.contact-lead-block > p,
.contact-lead-block > ul li {
  font-size:  0.875rem;
}


/* contact-form-block
************************************************/
.contact-form-block {
  position: relative;
}



/**************************************************************
* ステート周り
**************************************************************/

.is-hidden {
  display: none !important;
}

.is-fadeout {
  opacity: 0 !important;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.is-disable-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* javascript */
.js-smooth-reveal {
  clip-path: inset(0% 120% 0% 0%);
  opacity: 0;
}


@media all and (min-width: 1024px) {}


/**************************************************************
* ユーティリティ
**************************************************************/

/* u-hide-**
************************************************/
.u-hide-sp,
.u-hide-pc {
  display: none !important;
}

@media screen and (max-width: 1023px) {
  .u-hide-pc {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-hide-sp {
    display: block !important;
  }
}

/* u-flexible-center
************************************************/
.u-flexible-center {
  display: grid;
  justify-content: center;
  text-align: center;
}

/* u-bullet-list
************************************************/
ul.u-bullet-list li {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1.2em;
  padding-left: 1.2em;
}