/*=================================================*/
/*header
/*=================================================*/
.header {
  z-index: 100;
  background-color: #FFF;
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
}
@media (min-width: 1200px) {
  .header {
    height: auto;
  }
}
.header .headerPosition {
  position: relative;
}
@media (min-width: 1600px) {
  .header .headerPosition {
    width: 100%;
    max-width: 1600px;
    margin: auto;
  }
}

.header .headerInner {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
  height: auto;
}
@media (min-width: 1200px) {
  .header .headerInner {
    width: 95%;
  }
}
@media (min-width: 1300px) {
  .header .headerInner {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .header .headerInner {
    max-width: initial;
  }
}

.header .headerPosition {
  width: 90%;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1285px;
  margin: auto;
  height: 60px;
}
@media (min-width: 1300px) {
  .header .headerPosition {
    width: 100%;
    height: 79px;
  }
}

.header .headerPosition .logoLink .logo {
  width: 128px;
  height: 34px;
}
@media (min-width: 1200px) {
  .header .headerPosition .logoLink .logo {
    width: 128px;
    height: 34px;
  }
}

.header .headerInner .top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .headerInner .top .topContactLinkBox {
  display: none;
}
@media (min-width: 1300px) {
  .header .headerInner .top .topContactLinkBox {
    display: flex;
    align-items: center;
    gap: 14px;
  }
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button {
  position: relative;
  overflow: hidden;
  width: 165px;
  height: 40px;
  border: 1px solid #333;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  transition: ease 0.3s;
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #595757;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button:hover .noHover {
  opacity: 0;
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button:hover .hover {
  opacity: 1;
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button:hover .p {
  color: white;
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button .img {
  position: absolute;
  top: 50%;
  left: 27px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button .noHover {
  opacity: 1;
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button .hover {
  opacity: 0;
}
.header .headerInner .top .topContactLinkBox .contactButtonBox .button .p {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.28px;
  margin-left: 24px;
  z-index: 5;
  transition: 0.4s;
}
.header .headerInner .top .topContactLinkBox .telButtonBox {
  margin-right: 10px;
}
.header .headerInner .top .topContactLinkBox .telButtonBox .telBtn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.header .headerInner .top .topContactLinkBox .telButtonBox .telBtn .img {
  width: 19px;
  height: 19px;
}
.header .headerInner .top .topContactLinkBox .telButtonBox .telBtn .p {
  color: #333;
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.9px;
}
.header .headerInner .top .topContactLinkBox .telButtonBox .telText {
  background: linear-gradient(180deg, #A5A5A5 0%, #A5A5A5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.39px;
}
.header .headerInner .top .topContactLinkBox .snsButtonBox {
  display: flex;
  align-items: center;
}
.header .headerInner .top .topContactLinkBox .snsButtonBox .snsBtn {
  display: inline-block;
  margin-left: 4px;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.header .headerInner .top .topContactLinkBox .snsButtonBox .snsBtn:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
.header .headerInner .top .topContactLinkBox .snsButtonBox .amebroBtn {
  display: inline-block;
  margin-left: 4px;
  width: 69px;
  height: 22px;
}
.header .headerInner .top .topContactLinkBox .snsButtonBox .amebroBtn:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.header .headerInner .top .button .p {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #348702;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  margin-left: 20px;
  z-index: 5;
}

.header .headerInner .bottom {
  display: none;
}

@media (min-width: 1300px) {
  .header .headerInner .bottom {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}
.header .headerInner .bottom .link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.header .headerInner .bottom .link .p {
  padding: 26px 10px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.12px;
  transition: 0.3s;
}

.header .headerInner .bottom .link:hover .p {
  transition: 0.3s;
  color: #AFAFAF;
}

.hamburgerWrapper {
  position: absolute;
  top: -10px;
  right: 0;
}
@media (min-width: 1300px) {
  .hamburgerWrapper {
    top: 15px;
    display: none;
  }
}

.header .headerInner .top .headerRight {
  display: flex;
  gap: 30px;
}

.hamburgerWrapper .hamburger {
  display: block;
  position: relative;
  z-index: 4;
  width: 30px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}

.hamburgerWrapper .hamburger .span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 0px;
  background: #646464;
  transition: 0.2s ease-in-out;
}

.hamburgerWrapper .hamburger .span:nth-child(1) {
  top: 0px;
}

.hamburgerWrapper .hamburger .span:nth-child(2) {
  top: 12px;
}

.hamburgerWrapper .hamburger .span:nth-child(3) {
  top: 24px;
}

.hamburgerWrapper .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburgerWrapper .hamburger.active .span:nth-child(2) {
  width: 0px;
}

.hamburgerWrapper .hamburger.active .span:nth-child(1),
.hamburgerWrapper .hamburger.active .span:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburgerWrapper .hamburger.active .span:nth-child(1) {
  transform: translateY(16px);
}

.hamburgerWrapper .hamburger.active .span:nth-child(3) {
  transform: translateY(-8px) rotate(90deg);
}

.hamburgerWrapper .globalMenuSp {
  position: fixed;
  z-index: 3;
  top: -20px;
  right: 0;
  background: white;
  text-align: left;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
@media (min-width: 1100px) {
  .hamburgerWrapper .globalMenuSp {
    width: 40%;
  }
}

.hamburgerWrapper .globalMenuSp .navUl {
  margin: 0 auto;
  padding: 68px 0 20px;
  width: 100%;
}

.hamburgerWrapper .globalMenuSp .navUl .navLink {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  text-decoration: none;
  border-bottom: 1px solid rgb(225, 225, 225);
}

.hamburgerWrapper .globalMenuSp .navUl .navLink .p {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.08em;
  color: #333333;
}

.hamburgerWrapper .globalMenuSp .navUl .navLink.snsLink .img {
  width: 29px;
  height: 29px;
}

.hamburgerWrapper .globalMenuSp .navUl .navLink.snsLink .img.amebroImg {
  width: 69px;
  height: 22px;
}

.hamburgerWrapper .globalMenuSp .navUl .navLink:hover {
  background: rgba(25, 25, 25, 0.1);
  transition: 0.3s;
}

.hamburgerWrapper .globalMenuSp .navUl .navLink:hover .p {
  color: #333333;
}

.hamburgerWrapper .globalMenuSp.active {
  opacity: 100;
}
.h-ameblo .h-txt-sm {
    color: #fff;
}
.h-ameblo:hover {
    color: #fff;
  transform: translateY(-5px);
    transition: 0.3s;
}
/*# sourceMappingURL=header.css.map */