@charset "UTF-8";
/* ------------------------
  variables
------------------------ */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* ------------------------
  reset
------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

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

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

img,
svg,
embed,
object,
iframe {
  vertical-align: bottom;
  max-width: 100%;
}

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

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  text-align: inherit;
}

/* color */
/* break point */
/* border radius */
/* --------------------------------
  media query - mixin definition
-------------------------------- */
/* --------------------------------
  arrow icon of 'link' class - mixin definition
-------------------------------- */
.arrow-down::before {
  content: url("../img/arrow_gr-sf.svg");
  position: absolute;
  width: 1em;
  height: 1em;
  top: 20%;
  left: -1em;
  display: inline-block;
  scale: 120% 80%;
  translate: -10% 10%;
  rotate: 0deg;
}

.arrow-right::after {
  content: url("../img/arrow_gr-sf.svg");
  position: absolute;
  width: 1em;
  height: 1em;
  top: 1em;
  right: -0.8em;
  display: inline-block;
  scale: 120%;
  translate: -50% -60%;
  rotate: -90deg;
}

.arrow-up::before {
  content: url("../img/arrow_gr-d.svg");
  position: absolute;
  width: 1em;
  height: 1em;
  top: -100%;
  left: 50%;
  right: 50%;
  display: block;
  scale: 200% 150%;
  translate: -50% 100%;
  rotate: 180deg;
}

/* ------------------------
  common
------------------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  font-size: 10px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #42342d;
  background-color: #f6f9ea;
  overflow-x: hidden;
}

button {
  cursor: pointer;
}

small {
  font-size: 0.8em;
}

header > .container,
footer > .container {
  max-width: calc(100% - 100px);
  margin: 0 auto;
}

main > section {
  padding: 100px 0;
  font-size: 1.8rem;
}
main > section:nth-of-type(odd) {
  background-color: #e5edc5;
}
html.home main > section:nth-of-type(n + 3), html:not(.home) main > section {
  background-image: url(../img/wave_single.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
}
main > section > .container {
  max-width: 960px;
  margin: 0 auto;
}
main > section > .container .sec-title {
  position: relative;
  line-height: 1.8;
  letter-spacing: 0.03em;
  padding-left: 2.3em;
  margin-bottom: 1em;
  color: #5b7a2a;
}
main > section > .container .sec-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 2em;
  height: 2px;
  background-color: rgba(91, 122, 42, 0.75);
  border-radius: calc(infinity * 1px);
}
main > section > .container .sec-lead {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #594a40;
}

br.br-tb {
  display: none;
}

@media screen and (max-width: 1200px) {
  main > section > .container {
    width: min(960px, 100% - 80px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  html.home main > section:nth-of-type(n + 3), html:not(.home) main > section {
    background-size: 864px;
  }
  main > section > .container {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
    font-size: 8px;
  }
  main > section {
    padding: 60px 0;
  }
  html.home main > section:nth-of-type(n + 3), html:not(.home) main > section {
    background-size: 691.2px;
  }
  html.home main > section:nth-of-type(n + 3):first-of-type, html:not(.home) main > section:first-of-type {
    padding-top: 140px;
  }
  main > section > .container {
    width: calc(100% - 64px);
  }
  br.br-tb {
    display: inline;
  }
}
@media screen and (max-width: 520px) {
  html {
    scroll-padding-top: 24px;
    font-size: 7px;
  }
  main > section {
    padding: 90px 0;
    font-size: 2.5rem;
  }
  html.home main > section:nth-of-type(n + 3), html:not(.home) main > section {
    background-size: 468px;
  }
  main > section > .container {
    width: 90%;
  }
  main > section > .container .sec-lead {
    font-size: 2.8rem;
  }
  main > section > .container .sec-lead br {
    display: none;
  }
  main > section > .container .sec-title {
    line-height: 1.4;
    padding-left: calc(2.3em + 2vw);
  }
  main > section > .container .sec-title::before {
    left: 2vw;
    height: 1.6px;
  }
  main > section > .container .sec-lead {
    padding-left: 2vw;
  }
}
/* --------------------------------
  accessibility
-------------------------------- */
a {
  cursor: pointer;
}
@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a:focus-visible,
input:focus-visible,
button:focus-visible,
textarea:focus-visible {
  outline-color: #a2b777;
  outline-style: ridge;
  outline-width: 2px;
  outline-offset: 1px;
}

*::-moz-selection {
  background: rgba(89, 74, 64, 0.5);
  color: #fcf4ed;
}

*::selection,
*::-moz-selection {
  background: rgba(89, 74, 64, 0.5);
  color: #fcf4ed;
}

/* --------------------------------
  fading animation on scroll
-------------------------------- */
.elements-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1200ms 100ms ease, visibility 1200ms 100ms ease, transform 1200ms 100ms ease-out;
}
.elements-fade.is-fading-in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* ------------------------
  header
------------------------ */
header {
  box-shadow: 0 10px 12px rgba(89, 74, 64, 0.05);
}
header > .container {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  align-items: center;
  height: 132px;
}
header .resv-btn,
header .to-top-mb {
  width: auto;
  height: 100%;
  display: block;
  display: none;
}
header .resv-btn {
  padding: 12px 4px 0;
  transition: background-color 150ms 0ms ease;
}
header .resv-btn:focus {
  outline-offset: -2px;
}
header .resv-btn .btn-title {
  display: inline-block;
  width: 100%;
  height: 30%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
header .resv-btn .btn-title br.br-sp {
  display: none;
}
header .resv-btn .btn-icon {
  display: inline-block;
  width: 100%;
  height: 70%;
}
header .resv-btn#web-resv-btn {
  color: #f6f9ea;
  background-color: #ee8a2d;
}
@media screen and (hover: hover) {
  header .resv-btn#web-resv-btn:hover, header .resv-btn#web-resv-btn:focus {
    background-color: #f2a45c;
  }
}
@media screen and (hover: none) {
  header .resv-btn#web-resv-btn:active, header .resv-btn#web-resv-btn:focus {
    background-color: #f2a45c;
  }
}
header .resv-btn#web-resv-btn .btn-icon {
  color: rgba(246, 249, 234, 0.9);
  transform: translateY(22px) scale(2);
}
header .resv-btn#tel-resv-btn {
  background-color: rgba(252, 244, 237, 0);
}
@media screen and (hover: hover) {
  header .resv-btn#tel-resv-btn:hover, header .resv-btn#tel-resv-btn:focus {
    background-color: rgba(130, 117, 108, 0.15);
  }
}
@media screen and (hover: none) {
  header .resv-btn#tel-resv-btn:active, header .resv-btn#tel-resv-btn:focus {
    background-color: rgba(130, 117, 108, 0.15);
  }
}
header .resv-btn#tel-resv-btn .btn-icon {
  color: rgba(42, 30, 25, 0.7);
  transform: translateY(20px) scale(1.8);
}
header .info {
  margin-left: 16px;
  margin-right: auto;
  width: 370px;
  padding: 6px 0;
}
header .info .upper-pr {
  position: relative;
  width: 100%;
  padding: 6px 2px 12px;
  text-align: center;
  letter-spacing: 0.01em;
  font-size: 1.3rem;
}
header .info .upper-pr::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #bacc90;
  border-radius: calc(infinity * 1px);
}
header .info .lower-pr {
  width: 100%;
  padding: 14px 4px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
header .info .lower-pr .reservation {
  background-color: #bacc90;
  padding: 7px 16px 8px;
  font-size: 1.8rem;
  border-radius: calc(infinity * 1px);
  position: relative;
}
header .info .lower-pr .tel {
  font-size: 2.9rem;
  letter-spacing: 0.02em;
}
header .info .lower-pr .tel .tel-icon {
  display: inline-block;
  width: calc(1.8rem + 15px);
  height: calc(1.8rem + 15px);
  margin: 0 -4px 2px 0;
  padding: 4px 4px 6px 6px;
  vertical-align: text-bottom;
  line-height: calc(1.8rem + 15px);
  font-size: 1em;
  fill: #2a1e19;
  border: 2px solid currentColor;
  border-radius: calc(infinity * 1px);
}
header .info .lower-pr .tel .tel-icon .icon {
  display: inline-block;
  translate: -6px -8px;
  scale: 60% 65%;
}
header .info .lower-pr .tel .tel-num {
  font-weight: 700;
  font-size: 1.12em;
  transform: translateY(10px);
}
header h1.logo {
  width: 220px;
}
header h1.logo .link {
  display: block;
  padding: 10px 20px;
  transition: opacity 150ms 0ms ease;
}
header h1.logo .link:hover, header h1.logo .link:focus {
  opacity: 0.7;
}
header h1.logo .link:focus {
  outline-offset: 8px;
}
header .header-gnav-pc {
  margin-left: auto;
  margin-right: 16px;
  width: 370px;
  padding: 6px;
  font-size: 1.6rem;
}
header .header-gnav-pc .page-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .header-gnav-pc .page-list .page-item {
  margin: 8px 0 8px 0.8em;
  position: relative;
}
header .header-gnav-pc .page-list .page-item:first-of-type, header .header-gnav-pc .page-list .page-item:nth-of-type(5) {
  letter-spacing: -0.05em;
}
header .header-gnav-pc .page-list .page-item:last-of-type > a.call-to-action {
  position: relative;
  display: block;
  margin: 0 0 0 -20px;
  padding: 6px 13px 8px 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f6f9ea;
  background-color: #ee8a2d;
  border: 2px solid #ee8a2d;
  border-radius: calc(infinity * 1px);
  transition: all 150ms ease;
}
header .header-gnav-pc .page-list .page-item:last-of-type > a.call-to-action::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border: 2px solid #f6f9ea;
  border-radius: calc(infinity * 1px);
}
@media screen and (hover: hover) {
  header .header-gnav-pc .page-list .page-item:last-of-type > a.call-to-action:hover, header .header-gnav-pc .page-list .page-item:last-of-type > a.call-to-action:focus {
    color: #f6f9ea;
    background-color: #f2a45c;
  }
}
@media screen and (hover: none) {
  header .header-gnav-pc .page-list .page-item:last-of-type > a.call-to-action:active, header .header-gnav-pc .page-list .page-item:last-of-type > a.call-to-action:focus {
    color: #f6f9ea;
    background-color: #f2a45c;
  }
}
header .header-gnav-pc .page-list .page-item > .link {
  position: relative;
  display: inline-block;
  padding: 4px 6px 4px 2px;
  transition: all 150ms 0ms ease;
}
header .header-gnav-pc .page-list .page-item > .link::before {
  transition: all 150ms 0ms ease;
}
header .header-gnav-pc .page-list .page-item > .link::after {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 2px;
  background-color: #bacc90;
  border-radius: calc(infinity * 1px);
  scale: 0% 100%;
  opacity: 0;
  transition: all 250ms 0ms ease;
}
header .header-gnav-pc .page-list .page-item > .link:focus {
  outline-offset: 4px;
}
@media screen and (hover: hover) {
  header .header-gnav-pc .page-list .page-item > .link:hover, header .header-gnav-pc .page-list .page-item > .link:focus {
    color: rgba(130, 117, 108, 0.7);
  }
  header .header-gnav-pc .page-list .page-item > .link:hover::before, header .header-gnav-pc .page-list .page-item > .link:focus::before {
    opacity: 0.7;
    scale: 120% 80%;
    translate: -10% 25%;
  }
  header .header-gnav-pc .page-list .page-item > .link:hover::after, header .header-gnav-pc .page-list .page-item > .link:focus::after {
    scale: 100% 100%;
    opacity: 0.7;
  }
}
@media screen and (hover: none) {
  header .header-gnav-pc .page-list .page-item > .link:active, header .header-gnav-pc .page-list .page-item > .link:focus {
    color: rgba(130, 117, 108, 0.7);
  }
  header .header-gnav-pc .page-list .page-item > .link:active::before, header .header-gnav-pc .page-list .page-item > .link:focus::before {
    opacity: 0.7;
    scale: 120% 80%;
    translate: -10% 25%;
  }
  header .header-gnav-pc .page-list .page-item > .link:active::after, header .header-gnav-pc .page-list .page-item > .link:focus::after {
    scale: 100% 100%;
    opacity: 0.7;
  }
}
header .header-gnav-pc .page-list .page-item > .link.disable-hover::before {
  display: none;
}
header .header-gnav-pc .page-list .page-item > .link.disable-hover + .section-list-outer {
  display: none;
}
header .header-gnav-pc .page-list .page-item.current-page {
  position: relative;
  font-weight: 700;
  color: rgba(91, 122, 42, 0.85);
}
@media screen and (hover: hover) {
  header .header-gnav-pc .page-list .page-item.current-page > .link:hover, header .header-gnav-pc .page-list .page-item.current-page > .link:focus {
    color: rgba(91, 122, 42, 0.7);
  }
}
@media screen and (hover: none) {
  header .header-gnav-pc .page-list .page-item.current-page > .link:active, header .header-gnav-pc .page-list .page-item.current-page > .link:focus {
    color: rgba(91, 122, 42, 0.7);
    background-color: rgba(130, 117, 108, 0.15);
  }
}
header .header-gnav-pc .page-list .page-item.current-page > .link.disable-hover::after {
  scale: 100% 100%;
  opacity: 0.7;
}
header .header-gnav-pc .page-list .page-item .section-list-outer {
  position: absolute;
  top: 70%;
  left: -70px;
  padding-top: 80%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
header .header-gnav-pc .page-list .page-item .section-list-outer .section-list {
  position: absolute;
  top: 0.8em;
  left: 0;
  z-index: 3;
  width: -moz-max-content;
  width: max-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6px 100vw 36px 62px;
  background-color: #f6f9ea;
  border-radius: 0 0 0 48px;
  box-shadow: 6px 18px 18px rgba(89, 74, 64, 0.1);
}
header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item {
  line-height: 3;
  font-weight: 500;
  color: #594a40;
}
header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item > .link {
  position: relative;
  display: inline-block;
  padding: 4px 20px 4px 8px;
  line-height: 1;
  transition: all 150ms 0ms ease;
}
header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item > .link::after {
  translate: -85% -65%;
  transition: all 150ms 0ms ease;
}
@media screen and (hover: hover) {
  header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item > .link:hover, header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item > .link:focus {
    color: rgba(130, 117, 108, 0.7);
  }
  header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item > .link:hover::after, header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item > .link:focus::after {
    opacity: 0.7;
    translate: -50% -65%;
  }
}
@media screen and (hover: none) {
  header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item > .link:active {
    color: rgba(130, 117, 108, 0.7);
    background-color: rgba(130, 117, 108, 0.15);
  }
  header .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item > .link:active::after {
    opacity: 0.7;
    translate: -50% -65%;
  }
}
@media screen and (hover: hover) {
  header .header-gnav-pc .page-list .page-item:hover > .section-list-outer, header .header-gnav-pc .page-list .page-item > .link:focus + .section-list-outer {
    opacity: 1;
    visibility: visible;
    transition: all 150ms ease;
  }
}
@media screen and (hover: none) {
  header .header-gnav-pc .page-list .page-item:active > .section-list-outer, header .header-gnav-pc .page-list .page-item > .link:focus + .section-list-outer {
    opacity: 1;
    visibility: visible;
    transition: all 150ms ease;
  }
}
header .header-gnav-pc .page-list .page-item:nth-of-type(3) .section-list {
  left: -2em;
  padding: 6px 100vw 36px calc(44px + 1em);
}
header .header-gnav-pc .page-list .page-item:nth-of-type(3) .section-list .section-item {
  text-align: right;
  translate: -0.8em 0;
}
header .to-top-mb,
header .header-gnav-btn {
  width: auto;
  height: 100%;
  display: none;
}
header .to-top-mb .title-area,
header .header-gnav-btn .title-area {
  position: relative;
  width: 100%;
  height: 25%;
  margin: 12px 0 0;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  text-align: center;
  transition: all 150ms 0ms ease;
  opacity: 1;
  visibility: visible;
}
header .to-top-mb .title-area .btn-title,
header .header-gnav-btn .title-area .btn-title {
  position: absolute;
  top: 0;
  left: -1px;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 300ms 150ms ease;
}
header .to-top-mb .title-area .btn-title#btn-title-open,
header .header-gnav-btn .title-area .btn-title#btn-title-open {
  padding-left: 4px;
  opacity: 0;
  visibility: hidden;
}
header .to-top-mb .bar-area,
header .header-gnav-btn .bar-area {
  position: relative;
  width: 100%;
  height: calc(75% - 12px);
}
header .to-top-mb .bar-area .bar,
header .header-gnav-btn .bar-area .bar {
  position: absolute;
  inset: 0;
  margin: 16px 25%;
  width: 40%;
  height: 3px;
  background-color: #82756c;
  border-radius: calc(infinity * 1px);
  opacity: 1;
}
header .to-top-mb:focus,
header .header-gnav-btn:focus {
  outline-offset: -2px;
}
@media screen and (hover: hover) {
  header .to-top-mb:hover, header .to-top-mb:focus,
  header .header-gnav-btn:hover,
  header .header-gnav-btn:focus {
    background-color: rgba(130, 117, 108, 0.15);
  }
}
@media screen and (hover: none) {
  header .to-top-mb:active, header .to-top-mb:focus,
  header .header-gnav-btn:active,
  header .header-gnav-btn:focus {
    background-color: rgba(130, 117, 108, 0.15);
  }
}
header .header-gnav-btn .bar-area .bar-1 {
  top: -9px;
  rotate: 0deg;
  transition: all 250ms 0ms ease;
}
header .header-gnav-btn .bar-area .bar-2 {
  transition: all 150ms 0ms ease;
}
header .header-gnav-btn .bar-area .bar-3 {
  top: 9px;
  rotate: 0deg;
  transition: all 250ms 0ms ease;
}
header .header-gnav-btn.is-active {
  background-color: rgba(130, 117, 108, 0.25);
}
header .header-gnav-btn.is-active .title-area .btn-title#btn-title-close {
  opacity: 0;
  visibility: hidden;
}
header .header-gnav-btn.is-active .title-area .btn-title#btn-title-open {
  opacity: 1;
  visibility: visible;
}
header .header-gnav-btn.is-active .bar-area .bar-1 {
  top: 0px;
  rotate: 40deg;
  scale: 100% 120%;
}
header .header-gnav-btn.is-active .bar-area .bar-2 {
  opacity: 0;
  visibility: hidden;
}
header .header-gnav-btn.is-active .bar-area .bar-3 {
  top: 0px;
  rotate: -40deg;
  scale: 100% 120%;
}
header .to-top-mb {
  scroll-padding-top: 0;
}
header .to-top-mb .title-area {
  line-height: 1.1;
}
header .to-top-mb .bar-area {
  position: relative;
}
header .to-top-mb .bar-area .bar {
  width: 25%;
  margin: 16px auto;
  scale: 100% 120%;
}
header .to-top-mb .bar-area .bar-1 {
  rotate: 45deg;
  translate: 30% 100%;
}
header .to-top-mb .bar-area .bar-2 {
  rotate: -45deg;
  translate: -30% 100%;
}
header .header-gnav-mb {
  position: fixed;
  top: 80px;
  left: 0;
  display: block;
  width: 100%;
  height: 100dvh;
  overflow-y: hidden;
  padding: 52px 5%;
  text-align: left;
  line-height: 1.8;
  font-size: 2.2rem;
  background-color: #f6f9ea;
  opacity: 0;
  visibility: hidden;
  transition: all 450ms 0ms ease;
}
header .header-gnav-mb.is-active {
  opacity: 1;
  visibility: visible;
}
header .header-gnav-mb .page-list {
  height: 100%;
  overflow-y: scroll;
  display: grid;
  grid-template-columns: 5fr 6fr;
  grid-template-rows: repeat(3, 1fr) 30px;
  -moz-column-gap: 7.5%;
       column-gap: 7.5%;
  row-gap: 16px;
}
header .header-gnav-mb .page-list .page-item {
  font-weight: 700;
}
header .header-gnav-mb .page-list .page-item.current-page > .link {
  color: #bacc90;
}
header .header-gnav-mb .page-list .page-item .link {
  position: relative;
  display: block;
  transition: color 150ms 0ms ease;
}
header .header-gnav-mb .page-list .page-item .link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  margin: auto;
  width: 1em;
  height: 100%;
  background-image: url(../img/arrow_gr-sf.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  rotate: -90deg;
  opacity: 0.7;
  transition: all 150ms 0ms ease;
}
header .header-gnav-mb .page-list .page-item .link:focus {
  outline-offset: -2px;
}
header .header-gnav-mb .page-list .page-item > .link {
  padding: 8px 1.5em 8px 1em;
  color: #5b7a2a;
  border-bottom: 1px solid rgba(130, 117, 108, 0.25);
}
header .header-gnav-mb .page-list .page-item > .link::before {
  display: none;
}
header .header-gnav-mb .page-list .page-item > .link::after {
  translate: -1px 0;
}
@media screen and (hover: hover) {
  header .header-gnav-mb .page-list .page-item > .link:hover, header .header-gnav-mb .page-list .page-item > .link:focus {
    color: rgba(91, 122, 42, 0.7);
  }
  header .header-gnav-mb .page-list .page-item > .link:hover::after, header .header-gnav-mb .page-list .page-item > .link:focus::after {
    right: 0;
    opacity: 0.4;
  }
}
@media screen and (hover: none) {
  header .header-gnav-mb .page-list .page-item > .link:active, header .header-gnav-mb .page-list .page-item > .link:focus {
    color: rgba(91, 122, 42, 0.7);
  }
  header .header-gnav-mb .page-list .page-item > .link:active::after, header .header-gnav-mb .page-list .page-item > .link:focus::after {
    right: 0;
    opacity: 0.4;
  }
}
header .header-gnav-mb .page-list .page-item .section-list-outer .section-list {
  background-color: transparent;
  border-radius: 0;
}
header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item {
  font-size: 0.8em;
  font-weight: 500;
}
header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link {
  padding: 8px 1.5em 8px 1.5em;
  text-indent: -1em;
  padding-left: calc(1em + 16px);
  border-bottom: 1px solid rgba(130, 117, 108, 0.25);
}
header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link::before {
  content: "-";
  margin-right: 0.5em;
  color: #82756c;
}
header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link::after {
  top: 62%;
  right: 0;
}
@media screen and (hover: hover) {
  header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link:hover, header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link:focus {
    color: rgba(42, 30, 25, 0.7);
  }
  header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link:hover::after, header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link:focus::after {
    right: -4px;
    opacity: 0.4;
  }
}
@media screen and (hover: none) {
  header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link:active, header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link:focus {
    color: rgba(42, 30, 25, 0.7);
  }
  header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link:active::after, header .header-gnav-mb .page-list .page-item .section-list-outer .section-list .section-item > .link:focus::after {
    right: -4px;
    opacity: 0.4;
  }
}

@media screen and (max-width: 1200px) {
  header > .container .info {
    scale: 0.9 0.9;
    width: 366px;
    margin-left: 6px;
    padding: 6px 6px 6px 0;
  }
  header > .container .info .upper-pr {
    padding: 6px 0 12px;
  }
  header > .container .info .lower-pr {
    padding: 14px 2px 0;
  }
  header > .container .info .lower-pr .reservation {
    padding: 7px 14px 8px;
  }
  header > .container h1.logo {
    scale: 0.75 0.75;
    width: 200px;
  }
  header > .container h1.logo .link {
    padding: 0;
  }
  header > .container .header-gnav-pc {
    scale: 0.9 0.9;
    width: 362px;
    margin-right: 6px;
    padding: 6px 0 6px 6px;
  }
}
@media screen and (max-width: 960px) {
  header {
    height: 120px;
  }
  header > .container {
    display: flex;
    flex-direction: row;
  }
  header > .container .info {
    scale: 1 1;
    position: absolute;
    top: 20px;
    right: 36px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    padding: 2px 0;
  }
  header > .container .info .upper-pr {
    display: none;
  }
  header > .container .info .lower-pr {
    justify-content: flex-end;
    width: 370px;
    height: 38px;
    padding: 0;
  }
  header > .container .info .lower-pr .reservation {
    display: none;
  }
  header > .container .info .lower-pr .tel {
    font-size: 2.75rem;
    color: #594a40;
  }
  header > .container .info .lower-pr .tel .tel-icon {
    width: 28px;
    height: 28px;
    padding: 4px 3px 4px 4px;
    font-size: 2rem;
    line-height: 1.3;
    fill: #594a40;
    translate: 0 -2px;
  }
  header > .container .info .lower-pr .tel .tel-icon .icon {
    translate: -3px -6px;
    scale: 75% 80%;
  }
  header > .container h1.logo {
    scale: 1 1;
    margin-left: 16px;
    margin-right: auto;
    width: 180px;
  }
  header > .container h1.logo .link {
    padding: 4px 20px 8px 8px;
  }
  header > .container .header-gnav-pc {
    width: auto;
    margin-top: 40px;
    margin-right: -10px;
  }
  header > .container .header-gnav-pc .page-list .page-item {
    margin: 8px 13px;
  }
  header > .container .header-gnav-pc .page-list .page-item .section-list-outer {
    width: -moz-fit-content;
    width: fit-content;
  }
  header > .container .header-gnav-pc .page-list .page-item .section-list-outer .section-list {
    left: 20px;
    padding: 6px 24px 24px 32px;
    border-radius: 0 0 48px 48px;
  }
  header > .container .header-gnav-pc .page-list .page-item .section-list-outer .section-list .section-item {
    margin: 0 12px;
  }
  header > .container .header-gnav-pc .page-list .page-item:nth-of-type(3) .section-list {
    left: 20px;
    padding: 6px 24px 24px 32px;
  }
  header > .container .header-gnav-pc .page-list .page-item:nth-of-type(3) .section-list .section-item {
    text-align: left;
    translate: 0 0;
  }
  header > .container .header-gnav-pc .page-list .page-item:nth-of-type(5) .section-list {
    left: -4.25em;
    padding: 6px 18px 24px 32px;
  }
  header > .container .header-gnav-pc .page-list .page-item:nth-of-type(5) .section-list .section-item {
    text-align: right;
  }
  header > .container .header-gnav-pc .page-list .page-item:last-of-type {
    position: absolute;
    top: -50px;
    right: 264px;
  }
  header > .container .header-gnav-pc .page-list .page-item:last-of-type .call-to-action {
    padding: 6px 20px 8px 18px;
  }
}
@media screen and (max-width: 768px) {
  header {
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 80px;
    background-color: #f6f9ea;
    border-bottom: 1px solid rgba(130, 117, 108, 0.25);
    box-shadow: 0 2px 8px rgba(130, 117, 108, 0.25);
  }
  header > .container {
    width: auto;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 72px) 1fr repeat(2, 72px);
    -moz-column-gap: 0;
         column-gap: 0;
    align-items: center;
    text-align: center;
  }
  header > .container > * {
    border-right: 1px solid rgba(130, 117, 108, 0.25);
    border-left: 1px solid rgba(130, 117, 108, 0.25);
  }
  header > .container > *:first-child {
    border-right: none;
  }
  header > .container > *:last-child {
    border-left: none;
  }
  header > .container .resv-btn,
  header > .container .to-top-mb,
  header > .container .header-gnav-btn {
    display: block;
  }
  header > .container .info,
  header > .container .header-gnav-pc {
    display: none;
  }
  header > .container h1.logo {
    width: 126px;
    height: 100%;
    margin: 0 auto;
    display: grid;
    align-items: center;
    border: none;
  }
  header > .container h1.logo .link {
    padding: 0 4px;
  }
}
@media screen and (max-width: 520px) {
  header {
    height: 56px;
  }
  header > .container {
    display: grid;
    grid-template-columns: repeat(2, 50px) 1fr repeat(2, 50px);
  }
  header > .container .resv-btn {
    padding: 3px 2px 0;
  }
  header > .container .resv-btn .btn-title br.br-sp {
    display: inline;
  }
  header > .container .resv-btn#web-resv-btn .btn-icon {
    transform: translateY(6px) scale(1.15);
  }
  header > .container .resv-btn#tel-resv-btn .btn-icon {
    transform: translateY(5px) scale(1.1);
  }
  header > .container h1.logo {
    width: 90px;
  }
  header > .container .to-top-mb .title-area,
  header > .container .header-gnav-btn .title-area {
    height: 20%;
    margin: 7px 0 0;
  }
  header > .container .to-top-mb .bar-area,
  header > .container .header-gnav-btn .bar-area {
    height: calc(80% - 7px);
  }
  header > .container .to-top-mb .bar-area .bar,
  header > .container .header-gnav-btn .bar-area .bar {
    height: 2px;
    margin: 16px auto;
  }
  header > .container .header-gnav-btn .bar-area .bar-1 {
    top: -6px;
  }
  header > .container .header-gnav-btn .bar-area .bar-3 {
    top: 6px;
  }
  header > .container .header-gnav-btn.is-active .bar-area .bar-1 {
    top: 0;
  }
  header > .container .header-gnav-btn.is-active .bar-area .bar-3 {
    top: 0;
  }
  header > .container .header-gnav-mb {
    top: 56px;
    padding: 40px 10%;
    font-size: 2.5rem;
  }
  header > .container .header-gnav-mb .page-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 40px;
    line-height: 1.8;
    padding-bottom: 80px;
  }
  header > .container .header-gnav-mb .page-list .page-item > .link {
    padding: 8px 1.5em 8px 1em;
  }
  header > .container .header-gnav-mb .page-list .page-item > .link::after {
    translate: -2px 0;
    scale: 110% 110%;
  }
  header > .container .header-gnav-mb .page-list .section-list .section-item > .link {
    padding: 8px 1.5em 8px 1.5em;
    font-size: 2.3rem;
  }
}
/* --------------------------------
  footer
-------------------------------- */
footer {
  color: #fcf4ed;
  background-color: #594a40;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  bottom: 99%;
  left: -1%;
  right: -1%;
  z-index: 1;
  width: 102%;
  height: 8.94vw;
  background-image: url(../img/wave_border.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  rotate: 180deg;
}
footer .container {
  max-width: 1280px;
  padding: 40px 42px 20px;
}
footer .container *::-moz-selection {
  background: rgba(252, 244, 237, 0.5);
  color: #2a1e19;
}
footer .container *::selection,
footer .container *::-moz-selection {
  background: rgba(252, 244, 237, 0.5);
  color: #2a1e19;
}
footer .footer-gnav-pc .page-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
footer .footer-gnav-pc .page-list .page-item {
  width: 200px;
  font-weight: 700;
  text-wrap: balance;
  word-break: break-all;
}
footer .footer-gnav-pc .page-list .page-item > .link {
  display: inline-block;
  width: 100%;
  padding: 12px 2px;
  letter-spacing: 0.06em;
}
footer .footer-gnav-pc .page-list .page-item .section-list-outer {
  border-top: 2px solid #82756c;
  font-weight: 400;
}
footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item {
  margin-left: 0.8em;
  text-indent: -0.8em;
}
footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item > .link {
  display: block;
  margin-bottom: 12px;
  padding: 4px 2px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item > .link::before {
  content: "-";
  padding-inline: 2px 4px;
}
footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item:first-of-type {
  margin-top: 20px;
}
footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item .br-nb {
  display: none;
}
footer .footer-gnav-pc .page-list .link {
  transition: color 100ms ease;
}
footer .footer-gnav-pc .page-list .link:hover {
  color: rgba(252, 244, 237, 0.45);
}
footer .info-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
  margin-top: 16px;
}
footer .info-wrapper > .inner {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-top: 12px;
  width: 480px;
}
footer .info-wrapper > .inner > .info-text {
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 20px 0 4px;
  cursor: text;
}
footer .info-wrapper > .inner > .info-text br.br-sp {
  display: none;
}
footer .info-wrapper > .inner > .info-text .tel-num {
  transition: color 150ms 0ms ease;
  display: contents;
}
footer .info-wrapper > .inner > .info-text .tel-num:hover {
  color: rgba(252, 244, 237, 0.7);
}
footer .info-wrapper > .inner > .info-icon {
  margin-top: 18px;
  padding: 4px 4px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid #82756c;
}
footer .info-wrapper > .inner > .info-icon .logo {
  width: 160px;
  text-align: center;
}
footer .info-wrapper > .inner > .info-icon .logo .link {
  display: block;
  padding: 8px 4px;
  transition: opacity 150ms 0ms ease;
}
footer .info-wrapper > .inner > .info-icon .logo .link:hover {
  opacity: 0.6;
}
footer .info-wrapper > .inner > .info-icon .sns-list {
  width: 55%;
  height: 76px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 12px;
}
footer .info-wrapper > .inner > .info-icon .sns-list .sns-item {
  width: 72px;
  height: 80%;
}
footer .info-wrapper > .inner > .info-icon .sns-list .sns-item .sns-link {
  display: block;
  height: 100%;
  padding: 10px;
}
footer .info-wrapper > .inner > .info-icon .sns-list .sns-item .sns-link .icon {
  height: 100%;
  fill: rgba(252, 244, 237, 0.5);
  transition: fill 150ms ease;
}
footer .info-wrapper > .inner > .info-icon .sns-list .sns-item .sns-link:hover .icon {
  fill: rgba(252, 244, 237, 0.3);
}
footer .info-wrapper > .inner > .info-icon .sns-list .sns-item .sns-link .icon-desc {
  display: block;
  width: 100%;
  margin-left: 12px;
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  display: none;
  transition: color 150ms 0ms ease;
}
footer .info-wrapper > .inner > .info-icon .sns-list .sns-item .sns-link:hover .icon-desc {
  color: rgba(252, 244, 237, 0.7);
}
footer .info-wrapper .map {
  width: calc(100% - 552px);
  height: 280px;
  padding: 60px 4px 20px;
  text-align: center;
}
footer .info-wrapper .map .google-map {
  width: 100%;
  height: 100%;
  background-color: rgba(130, 117, 108, 0.7);
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  footer .info-wrapper .map .google-map {
    border-radius: 19px;
  }
}
@media screen and (max-width: 520px) {
  footer .info-wrapper .map .google-map {
    border-radius: 13px;
  }
}
footer > .copyright {
  width: 100%;
  margin: 60px auto;
  letter-spacing: 0.03em;
  text-align: center;
}
footer > .notification {
  padding: 2em 1em;
  text-align: right;
  line-height: 1.8;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  border-top: 2px solid currentColor;
}
footer > .notification .portfolio-link {
  padding-inline: 0.25em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 150ms 0ms ease;
}
footer > .notification .portfolio-link .fa-arrow-up-right-from-square {
  padding-inline: 0.25em;
}
footer > .notification .portfolio-link:hover {
  color: rgba(252, 244, 237, 0.7);
}

@media screen and (max-width: 1200px) {
  footer .footer-gnav-pc .page-list .page-item {
    width: 180px;
  }
  footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item {
    line-height: 1.4;
  }
  footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item > .link {
    margin-bottom: 6px;
  }
  footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item .br-nb {
    display: inline;
  }
  footer .info-wrapper .map {
    width: calc(100% - 532px);
  }
}
@media screen and (max-width: 960px) {
  footer .container {
    display: grid;
    grid-template-columns: 1fr 480px;
    justify-content: start;
  }
  footer .footer-gnav-pc {
    padding-top: 20px;
  }
  footer .footer-gnav-pc .page-list {
    display: flex;
    flex-direction: column;
  }
  footer .footer-gnav-pc .page-list .page-item {
    position: relative;
    padding: 8px 0;
    text-wrap: nowrap;
    word-break: normal;
  }
  footer .footer-gnav-pc .page-list .page-item > .link {
    border-bottom: 2px solid #82756c;
  }
  footer .footer-gnav-pc .page-list .page-item .section-list-outer {
    margin: 0 0 20px 0.5em;
  }
  footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item {
    width: 100%;
    margin: 12px 0;
    padding-left: 0.3em;
    font-size: 1.8rem;
    /* --------------------------------
      notebookサイズで.section-itemの改行を無くすための記述 (セレクタ詳細度を上げないと効かない)
    -------------------------------- */
  }
  footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item:first-of-type {
    margin-top: 12px;
  }
  footer .footer-gnav-pc .page-list .page-item .section-list-outer,
  footer .footer-gnav-pc .page-list .page-item .section-list-outer .section-item {
    border-top: none;
  }
  footer .footer-gnav-pc .link {
    transition: color 500ms 0ms ease;
  }
  footer .footer-gnav-pc .link:hover {
    color: rgba(130, 117, 108, 0.7);
  }
  footer .info-wrapper {
    display: block;
    margin-top: 0;
  }
  footer .info-wrapper > .inner {
    margin: 0 20px 0 auto;
  }
  footer .info-wrapper .map {
    width: 480px;
    height: 900px;
    margin: 0 20px 0 auto;
    padding: 60px 0 20px;
  }
  /* ----------------------------------------------------------------
    nbサイズで.section-itemの改行を無くすための記述 (セレクタ詳細度を上げないと効かない)
  ---------------------------------------------------------------- */
  #footer #footer-gnav-pc .page-item .section-item br.br-nb {
    display: none;
  }
  #footer #footer-gnav-pc .page-item .section-item br.br-particular {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  footer .container {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 40px 0 20px;
  }
  footer .footer-gnav-pc {
    display: none;
  }
  footer .info-wrapper {
    width: 384px;
    margin: 0 auto;
  }
  footer .info-wrapper > .inner,
  footer .info-wrapper > .map {
    width: 100%;
    height: 280px;
    margin: 0 auto;
  }
  footer .info-wrapper > .map {
    padding-top: 20px;
  }
  footer .info-wrapper > .inner .info-text .tel-num {
    display: inline;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    cursor: pointer;
  }
  footer .info-wrapper > .inner .info-icon .logo .link {
    width: 130px;
  }
}
@media screen and (max-width: 520px) {
  footer .container {
    width: 100%;
  }
  footer .info-wrapper {
    width: 100%;
    margin: 16px auto;
  }
  footer .info-wrapper > .inner > .info-text {
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto;
    padding: 12px 3vw 0;
    line-height: 2;
    font-size: 2.5rem;
    translate: 2vw 0;
  }
  footer .info-wrapper > .inner > .info-text br.br-sp {
    display: inline;
  }
  footer .info-wrapper > .inner > .info-icon {
    margin-top: 4px;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    border-bottom: none;
  }
  footer .info-wrapper > .inner > .info-icon .logo {
    display: grid;
    place-items: center;
    width: 100%;
    margin: 16px auto 0;
  }
  footer .info-wrapper > .inner > .info-icon .sns-list {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 8px;
  }
  footer .info-wrapper > .inner > .info-icon .sns-list .sns-item {
    width: 100%;
    margin: 0;
    display: block;
  }
  footer .info-wrapper > .inner > .info-icon .sns-list .sns-item .sns-link {
    width: 192px;
    margin: 8px auto;
    padding: 4px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  footer .info-wrapper > .inner > .info-icon .sns-list .sns-item .sns-link .icon {
    width: 60px;
    aspect-ratio: 1/1;
    margin: 8px 0;
  }
  footer .info-wrapper > .inner > .info-icon .sns-list .sns-item .sns-link .icon-desc {
    display: block;
  }
  footer .info-wrapper > .inner > .info-icon .sns-list .sns-item:nth-of-type(2) .sns-link .icon {
    width: 52px;
    margin: 8px 2px;
  }
  footer .info-wrapper .map {
    width: 80%;
    height: auto;
    aspect-ratio: 3/2;
    margin-top: 320px;
    padding: 0;
  }
}
/* --------------------------------
  aside (CTA)
-------------------------------- */
#CTA {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 5;
  max-width: 140px;
  text-align: center;
  display: none;
}
#CTA #to-top {
  position: relative;
}
#CTA #to-top .link {
  position: relative;
  display: inline-block;
  padding: 6px 16px 16px;
  font-size: 1.8rem;
  color: #5b7a2a;
  transition: all 150ms 0ms ease;
}
#CTA #to-top .link::before {
  transition: all 150ms 0ms ease;
}
#CTA #to-top .link:hover {
  color: rgba(91, 122, 42, 0.7);
}
#CTA #to-top .link:hover::before {
  opacity: 0.7;
  translate: -50% 85%;
}
#CTA #CTA-resv {
  position: relative;
  margin: 80px 0 20px;
  padding: 8px;
  width: 140px;
  height: 140px;
  color: #f6f9ea;
  background-color: #ee8a2d;
  border: 2px solid #ee8a2d;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 2px 8px rgba(130, 117, 108, 0.4);
  transition: all 150ms ease;
}
#CTA #CTA-resv span {
  display: block;
}
#CTA #CTA-resv span:nth-of-type(1) {
  padding: 6px 0 10px;
}
#CTA #CTA-resv span:nth-of-type(1) .fa-calendar-days {
  font-size: 2.5rem;
}
#CTA #CTA-resv span:nth-of-type(2) {
  line-height: 1.6;
  font-size: 2.2rem;
}
#CTA #CTA-resv span:nth-of-type(3) {
  line-height: 1.2;
  font-size: 1.6rem;
  letter-spacing: -0.1em;
}
#CTA #CTA-resv::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 2px solid #f6f9ea;
  border-radius: calc(infinity * 1px);
}
#CTA #CTA-resv:hover {
  background-color: #f2a45c;
  border-color: #f2a45c;
}
#CTA #CTA-resv.pop-up {
  animation: pop-up 1000ms 3000ms ease forwards;
  animation-fill-mode: none;
}

@keyframes pop-up {
  0% {
    scale: 100%;
    background-color: #ee8a2d;
  }
  25% {
    scale: 105%;
    background-color: #f09745;
  }
  50% {
    scale: 95%;
    background-color: #ee8a2d;
  }
  75% {
    scale: 105%;
    background-color: #f09745;
  }
  100% {
    scale: 100%;
    background-color: #ee8a2d;
  }
}
.CTA-fade {
  opacity: 0;
  visibility: hidden;
  scale: 0.5;
  transition: all 300ms 0ms ease;
}
.CTA-fade.is-fading-in {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

@media screen and (max-width: 1200px) {
  #CTA #CTA-resv {
    margin: 36px 0 20px;
  }
}
@media screen and (max-width: 960px) {
  #CTA {
    bottom: 16px;
    right: 16px;
  }
  #CTA #CTA-resv {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #CTA > * {
    display: none;
  }
}
/* ---- variables ---- */
/* --------------------------------
  hero-bg
-------------------------------- */
#hero-bg {
  position: relative;
  width: 100%;
  height: calc(100vh - 132px);
  overflow-y: hidden;
  overflow-x: hidden;
}
#hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 249, 234, 0.2);
}
#hero-bg #slider > li {
  width: 100%;
  aspect-ratio: 1000/650;
}
#hero-bg #slider > li > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

@media screen and (max-width: 1200px) {
  #hero-bg {
    height: max(640px, 47.8125vw);
    z-index: -3;
  }
}
@media screen and (max-width: 960px) {
  #hero-bg {
    height: max(480px, 56.25vw);
  }
}
@media screen and (max-width: 768px) {
  #hero-bg {
    height: max(300px, 61.875vw);
    top: 80px;
  }
}
@media screen and (max-width: 520px) {
  #hero-bg {
    top: 56px;
    left: calc(50% - 260px);
    width: 520px;
    height: 300px;
  }
}
/* --------------------------------
  lead section
-------------------------------- */
#lead {
  padding: 12px;
  background-color: #594a40;
  position: relative;
}
#lead::before {
  content: "";
  position: absolute;
  bottom: 99%;
  left: -1%;
  right: -1%;
  z-index: 1;
  width: 102%;
  height: 8.94vw;
  background-image: url(../img/wave_border.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  rotate: 180deg;
}
#lead::after {
  content: "";
  position: absolute;
  top: 99%;
  left: -1%;
  right: -1%;
  z-index: 1;
  width: 102%;
  height: 8.94vw;
  background-image: url(../img/wave_border.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#lead .container {
  padding: 40px 0;
  text-align: center;
  color: #fcf4ed;
}
#lead .container *::-moz-selection {
  background: rgba(252, 244, 237, 0.5);
  color: #2a1e19;
}
#lead .container *::selection,
#lead .container *::-moz-selection {
  background: rgba(252, 244, 237, 0.5);
  color: #2a1e19;
}
#lead .container .lead-copy {
  margin: 8px 0 48px;
  line-height: 1.7;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
#lead .container .lead-copy br.br-sp {
  display: none;
}
#lead .container .lead-desc {
  margin: 0 0 8px;
  line-height: 2;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  #lead {
    height: auto;
    padding: 0;
  }
  #lead .container {
    width: 92%;
    padding: 32px 0;
  }
  #lead .container .lead-copy {
    margin: 6px 0 36px;
    font-size: 2.8rem;
  }
  #lead .container .lead-desc br.br-nb {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  #lead .container .lead-copy {
    margin-bottom: 52px;
    padding-inline: 5vw;
    font-size: 3.5rem;
  }
  #lead .container .lead-copy br.br-sp {
    display: inline;
  }
  #lead .container .lead-desc {
    padding-inline: 5%;
    text-align: left;
  }
  #lead .container .lead-desc br.br-pc {
    margin-bottom: 1.2em;
  }
  #lead .container .lead-desc br.br-nb {
    display: none !important;
  }
}
/* --------------------------------
  news section
-------------------------------- */
#news {
  padding-top: 200px;
}
#news > .container {
  position: relative;
}
#news > .container .sec-title {
  position: absolute;
  top: -1rem;
  left: 8em;
  z-index: 1;
  padding: 0 10px;
  line-height: 2rem;
  color: #594a40;
  background-color: #f6f9ea;
}
#news > .container .sec-title::before {
  content: "";
  width: 0;
  height: 0;
}
#news > .container #news-wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 40px 52px;
  background-color: #f6f9ea;
  border: 2px solid rgba(130, 117, 108, 0.7);
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  #news > .container #news-wrapper {
    border-radius: 19px;
  }
}
@media screen and (max-width: 520px) {
  #news > .container #news-wrapper {
    border-radius: 13px;
  }
}
#news > .container #news-wrapper:focus {
  outline: 2px dotted rgba(91, 122, 42, 0.4);
}
#news > .container #news-wrapper .news-title {
  margin: 8px auto 20px;
  text-align: center;
  font-size: 1.25em;
  line-height: 1.8;
}
#news > .container #news-wrapper .news-title:empty::after {
  content: "(ただいま新着のお知らせはありません)";
  color: rgba(130, 117, 108, 0.7);
}
#news > .container #news-wrapper .news-delivery-date {
  margin: 8px auto;
  padding-right: 1em;
  text-align: right;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: rgba(130, 117, 108, 0.7);
}
#news > .container #news-wrapper .news-body {
  margin: 8px auto 0;
  line-height: 1.8;
}
#news > .container #news-wrapper .news-body em {
  margin-inline: 4px;
  font-style: normal;
  font-weight: 700;
  color: #d77011;
  text-decoration: underline;
  text-decoration-color: rgba(215, 112, 17, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media screen and (max-width: 960px) {
  #news {
    padding-top: 160px;
    padding-bottom: 80px;
  }
  #news > .container .sec-title {
    left: 5.5em;
  }
  #news > .container #news-wrapper {
    width: 90%;
  }
  #news > .container #news-wrapper .news-delivery-date {
    padding-right: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  #news {
    padding-top: 120px;
    padding-bottom: 72px;
  }
  #news > .container .sec-title {
    left: calc(50% - (2em + 10px));
  }
  #news > .container #news-wrapper {
    width: 96%;
    padding: 32px 40px;
  }
  #news > .container #news-wrapper .news-delivery-date {
    padding-right: 0;
  }
  #news > .container #news-wrapper .news-body {
    line-height: 2;
  }
}
@media screen and (max-width: 520px) {
  #news > .container #news-wrapper .news-title {
    font-size: 1.2em;
  }
}
/* --------------------------------
  feature section
-------------------------------- */
#feature {
  background-position: -100% 95%;
  overflow-x: hidden;
}
#feature .feature-list {
  width: 100%;
  margin: 32px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
}
#feature .feature-list .feature-item {
  position: relative;
  z-index: 3;
  width: calc(33.3333333333% - 30px);
  margin-top: 20px;
  padding: 4px;
  background-color: #5b7a2a;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  #feature .feature-list .feature-item {
    border-radius: 19px;
  }
}
@media screen and (max-width: 520px) {
  #feature .feature-list .feature-item {
    border-radius: 13px;
  }
}
#feature .feature-list .feature-item::before {
  content: attr(data-feature-num);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  padding: 10px 16px 16px;
  text-align: center;
  font-size: 2.2em;
  font-weight: 500;
  color: #bacc90;
  background-color: #5b7a2a;
  border-radius: 24px 0 24px 0;
}
@media screen and (max-width: 768px) {
  #feature .feature-list .feature-item::before {
    border-radius: 19px 0 19px 0;
  }
}
@media screen and (max-width: 520px) {
  #feature .feature-list .feature-item::before {
    border-radius: 13px 0 13px 0;
  }
}
#feature .feature-list .feature-item .feature-img {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  #feature .feature-list .feature-item .feature-img {
    border-radius: 15px 15px 0 0;
  }
}
@media screen and (max-width: 520px) {
  #feature .feature-list .feature-item .feature-img {
    border-radius: 9px 9px 0 0;
  }
}
#feature .feature-list .feature-item .feature-desc {
  text-align: center;
  padding: 12px 0;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #f6f9ea;
}

@media screen and (max-width: 1200px) {
  #feature {
    background-position: -150% 95%;
  }
  #feature .sec-lead {
    letter-spacing: -0.02em;
  }
  #feature .feature-list {
    gap: 6px 24px;
  }
}
@media screen and (max-width: 960px) {
  #feature .feature-list {
    justify-content: flex-start;
    row-gap: 30px;
    padding-left: 4vw;
  }
  #feature .feature-list .feature-item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  #feature .feature-list {
    -moz-column-gap: 5vw;
         column-gap: 5vw;
  }
  #feature .feature-list .feature-item {
    aspect-ratio: 1/0.92;
  }
  #feature .feature-list .feature-item::before {
    padding: 9px 15px 15px;
    font-size: 1.8em;
  }
  #feature .feature-list .feature-item .feature-img {
    height: auto;
  }
  #feature .feature-list .feature-item .feature-desc {
    padding: 8px 0;
  }
}
@media screen and (max-width: 520px) {
  #feature {
    background-position: -150% 98%;
  }
  #feature .feature-list {
    width: 88%;
    margin: 0 auto;
    display: block;
    padding: 0;
  }
  #feature .feature-list .feature-item {
    width: 100%;
    margin-top: 10vw;
    aspect-ratio: initial;
  }
  #feature .feature-list .feature-item::before {
    padding: 8px 12px 16px;
    font-size: 2em;
  }
  #feature .feature-list .feature-item .feature-img {
    height: 160px;
  }
  #feature .feature-list .feature-item .feature-desc {
    padding: 16px 1em;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  #feature .feature-list .feature-item .feature-desc br.br-pc {
    display: none;
  }
}
/* --------------------------------
  course section
-------------------------------- */
#course {
  background-position: 200% 25%;
  overflow-x: hidden;
}
#course .course-list {
  width: 95%;
  margin: 52px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#course .course-list .course-name {
  width: 25%;
  height: 140px;
  padding: 20px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #5b7a2a;
  display: grid;
  place-items: center;
  border-bottom: 2px solid #bacc90;
}
#course .course-list .course-name:first-of-type {
  border-top: 2px solid #bacc90;
}
#course .course-list .course-desc {
  width: 75%;
  height: 140px;
  padding: 20px 12px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 2px solid #bacc90;
}
#course .course-list .course-desc:first-of-type {
  border-top: 2px solid #bacc90;
}
#course .course-list .course-desc span {
  display: block;
  width: calc(100% - 10em);
  line-height: 1.5;
}
#course .course-list .course-desc .link {
  position: relative;
  display: block;
  width: 10em;
  padding: 20px 2.5em 20px 1em;
  text-align: right;
  color: #5b7a2a;
  transition: all 150ms 0ms ease;
}
#course .course-list .course-desc .link::after {
  scale: 200% 150%;
  translate: -150% 15%;
  transition: all 150ms 0ms ease;
}
#course .course-list .course-desc .link:hover {
  color: rgba(91, 122, 42, 0.7);
}
#course .course-list .course-desc .link:hover::after {
  opacity: 0.7;
  translate: -125% 15%;
}

@media screen and (max-width: 1200px) {
  #course .course-list {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  #course .course-list .course-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  #course .course-list .course-desc > span {
    display: inline-block;
    width: 100%;
    padding-right: 2em;
  }
  #course .course-list .course-desc > .link {
    display: inline-block;
    width: auto;
    text-align: left;
    padding: 0 2em 0 0;
    line-height: 1.5;
  }
  #course .course-list .course-desc > .link::after {
    scale: 120% 90%;
    translate: -150% -65%;
  }
  #course .course-list .course-desc > .link:hover::after {
    translate: -120% -65%;
  }
  #course .course-list .course-desc br.br-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #course .course-list {
    width: 92%;
    display: block;
  }
  #course .course-list:last-of-type {
    margin-bottom: 0;
  }
  #course .course-list .course-name {
    width: 100%;
    height: auto;
    margin-top: 52px;
    padding: 0 4px;
    display: block;
    text-align: left;
    line-height: 2.2;
    font-size: 2.2rem;
    border-top: none;
    border-bottom-color: rgba(186, 204, 144, 0.4);
  }
  #course .course-list .course-name:first-of-type {
    border-top: none;
  }
  #course .course-list .course-name br.br-pc {
    display: none;
  }
  #course .course-list .course-desc {
    width: 100%;
    height: auto;
    padding: 4px;
    display: flex;
    justify-content: flex-start;
    border: none;
  }
  #course .course-list .course-desc:first-of-type {
    border: none;
  }
  #course .course-list .course-desc span {
    display: inline;
    width: auto;
    margin-top: 0.5em;
    padding-right: 0;
    line-height: 1.6;
  }
  #course .course-list .course-desc .link {
    display: inline-block;
    line-height: 1.6;
  }
  #course .course-list .course-desc .link::after {
    translate: -150% -55%;
  }
}
@media screen and (max-width: 520px) {
  #course {
    background-position: 150% 20%;
  }
  #course .course-list .course-name {
    margin-top: 40px;
    padding-bottom: 6px;
    font-size: 2.8rem;
  }
  #course .course-list .course-desc span,
  #course .course-list .course-desc .link {
    line-height: 1.8;
  }
}
/* --------------------------------
  privilege section
-------------------------------- */
#privilege {
  position: relative;
  background-image: none;
  overflow-x: hidden;
}
#privilege * {
  position: relative;
  z-index: 1;
}
#privilege::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f9ea;
  background-image: url(../img/privilege_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#privilege::after {
  content: "";
  position: absolute;
  top: 32%;
  left: -25%;
  margin: auto;
  z-index: 0;
  width: 1140px;
  height: 64px;
  background-image: url(../img/wave_single.svg);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}
#privilege .privilege-desc {
  line-height: 1.6;
}
#privilege .privilege-desc:first-of-type {
  margin-top: 50px;
}
#privilege .privilege-desc:last-of-type {
  margin-top: 18px;
  margin-bottom: 32px;
}
#privilege .wrapper {
  width: 95%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#privilege .wrapper .reservation-btn {
  position: relative;
  margin-left: 24px;
  padding: 20px 36px 24px 84px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f6f9ea;
  background-color: #ee8a2d;
  border-radius: calc(infinity * 1px);
  transition: all 150ms ease;
}
#privilege .wrapper .reservation-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #f6f9ea;
  border-radius: calc(infinity * 1px);
}
#privilege .wrapper .reservation-btn .fa-arrow-up-right-from-square {
  display: inline-block;
  padding-left: 1em;
}
#privilege .wrapper .reservation-btn:hover {
  background-color: #f2a45c;
}
#privilege .wrapper .annotation {
  line-height: 1.4;
  letter-spacing: 0.03em;
}
#privilege .wrapper .annotation sup {
  font-size: 1.2em;
  vertical-align: baseline;
  margin-inline-end: 0.5em;
}

@media screen and (max-width: 1200px) {
  #privilege::after {
    background-size: 864px;
    background-position: 10% center;
  }
}
@media screen and (max-width: 960px) {
  #privilege::after {
    background-size: 864px;
    background-position: -50% center;
  }
}
@media screen and (max-width: 768px) {
  #privilege::after {
    top: 85%;
    background-size: 691.2px;
    background-position: 100% center;
  }
  #privilege > .container > .inner > .wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #privilege > .container > .inner > .wrapper .reservation-btn {
    margin: 48px auto 0;
    padding: 16px 24px 18px 55px;
    font-size: 2.2rem;
  }
  #privilege > .container > .inner > .wrapper .reservation-btn .fa-arrow-up-right-from-square {
    padding-left: 0.8em;
  }
  #privilege > .container > .inner > .wrapper .annotation {
    margin-left: 0.5em;
    line-height: 1;
  }
}
@media screen and (max-width: 520px) {
  #privilege::after {
    top: 88%;
    background-size: 468px;
    background-position: 0% center;
  }
  #privilege > .container > .inner {
    padding-left: 2vw;
  }
  #privilege > .container > .inner .privilege-desc {
    line-height: 1.8;
  }
  #privilege > .container > .inner .privilege-desc:first-of-type {
    margin-top: 40px;
  }
  #privilege > .container > .inner .privilege-desc:last-of-type {
    margin-bottom: 24px;
  }
  #privilege > .container > .inner .privilege-desc br {
    display: none;
  }
  #privilege > .container > .inner .wrapper .reservation-btn {
    margin: 56px auto 20px;
    padding: 18px 28px 20px 50px;
    font-size: 2.8rem;
  }
}
/* --------------------------------
  family section
-------------------------------- */
#family {
  padding-bottom: 180px;
  background-image: none;
  overflow-x: hidden;
}
#family > .container {
  position: relative;
  height: 400px;
}
#family > .container > .wrapper {
  position: absolute;
  top: 0;
  width: 52.5%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  line-height: 1.6;
  border: 4px solid #a2b777;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  #family > .container > .wrapper {
    border-radius: 19px;
  }
}
@media screen and (max-width: 520px) {
  #family > .container > .wrapper {
    border-radius: 13px;
  }
}
#family > .container > .wrapper:first-of-type {
  top: 0;
  right: 0;
  padding: 30px 36px 30px 80px;
}
#family > .container > .wrapper:last-of-type {
  top: 40px;
  left: 0;
}
#family > .container > .wrapper > .sec-lead {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  letter-spacing: 0;
  color: #5b7a2a;
  margin-bottom: 20px;
  text-decoration-line: underline;
  text-decoration-color: rgba(186, 204, 144, 0.3);
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.25em;
  text-underline-position: above;
}
#family > .container > .wrapper > .sec-lead br.br-pc,
#family > .container > .wrapper > .family-desc br.br-pc {
  display: inline;
}
br.br-nb:not(#family > .container > .wrapper > .sec-lead br.br-pc,
#family > .container > .wrapper > .family-desc br.br-pc) {
  display: none;
}
#family > .container > .wrapper > .userflow-list {
  display: flex;
  justify-content: space-evenly;
  margin: 20px 0;
  gap: 30px;
  color: #5b7a2a;
}
#family > .container > .wrapper > .userflow-list .link {
  position: relative;
  display: block;
  padding: 8px 2em 8px 8px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  color: #5b7a2a;
  transition: all 150ms 0ms ease;
}
#family > .container > .wrapper > .userflow-list .link::after {
  scale: 200% 150%;
  translate: -150% -20%;
  transition: all 150ms 0ms ease;
}
#family > .container > .wrapper > .userflow-list .link:hover {
  color: rgba(91, 122, 42, 0.7);
}
#family > .container > .wrapper > .userflow-list .link:hover::after {
  opacity: 0.7;
  translate: -125% -20%;
}
#family > .container > .wrapper > img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #family > .container > .wrapper > img {
    border-radius: 0 0 15px 15px;
  }
}
@media screen and (max-width: 520px) {
  #family > .container > .wrapper > img {
    border-radius: 0 0 9px 9px;
  }
}

@media screen and (max-width: 1200px) {
  #family > .container > .wrapper {
    aspect-ratio: 5/3;
  }
  #family > .container > .wrapper:last-of-type {
    top: 52px;
    width: 51%;
  }
  #family > .container > .wrapper:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px 0 20px 20px;
  }
  #family > .container > .wrapper > .sec-lead {
    margin-bottom: 16px;
    margin-left: 8px;
    font-size: 2.2rem;
  }
  #family > .container > .wrapper > .family-desc {
    text-align: left;
  }
  #family > .container > .wrapper > .sec-lead br.br-pc,
  #family > .container > .wrapper > .family-desc br.br-pc {
    display: none;
  }
  br.br-nb:not(#family > .container > .wrapper > .sec-lead br.br-pc,
  #family > .container > .wrapper > .family-desc br.br-pc) {
    display: inline;
  }
  #family > .container > .wrapper > .sec-lead br.br-pc.br-nb,
  #family > .container > .wrapper > .family-desc br.br-pc.br-nb {
    display: inline;
  }
  #family > .container > .wrapper > .userflow-list {
    display: flex;
    margin: 16px 0;
  }
  #family > .container > .wrapper > .userflow-list .link {
    padding: 4px 1em 4px 4px;
  }
  #family > .container > .wrapper > .userflow-list .link::after {
    scale: 120% 90%;
    translate: -70% -45%;
  }
  #family > .container > .wrapper > .userflow-list .link:hover::after {
    translate: -45% -45%;
  }
}
@media screen and (max-width: 960px) {
  #family {
    padding-bottom: 100px;
  }
  #family > .container > .wrapper {
    width: 52.5%;
    aspect-ratio: 5/3;
  }
  #family > .container > .wrapper:last-of-type {
    top: 52px;
    width: 44%;
  }
  #family > .container > .wrapper:first-of-type {
    top: 0;
    width: 59%;
    display: flex;
    padding: 30px 0 15px 6px;
  }
}
@media screen and (max-width: 768px) {
  #family {
    padding-bottom: 140px;
  }
  #family > .container {
    position: static;
    width: 70%;
    height: auto;
    display: block;
    border: 4px solid #a2b777;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #family > .container {
    border-radius: 19px;
  }
}
@media screen and (max-width: 768px) {
  #family > .container .wrapper {
    position: static;
    display: block;
    height: auto;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
  }
  #family > .container .wrapper:first-of-type {
    width: 100%;
    padding: 40px 8px;
  }
  #family > .container .wrapper:first-of-type .sec-lead {
    margin: 0 auto 20px;
  }
  #family > .container .wrapper:first-of-type .family-desc {
    padding: 0 5vw;
  }
  #family > .container .wrapper:first-of-type .family-desc br.br-pc {
    display: none;
  }
  #family > .container .wrapper:first-of-type .family-desc br.br-nb {
    display: none;
  }
  #family > .container .wrapper:last-of-type {
    width: 100%;
  }
  #family > .container .wrapper > .family-desc {
    width: 100%;
  }
  #family > .container .wrapper > .userflow-list .link::after {
    translate: -50% -30%;
  }
}
@media screen and (max-width: 520px) {
  #family {
    padding-bottom: 0;
  }
  #family > .container {
    width: 100%;
    border: none;
    margin: 0;
  }
}
@media screen and (max-width: 520px) and (max-width: 520px) {
  #family > .container {
    border-radius: 13px;
  }
}
@media screen and (max-width: 520px) {
  #family > .container > .wrapper:first-of-type {
    padding: 0;
  }
  #family > .container > .wrapper:first-of-type .sec-lead {
    margin: 0 0 32px;
    padding: 0 7.5vw;
    font-size: 2.8rem;
  }
  #family > .container > .wrapper:first-of-type .family-desc {
    padding: 0 7.5vw;
    line-height: 1.8;
  }
  #family > .container > .wrapper:first-of-type .userflow-list {
    display: block;
    margin: 32px 0;
  }
  #family > .container > .wrapper:first-of-type .userflow-list .link {
    margin: 32px 0;
    padding: 4px 2em 4px 4px;
  }
  #family > .container > .wrapper:first-of-type .userflow-list .link::after {
    translate: -150% -45%;
  }
  #family > .container > .wrapper:last-of-type > img {
    border-radius: 0;
  }
}/*# sourceMappingURL=style.css.map */