@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333333;
  background-color: #f4f9f0; }

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: transparent; }

body:not(.sub-page) .main-wrapper {
  background-color: #ffffff;
  box-shadow: 0 0 30px rgba(139, 195, 74, 0.08);
  background-image: radial-gradient(#ffffff 18%, transparent 19%), radial-gradient(#ffffff 18%, transparent 19%);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px; }

body.sub-page .main-wrapper {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  background-color: #fffadd;
  /* ベースの薄いクリーム色 */
  background-image: radial-gradient(circle, #ffb3ba 20%, transparent 21%), radial-gradient(circle, #bae1ff 20%, transparent 21%), radial-gradient(circle, #ffffba 20%, transparent 21%), radial-gradient(circle, #baffc9 20%, transparent 21%);
  background-size: 80px 80px, 120px 120px, 150px 150px, 200px 200px;
  background-position: 0 0, 40px 60px, 80px 10px, 120px 90px; }
body.sub-page .site-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 4px 12px rgba(139, 195, 74, 0.04); }

.main-wrapper {
  max-width: 820px;
  margin: 0 auto;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative; }

.main-content-inner {
  background-color: #ffffff;
  box-shadow: 0 0 30px rgba(139, 195, 74, 0.08);
  width: 100%; }
  @media (max-width: 820px) {
    .main-content-inner {
      background-color: transparent;
      box-shadow: none; } }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
  .site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.04); }
  .site-header .logo a {
    display: block; }
    .site-header .logo a img {
      display: block;
      height: 50px;
      width: auto; }
  .site-header .nav-menu {
    display: flex;
    gap: 20px;
    margin-right: 80px; }
    .site-header .nav-menu a {
      text-decoration: none;
      color: #333333;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: opacity 0.3s; }
      .site-header .nav-menu a:hover {
        opacity: 0.6; }
  .site-header .menu-trigger {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background-color: #8bc34a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 200;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0; }
    .site-header .menu-trigger span {
      display: block;
      width: 22px;
      height: 2px;
      background-color: #ffffff;
      transition: transform 0.3s, opacity 0.3s; }
    .site-header .menu-trigger small {
      color: #ffffff;
      font-size: 0.6rem;
      font-weight: bold;
      letter-spacing: 0.05em; }
    .site-header .menu-trigger.active span:nth-child(1) {
      transform: translateY(6px) rotate(45deg); }
    .site-header .menu-trigger.active span:nth-child(2) {
      opacity: 0; }
    .site-header .menu-trigger.active span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg); }
  @media (max-width: 820px) {
    .site-header {
      padding: 10px 16px; }
      .site-header .logo a img {
        height: 42px; }
      .site-header .nav-menu {
        display: none; }
      .site-header .menu-trigger {
        right: 16px; } }

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f0f0f0; }
  .hero-carousel .carousel-track-container {
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .hero-carousel .carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out; }
  .hero-carousel .carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%; }
    .hero-carousel .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .hero-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    padding: 0; }
    .hero-carousel .carousel-arrow:hover {
      background-color: white; }
    .hero-carousel .carousel-arrow-prev {
      left: 16px; }
    .hero-carousel .carousel-arrow-next {
      right: 16px; }
  .hero-carousel .carousel-nav-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10; }
  .hero-carousel .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s; }
    .hero-carousel .carousel-dot.active {
      background-color: #8bc34a;
      transform: scale(1.1); }

.indexArea01W {
  width: 100%;
  box-sizing: border-box; }
  .indexArea01W > div[class*="deco"] {
    position: relative;
    overflow: hidden;
    padding-top: 0; }
    .indexArea01W > div[class*="deco"]:nth-child(odd) {
      background-color: #fff0f5;
      background-image: linear-gradient(45deg, #ffb7c5 25%, transparent 25%, transparent 75%, #ffb7c5 75%, #ffb7c5), linear-gradient(-45deg, #ffb7c5 25%, transparent 25%, transparent 75%, #ffb7c5 75%, #ffb7c5), linear-gradient(45deg, transparent 25%, #dcd0ff 25%, #dcd0ff 75%, transparent 75%, transparent), linear-gradient(-45deg, transparent 25%, #dcd0ff 25%, #dcd0ff 75%, transparent 75%, transparent);
      background-size: 100px 100px;
      background-position: 0 0, 0 0, 50px 50px, 50px 50px; }
    .indexArea01W > div[class*="deco"]:nth-child(even) {
      background-color: #fffadd;
      background-image: radial-gradient(circle, #ffb3ba 20%, transparent 21%), radial-gradient(circle, #bae1ff 20%, transparent 21%), radial-gradient(circle, #ffffba 20%, transparent 21%), radial-gradient(circle, #baffc9 20%, transparent 21%);
      background-size: 80px 80px, 120px 120px, 150px 150px, 200px 200px;
      background-position: 0 0, 40px 60px, 80px 10px, 120px 90px; }
    .indexArea01W > div[class*="deco"] .dContainer {
      position: static;
      width: 100%;
      box-sizing: border-box;
      padding: 0; }
      .indexArea01W > div[class*="deco"] .dContainer > div {
        position: static;
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
        padding-bottom: 4rem; }
        .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(2) {
          position: absolute;
          top: 0;
          left: 0;
          z-index: 10; }
          .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(2) h2 {
            background: #3abcef;
            padding: .6rem 2.0rem;
            font-size: 1.6rem;
            color: white;
            font-weight: 700;
            border-radius: 0 .8rem .8rem 0;
            margin: 0;
            white-space: nowrap; }
        .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(1) {
          position: relative;
          z-index: 1;
          margin: 1.8rem 6% 0 0;
          width: 94%;
          box-sizing: border-box; }
          .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(1) img {
            width: 100%;
            height: auto;
            border-radius: .5rem;
            display: block; }
        .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(3) {
          position: relative;
          z-index: 5;
          background: rgba(255, 255, 255, 0.85);
          margin: -1rem 0 0 auto;
          width: 94%;
          border-radius: 1.0rem 0 0 1.0rem;
          padding: 1.0rem 0.8rem 1.0rem 0.8rem;
          box-sizing: border-box; }
          .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(3) > div {
            width: 100%;
            position: relative;
            z-index: 6; }
            .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(3) > div p {
              line-height: 1.9;
              font-size: 1.1rem;
              padding: 0.8rem 0.4rem;
              margin: 0 0 1.2rem 0;
              color: #333333;
              text-align: left; }
            .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(3) > div a {
              display: block;
              position: relative;
              z-index: 20;
              background: #40e691;
              width: 10em;
              margin: 0 auto;
              text-align: center;
              color: #FFF;
              font-weight: 700;
              font-size: 1.3rem;
              border-radius: 5px;
              padding: .6rem;
              text-decoration: none;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
              transition: opacity 0.2s ease; }
              .indexArea01W > div[class*="deco"] .dContainer > div > div:nth-of-type(3) > div a:hover {
                opacity: 0.85; }

.sub-main {
  width: 100%;
  box-sizing: border-box;
  padding: 1.5rem 0 5rem 0; }
  .sub-main .sub-content-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    margin: 0 4%;
    width: 92%;
    border-radius: 1.5rem;
    padding: 2.0rem 1.5rem;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); }
    @media (max-width: 820px) {
      .sub-main .sub-content-inner {
        padding: 1.5rem 1.0rem; } }
    .sub-main .sub-content-inner .sub-title-area {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 0.5rem;
      margin-bottom: 2.5rem;
      margin-left: calc(-1.5rem - 4.35%);
      width: calc(100% + 1.5rem + 4.35%);
      align-items: flex-start; }
      @media (max-width: 820px) {
        .sub-main .sub-content-inner .sub-title-area {
          margin-left: calc(-1.0rem - 4.35%);
          width: calc(100% + 1.0rem + 4.35%); } }
      .sub-main .sub-content-inner .sub-title-area h1 {
        background: #3abcef;
        padding: 0.6rem 4.0rem 0.6rem 3.5rem;
        font-size: 1.7rem;
        color: #ffffff;
        font-weight: 700;
        font-family: "Hiragino Maru Gothic ProN", "Kosugi Maru", "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
        border-radius: 0 3rem 3rem 0;
        margin: 0;
        white-space: nowrap;
        box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.15); }
        @media (max-width: 820px) {
          .sub-main .sub-content-inner .sub-title-area h1 {
            font-size: 1.45rem;
            padding: 0.5rem 3.0rem 0.5rem 2.2rem; } }
      .sub-main .sub-content-inner .sub-title-area .title-pink-bar {
        display: block;
        background-color: #e03185;
        width: 7.2rem;
        height: 11px;
        border-radius: 10px;
        margin-left: 4.3rem;
        margin-top: 0; }
        @media (max-width: 820px) {
          .sub-main .sub-content-inner .sub-title-area .title-pink-bar {
            width: 6.2rem;
            height: 9px;
            margin-left: 2.8rem; } }
    .sub-main .sub-content-inner .sub-content-body {
      width: 100%; }
      .sub-main .sub-content-inner .sub-content-body .sub-section {
        margin-bottom: 30px; }
        .sub-main .sub-content-inner .sub-content-body .sub-section:last-child {
          margin-bottom: 0; }
        .sub-main .sub-content-inner .sub-content-body .sub-section h2 {
          font-size: 1.3rem;
          font-weight: 700;
          color: #333333;
          border-left: 5px solid #3abcef;
          padding-left: 10px;
          margin: 0 0 15px 0; }
        .sub-main .sub-content-inner .sub-content-body .sub-section p {
          font-size: 1rem;
          line-height: 1.8;
          color: #333333;
          margin: 0 0 15px 0; }
          .sub-main .sub-content-inner .sub-content-body .sub-section p:last-child {
            margin-bottom: 0; }

footer.footer {
  background-color: #363636;
  color: #ffffff;
  padding: 0 0 40px 0;
  width: 100%;
  box-sizing: border-box; }
  footer.footer .Gmap {
    width: 100%;
    margin: 0;
    padding: 0; }
    footer.footer .Gmap .full-width-map {
      width: 100%;
      position: relative;
      padding-top: 50%;
      overflow: hidden; }
      footer.footer .Gmap .full-width-map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        display: block; }
  footer.footer .content {
    width: 100%;
    margin-top: 30px;
    text-align: center; }
    footer.footer .content p.copyright {
      margin: 0;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      color: #ffffff; }

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 820px;
  height: 100vh;
  z-index: 150;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; }
  .modal.is-active {
    display: flex; }
  .modal .modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.8);
    cursor: pointer; }
  .modal .modal-content {
    position: relative;
    width: 100%;
    z-index: 10; }
  .modal .modal-menu-content {
    background-color: white;
    border-radius: 6px;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }
  .modal .modal-menu-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .modal .modal-menu-header .is-size-5 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #333333; }
    .modal .modal-menu-header .delete {
      background-color: rgba(10, 10, 10, 0.1);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: inline-block;
      height: 24px;
      width: 24px;
      position: relative;
      outline: none;
      transition: background-color 0.2s; }
      .modal .modal-menu-header .delete:hover {
        background-color: rgba(10, 10, 10, 0.2); }
      .modal .modal-menu-header .delete::before, .modal .modal-menu-header .delete::after {
        background-color: #4a4a4a;
        content: "";
        display: block;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translateX(-50%) translateY(-50%) rotate(45deg); }
      .modal .modal-menu-header .delete::before {
        height: 2px;
        width: 50%; }
      .modal .modal-menu-header .delete::after {
        height: 50%;
        width: 2px; }
  .modal .modal-menu-list a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f5f5f5;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s; }
    .modal .modal-menu-list a i {
      width: 24px;
      text-align: center;
      color: #7a7a7a; }
    .modal .modal-menu-list a:hover {
      background-color: #fcfcfc;
      color: #3abcef; }
      .modal .modal-menu-list a:hover i {
        color: #3abcef; }
    .modal .modal-menu-list a:last-child {
      border-bottom: none; }
  @media (max-width: 820px) {
    .modal {
      left: 0;
      transform: none;
      max-width: 100%; } }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px; }
  .news-list .news-card {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 1.0rem;
    overflow: hidden;
    text-decoration: none;
    color: #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .news-list .news-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); }
      .news-list .news-card:hover .news-card-title {
        color: #3abcef; }
    .news-list .news-card .news-card-img {
      width: 32%;
      min-width: 200px;
      aspect-ratio: 16 / 11;
      overflow: hidden;
      background-color: #f9f9f9; }
      .news-list .news-card .news-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; }
    .news-list .news-card .news-card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-grow: 1;
      width: 68%;
      box-sizing: border-box; }
      .news-list .news-card .news-card-body .news-card-date {
        font-size: 0.85rem;
        color: #b3b3b3;
        font-weight: 600;
        margin-bottom: 0.4rem;
        letter-spacing: 0.03em; }
      .news-list .news-card .news-card-body .news-card-title {
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.4;
        margin: 0 0 0.6rem 0;
        color: #333333;
        transition: color 0.2s ease; }
      .news-list .news-card .news-card-body .news-card-text {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #666666;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
    @media (max-width: 560px) {
      .news-list .news-card {
        flex-direction: column; }
        .news-list .news-card .news-card-img {
          width: 100%;
          min-width: auto;
          aspect-ratio: 16 / 10; }
        .news-list .news-card .news-card-body {
          width: 100%;
          padding: 1.2rem; }
          .news-list .news-card .news-card-body .news-card-text {
            -webkit-line-clamp: 3; } }

.sub-content-inner.is-card-layout {
  background: transparent !important;
  box-shadow: none !important;
  padding-bottom: 0 !important; }

.spot-card-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  box-sizing: border-box; }
  @media (max-width: 820px) {
    .spot-card-list {
      gap: 30px; } }

.spot-card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 2.0rem;
  padding: 2.5rem 1.5rem;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center; }
  .spot-card .spot-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "Hiragino Maru Gothic ProN", "Kosugi Maru", "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
    margin: 0 0 1.8rem 0;
    text-align: center;
    letter-spacing: 0.05em; }
  .spot-card .spot-card-img {
    background-color: #ffffff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    display: block;
    overflow: hidden; }
    .spot-card .spot-card-img img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px; }
    .spot-card .spot-card-img.main-illustration {
      width: 85%;
      max-width: 320px;
      margin-bottom: 2.0rem; }
    .spot-card .spot-card-img.sub-photo {
      width: 80%;
      max-width: 280px;
      margin-top: 1.2rem; }
  .spot-card .spot-card-desc {
    position: relative;
    width: 90%;
    max-width: 380px;
    border-radius: 1.2rem;
    padding: 1.5rem 1.2rem;
    box-sizing: border-box;
    margin-bottom: 12px; }
    .spot-card .spot-card-desc p {
      font-size: 1.05rem;
      line-height: 1.8;
      text-align: left;
      margin: 0;
      font-weight: 500; }
    .spot-card .spot-card-desc::after {
      content: '';
      position: absolute;
      bottom: -11px;
      left: 50%;
      transform: translateX(-50%);
      border-style: solid;
      border-width: 12px 10px 0 10px; }

.card-green {
  border: 4px solid #a3d99d; }
  .card-green .spot-card-title {
    color: #5d9732; }
  .card-green .spot-card-desc {
    background-color: #f6fceb; }
    .card-green .spot-card-desc p {
      color: #555555; }
    .card-green .spot-card-desc::after {
      border-color: #f6fceb transparent transparent transparent; }

.card-orange {
  border: 4px solid #fcd29a; }
  .card-orange .spot-card-title {
    color: #e59332; }
  .card-orange .spot-card-desc {
    background-color: #fffaf0; }
    .card-orange .spot-card-desc p {
      color: #555555; }
    .card-orange .spot-card-desc::after {
      border-color: #fffaf0 transparent transparent transparent; }

.card-rabbit {
  border: 4px solid #f2b3e8; }
  .card-rabbit .spot-card-title {
    color: #cc4ba9; }
  .card-rabbit .spot-card-desc {
    background-color: #fff3fc; }
    .card-rabbit .spot-card-desc p {
      color: #555555; }
    .card-rabbit .spot-card-desc::after {
      border-color: #fff3fc transparent transparent transparent; }
