@charset "UTF-8";

html {
    font-size: 16px;
    font-family: "Outfit", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
    /*ゴシック */
    /* font-family: 'Noto Sans JP', "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
    /* 明朝 */
    /* font-family: 'Noto Serif JP', serif; */
    color: #000;
    font-weight: 400;
    letter-spacing: 0.01rem;
    line-height: 1.76;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: #222b3c;
  font-size: 16px;
  font-family: "Outfit", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.text-xs {
    font-size: 0.6em;
}

.text-sm {
    font-size: 0.8em;
}

.text-lg {
    font-size: 1.2em;
}

.text-xl {
    font-size: 1.4em;
}

.text-red {
    color: #8b722b;
}

.text-blue {
    color: #154891;
}

.text-orange {
    color: #f08b1b;
}

.text-orange-deep {
    color: #f37429;
}


/* コンテンツ幅 */
.inner {
    max-width: 1080px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.logo {
    position: absolute;
    top: 5%;
    left: 5%;
    background: #fff;
    padding: 15px 50px;
    border-radius: 100px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 25%);
}

.logo img {
    max-width: 290px;
    height: auto;
    width: 100%;
}

.br-sp {
    display: none!important;
  }

.br-pc {
    display: block!important;
}

.block-pc {
    display: block !important;
}

.block-sp {
    display: none !important;
}

@media screen and (max-width: 680px) {
    .br-sp {
        display: block!important;
    }

    .br-pc {
        display: none!important;
    }

    .block-sp {
        display: block !important;
    }

    .block-pc {
        display: none !important;
    }

    .logo {
        left: unset;
    }
}