
@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: normal;
    list-style-type: none;
    box-sizing: border-box;
}

input, button, textarea {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    font-family: 'Gudea', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    width: 100%;
    height: 80px;
    background: rgba(90,90,90,0.1);
    border: 1px solid #dfdfdf;
    padding: 10px;
    font-size: 11px;
}

strong {
    font-weight: bold;
}

a {
    text-decoration: underline;
    color: #d3d3d3;
}

a:hover {
    text-decoration: none;
    color: #f6ad49;
}

p {
    margin-bottom: 15px;
}

html,body,.inp {
    height: 100%;
}


.inp {
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    line-height: 1.6;
    font-size: 12px;
    font-family: 'Bellefair',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ 明朝", serif;
    color: #666;
    word-break: break-all;
    text-align: justify;
    color: #000;
}

article {
    width: 80%;
    margin: 0 auto;
}

header h1 {
    font-family: 'Libre Barcode 39', cursive;
    text-align: center;
    font-size: 40px;
}

footer span,
header span {
    display: block;
    font-family: 'Hammersmith One', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 4px;
    margin: -25px 0 30px;
}

p.desc {
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
}

form {
    max-width: 220px;
    margin: 0 auto 25px;
}

form input[type=text],
form input[type=submit] {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 1.8;
    background: #f2f2f2;
    margin-bottom: 15px;
    padding: 3px 10px;
    border: none !important;
}

form input[type=text] {
    color: #888;
    letter-spacing: 1.5px;
    height: 32px;
    background: #f2f2f2;
}

form input[type=submit] {
    margin-top: 20px;
    background: #1A4DA0;
    color: #fff;
    letter-spacing: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.list {
    line-height: 3.5;
    margin: 35px auto 0;
}

main {
    max-width: 550px;
    margin: 0 auto 40px;
   text-align: center;
}

h2 span,
.list span {
    margin-right: 18px;
    font-family: 'Hammersmith One', sans-serif;
    font-size: 11px;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 22px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 10;
}

h2 span::before,
.list span::before {
    position: absolute;
    z-index: -1;
    top: 0;
    display: block;
    width: 22px;
    height: 22px;
    content: '';
    background: #00ac97;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.list span:nth-child(even)::before {
    background: #cfcfcf;
}

.list span::after {
    display: block;
    content: '';
    width: 1px;
    height: 20px;
    border-left: 1px dashed #cfcfcf;
    position: relative;
    top: 7px;
    left: 10px;
}

.list a {
    border-bottom: 1px solid #efefef;
    padding: 0 3px;
    position: relative;
    top: 2px;
}

h2 span {
    display: block;
    margin: 0 auto 20px;
}

h2 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.story {
    max-width: 500px;
    font-size: 13px;
    line-height: 1.9;
    margin: 60px auto 0;
}

.story section {
    margin-top: 50px;
}

h3 {
    position: relative;
    padding: 2px 5px 0 8px;
    border-left: 4px solid #dfdfdf;
    font-weight: bold;
    margin: 40px 0 5px;
}

h3::before {
  position: absolute;
  left: -4px;
  bottom: 0;
  content: '';
  width: 4px;
  height: 50%;
  background-color: #2a6edc;
}