@media (min-width: 1030px) {
  html footer.l-footer * {
    font-size: 16px;
  }
}
@media (max-width: 1099px) {
  html footer.l-footer * {
    font-size: 1.4558689718vw;
  }
}
@media (max-width: 767px) {
  html footer.l-footer * {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html footer.l-footer * {
    font-size: 4.2666666667vw;
  }
}

.l-header {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 16px;
  /* font-size: 1rem; */
  line-height: 1.5;
  color: #272727;
}

.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

header.l-header a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #272727;
}

header.l-header a:hover {
  text-decoration: none;
}

header.l-header a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header.l-header a:hover {
  text-decoration: none;
}

.l-header {
  position: fixed;
  top: 30px;
  /* top: 1.875rem; */
  left: 0;
  right: 0;
  z-index: 100;
}

.l-header__global {
  /* width: calc(100% - 3.75rem); */
  width: calc(100% - 60px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 30px 0 40px;
  /* padding: 0 1.875rem 0 2.5rem; */
  background-color: #fff;
  /* -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.15); */
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  /* box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.15); */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  /* border-radius: 0.625rem; */
  border-radius: 10px;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 1020px) {
  .l-header__global {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__global {
    /* width: calc(100% - 1.875rem); */
    width: calc(100% - 30px);
    /* padding: 0 1.25rem 0 0.625rem; */
    padding: 0 20px 0 10px;
  }
}

.l-header__logo {
  width: 220px;
  /* width: 13.75rem; */
}
@media screen and (max-width: 1020px) {
  .l-header__logo {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 220px;
  }
}
.l-header__logo a {
  display: block;
  padding: 20px 10px;
  /* padding: 1.25rem 0.625rem; */
}
@media screen and (max-width: 1020px) {
  .l-header__logo a {
    padding: 15px 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo a {
    padding: 20px 10px;
  }
}
.l-header__logo a img {
  aspect-ratio: 200/34;
  width: 100%;
  height: 100%;
}

.l-header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  /* gap: 1.25rem; */
}
@media screen and (max-width: 1020px) {
  .l-header__menu-list {
    gap: 10px;
  }
}

.l-header__menu-item {
  position: relative;
}

.l-header__menu-item::after {
  cursor: default;
  position: absolute;
  top: 15px;
  right: 3px;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 8px;
  /* margin-left: 0.5rem; */
}

@media screen and (max-width: 1020px) {
  .l-header__menu-item::after {
    width: 6px;
    height: 6px;
    top: 13px;
  }
}

.l-header__menu-link {
  display: block;
  font-size: 16px;
  /* font-size: 1rem; */
  font-weight: 700;
  padding: 10px 10px;
  /* padding: 0.625rem 0.625rem; */
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (max-width: 1020px) {
  .l-header__menu-link {
    font-size: 12px;
    padding: 10px 5px;
  }
}
.l-header__menu-link.current {
  color: #ff8400;
}
.l-header__menu-link::after {
  content: "";
  /* width: calc(100% - 0.625rem); */
  width: calc(100% - 10px);
  height: 2px;
  /* height: 0.125rem; */
  background-color: #ff8400;
  position: absolute;
  left: 5px;
  /* left: 0.3125rem; */
  bottom: -2px;
  /* bottom: -0.125rem; */
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-header__menu-link:hover {
  opacity: 1;
}
.l-header__menu-link:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.l-header__menu-item .l-header__menu-link {
  padding: 10px 20px 10px 10px;
  /* padding: 0.625rem 20px 0.625rem 0.625rem; */
  cursor: default;
}
@media screen and (max-width: 1020px) {
  .l-header__menu-item .l-header__menu-link {
    padding: 10px 15px 10px 5px;
  }
}

header.l-header li {
  line-height: 1.5;
}

.l-header__menu-link--contact {
  color: #fff;
  background-color: #6fbd0c;
  padding: 10px 30px;
  /* padding: 0.625rem 1.875rem; */
  /* border-radius: 7.0625rem; */
  border-radius: 112.5px;
  /* -webkit-box-shadow: 0 0.1875rem 0 #4f8d00; */
  -webkit-box-shadow: 0 3px 0 #4f8d00;
  /* box-shadow: 0 0.1875rem 0 #4f8d00; */
  box-shadow: 0 3px 0 #4f8d00;
}
header.l-header a.l-header__menu-link--contact {
  color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 1020px) {
  .l-header__menu-link--contact {
    padding: 8px 20px;
  }
}
.l-header__menu-link--contact::after {
  display: none;
}
.l-header__menu-link--contact:hover {
  opacity: 0.8;
}

.l-header__menu-item .l-header__menu-link::after {
  display: none;
}

.l-header__pulldown {
  width: 140px;
  /* width: 8.75rem; */
  padding: 10px;
  /* padding: 0.625rem; */
  background-color: #fff;
  /* -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.15); */
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  /* box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.15); */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  /* border-radius: 0.625rem; */
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  /* gap: 0.3125rem; */
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.l-header__menu-item .l-header__menu-link:hover + .l-header__pulldown {
  opacity: 1;
  visibility: visible;
}

.l-header__pulldown:hover {
  opacity: 1;
  visibility: visible;
}

.l-header__pulldown-link {
  display: block;
  font-size: 14px;
  /* font-size: 0.875rem; */
  font-weight: 700;
  padding: 5px 10px;
  /* padding: 0.3125rem 0.625rem; */
  letter-spacing: 0.02em;
  position: relative;
}
.l-header__pulldown-link.current {
  color: #ff8400;
}
.l-header__pulldown-link::after {
  content: "";
  /* width: calc(100% - 0.625rem); */
  width: calc(100% - 10px);
  height: 2px;
  /* height: 0.125rem; */
  background-color: #ff8400;
  position: absolute;
  left: 5px;
  /* left: 0.3125rem; */
  bottom: -2px;
  /* bottom: -0.125rem; */
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-header__pulldown-link:hover {
  opacity: 1;
}
.l-header__pulldown-link:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.l-header__drawer-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-icon {
    display: block;
    /* width: 1.5625rem; */
    width: 25px;
    /* height: 1.25rem; */
    height: 20px;
    position: relative;
    cursor: pointer;
  }
}
.l-header__drawer-icon span {
  width: 25px;
  /* width: 1.5625rem; */
  height: 3px;
  /* height: 0.1875rem; */
  background-color: #272727;
  position: absolute;
  left: 0;
  /* border-radius: 0.25rem; */
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__drawer-icon span:nth-child(1) {
  top: 0;
}
.l-header__drawer-icon span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l-header__drawer-icon span:nth-child(3) {
  bottom: 0;
}
.l-header__drawer-icon.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l-header__drawer-icon.open span:nth-child(2) {
  opacity: 0;
}
.l-header__drawer-icon.open span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.l-header .l-header__drawer {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0;
  padding-bottom: 0;
}
.l-header .l-header__drawer.open {
  opacity: 1;
  /* height: calc(100vh - 8.375rem); */
  height: calc(100vh - 134px);
  padding-bottom: 40px;
  /* padding-bottom: 2.5rem; */
}

.p-drawer {
  width: 100%;
  /* height: calc(100vh - 8.375rem); */
  height: calc(100vh - 134px);
  background-color: #fff;
  overflow-y: scroll;
  padding-bottom: 40px;
  /* padding-bottom: 2.5rem; */
}

.p-drawer__menu {
  padding-top: 10px;
  /* padding-top: 0.625rem; */
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-drawer__list li {
  width: 100%;
}

.p-drawer__link {
  display: block;
  font-size: 16px;
  /* font-size: 1rem; */
  font-weight: 700;
  line-height: 1;
  padding: 16px 8px;
  /* padding: 1rem 0.5rem; */
  font-weight: 700;
}
.p-drawer__link.current {
  color: #ff8400;
}

.p-drawer__list li:not(:first-child) .p-drawer__link {
  border-top: 1px solid #d4d4d6;
  padding: 16px 24px;
  /* padding: 1rem 1.5rem; */
  position: relative;
}

.p-drawer__list li:not(:first-child) .p-drawer__link::after {
  content: "";
  width: 5.97px;
  /* width: 0.373125rem; */
  height: 11.2px;
  /* height: 0.7rem; */
  background-image: url("../images/common/drawer-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 8px;
  /* left: 0.5rem; */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-drawer__sublist-link {
  display: block;
  font-size: 16px;
  /* font-size: 1rem; */
  font-weight: 700;
  line-height: 1;
  padding: 16px 40px;
  /* padding: 1rem 2.5rem; */
  position: relative;
}
.p-drawer__sublist-link.current {
  color: #ff8400;
}

.p-drawer__sublist-link::after {
  content: "";
  width: 5.97px;
  /* width: 0.373125rem; */
  height: 11.2px;
  /* height: 0.7rem; */
  background-image: url("../images/common/drawer-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 24px;
  /* left: 1.5rem; */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-drawer__link--contact {
  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;
  margin-top: 14px;
  /* margin-top: 0.875rem; */
  font-size: 16px;
  /* font-size: 1rem; */
  font-weight: 700;
  color: #fff;
  background-color: #6fbd0c;
  padding: 10px 20px;
  /* padding: 0.625rem 1.25rem; */
  /* border-radius: 7.0625rem; */
  border-radius: 112.5px;
  /* -webkit-box-shadow: 0 0.1875rem 0 #4f8d00; */
  -webkit-box-shadow: 0 3px 0 #4f8d00;
  /* box-shadow: 0 0.1875rem 0 #4f8d00; */
  box-shadow: 0 3px 0 #4f8d00;
  position: relative;
  top: 5px;
  /* top: 0.3125rem; */
}

header.l-header a.p-drawer__link--contact {
  color: #fff;
}

.p-drawer__link--contact::after {
  display: none;
}
