@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #fefefe;
  color: #46403B;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", "YakuHanJP", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
  color: #B0C4DE;
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(176, 196, 222, 0.35);
  outline-offset: 2px;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
}

h1 {
  font-size: 35px;
  font-size: 3.5rem;
}

h2 {
  font-size: 40px;
  font-size: 4rem;
}

h3 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.7;
}
h3.caption {
  font-size: 2.2rem;
}

h4 {
  font-size: 22px;
  font-size: 2.2rem;
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

.smaller {
  font-size: 0.7em;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #46403B;
  margin: 0;
  opacity: 0.4;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 40px;
}
#header #logo {
  width: 120px;
}
#header #logo .logo-black {
  display: none;
}

.sub-page #header {
  position: initial;
}
.sub-page #header #logo .logo-white {
  display: none;
}
.sub-page #header #logo .logo-black {
  display: block;
}

.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

#header_nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
#header_nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #FEFEFE;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
  text-align: center;
}
#header_nav a span {
  display: block;
  font-size: 1.2rem;
}
#header_nav a:hover {
  opacity: 0.85;
}
#header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after {
  transform: scaleX(1);
}
#header_nav.hover-circle a::after {
  display: none;
}
#header_nav.hover-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #46403B;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  opacity: 0;
  transition: all 0.5s ease;
}
#header_nav.hover-circle a:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.1;
}
#header_nav.hover-circle a.active::before {
  opacity: 0.1;
}

.sub-page #header_nav a {
  color: #2A4465;
}

.sub-page .contact_btn a.reserve {
  color: #2A4465;
  border: 1px solid #2A4465;
}
.sub-page .contact_btn img {
  filter: brightness(0.3);
}

.sp-btn {
  display: none;
}

#nav-toggle,
#sp-nav {
  display: none;
}

#footer {
  position: relative;
  background: #2A4465;
  color: #FEFEFE;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
#footer .inner .footer-left {
  width: fit-content;
}
#footer .inner .footer-right {
  width: fit-content;
}
#footer .link-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1.8rem;
}
#footer .link-list li a {
  color: #FEFEFE;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 5px;
}
#footer .link-list li a:hover {
  opacity: 0.6;
}
#footer .link-list li a .sub {
  font-size: 1.6rem;
}

.footer-contact a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FEFEFE;
  padding: 180px 120px;
}
.footer-contact a:hover .img::before {
  opacity: 0.8;
}
.footer-contact a:hover .img img {
  transform: scale(1.05);
}
.footer-contact .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
.footer-contact .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.footer-contact .img::before {
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2A4465;
  z-index: 1;
  opacity: 0.6;
}
.footer-contact h2 {
  line-height: 1;
}
.footer-contact h2 span {
  display: block;
}
.footer-contact h2 .en {
  font-size: 8rem;
}
.footer-contact h2 .ja {
  font-size: 2rem;
}

.flogo {
  margin-bottom: 20px;
  width: 150px;
}

.copyright {
  opacity: 0.6;
  display: flex;
}

.footer_navi {
  position: relative;
}
.footer_navi ul {
  display: flex;
  flex-direction: column;
}
.footer_navi ul li a {
  position: relative;
  display: inline-block;
  color: #FEFEFE;
  padding: 4px 0;
  font-size: 1.4rem;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #B0C4DE;
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0.9;
}
.footer_navi ul li a:hover::after, .footer_navi ul li a:focus-visible::after, .footer_navi ul li a.is-current::after, .footer_navi ul li a[aria-current=page]::after {
  transform: translateX(-50%) scaleX(1);
}
.footer_navi ul li a:hover {
  opacity: 0.95;
}

#page-title {
  border-bottom: 1px solid #2A4465;
}
#page-title .inner {
  padding: 40px 80px 120px;
}
#page-title .inner .title,
#page-title .inner .text {
  margin-bottom: 80px;
  color: #2A4465;
}
#page-title .inner .title span,
#page-title .inner .text span {
  display: block;
}
#page-title .inner .title .ja::before,
#page-title .inner .text .ja::before {
  display: none;
}
#page-title .inner img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}

.contact_btn {
  display: flex;
  align-items: center;
  gap: 32px;
}
.contact_btn a {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #FEFEFE;
  border-radius: 90px;
  padding: 8px 24px;
  font-weight: 700;
  min-width: 220px;
}
.contact_btn a:hover {
  opacity: 0.6;
}
.contact_btn a.icon_link {
  min-width: auto;
  border-radius: 50%;
  padding: 8px;
}
.contact_btn a.reserve {
  aspect-ratio: initial;
  padding: 10px 24px;
  border: 1px solid #FEFEFE;
  min-width: 220px;
  border-radius: 0;
}
.contact_btn img {
  inline-size: 24px;
  block-size: 24px;
  object-fit: contain;
}
.contact_btn.column {
  flex-direction: column;
  align-items: flex-start;
}
.contact_btn.dark a,
.contact_btn.dark p:nth-child(2) a {
  background: #FEFEFE;
  border: 1px solid #46403B;
  color: #46403B;
}
.contact_btn.dark a img,
.contact_btn.dark p:nth-child(2) a img {
  filter: invert(1);
}
.contact_btn .big {
  width: 100%;
  text-align: center;
}
.contact_btn .big a {
  max-width: 320px;
  margin-inline: auto;
}

.contact_icon {
  width: 30px;
}

#form {
  background: rgba(254, 254, 254, 0.6);
  padding: 40px;
}
#form .form-contents {
  padding: 0px !important;
  background: transparent !important;
  max-width: 600px !important;
}
#form dl {
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
}
#form dl dt,
#form dl dd {
  width: 100%;
  padding-left: 0 !important;
}
#form dl dt:not(.pattern-exclusion) span.required::before {
  background: #B0C4DE !important;
  border-radius: 30px;
  padding: 5px 10px !important;
  font-size: 13px !important;
}
#form dl dd:not(.pattern-exclusion) {
  border-bottom: none !important;
  padding-bottom: 10px !important;
  padding-top: 10px !important;
}
#form dl dd:not(.pattern-exclusion) input.textarea {
  height: 52px !important;
  padding: 20px !important;
}
#form dl dd:not(.pattern-exclusion) .textarea {
  padding: 20px !important;
}
#form .submit-btn {
  background: #B0C4DE !important;
  color: #FEFEFE !important;
  border: 1px solid #B0C4DE !important;
  border-radius: 0 !important;
  font-family: "Noto Serif JP", "YakuHanJP", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
#form .submit-btn:hover {
  opacity: 0.8 !important;
}

.container {
  --container-max: 1200px;
  --container-pb: 80px;
  --container-pi: 60px;
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--base {
  --container-max: 1200px;
}
.container--wide {
  --container-max: 1400px;
}
.container--full {
  --container-max: 100vw;
}
.container--p-xl {
  --container-pb: 120px;
  --container-pi: 0;
}
.container--p-l {
  --container-pb: 80px;
  --container-pi: 0;
}
.container--p-m {
  --container-pb: 60px;
  --container-pi: 0;
}
.container--p-s {
  --container-pb: 40px;
  --container-pi: 0;
}
.container--full {
  padding-left: 0;
  padding-right: 0;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}

.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
  padding: clamp(16px, 4vw, 30px);
}
.box--bwidth {
  max-width: 1200px;
  margin-inline: auto;
}
.box--small {
  max-width: 1100px;
  margin-inline: auto;
}
.box--small2 {
  max-width: 1000px;
  margin-inline: auto;
}
.box--small3 {
  max-width: 900px;
  margin-inline: auto;
}
.box--small4 {
  max-width: 800px;
  margin-inline: auto;
}
.box--small5 {
  max-width: 700px;
  margin-inline: auto;
}
.box--content-fit {
  display: grid;
  place-items: center;
}
.box--content-fit > * {
  inline-size: min(100%, var(--inner-max, max-content));
}
.box--content-fit img {
  max-inline-size: 100%;
}
.box--pd60 {
  padding: clamp(30px, 4vw, 60px);
}
.box--pd-30-60 {
  padding: 30px 60px;
}
.box--bd {
  border: 1px solid #B0C4DE;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}
.box--more .more-btn {
  display: block;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #B0C4DE;
  background: rgba(176, 196, 222, 0.06);
  color: #B0C4DE;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.box--more .more-btn:hover {
  background: rgba(176, 196, 222, 0.12);
}
.box--more .more-btn:focus-visible {
  outline: 2px solid rgb(247.9464285714, 249.7321428571, 252.0535714286);
  outline-offset: 2px;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch;
  justify-content: flex-start;
}
.l-column > li,
.l-column .col-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
}
.l-column > li > *:first-child,
.l-column .col-item > *:first-child {
  margin-top: 0;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
.l-column.col5 {
  --cols: 5;
}
.l-column.gap10 {
  --gap: 10px;
}
.l-column.gap15 {
  --gap: 15px;
}
.l-column.gap20 {
  --gap: 20px;
}
.l-column.gap30 {
  --gap: 30px;
}
.l-column.gap40 {
  --gap: 40px;
}
.l-column.gap50 {
  --gap: 50px;
}

.mv {
  position: relative;
}
.mv .mv-img {
  position: relative;
}
.mv .mv-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #73645E;
  opacity: 0.45;
}
.mv .mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .catch {
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 10;
  color: #FEFEFE;
}
.mv .catch h1 {
  font-weight: 400;
  font-size: 6.5rem;
  margin-bottom: 74px;
}
.mv .catch p {
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1.5;
}

.title {
  margin: 0 0 60px;
  position: relative;
  line-height: 1;
}
.title .en {
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
  display: block;
  color: #B0C4DE;
  font-size: 8rem;
}
.title .ja {
  position: relative;
  font-size: 2rem;
}
.title--m0 {
  margin-bottom: 0;
}
.title--slim {
  margin: 0 auto 20px;
}
.title--left {
  margin-left: 0;
}
.title--slash {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title--slash::before, .title--slash::after {
  width: 2px;
  height: 30px;
  background-color: #B0C4DE;
  content: "";
}
.title--slash::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}
.title--slash::after {
  transform: rotate(35deg);
  margin-left: 30px;
}
.title--bgbar {
  display: flex;
  align-items: center;
  padding: 0.3em 0.7em;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  font-size: 2rem;
}
.title--bgbar::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #B0C4DE;
  content: "";
}
.title--num {
  position: relative;
  padding-top: 1.5em;
  padding-left: 1em;
}
.title--num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: #B0C4DE;
  font-size: 3em;
  line-height: 1;
  content: attr(data-number);
  pointer-events: none;
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
  opacity: 0.5;
}
.title--border {
  border-top: 1px solid #46403B;
  border-bottom: 1px solid #46403B;
  padding: 10px;
  width: 100%;
}

.title-quote {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  width: fit-content;
}
.title-quote::before {
  content: "”";
  position: absolute;
  top: -16px;
  right: 0;
  font-size: 5.6rem;
  color: #B0C4DE;
  font-family: Georgia, serif;
  line-height: 1;
  transform: translateY(20px);
}
.title-quote::after {
  content: "“";
  position: absolute;
  bottom: -32px;
  left: 0;
  font-size: 5.6rem;
  color: #B0C4DE;
  font-family: Georgia, serif;
  line-height: 1;
}
.title-quote p {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2A4465;
  line-height: 1.7;
  font-family: "Noto Serif JP", "YakuHanJP", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.btn {
  text-align: center;
}
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #FEFEFE;
  background: #4B6C93;
  border: 1px solid #4B6C93;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 800;
  min-width: 240px;
  text-align: center;
  justify-content: center;
  max-width: 240px;
}
.btn a .ja {
  font-size: "Noto Serif JP", "YakuHanJP", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.btn a:hover {
  opacity: 0.6;
}
.btn.slim {
  margin-top: 20px;
}
.btn--left {
  text-align: left;
}
.btn--mini a {
  max-width: 200px;
  min-width: 200px;
}
.btn--primary a {
  background: #B0C4DE;
  color: #FEFEFE;
  border-color: #B0C4DE;
}
.btn--outline a {
  background: #FEFEFE;
  color: #4B6C93;
  border-color: #4B6C93;
}
.btn--ghost a {
  background: transparent;
  border-color: transparent;
  color: #B0C4DE;
}
.btn--square a {
  border-radius: 0;
  background: transparent;
  border: 1px solid #2A4465;
}
.btn--square a:hover {
  background: rgba(254, 254, 254, 0.6);
}
.btn--color2 a {
  background: #2A4465;
  color: #FEFEFE;
}

.card {
  height: 100%;
  display: flex;
  background: #FEFEFE;
  border-radius: 16px;
  overflow: hidden;
  gap: 20px;
  padding: 32px;
}
.card__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  width: 200px;
}
.card__img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card__img img,
.card__img picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__body .btn {
  text-align: left;
}
.card__title {
  font-size: 2rem;
}
.card__text {
  font-size: 0.9em;
}
.card--ratio-4x3 .card__img::before {
  padding-top: 75%;
}
.card--ratio-3x2 .card__img::before {
  padding-top: 66.6667%;
}
.card--ratio-1x1 .card__img::before {
  padding-top: 100%;
}
.card--ratio-21x9 .card__img::before {
  padding-top: 42.8571%;
}

.l-column > li,
.l-column .col-item {
  display: flex;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
}

.news-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-inline: auto;
}
.news-list li {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
  border-bottom: 1px solid #2A4465;
}
.news-list .date {
  font-size: 2rem;
}
.news-list .ttl {
  font-size: 1.8rem;
}

.news-pager {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.news-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 4px 20px;
  border: 1px solid #2A4465;
  cursor: pointer;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-list li {
  width: calc((100% - 20px) / 2);
}
.blog-list li a {
  display: flex;
  gap: 24px;
  padding: 20px;
  border: 1px solid #2A4465;
}
.blog-list li a:hover {
  background: rgba(255, 255, 255, 0.6);
}
.blog-list .img {
  flex: 0 0 240px;
}
.blog-list .img img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.blog-list .text {
  flex: 1 1 auto;
}
.blog-list .text .ttl {
  font-size: 2.4rem;
  font-weight: 700;
}
.blog-list .text .detail {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog-detail {
  background: rgba(255, 255, 255, 0.6);
  padding: 40px;
}
.blog-detail__title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2A4465;
}
.blog-detail__pager {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #2A4465;
  text-align: center;
}
.blog-detail__pager a {
  padding: 8px 32px;
  border: 1px solid #2A4465;
  background: #2A4465;
  color: #FEFEFE;
  font-size: 0.8em;
}
.blog-detail__pager a:hover {
  background: #FEFEFE;
  color: #2A4465;
}
.media {
  display: grid;
  grid-template-columns: var(--media-img, 120px) 1fr;
  gap: var(--media-gap, 100px);
}
.media__img {
  inline-size: 100%;
  block-size: 100%;
}
.media__img img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}
.media__body {
  line-height: 1.8;
}
.media--sm {
  --media-img: 80px;
}
.media--md {
  --media-img: 120px;
}
.media--lg {
  --media-img: 180px;
}
.media--xl {
  --media-img: 240px;
}
.media--2xl {
  --media-img: 360px;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #B0C4DE;
}
.alert--success {
  background: #f0faf2;
  border-color: #c9e7ce;
  color: #1a7f3a;
}
.alert--warning {
  background: #fff8e6;
  border-color: #ffe1a5;
  color: #8a5b00;
}
.alert--danger {
  background: #fff1f1;
  border-color: #ffc7c7;
  color: #a52b2b;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
}

.badge--accent {
  background: #B0C4DE;
  color: #FEFEFE;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: m #B0C4DE;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tabs__btn {
  width: 48%;
  padding: 16px 24px;
  border-radius: 8px 8px 0 0;
  background: #B0C4DE;
  color: #FEFEFE;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}
.tabs__btn.is-active {
  background: #FEFEFE;
  color: #B0C4DE;
  border: 2px solid #B0C4DE;
  border-bottom: none;
}
.tabs__panel {
  display: none;
  background: #FEFEFE;
  border-radius: 8px;
}
.tabs__panel.is-active {
  display: block;
  padding: 40px;
}

.contents-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
.contents-nav > li a {
  background: #B0C4DE;
  color: #FEFEFE;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 240px;
  display: block;
  text-align: center;
  border: 1px solid #B0C4DE;
}
.contents-nav > li a:hover {
  color: #B0C4DE;
  background: #FEFEFE;
}
.contents-nav > li:nth-child(2) a {
  background: #B0C4DE;
  border: 1px solid #B0C4DE;
}
.contents-nav > li:nth-child(2) a:hover {
  color: #B0C4DE;
  background: #FEFEFE;
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #46403B;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.list--disc li {
  position: relative;
  font-size: 1.8rem;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li::before {
  content: "●";
  color: #B0C4DE;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li::before {
  color: #B0C4DE;
}
.list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.list--inline li {
  display: inline-block;
  background: rgba(254, 254, 254, 0.6);
  padding: 5px 16px;
  text-align: center;
  text-indent: initial !important;
  padding-left: 16px !important;
  font-size: 0.9em;
}
.list--check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--check li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
}
.list--check li:not(:last-of-type) {
  margin-bottom: 6px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #B0C4DE;
  border-bottom: 2px solid #B0C4DE;
  transform: rotate(-45deg);
}
.list--check.sbc li::before {
  border-color: #B0C4DE;
}
.list--num li figure {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.list--num li figure::before {
  content: "";
  position: absolute;
  right: -1em;
  top: -1.5em;
  width: 5em;
  height: 5em;
}
.list--num li:nth-child(1) figure::before {
  background: url(../img/01.png) no-repeat center/contain;
}
.list--num li:nth-child(2) figure::before {
  background: url(../img/02.png) no-repeat center/contain;
}
.list--num li:nth-child(3) figure::before {
  background: url(../img/03.png) no-repeat center/contain;
}
.list li {
  text-indent: -1em;
  padding-left: 1em;
}

.tbl {
  width: 100%;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 4px 2px;
}
.tbl tr th,
.tbl tr td {
  padding: 10px 15px;
}
.tbl tr th {
  font-weight: 600;
  width: 30%;
  text-align: center;
  background: #B0C4DE;
  color: #FEFEFE;
}
.tbl tr td {
  background: #FEFEFE;
}
.tbl:not(.tbl--hours) tr > th {
  width: 30%;
}
.tbl--alternating {
  border-collapse: collapse;
}
.tbl--alternating tr {
  background: #B0C4DE;
}
.tbl--alternating tr:nth-child(odd) {
  background: #FEFEFE;
}
.tbl--alternating tr th,
.tbl--alternating tr td {
  background: transparent;
  color: #46403B;
}
.tbl {
  /* ボーダー */
}
.tbl--border {
  border-collapse: collapse;
}
.tbl--border tr th,
.tbl--border tr td {
  border-bottom: 2px solid #ddd;
  background: transparent;
}
.tbl--border tr th {
  border-bottom: 2px solid #B0C4DE;
  color: #46403B;
}
.tbl--bubble {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.tbl--bubble tr th,
.tbl--bubble tr td {
  background: #FEFEFE;
  border-radius: 0 8px 8px 0;
}
.tbl--bubble tr td {
  padding-left: 24px;
}
.tbl--bubble tr th {
  background-color: #B0C4DE;
  color: #fff;
  border-radius: 8px 0 0 8px;
  position: relative;
  vertical-align: middle;
}
.tbl--bubble tr th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #B0C4DE;
  z-index: 2;
}
.tbl--hours {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl--hours col.col-time {
  width: 11.5rem;
}
@media (max-width: 600px) {
  .tbl--hours col.col-time {
    width: 9.5rem;
  }
}
.tbl--hours tr th,
.tbl--hours tr td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.tbl--hours tr th {
  width: auto;
}
.tbl--hours thead th {
  background: #B0C4DE;
  font-weight: 700;
  color: #fff;
}
.tbl--hours thead th:first-child {
  text-align: center;
}
.tbl--hours .nowrap {
  white-space: nowrap;
}
.tbl--hours tbody th {
  text-align: center;
  white-space: nowrap;
  background: #fff;
  font-weight: 700;
  color: #46403B;
  width: auto;
}
.tbl--hours tbody td {
  position: relative;
}
.tbl--hours tbody td .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tbl--hours tbody td[data-open=true]::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #B0C4DE;
}
.tbl--hours tbody td[data-open=false]::before {
  content: "—";
  font-size: 14px;
  line-height: 1;
  opacity: 0.45;
}
.tbl--price tr td {
  border-bottom: 1px solid #ddd;
}
.tbl--price tr th,
.tbl--price tr td {
  vertical-align: middle;
}
.tbl--price tr th {
  width: 40% !important;
}

/* モバイルで詰まりそうなら */
@media (max-width: 480px) {
  .hours__row {
    grid-template-columns: 6em 1fr;
    gap: 8px;
  }
  .tbl--hours th,
  .tbl--hours td {
    padding: 12px 8px;
  }
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.accordion {
  position: relative;
  overflow: hidden;
}
.accordion > .ttl {
  position: relative;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  border: 1px solid #2A4465;
  padding-right: 40px;
  background: rgba(254, 254, 254, 0.6);
}
.accordion > .ttl::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: linear-gradient(#000, #000) center/100% 2px no-repeat, linear-gradient(#000, #000) center/2px 100% no-repeat;
  transition: transform 0.25s ease;
}
.accordion.is-open > .ttl::after {
  transform: translateY(-50%) rotate(90deg);
}
.accordion.is-open .ttl {
  background: #FEFEFE;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion.is-open > .inner {
  max-height: 2000px;
  opacity: 1;
  padding: 12px 16px;
}
.accordion.faq {
  border-color: #B0C4DE;
}
.accordion.faq > .ttl {
  padding: 16px;
  padding-left: 4em;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  border: 1px solid #efefef;
}
.accordion.faq > .ttl::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #B0C4DE;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.accordion.faq > .ttl::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  inline-size: 10px;
  block-size: 10px;
  border-right: 2px solid #B0C4DE;
  border-bottom: 2px solid #B0C4DE;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}
.accordion.faq > .ttl:hover {
  background: #fff;
}
.accordion.faq > .inner {
  position: relative;
  margin: 8px 0;
}
.accordion.faq > .inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 1em;
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  background: #B0C4DE;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.accordion.faq > .inner p {
  margin: 0;
  padding-left: 3em;
  padding-right: 2em;
  line-height: 1.8;
}
.accordion.faq.is-open > .ttl::after {
  transform: translateY(-50%) rotate(-135deg);
}
.accordion.faq.is-open > .inner {
  padding: 8px 16px;
}
.accordion.faq.is-open > .inner::before {
  opacity: 1;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #46403B;
  font-weight: 700;
}
.pagination .is-current {
  background: #B0C4DE;
  color: #FEFEFE;
  border-color: #B0C4DE;
}

.ggmap iframe {
  height: 350px;
  width: 100%;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.b-m120 {
  margin-bottom: 120px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.en {
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color01 {
  color: #B0C4DE;
}

.color02 {
  color: #B0C4DE;
}

.color-w {
  color: #FEFEFE !important;
}

.bg_line {
  background: #219d01 !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg_line {
  background: #219d01 !important;
}

.bg_youtube {
  background: #ff0000 !important;
}

.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg--img01::after {
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  opacity: 0.3;
}
.bg--img02::after {
  background: url(../img/bg-02.jpg) no-repeat center/cover;
  opacity: 0.4;
}
.bg--round {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  overflow: hidden;
}
.bg--beige::after {
  background: #E4DED6;
}
.bg--white::after {
  background: rgba(255, 255, 255, 0.4);
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #fefefe;
}

.bg--main {
  background: #B0C4DE;
}

.bg--sub {
  background: #B0C4DE;
}

.bg--sub2 {
  background: #B0C4DE;
}

.bg--gray {
  background: #f5f5f5;
}

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: fit-content;
}
.u-decor img {
  display: block;
  inline-size: 100%;
  height: auto;
}
.u-decor--left {
  left: clamp(8px, 4vw, 40px);
  top: 20%;
}
.u-decor--right {
  right: clamp(8px, 4vw, 40px);
  bottom: 20%;
}
.u-decor.w150 img {
  width: 150px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.marker {
  background: linear-gradient(transparent 70%, rgba(255, 147, 109, 0.3) 0%);
  display: inline;
  border-radius: 2px;
  padding: 0 0.1em;
}

.text-link a {
  color: #B0C4DE;
  text-decoration: underline;
}
.text-link.white a {
  color: #FEFEFE;
}

.shadow {
  box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, 0.15);
}

.shadow-md {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tcenter_sp {
  text-align: center;
}

[data-ani] {
  --a-duration: 3.8s;
  --a-delay: 0s;
  --a-distance: 32px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* フェード（指定がある時だけ透明スタート） */
[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

[data-ani*=rotate]:not(.is-visible) {
  transform: rotate(2.5deg);
}

.ani-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.ani-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--a-ease) var(--a-delay), transform 0.6s var(--a-ease) var(--a-delay);
}

.ani-stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--a-delay, 0s) + 0s);
}

.ani-stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--a-delay, 0s) + 0.06s);
}

.ani-stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--a-delay, 0s) + 0.12s);
}

.ani-stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--a-delay, 0s) + 0.18s);
}

.ani-stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--a-delay, 0s) + 0.24s);
}

.ani-stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--a-delay, 0s) + 0.3s);
}

.ani-stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--a-delay, 0s) + 0.36s);
}

.ani-stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--a-delay, 0s) + 0.42s);
}

.ani-stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--a-delay, 0s) + 0.48s);
}

.ani-stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--a-delay, 0s) + 0.54s);
}

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
[data-fx] {
  --fx-duration: 6s;
  --fx-delay: 0s;
  --fx-amp: 8px;
  /* 振幅(px) */
  --fx-rot: 3deg;
  /* 回転幅 */
  --fx-ease: ease-in-out;
  --fx-iter: infinite;
  --fx-dir: normal;
  --fx-fill: both;
  display: inline-block;
  will-change: transform, filter;
  animation-delay: var(--fx-delay);
  animation-iteration-count: var(--fx-iter);
  animation-direction: var(--fx-dir);
  animation-fill-mode: var(--fx-fill);
  animation-timing-function: var(--fx-ease);
}

/* ふわふわ(上下) */
[data-fx*=float] {
  animation-name: fx-float-y;
  animation-duration: var(--fx-duration);
}

@keyframes fx-float-y {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateY(var(--fx-amp));
  }
}
/* 横ゆらゆら */
[data-fx*=float][data-fx*=x],
[data-fx*=sway][data-fx*=x] {
  animation-name: fx-float-x;
}

@keyframes fx-float-x {
  0% {
    transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateX(var(--fx-amp));
  }
}
/* なめらかスウェイ（回転＋上下少し） */
[data-fx*=sway] {
  animation-name: fx-sway;
  transform-origin: center;
  animation-duration: var(--fx-duration);
}

@keyframes fx-sway {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}
/* なめらかスウェイ反転（回転＋上下少し） */
[data-fx*=sway-rev] {
  animation-name: fx-sway-rev;
}

@keyframes fx-sway-rev {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}
/* 振り子（支点を上に） */
[data-fx*=pendulum] {
  transform-origin: top center;
  animation-name: fx-pendulum;
}

@keyframes fx-pendulum {
  0% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: rotate(var(--fx-rot));
  }
  100% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
}
/* くるくる（連続回転） */
[data-fx*=spin] {
  animation-name: fx-spin;
  animation-duration: calc(var(--fx-duration) * 1.2);
  animation-timing-function: linear;
}

@keyframes fx-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ぷかぷか + ちょい拡縮 */
[data-fx*=float][data-fx*=soft],
[data-fx*=float][data-fx*=gentle] {
  animation-name: fx-float-soft;
}

@keyframes fx-float-soft {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    transform: translateY(var(--fx-amp)) scale(1.005);
  }
}
/* 小刻みゆれ（やわらか） */
[data-fx*=wiggle] {
  animation-name: fx-wiggle;
  animation-duration: calc(var(--fx-duration) * 0.6);
}

@keyframes fx-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 速さ */
[data-fx*=fast] {
  animation-duration: calc(var(--fx-duration) * 0.3);
}

[data-fx*=slow] {
  animation-duration: calc(var(--fx-duration) * 1.6);
}

[data-fx*=slower] {
  animation-duration: calc(var(--fx-duration) * 2.2);
}

/* 振幅 */
[data-fx*=sm] {
  --fx-amp: 6px;
  --fx-rot: 2deg;
}

[data-fx*=md] {
  --fx-amp: 10px;
  --fx-rot: 3deg;
}

[data-fx*=lg] {
  --fx-amp: 16px;
  --fx-rot: 5deg;
}

/* 方向／挙動 */
[data-fx*=alternate] {
  animation-direction: alternate;
}

/* デフォの往復を明示したい時 */
[data-fx*=reverse] {
  --fx-dir: reverse;
}

/* 回転の反転などに */
[data-fx*=pause-hover]:hover {
  animation-play-state: paused;
}

/* 親が見えたら動かす（入場後に発動させたい場合） */
.is-visible [data-fx-start=visible] {
  animation-play-state: running;
}

[data-fx-start=visible] {
  animation-play-state: paused;
}

/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    animation: none !important;
    transform: none !important;
  }
}
.img-switch {
  position: relative;
  overflow: hidden;
}
.img-switch img {
  display: block;
  width: 100%;
  height: auto;
}
.img-switch__base, .img-switch__hover {
  transition: opacity 0.6s ease, transform 0.8s ease;
}
.img-switch__base {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.img-switch__hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-switch:hover .img-switch__base {
  opacity: 0;
  transform: scale(1.03);
}
.img-switch:hover .img-switch__hover {
  opacity: 1;
  transform: scale(1.03);
}

.lp-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 75vh;
}
.lp-mv .fv-sp {
  display: none;
}
.lp-mv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/lp-fv-bg.jpg) no-repeat center/cover;
  z-index: -1;
}
.lp-mv__models {
  inset: 0;
  pointer-events: none;
}
.lp-mv__models img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lp-mv__catch {
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 10;
  width: 360px;
}
.lp-mv__brand {
  font-family: "Nixie One", sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: #2A4465;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.lp-mv__tagline {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
}
.lp-mv__sub {
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 400;
}
.lp-mv__btn {
  display: inline-block;
  padding: 8px 32px;
  border-radius: 60px;
  border: 1.5px solid #4B6C93;
  background: #fff;
  color: #4B6C93;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  transition: background 0.2s, color 0.2s;
}
.lp-mv__btn:hover {
  background: #4B6C93;
  color: #FEFEFE;
}
@media (max-width: 720px) {
  .lp-mv {
    aspect-ratio: auto;
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
  }
  .lp-mv .lp-mv__brand {
    font-size: 3.5rem;
  }
  .lp-mv .lp-mv__tagline {
    font-size: 1.6rem;
  }
  .lp-mv .lp-mv__sub {
    font-size: 1.4rem;
  }
  .lp-mv .lp-mv__models img {
    object-fit: contain;
  }
  .lp-mv .fv-pc {
    display: none;
  }
  .lp-mv .fv-sp {
    display: block;
  }
  .lp-mv__catch {
    position: initial;
    transform: none;
  }
}

.lp-sec-ttl {
  margin-bottom: 60px;
}
.lp-sec-ttl .en {
  display: block;
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: #46403B;
  line-height: 1;
  margin-bottom: 12px;
}
.lp-sec-ttl .ja {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: rgba(176, 196, 222, 0.5);
}
.lp-sec-ttl--rule {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lp-sec-ttl--rule::before, .lp-sec-ttl--rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #46403B;
}
.lp-sec-ttl--rule .en {
  font-size: 4rem;
  white-space: nowrap;
  margin-bottom: 0;
}
@media (max-width: 440px) {
  .lp-sec-ttl {
    margin-bottom: 30px;
  }
  .lp-sec-ttl--rule .en {
    font-size: 2.6rem;
  }
}

.lp-onoff {
  display: flex;
  align-items: center;
  gap: 60px;
}
.lp-onoff__photos {
  position: relative;
  width: 55%;
  display: flex;
}
.lp-onoff__item {
  width: 50%;
}
.lp-onoff__item img {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.lp-onoff__item--on {
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  margin-top: 40px;
}
.lp-onoff__item--off {
  clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
  margin-left: -100px;
  margin-left: -60px;
}
.lp-onoff__mode {
  position: absolute;
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  z-index: 10;
  letter-spacing: -0.02em;
}
.lp-onoff__mode--on {
  top: 0;
  left: -20px;
  color: #4B6C93;
}
.lp-onoff__mode--off {
  bottom: -40px;
  right: 20px;
  color: transparent;
  -webkit-text-stroke: 2px #4B6C93;
}
.lp-onoff__body {
  flex: 1;
}
.lp-onoff__txt {
  padding-top: 16px;
}
.lp-onoff__txt p {
  color: #46403B;
}
.lp-onoff__txt p + p {
  margin-top: 20px;
}
@media (max-width: 720px) {
  .lp-onoff {
    flex-direction: column;
  }
  .lp-onoff__photos {
    width: 100%;
    justify-content: center;
  }
  .lp-onoff__body {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .lp-onoff__item {
    width: 55%;
  }
  .lp-onoff__item--off {
    margin-left: -30px;
  }
  .lp-onoff__item--on {
    margin-top: 0;
  }
  .lp-onoff__mode {
    font-size: 4.5rem;
  }
  .lp-onoff__mode--on {
    top: -20px;
    left: 10px;
  }
  .lp-onoff__mode--off {
    bottom: -20px;
    right: 10px;
  }
}

.lp-sec-rule {
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.lp-sec-rule span {
  flex: 1;
  height: 1px;
  background: #46403B;
}
.lp-sec-rule::before, .lp-sec-rule::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #46403B;
  flex-shrink: 0;
}
@media (max-width: 440px) {
  .lp-sec-rule {
    padding: 0;
  }
}

.lp-point-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px 0;
}
@media (max-width: 440px) {
  .lp-point-list {
    gap: 20px;
    padding: 0;
  }
}

.lp-point {
  width: calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
}
.lp-point:nth-of-type(1)::before {
  content: "";
  position: absolute;
  bottom: 15%;
  left: -40px;
  width: 200px;
  height: 50px;
  background: url(../img/nami-deco.svg) no-repeat center/contain;
}
.lp-point:nth-of-type(3)::before {
  content: "";
  position: absolute;
  bottom: 40%;
  left: -80px;
  width: 200px;
  height: 50px;
  background: url(../img/nami-deco.svg) no-repeat center/contain;
}
.lp-point__badge {
  display: inline-flex;
  align-items: center;
}
.lp-point__ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #46403B;
  margin-bottom: 14px;
  line-height: 1.4;
}
.lp-point__txt {
  color: #46403B;
}
.lp-point__img {
  width: 100%;
  overflow: hidden;
}
.lp-point__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s;
}
.lp-point__img:hover img {
  transform: scale(1.04);
}
@media (max-width: 720px) {
  .lp-point {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .lp-point__badge {
    max-width: 120px;
  }
  .lp-point__ttl {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}

.lp-point-section {
  background: #fff;
  padding: 60px 0;
}
.lp-point-section .lp-sec-rule {
  margin-bottom: 0;
}

.lp-scene__item {
  display: flex;
  align-items: center;
}
.lp-scene__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.lp-scene__item:nth-child(1n) .img {
  margin-left: -60px;
}
.lp-scene__item:nth-child(1) .img {
  position: relative;
}
.lp-scene__item:nth-child(1) .img::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 30%;
  width: 500px;
  height: 250px;
  background: url(../img/scene-deco01.png) no-repeat center/contain;
  z-index: -1;
}
.lp-scene__item:nth-child(2) .img {
  position: relative;
}
.lp-scene__item:nth-child(2) .img::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: 30%;
  width: 500px;
  height: 250px;
  background: url(../img/scene-deco02.png) no-repeat center/contain;
  z-index: -1;
}
.lp-scene__item:nth-child(3) .img {
  position: relative;
}
.lp-scene__item:nth-child(3) .img::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -50px;
  width: 500px;
  height: 250px;
  background: url(../img/scene-deco03.png) no-repeat center/contain;
  z-index: -1;
}
.lp-scene__item:nth-child(2), .lp-scene__item:nth-child(3) {
  margin-top: -40px;
}
.lp-scene__item .img {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  width: 50%;
}
.lp-scene__item .img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lp-scene__item .body {
  padding: 24px 0;
  width: 50%;
}
.lp-scene__item .body .inner {
  padding-left: 60px;
}
.lp-scene__item .scene-label {
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  color: #FEFEFE;
  background: #B0C4DE;
  margin-bottom: 8px;
  display: block;
  padding-left: 20px;
  font-weight: 900;
  position: relative;
  margin-bottom: 30px;
  z-index: -1;
}
.lp-scene__item .scene-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 100%;
  height: 1px;
  background: #B0C4DE;
}
.lp-scene__item .scene-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: #B0C4DE;
}
.lp-scene__item .scene-ttl {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.lp-scene__item .scene-txt {
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .lp-scene__item:nth-child(1n) .img {
    margin-left: 0;
  }
  .lp-scene__item:nth-child(2), .lp-scene__item:nth-child(3) {
    margin-top: 0;
  }
}
@media (max-width: 720px) {
  .lp-scene__item {
    flex-direction: column;
  }
  .lp-scene__item:nth-child(2n) {
    flex-direction: column;
  }
  .lp-scene__item .body,
  .lp-scene__item .img {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .lp-scene__item .scene-label {
    font-size: 2rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .lp-scene__item .body .inner {
    padding-left: 0;
  }
  .lp-scene__item .scene-txt {
    margin-bottom: 20px;
  }
}

.bestsellers {
  margin-bottom: 60px;
}
.bestsellers .track {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.bestsellers .item {
  width: calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bestsellers .item a {
  display: block;
  padding: 20px;
  background: #FEFEFE;
  box-shadow: 4px 4px 35px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
}
.bestsellers .item .badge {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.bestsellers .item .img {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 10px;
}
.bestsellers .item .img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s;
}
.bestsellers .item .img:hover img {
  transform: scale(1.04);
}
.bestsellers .item .item-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #46403B;
  min-height: 3em;
}
@media (max-width: 440px) {
  .bestsellers {
    margin-bottom: 30px;
  }
  .bestsellers .item {
    width: 100%;
  }
  .bestsellers .item .item-name {
    font-size: 1.6rem;
    min-height: auto;
  }
}

.shopguide {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}
.shopguide .inner {
  width: calc((100% - 40px) / 3);
  box-shadow: 4px 4px 35px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  padding: 40px;
}
.shopguide .inner .ttl {
  width: 100%;
  text-align: center;
  padding-bottom: 0.3em;
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 1px solid #B0C4DE;
}
@media (max-width: 720px) {
  .shopguide .inner {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .shopguide {
    margin-bottom: 30px;
  }
  .shopguide .inner {
    padding: 30px;
  }
}

.lp-toppicks__photos {
  overflow: hidden;
  margin-bottom: 50px;
}
.lp-toppicks__photos-track {
  display: flex;
  width: max-content;
  animation: toppicks-scroll 24s linear infinite;
}
.lp-toppicks__photo {
  flex: none;
  width: 26vw;
  padding: 0 20px;
}
.lp-toppicks__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.lp-toppicks__lead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  color: #46403B;
  margin-bottom: 60px;
}
.lp-toppicks__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-toppicks__cat {
  display: flex;
  align-items: stretch;
  background: #FEFEFE;
  box-shadow: 4px 4px 35px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
  gap: 20px;
}
.lp-toppicks__cat-img {
  flex: 0 0 34%;
  overflow: hidden;
}
.lp-toppicks__cat-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lp-toppicks__cat-img:hover img {
  transform: scale(1.04);
}
.lp-toppicks__cat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}
.lp-toppicks__cat-body .btn {
  text-align: right;
  margin-right: 20px;
}
.lp-toppicks__cat-body .btn a {
  border-radius: 0;
  font-size: 1.4rem;
  width: fit-content;
  max-width: initial;
  min-width: initial;
}
.lp-toppicks__cat-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #46403B;
  margin-bottom: 4px;
}
.lp-toppicks__cat-txt {
  font-size: 1.5rem;
  color: #46403B;
  line-height: 1.7;
  margin-bottom: 8px;
}
@media (max-width: 720px) {
  .lp-toppicks__photos {
    gap: 2px;
    margin-bottom: 20px;
  }
  .lp-toppicks__photo {
    padding: 0 5px;
  }
  .lp-toppicks__cats {
    grid-template-columns: 1fr;
  }
  .lp-toppicks__cat-img {
    flex: 0 0 40%;
  }
}
@media (max-width: 440px) {
  .lp-toppicks__cat-img {
    flex: initial;
    width: 100px;
  }
  .lp-toppicks__cat-img img {
    object-fit: contain;
  }
  .lp-toppicks__cat-ttl {
    font-size: 1.6rem;
  }
  .lp-toppicks__cat-txt {
    font-size: 1.4rem;
  }
  .lp-toppicks__cat-body {
    padding: 10px 0;
    gap: 5px;
    line-height: 1;
  }
  .lp-toppicks .btn {
    margin-top: 0;
  }
  .lp-toppicks .btn a {
    padding: 8px;
  }
}

@keyframes toppicks-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.lp-styleguide__grid {
  display: flex;
  gap: 40px;
}
.lp-styleguide__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-styleguide__item .img {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.lp-styleguide__item .img img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
}
.lp-styleguide__item .img:hover img {
  transform: scale(1.04);
}
.lp-styleguide__item .guide-num {
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: #4B6C93;
}
.lp-styleguide__item .guide-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.lp-styleguide__item .guide-txt {
  font-size: 1.5rem;
  line-height: 1.9;
  color: rgba(176, 196, 222, 0.7);
}
@media (max-width: 720px) {
  .lp-styleguide__grid {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 440px) {
  .lp-styleguide__grid {
    gap: 30px;
  }
}

.lp-footer .inner {
  display: flex;
  align-items: center;
}
.lp-footer .inner .footer-left,
.lp-footer .inner .footer-right {
  width: 50%;
  padding: 0 60px;
}
.lp-footer .inner .footer-left {
  border-right: 1px solid rgba(70, 64, 59, 0.3);
}
.lp-footer .inner .footer-left .logo {
  font-family: "Nixie One", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.lp-footer .inner .footer-left .text {
  margin-bottom: 20px;
}
.lp-footer .inner .footer-left .text a {
  color: #2A4465;
}
.lp-footer .inner .footer-right a {
  color: #2A4465;
}
.lp-footer .inner .footer-right a:hover {
  opacity: 0.6;
}
.lp-footer .inner .footer-right .link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 440px) {
  .lp-footer .inner {
    flex-direction: column;
  }
  .lp-footer .inner .footer-left,
  .lp-footer .inner .footer-right {
    width: 100%;
    padding: 0 30px;
    text-align: center;
  }
  .lp-footer .inner .footer-left {
    border-right: 0;
    border-bottom: 1px solid rgba(70, 64, 59, 0.3);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .lp-footer .inner .footer-left .logo {
    font-size: 3rem;
  }
}

.lp-bg-gray {
  background: #fefefe;
}

.lp-bg-dark {
  background: #B0C4DE;
  color: #fff;
}

.flex02 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.flex02 .img {
  width: 55%;
}
.flex02 .text {
  width: 40%;
}
@media (max-width: 720px) {
  .flex02 {
    flex-wrap: wrap;
    gap: 20px;
  }
  .flex02 .img,
  .flex02 .text {
    width: 100%;
  }
}

.title-sub {
  font-family: "Noto Serif JP", "YakuHanJP", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #2A4465;
  margin-bottom: 60px;
  font-weight: 600;
}
.title-sub.type2 {
  margin-bottom: 20px;
}
.title-sub span {
  display: block;
  font-size: 1.8rem;
  color: #46403B;
  font-weight: 400;
  font-family: "Noto Sans JP", "YakuHanJP", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  margin-top: 5px;
}
@media (max-width: 440px) {
  .title-sub {
    margin-bottom: 20px;
  }
  .title-sub span {
    font-size: 1.6rem;
  }
}

.btn-flex > div {
  display: flex;
  gap: 16px;
}
@media (max-width: 440px) {
  .btn-flex > div {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 440px) {
  .btn--mini a {
    max-width: 90%;
    min-width: 90%;
  }
}
.js-cms-link-source p {
  display: none;
}

@media (max-width: 920px) {
  .footer-contact a {
    padding: 180px 60px;
  }
  .footer-contact h2 .en {
    font-size: 6rem;
  }
  .footer-contact h2 .ja {
    font-size: 1.5rem;
  }
  #header .contact_btn {
    display: none;
  }
  .mv .catch h1 {
    font-size: 4.5rem;
  }
  .mv .catch p {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
  h3 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .title .en {
    font-size: 6rem;
  }
  .title .ja {
    font-size: 1.6rem;
  }
}
@media (max-width: 720px) {
  .tbl--hours tr th,
  .tbl--hours tr td {
    padding: 7px 5px;
    font-size: 12px;
  }
  .contact_btn {
    justify-content: center;
  }
  #header .inner {
    padding: 10px 20px;
  }
  #header #logo {
    width: 90px;
  }
  .head-right {
    justify-content: flex-end;
    padding-right: 60px;
  }
  #header_nav {
    display: none;
  }
  .sp-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    width: 100%;
  }
  .sp-btn p {
    width: 25%;
  }
  .sp-btn p:nth-child(1) {
    background: #e4405f;
  }
  .sp-btn p:nth-child(2) {
    background: #B0C4DE;
  }
  .sp-btn p:nth-child(3) {
    background: #B0C4DE;
  }
  .sp-btn p:nth-child(4) {
    background: #46403B;
  }
  .sp-btn p a {
    color: #FEFEFE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 5px;
  }
  .sp-btn p a img {
    max-width: 25px;
  }
  .sp-btn p a span {
    display: block;
    text-align: center;
  }
  #sp-logo {
    width: 120px;
  }
  .footer-contact a {
    padding: 120px 40px;
  }
  .footer-contact h2 .en {
    font-size: 4rem;
  }
  .flogo {
    width: 100px;
  }
  #footer .inner {
    padding: 0 20px;
    font-size: 1.4rem;
  }
  #footer .link-list {
    font-size: 1.4rem;
  }
  #nav-toggle {
    position: fixed;
    right: 16px;
    top: 10px;
    inline-size: 44px;
    block-size: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 120;
  }
  #nav-toggle .bars {
    position: relative;
    inline-size: 32px;
    block-size: 24px;
    display: grid;
    align-content: space-between;
  }
  #nav-toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  #nav-toggle.is-active .bars i {
    background: #2A4465;
  }
  #nav-toggle.is-active .bars i:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  #nav-toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.is-active .bars i:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .sub-page #nav-toggle .bars i {
    background: #46403B;
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: #fefefe;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.25s ease;
    z-index: -10;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 110;
  }
  #sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 260px;
  }
  #sp-nav li:not(:first-child) {
    margin-top: 1em;
  }
  #sp-nav li a {
    font-size: 14px;
    color: #46403B;
    text-decoration: none;
    border-bottom: 1px solid #B0C4DE;
    display: block;
    padding-bottom: 1em;
  }
  #sp-nav li a span {
    display: none;
  }
  #sp-nav .contact_btn {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  #sp-nav .contact_btn .big {
    width: 100%;
  }
  #sp-nav .contact_btn .big a {
    background: #FEFEFE;
    max-width: 260px;
    margin-inline: auto;
    color: #2A4465;
    border: 1px solid #2A4465;
  }
  #sp-nav .contact_btn img {
    filter: brightness(0.3);
  }
  .media {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--media-gap, 20px);
  }
  .box {
    padding: 15px;
  }
  .box--pd60 {
    padding: 30px;
  }
  body.fixed {
    overflow: hidden;
  }
  .u-decor-spflex {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .u-decor {
    position: initial;
  }
  .u-decor.w150 img {
    width: 100px;
  }
  .mv .catch h1 {
    margin-bottom: 40px;
    font-size: 4rem;
  }
  .mv .catch p {
    font-size: 2rem;
  }
  #page-title .inner {
    padding: 20px 40px 60px;
  }
  #page-title .inner .title {
    margin-bottom: 40px;
  }
  .blog-list {
    gap: 10px;
  }
  .blog-list li {
    width: 100%;
  }
  .container--p-xl {
    padding: 60px 15px;
  }
  .container--p-l {
    padding: 40px 15px;
  }
  .container--p-m {
    padding: 30px 15px;
  }
  .container--p-s {
    padding: 20px 15px;
  }
  .container--full {
    padding-left: 0;
    padding-right: 0;
  }
  .l-column {
    row-gap: 20px;
  }
  .l-column.reverse {
    flex-direction: column-reverse;
  }
  .l-column.col2 {
    --cols: 1;
  }
  .l-column.col3 {
    --cols: 1;
  }
  .l-column.col4 {
    --cols: 2;
  }
  .l-column.col5 {
    --cols: 3;
  }
  .sp-contents {
    display: block !important;
  }
  .pc-contents {
    display: none !important;
  }
  .spbr {
    display: block;
  }
  .btn {
    margin-top: 20px;
    width: 100%;
  }
  .btn a {
    width: 100%;
    justify-content: center;
  }
  .btn--left {
    text-align: center;
  }
  .btn--left a {
    margin-left: auto;
  }
  .grid {
    gap: 12px;
  }
  .b-m120 {
    margin-bottom: 60px;
  }
}
@media (max-width: 440px) {
  .title-quote {
    margin-bottom: 20px;
  }
  .title-quote p {
    font-size: 2rem;
  }
  .box {
    padding: 15px;
  }
  #header .contact_btn {
    display: none;
  }
  #header .inner {
    padding: 10px;
  }
  #header .inner #logo {
    width: 80px;
  }
  .sp-btn p a {
    font-weight: 600;
    padding: 7px;
  }
  .sp-btn p a img {
    max-width: 20px;
  }
  .sp-btn p a span {
    font-size: 12px;
  }
  .copyright {
    padding-top: 40px;
    text-align: center;
  }
  .footer-contact a {
    flex-direction: column;
    gap: 60px;
    padding: 60px 20px;
  }
  #footer {
    text-align: center;
  }
  #footer .inner {
    flex-direction: column;
  }
  .footer_navi {
    display: none;
  }
  .flogo {
    margin-inline: auto;
  }
  .mv .mv-img img {
    aspect-ratio: 390/600;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv .catch h1 {
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .list--disc li {
    font-size: 1.6rem;
  }
  .list--disc li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .news-list li {
    padding: 8px;
  }
  .news-list .date {
    font-size: 1.4rem;
  }
  .news-list .ttl {
    font-size: 1.4rem;
  }
  .blog-list li a {
    padding: 10px;
    gap: 16px;
  }
  .blog-list .img {
    flex: 0 0 120px;
  }
  .blog-list .text .ttl {
    font-size: 1.6rem;
  }
  .blog-list .text .detail {
    font-size: 1.4rem;
    -webkit-line-clamp: 2;
    line-height: 1.2;
  }
  .img-sp6-4 img {
    aspect-ratio: 6/4;
  }
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  h1 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h3 {
    font-size: 20px;
    font-size: 2rem;
  }
  h4 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  h5 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .b-m40 {
    margin-bottom: 20px;
  }
  .b-m60 {
    margin-bottom: 30px;
  }
  .b-m80 {
    margin-bottom: 40px;
  }
  .mb-80 {
    margin-bottom: 40px;
  }
  .tcenter_pc {
    text-align: left;
  }
  .pl-40 {
    padding-left: 0;
  }
  .card {
    padding: 24px;
  }
  .title {
    margin-bottom: 30px;
  }
  .title .en {
    font-size: 4rem;
  }
  .title .ja {
    font-size: 1.4rem;
  }
  .sub-ttl {
    font-size: 1.6rem;
  }
  .bigger {
    font-size: 1.1em;
  }
  .contact_btn.big {
    flex-direction: column;
  }
  .contact_btn.big a {
    padding: 16px 24px;
  }
  .bg-chosei {
    padding-bottom: 50px;
  }
  #page-title .inner {
    padding: 20px 20px 30px;
  }
  #page-title .inner img {
    height: 200px;
  }
  #form {
    padding: 20px;
  }
  .gallery img {
    width: 100%;
  }
  .tabs__panel.is-active {
    padding: 20px 10px;
  }
  .accordion.faq > .ttl {
    padding-right: 2.5em;
  }
  .accordion.faq > .ttl::before {
    left: 8px;
    inline-size: 32px;
    block-size: 32px;
  }
  .accordion.faq > .ttl::after {
    right: 10px;
    inline-size: 7px;
    block-size: 7px;
  }
  .accordion.faq > .inner::before {
    left: 8px;
  }
  .accordion.faq > .inner p {
    padding-right: 0;
  }
  .tabs__btn {
    padding: 8px;
    font-size: 0.8em;
  }
  .tabs__panel.is-active {
    padding: 0;
  }
  .tabs__panel .t-m20 {
    margin-top: 10px;
  }
  .accordion > .ttl,
  .accordion.faq > .inner p {
    font-size: 0.9em;
  }
  .bg--round {
    border-radius: 30px;
  }
  .b-m120 {
    margin-bottom: 30px;
  }
  .copyright {
    justify-content: center;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .chip,
  .badge,
  .alert {
    box-shadow: none;
    background: transparent;
  }
}