  .containerCom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 60%;
    margin: 20px 0;
    background-color: white;
  }

  .contact-form,
  .map {
    flex: 1 1 300px;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  textarea {
    height: 100px;
  }

  button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }

  button:hover {
    background-color: #0056b3;
  }

  .map iframe {
    width: 100%;
    height: 300px;
    border: none;
  }

  .center-text {
    font-family: arial;
    font-size: 24px;
    text-align: center;
    left: 40%;
  }

  .fontcolor {
    color: #2C3E50;
  }

  .backcolor {
    background-color: white;
    display: flex;
    /* 追加 */
    justify-content: center;
    /* 追加 */
    align-items: center;
    /* 追加 */
  }

  .center {
    text-align: center;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .backimage {
    background-image: url('../Image/IMG_2688.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .containeralt {
    text-align: left;
    margin: 0;
  }

  .image {
    width: 50%;
    float: right;
    margin-left: 30px;
    flex: 1;
    min-width: 300px;
  }

  .text {
    flex: 1;
    padding: 20px;
  }

  .title {
    font-size: 60px;
  }

  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom,
        #c4ece4,
        /* 上：深い緑みのティール */
        #a0dde5,
        /* 中央：元の色 */
        #c4ece4
        /* 下：落ち着いた緑系 */
      );
    margin: 0;
    padding: 0;
    min-height: 100vh;

  }

  .beauty-of-life {
    margin-top: 40px;
  }

  iframe {
    width: 100%;
    height: 20vw;
    border: none;
  }

  .content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .text {
    flex: 1;
    min-width: 300px;
  }

  .image img {
    width: 120%;
    height: 100%;
    border-radius: 8px;
  }

  .spacer {
    min-height: 50px;
  }

  @media (max-width: 768px) {
    .center-text {
      font-size: 18px;
    }

    .image img {
      width: 90%;
    }
  }

  .cookie-consent {
    display: none;
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease-in-out;
  }

  .cookie-consent.show {
    bottom: 0;
  }

  .cookie-consent-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto;
  }

  .cookie-consent p {
    margin: 0 0 1rem 0;
    padding-right: 1rem;
  }

  .cookie-consent-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .btn-close {
    background-color: transparent;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }

  @media (max-width: 768px) {
    .cookie-consent {
      display: block;
    }
  }