@charset "UTF-8";

/*
ヘッダー上 追加ウィジェットエリア
*/
.before-header-widgets {
  clear: both;
  padding: 0;
  color: var(--my-color-base-font);
  background-color: var(--my-color-base);
  border-bottom: 1px solid var(--my-color-base-weak2);
}
.before-header-widgets .wrap {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .before-header-widgets .wrap {
    max-width: var(--my-site-width);
  }
  body.header-full-width .before-header-widgets > .wrap {
    max-width: none;
  }
}

/*
ヘッダー下 追加ウィジェットエリア
*/
.after-header-widgets {
  clear: both;
  padding: 0;
  color: var(--my-color-base-font);
  background-color: var(--my-color-base);
  border-bottom: 1px solid var(--my-color-base-weak2);
}
.after-header-widgets .wrap {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .after-header-widgets .wrap {
    max-width: var(--my-site-width);
  }
  body.header-full-width .after-header-widgets > .wrap {
    max-width: none;
  }
}

/*
サイトヘッダー
*/

.site-header {
  color: var(--my-color-base-font);
  background-color: var(--my-color-base);
}
.site-header > .wrap {
  position: relative;
}

/**
 * サイトタイトル
 */
.site-header .title-area {
  float: left;
  padding: 0.9rem 1rem;
  margin: 0 5.5rem 0 0;
}
.site-title {
  padding: 0 1rem;
  margin: 0;
  font-size: 2.4rem;
  line-height: 6rem;
}
.site-title a {
  text-decoration: none;
  color: var(--my-color-base-font);
}
@media only screen and (min-width: 720px) {
  .site-header .title-area {
    padding: 0.9rem 1rem;
  }
}
@media only screen and (min-width: 960px) {
  .site-header .title-area {
    margin-right: 0;
  }
}


/**
 * サイトロゴ
 */
body.wp-custom-logo .custom-logo-link {
  display: flex;
  align-items: center;
  height: 6rem;
}
body.wp-custom-logo .custom-logo {
  height: 16.66666vw;
  width: auto;
}
body.wp-custom-logo .site-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
@media only screen and (min-width: 360px) { /* mn(mini) */
  body.wp-custom-logo .custom-logo {
    height: 6rem;
  }
}


/**
 * ヘッダーウィジェット
 */
.header-widgets {
  clear: both;
}
@media only screen and (min-width: 720px) {
  .header-widgets {
    clear: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 5.5rem 0 auto;
    height: 9.9rem;
    overflow: hidden;
  }
}
@media only screen and (min-width: 960px) {
  .header-widgets {
    margin-right: 1rem;
  }
}

