:root {
  --blue: #005aff;
  --red: #ff4b00;
  --yellow: #fff100;
  --orange: #f6aa00;
  --green: #03af7a;
  --purple: #990099;
  --black: #000;
  --black-rgb: 0, 0, 0;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --dark-gray: #333;
  --gray: #CCC;
  --light-gray: #EEE;
}

.dowish-content-page {
  background: #f7f8fb;
  color: var(--dark-gray);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
}

.content-header,
.content-footer {
  background: var(--black);
  color: var(--white);
  padding: 20px clamp(20px, 5vw, 56px);
}

.content-logo img {
  display: block;
  width: 132px;
  height: auto;
}

.site-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) 0;
}

.content-article,
.content-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 48px);
}

.content-card + .content-card {
  margin-top: 20px;
}

.content-article h1,
.site-main > h1 {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.35;
}

.content-card h2 {
  margin: 0 0 12px;
  font-size: 2.4rem;
  line-height: 1.4;
}

.content-card a {
  color: var(--black);
  text-decoration: none;
}

.entry-content > *:first-child,
.entry-summary > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child,
.entry-summary > *:last-child {
  margin-bottom: 0;
}

.entry-meta {
  margin-bottom: 24px;
  color: #666;
  font-size: 1.4rem;
}

.content-footer {
  text-align: center;
}

.content-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 12px;
}

.content-footer a {
  color: var(--white);
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: auto;
}

body {
  color: var(--black);
  font-size: 1.5rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

button {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.inner {
  max-width: 1200px;
  margin: auto;
}

.page {
  margin: 4rem auto 6.4rem;
}

.App {
  text-align: center;
}

@keyframes auroraAnimation {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.pc {
  display: block;
}
.sp {
  display: none;
}

html, body, div, span, applet, object, iframe, figure,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption,
tbody, tfoot, thead, table, label, tr, th, td {
margin: 0;
padding: 0;
border: 0;
font-weight: normal;
outline: 0;
vertical-align: baseline;
list-style: none;
line-height: 1;
}

* {
box-sizing: border-box; }

select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }

a {
    color: inherit;
    text-decoration: none; }
    a:hover {
    color: inherit;
    text-decoration: none; }

p:empty {display: none;}

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

/* ボタンとsubmitのリセット */
button, input[type="submit"] {
    color: var(--black);
    background-color: var(--white); /* ボタンの背景色を指定 */
    border: none; /* デフォルトのボーダーを削除 */
    -webkit-appearance: none; /* SafariなどWebKit系ブラウザのデフォルトスタイルをリセット */
    appearance: none;
    outline: none; /* フォーカス時のアウトラインを制御したい場合は指定 */
    cursor: pointer; /* ボタンにホバー時の手のひらカーソルを追加 */
}

/* プルダウンメニューのリセット */
select {
    color:  var(--black); /* テキストカラーを明示的に黒に設定 */
    background-color: var(--white); /* 背景色を指定 */
    border: none;
    padding: 5px; /* 内側余白を調整 */
    -webkit-appearance: none; /* Webkit系のデフォルトスタイルをリセット */
    -moz-appearance: none; /* Firefoxのデフォルトスタイルをリセット */
    appearance: none;
    outline: none; /* フォーカス時のアウトラインを制御 */
}

button:focus, input[type="submit"]:focus, select:focus {
    outline: none;
}

.add-wish__title {
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 6.4rem;
    font-weight: 800;
}

.main-btn_box {
    position: relative;
}

.main-btn_box .btn {
    display: block;
    width: 200px;
    height: 50px;
    font-size: 16px;
    border: none;
    border-radius: 39px;
    text-align: center;
    color: var(--white);
    background-color: var(--black);
    border: 3px solid var(--black);
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
}

.main-btn_box .btn:hover {
    box-shadow: 0 0 20px var(--gray);
    color: var(--white);
    background-color: var(--black);
}


@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .page {
    margin: 4rem auto;
  }

.add-wish__title {
    font-size: 4.8rem;
    margin-bottom: .4rem;
}

}
