@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;
}
.flex-center {
    justify-content: center;
}
.align-center {
  align-items: center;
}

/*font
-----------------------------------------------------------------------------*/
.canto {
  font-family: canto, serif;
  font-weight: 500;
  font-style: normal;
}
.canto-bold {
  font-family: canto, serif;
  font-weight: 700;
  font-style: normal;
}
.mincho {
  font-family: 'Noto Serif JP', 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 !important;
}
a:hover {
    opacity: .7;
}
.wrap,
.wrap-s  {
    width: 100%;
    padding: 0 4rem;
    margin: 0 auto;
}
.wrap  {
    max-width: 1680px;
}
.wrap-s  {
    max-width: 1280px;
}
p {
    font-size: 1.4rem;
    line-height: 1.75;
}
}
/*--------------------------endPC--------------------------------*/

/*SP共通
-----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
html {
    font-size: 50%;
}
.pc {
    display: none !important;
}
.wrap-l,
.wrap,
.wrap-s  {
    max-width: 100%;
    width: 100%;
    padding: 0 5%;
}
p {
    font-size: 1.5rem;
    line-height: 1.75;
}
}
/*--------------------------endSP--------------------------------*/