@charset "UTF-8";
html {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    /*font-size: 62.5%;*/
    font-size: 0.66667vw;
    line-height: 1;
    font-weight: 500;
}
html * {
    font-weight: inherit;
    box-sizing: border-box; }
a {
    outline: none;
    color: inherit;
    transition: .5s;
}
a * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
a:focus, *:focus {
    outline: none;
}
img {
    width: 100%;
    height: auto;
}
img[src$=".svg"] {
    max-width: 100%;
}
.flex-box {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; 
    justify-content: space-between;
}
.flex-start {
    justify-content: flex-start;
}
.flex-end {
    justify-content: flex-end;
}
.align-center {
  align-items: center;
}

/*font
-----------------------------------------------------------------------------*/
.barlow {
  font-family: "Barlow Condensed", 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*PC共通
-----------------------------------------------------------------------------*/
@media screen and (min-width: 1501px)  {
html {
    font-size: 62.5%;
}
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
html {
    font-size: 0.66667vw;
}
}
@media screen and (min-width: 768px) {
.sp {
    display: none;
}
a:hover {
    opacity: .7;
}
p {
    font-size: 1.6rem;
    line-height: 1.75;
}
}
/*--------------------------endPC--------------------------------*/

/*SP共通
-----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
html {
    font-size: 1.33333vw;
}
.pc {
    display: none;
}
p {
    font-size: 2.8rem;
    line-height: 1.75;
}
}
/*--------------------------endSP--------------------------------*/