@charset "utf-8";

/***
 * reset
 */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  font-family: inherit;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1;
  font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}



/***
 * common
 */

:root {
  --base_color: #707070;
  --point_color: #FF6F61;
  --submit_color: #5A378A;
  --submit_disabled_color: #ccc;
  --nav_font: "Josefin Sans", sans-serif;
}

html,
body {
  width: 100%;
}

body {
  position: relative;
  color: var(--base_color);
  font: 300 14px/1 "Noto Sans JP", "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

.wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  overflow: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
}

a:hover {
  color: var(--point_color);
}

a:hover img {
  opacity: .7;
}



/***
 * header, footer
 */

header,
footer {
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .4);
}

header {
  position: absolute;
}



/***
 * main
 */

.main {
  padding: 2rem;
}

.main.top {
  padding-top: 100%;
  background: url(../img/site/mainv.jpg) top left +15%/cover no-repeat;
}

#link_icon {
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, .8);
}

#link_icon li {
  display: flex;
  align-items: center;
}

#link_icon li:not(:first-child) {
  margin-top: 1rem;
}

#link_icon a {
  display: block;
  margin-right: 1rem;
}

#link_bnr ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: -.5rem;
}

#link_bnr li {
  margin: .5rem;
}

#link_bnr a {
  display: block;
  width: 100%;
  max-width: 320px;
}

#link_bnr img {
  width: 100%;
  height: auto;
}



/***
 * policy
 */

#policy {
  width: 720px;
  max-width: 100%;
  margin: 5rem auto 0;
  padding: 1rem;
  box-sizing: border-box;
}

#policy ul:not(:first-child) {
  margin-top: 1em;
}

#policy ul {
  margin-left: 1em;
  padding-left: 1.5em;
  list-style: disc;
}

#policy li:not(:first-child) {
  margin-top: .5em;
}

#policy h2 {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 240%;
  line-height: 1.4;
  font-family: var(--nav_font);
}

#policy h3 {
  margin-bottom: .5em;
  padding-bottom: .5em;
  font-weight: bold;
  font-size: 120%;
  line-height: 1.4;
  font-family: var(--nav_font);
  border-bottom: 1px solid var(--base_color);
}

#policy h3:not(:first-child) {
  margin-top: 4em;
}

#policy h4,
#policy h5 {
  margin-bottom: .5em;
  font-weight: bold;
  line-height: 1.4;
  font-family: var(--nav_font);
}

#policy h4:not(:first-child),
#policy h5:not(:first-child) {
  margin-top: 2em;
}

#policy p {
  line-height: 1.6;
}