@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

body {
    font-family: "Noto Serif JP", sans-serif, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic";
    font-weight: 400;
    font-style: normal;
    color: #fff;
    background: linear-gradient(135deg, #76a4c5, #d4a5d4);
    transition: background 0.3s linear;
}

/* 説明 */
.rose_explanation {
    padding: 1.5rem 2rem;
    margin-top: 200px; 
}
.rose_explanation p{
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing:0.1em;
    line-height: 1.5;
}
.rose_explanation h2 {
    font-size: 1.6rem;
    font-weight: bold;
    padding-bottom: 1rem;
    letter-spacing:0.1em;
}

.hush {
    font-size: .9rem !important;
    padding-top: 1rem;
    padding-bottom: 1.8rem;
}

.gg-container{
    padding: 1.5rem 1rem;
}

/*roses btn */
.button_link_return{
    display: block;
}



.button_link_return a {
    text-align: center;
    transform: rotate(5deg);
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(135deg, #76a4c5, #d4a5d4);
    width: 220px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5em;
    margin: 2.4rem auto;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    transition: all 0.4s ease;
    cursor: pointer;
    /* clip-pathで水滴形状 */
    clip-path: polygon(
      50% 0%,
      85% 15%,
      100% 40%,
      80% 80%,
      50% 100%,
      20% 80%,
      0% 40%,
      15% 15%
    );
    /* 内側のシャドウ */
    box-shadow: inset 0 4px 10px rgba(255, 255, 255, 0.3),
                inset 0 -4px 10px rgba(0, 0, 0, 0.2);
    /* 外側の影 */
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.button_link_return a:hover {
    transform: rotate(0);
    background: transparent;
    background: linear-gradient(135deg, #8dc4eb9d, #f1b3f18f);
    filter: drop-shadow(0 16px 40px 10px rgba(0, 0, 0, 0.6));
    /*強い影を強調*/-webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -webkit-filter: drop-shadow(0 16px 40px 10px rgba(0, 0, 0, 0.6));
}

/* footer */
  footer {
    padding: 5em 2em 5em  2em !important;
    background-image: none !important;
  }
  
  /* cookie */
#ga-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f1f1f1;
  color: #333;
  padding: 15px 20px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

#ga-close-btn {
  background-color: #ccc;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 13px;
  border-radius: 4px;
}

#ga-close-btn:hover {
  background-color: #aaa;
}