@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
* {
  font-family: "Lato", "Noto Sans JP", sans-serif;
}

body {
  overflow-x: hidden;
}

.full {
  width: 100%;
}

a {
  text-decoration: none;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  max-width: 100%;
}
.header__inside {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 48px 10px 0;
  max-width: 1297px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .header__inside {
    padding: 20px 20px 0;
  }
}
.header__inside__left {
  display: flex;
}
.header__inside__left .logo {
  margin-right: 31px;
}
.header__inside__left .logo img {
  width: 112px;
}
.header__inside__left .menu {
  display: flex;
}
@media screen and (max-width: 750px) {
  .header__inside__left .menu {
    display: none;
  }
}
.header__inside__left .menu__item {
  font-size: 15px;
  text-align: center;
  margin-left: 42px;
  color: #222;
}
.header__inside__left .menu__item a {
  color: #222;
  text-decoration: none;
}
.header__inside__left .menu__item span {
  font-size: 10px;
  display: block;
}
.header__inside__right {
  width: 30px;
  height: 30px;
}
.header__inside__right .ham {
  transition: all 0.2s;
  top: 14px;
  width: 13px;
  height: 2px;
  border-radius: 10px;
  background-color: #222;
  position: relative;
}
.header__inside__right .ham:before {
  position: absolute;
  content: "";
  top: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #222;
  border-radius: 10px;
}
.header__inside__right .ham:after {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #222;
  border-radius: 10px;
}
.header__inside__right:hover {
  cursor: pointer;
}
.header__inside__right:hover .ham {
  width: 24px;
}
.header__inside__right:hover .ham:before {
  width: 13px;
}
.header__inside__right:hover .ham:after {
  width: 18px;
}

.footer {
  background-color: #2F2F2F;
  max-width: 100%;
}
.footer * {
  color: #FFF;
}
.footer__inside {
  width: 1280px;
  max-width: 100%;
  padding-left: 40px;
  padding: 58px 0 45px 40px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .footer__inside {
    width: 100%;
  }
}
.footer__item:last-child {
  margin-right: 0;
}
.footer__item.menu, .footer__item .social {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .footer__item.menu {
    display: block;
  }
}
.footer__item .item {
  margin-right: 80px;
}
.footer__item .item a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer__item .item a.head {
  font-size: 20px;
  margin-bottom: 31px;
  position: relative;
}
.footer__item .item a.head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 18px;
  height: 2px;
  background-color: #FFFFFF;
}
.footer__item .privacy {
  font-size: 14px;
  margin-top: 112px;
}

.commonButton {
  position: relative;
  display: flex;
  align-items: center;
  width: 320px;
  height: 75px;
  padding-left: 30px;
  border-radius: 75px;
  margin-right: 30px;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .commonButton {
    width: 335px;
    text-align: center;
    display: block;
    text-align: center;
    line-height: 72px;
    padding-left: 0px;
    margin-bottom: 15px;
    margin-right: 0;
    font-size: 16px;
  }
}
.commonButton:hover {
  transition: 0.2s;
  color: #fff;
  border: 1px solid #FFF;
}
.commonButton::after {
  content: "→";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 15px;
  height: 24px;
  margin: auto;
  line-height: 25px;
}
.commonButton.transparent {
  background-color: transparent;
  border: 1px solid #222;
}
.commonButton.transparent:hover {
  color: #FFF;
  border: 1px solid #FFF;
  background-color: #222;
}
.commonButton.black {
  color: #fff;
  background-color: #222;
  border: 1px solid #fff;
}
.commonButton.black:hover {
  color: #222;
  border: 1px solid #222;
  background-color: #fff;
}/*# sourceMappingURL=common.css.map */