@charset "UTF-8";
/*//////////////////////////////////////////////////////////

------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  display: block;
  border: 0 none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 1.5rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
select::-ms-expand {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js-active {
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js-active {
  -webkit-animation: fadeIn 1s ease-in-out 0.4s forwards;
          animation: fadeIn 1s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js-active {
  -webkit-animation: fadeInLeft 1s ease-in-out forwards;
          animation: fadeInLeft 1s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js-active {
  -webkit-animation: fadeInRight 1s ease-in-out forwards;
          animation: fadeInRight 1s ease-in-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1.5em);
            transform: translateX(-1.5em);
  }
  80% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1.5em);
            transform: translateX(-1.5em);
  }
  80% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1.5em);
            transform: translateX(1.5em);
  }
  80% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1.5em);
            transform: translateX(1.5em);
  }
  80% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* ------------------------
    基本構造
------------------------ */
:root {
  --sideW: min(.7vw, 10px);
}
@media screen and (max-width: 750px) {
  :root {
    --sideW: min(2.56vw, 10px);
  }
}

html {
  width: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

#hakuba-inbound {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.5rem;
  line-height: 1.866;
  font-weight: 600;
  color: #000;
  text-align: left;
}

a {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

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

.al-center {
  text-align: center;
}

.al-center-pc {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .al-center-pc {
    text-align: left;
  }
}

.nolink {
  pointer-events: none;
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

.u-disp-ib {
  display: inline-block;
}

.only-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .only-sp {
    display: inherit;
  }
}

@media screen and (max-width: 750px) {
  .only-pc {
    display: none;
  }
}
.split-contents {
  display: grid;
  grid-template-columns: 1fr 375px 1fr;
  position: relative;
}
@media screen and (max-width: 750px) {
  .split-contents {
    grid-template-columns: 1fr;
  }
}

.bg-image {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -2;
  background: url(../img/fix_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  .bg-image {
    display: none;
  }
}
.bg-image img {
  position: absolute;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
  will-change: transform;
}
.bg-image-01 {
  width: 22%;
  bottom: 50%;
  right: 81.47vw;
  animation: cloud-float-rev 3.6s ease-in-out -0.7s infinite alternate-reverse;
}
.bg-image-02 {
  width: 15.8%;
  bottom: calc(50% + 10.4vw);
  right: 65vw;
  animation: cloud-float 2.3s ease-in-out -1.5s infinite alternate-reverse;
}
.bg-image-03 {
  width: 14.2%;
  top: calc(50% + 10.1vw);
  right: 87.48vw;
  animation: cloud-float 3.9s ease-in-out -2.2s infinite alternate-reverse;
}
.bg-image-04 {
  width: 26%;
  top: calc(50% + 6.4vw);
  right: calc(50% + 10.6vw);
  animation: cloud-float-rev 2.8s ease-in-out -0.4s infinite alternate-reverse;
}
.bg-image-05 {
  width: 24.1%;
  bottom: calc(50% + 4.4vw);
  left: calc(50% + 14.5vw);
  animation: cloud-float-rev 3.2s ease-in-out -1.1s infinite alternate-reverse;
}
.bg-image-06 {
  width: 17.4%;
  bottom: calc(50% - 5.49vw);
  left: calc(50% + 37.48vw);
  animation: cloud-float 2.6s ease-in-out -1.9s infinite alternate-reverse;
}
.bg-image-07 {
  width: 15.2%;
  top: calc(50% + 4.39vw);
  left: calc(50% + 13vw);
  animation: cloud-float 3.4s ease-in-out -0.6s infinite alternate-reverse;
}
.bg-image-08 {
  width: 25.6%;
  top: calc(50% + 6.88vw);
  left: calc(50% + 28.25vw);
  animation: cloud-float-rev 4.1s ease-in-out -1.8s infinite alternate-reverse;
}

@-webkit-keyframes cloud-float {
  0% {
    -webkit-transform: translate3d(0, -1%, 0);
            transform: translate3d(0, -1%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 2%, 0);
            transform: translate3d(0, 2%, 0);
  }
}

@keyframes cloud-float {
  0% {
    -webkit-transform: translate3d(0, -1%, 0);
            transform: translate3d(0, -1%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 2%, 0);
            transform: translate3d(0, 2%, 0);
  }
}
@-webkit-keyframes cloud-float-rev {
  0% {
    -webkit-transform: translate3d(0, 2%, 0);
            transform: translate3d(0, 2%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -1%, 0);
            transform: translate3d(0, -1%, 0);
  }
}
@keyframes cloud-float-rev {
  0% {
    -webkit-transform: translate3d(0, 2%, 0);
            transform: translate3d(0, 2%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -1%, 0);
            transform: translate3d(0, -1%, 0);
  }
}
.anchor-nav {
  padding-right: 46px;
}
@media screen and (max-width: 750px) {
  .anchor-nav {
    display: none;
  }
}
.anchor-nav nav {
  width: 230px;
  position: sticky;
  top: 50vh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
}
.anchor-nav .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.anchor-nav .nav a {
  display: block;
  border: 3px solid #000;
  background: url(../img/ico_arrow_bottom.svg) no-repeat center right 12px/10px auto;
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
  font-size: 1.6rem;
  line-height: 1.56;
  font-family: "Oswald", sans-serif;
}
.anchor-nav .nav a:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.anchor-nav--right {
  padding: 0 0 0 50px;
}
.anchor-nav--right nav {
  margin-right: auto;
  margin-left: 0;
}
.anchor-nav--right .external-links .guide {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  border: 3px solid #000;
  background-color: #fff;
  color: #000;
  font-size: 1.6rem;
  border-radius: 0;
  padding-block: 5px 8px;
  border-radius: 10px;
}
.anchor-nav--right .external-links .guide:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.anchor-nav--right .external-links .guide::before {
  background-image: url(../img/ico_blank_bk.svg);
  width: 16px;
}
.anchor-nav--right .external-links .bnr {
  border-radius: 10px;
  border: 3px solid #000;
}

.external-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 280px;
  max-width: 100%;
  margin: 50px auto 0;
}
.external-links:first-child {
  margin-top: 0;
}
.external-links .guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  background-color: #009FE8;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  line-height: 1.16;
  border-radius: 25px;
  font-weight: 900;
  padding: 12px 20px;
}
.external-links .guide:hover {
  background-color: rgba(0, 159, 232, 0.7);
}
.external-links .guide::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../img/ico_blank.svg) no-repeat center center/contain;
}
.external-links .guide--red {
  background-color: #E40073;
}
.external-links .guide--red:hover {
  background-color: rgba(228, 0, 115, 0.7);
}
.external-links .guide--d-red {
  background-color: #B51477;
}
.external-links .guide--d-red:hover {
  background-color: rgba(181, 20, 119, 0.7);
}
.external-links .guide--yellow {
  background-color: #FFF100;
  color: #000;
}
.external-links .guide--yellow:hover {
  background-color: rgba(255, 241, 0, 0.7);
}
.external-links .guide--yellow::before {
  background-image: url(../img/ico_blank_bk.svg);
}
.external-links .bnr {
  display: grid;
  place-content: center;
  padding: 12px 10px;
  background-color: #00843E;
  border-radius: 15px;
}
.external-links .bnr:hover {
  background-color: rgba(0, 132, 62, 0.7);
}

.contents-wrap {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.contents-wrap .external-links {
  display: none;
}
@media screen and (max-width: 750px) {
  .contents-wrap .external-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hero {
  padding: 50px var(--sideW) 67px;
  background: url(../img/main_visual.jpg) no-repeat center top/cover;
}
.hero__ttl {
  font-size: 4.5rem;
  line-height: 1.15;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 550px;
}
.hero__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.hero__nav a {
  display: block;
  border: 3px solid #000;
  background: url(../img/ico_arrow_bottom.svg) no-repeat center bottom 2px/10px auto;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 5px 0 15px;
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
  line-height: 1.56;
  letter-spacing: 0;
}
.hero__nav a:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.section-wrap {
  position: relative;
  padding: 0 var(--sideW) 120px;
}
.section-wrap:nth-child(odd)::before {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.section-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  -webkit-mask: url(../img/ico_section_bg_top.svg) no-repeat center/contain;
          mask: url(../img/ico_section_bg_top.svg) no-repeat center/contain;
  background-color: inherit;
  left: 0;
  bottom: calc(100% - 1px);
}
.section-wrap h2 {
  margin-bottom: 50px;
}
.section-wrap h2 img {
  display: block;
  width: auto;
  margin: auto;
}
.section-wrap article {
  padding: 0 calc(var(--sideW) * 2) 40px;
  margin-bottom: 40px;
  border-bottom: 2px dotted #707070;
}
.section-wrap article:last-of-type {
  position: relative;
  border-bottom: 0 none;
}
.section-wrap article:last-of-type::after {
  content: "";
  position: absolute;
  width: calc(100% + var(--sideW) * 2);
  height: 2px;
  border-bottom: 2px dotted #707070;
  left: calc(var(--sideW) * -1);
  bottom: 0;
}
.section-wrap article .image {
  display: block;
  margin: 0 calc(var(--sideW) * -2) 20px;
}
.section-wrap article h3 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Oswald", sans-serif;
  margin-bottom: 15px;
}
.section-wrap article h3 + p {
  margin-top: -10px;
  margin-bottom: 18px;
}
.section-wrap article h4 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Oswald", sans-serif;
  margin-bottom: 8px;
}
.section-wrap article h4 small {
  font-size: 2.4rem;
}
.section-wrap article .access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  line-height: 1.56;
}
.section-wrap article .access dt {
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 700;
}
.section-wrap article .access dd {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: -5px;
}
.section-wrap article .btn-blank {
  margin-bottom: 20px;
}
.section-wrap article .btn-blank:last-child {
  margin-bottom: 0;
}
.section-wrap article .btn-blank a {
  padding: 8px 18px;
}
.section-wrap article .lead-more {
  position: relative;
}
.section-wrap article .lead-more::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--bg-color)));
  background: linear-gradient(to bottom, transparent, var(--bg-color));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-wrap article .lead-more.is-expanded::after {
  opacity: 0;
  pointer-events: none;
}
.section-wrap article .lead-more.is-expanded p {
  display: block;
  -webkit-line-clamp: unset;
}
.section-wrap article .lead-more.is-expanded button {
  position: static;
  margin: 10px auto 0;
}
.section-wrap article .lead-more.is-expanded button::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) center/100% 2px no-repeat;
  background: linear-gradient(#000 0 0) center/100% 2px no-repeat;
}
.section-wrap article .lead-more p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0;
}
.section-wrap article .lead-more button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  position: absolute;
  width: 150px;
  line-height: 40px;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 20px;
  left: calc(50% - 75px);
  bottom: 0;
  z-index: 1;
}
.section-wrap article .lead-more button::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) center/100% 2px no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) center/2px 100% no-repeat;
  background: linear-gradient(#000 0 0) center/100% 2px no-repeat, linear-gradient(#000 0 0) center/2px 100% no-repeat;
}
.section-wrap p {
  margin-bottom: 20px;
}
.section-wrap p:last-child {
  margin-bottom: 0;
}
.section-wrap .food-wrap {
  position: relative;
  padding: 0 var(--sideW) 50px;
}
.section-wrap .food-wrap::after {
  content: "";
  position: absolute;
  width: calc(100% + var(--sideW) * 2);
  height: 2px;
  border-bottom: 2px dotted #707070;
  left: calc(var(--sideW) * -1);
  bottom: 0;
}
.section-wrap .food-wrap h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-align: center;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 0.8em;
}
.section-wrap .food-wrap h3::before, .section-wrap .food-wrap h3::after {
  content: "";
  display: block;
  width: 5px;
  height: 38px;
  background-color: var(--text-color);
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  border-radius: 3px;
}
.section-wrap .food-wrap h3::after {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.section-wrap .food-wrap article {
  padding-inline: var(--sideW);
  padding-bottom: 0;
  margin-bottom: 40px;
  border-bottom: 0 none;
}
.section-wrap .food-wrap article:last-child {
  margin-bottom: 0;
}
.section-wrap .food-wrap article:last-of-type::after {
  display: none;
}
.section-wrap .food-wrap article .image {
  margin-inline: calc(var(--sideW) * -1);
}
.section-wrap .btn-blank {
  text-align: center;
}
.section-wrap .btn-blank a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: 700;
  padding: 8px 25px;
  background-color: #000;
  color: #fff;
  border-radius: 30px;
}
.section-wrap .btn-blank a:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.section-wrap .btn-blank a::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/ico_blank.svg) no-repeat center center/contain;
}

.sec-omachi {
  --text-color: #009FE8;
  --bg-color: #FFF100;
  background-color: var(--bg-color);
}

.sec-azumino {
  --text-color: #E40073;
  --bg-color: #A7D282;
  background-color: var(--bg-color);
}

.sec-matsumoto {
  --text-color: #FAED00;
  --bg-color: #EB70A7;
  background-color: var(--bg-color);
}

.sec-suwa {
  --text-color: #B51477;
  --bg-color: #87D1F5;
  background-color: var(--bg-color);
  padding-bottom: 60px;
}

.like-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  background-color: #000;
  border-left: 1px solid #87D1F5;
  border-right: 1px solid #87D1F5;
  padding: 35px 0;
}
.like-footer p {
  color: #fff;
}
.def-img {
  width:inherit!important;
}