@charset "utf-8";
header {
  width: 100%;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.header__wrapper {
  width: 100%;
  height: 100px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header__wrapper {
    height: 60px;
  }
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.header__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  width: 100%;
  max-width: 551px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .header__left {
    padding-left: 2px;
    max-width: 527px;
  }
}

.header__other-logo {
  width: 21%;
  max-width: 103px;
}

.header__logoLink {
  width: 78%;
  max-width: 408px;
}

.header__logoLink a {
  display: block;
}

.header__navWrap {
  display: none;
  width: 100%;
  max-width: 370px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #244e25;
  z-index: 2;
  overflow: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  .header__navWrap {
    max-width: none;
  }
}
.header__navWrap::-webkit-scrollbar{
  display: none;
}

.header__nav-inner {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.header__nav {
  padding-top: 116px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    padding-top: 46px;
  }
}

.header__nav-listItem:not(:last-child) {
  margin-bottom: 18px;
}

.header__nav-listItem a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

.ham {
  position: relative;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 10;
  background-color: #244e25;
}
@media screen and (max-width: 1360px) {
  .ham {
    transform: unset;
  }
}
@media screen and (max-width: 768px) {
  .ham {
    width: 60px;
    height: 60px;
  }
}

.ham__lineWrapper {
  width: 100%;
  height: 100%;
}

.ham__lineWrapper span {
  display: block;
  width: 36px;
  height: 4px;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
.ham__lineWrapper span {
  height: 2px;
}
}

.ham__lineWrapper span:nth-child(1) {
  position: absolute;
  top: 35%;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.ham__lineWrapper span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.ham__lineWrapper span:nth-child(3) {
  position: absolute;
  bottom: 35%;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.ham.open {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .ham.open {
    width: 60px;
    height: 60px;
  }
}

.ham.open .ham__lineWrapper span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.ham.open .ham__lineWrapper span:nth-child(2) {
  opacity: 0;
}

.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

.sns__list {
  width: 100%;
  max-width: 223px;
  margin-bottom: 53px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sns__list {
    margin-bottom: 30px;
  }
}

.sns__list-item {
  width: 33%;
  max-width: 44px;
}

.site-policy {
  color: #fff;
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: 0.2em;
}