@charset "UTF-8";
* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #252525;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

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

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul {
  list-style: none;
}

p {
  line-height: 1.6;
}

/* PC/SPでは消す汎用Class */
.hidden-mobile {
  display: none !important;
}

@media (min-width: 700px) {
  .hidden-desktop {
    display: none !important;
  }
  .hidden-mobile {
    display: block !important;
  }
}
.wrap {
  position: relative;
  margin: 0 auto;
  padding-top: 30px;
}
@media (min-width: 700px) {
  .wrap {
    max-width: 1000px;
  }
}

.cation {
  display: inline-block;
  margin-left: 1em;
  text-indent: -1em;
}
.cation::before {
  content: "※";
}

.applp .banner {
  display: block;
  width: min(100%, 800px);
  margin: auto;
}

.header {
  padding: 10px 15px;
}
.header .logo {
  display: block;
  width: 64px;
}
@media (min-width: 700px) {
  .header {
    padding: 15px 20px;
  }
  .header .logo {
    width: 80px;
  }
}

/* フッター */
.footer {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #ffffff;
  background-color: #777d8f;
  font-size: 13px;
  text-align: center;
}