@charset "UTF-8";
/* noto-sans-jp-regular - latin_japanese */
@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap");
/* noto-sans-jp-regular - latin_japanese */
@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap");
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/noto-sans-jp-v28-latin_japanese-regular.woff2") format("woff2");
}
/* noto-sans-jp-700 - latin_japanese */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/noto-sans-jp-v28-latin_japanese-700.woff2") format("woff2");
}
/* noto-serif-jp-500 - latin_japanese */
@font-face {
  font-display: swap;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../fonts/noto-serif-jp-v8-latin_japanese-500.woff2") format("woff2");
}
/* architects-daughter-regular - latin */
/***
文字を縦書きにする。
$angleには180degか0を渡す。
180degだと反時計回りに90度回転したような表示になり、
0degだと時計回りに90度回転したような表示になる。
***/
/***
画像などを正方形にしたいときに使用する。
figcaptionは上下左右中央に配置される。
***/
* {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  font-size: calc(14px + (1vw - 3.75px) * 0.4036);
  color: rgb(51, 51, 51);
}

p {
  font-weight: 400;
  padding: 2% 0;
}

a {
  text-decoration: none;
}

article {
  margin-bottom: 16vh;
}

section {
  margin: 8% 0;
}

@media screen and (min-width: 1024px) {
  section {
    margin: 4% 0;
  }
}
section:first-of-type {
  margin: 0;
}

img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

aside nav {
  position: absolute;
  width: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
  height: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
  border-radius: 50%;
  border: 1px solid rgb(51, 51, 51);
  background-color: rgb(255, 255, 255);
  right: 5%;
  bottom: 2vh;
  z-index: 100;
  box-shadow: 1px 2px 3px rgb(51, 51, 51);
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: row;
}
@media screen and (min-width: 1024px) {
  aside nav {
    position: sticky;
    height: calc(100vh - calc(4 * calc(14px + (1vw - 3.75px) * 0.4036)) - 8vh);
    bottom: unset;
    right: unset;
    left: unset;
    top: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
    padding: 0 0 1em 0;
    border-radius: unset;
    border: unset;
    box-shadow: none;
    flex-direction: column;
    background-color: none;
    justify-content: space-between;
    align-content: center;
  }
}
aside nav h2 {
  display: none;
}
@media screen and (min-width: 1024px) {
  aside nav h2 {
    flex-grow: 1;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
  }
  aside nav h2 span {
    transform: rotateZ(180deg);
    writing-mode: vertical-lr;
  }
  aside nav h2 span a {
    font-family: "Architects Daughter", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    color: rgb(51, 51, 51);
  }
}
aside nav .contact {
  position: sticky;
}
aside nav .contact .contact_text {
  display: none;
  color: rgb(51, 51, 51);
}
aside nav .contact .contact_icon {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: row;
}
aside nav .contact .contact_icon a {
  width: 2em;
  height: 2em;
  color: rgb(51, 51, 51);
}
aside nav .contact .contact_icon a > * {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  aside nav .contact {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
  }
  aside nav .contact .contact_text {
    display: block;
    font-size: calc(0.75 * calc(14px + (1vw - 3.75px) * 0.4036));
  }
}

.parts004 p {
  width: 100%;
  background-color: rgb(51, 51, 51);
  text-align: center;
  padding: 0;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: row;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.parts004 p .span-name {
  padding: 0 0.5em;
}

@media screen and (min-width: 640px) {
  div .app_icon {
    width: 70%;
    max-width: 380px;
  }
  div .footer_nav {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: normal;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    flex-direction: row;
  }
  div .footer_nav ul {
    text-align: left;
  }
  div hr {
    width: 100%;
  }
}
.parts034 {
  display: inline-block;
  vertical-align: top;
  margin: 1em 0 2em;
}
.parts034 figure {
  text-align: center;
  height: 94px;
  width: 100px;
}
.parts034 figure img {
  object-fit: contain;
}
.parts034 figcaption {
  font-size: 10px;
  text-align: center;
  line-height: 1.6em;
}

.hg {
  display: block !important;
  min-height: 100vh;
  width: 100%;
  position: relative;
  grid-template-areas: "header" "main" "aside" "pagetop" "footer";
  grid-template-columns: 1fr;
  grid-template-rows: 0 1fr auto 8vh auto;
}
@media screen and (min-width: 1024px) {
  .hg {
    grid-template-areas: "header header" "aside main" "pagetop pagetop" "footer footer";
    grid-template-columns: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036)) 1fr;
    grid-template-rows: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036)) 1fr 8vh auto;
  }
}
.hg header {
  grid-area: header;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .hg header {
    height: 160px;
  }
}
.hg main {
  grid-area: main;
}
.hg .page_top {
  grid-area: pagetop;
}
.hg footer {
  grid-area: footer;
}
.hg main {
  position: relative;
  width: 100%;
}
.hg aside {
  position: sticky;
  bottom: 8vh;
  z-index: 1000;
}
.hg .page_top {
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .hg aside {
    grid-area: aside;
  }
  .hg header {
    position: unset;
    height: 180px;
    width: 100%;
    z-index: 1100;
  }
  .hg aside {
    position: relative;
    width: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
    height: 100%;
    bottom: 0;
    z-index: 100;
  }
}

.main-container-wrapper {
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  border-left: none;
  border-right: none;
}
@media screen and (min-width: 768px) {
  .main-container-wrapper {
    width: 90%;
    margin: auto;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1024px) {
  .main-container-wrapper {
    width: 1000px;
  }
}

.main-container {
  display: block;
  margin: auto;
  width: 98%;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .main-container {
    margin-bottom: 85px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .main-container {
    margin-bottom: 100px;
  }
}

@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/noto-sans-jp-v28-latin_japanese-regular.woff2") format("woff2");
}
/* noto-sans-jp-700 - latin_japanese */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/noto-sans-jp-v28-latin_japanese-700.woff2") format("woff2");
}
/* noto-serif-jp-500 - latin_japanese */
@font-face {
  font-display: swap;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../fonts/noto-serif-jp-v8-latin_japanese-500.woff2") format("woff2");
}
/* architects-daughter-regular - latin */
/***
文字を縦書きにする。
$angleには180degか0を渡す。
180degだと反時計回りに90度回転したような表示になり、
0degだと時計回りに90度回転したような表示になる。
***/
/***
画像などを正方形にしたいときに使用する。
figcaptionは上下左右中央に配置される。
***/
.header {
  height: 100%;
  width: 100%;
}
.header nav .type__sp {
  display: flex;
  position: fixed;
  z-index: 3000;
  width: 100%;
  background: white;
  top: 0;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .header nav .type__sp {
    display: none;
  }
}
.header nav .type__sp .header-logo .logo {
  width: 280px;
  height: 48px;
  display: flex;
  align-items: center;
}
.header nav .type__sp .header-logo .tell-list .tell {
  font-size: 18px;
  font-weight: 600;
}
.header nav .type__sp .header-logo .tell-list .tell a {
  color: black;
}
.header nav .type__sp .header-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}
.header nav .type__sp #menu {
  /*配置*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  /****メニュー開閉ボタン****/
  /* メニュー一覧 */
  /* メニューオープン時 */
}
.header nav .type__sp #menu div {
  /*デザイン*/
  width: 70px;
  height: 80px;
  background: #0068B1;
  /*配置*/
  overflow: hidden;
  position: absolute;
  right: 0;
}
.header nav .type__sp #menu .menu-button .menu_open {
  color: rgb(255, 255, 255);
  font-size: 20px;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: auto;
  z-index: 500;
}
.header nav .type__sp #menu .menu-button .menu_open span {
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 0px;
  height: 2px;
  border-radius: 3px;
  background: white;
  margin: 16% 30%;
  width: 35%;
}
.header nav .type__sp #menu .menu-button .menu_open span:first-child {
  top: 5px;
}
.header nav .type__sp #menu .menu-button .menu_open span:nth-child(2) {
  top: 16px;
}
.header nav .type__sp #menu .menu-button .menu_open span:nth-child(3) {
  top: 27px;
}
.header nav .type__sp #menu .menu-button .menu_open p {
  margin-top: 45px;
  width: 100%;
  font-size: 10px;
  text-align: center;
}
.header nav .type__sp #menu .menu-button .menu_close {
  color: rgb(255, 255, 255);
  font-size: 20px;
  display: none;
  width: 65%;
  height: 65%;
  position: absolute;
  top: 5px;
  left: 0;
  pointer-events: auto;
  margin: 10px;
  z-index: 500;
}
.header nav .type__sp #menu .menu-button .menu_close span:first-child {
  top: 8px;
  left: 0px;
  transform: translateY(10px) rotate(-135deg);
  width: 100%;
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 0px;
  height: 2px;
  border-radius: 3px;
  background: white;
}
.header nav .type__sp #menu .menu-button .menu_close span:last-child {
  top: 28px;
  left: 0px;
  transform: translateY(-10px) rotate(135deg);
  width: 100%;
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 0px;
  height: 2px;
  border-radius: 3px;
  background: white;
}
.header nav .type__sp #menu .menu-button:target .menu_open {
  display: none;
}
.header nav .type__sp #menu .menu-button:target .menu_close {
  display: block;
}
.header nav .type__sp #menu .menu-list ul {
  background: #0068B1;
  width: 100%;
  position: fixed; /* absolute */
  top: 80px;
  left: 0;
  display: none;
}
.header nav .type__sp #menu .menu-list li a {
  color: white;
  padding: 10px;
  border-bottom: 1px rgb(255, 255, 255) solid;
  height: 53px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  font-size: 16px;
}
.header nav .type__sp #menu .menu-list li::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: start !important;
}
.header nav .type__sp #menu .menu-list ul.sub-list {
  top: 586px;
  background: white;
  border-top: 1px #0068B1 solid;
}
.header nav .type__sp #menu .menu-list ul.sub-list li {
  border-bottom: 1px #0068B1 solid;
  width: 50%;
}
.header nav .type__sp #menu .menu-list ul.sub-list li:nth-child(2), .header nav .type__sp #menu .menu-list ul.sub-list li:last-child {
  border-left: 1px #0068B1 solid;
}
.header nav .type__sp #menu .menu-list ul.sub-list li a {
  color: #0068B1;
}
.header nav .type__sp #menu .menu-list:target ul {
  display: block;
}
.header nav .type__sp #menu .menu-list:target ul.sub-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.header nav .type__sp #menu:target .menu_open {
  display: none;
}
.header nav .type__sp #menu:target .menu_close {
  display: block;
}
.header nav .type__sp #menu:target ul {
  display: block;
  font-size: 22px;
  padding: 0;
}
.header nav .type__sp #menu:target ul.sub-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.header nav .type__pc {
  display: none;
  width: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
  height: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header nav .type__pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header nav .type__pc {
    background-color: rgb(255, 255, 255);
    position: relative;
    width: 100%;
  }
}
.header nav .type__pc .menu {
  height: 100%;
  width: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: row;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 100;
}
.header nav .type__pc .menu span {
  width: calc(0.5 * calc(4 * calc(14px + (1vw - 3.75px) * 0.4036)));
  height: 3px;
  background-color: rgb(51, 51, 51);
  position: absolute;
}
.header nav .type__pc .menu span.border_top {
  top: calc(30% - 1.5px);
}
.header nav .type__pc .menu span.border_middle {
  top: calc(50% - 1.5px);
}
.header nav .type__pc .menu span.border_bottom {
  top: calc(70% - 1.5px);
}
.header nav .type__pc .nav_menu {
  display: flex;
  flex-direction: column;
}
.header nav .type__pc .nav_menu .nav_menu01 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 {
  width: 1000px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 {
    justify-content: flex-start;
  }
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .logo {
  margin: 10px 0 0 40px;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .logo {
    margin: 10px;
    margin-bottom: 0;
  }
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .logo img {
  width: 305px;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .logo img {
    width: 350px;
    margin: 10px 0;
    margin-bottom: 0;
  }
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu {
    width: 43%;
  }
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul {
  position: relative;
  margin: 5px 0px;
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li.tel {
  width: 322px;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li.tel {
    font-size: 35px;
  }
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li.tel a:hover {
  text-decoration: underline 2px;
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li {
  width: 100px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li {
    font-size: 15px;
    width: 122px;
  }
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.header_bt_type1 {
  padding-right: 24px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  position: relative;
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.header_bt_type1:hover {
  text-decoration: underline;
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.header_bt_type1::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 2px solid #7EB2D7;
  border-top: 2px solid #7EB2D7;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
}
.header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.login {
  color: #fff;
  background-color: #0068B1;
  padding: 5px;
  border-radius: 5px;
  height: 18px;
  width: 120px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.login {
    height: 25px;
  }
}
.header nav .type__pc .nav_menu .nav_menu02 {
  position: relative;
  display: flex;
  width: 100%;
  height: 65px;
  border-top: 2px solid #7EB2D7;
  justify-content: center;
}
.header nav .type__pc .nav_menu .nav_menu02 ul {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul {
    width: 1000px;
  }
}
.header nav .type__pc .nav_menu .nav_menu02 ul li.type01 {
  border-left: 2px solid #7EB2D7;
  text-align: center;
  padding: 3px;
  margin-top: 5px;
  font-size: 14px;
  width: 85%;
  height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul li.type01 {
    font-size: 17px;
    width: 190px;
    height: 55px;
  }
}
@media screen and (min-width: 764px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul li:nth-child(1) {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul li:nth-child(1) {
    width: 190px;
  }
}
@media screen and (min-width: 764px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul li:nth-child(2) {
    width: 93%;
  }
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul li:nth-child(2) {
    width: 230px;
  }
}
.header nav .type__pc .nav_menu .nav_menu02 ul li:nth-child(4) {
  width: 98%;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul li:nth-child(4) {
    width: 194px;
  }
}
.header nav .type__pc .nav_menu .nav_menu02 ul li:last-child {
  border-right: 2px solid #7EB2D7;
  width: 98%;
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc .nav_menu .nav_menu02 ul li:last-child {
    width: 195px;
  }
}
.header nav .type__pc ul {
  display: none;
}
@media screen and (min-width: 768px) {
  .header nav .type__pc ul {
    flex-grow: 1;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: flex-end;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: row;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0;
  }
  .header nav .type__pc ul li {
    list-style-type: none;
    padding: 0 2%;
    width: 16%;
  }
  .header nav .type__pc ul li a {
    color: black;
    text-decoration: none;
  }
  .header nav .type__pc ul li a:hover {
    opacity: 0.7;
    background-image: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .header nav .type__pc ul {
    margin-top: 5px;
  }
}
.header .full_screen_menu {
  background-color: rgb(204, 204, 204);
  position: fixed;
  z-index: 10000;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header .slide_menu-enter-active,
.header .slide_menu-leave-active {
  transform: translate(0px, 0px);
  transition: transform 225ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}
.header .slide_menu-enter-from,
.header .slide_menu-leave-to {
  transform: translateX(-100vw) translateX(0px);
}
.header .Parts005 {
  background-color: rgb(51, 51, 51);
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: row;
  z-index: 1000;
  overflow: hidden;
}
.header .Parts005 ul {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  list-style-type: none;
}
.header .Parts005 ul li {
  display: inline-block;
  font-size: calc(16px + (1vw - 3.75px) * 0.9539);
  text-align: center;
  line-height: 1;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
}
.header .Parts005 ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.header .Parts005 ul li:hover {
  background-image: linear-gradient(40deg, rgb(237, 0, 206), rgb(1, 163, 247));
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: bottom;
}
.header .Parts005 ul li span {
  font-size: calc(0.5 * calc(14px + (1vw - 3.75px) * 0.9539));
}
.header .Parts005 p {
  padding: 0;
  font-size: calc(calc(28px + (1vw - 3.75px) * 2.3607) * 5);
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  font-weight: bold;
  z-index: -1;
}
.header .Parts005 p.p1 {
  left: 0;
  top: -0.6em;
}
.header .Parts005 p.p2 {
  text-align: right;
  right: 0;
  bottom: -0.4em;
}

.header-login {
  height: 80px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-login {
    height: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .header-login {
    height: 180px;
  }
}
.header-login nav .logo-sub {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header-login nav .logo-sub {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.header-login nav .logo-title {
  text-align: inherit;
  display: flex;
  height: 100%;
  flex-direction: column;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .header-login nav .logo-title {
    height: 70.6px;
    padding-top: 8px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header-login nav .logo-title {
    height: 88px;
    margin-top: 0;
  }
}
.header-login nav .logo-title p {
  width: 170px;
  color: #0068B1;
  font-weight: 600;
  padding: 0;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .header-login nav .logo-title p {
    font-size: 16px;
    width: 256px;
  }
}
@media screen and (min-width: 1024px) {
  .header-login nav .logo-title p {
    font-size: 20px;
    width: 320px;
  }
}
.header-login nav .logo-title p:last-child {
  font-size: 21px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .header-login nav .logo-title p:last-child {
    font-size: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .header-login nav .logo-title p:last-child {
    font-size: 30px;
  }
}
.header-login nav .inquiry {
  margin-right: 50px;
}
@media screen and (min-width: 1024px) {
  .header-login nav .inquiry {
    margin-right: 10px;
  }
}
.header-login nav .inquiry a {
  width: 100px;
  height: 30px;
  color: black;
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .header-login nav .inquiry a {
    height: 35px;
  }
}
.header-login nav .logout {
  margin-right: 15px;
  color: black;
}
.header-login nav .logout a {
  width: 80px;
  height: 30px;
  color: black;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .header-login nav .logout a {
    height: 35px;
  }
}
.header-login nav .arrow_s_b {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  color: white;
  text-decoration: none;
}
.header-login nav .arrow_s_b:before {
  content: "";
  width: 18px;
  height: 18px;
  background: white;
  border: 1px solid #0068B1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
}
.header-login nav .arrow_s_b:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #0068B1;
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -4px;
}
.header-login nav .type__sp {
  display: flex;
  position: fixed;
  z-index: 3000;
  width: 100%;
  background: white;
  top: 0;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .header-login nav .type__sp {
    display: none;
  }
}
.header-login nav .type__sp .header-logo .logo {
  width: 270px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-login nav .type__sp .header-logo .logo a {
  width: 105px;
  height: 48px;
}
.header-login nav .type__sp .header-logo .tell-list .tell {
  font-size: 18px;
  font-weight: 600;
}
.header-login nav .type__sp .header-logo .tell-list .tell a {
  color: black;
}
.header-login nav .type__sp .header-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 83%;
}
.header-login nav .type__sp #menu {
  /*配置*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  /****メニュー開閉ボタン****/
  /* メニュー一覧 */
  /* メニューオープン時 */
}
.header-login nav .type__sp #menu div {
  /*デザイン*/
  width: 70px;
  height: 80px;
  background: #0068B1;
  /*配置*/
  overflow: hidden;
  position: absolute;
  right: 0;
}
.header-login nav .type__sp #menu .menu-button .menu_open {
  color: rgb(255, 255, 255);
  font-size: 20px;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: auto;
  z-index: 500;
}
.header-login nav .type__sp #menu .menu-button .menu_open span {
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 0px;
  height: 2px;
  border-radius: 3px;
  background: white;
  margin: 16% 30%;
  width: 35%;
}
.header-login nav .type__sp #menu .menu-button .menu_open span:first-child {
  top: 5px;
}
.header-login nav .type__sp #menu .menu-button .menu_open span:nth-child(2) {
  top: 16px;
}
.header-login nav .type__sp #menu .menu-button .menu_open span:nth-child(3) {
  top: 27px;
}
.header-login nav .type__sp #menu .menu-button .menu_open p {
  margin-top: 45px;
  width: 100%;
  font-size: 10px;
  text-align: center;
}
.header-login nav .type__sp #menu .menu-button .menu_close {
  color: rgb(255, 255, 255);
  font-size: 20px;
  display: none;
  width: 65%;
  height: 65%;
  position: absolute;
  top: 5px;
  left: 0;
  pointer-events: auto;
  margin: 10px;
  z-index: 500;
}
.header-login nav .type__sp #menu .menu-button .menu_close span:first-child {
  top: 8px;
  left: 0px;
  transform: translateY(10px) rotate(-135deg);
  width: 100%;
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 0px;
  height: 2px;
  border-radius: 3px;
  background: white;
}
.header-login nav .type__sp #menu .menu-button .menu_close span:last-child {
  top: 28px;
  left: 0px;
  transform: translateY(-10px) rotate(135deg);
  width: 100%;
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 0px;
  height: 2px;
  border-radius: 3px;
  background: white;
}
.header-login nav .type__sp #menu .menu-button:target .menu_open {
  display: none;
}
.header-login nav .type__sp #menu .menu-button:target .menu_close {
  display: block;
}
.header-login nav .type__sp #menu .menu-list:target ul.wrapper {
  display: block;
}
.header-login nav .type__sp #menu .menu-list ul.wrapper {
  background: #0068B1;
  width: 100%;
  position: fixed; /* absolute */
  top: 80px;
  left: 0;
  display: none;
}
.header-login nav .type__sp #menu .menu-list li.type01 a {
  color: white;
  padding: 10px;
  border-bottom: 1px rgb(255, 255, 255) solid;
  height: 53px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  font-size: 16px;
}
.header-login nav .type__sp #menu .menu-list li.type01::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: start !important;
}
.header-login nav .type__sp #menu .menu-list li.has-child .toggle {
  display: none;
}
.header-login nav .type__sp #menu .menu-list li.has-child ul.inner {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
}
.header-login nav .type__sp #menu .menu-list li.has-child ul.inner .child {
  border-bottom: 1px #0068B1 solid;
}
.header-login nav .type__sp #menu .menu-list li.has-child ul.inner .child a {
  color: #0068B1;
  padding-left: 30px;
}
.header-login nav .type__sp #menu .menu-list li.has-child .title, .header-login nav .type__sp #menu .menu-list li.has-child .inner {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.header-login nav .type__sp #menu .menu-list li.has-child .title {
  color: white;
  padding: 10px;
  border-bottom: 1px rgb(255, 255, 255) solid;
  height: 53px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  font-size: 16px;
}
.header-login nav .type__sp #menu .menu-list li.has-child .title::after, .header-login nav .type__sp #menu .menu-list li.has-child .title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s;
}
.header-login nav .type__sp #menu .menu-list li.has-child .title::after {
  transform: rotate(90deg);
}
.header-login nav .type__sp #menu .menu-list li.has-child .toggle:checked + .title + .inner {
  max-height: 500px;
  transition: all 2s;
}
.header-login nav .type__sp #menu .menu-list li.has-child .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}
.header-login nav .type__sp #menu .menu-list li.white a {
  background-color: #fff;
  color: #0068B1;
  padding: 10px;
  border-bottom: 1px #0068B1 solid;
  height: 53px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  font-size: 16px;
}
.header-login nav .type__sp #menu .menu-list li.white:nth-of-type(2) a {
  border-bottom: 2px #0068B1 solid;
}
.header-login nav .type__sp #menu .menu-list:target ul {
  display: block;
}
.header-login nav .type__sp #menu:target .menu_open {
  display: none;
}
.header-login nav .type__sp #menu:target .menu_close {
  display: block;
}
.header-login nav .type__sp #menu:target ul.wrapper {
  display: block;
  font-size: 22px;
  padding: 0;
}
.header-login nav .type__pc {
  display: none;
  width: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
  height: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header-login nav .type__pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header-login nav .type__pc {
    background-color: rgb(255, 255, 255);
    position: relative;
    width: 100%;
  }
}
.header-login nav .type__pc .menu {
  height: 100%;
  width: calc(4 * calc(14px + (1vw - 3.75px) * 0.4036));
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: row;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 100;
}
.header-login nav .type__pc .menu span {
  width: calc(0.5 * calc(4 * calc(14px + (1vw - 3.75px) * 0.4036)));
  height: 3px;
  background-color: rgb(51, 51, 51);
  position: absolute;
}
.header-login nav .type__pc .menu span.border_top {
  top: calc(30% - 1.5px);
}
.header-login nav .type__pc .menu span.border_middle {
  top: calc(50% - 1.5px);
}
.header-login nav .type__pc .menu span.border_bottom {
  top: calc(70% - 1.5px);
}
.header-login nav .type__pc .nav_menu {
  display: flex;
  flex-direction: column;
}
.header-login nav .type__pc .nav_menu .nav_menu01 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 {
  width: 1000px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 {
    justify-content: flex-start;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .logo {
  margin: 10px 0 0 40px;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .logo {
    margin: 10px 0;
    margin-bottom: 0;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .logo img {
  width: auto;
  height: 52px;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .logo img {
    width: auto;
    margin: 7px 0;
    margin-bottom: 17px;
    height: 50px;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu {
    width: 43%;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul {
  position: relative;
  margin: 5px 0px;
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li.tel {
  width: 322px;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li.tel {
    font-size: 35px;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li.tel a:hover {
  text-decoration: underline 2px;
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li {
  width: 100px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li {
    font-size: 15px;
    width: 122px;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.header_bt_type1 {
  padding-right: 24px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  position: relative;
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.header_bt_type1:hover {
  text-decoration: underline;
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.header_bt_type1::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 2px solid #7EB2D7;
  border-top: 2px solid #7EB2D7;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
}
.header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.login {
  color: #fff;
  background-color: #0068B1;
  padding: 5px;
  border-radius: 5px;
  height: 18px;
  width: 120px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu01 .sub_menu01 .first_menu ul li a.login {
    height: 25px;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu02 {
  position: relative;
  display: flex;
  width: 100%;
  height: 65px;
  border-top: 2px solid #7EB2D7;
  justify-content: center;
}
.header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper {
    width: 1000px;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li.type01 {
  border-left: 2px solid #7EB2D7;
  text-align: center;
  padding: 3px;
  margin-top: 5px;
  font-size: 14px;
  width: 85%;
  height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li.type01 {
    font-size: 17px;
    width: 190px;
    height: 55px;
  }
}
@media screen and (min-width: 764px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li:nth-child(1) {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li:nth-child(1) {
    width: 190px;
  }
}
@media screen and (min-width: 764px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li.type01:nth-child(2) {
    width: 93%;
  }
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li.type01:nth-child(2) {
    width: 230px;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li:nth-child(4) {
  width: 98%;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li:nth-child(4) {
    width: 194px;
  }
}
.header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li:last-child {
  border-right: 2px solid #7EB2D7;
  width: 98%;
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc .nav_menu .nav_menu02 ul.wrapper li:last-child {
    width: 195px;
  }
}
.header-login nav .type__pc ul.wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-login nav .type__pc ul.wrapper {
    flex-grow: 1;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: flex-end;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: row;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0;
  }
  .header-login nav .type__pc ul.wrapper li.type01 {
    list-style-type: none;
    padding: 0 2%;
    width: 16%;
  }
  .header-login nav .type__pc ul.wrapper li.type01 a {
    color: black;
    text-decoration: none;
  }
  .header-login nav .type__pc ul.wrapper li.type01 a:hover {
    opacity: 0.7;
    background-image: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .header-login nav .type__pc ul.wrapper {
    margin-top: 5px;
  }
}
.header-login .full_screen_menu {
  background-color: rgb(204, 204, 204);
  position: fixed;
  z-index: 10000;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header-login .slide_menu-enter-active,
.header-login .slide_menu-leave-active {
  transform: translate(0px, 0px);
  transition: transform 225ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}
.header-login .slide_menu-enter-from,
.header-login .slide_menu-leave-to {
  transform: translateX(-100vw) translateX(0px);
}
.header-login .Parts005 {
  background-color: rgb(51, 51, 51);
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: row;
  z-index: 1000;
  overflow: hidden;
}
.header-login .Parts005 ul {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  list-style-type: none;
}
.header-login .Parts005 ul li {
  display: inline-block;
  font-size: calc(16px + (1vw - 3.75px) * 0.9539);
  text-align: center;
  line-height: 1;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
}
.header-login .Parts005 ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.header-login .Parts005 ul li:hover {
  background-image: linear-gradient(40deg, rgb(237, 0, 206), rgb(1, 163, 247));
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: bottom;
}
.header-login .Parts005 ul li span {
  font-size: calc(0.5 * calc(14px + (1vw - 3.75px) * 0.9539));
}
.header-login .Parts005 p {
  padding: 0;
  font-size: calc(calc(28px + (1vw - 3.75px) * 2.3607) * 5);
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  font-weight: bold;
  z-index: -1;
}
.header-login .Parts005 p.p1 {
  left: 0;
  top: -0.6em;
}
.header-login .Parts005 p.p2 {
  text-align: right;
  right: 0;
  bottom: -0.4em;
}/*# sourceMappingURL=header.css.map */