html {
    font-size: 100%;
}

body {
    font-size: 1.0rem;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*共通*/

.wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.inner {
    max-width: 960px;
}

.jp__light {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.jo__regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.jp__bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.jp__ultrabold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.klee__regular {
    font-family: "Klee One", cursive;
    font-weight: 400;
    font-style: normal;
}

.klee__bold {
    font-family: "Klee One", cursive;
    font-weight: 600;
    font-style: normal;
}

.emphasize {
    font-size: 1.2rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.site-header__nav-text {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/*ページタイトル*/
.page-title {
    background-image: url(images/menu-bg.png);
    background-color: rgba(255,255,255,0.4);
    background-blend-mode:lighten;
    background-size: cover;
    height:  240px;
    margin-bottom: 4rem;
}

.page-title h1 {
    font-size: 2.5rem;
    text-align: center;
    vertical-align: center;
    line-height: 160px;
}

.page-title ul {
    display: flex;
    flex: 1;
    column-gap: 1rem;
}

.page-title ul li {
    max-width:20%;
}

/*セクションタイトル*/
.section-title {
    display: inline-block;
    /*width: 18rem;*/
    font-size: 1.7rem;
    background: url(images/title_underline.png) repeat-x 100% 100%;
    padding-bottom: 4px;
    padding-right: 1rem;
    white-space: nowrap;
    color: green;
    text-align: left;
    margin: 2rem auto 2rem 2rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.section-title::before {
    content: "";
    display:inline-block;
    background-image: url(images/brash.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.3rem;
    vertical-align: sub;
}

.br__responsive {
    display: none;
}

/*ブレークポイントは768pxに設定*/
@media screen and (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    .section-title {
        display: block;
        width: 20rem;
        text-align: center;
        margin: 2rem auto;
        padding: 1rem;
    }

    .br__responsive {
        display:  block;
    }

    .page-title {
        height: 200px;
    }

    .page-title h1 {
        line-height: 100px;
        font-size: 2rem;
    }

    .page-title ul li {
        max-width:40%;
    }
}

.multiline {
    white-space: pre-line;
}