@charset "UTF-8";
/*変数*/
/* ========================================
    基本設定
    ======================================== */
body {
  background-color: #FDDFB1;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ========================================
    ヘッダー
    ======================================== */
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: black;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger .is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger .is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger .is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}

.p-header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: -100%;
  right: 0%;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50vh;
  background: transparent;
  opacity: 0;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 10px 20px;
}

.p-header__title {
  width: 35%;
}

.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 100%;
}

.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: #fff;
}

.p-nav__list {
  display: block;
  padding-right: 20px;
  padding-left: 20px;
}
.p-nav__list .p-nav__item {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.p-nav__list .p-nav__item .p-nav__link {
  text-align: center;
  color: #202020;
  font-size: 18px;
  font-family: m-plus-rounded-2p, sans-serif;
  font-weight: 500;
  display: block;
  padding: 0 20px;
}
.p-nav__list .p-nav__item .request__btn {
  background-color: #51F5CF;
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 0;
  width: 100%;
}
.p-nav__list .p-nav__item .contact-info {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  color: #202020;
  padding: 0 20px;
}
.p-nav__list .p-nav__item .contact-info span {
  font-size: 24px;
  font-weight: 900;
  font-family: m-plus-rounded-2p, sans-serif;
  color: #F47B50;
}

@media screen and (min-width: 1280px) {
  .p-header__title {
    width: 15%;
  }
  .p-header__hamburger {
    display: none;
  }
  .p-nav__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .p-header__nav {
    position: static;
    opacity: 1;
    height: inherit;
    width: initial;
    box-shadow: none;
  }
  .p-nav__list {
    padding-right: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    margin: 5px;
  }
  .p-nav__list .p-nav__item {
    width: 140px;
    margin-bottom: 0;
  }
  .p-nav__list .p-nav__item:nth-child(5) {
    width: 225px;
  }
}
/* ========================================
    フッター
    ======================================== */
footer .infomation {
  background-color: #F47B50;
  padding: 60px 0;
}
footer .infomation .infomation__inner {
  max-width: 600px;
  margin: 0 auto;
}
footer .infomation .infomation__inner .footer-logo {
  width: 100%;
  background-color: #ffffff;
  padding: 20px 40px;
  border-radius: 20px;
  margin: 0 auto 40px auto;
}
footer .infomation .infomation__inner .developer {
  width: 315px;
  margin: 0 auto;
}
footer .infomation .infomation__inner .developer h2 {
  text-align: center;
  font-family: m-plus-rounded-2p, sans-serif;
  font-weight: 700;
  color: #ffffff;
  border-bottom: dotted 7px #ffffff;
  padding-bottom: 10px;
  margin: 0 auto 20px auto;
}
footer .infomation .infomation__inner .developer img {
  margin-bottom: 20px;
}
footer .infomation .infomation__inner .developer p {
  font-size: 14px;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  color: #ffffff;
}
footer .copy-right {
  background-color: #ffffff;
  padding: 10px 0;
}
footer .copy-right p {
  font-size: small;
  color: #202020;
  font-family: source-han-sans-japanese, sans-serif;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  footer .infomation .infomation__inner {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  footer .infomation .infomation__inner {
    max-width: 300px;
  }
  footer .infomation .infomation__inner .developer {
    width: 100%;
  }
  footer .infomation .infomation__inner .developer p {
    font-size: 13px;
    text-align: center;
  }
  footer .copy-right {
    padding: 14px 0;
  }
  footer .copy-right p {
    font-size: 0.85rem;
  }
}/*# sourceMappingURL=common.css.map */