/**
* 共通
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --back-color: #ffffff;
    --font-color: #222222;
    --font-color-f: #ffffff;
}

html {
    background-color: var(--back-color);
    line-height: 1;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}


a {
    text-decoration: none;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.contents {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 8px;
}

section {
    padding: 8px;
}

img {
    width: 100%;
    display: block;
}

li {
    list-style: none;
}

.bp {
    display: inline-block;
}

hgroup {
    margin: 32px;
    text-align: center;
}

hgroup p {
    color:#0B318F;
    font-weight: bold;
    margin-bottom: 12px;
}

hgroup h1 {
    font-size: clamp(24px,6.5vw,32px);
}