html {
  scroll-behavior: smooth;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header__box {
  height: 74px;
}
.header__wrapper {
  margin: 0 auto;
  max-width: 1560px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-family: brother-1816, sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #000;
  font-size: 32px;
}
.header__logo__text_red {
  color: #CD001A;
}
.header__logo__text_blue {
  color: #0056B7;
}
.header__logo__text_yellow {
  color: #FFD100;
}
.header__logo__text_green {
  color: #027122;
}
.header__menu {
  display: flex;
}
.header__menu__item {
  font-family: brother-1816, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-left: 30px;
  font-size: 15px;
}
.header__menu__link {
  color: #000;
  border-bottom: 1px solid transparent;
  transition: border 0.1s;
}
.header__menu__link:hover {
  border-bottom: 1px solid #000;
}
.header__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__wrapper {
    padding: 7px 0 7px 15px;
  }
  .header__logo {
    font-family: brother-1816, sans-serif;
    font-weight: 800;
    font-style: italic;
    color: #000;
    font-size: 24px;
  }
  .header__menu {
    position: absolute;
    background: #fff;
    width: 300px;
    height: 100vh;
    top: 0;
    right: -100%;
    flex-direction: column;
    padding: 70px 30px 0 30px;
    transition: right 0.4s;
  }
  .header__menu__item {
    font-size: 24px;
  }
  .header__menu__link {
    display: block;
    padding: 17px 0;
    font-weight: 700;
  }
  .header__menu__link:hover {
    border: none;
  }
  .header__menu_open {
    right: 0%;
  }
  .header__btn {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
  }
  .header__btn__line {
    position: absolute;
    width: 30px;
    padding: 1px 0;
    background: #000;
    right: 0;
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
    transition: 0.1s;
  }
  .header__btn__line_top {
    top: calc(50% - 8px);
  }
  .header__btn__line_top_close {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    top: 50%;
  }
  .header__btn__line_mid {
    top: 50%;
  }
  .header__btn__line_mid_close {
    display: none;
  }
  .header__btn__line_btm {
    top: calc(50% + 8px);
  }
  .header__btn__line_btm_close {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    top: 50%;
  }
}

.footer {
  background: #000;
}
.footer__wrapper {
  max-width: 1560px;
  margin: 0 auto;
  padding: 70px 30px 20px 30px;
}
.footer__logo {
  font-family: brother-1816, sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  font-size: 30px;
  margin-bottom: 40px;
}
.footer__logo__text_red {
  color: #CD001A;
}
.footer__logo__text_blue {
  color: #0056B7;
}
.footer__logo__text_yellow {
  color: #FFD100;
}
.footer__logo__text_green {
  color: #027122;
}
.footer__nav {
  display: flex;
  margin-bottom: 40px;
}
.footer__nav__item {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-right: 20px;
}
.footer__nav__link {
  color: #fff;
  transition: opacity 0.1s;
}
.footer__nav__link:hover {
  opacity: 0.6;
}
.footer__text {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 15px;
  line-height: 1.3em;
  margin-bottom: 70px;
}
.footer__copyright {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__wrapper {
    padding: 30px 30px 20px 30px;
  }
  .footer__logo {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer__nav {
    margin-bottom: 30px;
    flex-direction: column;
  }
  .footer__nav__item {
    font-size: 14px;
    margin-right: 20px;
  }
  .footer__nav__link {
    display: block;
    padding: 7px 0;
  }
  .footer__nav__link:hover {
    opacity: 1;
  }
  .footer__text {
    font-size: 12px;
    margin-bottom: 50px;
  }
}

.top_sectitle {
  text-align: center;
  margin-bottom: 75px;
}
.top_sectitle__main {
  display: inline-block;
  font-family: brother-1816, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  padding: 0 5px 5px 5px;
  margin-bottom: 10px;
}
.top_sectitle__main_red {
  border-bottom: 2px solid #CD001A;
}
.top_sectitle__main_blue {
  border-bottom: 2px solid #0056B7;
}
.top_sectitle__main_yellow {
  border-bottom: 2px solid #FFD100;
}
.top_sectitle__main_green {
  border-bottom: 2px solid #027122;
}
.top_sectitle__sub {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .top_sectitle {
    margin-bottom: 50px;
  }
}

.top_fv {
  padding: 250px 0;
}
.top_fv__wrapper {
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}
.top_fv__title {
  font-family: brother-1816, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  margin-bottom: 20px;
}
.top_fv__text {
  font-family: brother-1816, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  border-left: 5px solid #FFD100;
  padding: 7px 15px;
}
@media screen and (max-width: 768px) {
  .top_fv {
    padding: 150px 0;
  }
  .top_fv__wrapper {
    padding: 0 15px;
  }
  .top_fv__title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .top_fv__text {
    font-size: 17px;
    border-left: 3px solid #FFD100;
    padding: 5px 7px;
  }
}

.top_scroll {
  display: none;
  flex-direction: column;
  align-items: center;
}
.top_scroll__text {
  font-family: brother-1816, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  margin-bottom: 10px;
}
.top_scroll__line {
  height: 50px;
  width: 1px;
  background: #000;
}

.top_value {
  margin-bottom: 150px;
}
.top_value__content {
  position: relative;
  overflow: hidden;
}
.top_value__back {
  font-family: brother-1816, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 135px;
  color: #F8F8F4;
  text-rendering: optimizeLegibility;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  animation: animation linear 40s infinite;
}
@keyframes animation {
  from {
    transform: translateX(0) translateY(-50%);
  }
  to {
    transform: translateX(-33.333%) translateY(-50%);
  }
}
.top_value__text {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_value {
    margin-bottom: 100px;
  }
  .top_value__back {
    font-size: 135px;
  }
  .top_value__text {
    padding: 0 15px;
    font-size: 18px;
    line-height: 1.75;
    text-align: left;
  }
  .top_value__text_spdn {
    display: none;
  }
}

.top_service {
  margin-bottom: 150px;
  position: relative;
}
.top_service__content {
  margin: 0 auto;
  max-width: 1260px;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  border-radius: 2px;
  max-width: 1060px;
}
.top_service__content__item {
  width: calc(33.3333333333% - 20px);
  background: #F8F8F4;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
}
.top_service__content__img {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.top_service__content__img img {
  display: block;
  height: calc(100% - 30px);
}
.top_service__content__texts {
  padding: 25px 20px;
}
.top_service__content__title {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}
.top_service__content__text {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .top_service {
    margin-bottom: 100px;
  }
  .top_service__content {
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
  }
  .top_service__content__item {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
  }
  .top_service__content__texts {
    padding: 20px 15px;
  }
  .top_service__content__title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.top_news {
  margin-bottom: 150px;
}
.top_news__content {
  margin: 0 auto 150px auto;
  max-width: 1060px;
  padding: 0 30px;
}
.top_news__item {
  border-bottom: 1px solid #C2C2C2;
  padding: 25px 40px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5em;
}
.top_news__item:first-of-type {
  border-top: 1px solid #C2C2C2;
}
.top_news__item__link {
  color: #000;
  transition: opacity 0.1s;
}
.top_news__item__link:hover {
  opacity: 0.6;
}
.top_news__item__date {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .top_news {
    margin-bottom: 120px;
  }
  .top_news__content {
    padding: 0 15px;
  }
  .top_news__item {
    padding: 20px 15px;
  }
  .top_news__item__link:hover {
    opacity: 1;
  }
  .top_news__item__date {
    display: block;
    margin-right: 0;
    margin-bottom: 7px;
  }
  .top_news__item__title {
    display: block;
  }
}

.top_contact {
  margin-bottom: 150px;
}
.top_contact__content {
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_contact__item {
  width: calc(50% - 50px);
  text-align: center;
}
.top_contact__item__title {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
}
.top_contact__item__subtitle {
  font-family: brother-1816, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 30px;
  color: #C2C2C2;
}
.top_contact__item__text {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  color: #000;
  font-size: 15px;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.top_contact__item__btn {
  display: inline-block;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-size: 15px;
  background: #F8F8F4;
  color: #000;
  width: 180px;
  padding: 15px 0;
  border-radius: 5px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
  transition: opacity 0.1s;
}
.top_contact__item__btn:hover {
  opacity: 0.6;
}
.top_contact__line {
  width: 1px;
  height: 150px;
  background: #C2C2C2;
}
@media screen and (max-width: 768px) {
  .top_contact {
    margin-bottom: 120px;
  }
  .top_contact__content {
    flex-direction: column;
  }
  .top_contact__item {
    width: 100%;
    padding: 0;
  }
  .top_contact__item__title {
    font-size: 18px;
  }
  .top_contact__item__subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .top_contact__item__text {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .top_contact__item__btn {
    width: 180px;
    padding: 15px 0;
  }
  .top_contact__item__btn:hover {
    opacity: 1;
  }
  .top_contact__line {
    width: 300px;
    height: 1px;
    margin: 50px 0;
  }
}

.page_top__wrapper {
  max-width: 1060px;
  padding: 100px 30px;
  margin: 0 auto;
}
.page_top__title {
  font-family: brother-1816, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  color: #000;
  margin-bottom: 20px;
}
.page_top__subtitle {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  padding-left: 5px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .page_top__wrapper {
    padding: 75px 15px 50px 15px;
  }
  .page_top__title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .page_top__subtitle {
    padding-left: 5px;
    font-size: 12px;
  }
}

.company_content {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto 150px auto;
}
.company_content table tr th, .company_content table tr td {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000;
  -moz-text-align-last: left;
       text-align-last: left;
  vertical-align: top;
  line-height: 1.25em;
  padding: 20px 100px 20px 0;
}
.company_content table tr th a, .company_content table tr td a {
  text-decoration: underline;
  color: #000;
}
@media screen and (max-width: 768px) {
  .company_content {
    padding: 0 15px;
  }
  .company_content table tr th, .company_content table tr td {
    display: block;
    width: 100%;
  }
  .company_content table tr th {
    font-weight: 600;
    padding: 15px 0 5px 0;
  }
  .company_content table tr td {
    padding: 5px 0 15px 0;
  }
}

.contact_content {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto 150px auto;
}
.contact_content table {
  border-top: 1px solid #C2C2C2;
  border-left: 1px solid #C2C2C2;
  width: 100%;
}
.contact_content table tr th, .contact_content table tr td {
  border-right: 1px solid #C2C2C2;
  border-bottom: 1px solid #C2C2C2;
}
.contact_content table tr th {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 25px;
  background: #F8F8F4;
  text-align: left;
  width: 250px;
  color: #000;
}
.contact_content table tr td {
  padding: 10px 25px;
}
.contact_content table tr td input, .contact_content table tr td textarea {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000;
  padding: 10px 5px;
  margin: 5px 0;
  width: 100%;
  border: 1px solid #C2C2C2;
  border-radius: 3px;
}
.contact_btn {
  display: block;
  width: 250px;
  padding: 25px 0;
  margin: 50px auto 0 auto;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  border: none;
  border-radius: 5px;
  background: #F8F8F4;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s;
  cursor: pointer;
}
.contact_btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .contact_content {
    padding: 0 15px;
  }
  .contact_content table tr th, .contact_content table tr td {
    display: block;
    width: 100%;
  }
  .contact_content table tr th {
    padding: 15px;
  }
  .contact_content table tr td {
    padding: 15px 25px;
  }
  .contact_btn {
    display: block;
    width: 250px;
    padding: 25px 0;
    margin: 50px auto 0 auto;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    border: none;
    border-radius: 5px;
    background: #F8F8F4;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
    transition: opacity 0.2s;
    cursor: pointer;
  }
  .contact_btn:hover {
    opacity: 0.6;
  }
}

.thanks_content__wrapper {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto 150px auto;
}
.thanks_content__text {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #000;
  line-height: 2.25em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks_content__wrapper {
    padding: 0 15px;
  }
  .thanks_content__text {
    font-size: 18px;
    line-height: 1.75em;
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */