/*
 * ==============================================================================
 * 1. Keyframes (アニメーション定義)
 * ==============================================================================
 */

/* ハンバーガーメニュー オープンアニメーション */
@-webkit-keyframes top-open {
    0% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
        -webkit-transform-origin: center;
        transform-origin: center
    }
    50% {
        -webkit-transform: translateY(8px) rotate(0deg);
        transform: translateY(8px) rotate(0deg)
    }
    to {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg)
    }
}
@keyframes top-open {
    0% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
        -webkit-transform-origin: center;
        transform-origin: center
    }
    50% {
        -webkit-transform: translateY(8px) rotate(0deg);
        transform: translateY(8px) rotate(0deg)
    }
    to {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg)
    }
}
@-webkit-keyframes bottom-open {
    0% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
    50% {
        -webkit-transform: translateY(-8px) rotate(0deg);
        transform: translateY(-8px) rotate(0deg)
    }
    to {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg)
    }
}
@keyframes bottom-open {
    0% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
    50% {
        -webkit-transform: translateY(-8px) rotate(0deg);
        transform: translateY(-8px) rotate(0deg)
    }
    to {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg)
    }
}

/* ハンバーガーメニュー クローズアニメーション */
@-webkit-keyframes top-close {
    0% {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg)
    }
    50% {
        -webkit-transform: translateY(8px) rotate(0deg);
        transform: translateY(8px) rotate(0deg)
    }
    to {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
}
@keyframes top-close {
    0% {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg)
    }
    50% {
        -webkit-transform: translateY(8px) rotate(0deg);
        transform: translateY(8px) rotate(0deg)
    }
    to {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
}
@-webkit-keyframes bottom-close {
    0% {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg)
    }
    50% {
        -webkit-transform: translateY(-8px) rotate(0deg);
        transform: translateY(-8px) rotate(0deg)
    }
    to {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
}
@keyframes bottom-close {
    0% {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg)
    }
    50% {
        -webkit-transform: translateY(-8px) rotate(0deg);
        transform: translateY(-8px) rotate(0deg)
    }
    to {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
}

/* オーバーレイ表示/非表示アニメーション */
@-webkit-keyframes overlay-show {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }
    10% {
        width: 100%;
        height: 100%;
        opacity: 0
    }
    to {
        width: 100%;
        height: 100%;
        opacity: .5
    }
}
@keyframes overlay-show {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }
    10% {
        width: 100%;
        height: 100%;
        opacity: 0
    }
    to {
        width: 100%;
        height: 100%;
        opacity: .5
    }
}
@-webkit-keyframes overlay-hide {
    0% {
        width: 100%;
        height: 100%;
        opacity: .5
    }
    90% {
        width: 100%;
        height: 100%;
        opacity: 0
    }
    to {
        width: 0;
        height: 0;
        opacity: 0
    }
}
@keyframes overlay-hide {
    0% {
        width: 100%;
        height: 100%;
        opacity: .5
    }
    90% {
        width: 100%;
        height: 100%;
        opacity: 0
    }
    to {
        width: 0;
        height: 0;
        opacity: 0
    }
}

/*
 * ==============================================================================
 * 2. Reset / Base Styles (リセット・基本スタイル)
 * ==============================================================================
 */

/* グローバルナビゲーションリンクの矢印装飾 */
.gnav-links__item::after {
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    content: "";
    width: .4rem;
    height: .4rem;
    position: absolute;
    right: 1.8rem;
    border-top: 1px solid #444;
    border-right: 1px solid #444;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

/* CSSリセット (全要素) */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}

/* 画像設定 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom
}

/* HTML5ブロック要素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block
}

/* body, htmlの高さ設定 */
body,
html {
    height: 100%
}

/* bodyの基本スタイル */
body {
    /*overflow-x: hidden;*/
    -webkit-text-size-adjust: 100%;
    color: #444;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 1.35rem;
    line-height: 1.5
}

/* リストスタイル */
ol,
ul {
    list-style: none
}

/* 引用符リセット */
blockquote,
q {
    quotes: none
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: none
}

/* テーブルリセット */
table {
    border-collapse: collapse;
    border-spacing: 0
}

/* htmlの基準フォントサイズ */
html {
    font-size: 62.5%
}

/* 全要素にbox-sizing: border-boxを適用 */
body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

/* リンクの装飾 */
a {
    text-decoration: none;
    color: inherit
}

/* フォント設定 */
@font-face {
    font-family: 'NotoSansCJKjp Medium';
    font-style: normal;
    font-weight: 500;
    src: url(/common/font/NotoSansCJKjp-Medium.woff2) format("woff2"), url(/common/font/NotoSansCJKjp-Medium.woff) format("woff");
    font-display: swap
}

/*
 * ==============================================================================
 * 3. Layout / Parts (レイアウト・パーツ)
 * ==============================================================================
 */

/* ヘッダー */
.header {
    padding: 1rem 1.5rem;
    border-top: .2rem solid #e50012;
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .15);
    position: relative;
    z-index: 10
}
.header__inner {
    height: 45px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.header__logo {
    display: inline-block;
    width: 135px;
    height: auto;
    margin-right: auto
}

/* フッター */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #e50012
}
.footer__bottom {
    color: #fff
}
.footer__copyright {
    font-size: .6em
}

/* メインコンテンツ */
main {
    margin-left: auto;
    margin-right: auto;
    color: #6a6b6b
}

/* ナビゲーションオープン時の<html>, <body> */
html.is-nav-open {
    overflow: auto;
    height: 100%
}
html.is-nav-open body {
    overflow: hidden;
    height: 100%
}

/* PCナビゲーション */
.gnav-links__item--search::after,
.header__nav-pc {
    display: none
}
.nav-pc__item {
    display: inline-block;
    margin-left: 2rem;
    letter-spacing: -.02rem
}
.nav-pc__item:last-child {
    margin-left: 1.5rem
}
.nav-pc__link {
    display: block;
    font-size: 1.15rem;
    color: #444
}

/* モバイルナビゲーション (ハンバーガーメニュー) */
.header__nav {
    width: calc(55px - 1.5rem);
    height: 45px;
    border-left: 1px solid #ccc
}
.gnav,
.gnav__ham {
    position: absolute;
    right: 0
}
.gnav {
    top: 0
}
.gnav__ham {
    top: 1rem;
    display: inline-block;
    width: 55px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 30;
    cursor: pointer
}
.gnav__part {
    display: block;
    width: 21px;
    height: 3px;
    background-color: #e50012;
    border-radius: 1px;
    margin: 0 auto 5px
}
.gnav__part:last-child {
    margin-bottom: 0
}
.gnav__inner {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 70px;
    padding-bottom: 100px;
    position: fixed;
    width: 300px;
    height: 100vh;
    top: 0;
    right: -300px;
    background: #fff;
    z-index: 20;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

/* メニューオープン時のスタイル */
.is-open .gnav__ham span:nth-of-type(1) {
    -webkit-animation: top-open .5s;
    animation: top-open .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}
.is-open .gnav__ham span:nth-of-type(2) {
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}
.is-open .gnav__ham span:nth-of-type(3) {
    margin-bottom: 0;
    -webkit-animation: bottom-open .5s;
    animation: bottom-open .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}
.is-open .gnav__inner {
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px)
}
.is-open + .overlay {
    -webkit-animation: overlay-show .5s forwards;
    animation: overlay-show .5s forwards
}

/* メニュークローズ時のスタイル */
.is-close .gnav__ham {
    -webkit-animation: ham-front .5s;
    animation: ham-front .5s
}
.is-close .gnav__ham span:nth-of-type(1) {
    -webkit-animation: top-close .5s forwards;
    animation: top-close .5s forwards
}
.is-close .gnav__ham span:nth-of-type(2) {
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}
.is-close .gnav__ham span:nth-of-type(3) {
    -webkit-animation: bottom-close .5s forwards;
    animation: bottom-close .5s forwards
}
.is-close .gnav__inner {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}
.is-close + .overlay {
    -webkit-animation: overlay-hide .5s forwards;
    animation: overlay-hide .5s forwards
}

/* オーバーレイ */
.overlay {
    background: #333;
    display: block;
    width: 0;
    height: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5
}

/* グローバルナビゲーションリスト */
.gnav-list {
    font-size: 1.5rem
}
.gnav-list__category {
    padding: .6rem 1.6rem;
    background-color: #e50012;
    color: #fff;
    letter-spacing: .04em;
    border-bottom: 1px solid #ccc
}
.gnav-links__item {
    border-bottom: 1px solid #ccc;
    position: relative
}
.gnav-links__link {
    display: block;
    padding: 1.1rem 3rem 1.1rem 1.8rem;
    background-size: 5px 7px
}

/* 検索フォーム */
input::-ms-clear {
    visibility: hidden
}
.search__btn {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    outline: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}
.search {
    display: block
}
.search--gray {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid #e7e7e7;
    background: #f2f2f2
}
.search__form {
    position: relative;
    overflow: hidden
}
.search__text {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1.6rem;
    padding: 1.2rem 3.2rem 1.2rem 1rem;
    outline: 0;
    background: #fff
}
.search__text::-webkit-input-placeholder {
    color: #ccc
}
.search__text:-ms-input-placeholder,
.search__text::-ms-input-placeholder {
    color: #ccc
}
.search__text::placeholder {
    color: #ccc
}
.search__btn {
    margin-right: 0;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-tap-highlight-color: transparent
}
.search__magnify {
    display: block;
    width: 42px;
    height: 45px;
    background: #999;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}
.search__magnify::before {
    content: "検索";
    color: #fff;
    letter-spacing: .08em;
    line-height: 45px;
    font-size: 1.1rem
}
.gnav-links__item--search .search {
    margin: 1.7rem;
    padding-left: 0;
    padding-right: 0
}
.container,
.gnav-links__item--search .search__form {
    position: relative;
    overflow: hidden
}
.container {
    width: 100%;
    min-height: 100%;
    padding-bottom: 45px
}
.course__top main {
    padding-bottom: 0
}

/* mainコンテンツ内のリンク・ボタン */
main a {
    text-decoration: underline
}
main a:hover {
    opacity: .7
}
main a,
main button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, .1)
}
.cv-block ::after,
.cv-block ::before,
main ::after,
main ::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

/* 共通ユニット (最大幅・パディング) */
.unit {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

/* CVブロック (コンバージョン、問い合わせ誘導ブロック) */
.cv-block {
    padding: 15px 0;
    background-color: #f2f0eb;
    color: #6a6b6b
}
.cv-block:not(.cv-block--top) {
    margin-top: 1rem;
    border-top: 1px solid #ccc
}
.cv-block__catch {
    margin-bottom: 1rem;
    font-family: 'NotoSansCJKjp Medium', sans-serif;
    font-size: 1.8rem;
    text-align: center
}
.cv-list__btn,
.cv-list__btn--request,
.cv-list__btn--select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-align: center;
    text-decoration: none;
    letter-spacing: .2rem;
    -webkit-box-shadow: 2px 3px 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 2px 3px 5px 0 rgba(0, 0, 0, .2)
}
.cv-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto
}
.cv-list--single {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}
.cv-list__item {
    width: 49.27536%
}
.cv-list__btn {
    position: relative;
    height: 56px;
    border-radius: 36px
}
.cv-list__btn::after {
    left: 4px;
    top: 4px;
    width: calc(100% - 4px * 2);
    height: calc(100% - 4px * 2);
    border-radius: 36px;
    border: 1px solid #fff;
    display: block;
    position: absolute;
    content: ""
}
.cv-list__btn--select {
    background: #ff8a00
}
.cv-list__btn--request {
    background: #99b11b
}
.cv-list__text {
    display: block;
    width: 100%;
    background: url(/course/common/images/icon_link_btn.svg) no-repeat right 12px center;
    background-size: 10.157px 9.0545px
}

/* 注釈ブロック */
.annotation-block {
    margin-bottom: 2rem
}
.cv-block--top + .annotation-block {
    margin-bottom: 0
}
.annotation-block__title {
    margin-top: 20px;
    padding: 10px;
    background: #e66866;
    color: #fff;
    font-size: 1.8rem
}
.annotation-block__contents {
    padding: 10px 15px;
    background: #f2f0eb;
    font-size: 1.4rem
}

/* 診断ブロック */
.diagnosis-block {
    padding-bottom: 3.5rem
}
.diagnosis-block__catch {
    margin-bottom: 1rem;
    font-family: 'NotoSansCJKjp Medium', sans-serif;
    font-size: 1.8rem;
    text-align: center
}

/* テキスト装飾ユーティリティ */
.em-text {
    color: #e25452
}
.strong-text {
    font-weight: 700
}
.small-text {
    font-size: 1.4rem
}
.plane-text {
    font-size: 1.6rem;
    line-height: 1.55556
}
.break-text {
    display: block
}

/* マージンユーティリティ */
.u-mt0 {
    margin-top: 0 !important
}
.u-mt1 {
    margin-top: 1em
}
.u-mb0 {
    margin-bottom: 0 !important
}
.u-mb1 {
    margin-bottom: 1em
}

/* サイズ・太さユーティリティ */
.u-size90 {
    font-size: 90%
}
.u-size110 {
    font-size: 110%
}
.u-bold {
    font-weight: 700
}

/* テキストアラインユーティリティ */
.u-tac {
    text-align: center
}
.u-tar {
    text-align: right
}
.u-tal {
    text-align: left
}

/* ページトップボタン */
.pagetop {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    width: 60px;
    margin-top: 2rem;
    padding: 2px 2px 4px;
    border-radius: 100%;
    background: #cdc4b3;
    text-align: center
}
.pagetop__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 54px;
    padding-top: 16px;
    border-radius: 100%;
    background: url(/course/common/images/icon_pagetop_btn.svg) no-repeat center top 12px #fff;
    font-size: 1.2rem
}
.pagetop__btn:hover {
    opacity: .7
}

/*
 * ==============================================================================
 * 4. Media Queries (ブレイクポイント)
 * ==============================================================================
 */

/* 375px以上 (iPhone 6/7/8/X Plusなど) */
@media screen and (min-width: 375px) {
    html {
        font-size: 67.5%
    }
    body {
        font-size: 1.4rem
    }
    .search__magnify {
        width: 48px;
        height: 49px
    }
    .search__magnify::before {
        line-height: 49px
    }
    .unit {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .cv-list__btn {
        font-size: 1.38889rem
    }
    .annotation-block__title {
        font-size: 1.66667rem
    }
    .annotation-block__contents,
    .small-text {
        font-size: 1.2963rem
    }
    .plane-text {
        font-size: 1.48148rem
    }
    .pagetop__btn {
        font-size: 1.11111rem
    }
}

/* 414px以上 (iPhone Plus/Maxなど) */
@media screen and (min-width: 414px) {
    .header {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .header__nav {
        width: calc(55px - 2rem)
    }
    .search {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .plane-text {
        font-size: 1.66667rem
    }
}

/* 568px以上 */
@media screen and (min-width: 568px) {
    html {
        font-size: 72.5%
    }
    .gnav-list {
        font-size: 1.3rem
    }
    .search__form {
        width: 445px;
        margin-left: auto;
        margin-right: auto
    }
    .search__magnify {
        width: 53px;
        height: 53px
    }
    .search__magnify::before {
        line-height: 53px
    }
    .gnav-links__item--search .search__form {
        width: 100%;
        margin-left: 0;
        margin-right: 0
    }
    .cv-list__btn {
        font-size: 1.2931rem
    }
    .annotation-block__title {
        text-align: center;
        font-size: 1.36364rem
    }
    .annotation-block__contents,
    .small-text {
        font-size: 1.2069rem
    }
    .plane-text {
        font-size: 1.55172rem
    }
    .pagetop__btn {
        font-size: 1.03448rem
    }
}

/* 768px以上 (タブレット - 縦向き) */
@media screen and (min-width: 768px) {
    html {
        font-size: 82.5%
    }
    .header {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-top-width: .4rem
    }
    .header__nav-pc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .nav-pc__link:active,
    .nav-pc__link:hover {
        text-decoration: underline
    }
    .header__nav {
        display: none
    }
    .gnav__ham {
        top: 1.8rem
    }
    .gnav__part {
        width: 23px
    }
    .gnav-list {
        font-size: 1.2rem
    }
    .search__magnify {
        width: 57px;
        height: 57px
    }
    .search__magnify::before {
        line-height: 57px;
        font-size: 1.2rem
    }
    .cv-block {
        padding: 30px 0
    }
    .cv-block:not(.cv-block--top) {
        border-top-width: 2px
    }
    .cv-list {
        max-width: 810px
    }
    .cv-list__item {
        max-width: 390px
    }
    .cv-list__btn {
        height: 85px;
        border-radius: 38px;
        font-size: 1.81818rem
    }
    .cv-list__btn::after {
        left: 5px;
        top: 5px;
        width: calc(100% - 5px * 2);
        height: calc(100% - 5px * 2)
    }
    .cv-list__text {
        background-position: right 28px center;
        background-size: auto
    }
    .annotation-block__contents {
        font-size: 1.06061rem
    }
    .diagnosis-block {
        padding-bottom: 5.68182rem
    }
    .small-text {
        font-size: 1.06061rem
    }
    .plane-text {
        font-size: 1.36364rem;
        line-height: 1.66667
    }
    .pagetop {
        right: 20px;
        bottom: 20px
    }
    .pagetop__btn {
        font-size: .90909rem
    }
}

/* 1024px以上 (PC/タブレット - 横向き) */
@media screen and (min-width: 1024px) {
    .header__inner {
        padding: 2rem;
        height: auto
    }
    .header__logo {
        width: 157px
    }
    .header {
        padding: 0
    }
    .search__magnify::before {
        font-size: 2rem
    }
}

/*# sourceMappingURL=style.css.map */