@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  color: #3d3d3d;
  font-family: "Noto Sans JP", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
  background: #fefefe;
  overflow-x: hidden;
}

a {
  color: rgb(217.8909090909, 135.1090909091, 149.3818181818);
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

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

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

h2,
h3 {
  line-height: 1.6;
  font-weight: normal;
}

.anim {
  opacity: 0;
}
.anim--slideup.on {
  opacity: 1;
  animation: anim-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}
.anim--zoomin.on {
  opacity: 1;
  animation: anim-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}
.anim--yurayura {
  transform-origin: center bottom;
  animation: anim-yurayura 2s linear infinite;
}
.anim--poyopoyo {
  animation: anim-poyopoyo 2s ease-out infinite;
}
.anim--fuwafuwa {
  animation: anim-fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
.anim--fuwafuwa2 {
  animation: anim-fuwafuwa2 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

@keyframes anim-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes anim-slideup {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes anim-yurayura {
  0%, 100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
}
@keyframes anim-poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
@keyframes anim-fuwafuwa {
  0% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-7px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(7deg);
  }
}
@keyframes anim-fuwafuwa2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
#header {
  width: 100%;
  transition: all 0.4s ease-in;
  background: #fefefe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
#header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}
#header.is-fixed .header__inner {
  padding: 10px 5px;
  transition: all 0.5s ease;
}
#header.is-fixed .header__inner .header__logo img {
  width: 200px;
}
#header .header__inner {
  position: relative;
  max-width: 98%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: all 0.5s ease;
  gap: 10px;
}
#header .header__inner .header__logo {
  transition: all 0.4s ease-in;
  z-index: 2;
}
#header .header__inner .header__logo img {
  width: 220px;
}
#header .header__right {
  display: flex;
  justify-content: flex-end;
}

.nav {
  position: relative;
  transition: all 0.4s ease-in;
}
.nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border: 1px solid #E95F72;
}
.nav__list .nav__item {
  position: relative;
  text-align: center;
  width: 160px;
}
.nav__list .nav__item:not(:first-child) {
  border-left: 1px solid #E95F72;
}
.nav__list .nav__item:last-child {
  background: #E95F72;
}
.nav__list .nav__item:last-child .nav__link {
  color: #fff;
}
.nav__list .nav__item .nav__link {
  display: block;
  padding: 10px;
  line-height: 1.5;
  color: #3d3d3d;
  font-weight: 600;
  text-align: center;
}
.nav__list .nav__item .nav__link:hover {
  background: #f2d5da;
}
.nav__list .nav__item .nav__link span {
  display: block;
  color: #E95F72;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}
.nav__list .nav__item .nav__link img {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.nav__dropdown {
  display: none;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 40px;
  padding-top: 18px;
  z-index: 999;
  width: 100%;
}
.nav__dropdown .nav__dropdown-item {
  border-bottom: 1px solid #ddd;
}
.nav__dropdown .nav__dropdown-item:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: none;
  overflow: hidden;
}
.nav__dropdown .nav__dropdown-item .nav__dropdown-link {
  display: block;
  padding: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #3d3d3d;
  background: #fefefe;
  text-shadow: none;
  filter: none;
}
.nav__dropdown .nav__dropdown-item .nav__dropdown-link:hover {
  background: #f2f2f2;
}

.sp-head-contact {
  display: none;
}

.page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 200;
}
.page-top a {
  display: block;
  background: #fff;
  color: #3d3d3d;
  border: 1px solid #3d3d3d;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  text-align: center;
}
.page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 1100px) {
  .page-top {
    bottom: 72px;
  }
}

.page-top--circle {
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: 130px;
  overflow: hidden;
}
.page-top--circle a {
  height: 100%;
  width: 100%;
  position: absolute;
  border-top-left-radius: 100%;
  z-index: 1;
  color: #fff;
}
.page-top--circle a::after {
  content: "";
  background: #E95F72;
  width: 300px;
  height: 300px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  transform: translate(50%, 50%);
  border-radius: 50%;
}
.page-top--circle__label {
  position: absolute;
  bottom: 30px;
  left: 60px;
  z-index: 1;
  letter-spacing: -1px;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 639px) {
  .page-top--circle {
    width: 80px;
    height: 80px;
    bottom: 90px;
  }
  .page-top--circle a::after {
    width: 120px;
    height: 120px;
  }
  .page-top--circle__label {
    left: 45px;
    bottom: 5px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .page-top--circle__link::after {
    width: 160px;
    height: 160px;
  }
}

.mv-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.mv-slider .mv-container {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.mv-slider .mv-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  background: #fefefe;
  object-fit: contain;
}
.mv-slider .mv-img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #3d3d3d;
  opacity: 0.2;
  z-index: 1;
}
.mv-slider .mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.mv-slider .mv-catch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  z-index: 10;
  transition: opacity 2s ease-in;
  opacity: 0;
}
.mv-slider .mv-catch.on {
  opacity: 1;
}
.mv-slider .mv-catch img {
  max-height: 90%;
}
.mv-slider .mv-catch .catch01 {
  position: absolute;
  top: 5%;
  right: 32%;
  max-width: 300px;
  filter: drop-shadow(0px 0px 10px #fff);
}
.mv-slider .mv-catch .catch02 {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

#footer {
  font-size: 1.5rem;
  margin-left: auto;
  position: relative;
  padding: 60px;
  padding-bottom: 160px;
  z-index: -1;
}
#footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fefefe;
  z-index: -2;
}
#footer .inner {
  z-index: 20;
  display: flex;
  align-items: flex-end;
}
#footer .inner > div {
  width: 50%;
}
@media all and (max-width: 1100px) {
  #footer .inner {
    align-items: center;
  }
}
@media all and (max-width: 896px) {
  #footer {
    padding: 30px 60px 60px;
  }
  #footer .inner {
    flex-direction: column;
    padding-top: 30px;
  }
  #footer .inner > div {
    width: 100%;
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  #footer {
    font-size: 1.2rem;
    border-radius: 30px 30px 0 0;
    padding: 20px 20px;
  }
  #footer .inner {
    padding-top: 0;
  }
  #footer::before {
    top: -38px;
    height: 40px;
  }
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-wrap__left {
  width: 38%;
}
.footer-wrap__right {
  width: 50%;
}
@media all and (max-width: 639px) {
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap__left, .footer-wrap__right {
    width: 100%;
  }
  .footer-wrap__left {
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto 20px;
  }
  .footer-wrap__right {
    padding: 0 10px;
  }
}

.footer-nav {
  position: relative;
}
@media all and (max-width: 896px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  border: none;
}
.footer-nav ul li {
  width: 50%;
}
.footer-nav ul li:not(:first-child) {
  border-left: none !important;
}
.footer-nav ul li a {
  color: #3d3d3d;
  font-size: 1.4rem;
  position: relative;
  font-weight: 600;
  text-align: left;
}
.footer-nav ul li a span {
  transition: 0.2s all ease-in-out;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  color: #E95F72;
  font-size: 1.2rem;
  text-align: left;
}
@media all and (max-width: 639px) {
  .footer-nav ul li a {
    font-size: 1.2rem;
  }
}
.footer-nav ul li a:hover {
  color: #E95F72;
}
.footer-nav ul li .dropdown {
  margin-top: 10px;
  padding: 8px 5px 5px;
}
@media all and (max-width: 639px) {
  .footer-nav ul li .dropdown {
    padding: 10px;
  }
}
.footer-nav ul li .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 15px;
  max-width: 320px;
}
.footer-nav ul li .dropdown .dropdown-li {
  width: 100%;
}
.footer-nav ul li .dropdown .dropdown-li:first-of-type {
  display: block;
}
.footer-nav ul li .dropdown .dropdown-li a {
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  letter-spacing: 0;
  border: none;
  display: block;
}
.footer-nav ul li .dropdown .dropdown-li a:before {
  background: #fff;
}

.footer-logo {
  max-width: 240px;
  text-align: center;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .footer-logo {
    width: 50%;
    margin: 0 auto 40px;
  }
}

.footer-address {
  color: #3d3d3d;
}
.footer-copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  color: #3d3d3d;
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  .footer-copyright {
    font-size: 12px;
    padding-top: 20px;
  }
}

.footer-txt {
  font-size: 0.9em;
}

.fixed-btn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  margin-inline: auto;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid #f2d5da;
  text-align: center;
}
.fixed-btn .lead {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  white-space: nowrap;
}
.fixed-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  min-width: 300px;
  line-height: 1;
  font-size: 1.4em;
}
.fixed-btn a:hover {
  opacity: 0.6;
}
.fixed-btn .tel {
  background: #E95F72;
  color: #fff;
  border: 1px solid rgb(226.8351648352, 50.1648351648, 74.489010989);
}
.fixed-btn .line {
  background: #0CC656;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.fixed-btn img {
  max-width: 40px;
  display: inline-block;
  margin-right: 10px;
}
.fixed-btn .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/*----------------------------------
 top-contents
----------------------------------*/
.top_greet {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_greet .img {
  width: 35%;
  position: relative;
  text-align: right;
}
.top_greet .img img {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: inline-block;
}
.top_greet .img img:first-child {
  margin-bottom: 40px;
}
.top_greet .txt {
  width: 60%;
}
@media all and (max-width: 896px) {
  .top_greet {
    gap: 40px;
  }
  .top_greet .img {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .top_greet .img img {
    width: 49%;
  }
  .top_greet .img img:first-child {
    margin-bottom: 0;
  }
  .top_greet .txt {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .top_greet .img img {
    height: 150px;
  }
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
}
.container--full {
  width: 100%;
  max-width: 100%;
}
.container--wide {
  max-width: 1500px;
}
.container--phalf {
  padding: 60px 0;
}
.container--top-only {
  padding-bottom: 0 !important;
}
.container--btm-only {
  padding-top: 0 !important;
}

.box {
  position: relative;
  z-index: 3;
  padding: 30px;
}
.box--bd {
  border: 1px solid #E95F72;
}
.box--bd2 {
  border: 1px solid #f2d5da;
}
.box--bg1 {
  background: #fefefe;
}
.box--message {
  background-color: #E95F72;
  color: #fff;
  padding: 1em 1.5em;
  position: relative;
  font-size: 1.7em;
  line-height: 1.6;
  margin: 0 auto 40px;
  text-align: center;
}
.box--message::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #E95F72 transparent transparent transparent;
}
.box--bwidth {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.box--small {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.box--small2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.box--center {
  display: inline-block;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}
.title span {
  display: block;
  position: relative;
  z-index: 2;
}
.title .en {
  font-size: 2.8rem;
  line-height: 1.2;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.title .ja {
  font-size: 2em;
  line-height: 1.5;
  color: #3d3d3d;
  font-weight: 500;
}
.title--highlight .en {
  background-image: linear-gradient(45deg, #E95F72 0%, #f2d5da 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.title--highlight .en::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  background-image: linear-gradient(90deg, #E95F72 0%, #f2d5da 100%);
  width: 20px;
  height: 20px;
  opacity: 0.2;
}
.title--slash {
  text-align: center;
}
.title--slash .ja {
  position: relative;
  display: inline-block;
  padding: 0 1.8em;
  font-weight: 600;
}
.title--slash .ja::before, .title--slash .ja::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: #E95F72;
  font-weight: 400;
}
.title--slash .ja::before {
  content: "\\";
  left: -0.8em;
}
.title--slash .ja::after {
  content: "/";
  right: -0.8em;
}
.title--slash.mini .ja {
  font-size: 1.4em;
}
.title--slash.mini .ja::before, .title--slash.mini .ja::after {
  font-size: 1em;
}
.title--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.title--white .en,
.title--white .ja {
  color: #fff;
}
.title--mini {
  margin: 0 auto 20px;
}
.title--marker {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  color: #E95F72;
  font-size: 3.4rem;
  line-height: 1.3;
}
.title--marker span {
  position: relative;
  display: inline-block;
}
.title--marker span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 100%;
  height: 0.3em;
  background: #f8eeb1;
  z-index: -1;
}

.text {
  font-size: 1em;
  line-height: 1.6;
}
.text--sm {
  font-size: 0.875em;
}
.text--md {
  font-size: 1em;
}
.text--lg {
  font-size: 1.25em;
}
@media all and (max-width: 896px) {
  .text--lg {
    font-size: 1.15em;
  }
}
@media all and (max-width: 639px) {
  .text--lg {
    font-size: 1.1em;
  }
}
.text--xl {
  font-size: 1.5em;
}
@media all and (max-width: 896px) {
  .text--xl {
    font-size: 1.3em;
  }
}
@media all and (max-width: 639px) {
  .text--xl {
    font-size: 1.2em;
  }
}
.text--2xl {
  font-size: 2em;
}
@media all and (max-width: 896px) {
  .text--2xl {
    font-size: 1.6em;
  }
}
@media all and (max-width: 639px) {
  .text--2xl {
    font-size: 1.2em;
  }
}
.text--3xl {
  font-size: 2.5em;
}
@media all and (max-width: 896px) {
  .text--3xl {
    font-size: 2em;
  }
}
@media all and (max-width: 639px) {
  .text--3xl {
    font-size: 1.5em;
  }
}

.text-em .inner {
  position: relative;
  display: inline-block;
}
.text-em .inner:before, .text-em .inner:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #3d3d3d;
}
.text-em .inner:before {
  left: -2em;
  transform: rotate(60deg);
}
.text-em .inner:after {
  right: -2em;
  transform: rotate(-60deg);
}

.box-head {
  background: #E95F72;
  color: #fff;
  font-size: 2em;
  text-align: center;
  padding: 5px;
}

.color-base {
  color: #E95F72;
}

.btn a {
  width: 300px;
  margin: 40px auto 20px;
  color: #E95F72;
  display: block;
  padding: 10px 30px;
  padding-right: 45px;
  border: 1px solid #E95F72;
  border-radius: 40px;
  position: relative;
  background: #fefefe;
  text-align: center;
  transition: all 0.5s ease;
}
.btn a::after {
  content: "●";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #f2d5da;
  transition: all 0.5s ease;
}
.btn a:hover {
  background: #E95F72;
  color: #fff;
}
.btn a:hover::after {
  right: 20px;
  color: #fff;
}
.btn a .ja {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}
.btn--mail .btn__link {
  background: #E95F72;
  margin: 15px auto 25px;
}
.btn--mail .btn__link::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn--left a {
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .btn--left a {
    margin-left: auto;
  }
}
.btn--white a {
  background: #fff;
  color: #E95F72;
  border: 1px solid #fff;
}
.btn--white a:hover {
  color: #fff;
  background: #E95F72;
}
@media all and (max-width: 639px) {
  .btn a {
    width: 95%;
    padding: 15px 30px;
  }
}

.cta-btn {
  position: relative;
}
.cta-btn a {
  background: #E95F72;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  border-radius: 140rem;
  color: #fff;
  font-size: 1.7em;
  font-weight: bold;
  padding: 25px 0;
  display: block;
  box-shadow: rgb(226.8351648352, 50.1648351648, 74.489010989) 4px 8px 0;
  line-height: 1.5;
  transition: all 0.5s ease;
}
.cta-btn a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.cta-btn a span {
  display: block;
  font-size: 0.9em;
  color: #f2d5da;
}

.call-btn {
  text-align: center;
}
.call-btn .call-head {
  background: #fff;
  padding: 10px 20px;
  border-radius: 5px 5px 0 0;
  font-weight: 600;
  font-size: 1.3em;
  border: 1px solid #E95F72;
}
.call-btn .call-head span {
  color: #E95F72;
  font-size: 1.3em;
}
.call-btn a {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.call-btn a .call-txt {
  background: #E95F72;
  padding: 20px;
  color: #fff;
  border-radius: 0 0 5px 5px;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: center;
}
.call-btn a .call-txt span {
  display: block;
}
.call-btn a .call-txt .inner {
  display: flex;
  align-items: center;
}
.call-btn a .call-txt .icon {
  margin-right: 25px;
  font-size: 3.5em;
}
.call-btn a .call-txt .text {
  font-weight: 600;
  vertical-align: middle;
  font-size: 2.5em;
}
.call-btn a .call-txt .subtext {
  display: block;
  font-size: 1.3em;
  color: #f2d5da;
  font-weight: 600;
}
.call-btn a:hover {
  background-color: rgb(226.8351648352, 50.1648351648, 74.489010989);
}
.call-btn.line_color .call-head {
  border: 1px solid #0CC656;
}
.call-btn.line_color .call-head span {
  color: #0CC656;
}
.call-btn.line_color a .call-txt {
  background: #0CC656;
  transition: all 0.5s ease;
}
.call-btn.line_color a .call-txt .subtext {
  color: #fff;
  opacity: 0.8;
}
.call-btn.line_color a:hover .call-txt {
  background: rgb(9.0857142857, 149.9142857143, 65.1142857143);
}

.menu-btn {
  position: relative;
}
.menu-btn .inner {
  background: #E95F72;
  box-shadow: rgb(226.8351648352, 50.1648351648, 74.489010989) 4px 8px 0;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  padding: 25px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
}
.menu-btn .inner .menu-img {
  width: 150px;
}
.menu-btn .inner .menu-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 100%;
}
.menu-btn .inner .menu-text .text {
  font-size: 1.5em;
  color: #fff;
}
.menu-btn .inner .menu-text .btn a {
  margin-top: 10px;
  font-size: 1.1em;
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.menu-btn .inner .menu-text .btn a:hover {
  background: #f2d5da;
  color: #E95F72;
}

.form-btn a {
  min-width: 220px;
  max-width: 220px;
  text-align: center;
  padding: 8px 24px;
  border-radius: 999px;
  margin: 20px auto 0;
  border: 1px solid #E95F72;
  background: #E95F72;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  display: block;
}
.form-btn a:hover {
  background: #fff;
  color: #E95F72;
}
.form-btn a:focus-visible {
  outline: 3px solid rgba(233, 95, 114, 0.28);
  outline-offset: 2px;
}
.form-btn.ghost a {
  border: 1px solid #d5dbe6;
  background: #fff;
  color: #3d3d3d;
}
.form-btn.ghost a:hover {
  border-color: #E95F72;
  color: #E95F72;
}
.form-btn.ghost a:focus-visible {
  outline: 3px solid rgba(233, 95, 114, 0.18);
  outline-offset: 2px;
}

.form-btn a.is-disabled {
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  pointer-events: none;
}

.form-btn.ghost a.is-disabled {
  background: #f9fafb;
  border-color: #d5dbe6;
  color: #9ca3af;
}

.btn-flex {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 4px;
}

.custom-area {
  display: contents;
}

.page-title {
  position: relative;
  width: 100%;
  z-index: 1;
}
.page-title .lead {
  color: #3d3d3d;
  text-align: center;
  position: relative;
  padding: 40px;
  background: #E95F72;
}
.page-title .lead .ja {
  font-size: 2.5em;
  color: #fff;
  font-weight: 600;
}
.page-title .lead .en {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 2rem;
  letter-spacing: 0.05em;
  background-image: linear-gradient(45deg, #E95F72 0%, #f2d5da 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-title .img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.bg {
  position: relative;
  z-index: 0;
}
.bg::before, .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg::before {
  z-index: -1;
}
.bg::after {
  z-index: -2;
}
.bg--base::after {
  background: #E95F72;
}
.bg--base2::after {
  background: #E95F72;
  opacity: 0.05;
}
.bg--sub::after {
  background: #f2d5da;
}
.bg--gray::after {
  background: #f4f4f4;
}
.bg--white::after {
  background: #fefefe;
}
.bg--round::after {
  border-radius: 200px;
}
.bg--img01::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  left: -10%;
  bottom: -2%;
  background: url("../img/bg-01.png") no-repeat right bottom/contain;
  opacity: 0.5;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .bg--img01::after {
    width: 100%;
  }
}
.bg--img01.type2::after {
  bottom: auto;
  left: auto;
  right: -10%;
  top: -2%;
  background: url("../img/bg-01.png") no-repeat right bottom/contain;
  transform: scale(-1, -1);
}
@media all and (max-width: 639px) {
  .bg--img01.type2::after {
    width: 100%;
  }
}
.bg--img02::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/200000000000020/assets/img/bg-02.jpg") no-repeat right bottom/contain;
  background: url(../img/bg-02.jpg) no-repeat center/cover;
  z-index: -1;
  opacity: 0.5;
}
.bg--gradient::before {
  position: absolute;
  background-image: linear-gradient(to right, #E95F72, #f2d5da);
}
.bg--half_top::before, .bg--half_top::after {
  top: 0;
  height: 50%;
}
.bg--half_btm::before, .bg--half_btm::after {
  top: auto;
  bottom: 0;
  height: 50%;
}

.tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  font-weight: 600;
}
.tbl th span,
.tbl td span {
  font-size: 90%;
  color: #565656;
}
.tbl th {
  background: #e95f72;
  border-radius: 10px 0 0 10px;
  color: #fff;
  white-space: nowrap;
}
.tbl th span {
  color: #fff;
}
.tbl td {
  background: #fefefe;
  padding: 15px 30px;
  border: 1px solid #E95F72;
  border-left: none;
}

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

.list--check li {
  padding: 8px;
  font-weight: 700;
  margin-bottom: 5px;
}
.list--check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(250, 248, 245, 0.2);
  margin-top: 10px;
}
.list--check li a {
  color: #E95F72;
  border-bottom: 1px dotted #E95F72;
}
.list--check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #E95F72;
}
.list--check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list--check.type1 li {
  width: 48%;
}
.list--check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list--check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list--check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list--check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.2rem;
  }
}
.list--check2 li {
  padding: 10px 11px 10px 30px;
  position: relative;
  border-bottom: 2px dashed rgba(61, 61, 61, 0.3);
}
.list--check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: #E95F72;
}
.list--inline li {
  display: inline-block;
  padding: 1px;
}
.list--inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 1px;
  color: #E95F72;
  font-weight: normal;
}
.list--inline3 li {
  display: inline-block;
}
.list--inline3 li:not(:last-of-type) {
  margin-right: 5px;
}
.list--inline2 {
  text-align: center;
}
.list--inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #E95F72;
  font-weight: 700;
  border-radius: 30px;
}
.list--inline2 li:not(:last-child) {
  margin-right: 8px;
}
.list--num li {
  position: relative;
  padding: 6px 4px 6px 50px;
  font-size: 2rem;
  margin-bottom: 5px;
  color: #3d3d3d;
}
.list--num li span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #E95F72;
}
@media all and (max-width: 639px) {
  .list--num li {
    font-size: 1.3rem;
  }
  .list--num li span {
    font-size: 2.8rem;
  }
}
.list--disc li {
  position: relative;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li:before {
  content: "●";
  color: #E95F72;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li:before {
  color: #f2d5da;
}
.list--disc.type2 li:before {
  content: "・";
  color: #fff;
}
.list--disc.type3 li:not(:last-of-type) {
  margin-bottom: 20px;
}

.flow-list {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.flow-list .day-label {
  font-weight: bold;
  color: #E95F72;
  background: #f2d5da;
  padding: 0.3em 1em;
  border-radius: 20px;
  margin: 2em auto 1em;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.flow-list .flow-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2em;
  position: relative;
  color: #b83b5e;
}
.flow-list .flow-step {
  position: relative;
  padding: 2em 1em 2em 2.5em;
  border-left: 3px solid #E95F72;
  display: flex;
}
.flow-list .flow-step .flow-txt,
.flow-list .flow-step .img {
  width: 50%;
}
.flow-list .flow-step .flow-txt img,
.flow-list .flow-step .img img {
  max-width: 150px;
}
.flow-list .flow-step::before {
  content: "";
  position: absolute;
  top: 2em;
  left: -9px;
  width: 16px;
  height: 16px;
  background: #E95F72;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 1;
}
.flow-list .flow-step h3 {
  color: #E95F72;
  margin-bottom: 0.5em;
}
.flow-list .flow-step img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 0.8em;
  border-radius: 8px;
}
.flow-list .flow-step p {
  font-size: 0.9em;
  line-height: 1.6;
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: calc((100% - 40px) / 3);
  position: relative;
}
.blog-wrap > li a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-wrap > li a .blog-img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media all and (max-width: 896px) {
  .blog-wrap > li a .blog-img {
    height: 170px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap > li a .blog-img {
    height: 100px;
  }
}
.blog-wrap > li a .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
}
.blog-wrap > li a .blog-title {
  color: #3d3d3d;
}
.blog-wrap > li a:hover .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 100%;
  }
  .blog-wrap > li a {
    display: flex;
    gap: 10px;
  }
  .blog-wrap > li a .blog-img {
    width: 40%;
    margin-bottom: 0;
  }
}

#top-section .blog-wrap > li:nth-child(n+4) {
  display: none;
}

.blog-detail {
  padding-top: 10px;
}
.blog-detail .blog-date {
  text-align: right;
  color: rgb(245.3296703297, 184.6703296703, 193.021978022);
  font-size: 1.2em;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  .blog-detail .blog-date {
    font-size: 1em;
  }
}
.blog-detail .blog-title {
  color: #3d3d3d;
  font-size: 1.5em;
  border-bottom: 1px solid #E95F72;
  padding-bottom: 0.5em;
  margin-bottom: 20px;
}
.blog-detail .blog-txt {
  padding: 0 10px;
}
.blog-detail .blog-img {
  text-align: center;
  margin-bottom: 20px;
}
.blog-detail .blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #3d3d3d;
}
@media all and (max-width: 639px) {
  .blog-detail {
    padding-top: 0;
  }
}
@media all and (max-width: 639px) and (max-width: 639px) {
  .blog-detail .blog-title {
    font-size: 1.2em;
  }
  .blog-detail .blog-img {
    margin-bottom: 10px;
  }
}

.category-nav li:not(:last-child) {
  margin-bottom: 5px;
}
.category-nav li a {
  display: block;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  background: #f4f4f4;
  color: #3d3d3d;
}
.category-nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
  color: #f2d5da;
}
.category-nav li a:hover {
  opacity: 0.5;
}
.category-nav li:last-child a {
  border-bottom: none;
}

.breadcrumb {
  max-width: 95%;
  margin: 20px auto;
  font-size: 1.2rem;
  padding: 0 20px;
}
.breadcrumb li {
  display: inline;
  color: rgba(61, 61, 61, 0.6);
}
.breadcrumb li a {
  color: rgba(61, 61, 61, 0.8);
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: "/";
}

.accordion {
  border: 1px solid #ccc;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  cursor: pointer;
  font-size: 1.7rem;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3d3d3d;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #3d3d3d;
}
@media all and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }
  .accordion dd {
    padding: 15px;
  }
}

.anchor {
  display: block;
  padding-top: 50px;
  margin-top: -50px;
}

.faq {
  margin: 20px auto -20px;
}
.faq:last-child {
  margin-bottom: 0;
}
.faq__question {
  letter-spacing: 0.15em;
  margin-bottom: 5px;
  background: #fff;
  color: #3d3d3d;
  padding: 12px 16px 12px 3em;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: rgba(17, 12, 46, 0.05) 0px 48px 100px 0px;
}
.faq__question::before {
  content: "Q";
  font-family: "Ubuntu Condensed", sans-serif;
  position: absolute;
  top: -6px;
  left: -6px;
  font-size: 1.6rem;
  line-height: 35px;
  color: #fff;
  background: linear-gradient(45deg, #E95F72 0%, #f2d5da 70%);
  width: 35px;
  height: 35px;
  text-align: center;
}
.faq__question::after {
  content: "＋";
  font-family: "Font Awesome 5 Free";
  color: #777;
  float: right;
  margin-right: 5px;
}
.faq__question:hover {
  background: rgba(255, 255, 255, 0.6);
}
.faq__question.is-opened::after {
  content: "ー";
  margin-right: 3px;
}
.faq__answer {
  display: none;
  position: relative;
  margin-bottom: 24px;
  padding: 8px 16px 8px 48px;
  line-height: 2;
  background: #fff;
}
.faq__answer::before {
  content: "A";
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 20px;
  line-height: 35px;
  color: #f2d5da;
  width: 35px;
  height: 35px;
  text-align: center;
  font-family: "Ubuntu Condensed", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media all and (max-width: 639px) {
  .faq__question::before {
    font-size: 1.4rem;
  }
  .faq__question::after {
    display: none;
  }
}
.l-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
}
.l-column.col2 > li,
.l-column.col2 .col-item {
  width: 49%;
}
.l-column.col3 li,
.l-column.col3 .col-item {
  width: 32.3%;
}
.l-column.col4 li,
.l-column.col4 .col-item {
  width: 24%;
}
.l-column.col5 li,
.l-column.col5 .col-item {
  width: 19%;
}
.l-column.reverse {
  flex-direction: row-reverse;
}
.l-column.al-top {
  align-items: flex-start;
}
.l-column.stretch {
  align-items: stretch;
}
.l-column.stretch > li,
.l-column.stretch .col-item {
  display: flex;
}
.l-column li.w100,
.l-column .col-item.w100 {
  width: 100%;
}
.l-column li.w70,
.l-column .col-item.w70 {
  width: 67%;
}
.l-column li.w30,
.l-column .col-item.w30 {
  width: 30%;
}
.l-column li.w60,
.l-column .col-item.w60 {
  width: 57%;
}
.l-column li.w40,
.l-column .col-item.w40 {
  width: 40%;
}
.l-column .col-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.bnr_link a {
  display: block;
  border: 1px solid #f2d5da;
  border-radius: 10px;
}
.bnr_link a img {
  border-radius: 10px;
}
.bnr_link a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  .bnr_link img {
    border-radius: 5px;
  }
}

.w100pe {
  width: 100%;
}

.slider {
  position: relative;
  overflow: visible;
}
.slider__img {
  margin-bottom: 20px;
}
.slider__img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.slider__item {
  background: rgba(233, 95, 114, 0.1);
  border-radius: 8px;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
}
.slider__head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  background: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-bottom: 10px;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}
.slider__head::before, .slider__head::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  opacity: 0.2;
}
.slider__head::before {
  content: "\f10d";
  top: 14px;
  left: 16px;
  font-size: 22px;
}
.slider__head::after {
  content: "\f10e";
  right: 16px;
  bottom: 12px;
  font-size: 22px;
}
.slider__head .ttl {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  font-size: 1.2em;
}
.slider__head .ttl span {
  color: #1e857e;
  font-size: 1.3em;
}
.slider__head .name {
  opacity: 0.6;
  margin-top: 10px;
}
.slider__text {
  margin-bottom: 0.5em;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
}
.slider__meta {
  font-size: 1.2em;
  font-weight: 600;
}
.slider__arrow {
  color: #333;
  background: rgba(255, 255, 255, 0.9);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.slider__arrow::after {
  font-size: 1.2em;
}
.slider .swiper-button-prev,
.slider .swiper-button-next {
  width: 36px;
  height: 36px;
  background: #E95F72;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.slider .swiper-button-prev::after,
.slider .swiper-button-next::after {
  font-size: 1.2rem;
  color: #fff;
}
.slider .slider .swiper-button-prev {
  left: 0;
}
.slider .slider .swiper-button-next {
  right: 0;
}

.slider .swiper-wrapper {
  align-items: stretch;
}

.slider .swiper-slide {
  display: flex;
  height: auto;
}

.slider .swiper-slide > .slider__item {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.sakura-deco01 {
  position: relative;
}
.sakura-deco01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  z-index: -1;
  background: url(../img/sakura.png) no-repeat left bottom/contain;
  opacity: 0.2;
}

.venue-search {
  max-width: 800px;
  margin: 0 auto;
}
.venue-search .region-section {
  margin-bottom: 2rem;
}
.venue-search .region-section h2 {
  font-size: 0.8em;
  margin-bottom: 0.5rem;
}
.venue-search .city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.venue-search .city-list button {
  padding: 0.5rem 1rem;
  background-color: #fefefe;
  border: 1px solid #E95F72;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.9em;
  color: #3d3d3d;
}
.venue-search .city-list button:hover {
  background-color: #f2d5da;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  max-width: 1000px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid #ddd;
}
.modal .modal-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.modal .modal-content ul li {
  width: calc((100% - 60px) / 4);
  position: relative;
  line-height: 1.6;
}
.modal .modal-content ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
  color: #E95F72;
}
.modal .modal-content ul li a {
  color: #3d3d3d;
  text-decoration: underline;
  font-size: 0.9em;
}
.modal .modal-content ul li a:hover {
  text-decoration: none;
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  .modal .modal-content ul li {
    width: calc((100% - 20px) / 2);
  }
}
.modal .modal-content h3 {
  margin-bottom: 20px;
  padding: 5px;
  border-bottom: 1px solid #E95F72;
}
.modal .modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 2em;
  cursor: pointer;
  background: none;
  border: none;
}

.people img {
  max-width: 400px;
}
@media all and (max-width: 896px) {
  .people img {
    max-width: 100%;
  }
}

.floorwrap .floormap {
  width: 100%;
  height: auto;
  display: block;
}
.floorwrap .hotspot polygon {
  fill: rgba(0, 0, 0, 0);
  stroke: transparent;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  transition: fill 0.25s ease, stroke 0.25s ease;
}
.floorwrap .hotspot:hover polygon, .floorwrap .hotspot:focus polygon, .floorwrap .hotspot:focus-visible polygon {
  fill: rgba(0, 0, 0, 0.16);
  outline: none;
}

section[id] {
  scroll-margin-top: 80px;
}

.roomSection .roomHdr {
  margin-bottom: 20px;
}
.roomSection .roomHdr__title {
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.5rem);
  font-weight: 700;
  padding: 5px;
  border-bottom: 1px solid #f2d5da;
  font-size: 1.2em;
  color: #E95F72;
}
.roomSection .roomBody {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
.roomSection .roomPhoto {
  aspect-ratio: 4/3;
  background: #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
}
.roomSection .roomPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.roomSection .roomMeta {
  display: grid;
  gap: 12px;
}
.roomSection .text {
  font-size: 0.8em;
  padding-left: 0.5em;
}
.roomSection .text span {
  color: #E95F72;
}
.roomSection .planCard {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px;
  display: grid;
  background: #fafafa;
  transition: box-shadow 0.2s ease;
  text-align: center;
  max-width: 350px;
}
.roomSection .planCard__name {
  font-weight: 700;
}
.roomSection .planCard__desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.7em;
}
.roomSection .planCard__desc span {
  background: #fefefe;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 2px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.roomSection .planCard__price {
  font-weight: 700;
  font-size: 1em;
  margin-top: 10px;
}
.roomSection .planCard__price span {
  font-size: 0.7em;
}
.roomSection .planCard__price span.sub {
  display: block;
  opacity: 0.6;
  font-weight: 400;
  font-size: 0.6em;
}
.roomSection .planCard__btn {
  display: inline-block;
  text-align: center;
  border-radius: 999px;
  padding: 5px 14px;
  border: 1px solid #E95F72;
  background: #E95F72;
  color: #fff;
  font-size: 0.8em;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
.roomSection .planCard__btn:hover {
  background: #fff;
  color: #E95F72;
}
.roomSection .planCard__btn:active {
  transform: translateY(1px);
}

.form-wrapper {
  border: 1px solid #e9edf2;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
  background: #fff;
  padding: 18px;
}
.form-wrapper + .form-wrapper {
  margin-top: 16px;
}
.form-wrapper__title {
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding: 5px;
  font-size: 1.2em;
}
.form-wrapper__subtitle {
  background: rgba(242, 213, 218, 0.2);
  padding: 4px 16px;
  margin: 20px 5px 10px;
  font-weight: 600;
  border-bottom: 3px solid rgba(242, 213, 218, 0.5);
}

.form-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px 16px;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #eef2f6;
}
.form-group:first-child {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.form-group:last-child {
  border-bottom: none;
}
.form-group .form-label {
  padding: 12px 14px;
  background: #f6f9fc;
  color: #3d3d3d;
  font-weight: 700;
  border: 1px solid #e9edf2;
  border-radius: 12px;
}
.form-group .form-field {
  padding: 12px 14px;
  border: 1px solid #e9edf2;
  border-radius: 12px;
  background: #fafcff;
  color: #3d3d3d;
}
.form-group .form-input,
.form-group .form-select,
.form-group .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e1e6ee;
  border-radius: 12px;
  background: #fff;
  color: #3d3d3d;
  box-shadow: inset 0 1px 0 rgba(17, 24, 39, 0.03);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group .form-input:focus,
.form-group .form-select:focus,
.form-group .form-textarea:focus {
  outline: none;
  border-color: #E95F72;
  box-shadow: 0 0 0 3px rgba(233, 95, 114, 0.18);
}
.form-group .form-input--sm {
  width: 110px;
}
.form-group .form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group .form-radio {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.form-group .form-radio input[type=radio] {
  inline-size: 1rem;
  block-size: 1rem;
  margin-right: 0.35rem;
  accent-color: #E95F72;
}
.form-group .form-radio label {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.form-group input[type=datetime-local] {
  height: 44px;
}

.form-group .form-label,
.form-group .form-field,
.form-group .form-input,
.form-group .form-select,
.form-group .form-textarea {
  line-height: 1.4;
}

.resvFilter {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}
.resvFilter__group {
  display: grid;
  gap: 6px;
}
.resvFilter__submit {
  display: flex;
  justify-content: flex-end;
}
.resvFilter .resvLabel {
  font-size: 0.7em;
  padding-left: 0.5em;
  color: #6b7280;
}
.resvFilter .resvField select,
.resvFilter .resvField input[type=date],
.resvFilter .resvField input[type=text] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #3d3d3d;
}
.resvFilter .resvField.-text {
  font-weight: 700;
  color: #3d3d3d;
  font-size: 0.8em;
}
.resvFilter .resvField.-datalist input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #111827;
}
.resvFilter .btn.-primary {
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid #E95F72;
  background: #E95F72;
  color: #fff;
  font-weight: 700;
  transition: background 0.2s ease;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.resvFilter .btn.-primary:hover {
  background: #fff;
  color: #E95F72;
}
.resvFilter .btn.-primary:focus-visible {
  outline: 3px solid rgb(246.2, 191, 198.6);
  outline-offset: 2px;
}

.resvCard {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.resvCard + .resvCard {
  margin-top: 16px;
}
.resvCard__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.resvCard__thumb {
  width: 140px;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
}
.resvCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.resvCard__title {
  font-weight: 600;
  font-size: 1.1em;
  color: #E95F72;
  margin-bottom: 5px;
}
.resvCard__name {
  border: 1px solid #E95F72;
  border-radius: 30px;
  padding: 0 15px;
  display: inline-block;
  color: #E95F72;
  font-weight: 600;
  font-size: 0.7em;
}
.resvCard__price {
  font-weight: 600;
  font-size: 1.1em;
}
.resvCard__price span {
  font-size: 0.7em;
}
.resvCard .resvCalendar {
  overflow: auto;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  border-bottom: none;
}
.resvCard .resvCalendar .resvTable {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 0.9em;
  /* ホバー/フォーカスの強調 */
  /* チェック時の見た目 */
}
.resvCard .resvCalendar .resvTable th,
.resvCard .resvCalendar .resvTable td {
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 10px;
  background: #fff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}
.resvCard .resvCalendar .resvTable th:not(:first-child),
.resvCard .resvCalendar .resvTable td:not(:first-child) {
  border-left: 1px solid #e5e7eb;
}
.resvCard .resvCalendar .resvTable thead {
  border-bottom: 1px solid #e5e7eb;
}
.resvCard .resvCalendar .resvTable thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f8fafc;
  font-weight: 600;
  vertical-align: middle;
}
.resvCard .resvCalendar .resvTable thead th time {
  display: inline-block;
}
.resvCard .resvCalendar .resvTable thead th span {
  display: block;
  font-size: 0.8em;
}
.resvCard .resvCalendar .resvTable .stickyCol {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #f8fafc;
  text-align: left;
}
.resvCard .resvCalendar .resvTable td {
  position: relative;
  text-align: center;
  vertical-align: middle;
}
.resvCard .resvCalendar .resvTable .slotRadio {
  /* 既存（互換のため維持） */
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.resvCard .resvCalendar .resvTable .slotCheck {
  /* ★ 追加：.slotCheck も同様に隠す */
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.resvCard .resvCalendar .resvTable .slotMark,
.resvCard .resvCalendar .resvTable .slotX,
.resvCard .resvCalendar .resvTable .slotDash {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1;
}
.resvCard .resvCalendar .resvTable .slotMark {
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.resvCard .resvCalendar .resvTable .slotMark:hover,
.resvCard .resvCalendar .resvTable .slotRadio:focus-visible + .slotMark,
.resvCard .resvCalendar .resvTable .slotCheck:focus-visible + .slotMark {
  /* ★ 追加 */
  border-color: #7DAD3D;
}
.resvCard .resvCalendar .resvTable .slotRadio:checked + .slotMark,
.resvCard .resvCalendar .resvTable .slotCheck:checked + .slotMark {
  /* ★ 追加 */
  border-color: #7DAD3D;
  background: rgba(125, 173, 61, 0.3);
}
.resvCard .resvCalendar .resvTable .slotX {
  color: #E95F72;
}
.resvCard .resvCalendar .resvTable .slotDash {
  color: #9ca3af;
}
.resvCard .resvCalendar .resvTable .slotX,
.resvCard .resvCalendar .resvTable .slotDash {
  cursor: default;
  pointer-events: none;
}
.resvCard .resvCalendar .resvTable .slotX::before {
  content: "×";
  font-size: 14px;
  font-weight: 700;
  color: #E95F72;
  line-height: 1;
}
.resvCard .resvCalendar .resvTable .slotDash::before {
  content: "ー";
  font-size: 16px;
  color: #9ca3af;
  line-height: 1;
}

.form .form-contents {
  padding: 0 !important;
}
.form .form-contents .custom-area {
  width: 100%;
}
.form .form-contents dl {
  padding: 12px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0 !important;
}
.form .form-contents dl dt,
.form .form-contents dl dd {
  margin: 10px 0 !important;
}
.form .form-contents dl dt {
  float: none;
  font-weight: 700;
  padding: 12px 14px;
  background: rgb(246, 249, 252);
  border: 1px solid rgb(233, 237, 242);
  border-radius: 12px;
  margin-right: 0 !important;
  padding-top: 12px !important;
  width: 220px !important;
}
.form .form-contents dl dd {
  width: calc(100% - 240px);
  padding-left: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.form .form-contents dl dd .textarea,
.form .form-contents dl dd .textarea-date,
.form .form-contents dl dd .textarea-datetime,
.form .form-contents dl dd .textarea-time {
  width: 100%;
  padding: 12px 14px !important;
  border: 1px solid #e1e6ee !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #3d3d3d;
  box-shadow: inset 0 1px 0 rgba(17, 24, 39, 0.03);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 49px;
}
.form .form-contents dl dd .radio {
  margin: 0px 3px 3px 5px !important;
}
.form .form-contents dl dd:not(.pattern-exclusion) {
  border-bottom: none;
}
.form dl dt:not(.pattern-exclusion) span.required::before {
  display: none !important;
}
.form .submit-btn {
  background: #E95F72 !important;
  border: 1px solid #E95F72 !important;
}

.resvCard .resvCalendar.is-scroll .resvTable--multi {
  width: max-content !important;
  table-layout: fixed;
}

.chip {
  background: #f3f4f6;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75em;
  font-weight: 600;
}

.resvAlert.-gap {
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 4px;
  background: #faf8f5;
  border: 1px solid #E95F72;
  color: #E95F72;
  font-size: 0.85em;
}

.resvScroller {
  position: relative;
}

.resvCalendar.is-scroll {
  --colW: 96px;
  position: relative;
  z-index: 1;
  scroll-snap-type: none;
}

.resvTable--multi thead th,
.resvTable--multi tbody td {
  width: var(--colW);
  min-width: var(--colW);
  scroll-snap-align: none;
}
.resvTable--multi thead th:nth-child(7n+1),
.resvTable--multi tbody td:nth-child(7n+1) {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.form-btn a.is-disabled {
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  pointer-events: none;
}

.resvScroller__arrow {
  position: absolute;
  top: 36px;
  inline-size: 32px;
  block-size: 32px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  font-weight: 700;
  cursor: pointer;
  z-index: 3;
  pointer-events: auto;
}
.resvScroller__arrow.-left {
  left: -6px;
}
.resvScroller__arrow.-right {
  right: -6px;
}
.resvScroller__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.slotCheck {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.slotMark {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 18px;
  block-size: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.15s ease;
  user-select: none;
}

.resvScroller__arrow.is-end {
  opacity: 0.4;
}

.slotMark:hover,
.slotCheck:focus-visible + .slotMark {
  border-color: #7dad3d !important;
}

.slotCheck:checked + .slotMark {
  background: #d8e6c4 !important;
  border: 2px solid #7dad3d !important;
}

.slotX {
  color: #E95F72;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slotDash {
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
}

#funeral-plans {
  /* タブ */
  /* パネル */
  /* レスポンシブ */
}
#funeral-plans .planTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 14px;
}
#funeral-plans .planTabs .planTab {
  width: calc((100% - 36px) / 4);
  appearance: none;
  border: 1px solid #E95F72;
  background: rgba(242, 213, 218, 0.5);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  color: #3d3d3d;
}
#funeral-plans .planTabs .planTab:hover {
  background: #E95F72;
  color: #fff;
}
#funeral-plans .planTabs .planTab.is-active {
  background: #E95F72;
  color: #fff;
}
#funeral-plans .planPanels {
  position: relative;
}
#funeral-plans .planCard {
  display: none;
  border: 1px solid #e9edf2;
  border-radius: 18px;
  background: #fff;
  padding: 2em;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
  /* ヒーロー */
  /* 見出し帯 */
  /* 共通ブロック */
  /* 含まれるもの */
  /* 流れ */
  /* 色バリエーション */
  /* スマホ（2〜3個並び） */
}
#funeral-plans .planCard.is-active {
  display: block;
}
#funeral-plans .planCard .planHero {
  margin: 4px 4px 12px;
  border-radius: 12px;
  overflow: hidden;
}
#funeral-plans .planCard .planHero img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}
#funeral-plans .planCard .planHead {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 6px;
  /* 色バリエーション（修飾だけ） */
}
#funeral-plans .planCard .planHead .planBadge {
  display: block;
  margin: auto;
  text-align: center;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  max-width: 100%;
  min-width: 500px;
}
#funeral-plans .planCard .planHead .planTitle {
  margin: 0;
  font-weight: 800;
  text-align: center;
  font-size: 2.5em;
}
#funeral-plans .planCard .planHead .planTitle.peach {
  color: #f27763;
}
#funeral-plans .planCard .planHead .planTitle.blue {
  color: #347dd4;
}
#funeral-plans .planCard .planHead .planTitle.green {
  color: #36b072;
}
#funeral-plans .planCard .planHead .planTitle.gold {
  color: #d9b33e;
}
#funeral-plans .planCard .planHead .planTitle span {
  font-size: 1.6rem;
  color: #3d3d3d;
  font-weight: 400;
  display: block;
}
#funeral-plans .planCard .planHead .planSub {
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
#funeral-plans .planCard .planHead .planPrice {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  color: #6b7280;
  font-family: "DM Serif Text", serif;
}
#funeral-plans .planCard .planHead .planPrice .ex {
  font-size: 4em;
  font-weight: 800;
  color: rgb(198.6813186813, 27.3186813187, 50.9120879121);
  line-height: 1;
}
#funeral-plans .planCard .planHead .planPrice .ex .u {
  font-size: 0.5em;
  margin-left: 0.15em;
}
#funeral-plans .planCard .planHead .planPrice .ex .t {
  font-size: 0.3em;
  margin-left: 0.3em;
  color: #8b8b8b;
  font-weight: 700;
}
#funeral-plans .planCard .planHead .planPrice .in {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}
#funeral-plans .planCard .planHead .planPrice .in strong {
  font-size: 1.5em;
}
#funeral-plans .planCard .planHead.-peach .planBadge {
  background: #f27763;
  color: #fff;
}
#funeral-plans .planCard .planHead.-blue .planBadge {
  background: #347dd4;
  color: #fff;
}
#funeral-plans .planCard .planHead.-green .planBadge {
  background: #36b072;
  color: #fff;
}
#funeral-plans .planCard .planHead.-gold .planBadge {
  background: #d9b33e;
  color: #fff;
}
#funeral-plans .planCard .planBlock {
  margin: 10px 0;
}
#funeral-plans .planCard .blockTitle {
  font-weight: 700;
  margin: 20px 0 20px;
  text-align: center;
  padding: 5px;
  background: rgba(242, 213, 218, 0.5);
}
#funeral-plans .planCard .includeGrid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
#funeral-plans .planCard .includeGrid li {
  padding: 10px;
  border: 1px solid #f2d5da;
  border-radius: 5px;
  font-size: 0.8em;
  text-align: center;
}
#funeral-plans .planCard .includeGrid li img {
  display: block;
  object-fit: contain;
  height: 100px;
  margin: 0 auto 10px;
  object-fit: contain;
}
#funeral-plans .planCard .flow {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 8px;
  padding: 0;
  list-style: none;
}
#funeral-plans .planCard .flow__item {
  height: 80px;
  min-width: 80px;
  position: relative;
  border-radius: 5px;
  background: #e4e4e4;
  color: #334155;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* 矢印 */
}
#funeral-plans .planCard .flow__item.col2 {
  background: transparent !important;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#funeral-plans .planCard .flow__item.col2 .flow__label {
  background: #e4e4e4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
#funeral-plans .planCard .flow__item.col2 .flow__label.-active {
  background: #E95F72;
  color: #fff;
}
#funeral-plans .planCard .flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 0 8px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #f2d5da;
}
#funeral-plans .planCard .flow__label {
  font-weight: 800;
  line-height: 1.05;
}
#funeral-plans .planCard .flow__sub {
  display: block;
  margin-top: 4px;
  font-size: 0.6em;
  font-weight: 700;
  line-height: 1.1;
  opacity: 0.95;
}
#funeral-plans .planCard .flow__item.-active {
  background: #E95F72;
  color: #fff;
}
#funeral-plans .planCard .flow__item.-muted {
  background: #e4e4e4;
  color: #b0b0b0;
}
#funeral-plans .planCard .flow__item.-muted .flow__sub {
  opacity: 0.95;
}
@media (max-width: 768px) {
  #funeral-plans .planCard .flow {
    gap: 12px;
  }
  #funeral-plans .planCard .flow__item {
    flex: 1 1 calc(33.333% - 12px);
    /* 3個並び */
    min-width: 100px;
    height: 72px;
  }
  #funeral-plans .planCard .flow__item:not(:last-child)::after {
    right: -10px;
    border-width: 7px 0 7px 9px;
  }
  #funeral-plans .planCard .flow__label {
    font-size: 1.05rem;
  }
  #funeral-plans .planCard .flow__sub {
    font-size: 0.74rem;
  }
}
#funeral-plans .planCard .notes {
  margin: 6px 0 0;
  color: #6b7280;
  padding-left: 1rem;
}
@media all and (max-width: 896px) {
  #funeral-plans .planTabs {
    gap: 8px;
  }
  #funeral-plans .planTabs .planTab {
    padding: 8px 12px;
    font-size: 0.95rem;
    width: calc((100% - 12px) / 2);
  }
  #funeral-plans .planCard {
    padding: 12px;
  }
  #funeral-plans .planCard .planHero img {
    height: 150px;
  }
  #funeral-plans .planCard .planHead .planBadge {
    min-width: 80%;
  }
  #funeral-plans .planCard .planHead .planTitle {
    font-size: 1.7em;
  }
  #funeral-plans .planCard .planHead .planPrice {
    gap: 0;
  }
  #funeral-plans .planCard .planHead .planPrice .ex {
    font-size: 3em;
  }
  #funeral-plans .planCard .includeGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== 法要プラン ===== */
/* バッジ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.7em;
}
.badge.-line {
  color: #E95F72;
  border: 1px solid #E95F72;
  background: #f2d5da;
  font-size: 0.8em;
}
.badge.-recommend {
  background: #f2d5da;
  color: rgb(226.8351648352, 50.1648351648, 74.489010989);
  border: 1px solid #E95F72;
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 10;
}
.badge.-popular {
  background: #fff3cf;
  color: #946200;
  border: 1px solid #f2dda1;
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 10;
}

/* 部屋カード */
.roomList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.roomList .roomCard {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  text-align: center;
}
.roomList .roomCard .roomThumb {
  aspect-ratio: 16/9;
  background: #f3f4f6;
}
.roomList .roomCard .roomThumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.roomList .roomCard .roomBody {
  padding: 12px 14px;
  display: grid;
  gap: 6px;
}
.roomList .roomCard .roomHead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.roomList .roomCard .roomTitle {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 0.8em;
}
.roomList .roomCard .roomTitle span {
  font-size: 2.2em;
  font-weight: 700;
}
.roomList .roomCard .roomMeta {
  color: #666666;
  font-size: 0.7em;
}
.roomList .roomCard .roomPrice {
  color: rgb(198.6813186813, 27.3186813187, 50.9120879121);
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: "DM Serif Text", serif;
}
.roomList .roomCard .roomPrice span {
  font-weight: 700;
}
.roomList .roomCard .roomPrice strong {
  font-size: 2em;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.roomList .roomCard .roomPrice em {
  font-style: normal;
  color: #6b7280;
  font-size: 0.9rem;
  margin-left: 2px;
}
.roomList .roomCard .roomNote {
  color: #6b7280;
  font-size: 0.7em;
}

/* オプション */
.optionBlock {
  margin-top: 6px;
}
.optionBlock .optionList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: center;
}
.optionBlock .optionCard {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
}
.optionBlock .optionThumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.optionBlock .optionThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.optionBlock .optionTitle {
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}
.optionBlock .optionTitle .en {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: #E95F72;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  line-height: 1.5em;
  font-weight: 700;
  margin-right: 5px;
  font-size: 1.3em;
}
.optionBlock .optionTitle.label {
  background: #13ae67;
  color: #fff;
  border-radius: 3px;
  padding: 3px;
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.optionBlock .optionTitle.label .mini {
  font-size: 0.7em;
}
.optionBlock .exPrice .num {
  padding-left: 1em;
  font-weight: 900;
  font-size: 1.3em;
  color: #13ae67;
}
.optionBlock .exPrice .mini {
  font-size: 0.7em;
  padding-left: 0.3em;
}
.optionBlock .optionPrice strong {
  color: rgb(198.6813186813, 27.3186813187, 50.9120879121);
  font-family: "DM Serif Text", serif;
  font-size: 2em;
  line-height: 1;
}
.optionBlock .optionPrice span {
  font-size: 0.7em;
}
.optionBlock .caption {
  color: #6b7280;
  font-size: 0.7em;
  margin-top: 10px;
}

.secTitle {
  font-weight: 700;
  padding: 10px 12px;
  background: #E95F72;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 12px;
}

/* アクション */
.memorialAction {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.memorialAction .btn.-primary {
  padding: 12px 28px;
  border-radius: 999px;
  background: #e85b6b;
  border: 1px solid #e85b6b;
  color: #fff;
  font-weight: 700;
  transition: 0.2s ease;
}
.memorialAction .btn.-primary:hover {
  background: #fff;
  color: #e85b6b;
}
.memorialAction .btn.-primary:focus-visible {
  outline: 3px solid rgba(232, 91, 107, 0.35);
  outline-offset: 2px;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .roomList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .roomList .roomCard.-wide {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .sp {
    display: inline;
  }
  .roomList {
    grid-template-columns: 1fr;
  }
  .optionBlock .optionList {
    grid-template-columns: 1fr;
  }
}
.plus {
  text-align: center;
  margin: 40px 0 20px;
}
.plus img {
  max-width: 50px;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.img-grid .img01 {
  grid-area: 1/1/2/2;
}
.img-grid .img02 {
  grid-area: 1/2/2/4;
}
.img-grid .img03 {
  grid-area: 2/1/3/3;
}
.img-grid .img04 {
  grid-area: 2/3/3/4;
}
.img-grid .img05 {
  grid-area: 3/1/4/2;
}
.img-grid .img06 {
  grid-area: 3/2/4/4;
}
.img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.plus {
  margin: 40px auto;
}
.plus img {
  max-width: 50px;
}

.gallery .img {
  position: relative;
  border: 1px solid #ddd;
  padding: 10px;
}
.gallery img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}

.b-r20 {
  border-radius: 20px;
}