* {
    font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ecf3dc;
}

.header {
    background-image: url("./img/header.png");
    width: 100%;
    height: 128px;
    color: white;
    font-size: 200%;
    font-weight: bold;
    text-shadow: 0px 0px 16px black;
    display: flex;
    padding-left: 32px;
    align-items: center;
}

.header span span {
    display: inline-block;
    white-space: nowrap;
}

.container {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    color: #181750;
}

.container h1 {
    margin: 0 32px;
}
.container .white-transparent {
    background-color:rgba(255,255,255,0.75);
    padding: 32px;
    width: 100%;
    color: black;
}

.container span.bordered {
    border: 1px solid black;
    padding: 0 8px;
}

.section .label {
    font-size: 120%;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.section .label2 {
    font-size: 180%;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.section .label .required{
    display: inline-block;
    border-radius: 16px;
    padding: 0px 4px;
    border: 1px solid #A21056;
    margin-bottom: 4px;
    color:#A21056;
    font-size: 14px;
}

.section {
    width: calc(80% + 64px);
    display: inline-block;
    margin: 16px 32px;
}

.section.name {
    width: 40%;
}

.section input[type=text], .section input[type=tel], .section select {
    font-size: 16px;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    color: #181750;
    border: 2px solid #181750;
    background: white;
}

.section input[type=text]:disabled {
    background: #bbbbbb;
}

.container button {
    background: #181750;
    padding: 8px 16px;
    border-radius: 16px;
    color: white;
    font-size: 150%;
    font-weight: bold;
    margin: 32px;
}
.container input[type=submit]:hover {
    background: white;
    color: #181750;
}

.footer {
    
    background: #8bb677;
    color: #f0ffff;
    font-weight: bold;
}

.footer-inside {
    max-width: min(100%, 1080px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.footer-inside div {
    padding: 32px;
    width: 100%;
}


@media screen and (max-width: 900px) {
    .header {
        height: 192px;
        font-size: 180%;
    }
    .section {
        margin: 16px;
        width: calc(100% - 32px);
    }
    
    .section.name {
        margin: 16px;
        width: calc(50% - 35px);
    }
}