@charset "UTF-8";

html {
    font-size: 16px;
}
html, body {
    height: 100%;
}
body *, ::before, ::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 400;
    background-color: #fff;
    color: #000;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px;
}
@media (min-width: 768px) {
    .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 30px;
    }
}
header {
    background-color: #1a554b;
    border-bottom: #ead963 6px solid;
}
header .container {
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 0;
    /*padding-left: 76px;*/
    background-image: url("https://ksts0826.github.io/ChoiceApp/_common/images/logo.svg");
    background-repeat: no-repeat;
    background-size: 53px;
    background-position: 16px 10px;
}
@media (min-width: 768px) {
    header .container {
        min-height: 100px;
        padding-left: 120px;
        background-size: 80px;
        background-position: 30px 20px;
    }
}
header .container h1,
header .container h2 {
    margin: 0;
    color: #fff;
    line-height: 1;
}
header .container h1 {
    padding: 15px auto 0 ;
    border-bottom: 1px dotted #fff;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
header .container h2 {
    padding: 5px 0 0 0;
    font-size: 16px;
    font-weight: 400;
}
header .container h2 {
    padding: 5px 0 0 0;
    font-size: 12px;
    font-weight: 400;
}
@media (min-width: 768px) {
    header .container h1 {
        padding: 30px 0 5px 0;
        font-size: 24px;
    }
    header .container h2 {
        padding: 6px 0 0 0;
        font-size: 14px;
    }
}
main {
    min-height: calc(100% - 156px);
}
main .container {
    margin: 0 auto;
    background-color: #fff;
    font-size: 16px;
}
footer {
    background-color: #1a554b;
}
footer .container {
    min-height: 50px;
    padding-top:10px;
    padding-bottom:10px;
    color: #fff;
    font-size: 14px;
    text-align: left;
}
@media (min-width: 768px) {
    footer .container {
        min-height: 50px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
footer .container p {
    margin: 0;
}
a {
    color: #ed8a29;
    text-decoration: none;
}
a:hover {
    color: #ffb974;
    text-decoration: underline;
}
/*
input[type="number"] {
    font-size: 16px;
}
*/

input[type="text"] {
    font-size: 16px;
    position: relative;
}
input[type="submit"] {
    /* padding: 0em 0em;*/
    font-size: 20px;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #000;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 100px;
    margin: 10px;
    width: 200px; /* 幅を調整（必要に応じて調整） */
    height: 50px; /* 高さを調整 */
    text-align: center; /* テキストを中央揃えにする */
  }
  /*
  .bn5:before {
    content: "";
    background: linear-gradient(
      45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowingbn5 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
  }
  
  @keyframes glowingbn5 {
    0% {
      background-position: 0 0;
    }
    50% {
      background-position: 400% 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  
  .bn5:active {
    color: #000;
  }
  
  .bn5:active:after {
    background: transparent;
  }
  
  .bn5:hover:before {
    opacity: 1;
  }
  
  .bn5:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #191919;
    left: 0;
    top: 0;
    border-radius: 10px;
  }
*/