html.is-open {
  overflow: hidden;
}

.normalizeFB {
  font-size: 62.5%;
}
.normalizeFB * {
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-white);
  border: 0;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
.normalizeFB a {
  text-decoration: none;
}
.normalizeFB ol, .normalizeFB ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.normalizeFB .is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .normalizeFB .is-pc {
    display: none;
  }
}
.normalizeFB .is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .normalizeFB .is-sp {
    display: block;
  }
}

.l-container {
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
  width: 1200px;
}
@media screen and (max-width: 1199px) {
  .l-container {
    padding-left: calc(70 / 1200 * 100vw);
    padding-right: calc(70 / 1200 * 100vw);
    width: calc(1200 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: calc(15 / 375 * 100vw);
    padding-right: calc(15 / 375 * 100vw);
    width: 100%;
  }
}

.c-hamburger {
  background-color: #152473;
  cursor: pointer;
  display: block;
  height: calc(50 / 375 * 100vw);
  position: relative;
  width: calc(50 / 375 * 100vw);
  z-index: 60;
}
.c-hamburger__bars__bar {
  background-color: #fff;
  height: calc(2 / 375 * 100vw);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.3s;
  width: calc(24 / 375 * 100vw);
}
.c-hamburger__bars__bar:nth-of-type(1) {
  top: 24%;
}
.c-hamburger__bars__bar:nth-of-type(2) {
  top: 38%;
}
.c-hamburger__bars__bar:nth-of-type(3) {
  top: 52%;
}
.c-hamburger__menu {
  bottom: calc(3 / 375 * 100vw);
  color: #fff;
  font-size: calc(8 / 375 * 100vw);
  left: 50%;
  letter-spacing: 0;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}
.c-hamburger__menu--close {
  display: none;
}
.c-hamburger.is-active .c-hamburger__bars__bar:nth-of-type(1) {
  left: calc(14 / 375 * 100vw);
  top: calc(14 / 375 * 100vw);
  transform: rotate(24deg);
  transform-origin: 0% 50%;
}
.c-hamburger.is-active .c-hamburger__bars__bar:nth-of-type(2) {
  left: calc(14 / 375 * 100vw);
  top: calc(24 / 375 * 100vw);
  transform: rotate(-24deg);
  transform-origin: 0% 50%;
}
.c-hamburger.is-active .c-hamburger__bars__bar:nth-of-type(3) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__menu--menu {
  display: none;
}
.c-hamburger.is-active .c-hamburger__menu--close {
  display: block;
}

.kv {
  border-top: 0;
}

header {
  height: 70px;
}
@media screen and (max-width: 1439px) {
  header {
    height: calc(70 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  header {
    height: calc(50 / 375 * 100vw);
  }
}

.p-headerFB {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px;
  height: 70px;
  position: fixed;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 1439px) {
  .p-headerFB {
    box-shadow: rgba(0, 0, 0, 0.16) calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(6 / 1440 * 100vw);
    height: calc(70 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB {
    box-shadow: rgba(0, 0, 0, 0.16) calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(6 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
  }
}
.p-headerFB .l-container {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.p-headerFB__inner {
  align-items: center;
  display: flex;
  height: 100%;
  padding-left: 20px;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__inner {
    padding-left: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__inner {
    padding-left: calc(15 / 375 * 100vw);
  }
}
.p-headerFB__logoBox a {
  display: block;
}
.p-headerFB__logoBox__text {
  font-size: 11px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__logoBox__text {
    font-size: calc(11 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__logoBox__text {
    display: none;
    font-size: calc(11 / 375 * 100vw);
  }
}
.p-headerFB__logoBox__logo {
  width: 200px;
}
.p-headerFB__logoBox__logo img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__logoBox__logo {
    width: calc(200 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__logoBox__logo {
    width: calc(192 / 375 * 100vw);
  }
}
.p-headerFB__nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-headerFB__nav {
    display: none;
  }
}
.p-headerFB__nav > ul {
  align-items: center;
  display: flex;
}
.p-headerFB__nav > ul > li {
  font-size: 19px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__nav > ul > li {
    font-size: calc(19 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__nav > ul > li {
    font-size: calc(19 / 375 * 100vw);
  }
}
.p-headerFB__nav > ul > li + li {
  margin-left: 32px;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__nav > ul > li + li {
    margin-left: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__nav > ul > li + li {
    margin-left: calc(32 / 375 * 100vw);
  }
}
.p-headerFB__nav a {
  font-size: 19px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__nav a {
    font-size: calc(19 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__nav a {
    font-size: calc(19 / 375 * 100vw);
  }
}
.p-headerFB__nav a:hover {
  color: #4db5b5;
}
@media screen and (max-width: 767px) {
  .p-headerFB__nav a:hover {
    color: #111111;
  }
}
.p-headerFB__info {
  margin-left: 23px;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__info {
    margin-left: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__info {
    display: none;
    margin-left: calc(23 / 375 * 100vw);
  }
}
.p-headerFB__info__text {
  font-size: 12px;
  padding-left: 4px;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__info__text {
    font-size: calc(12 / 1440 * 100vw);
    padding-left: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__info__text {
    font-size: calc(12 / 375 * 100vw);
    padding-left: calc(4 / 375 * 100vw);
  }
}
.p-headerFB__info__tel {
  align-items: center;
  display: flex;
}
.p-headerFB__info__tel__label {
  align-items: center;
  background-color: #f3f3f6;
  border-radius: 2px;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  margin-right: 9px;
  width: 40px;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__info__tel__label {
    border-radius: calc(2 / 1440 * 100vw);
    font-size: calc(12 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
    margin-right: calc(9 / 1440 * 100vw);
    width: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__info__tel__label {
    border-radius: calc(2 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
    margin-right: calc(9 / 375 * 100vw);
    width: calc(40 / 375 * 100vw);
  }
}
.p-headerFB__info__tel__number a {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  transition: 0.3s;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__info__tel__number a {
    font-size: calc(24 / 1440 * 100vw);
    line-height: calc(36 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__info__tel__number a {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(36 / 375 * 100vw);
  }
}
.p-headerFB__info__tel__number a:hover {
  color: #4db5b5;
}
@media screen and (max-width: 767px) {
  .p-headerFB__info__tel__number a:hover {
    color: #111111;
  }
}
.p-headerFB__buttonList {
  align-items: center;
  display: flex;
  height: 100%;
  margin-left: 31px;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__buttonList {
    margin-left: calc(31 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__buttonList {
    display: none;
    margin-left: calc(31 / 375 * 100vw);
  }
}
.p-headerFB__buttonList__button {
  height: 100%;
}
.p-headerFB__buttonList__button a {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 19px;
  height: 100%;
  justify-content: center;
  transition: 0.3s;
  width: 203px;
}
@media screen and (max-width: 1439px) {
  .p-headerFB__buttonList__button a {
    font-size: calc(19 / 1440 * 100vw);
    width: calc(203 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerFB__buttonList__button a {
    font-size: calc(19 / 375 * 100vw);
    width: calc(203 / 375 * 100vw);
  }
}
.p-headerFB__buttonList__button--visit a {
  background-color: #4db5b5;
}
.p-headerFB__buttonList__button--visit a:hover {
  background-color: #b1cdc8;
}
@media screen and (max-width: 767px) {
  .p-headerFB__buttonList__button--visit a:hover {
    background-color: #4db5b5;
  }
}
.p-headerFB__buttonList__button--entry a {
  background-color: #152473;
}
.p-headerFB__buttonList__button--entry a:hover {
  background-color: #69a7ef;
}
@media screen and (max-width: 767px) {
  .p-headerFB__buttonList__button--entry a:hover {
    background-color: #152473;
  }
}
.p-headerFB__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-headerFB__hamburger {
    display: block;
    margin-left: auto;
  }
}

.p-contactFB {
  background-image: url(https://www.machida-techno.com/wp-content/themes/WordPressTheme/assets/images/common/pc_cta_area.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contactFB {
    background-image: url(https://www.machida-techno.com/wp-content/themes/WordPressTheme/assets/images/common/sp_cta_area.jpg);
  }
}
.p-contactFB__inner {
  padding-bottom: 80px;
  padding-top: 76px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__inner {
    padding-bottom: calc(80 / 1200 * 100vw);
    padding-top: calc(76 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__inner {
    padding-bottom: calc(80 / 375 * 100vw);
    padding-top: calc(76 / 375 * 100vw);
  }
}
.p-contactFB__titleBox {
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__titleBox {
    margin-bottom: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__titleBox {
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.p-contactFB__titleBox__titleJa {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 56px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__titleBox__titleJa {
    font-size: calc(40 / 1200 * 100vw);
    letter-spacing: calc(3 / 1200 * 100vw);
    line-height: calc(56 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__titleBox__titleJa {
    font-size: calc(32 / 375 * 100vw);
    letter-spacing: calc(2.5 / 375 * 100vw);
    line-height: calc(45 / 375 * 100vw);
  }
}
.p-contactFB__titleBox__titleEn {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 6px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__titleBox__titleEn {
    font-size: calc(24 / 1200 * 100vw);
    letter-spacing: calc(2 / 1200 * 100vw);
    margin-top: calc(6 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__titleBox__titleEn {
    font-size: calc(16 / 375 * 100vw);
    letter-spacing: calc(1.3 / 375 * 100vw);
    margin-top: calc(6 / 375 * 100vw);
  }
}
.p-contactFB__content {
  align-items: center;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .p-contactFB__content {
    display: block;
  }
}
.p-contactFB__content__section {
  align-items: center;
  background-color: #ffffff;
  border-radius: 24px;
  display: flex;
  height: 224px;
  justify-content: center;
  width: 510px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section {
    border-radius: calc(24 / 1200 * 100vw);
    height: calc(224 / 1200 * 100vw);
    width: calc(510 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section {
    border-radius: calc(24 / 375 * 100vw);
    height: auto;
    padding: calc(32 / 375 * 100vw) calc(15 / 375 * 100vw) calc(26 / 375 * 100vw);
    width: 100%;
  }
}
.p-contactFB__content__section__inner {
  width: 100%;
}
.p-contactFB__content__section__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 17px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__title {
    font-size: calc(16 / 1200 * 100vw);
    line-height: calc(27 / 1200 * 100vw);
    margin-bottom: calc(17 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__title {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
    margin-bottom: calc(17 / 375 * 100vw);
  }
}
.p-contactFB__content__section__infoList {
  padding-left: 45px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__infoList {
    padding-left: calc(45 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__infoList {
    padding-left: calc(0 / 375 * 100vw);
  }
}
.p-contactFB__content__section__infoList__infoBox {
  align-items: center;
  display: flex;
}
.p-contactFB__content__section__infoList__infoBox__label {
  align-items: center;
  background-color: #f3f3f6;
  border-radius: 2px;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  margin-right: 9px;
  width: 40px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__infoList__infoBox__label {
    border-radius: calc(2 / 1200 * 100vw);
    font-size: calc(12 / 1200 * 100vw);
    height: calc(24 / 1200 * 100vw);
    margin-right: calc(9 / 1200 * 100vw);
    width: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__infoList__infoBox__label {
    border-radius: calc(2 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
    margin-right: calc(9 / 375 * 100vw);
    width: calc(40 / 375 * 100vw);
  }
}
.p-contactFB__content__section__infoList__infoBox__mail {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__infoList__infoBox__mail {
    font-size: calc(18 / 1200 * 100vw);
    line-height: calc(27 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__infoList__infoBox__mail {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
  }
}
.p-contactFB__content__section__infoList__infoBox__text {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__infoList__infoBox__text {
    font-size: calc(24 / 1200 * 100vw);
    line-height: calc(36 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__infoList__infoBox__text {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(36 / 375 * 100vw);
  }
}
.p-contactFB__content__section__infoList__infoBox__text a {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__infoList__infoBox__text a {
    font-size: calc(24 / 1200 * 100vw);
    line-height: calc(36 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__infoList__infoBox__text a {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(36 / 375 * 100vw);
  }
}
.p-contactFB__content__section__infoList__infoBox__text a:hover {
  color: #4db5b5;
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__infoList__infoBox__text a:hover {
    color: #111111;
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__infoList__infoBox + .p-contactFB__content__section__infoList__infoBox {
    margin-top: calc(8 / 375 * 100vw);
  }
}
.p-contactFB__content__section__text {
  font-size: 12px;
  margin-top: 8px;
  padding-left: 45px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__text {
    font-size: calc(12 / 1200 * 100vw);
    margin-top: calc(8 / 1200 * 100vw);
    padding-left: calc(45 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__text {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
    padding-left: calc(45 / 375 * 100vw);
  }
}
.p-contactFB__content__section__buttonList {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__buttonList {
    display: block;
  }
}
.p-contactFB__content__section__buttonList__button a {
  align-items: center;
  border-radius: 4px;
  color: #ffffff;
  display: flex;
  font-size: 19px;
  height: 70px;
  justify-content: center;
  transition: 0.3s;
  width: 203px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__buttonList__button a {
    border-radius: calc(4 / 1200 * 100vw);
    font-size: calc(19 / 1200 * 100vw);
    height: calc(70 / 1200 * 100vw);
    width: calc(203 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__buttonList__button a {
    border-radius: calc(4 / 375 * 100vw);
    font-size: calc(19 / 375 * 100vw);
    height: calc(73 / 375 * 100vw);
    width: 100%;
  }
}
.p-contactFB__content__section__buttonList__button--visit a {
  background-color: #4db5b5;
}
.p-contactFB__content__section__buttonList__button--visit a:hover {
  background-color: #b1cdc8;
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__buttonList__button--visit a:hover {
    background-color: #4db5b5;
  }
}
.p-contactFB__content__section__buttonList__button--entry a {
  background-color: #152473;
}
.p-contactFB__content__section__buttonList__button--entry a:hover {
  background-color: #69a7ef;
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__buttonList__button--entry a:hover {
    background-color: #152473;
  }
}
.p-contactFB__content__section__buttonList__button + .p-contactFB__content__section__buttonList__button {
  margin-left: 20px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section__buttonList__button + .p-contactFB__content__section__buttonList__button {
    margin-left: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section__buttonList__button + .p-contactFB__content__section__buttonList__button {
    margin-left: calc(0 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-contactFB__content__section + .p-contactFB__content__section {
  margin-left: 40px;
}
@media screen and (max-width: 1199px) {
  .p-contactFB__content__section + .p-contactFB__content__section {
    margin-left: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-contactFB__content__section + .p-contactFB__content__section {
    margin-left: calc(0 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
  }
}

.p-gotopFB {
  background-color: #f3f3f6;
  height: 64px;
}
@media screen and (max-width: 1199px) {
  .p-gotopFB {
    height: calc(64 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gotopFB {
    height: calc(78 / 375 * 100vw);
  }
}
.p-gotopFB .l-container {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.p-gotopFB__inner {
  height: 100%;
}
.p-gotopFB__button {
  height: 100%;
}
.p-gotopFB__button a {
  align-items: center;
  color: #152473;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  height: 100%;
  justify-content: center;
  letter-spacing: 1.3px;
  transition: 0.3s;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-gotopFB__button a {
    font-size: calc(16 / 1200 * 100vw);
    letter-spacing: calc(1.3 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gotopFB__button a {
    font-size: calc(16 / 375 * 100vw);
    letter-spacing: calc(1.3 / 375 * 100vw);
  }
}
.p-gotopFB__button a:hover {
  color: #4db5b5;
}
.p-gotopFB__button a::after {
  background-image: url(https://www.machida-techno.com/wp-content/themes/WordPressTheme/assets/images/common/to_top.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 7px;
  margin-left: 10px;
  width: 12px;
}
@media screen and (max-width: 1199px) {
  .p-gotopFB__button a::after {
    height: calc(7 / 1200 * 100vw);
    margin-left: calc(10 / 1200 * 100vw);
    width: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gotopFB__button a::after {
    height: calc(7 / 375 * 100vw);
    margin-left: calc(10 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
  }
}

.p-footerFB {
  background-color: #ffffff;
}
.p-footerFB .l-container {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .p-footerFB .l-container {
    padding-left: calc(15 / 375 * 100vw);
    padding-right: calc(15 / 375 * 100vw);
  }
}
.p-footerFB__inner {
  align-items: flex-end;
  display: flex;
  padding-bottom: 40px;
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__inner {
    padding-bottom: calc(40 / 1200 * 100vw);
    padding-top: calc(80 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__inner {
    display: block;
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(35 / 375 * 100vw);
  }
}
.p-footerFB__menu {
  align-items: center;
  display: flex;
  position: absolute;
  right: 0;
  top: 170px;
  width: 862px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__menu {
    top: calc(170 / 1200 * 100vw);
    width: calc(862 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu {
    display: block;
    position: static;
    width: 100%;
  }
}
.p-footerFB__menu__nav > ul {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__nav > ul {
    justify-content: center;
  }
}
.p-footerFB__menu__nav > ul > li + li {
  margin-left: 60px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__menu__nav > ul > li + li {
    margin-left: calc(60 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__nav > ul > li + li {
    border-left: 1px solid #dce0e2;
    margin-left: calc(20 / 375 * 100vw);
    padding-left: calc(20 / 375 * 100vw);
  }
}
.p-footerFB__menu__nav > ul a {
  font-size: 19px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__menu__nav > ul a {
    font-size: calc(19 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__nav > ul a {
    font-size: calc(19 / 375 * 100vw);
  }
}
.p-footerFB__menu__nav > ul a:hover {
  color: #4db5b5;
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__nav > ul a:hover {
    color: #111111;
  }
}
.p-footerFB__menu__buttonList {
  align-items: center;
  display: flex;
  margin-left: 40px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__menu__buttonList {
    margin-left: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__buttonList {
    display: block;
    margin-left: calc(0 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
  }
}
.p-footerFB__menu__buttonList__button a {
  align-items: center;
  border-radius: 4px;
  color: #ffffff;
  display: flex;
  font-size: 19px;
  height: 70px;
  justify-content: center;
  transition: 0.3s;
  width: 203px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__menu__buttonList__button a {
    border-radius: calc(4 / 1200 * 100vw);
    font-size: calc(19 / 1200 * 100vw);
    height: calc(70 / 1200 * 100vw);
    width: calc(203 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__buttonList__button a {
    border-radius: calc(4 / 375 * 100vw);
    font-size: calc(19 / 375 * 100vw);
    height: calc(73 / 375 * 100vw);
    width: 100%;
  }
}
.p-footerFB__menu__buttonList__button--visit a {
  background-color: #4db5b5;
}
.p-footerFB__menu__buttonList__button--visit a:hover {
  background-color: #b1cdc8;
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__buttonList__button--visit a:hover {
    background-color: #b1cdc8;
  }
}
.p-footerFB__menu__buttonList__button--entry a {
  background-color: #152473;
}
.p-footerFB__menu__buttonList__button--entry a:hover {
  background-color: #69a7ef;
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__buttonList__button--entry a:hover {
    background-color: #152473;
  }
}
.p-footerFB__menu__buttonList__button + .p-footerFB__menu__buttonList__button {
  margin-left: 20px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__menu__buttonList__button + .p-footerFB__menu__buttonList__button {
    margin-left: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__menu__buttonList__button + .p-footerFB__menu__buttonList__button {
    margin-left: calc(0 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info {
    margin-top: calc(48 / 375 * 100vw);
  }
}
.p-footerFB__info__company__logo {
  width: 276px;
}
.p-footerFB__info__company__logo img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__company__logo {
    width: calc(276 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__company__logo {
    margin: 0 auto;
    width: calc(276 / 375 * 100vw);
  }
}
.p-footerFB__info__company__logo a {
  display: block;
}
.p-footerFB__info__company__name {
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__company__name {
    font-size: calc(14 / 1200 * 100vw);
    margin-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__company__name {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(21 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    text-align: center;
  }
}
.p-footerFB__info__address {
  margin-top: 8px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__address {
    margin-top: calc(8 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__address {
    margin-top: calc(8 / 375 * 100vw);
  }
}
.p-footerFB__info__address__postal {
  font-size: 12px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__address__postal {
    font-size: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__address__postal {
    font-size: calc(12 / 375 * 100vw);
    text-align: center;
  }
}
.p-footerFB__info__address__textBox {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__address__textBox {
    justify-content: center;
  }
}
.p-footerFB__info__address__textBox__text {
  font-size: 14px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__address__textBox__text {
    font-size: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__address__textBox__text {
    font-size: calc(14 / 375 * 100vw);
  }
}
.p-footerFB__info__address__textBox__link {
  margin-left: 5px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__address__textBox__link {
    margin-left: calc(5 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__address__textBox__link {
    margin-left: calc(5 / 375 * 100vw);
  }
}
.p-footerFB__info__address__textBox__link a {
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__address__textBox__link a {
    font-size: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__address__textBox__link a {
    font-size: calc(12 / 375 * 100vw);
  }
}
.p-footerFB__info__address__textBox__link a[target=_blank] {
  align-items: center;
  display: flex;
}
.p-footerFB__info__address__textBox__link a[target=_blank]::after {
  background-image: url(https://www.machida-techno.com/wp-content/themes/WordPressTheme/assets/images/common/icon_link_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 14px;
  margin-left: 3px;
  width: 12px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__address__textBox__link a[target=_blank]::after {
    height: calc(14 / 1200 * 100vw);
    margin-left: calc(3 / 1200 * 100vw);
    width: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__address__textBox__link a[target=_blank]::after {
    height: calc(14 / 375 * 100vw);
    margin-left: calc(3 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
  }
}
.p-footerFB__info__address__textBox__link a:hover {
  color: #4db5b5;
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__address__textBox__link a:hover {
    color: #111111;
  }
}
.p-footerFB__info__textBox {
  margin-top: 24px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__textBox {
    margin-top: calc(24 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__textBox {
    margin-top: calc(24 / 375 * 100vw);
  }
}
.p-footerFB__info__textBox__text {
  font-size: 12px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__textBox__text {
    font-size: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__textBox__text {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
    text-align: center;
  }
}
.p-footerFB__info__textBox__tel {
  align-items: center;
  display: flex;
  margin-top: 8px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__textBox__tel {
    margin-top: calc(8 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__textBox__tel {
    background-color: #f5f5f5;
    border: 1px solid #152473;
    border-radius: calc(4 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
    justify-content: center;
    margin: 0 auto;
    margin-top: calc(0 / 375 * 100vw);
    width: calc(315 / 375 * 100vw);
  }
}
.p-footerFB__info__textBox__tel__label {
  align-items: center;
  background-color: #f3f3f6;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  height: 26px;
  justify-content: center;
  margin-right: 8px;
  width: 32px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__textBox__tel__label {
    font-size: calc(12 / 1200 * 100vw);
    height: calc(26 / 1200 * 100vw);
    margin-right: calc(8 / 1200 * 100vw);
    width: calc(32 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__textBox__tel__label {
    font-size: calc(14 / 375 * 100vw);
    height: auto;
    margin-right: calc(12 / 375 * 100vw);
    width: auto;
  }
}
.p-footerFB__info__textBox__tel__number a {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__info__textBox__tel__number a {
    font-size: calc(24 / 1200 * 100vw);
    line-height: calc(36 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__textBox__tel__number a {
    font-size: calc(32 / 375 * 100vw);
    line-height: calc(32 / 375 * 100vw);
  }
}
.p-footerFB__info__textBox__tel__number a:hover {
  color: #4db5b5;
}
@media screen and (max-width: 767px) {
  .p-footerFB__info__textBox__tel__number a:hover {
    color: #111111;
  }
}
.p-footerFB__navBox {
  margin-left: auto;
  width: 862px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__navBox {
    width: calc(862 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox {
    margin-top: calc(40 / 375 * 100vw);
    width: 100%;
  }
}
.p-footerFB__navBox__title {
  font-size: 12px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__navBox__title {
    font-size: calc(12 / 1200 * 100vw);
    margin-bottom: calc(5 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox__title {
    font-size: calc(12 / 375 * 100vw);
    margin-bottom: calc(5 / 375 * 100vw);
  }
}
.p-footerFB__navBox__nav > ul {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox__nav > ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox__nav > ul > li {
    width: calc(138 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox__nav > ul > li:nth-child(2n) {
    width: calc(194 / 375 * 100vw);
  }
}
.p-footerFB__navBox__nav > ul > li + li {
  margin-left: 16px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__navBox__nav > ul > li + li {
    margin-left: calc(16 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox__nav > ul > li + li {
    margin-left: calc(0 / 375 * 100vw);
  }
}
.p-footerFB__navBox__nav a {
  font-size: 12px;
  font-weight: 600;
  padding-top: 16px;
  transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__navBox__nav a {
    font-size: calc(12 / 1200 * 100vw);
    padding-top: calc(16 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox__nav a {
    border-bottom: 1px solid #dce0e2;
    font-size: calc(12 / 375 * 100vw);
    padding-bottom: calc(16 / 375 * 100vw);
    padding-top: calc(16 / 375 * 100vw);
    white-space: nowrap;
  }
}
.p-footerFB__navBox__nav a[target=_blank] {
  align-items: center;
  display: flex;
}
.p-footerFB__navBox__nav a[target=_blank]::after {
  background-image: url(https://www.machida-techno.com/wp-content/themes/WordPressTheme/assets/images/common/icon_link_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 14px;
  margin-left: 3px;
  width: 12px;
}
@media screen and (max-width: 1199px) {
  .p-footerFB__navBox__nav a[target=_blank]::after {
    height: calc(14 / 1200 * 100vw);
    margin-left: calc(3 / 1200 * 100vw);
    width: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox__nav a[target=_blank]::after {
    height: calc(14 / 375 * 100vw);
    margin-left: calc(3 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
  }
}
.p-footerFB__navBox__nav a:hover {
  color: #4db5b5;
}
@media screen and (max-width: 767px) {
  .p-footerFB__navBox__nav a:hover {
    color: #111111;
  }
}

.p-copyrightFB {
  background-color: #ffffff;
}
.p-copyrightFB .l-container {
  padding-left: 0;
  padding-right: 0;
}
.p-copyrightFB__inner {
  border-top: 1px solid #d9d9d9;
  padding-bottom: 40px;
  padding-top: 6px;
}
@media screen and (max-width: 1199px) {
  .p-copyrightFB__inner {
    padding-bottom: calc(40 / 1200 * 100vw);
    padding-top: calc(6 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-copyrightFB__inner {
    border: 0;
    padding-bottom: calc(40 / 375 * 100vw);
    padding-top: calc(6 / 375 * 100vw);
  }
}
.p-copyrightFB__text {
  font-size: 12px;
  line-height: 24px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-copyrightFB__text {
    font-size: calc(12 / 1200 * 100vw);
    line-height: calc(24 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-copyrightFB__text {
    font-size: calc(12 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
  }
}

.p-drawerFB {
  background-color: #ffffff;
  height: 100dvh;
  overflow: scroll;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: 0.3s;
  width: 100%;
  z-index: -1;
}
.p-drawerFB__inner {
  padding-bottom: calc(160 / 375 * 100vw);
  padding-top: calc(50 / 375 * 100vw);
}
.p-drawerFB__content {
  padding-left: calc(35 / 375 * 100vw);
  padding-right: calc(35 / 375 * 100vw);
}
.p-drawerFB__content__nav > ul > li {
  border-bottom: 1px solid #dce0e2;
}
.p-drawerFB__content__nav a {
  align-items: center;
  display: flex;
  font-size: calc(19 / 375 * 100vw);
  font-weight: bold;
  height: calc(76 / 375 * 100vw);
  justify-content: center;
}
.p-drawerFB__content__section {
  margin-top: calc(28 / 375 * 100vw);
}
.p-drawerFB__content__section__title {
  font-size: calc(14 / 375 * 100vw);
  font-weight: 600;
  margin-bottom: calc(7 / 375 * 100vw);
  text-align: center;
}
.p-drawerFB__content__section__buttonList__button a {
  align-items: center;
  border-radius: calc(4 / 375 * 100vw);
  color: #ffffff;
  display: flex;
  font-size: calc(19 / 375 * 100vw);
  height: calc(73 / 375 * 100vw);
  justify-content: center;
  width: 100%;
}
.p-drawerFB__content__section__buttonList__button--visit a {
  background-color: #4db5b5;
}
.p-drawerFB__content__section__buttonList__button--entry a {
  background-color: #152473;
}
.p-drawerFB__content__section__buttonList__button + .p-drawerFB__content__section__buttonList__button {
  margin-top: calc(18 / 375 * 100vw);
}
.p-drawerFB__content__section__infoList {
  margin-top: calc(28 / 375 * 100vw);
}
.p-drawerFB__content__section__infoList__infoBox {
  align-items: center;
  display: flex;
}
.p-drawerFB__content__section__infoList__infoBox__label {
  align-items: center;
  background-color: #f3f3f6;
  border-radius: calc(2 / 375 * 100vw);
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: calc(12 / 375 * 100vw);
  font-weight: 600;
  height: calc(24 / 375 * 100vw);
  justify-content: center;
  margin-right: calc(9 / 375 * 100vw);
  width: calc(40 / 375 * 100vw);
}
.p-drawerFB__content__section__infoList__infoBox__mail {
  font-family: "Roboto", sans-serif;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 600;
  line-height: calc(27 / 375 * 100vw);
}
.p-drawerFB__content__section__infoList__infoBox__text {
  font-family: "Roboto", sans-serif;
  font-size: calc(24 / 375 * 100vw);
  font-weight: 600;
  line-height: calc(36 / 375 * 100vw);
}
.p-drawerFB__content__section__infoList__infoBox__text a {
  font-family: "Roboto", sans-serif;
  font-size: calc(24 / 375 * 100vw);
  font-weight: 600;
  line-height: calc(36 / 375 * 100vw);
}
.p-drawerFB__content__section__infoList__infoBox + .p-drawerFB__content__section__infoList__infoBox {
  margin-top: calc(8 / 375 * 100vw);
}
.p-drawerFB__content__section__text {
  font-size: calc(12 / 375 * 100vw);
  margin-top: calc(20 / 375 * 100vw);
  text-align: center;
}
.p-drawerFB__content__section + .p-drawerFB__content__section {
  margin-top: calc(36 / 375 * 100vw);
}
.p-drawerFB.is-show {
  transform: translateX(0);
  z-index: 2;
}