@charset "UTF-8";

/*------------------------------------
  全体設定　ここから
-------------------------------------*/
/* 初期設定 */
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.22;
  font-family: 'Noto Sans JP', sans-serif;
}

body,
header,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a,
dl,
dd,
dt,
div,
span,
time,
figure,
figcaption,
article,
section,
aside {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-weight: normal;
  letter-spacing: .15rem;
}
h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
h2.underline{
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #8B1F0D;
}
h3 {
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  line-height: 1.43;
}
p{
  font-size: 1.8rem;
}
img,
svg {
  vertical-align: bottom;
  width: 100%;
}
a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
ul li {
  list-style-type: none;
}

.flex-container{
  display: flex;
  flex-wrap: wrap;
}
.sp-newline,
.sp-only{
  display: none;
}
@media screen and (max-width: 570px){
  body {
    font-size: 1.6rem;
  }
  h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  h3{
    font-size: 1.6rem;
  }
  p,li{
    font-size: 1.5rem;
  }
  .pc-newline,
  .pc-only{
    display: none;
  }
  .sp-newline,
  .sp-only{
    display: block;
  }
}
/* 初期設定----------------------------------------------- */