@charset 'UTF-8';

html body *{ 
  transition: all ease-in-out .3s
}

/*ヘッダー用*/
.faqnew .row {
  margin-top: 75px;
}

.Kitaca_service_title {
  margin-top: 50px;
}

@media screen and (max-width:767px) {
  .faqnew .row{
    margin-top: 45px;
  }
}

.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 75px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width:100vw;
  background-color: #fff;
  border-bottom: 1px solid #c6c6c6;
}

@media screen and (max-width:767px) {
  .header {
      height: 45px;
      padding-right: 0
  }
}

.header::before {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
}

.header__logo {
  display: flex;
  padding: 0 20px;
  align-items: center;
}

@media screen and (max-width:767px) {
  .header__logo {
      padding: 0 10px
  }
}

@media screen and (max-width:767px) {
  .header__logo img {
      width: 36px
  }
}

.header__logo__text {
  font-family: 'Shippori Mincho',serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-left: 25px;
  margin-bottom: 0px;
}

@media screen and (max-width: 1023px) {
  .header__logo__text {
    font-size: 1.6rem;
}
}

@media screen and (max-width: 767px) {
  .header__logo__text {
    font-size: 1.4rem;
    margin-left: 15px;
}
}

.header__btn {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  width: 75px;
  height: 75px;
  border: none;
  outline: 0;
  background-color: #4ca223
}

@media screen and (max-width: 767px) {
  .header__btn {
    width: 45px;
    height: 45px;
}
}

@media screen and (max-width:1023px) {
  .header__btn {
      z-index: 2;
      display: block
  }
}

.header__btn:focus {
  outline: 0
}

.header__btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff
}

.header__btn span:first-child {
  top: calc(50% - 7px)
}

.header__btn span:last-child {
  top: calc(50% + 7px)
}

@media screen and (max-width:1023px) {
  .header__nav {
      position: fixed;
      z-index: 1;
      top: 0;
      right: 0;
      left: 0;
      display: flex;
      width: 100%;
      height: 100vh;
      height: 100svh;
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      opacity: 0;
      background-color: #4ca223;
      justify-content: center;
      align-items: center
  }
}

.header__nav__list {
  display: flex;
  list-style: none;
  margin-bottom: 0px;
  padding: 0 20px
}

@media screen and (max-width:1023px) {
  .header__nav__list {
      display: block;
      padding: 0
  }
}

.header__nav__list__item {
  height: 100%;
  padding: 0 20px;
  text-align: center
}

@media screen and (max-width:1023px) {
  .header__nav__list__item {
      height: auto;
      margin-bottom: 40px;
      padding: 0
  }
}

@media screen and (max-width:767px) {
  .header__nav__list__item:last-child {
      display: block;
      margin-bottom: 0
  }
}

.header__link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000
}

@media screen and (max-width:767px) {
  .header__link {
      font-size: 1.6rem;
      color: #fff
  }
}

.header__link:hover {
  color: inherit
}

@media screen and (max-width:767px) {
  .header__link:hover {
      color: #fff
  }
}

.menuOpen .header__btn span:first-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg)
}

.menuOpen .header__btn span:nth-child(2) {
  opacity: 0
}

.menuOpen .header__btn span:last-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg)
}

.menuOpen .header__nav {
  -webkit-transform: none;
  transform: none;
  opacity: 1
}

@media screen and (min-width:681px) and (max-width:767px) {
  .header__btn {
    position: relative;
  }
}

/*フッター用*/
.footer {
  padding: 35px 0 15px;
  background-color: #4ca223
}

.footer__logo {
  margin-bottom: 25px;
  text-align: center
}

.footer__copy {
  text-align: center;
  margin: 0px;
}

.footer__copy small {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff
}

@media screen and (max-width:767px) {
  .footer__copy small {
      font-size: 1.1rem
  }
}