: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;
}

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;
}

}