@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  outline: none !important;
}
html {
  overflow-y: scroll;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

ol,
ul,
li {
  list-style: none;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}
a {
  color: #000000;
}
a:focus {
  outline: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/* フォーム初期化 */
input[type="text"],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}

textarea {
  resize: vertical;
}

input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body * {
  box-sizing: border-box;
}

/* flex */
.flex {
  display: flex;
}

.flex_between {
  display: flex;
  justify-content: space-between;
}

.flex_ctr {
  display: flex;
  justify-content: center;
}

.align_ctr {
  align-items: center;
}

.align_base {
  align-items: baseline;
}

.opa {
  transition: all 0.4s;
}

.opa:hover {
  opacity: 0.6;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-50 {
  margin-top: 50px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-150 {
  margin-top: 150px;
}

.pt-05 {
  padding-top:5px;
}
.pt-10 {
  padding-top:10px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-150 {
  padding-top: 150px;
}

.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-150 {
  margin-bottom: 150px;
}

.pb-70 {
  padding-bottom: 70px;
}
.pb-150 {
  padding-bottom: 150px;
}

.w-70{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.w-80{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.w-90{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.img-round {
  border-radius: 15px;   /* 好きな値 */
  display: block;        /* 余白/ズレ防止 */
}

.box-shadow {
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.08),
    0 -4px 12px rgba(0,0,0,0.05);
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
    .w-100-sp{
        width: 100%;  }
    .w-90-sp{
        width: 90%; margin-left: auto !important; margin-right: auto !important;
    }
}
