:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #ddd;
  --color-light-gray: #f0f0f0;
  --color-dark-gray: #8d8d8d;
  --color-red: #c00;
  --color-dark-blue: #041d41;
}
.l-auto-local-header *,
.l-auto-local-header ::before,
.l-auto-local-header ::after {
  box-sizing: border-box;
}
.l-auto-local-header img {
  vertical-align: bottom;
}
.l-auto-local-header {
  position: relative;
  position: sticky;
  top: 0;
  z-index: 8888;
  font-family: "Hiragino Kaku Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Meiryo, sans-serif;
  line-height: 1.5;
  background-color: var(--color-dark-blue);
}
.l-auto-local-header__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1020px;
  height: 48px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__inner {
    position: relative;
    z-index: 200;
    flex-direction: column;
    justify-content: flex-start;
    height: 55px;
    padding: 0;
  }
}
.l-auto-local-header__title {
  flex-shrink: 0;
}
.l-auto-local-header__title__link {
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 100%;
  padding: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__title__link {
    max-width: none;
    padding: 0 12px 0 0;
    justify-content: center;
  }
}
@media (hover: hover) {
  .l-auto-local-header__title__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__title__link {
    position: relative;
    width: 100%;
    height: 55px;
    padding: 0 30px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    outline: 0;
  }
  /* .l-auto-local-header__title__link::before {
		position: absolute;
		right: 20px;
		display: block;
		width: 12px;
		height: 1px;
		content: "";
		background-color: var(--color-white)
	}
	.l-auto-local-header__title__link::after {
		position: absolute;
		top: 50%;
		right: 20px;
		display: block;
		width: 12px;
		height: 1px;
		content: "";
		background-color: var(--color-white);
		transition: transform .4s;
		transform: translate(0, -50%) rotate(90deg)
	}
	.l-auto-local-header__title__link.is-active::after {
		transform: translate(0, -50%) rotate(180deg)
	} */
}
.l-auto-local-header__title__link > span {
  padding-left: 5px;
  padding-left: 10px;
  font-size: 11px;
  font-weight: 400;
}
.l-auto-local-header__title--simple .l-auto-local-header__title__link::before,
.l-auto-local-header__title--simple .l-auto-local-header__title__link::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__body {
    display: none;
    min-height: 100vh;
    padding-bottom: 45px;
    overflow-y: scroll;
    background-color: var(--color-white);
  }
}
.l-auto-local-header__body.is-active {
  display: block;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__body.is-active {
    -webkit-animation-name: headerShowAnimation2;
    animation-name: headerShowAnimation2;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .l-auto-local-header__body > *:last-child {
    padding-bottom: 20vh;
  }
}
.l-auto-local-header__grid {
  display: flex;
  justify-content: flex-end;
  margin-right: -8px;
  margin-left: -8px;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__grid {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-auto-local-header__col {
  width: 168px;
  padding: 7px 8px 8px;
  border-radius: 8px;
  margin-left: 5px;
}
.l-auto-local-header__col:hover {
  background-color: var(--color-light-gray);
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__col {
    width: 48%;
    margin-top: 20px;
  }
  .l-auto-local-header__col:nth-child(1),
  .l-auto-local-header__col:nth-child(2) {
    margin-top: 0;
  }
}
.l-auto-local-header__card {
  text-decoration: none;
  transition: opacity 0.4s ease;
}
.l-auto-local-header__card__image {
  max-width: 152px;
  border: 1px solid var(--color-gray);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__card__image {
    width: 100%;
    max-width: none;
  }
}
.l-auto-local-header__card__text {
  margin-top: 7px;
  font-size: 14px;
  color: var(--color-black);
}
.l-auto-local-header__nav {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav {
    height: auto;
    margin-bottom: 25px;
  }
}
.l-auto-local-header__nav > ul {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav > ul {
    flex-direction: column;
  }
}
.l-auto-local-header__nav__item {
  position: relative;
  /*	margin-left: 30px*/
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__item {
    margin-left: 0;
  }
}
.l-auto-local-header__nav__item--dropmenu-full {
  position: static;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__item::after {
    display: block;
    width: calc(100% - 40px);
    height: 1px;
    margin: 0 auto;
    content: "";
    background-color: var(--color-gray);
  }

  .l-auto-local-header__nav__item--dot::after {
    content: none;
  }
}
.l-auto-local-header__nav__item.u-sp-show + .l-auto-local-header__nav__item {
  margin-left: 0;
}
.l-auto-local-header__nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link {
    justify-content: flex-start;
    height: auto;
    padding: 20px;
    font-size: 16px;
    color: var(--color-black);
  }
}
.l-auto-local-header__nav__link > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: opacity 0.4s ease;
  padding-left: 12px;
  padding-right: 30px;
  text-align: center;
}
ul .l-auto-local-header__nav__item:last-child .l-auto-local-header__nav__link > span {
  padding-right: 15px;
}
@media screen and (min-width: 769px) {
  .l-auto-local-header__nav__link > span > span > span {
    display: inline-block;
  }
}

@media (hover: hover) {
  .l-auto-local-header__nav__link > span:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link.current,
  .current .l-auto-local-header__list__title {
    font-weight: bold !important;
  }
}
.l-auto-local-header__nav__link.current > span {
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}

.l-auto-local-header__nav__link--dropmenu::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  border-right: 6px solid rgba(0, 0, 0, 0);
  border-bottom: 9px solid var(--color-white);
  border-left: 6px solid rgba(0, 0, 0, 0);
  transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, padding 0.4s, height 0.4s;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link--dropmenu::before {
    display: none;
  }
}
.l-auto-local-header__nav__item.is-active .l-auto-local-header__nav__link--dropmenu::before {
  visibility: visible;
  opacity: 1;
}
.l-auto-local-header__nav__link--dropmenu.is-active::before,
.l-auto-local-header__nav__link--dot.is-active::before {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link--dropmenu.is-active::before {
    display: block;
    height: auto;
    padding-bottom: 20px;
  }
}
.l-auto-local-header__nav__link--dropmenu > span::before {
  position: absolute;
  right: 14px;
  display: block;
  width: 10px;
  height: 1px;
  content: "";
  background-color: var(--color-white);
}
.l-auto-local-header__nav__link--dropmenu > span::after {
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 10px;
  height: 1px;
  content: "";
  background-color: var(--color-white);
  transition: transform 0.4s;
  transform: translate(0, -50%) rotate(90deg);
}
.l-auto-local-header__nav__link--dropmenu.current > span::before {
  background-color: var(--color-black);
}
.l-auto-local-header__nav__link--dropmenu.current > span::after {
  background-color: var(--color-black);
}
@media (hover: hover) {
  .l-auto-local-header__nav__link--dropmenu > span:hover::before {
    background-color: var(--color-black);
  }
  .l-auto-local-header__nav__link--dropmenu > span:hover::after {
    background-color: var(--color-black);
  }
  .l-auto-local-header__nav__link.current > span::before {
    background-color: var(--color-black);
  }
  .l-auto-local-header__nav__link.current > span::after {
    background-color: var(--color-black);
  }
}

@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .l-auto-local-header__list__title > span {
    padding-left: 12px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .l-auto-local-header__list__title > span::before {
    position: absolute;
    right: 20px;
    display: block;
    width: 10px;
    height: 1px;
    content: "";
    background-color: var(--color-black);
  }
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .l-auto-local-header__list__title > span::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 10px;
    height: 1px;
    content: "";
    background-color: var(--color-black);
    transition: transform 0.4s;
    transform: translate(0, -50%) rotate(90deg);
  }

  .l-auto-local-header__nav__link--dropmenu > span::before,
  .l-auto-local-header__nav__link--dropmenu > span::after {
    right: 20px;
    background-color: var(--color-black);
  }
}
.l-auto-local-header__nav__link--dropmenu.is-active > span::after,
.l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body a.is-active span::after,
li.is-active .l-auto-local-header__nav__link--dropmenu > span::after {
  transform: translate(0, -50%) rotate(180deg);
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link--dot {
    display: none;
  }
}
.l-auto-local-header__nav__link--dot::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  border-right: 6px solid rgba(0, 0, 0, 0);
  border-bottom: 9px solid var(--color-white);
  border-left: 6px solid rgba(0, 0, 0, 0);
  transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, padding 0.4s, height 0.4s;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link--dot::before {
    display: none;
  }
}
.l-auto-local-header__nav__item .is-active + .l-auto-local-header__nav__link--dot::before {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__item .is-active + .l-auto-local-header__nav__link--dot::before {
    display: block;
    height: auto;
    padding-bottom: 20px;
  }
}
.l-auto-local-header__nav__item.is-active .l-auto-local-header__nav__link--dot::before {
  visibility: visible;
  opacity: 1;
}
.l-auto-local-header__nav__body {
  position: absolute;
  top: 48px;
  left: 0;
  z-index: 200;
  /*	width: 130%;*/
  min-width: 180px;
  visibility: hidden;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s, padding 0.4s, height 0.4s;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__body {
    position: static;
    width: 100%;
    height: 0;
    overflow: hidden;
    box-shadow: none;
    opacity: 0;
    transition: margin 0.2s, padding 0.2s, opacity 0.2s, visibility 0.2s;
  }

  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body a + ul {
    z-index: 200;
    min-width: 180px;
    position: static;
    width: 100%;
    height: 0;
    padding: 0 20px;
    visibility: hidden;
    overflow: hidden;
    box-shadow: none;
    opacity: 0;
    transition: margin 0.2s, padding 0.2s, opacity 0.2s, visibility 0.2s;
  }
}
.l-auto-local-header__nav__body--full {
  width: 100%;
}
.l-auto-local-header__nav__body--full .l-auto-local-header__nav__inner {
  position: relative;
}
.l-auto-local-header__nav__body--full .l-auto-local-header__list__close {
  width: 100vw;
  margin-top: 20px;
  padding-right: 15px;
  text-align: right;
}
.l-auto-local-header__nav__item .is-active + .l-auto-local-header__nav__body,
.l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .is-active + ul {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__item .is-active + .l-auto-local-header__nav__body,
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .is-active + ul {
    display: block;
    height: auto;
    padding-bottom: 20px;
    background-color: var(--color-light-gray);
  }
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .is-active + ul {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.l-auto-local-header__nav__item.is-active .l-auto-local-header__nav__body {
  visibility: visible;
  opacity: 1;
}
.l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body {
  right: 0;
  left: auto;
}
.l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body::before {
  right: 0;
  left: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body {
    display: block;
    height: auto;
    overflow: visible;
    visibility: visible;
    opacity: 1;
  }
}
.l-auto-local-header__nav__inner {
  max-width: 1020px;
  padding: 20px 10px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__inner {
    padding: 0 20px;
  }
  .l-auto-local-header__nav__inner::before {
    display: block;
    height: 1px;
    margin: 0 auto 20px;
    content: "";
    background-color: var(--color-gray);
  }
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .l-auto-local-header__nav__inner::before {
    display: none;
  }
}
.l-auto-local-header__list > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.l-auto-local-header__list a {
  color: var(--color-black);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .l-auto-local-header__nav__inner {
    padding: 0;
  }
}

.l-auto-local-header__list__item {
  border-radius: 5px;
  padding: 0 5px 1px;
}
@media screen and (min-width: 769px) {
  .l-auto-local-header__list__item:hover {
    background-color: var(--color-light-gray);
  }
}
.l-auto-local-header__list__item + .l-auto-local-header__list__item {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .l-auto-local-header__list__item + .l-auto-local-header__list__item {
    margin-top: 0;
  }
}
.l-auto-local-header__list__link {
  font-size: 14px;
  color: var(--color-black);
  text-decoration: none;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .l-auto-local-header__list__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__list__link {
    display: block;
    padding: 12px 10px;
  }
}
.l-auto-local-header__list__item--lower-level .l-auto-local-header__list__link {
  display: inline-block;
  padding-left: 16px;
  text-indent: -16px;
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__list__item--lower-level .l-auto-local-header__list__link {
    display: block;
    padding-left: 26px;
  }
}
.l-auto-local-header__list__item--lower-level .l-auto-local-header__list__link::before {
  box-sizing: content-box;
  display: inline-block;
  width: 12px;
  height: 1px;
  margin-top: -2px;
  margin-right: 4px;
  vertical-align: middle;
  content: "";
  border-top: 1px solid var(--color-black);
}
.l-auto-local-header__nav__item--dot .l-auto-local-header__list__link::before {
  content: none;
}

.l-auto-local-header__list__title {
  padding-bottom: 8px;
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--color-dark-gray);
}

@media screen and (min-width: 769px) {
  .l-auto-local-header__list.other_link {
    margin-left: -5px;
    width: 170px;
    margin-right: 5px;
    margin-top: 11px;
    margin-bottom: 0;
  }
  .l-auto-local-header__list.other_link .l-auto-local-header__list__title {
    border-radius: 5px;
    margin-top: 0;
    margin-bottom: 4px;
    padding: 0 5px 2px;
    border: none;
  }
  .l-auto-local-header__list.other_link .l-auto-local-header__list__title:hover {
    background-color: var(--color-light-gray);
  }
}

@media screen and (max-width: 768px) {
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .l-auto-local-header__list__title {
    margin: 0;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    font-weight: normal;
    font-size: 16px;
    color: var(--color-black);
    border-color: var(--color-gray);
    text-decoration: none;
  }
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .l-auto-local-header__list__title {
    border-bottom: none;
    cursor: pointer;
  }
  .l-auto-local-header__nav__link--dot + .l-auto-local-header__nav__body .l-auto-local-header__list > a::after {
    content: "";
    width: calc(100% - 40px);
    margin: 0 auto;
    border-bottom: 1px solid var(--color-gray);
    display: block;
  }
  .l-auto-local-header__list:not(.js-header-dropmenu) .l-auto-local-header__list__title {
    padding-left: 32px;
  }
}
.l-auto-local-header__list__close {
  position: relative;
  max-width: 1020px;
  margin: 25px auto 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-auto-local-header__list__close {
    display: none;
  }
}
.l-auto-local-header__list__close__button {
  position: relative;
  padding-right: 30px;
  color: var(--color-black);
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  border: 0;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .l-auto-local-header__list__close__button:hover {
    opacity: 0.7;
  }
}
.l-auto-local-header__list__close__button::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  content: "";
  background-color: var(--color-black);
}
.l-auto-local-header__list__close__button > span {
  position: relative;
}
.l-auto-local-header__list__close__button > span::before,
.l-auto-local-header__list__close__button > span::after {
  position: absolute;
  top: 8px;
  right: -21px;
  z-index: 1;
  width: 1px;
  height: 16px;
  content: "";
  background: var(--color-white);
}
.l-auto-local-header__list__close__button > span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-auto-local-header__list__close__button > span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__list--sp-row > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .l-auto-local-header__list--sp-row .l-auto-local-header__list__item {
    width: 50%;
  }
  .l-auto-local-header__list--sp-row .l-auto-local-header__list__item + .l-auto-local-header__list__item {
    margin-top: 0;
  }
  .l-auto-local-header__list--sp-row .l-auto-local-header__list__link::after {
    display: inline-block;
    width: 6px;
    height: 12px;
    margin-left: 8px;
    vertical-align: middle;
    content: "";
    background: url(/auto/common/images/icon/icon_arrow_right.svg) no-repeat 0 0;
    background-size: 100% auto;
  }
  .l-auto-local-header__list--sp-row .l-auto-local-header__list__link--blank::after {
    width: 9px;
    height: 9px;
    margin-top: -3px;
    background-image: url(/auto/common/images/icon/icon_blank.svg);
  }
}
@media screen and (min-width: 769px) {
  .l-auto-local-header__type {
    display: flex;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .l-auto-local-header__type > *:first-child {
    width: 20%;
  }
  .l-auto-local-header__type > *:last-child {
    width: 80%;
  }
  .l-auto-local-header__type__inner {
    margin-top: 20px;
    display: flex;
    margin-right: -30px;
  }
  .l-auto-local-header__type__inner > * {
    width: calc((100% + 30px) / 4);
    padding-right: 30px;
  }
  .l-auto-local-header__type .l-auto-local-header__list__title {
    margin-top: 0;
  }
}
.l-auto-local-header__box {
  text-align: center;
}
.l-auto-local-header__c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 50px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: 50px;
  transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
}
@media (hover: hover) {
  .l-auto-local-header__c-button:hover {
    color: var(--color-black);
    background-color: var(--color-light-gray);
    border: 1px solid var(--color-black);
  }
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__c-button {
    width: 80%;
    padding: 8px;
  }
}
.l-auto-local-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  display: none;
  width: 100%;
  height: 120vh;
  background-color: rgba(51, 51, 51, 0.5);
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .l-auto-local-header__overlay {
    display: none !important;
  }
}
.l-auto-local-header__overlay.is-active {
  display: block;
  opacity: 1;
  -webkit-animation-name: headerShowAnimation2;
  animation-name: headerShowAnimation2;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
@media screen and (min-width: 900px) {
  .l-auto-local-header__br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-auto-local-header__br {
    display: none;
  }
}
@-webkit-keyframes headerShowAnimation2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes headerShowAnimation2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.l-auto-local-header .u-hide {
  display: none;
}
@media screen and (min-width: 769px) {
  .l-auto-local-header .u-sp-show {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-auto-local-header .u-sp-hide {
    display: none;
  }
}
