.l-header {
  height: 5.33rem;
  background-color: #fff;
}
/*.l-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 3.33rem;
}*/
.l-header__logoWrap {
  display: flex;
  align-items: center;
}
.l-header__logoImg {
  position: relative;
  height: 2.67rem;
  margin: 0 1.33rem 0 0;
}
.l-header__logoImg > img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__logoImg::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.33rem;
  display: inline-block;
  width: 1px;
  height: 87%;
  background-color: #1A1311;
}
.l-header__logoText {
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 0.93rem;
  font-weight: 400;
  margin: 0 0 0 1.33rem;
}
@media screen and (max-width: 834px) {
  .l-header {
    height: 3.75rem;
  }
  .l-header__inner {
    justify-content: center;
    padding: 0 1.43rem;
  }
  .l-header__logoImg {
    height: 1.61rem;
    margin: 0 0.79rem 0 0;
  }
  .l-header__logoImg::after {
    right: -0.79rem;
  }
  .l-header__logoText {
    font-size: 0.71rem;
    margin: 0 0 0 0.79rem;
  }
}

.l-footer {
  background-color: #013161;
  padding: 4rem 0;
}
.l-footer__body {
  display: grid;
  grid-template-areas: "logo btnWrap" "menu menu" "copy copy";
  justify-content: space-between;
}
.l-footer__logo {
  grid-area: logo;
  align-self: start;
  width: 28.67rem;
}
.l-footer__logo > img {
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__btnWrap {
  grid-area: btnWrap;
  width: 20rem;
  margin: 0 0 5rem;
}
.l-footer__btnWrap > *:not(:last-child) {
  margin-bottom: 1.33rem;
}
.l-footer__btn {
  color: #fff;
}
.l-footer__menu {
  grid-area: menu;
  display: flex;
  align-items: center;
  gap: 0 2rem;
  margin: 0 0 1.33rem;
}
.l-footer__menu > li {
  color: #fff;
  font-size: 0.87rem;
}
.l-footer__copyright {
  grid-area: copy;
  display: block;
  color: #fff;
  font-size: 0.8rem;
  font-family: "Arial", sans-serif;
  opacity: 0.4;
}
@media screen and (max-width: 834px) {
  .l-footer {
    padding: 4.29rem 0;
  }
  .l-footer__body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2.86rem 0;
  }
  .l-footer__logo {
    width: 100%;
  }
  .l-footer__btnWrap {
    width: 20rem;
    margin: 0;
  }
  .l-footer__btnWrap > *:not(:last-child) {
    margin-bottom: 0.71rem;
  }
  .l-footer__menu {
    width: 20rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.71rem 0;
  }
  .l-footer__menu > li {
    font-size: 0.86rem;
  }
  .l-footer__copyright {
    font-size: 0.86rem;
    text-align: center;
  }
}

.c-chevron-btn {
  position: relative;
  min-width: 20rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.2rem 1.87rem;
}
.c-chevron-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid currentColor;
  opacity: 0.3;
}
.c-chevron-btn::after {
  content: "";
  display: block;
  width: 0.4rem;
  aspect-ratio: 1/1;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (min-width: 835px) {
  .c-chevron-btn {
    transition: all 0.2s linear;
  }
  .c-chevron-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 834px) {
  .c-chevron-btn {
    min-width: initial;
    width: 100%;
    padding: 1rem 1.79rem;
  }
  .c-chevron-btn::after {
    width: 0.43rem;
  }
}

/* 追加要素 */
.l-header img,
.l-footer img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-header a,
.l-header button,
.l-footer a,
.l-footer button {
  cursor: pointer;
  transition: all 0.2s linear;
}
.l-header a:hover,
.l-header button:hover,
.l-footer a:hover,
.l-footer button:hover {
  opacity: 0.7;
}
.l-header a,
.l-footer a {
  word-break: break-all;
  text-decoration: none;
}
.l-footer__menu{
 padding: 0;
 list-style-type: none;
}
.l-footer__menu a{
 color: #FFF;
}