@charset "UTF-8";
/* foundation */
@import url("https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,400;0,700;1,400;1,700&family=Lato:wght@300;400;700;900&family=Noto+Sans+JP:wght@400;500;700&family=Sawarabi+Mincho&display&display=swap");
:root {
  --font_normal: "YakuHanJP", "Noto Sans JP", sans-serif;
  --font_lato: "Lato", sans-serif;
  --font_averia: "Averia Serif Libre", cursive;
  --font_mincho: "Sawarabi Mincho", serif;
  --color-black: #141d2a;
  --color-navy: #000A15;
  --color-blue: #1E489D;
  --color-dark-blue: #0d1e87;
  --color-font-dark: #1E1E1E;
  --gradation-blue-background: rgb(52, 143, 228);
  --gradation-blue: linear-gradient(90deg, rgba(52, 143, 228, 1) 15%, rgba(11, 87, 180, 1) 84%);
  --gradation-blue-2-background: #0d1e87;
  --gradation-blue-2: linear-gradient(90deg, rgba(30, 72, 157, 1) 15%, rgba(28, 67, 145, 1) 84%);
  --gradation-blue-2--hover-background: rgba(28, 67, 145, 1);
  --gradation-blue-2-hover: linear-gradient(90deg, rgba(28, 67, 145, 1) 15%, rgba(28, 67, 145, 1) 84%);
}

html, body {
  font-family: var(--font_normal);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: #eee;
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  body {
    font-size: 1.35rem;
    padding-top: 80px;
  }
}
img {
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

p {
  line-height: 2;
}
@media only screen and (max-width: 991px) {
  p {
    font-size: 1.35rem;
  }
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.5rem;
}
@media only screen and (max-width: 991px) {
  table {
    font-size: 1.3rem;
  }
}
table th, table td {
  padding: 6px 12px;
}

/* layout */
/* foundation */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.l-header__top {
  background: #fff;
}
.l-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-navy);
  height: 76px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .l-header__main {
    height: 60px;
  }
}
.l-header__logo {
  background: white;
  width: 307px;
  height: 100%;
  position: relative;
  padding-left: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .l-header__logo {
    padding-top: 3px;
  }
}
@media only screen and (max-width: 600px) {
  .l-header__logo {
    width: 224px;
    padding-left: 0;
  }
}
.l-header__logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 130px 74px;
  border-color: transparent transparent var(--color-navy) transparent;
}
.l-header__logo img {
  display: block;
  width: 252px;
}
@media only screen and (max-width: 991px) {
  .l-header__logo img {
    width: 170px;
  }
}
.l-header__nav {
  flex-grow: 2;
  padding-right: 46px;
}
@media only screen and (max-width: 991px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 46px;
  list-style: none;
}
@media only screen and (max-width: 1230px) {
  .l-header__nav .menu {
    gap: 0 20px;
  }
}
.l-header__nav .menu li a, .l-header__nav .menu li button {
  display: inline-block;
  padding-top: 10px;
  font-size: 1.5rem;
  color: white;
  text-align: center;
  white-space: nowrap;
  position: relative;
}
.l-header__nav .menu li a .en, .l-header__nav .menu li button .en {
  display: block;
  font-family: var(--font_lato);
  font-size: 1.2rem;
  color: var(--color-blue);
}
.l-header__nav .menu li a .line, .l-header__nav .menu li button .line {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 6px;
  padding-right: 2px;
  padding-left: 1px;
}
.l-header__nav .menu li a .line::after, .l-header__nav .menu li button .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  -webkit-transform: translate(-110%, 0);
  transform: translate(-110%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.l-header__nav .menu li a:hover .line::after, .l-header__nav .menu li button:hover .line::after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.l-header__nav .menu li.current_page_item a .line::after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.l-header__nav .menu li.menu-item-has-children:hover .p-header-accordion__container {
  max-height: 56px;
}
.l-header__nav .menu li .sub-menu .line::after {
  background: white;
}
@media only screen and (max-width: 991px) {
  .l-header__contact {
    display: none;
  }
}
.l-header__contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--gradation-blue-2-background);
  background: var(--gradation-blue-2);
  width: 215px;
  height: 76px;
  font-size: 1.6rem;
  color: white;
}
@media only screen and (max-width: 1230px) {
  .l-header__contact a {
    width: 80px;
  }
}
.l-header__contact a:hover {
  background: var(--gradation-blue-2-hover);
}
.l-header__contact a img {
  width: 26px;
  height: 26px;
}
@media only screen and (max-width: 1230px) {
  .l-header__contact a span {
    display: none;
  }
}

.p-header-accordion__container {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 56px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.p-header-accordion__container .sub-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  width: 100%;
  height: 100%;
  list-style: none;
  background: var(--color-blue);
}
.p-header-accordion__container.is-open {
  max-height: 56px;
}

.l-header-mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  top: -150vh;
  padding: 44px;
  width: 100%;
  height: calc(100dvh - 80px);
  z-index: 2000;
  background: var(--color-navy);
  color: white;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (max-width: 991px) {
  .l-header-mobile-nav {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .l-header-mobile-nav.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, calc(150vh + 102px));
  }
}
.l-header-mobile-nav .menu {
  list-style: none;
}
.l-header-mobile-nav .menu li {
  border-top: 1px solid white;
  font-size: 1.5rem;
  color: white;
}
.l-header-mobile-nav .menu li a {
  display: block;
  color: white;
  padding: 8px 14px;
}
.l-header-mobile-nav .menu li a .en {
  display: block;
  font-size: 1rem;
  color: var(--color-blue);
}
.l-header-mobile-nav .menu .sub-menu {
  list-style: none;
  padding-left: 1em;
  padding-bottom: 0.5em;
}
.l-header-mobile-nav .menu .sub-menu li {
  border-top: none;
}
.l-header-mobile-nav__contact {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 95%;
  max-width: 270px;
  height: 46px;
  margin: 65px auto 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-font-dark);
}
.l-header-mobile-nav__contact .icon {
  width: 28px;
  display: grid;
  place-items: center;
}
.l-header-mobile-nav__contact .icon img {
  filter: brightness(0);
}
.l-header-mobile-nav__info {
  text-align: center;
  margin-top: 34px;
}
.l-header-mobile-nav__info--tel {
  font-size: 2.2rem;
}
.l-header-mobile-nav__info--tel a {
  color: white;
}
.l-header-mobile-nav__info--time {
  font-size: 1rem;
}

.admin-bar .l-header {
  top: 32px;
}
.admin-bar .l-header-mobile-nav {
  height: calc(100dvh - 130px);
}
.admin-bar .l-header-mobile-nav.is-visible {
  transform: translate(0, calc(150vh + 130px));
}

.l-group-navi {
  display: flex;
  align-items: center;
  height: 28px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .l-group-navi {
    display: block;
    height: auto;
  }
}
.l-group-navi::before, .l-group-navi::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ccc;
  z-index: 10;
}
.l-group-navi::before {
  top: 0;
  left: 0;
}
.l-group-navi::after {
  bottom: 0;
}
.l-group-navi__title {
  display: flex;
  align-items: center;
  height: 28px;
  background: #eee;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 40px 0 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-group-navi__title {
    justify-content: center;
    height: 22px;
    font-size: 1.3rem;
    padding: 0;
    background: #fff;
  }
}
.l-group-navi__title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 30px;
  border-color: transparent transparent #fff transparent;
}
@media only screen and (max-width: 768px) {
  .l-group-navi__title::after {
    display: none;
  }
}
.l-group-navi__link-list {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .l-group-navi__link-list {
    margin-left: 0;
    justify-content: center;
    border-top: 1px solid #ccc;
  }
}
.l-group-navi__link {
  padding: 0 10px;
  border-right: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
  .l-group-navi__link {
    width: 33.3333%;
  }
}
.l-group-navi__link img {
  display: block;
  vertical-align: bottom;
  width: 160px;
  margin: auto;
}
/* foundation */
.l-footer {
  background: var(--color-navy);
  color: white;
  padding-top: 98px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .l-footer {
    padding-top: 52px;
    padding-bottom: 24px;
  }
}
.l-footer__inner {
  max-width: 1200px;
  margin: auto;
}
.l-footer__block {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .l-footer__block {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .l-footer__sub {
    text-align: center;
  }
}
.l-footer__sub p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  .l-footer__sub p {
    font-size: 1.2rem;
  }
}
.l-footer__logo {
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .l-footer__logo {
    width: 140px;
  }
}
.l-footer__addr {
  margin-top: 32px;
}
.l-footer__tel {
  margin-top: 1em;
}
.l-footer__tel a {
  color: white;
}
.l-footer__lower {
  margin-top: 120px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .l-footer__lower {
    margin-top: 36px;
  }
}
.l-footer__copyright {
  font-size: 1.2rem;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .l-footer__copyright {
    font-size: 1rem;
  }
}
.l-footer__nav {
  display: flex;
  gap: 56px;
}
@media only screen and (max-width: 991px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer .menu {
  list-style: none;
}
.l-footer .menu .menu-item {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.7em;
}
.l-footer .menu .menu-item a {
  color: white;
}
.l-footer .menu .menu-item a:hover {
  color: var(--color-blue);
}
.l-footer .menu .menu-item a .en {
  display: none;
}
.l-footer .menu .sub-menu {
  list-style: none;
  margin-top: 1.3rem;
  padding-left: 1em;
}
.l-footer .menu .sub-menu .menu-item {
  font-size: 1.4rem;
}

.l-footer-cta-block {
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block {
    margin-top: 80px;
  }
}
.l-footer-cta-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common/bg_footer_cta.jpg") center center no-repeat;
  background-size: cover;
}
.l-footer-cta-block__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block__inner {
    padding: 70px 0 48px;
  }
}
.l-footer-cta-block__head {
  color: white;
  text-align: center;
}
.l-footer-cta-block__head-main {
  font-size: 3rem;
  margin-top: 1em;
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block__head-main {
    font-size: 2rem;
  }
}
.l-footer-cta-block__head-sub {
  font-family: var(--font_lato);
  font-size: 2.9rem;
  font-weight: 900;
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block__head-sub {
    font-size: 1.8rem;
  }
}
.l-footer-cta-block__main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block__main {
    flex-direction: column;
    gap: 30px;
    margin-top: 32px;
  }
}
.l-footer-cta-block__item-tel {
  color: white;
  text-align: center;
  padding-left: 80px;
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block__item-tel {
    order: 2;
    padding-left: 0;
  }
}
.l-footer-cta-block__item-tel--num {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block__item-tel--num {
    font-size: 2.2rem;
  }
}
.l-footer-cta-block__item-tel--num small {
  font-size: 0.857em;
}
.l-footer-cta-block__item-tel--num a {
  color: white;
}
.l-footer-cta-block__item-tel--time {
  font-size: 1.3rem;
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block__item-tel--time {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 991px) {
  .l-footer-cta-block__item-button {
    order: 1;
  }
}

.home .l-footer-cta-block {
  margin-top: 0;
}

.machining-factory .l-footer-cta-block, .assembly-factory .l-footer-cta-block, .canning-welding-factory .l-footer-cta-block {
  margin-top: 0;
}

/* object */
/* component */
/* foundation */
.c-button {
  width: 270px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  font-family: var(--font_lato);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: white;
  border: 1px solid white;
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .c-button {
    font-size: 1.3rem;
    width: 240px;
    height: 44px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
  }
}
.c-button::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.c-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/common/c-button-arrow.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 1em;
  top: calc(50% - 10px);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
@media only screen and (max-width: 991px) {
  .c-button::after {
    width: 16px;
    height: 16px;
    right: 0.6em;
    top: calc(50% - 8px);
  }
}
.c-button:hover {
  border-color: var(--color-blue);
}
.c-button:hover::before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.c-button:hover::after {
  -webkit-transform: translate(8px, 0);
  transform: translate(8px, 0);
}
.c-button--dark {
  border-color: var(--color-blue);
  color: var(--color-blue);
}
.c-button--dark::before {
  background-color: var(--color-blue);
}
.c-button--dark::after {
  background: url("../images/common/c-button-arrow_dark.svg") center center no-repeat;
  background-size: contain;
}
.c-button--dark:hover {
  color: white;
}
.c-button--dark:hover::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.c-button--lg {
  width: 360px;
  height: 70px;
}
@media only screen and (max-width: 991px) {
  .c-button--lg {
    width: 280px;
    height: 48px;
  }
}
.c-button--xl {
  width: 480px;
  height: 88px;
  max-width: 100%;
  font-size: 1.8rem;
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  .c-button--xl {
    width: 280px;
    height: 48px;
  }
}
.c-button--has-child {
  font-size: 1.5rem;
}
.c-button--has-child .sm {
  font-size: 0.8em;
}
.c-button--fill-dark {
  background: var(--color-blue);
  color: white;
  border: none;
  z-index: 2;
  text-align: center;
}
.c-button--fill-dark::before {
  background: var(--color-navy);
}
.c-button--no-fill {
  background: none;
}
.c-button--cta-lg {
  font-size: 1.9rem;
  width: 435px;
  height: 70px;
  flex-direction: row;
  gap: 1em;
}
@media only screen and (max-width: 991px) {
  .c-button--cta-lg {
    font-size: 1.3rem;
    width: 300px;
    max-width: 96%;
    height: 44px;
  }
}
.c-button--cta-lg::after {
  display: none;
}
@media only screen and (max-width: 991px) {
  .c-button--cta-lg img {
    width: 28px;
  }
}
.c-button--has-effect {
  z-index: 0;
}
.c-button--has-effect::before {
  background-color: var(--color-blue);
}
.c-button--has-effect:hover {
  color: white;
}
.c-button--has-effect:hover::before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.c-button--has-effect:hover::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.c-mobile-toggle-button {
  display: none;
  position: absolute;
  right: 6px;
  top: 8px;
  width: 44px;
  height: 44px;
}
@media only screen and (max-width: 991px) {
  .c-mobile-toggle-button {
    display: block;
  }
}
.c-mobile-toggle-button .bar {
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  right: 8px;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-mobile-toggle-button .bar:nth-child(1) {
  top: 16px;
}
.c-mobile-toggle-button .bar:nth-child(2) {
  top: 26px;
}
.c-mobile-toggle-button.is-visible .bar:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.c-mobile-toggle-button.is-visible .bar:nth-child(2) {
  top: 20px;
  transform: rotate(-45deg);
}

.c-page_navi {
  padding-top: 40px;
}
.c-page_navi .page-numbers {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
}
.c-page_navi .page-numbers li .page-numbers {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-blue);
  font-weight: 600;
  color: var(--color-blue);
  padding-left: 2px;
}
.c-page_navi .page-numbers li .page-numbers.current, .c-page_navi .page-numbers li .page-numbers:hover {
  background: var(--color-blue);
  color: white;
}

/* foundation */
.c-breadcrumbs {
  width: 100%;
  margin: auto;
  padding: 1em 4%;
  font-size: 1.4rem;
  color: var(--color-blue);
}
@media only screen and (max-width: 991px) {
  .c-breadcrumbs {
    font-size: 1rem;
  }
}
.c-breadcrumbs.-white {
  background: white;
}
.c-breadcrumbs a {
  color: var(--color-blue);
}
.c-breadcrumbs a:hover {
  text-decoration: underline;
}

/* foundation */
.c-section-header__title {
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  padding-top: 14px;
  margin-top: 1em;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 991px) {
  .c-section-header__title {
    font-size: 2rem;
  }
}
.c-section-header__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: url("../images/common/icon_header_title.svg") center center no-repeat;
  background-size: contain;
}

.c-section-header-title {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .c-section-header-title {
    margin-bottom: 20px;
  }
}
.c-section-header-title__sub {
  font-family: var(--font_lato);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--color-blue);
}
@media only screen and (max-width: 991px) {
  .c-section-header-title__sub {
    font-size: 1.2rem;
  }
}
.c-section-header-title__main {
  font-size: 3rem;
}
@media only screen and (max-width: 991px) {
  .c-section-header-title__main {
    font-size: 2.2rem;
  }
}

.wp-block-heading {
  margin-top: 1em;
  margin-bottom: 1em;
}

h2.wp-block-heading {
  font-size: 2.8rem;
  padding-left: 18px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  h2.wp-block-heading {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }
}
@media only screen and (max-width: 768px) {
  h2.wp-block-heading {
    padding-left: 12px;
  }
}
h2.wp-block-heading::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/common/icon_header_title.svg") center center no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
}
@media only screen and (max-width: 768px) {
  h2.wp-block-heading::before {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
  }
}

h3.wp-block-heading {
  font-size: 2.2rem;
}

h4.wp-block-heading {
  font-size: 2rem;
}

/* foundation */
.c-post-content a {
  color: var(--color-blue);
  padding-bottom: 3px;
  background-image: linear-gradient(#1E489D, #1E489D);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-post-content a:hover {
  background-size: 100% 1px;
}

.c-flex-content {
  display: flex;
}
.c-flex-content--center {
  flex-direction: column;
  align-items: center;
}

/* foundation */
.c-form__block {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .c-form__block {
    display: block;
    margin-bottom: 8px;
  }
}
.c-form__block.-center {
  align-items: center;
}
.c-form__block.-center .c-form__label.-require {
  padding-top: 0;
  padding-bottom: 10px;
}
.c-form__label {
  width: 240px;
  padding-top: 16px;
}
.c-form__label.-require {
  padding-top: 7px;
}
.c-form__label.-require::after {
  content: "*";
  font-family: var(--font_lato);
  font-weight: 600;
  font-size: 2.5rem;
  color: #d94545;
  position: relative;
  top: 0.15em;
  left: 0.1em;
}
.c-form__label label {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .c-form__label label {
    font-size: 1.35rem;
  }
}
.c-form__field {
  position: relative;
  flex: 1;
}
.c-form__field input[type=text], .c-form__field input[type=email], .c-form__field textarea {
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 2px;
  width: 100%;
  font-weight: 400;
  min-height: 56px;
  font-size: 1.5rem;
  padding: 11px 48px 9px 15px;
}
@media only screen and (max-width: 991px) {
  .c-form__field input[type=text], .c-form__field input[type=email], .c-form__field textarea {
    font-size: 1.35rem;
    min-height: 44px;
    padding: 6px 24px 6px 12px;
  }
}
.c-form__field .error {
  font-size: 1.3rem;
  font-weight: 500;
  color: #d94545;
  margin-top: 0.3em;
}
.c-form__field .mwform-checkbox-field label {
  position: relative;
  display: flex;
  cursor: pointer;
}
.c-form__field .mwform-checkbox-field-text {
  line-height: 1.2;
}
.c-form__field input[type=checkbox] {
  position: relative;
  margin: 0 1em 0 0;
}
.c-form__field input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.6em);
  left: 0;
  z-index: 1;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #ccc;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.c-form__field input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.6em);
  left: 0;
  width: 1.4em;
  height: 1.4em;
  background: #fff;
  cursor: pointer;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.c-form__field input[type=checkbox]:checked::before {
  top: calc(50% - 0.6em + 3px);
  transform: rotate(-45deg);
  height: 0.5em;
  border-color: var(--color-blue);
  border-top-style: none;
  border-right-style: none;
}
.c-form__field input[type=checkbox]:checked + .mwform-checkbox-field-text {
  color: var(--color-blue);
}
.c-form__field .mwform-radio-field label {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  padding: 0.4em 0.7em;
}
.c-form__field .mwform-radio-field label:has(:checked) {
  background-color: var(--gradation-blue-background);
  color: #fff;
  border-radius: 2px;
  width: 100%;
}
.c-form__field .mwform-radio-field label::before, .c-form__field .mwform-radio-field label:has(:checked)::after {
  border-radius: 50%;
  content: "";
}
.c-form__field .mwform-radio-field label::before {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 2px solid var(--gradation-blue-background);
  cursor: pointer;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .c-form__field .mwform-radio-field label::before {
    width: 14px;
    height: 14px;
  }
}
.c-form__field .mwform-radio-field label:has(:checked)::before {
  border: none;
}
.c-form__field .mwform-radio-field label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--gradation-blue-background);
}
@media only screen and (max-width: 991px) {
  .c-form__field .mwform-radio-field label:has(:checked)::after {
    width: 9px;
    height: 9px;
    left: 16px;
  }
}
.c-form__field .mwform-radio-field-text {
  line-height: 1.2;
  cursor: pointer;
}
.c-form__field input[type=radio] {
  position: relative;
  margin: 0 1em 0 0;
  display: none;
}
.c-form__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .c-form__button {
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 20px;
  }
}
.c-form__button input[type=submit] {
  width: 270px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  font-family: var(--font_lato);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: white;
  border: 2px solid var(--color-blue);
  border-radius: 3px;
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
@media only screen and (max-width: 991px) {
  .c-form__button input[type=submit] {
    font-size: 1.3rem;
    width: 240px;
    height: 44px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
  }
}
.c-form__button input[type=submit]::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.c-form__button input[type=submit]::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/common/c-button-arrow.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 1em;
  top: calc(50% - 10px);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
@media only screen and (max-width: 991px) {
  .c-form__button input[type=submit]::after {
    width: 16px;
    height: 16px;
    right: 0.6em;
    top: calc(50% - 8px);
  }
}
.c-form__button input[type=submit]:hover {
  border-color: var(--color-font-dark);
  background: var(--color-font-dark);
}
.c-form__button input[type=submit]:hover::before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.c-form__button input[type=submit]:hover::after {
  -webkit-transform: translate(8px, 0);
  transform: translate(8px, 0);
}
.c-form__policy {
  text-align: center;
}
.c-form__policy p {
  line-height: 1.3;
}

.mw_wp_form_confirm.mw_wp_form_preview .c-form__block {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
}
.mw_wp_form_confirm.mw_wp_form_preview .c-form__field {
  display: flex;
  align-items: center;
  padding-top: 7px;
}
.mw_wp_form_confirm.mw_wp_form_preview .c-form__label.-require:after {
  content: "：";
  font-family: var(--font_normal);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-black);
  top: 0;
  left: 0;
}

.c-form-require-tag {
  font-family: var(--font_lato);
  font-weight: 600;
  font-size: 2.5rem;
  color: #d94545;
  position: relative;
  top: 0.1em;
}

/* project */
/* foundation */
.p-home-container {
  overflow: hidden;
}

.p-home-visual {
  width: 100%;
  height: calc(100vh - 88px);
  max-height: 57.75vw;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-home-visual {
    height: 66.66vw;
  }
}
.p-home-visual::after {
  content: "";
  position: absolute;
  top: -80%;
  left: 58%;
  background: rgba(18, 97, 165, 0.2);
  width: 100%;
  height: 0;
  transform-origin: 0 80%;
  transform: skewX(-25deg);
  padding-bottom: 196vw;
}
@media only screen and (max-width: 991px) {
  .p-home-visual::after {
    top: -30%;
    left: 38%;
    padding-bottom: 100vh;
  }
}
.p-home-visual__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 4vh);
  object-fit: cover;
  object-position: 50% -4vh;
  transform: translate(0, 100%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
}
.p-home-visual.-visible {
  overflow: visible;
}
.p-home-visual.-visible .p-home-visual__image {
  transform: translate(0, 0);
}
.p-home-visual__inner {
  position: absolute;
  padding-left: 6%;
  padding-right: 6%;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5vw;
}
.p-home-visual--heading {
  font-size: 6rem;
  font-style: italic;
  color: white;
  overflow: hidden;
  transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
}
@media only screen and (max-width: 991px) {
  .p-home-visual--heading {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-home-visual--heading {
    font-size: 2rem;
  }
}
.p-home-visual--heading span.block {
  display: block;
}
.p-home-visual--heading span.heading-text {
  display: block;
  transform: translate(100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
}
.p-home-visual--heading span.sm {
  font-weight: normal;
}
.p-home-visual--heading span.lg {
  font-size: 1.3em;
}
.p-home-visual--heading.-visible, .p-home-visual--heading.-visible span {
  transform: translate(0, 0);
}
.p-home-visual--heading__sub {
  font-size: 1.8rem;
  color: white;
  line-height: 2.4;
  margin-top: 2em;
  overflow: hidden;
  position: relative;
  z-index: 10;
  transform: translate(-100%, 0);
}
@media only screen and (max-width: 991px) {
  .p-home-visual--heading__sub {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 600px) {
  .p-home-visual--heading__sub {
    -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
    transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
  }
}
@media only screen and (max-width: 480px) {
  .p-home-visual--heading__sub {
    font-size: 1.1rem;
    margin-top: 1em;
    line-height: 1.8;
    -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
    transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  }
}
.p-home-visual--heading__sub span {
  display: block;
  transform: translate(100%, 0);
}
@media only screen and (min-width: 600px) {
  .p-home-visual--heading__sub span {
    -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
    transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
  }
}
@media only screen and (max-width: 600px) {
  .p-home-visual--heading__sub span {
    -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
    transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  }
}
.p-home-visual--heading__sub.-visible, .p-home-visual--heading__sub.-visible span {
  transform: translate(0, 0);
}

.p-home-block {
  padding-left: 6%;
  padding-right: 6%;
  position: relative;
}
.p-home-block__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.p-home-block--about {
  padding-top: 150px;
}
@media only screen and (max-width: 991px) {
  .p-home-block--about {
    padding-top: 65px;
  }
}
.p-home-block--about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 133%;
  background: rgba(18, 97, 165, 0.1);
  width: 600px;
  height: 0;
  transform-origin: 0 80%;
  transform: skewX(-25deg);
  padding-bottom: 155%;
}
@media only screen and (max-width: 991px) {
  .p-home-block--about::before {
    display: none;
  }
}
.p-home-block--about--heading__main {
  font-family: var(--font_lato);
  font-weight: 900;
  font-size: 6rem;
  color: var(--color-blue);
  white-space: nowrap;
  display: block;
  position: relative;
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  .p-home-block--about--heading__main {
    font-size: 2.6rem;
  }
}
.p-home-block--about--heading__main::before {
  content: "";
  width: 20px;
  height: 34px;
  background: url("../images/common/icon-module1-heading.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: calc(50% - 17px);
}
.p-home-block--about--heading__sub {
  font-size: 1.8rem;
  position: relative;
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  .p-home-block--about--heading__sub {
    font-size: 1.5rem;
  }
}
.p-home-block--about--heading__sub::before {
  content: "";
  width: 20px;
  height: 3px;
  background: black;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
}
.p-home-block--about--content {
  margin-top: 45px;
}
@media only screen and (max-width: 991px) {
  .p-home-block--about--content {
    margin-top: 35px;
  }
}
.p-home-block--about--content p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.26;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .p-home-block--about--content p {
    font-size: 1.4rem;
    white-space: normal;
  }
}
.p-home-block--feature {
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-home-block--feature {
    padding-top: 72px;
    padding-bottom: 60px;
  }
}
.p-home-block--feature::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 740px;
  background: url("../images/home/bg_feature.png") #fff;
  background-size: cover;
  z-index: 5;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}
.p-home-block--feature .p-home-block__inner {
  position: relative;
  z-index: 10;
}
.p-home-block--feature--head {
  text-align: center;
}
.p-home-block--feature--heading__main {
  font-size: 3.6rem;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .p-home-block--feature--heading__main {
    font-size: 2rem;
  }
}
.p-home-block--feature--heading__main .lg {
  font-size: 2.055em;
}
.p-home-block--feature--heading__main .num {
  font-family: var(--font_averia);
  font-style: italic;
}
.p-home-block--feature--heading__sub {
  font-family: var(--font_lato);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--color-blue);
  display: block;
}
@media only screen and (max-width: 991px) {
  .p-home-block--feature--heading__sub {
    font-size: 1.8rem;
  }
}
.p-home-block--feature.-active::after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.p-home-block--info {
  max-width: 864px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 130px;
  padding-bottom: 130px;
}
@media only screen and (max-width: 991px) {
  .p-home-block--info {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-home-block--info__heading {
  font-family: var(--font_lato);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-blue);
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .p-home-block--info__heading {
    font-size: 1.8rem;
  }
}
.p-home-block--info__main {
  margin-top: 20px;
}
.p-home-block--info__row {
  display: flex;
  gap: 26px;
  padding: 20px 30px;
  border-bottom: 1px solid var(--color-navy);
}
@media only screen and (max-width: 991px) {
  .p-home-block--info__row {
    flex-direction: column;
    gap: 0.3em;
    padding: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .p-home-block--info__row:nth-child(1) {
    border-top: 1px solid var(--color-navy);
  }
}
.p-home-block--info__date {
  font-family: var(--font_lato);
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--color-blue);
}
@media only screen and (max-width: 991px) {
  .p-home-block--info__date {
    font-size: 1.2rem;
  }
}
.p-home-block--info__title {
  font-size: 1.4rem;
  color: var(--color-font-dark);
}
@media only screen and (max-width: 991px) {
  .p-home-block--info__title {
    font-size: 1.3rem;
  }
}
.p-home-block--info a {
  color: var(--color-blue);
}
.p-home-block--links {
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1px;
}
@media only screen and (max-width: 768px) {
  .p-home-block--links {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-home-block--links__item {
  display: grid;
  place-items: center;
  width: 100%;
  height: 28vw;
  max-height: 320px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-home-block--links__item {
    height: 250px;
  }
}
.p-home-block--links__item::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.p-home-block--links__item::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.p-home-block--links__item--company::before {
  background: url("../images/home/home-link-img_company.jpg") center center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.p-home-block--links__item--company::after {
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.p-home-block--links__item--factory::before {
  background: url("../images/home/home-link-img_product.jpg") center center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}
.p-home-block--links__item--factory::after {
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}
.p-home-block--links__item--sustainability::before {
  background: url("../images/home/home-link-img_sastainerbility.jpg") center center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.p-home-block--links__item--sustainability::after {
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.p-home-block--links__item--recruit::before {
  background: url("../images/home/home-link-img_recruit.jpg") center center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}
.p-home-block--links__item--recruit::after {
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}
.p-home-block--links__item.-active::before {
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.p-home-block--links__item.-active::after {
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.p-home-block--links__item:hover::after {
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.1;
}
.p-home-block--links__item .c-button {
  z-index: 10;
}
.p-home-block--factory--head {
  text-align: center;
  margin-top: 120px;
}
@media only screen and (max-width: 991px) {
  .p-home-block--factory--head {
    margin-top: 80px;
  }
}
.p-home-block--factory--head p {
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .p-home-block--factory--head p {
    font-size: 1.4rem;
  }
}
.p-home-block--factory--heading {
  margin-bottom: 20px;
}
.p-home-block--factory--heading__main {
  font-size: 3.6rem;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .p-home-block--factory--heading__main {
    font-size: 2rem;
  }
}
.p-home-block--factory--heading__main .lg {
  font-size: 2.055em;
}
.p-home-block--factory--heading__main .num {
  font-family: var(--font_averia);
  font-style: italic;
}
.p-home-block--factory--heading__sub {
  font-family: var(--font_lato);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--color-blue);
  display: block;
}
@media only screen and (max-width: 991px) {
  .p-home-block--factory--heading__sub {
    font-size: 1.8rem;
  }
}

.p-home-module-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .p-home-module-1 {
    grid-template-columns: 1fr;
  }
}
.p-home-module-1__main {
  padding-right: 98px;
}
@media only screen and (max-width: 991px) {
  .p-home-module-1__main {
    padding-right: 0;
  }
}
.p-home-module-1__sub {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .p-home-module-1__sub {
    margin-top: 24px;
  }
}

.p-home-module-2 {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 80px;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
@media only screen and (max-width: 991px) {
  .p-home-module-2 {
    grid-template-columns: 1fr;
    grid-row-gap: 48px;
    margin-top: 40px;
  }
}
.p-home-module-2__unit {
  width: 100%;
  background: white;
  position: relative;
}
.p-home-module-2__image {
  display: block;
  width: 100%;
  height: 345px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-home-module-2__image {
    height: 44vw;
  }
}
@media only screen and (max-width: 600px) {
  .p-home-module-2__image {
    height: 92vw;
  }
}
.p-home-module-2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.p-home-module-2__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 25px;
}
.p-home-module-2__content-head {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-navy);
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .p-home-module-2__content-head {
    font-size: 1.8rem;
  }
}
.p-home-module-2__content-head a {
  color: var(--color-navy);
}
.p-home-module-2__content-desc {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 1em;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .p-home-module-2__content-desc {
    font-size: 1.35rem;
  }
}
.p-home-module-2__num {
  display: grid;
  place-items: center;
  position: absolute;
  top: -20px;
  left: 15px;
  width: 49px;
  height: 55px;
  background: url("../images/common/bg_num_icon.svg") center center no-repeat;
  background-size: cover;
  font-family: var(--font_averia);
  font-weight: bold;
  font-style: italic;
  font-size: 3rem;
  color: white;
}
.p-home-module-2__button {
  margin-top: 24px;
}
.p-home-module-2__button .c-button {
  margin: auto;
  border-width: 2px;
  align-items: center;
  padding: 0;
}

/* foundation */
.p-page-header {
  width: 100%;
  height: 200px;
  position: relative;
}
.p-page-header__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .p-page-header__image--left {
    object-position: left;
  }
}
@media only screen and (max-width: 991px) {
  .p-page-header__image--right {
    object-position: right;
  }
}
.p-page-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.p-page-header__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 92%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 4%;
  z-index: 10;
}
.p-page-header__title--sub {
  position: relative;
  font-family: var(--font_lato);
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 991px) {
  .p-page-header__title--sub {
    font-size: 1rem;
  }
}
.p-page-header__title--main {
  position: relative;
  font-size: 3.2rem;
  font-weight: 500;
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-page-header__title--main {
    font-size: 2rem;
  }
}

.p-section-inner {
  width: 88%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.p-section-inner.-white {
  background: white;
  padding: 68px 120px 120px;
}
@media only screen and (max-width: 991px) {
  .p-section-inner.-white {
    padding: 40px 24px;
  }
}

.p-page-section {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .p-page-section {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .p-page-section {
    padding-top: 48px;
  }
}
.p-page-section .c-section-header__title {
  margin-top: 0;
}
.p-page-section.-gray {
  background: #eee;
}
.p-page-section.-white {
  background: white;
  padding-bottom: 88px;
}
@media only screen and (max-width: 991px) {
  .p-page-section.-white {
    padding-bottom: 48px;
  }
}

.l-page-main.-white {
  background: white;
}
.l-page-main .p-page-section:nth-of-type(1) {
  padding-top: 0;
}

.p-page-intro {
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .p-page-intro {
    padding-bottom: 40px;
  }
}
.p-page-intro__title {
  font-size: 3.6rem;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  padding-top: 14px;
  margin-bottom: 2.6em;
}
@media only screen and (max-width: 991px) {
  .p-page-intro__title {
    font-size: 2.4rem;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 600px) {
  .p-page-intro__title {
    font-size: 1.8rem;
  }
}
.p-page-intro__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: url("../images/common/icon_header_title.svg") center center no-repeat;
  background-size: contain;
}

.l-page-main {
  padding-top: 80px;
}
@media only screen and (max-width: 991px) {
  .l-page-main {
    padding-top: 48px;
  }
}
@media only screen and (max-width: 600px) {
  .l-page-main {
    padding-top: 30px;
  }
}

/* foundation */
.p-factory-page-intro {
  position: relative;
  z-index: 10;
}
.p-factory-page-intro__title {
  font-size: 3.6rem;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  padding-top: 14px;
  margin-bottom: 2.6em;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-intro__title {
    font-size: 2.4rem;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 600px) {
  .p-factory-page-intro__title {
    font-size: 1.8rem;
  }
}
.p-factory-page-intro__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: url("../images/common/icon_header_title.svg") center center no-repeat;
  background-size: contain;
}
.p-factory-page-intro__container {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-intro__container {
    flex-direction: column;
  }
}
.p-factory-page-intro__media {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-intro__media {
    width: 100%;
    text-align: center;
  }
}
.p-factory-page-intro__content {
  width: 50%;
  padding: 60px;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-intro__content {
    width: 100%;
    padding: 24px;
  }
}
.p-factory-page-intro__content p {
  line-height: 2.2;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-intro__content p {
    font-size: 1.4rem;
  }
}
.p-factory-page-intro__thumbs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-intro__thumbs {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .p-factory-page-intro__thumbs {
    gap: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .p-factory-page-intro__thumbs img {
    width: 30%;
  }
}

.p-factory-page-facility-overview {
  position: relative;
  padding-top: 100px;
  padding-bottom: 160px;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility-overview {
    padding-top: 16px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .p-factory-page-facility-overview {
    padding-top: 0;
    padding-bottom: 48px;
  }
}
.p-factory-page-facility-overview::before, .p-factory-page-facility-overview::after {
  content: "";
  width: 100%;
  height: calc(100% + 130px);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility-overview::before, .p-factory-page-facility-overview::after {
    height: calc(100% + 65px);
  }
}
.p-factory-page-facility-overview::before {
  background: url("../images/factory/bg_factory_sample.jpg") no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0.2;
}
.p-factory-page-facility-overview::after {
  background: rgba(18, 97, 165, 0.3);
  z-index: 2;
}
.p-factory-page-facility-overview .p-section-inner {
  position: relative;
  z-index: 10;
}

.p-factory-page-facility__container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 88px;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility__container {
    flex-direction: column;
    margin-top: 58px;
    gap: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .p-factory-page-facility__container {
    margin-top: 32px;
  }
}
.p-factory-page-facility__container.fig-none {
  display: block;
}
.p-factory-page-facility__fig {
  flex-basis: 65%;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 24px 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility__fig {
    flex-basis: 100%;
    width: 100%;
    padding: 24px;
  }
}
.p-factory-page-facility__fig img {
  margin: auto;
}
.p-factory-page-facility__fig .fig_layer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: calc(100% - 88px);
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility__fig .fig_layer {
    width: calc(100% - 48px);
  }
}
.p-factory-page-facility__fig .fig_layer.is-active {
  opacity: 1;
}
.p-factory-page-facility__fig .p-factory-page-facility__list {
  flex-basis: 100%;
  width: 100%;
}
.p-factory-page-facility__list {
  flex-basis: 35%;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility__list {
    flex-basis: 100%;
    width: 100%;
  }
}

.p-factory-page-facility-item {
  margin-bottom: 14px;
}
.p-factory-page-facility-item__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-navy);
  font-size: 1.6rem;
  font-weight: 500;
  color: white;
  width: 100%;
  height: 44px;
  padding-left: 37px;
  padding-right: 16px;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility-item__title {
    font-size: 1.5rem;
    height: 36px;
  }
}
.p-factory-page-facility-item__title .icon {
  width: 24px;
  transform: rotate(0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.p-factory-page-facility-item__title .icon img {
  vertical-align: bottom;
}
.p-factory-page-facility-item__title.is-active .icon {
  transform: rotate(180deg);
}
.p-factory-page-facility-item__content {
  display: none;
  background: white;
  padding: 44px 44px 26px;
}
.p-factory-page-facility-item__content img {
  margin: auto;
  display: block;
  width: 312px;
}
.p-factory-page-facility-item__content p {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1em;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility-item__content p {
    font-size: 1.3rem;
  }
}
.p-factory-page-facility-item__content table {
  width: 100%;
  max-width: 680px;
  margin: 1em auto;
  font-size: 1.4rem;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility-item__content table {
    font-size: 1.3rem;
  }
}
.p-factory-page-facility-item__content table th, .p-factory-page-facility-item__content table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #dddddd;
  word-break: break-all;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility-item__content table th, .p-factory-page-facility-item__content table td {
    padding: 7px;
  }
}
.p-factory-page-facility-item__content table th {
  font-weight: 500;
}
.p-factory-page-facility-item__content table th.sm {
  font-size: 1.3rem;
  font-weight: normal;
}
.p-factory-page-facility-item.is-active .p-factory-page-facility-item__content {
  display: block;
}

.p-factory-page-facility-list {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .p-factory-page-facility-list {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .p-factory-page-facility-list {
    padding-top: 48px;
  }
}
.p-factory-page-facility-list__table table {
  width: 100%;
  max-width: 800px;
  margin: auto;
  word-break: break-all;
}
.p-factory-page-facility-list__table table td {
  border: 1px solid #B3B3B3;
}
.p-factory-page-facility-list__table table td:nth-child(n+2) {
  text-align: center;
  width: 200px;
}
@media only screen and (max-width: 600px) {
  .p-factory-page-facility-list__table table td:nth-child(n+2) {
    width: 25%;
  }
}

.p-factory-page-transport-map {
  max-width: 800px;
  margin: auto;
}
.p-factory-page-transport-map .map-fig {
  display: block;
  margin: auto;
}

.p-transport-map-heading {
  color: var(--color-blue);
  margin-top: 1.4em;
  margin-bottom: 0.83em;
}

.c-transportation-card {
  background: var(--color-blue);
  display: flex;
  padding: 30px 60px;
  margin-top: 120px;
}
@media only screen and (max-width: 991px) {
  .c-transportation-card {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    margin-top: 60px;
  }
}

.c-transportation-card-item {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .c-transportation-card-item:nth-child(n+2) {
    border-top: 1px solid white;
  }
}
.c-transportation-card-item__icon {
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  place-items: center;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-blue);
}
@media only screen and (max-width: 991px) {
  .c-transportation-card-item__icon {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
  }
}
.c-transportation-card-item__desc {
  color: white;
}
.c-transportation-card-item__desc--emp {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 600;
  margin-left: 0.1em;
}
.c-transportation-card-item__desc--emp .lg {
  font-size: 1.5em;
  position: relative;
  bottom: -2px;
  margin: 0 0.1em;
}

.p-factory-list-layout {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 600px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-factory-list-layout {
    flex-direction: column;
    height: auto;
    padding-top: 30vw;
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) and (max-width: 600px) {
  .p-factory-list-layout {
    padding-top: 75vw;
  }
}
.p-factory-list-layout-canning {
  background: url("../images/factory/img_factory_can.jpg") left center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .p-factory-list-layout-canning {
    background: url("../images/factory/img_factory_can.jpg") left top no-repeat;
    background-size: auto 75vw;
  }
}
.p-factory-list-layout-machining {
  background: url("../images/factory/img_factory_machining.jpg") left center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .p-factory-list-layout-machining {
    background: url("../images/factory/img_factory_machining.jpg") top right no-repeat;
    background-size: auto 75vw;
  }
}
.p-factory-list-layout-assembly {
  background: url("../images/factory/img_factory_assembly@2x.jpg") left center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .p-factory-list-layout-assembly {
    background: url("../images/factory/img_factory_assembly.jpg") top left -8vw no-repeat;
    background-size: auto 75vw;
  }
}
.p-factory-list-layout::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 10, 21);
  background: linear-gradient(90deg, rgba(0, 10, 21, 0) 0%, rgba(0, 10, 21, 0.9528186275) 52%, rgb(0, 10, 21) 100%);
}
@media only screen and (max-width: 991px) {
  .p-factory-list-layout::before {
    background: rgb(0, 10, 21);
    top: 30vw;
  }
}
@media only screen and (max-width: 600px) {
  .p-factory-list-layout::before {
    top: 75vw;
  }
}
.p-factory-list-layout__content {
  position: relative;
  width: 50%;
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-factory-list-layout__content {
    width: 100%;
    padding: 6vw;
  }
}
@media only screen and (max-width: 600px) {
  .p-factory-list-layout__content {
    padding: 38px 6vw 12px;
  }
}
.p-factory-list-layout:nth-child(2n) {
  justify-content: flex-start;
}
.p-factory-list-layout:nth-child(2n)::before {
  background: rgb(0, 10, 21);
  background: linear-gradient(270deg, rgba(0, 10, 21, 0) 0%, rgba(0, 10, 21, 0.9528186275) 52%, rgb(0, 10, 21) 100%);
}
@media only screen and (max-width: 991px) {
  .p-factory-list-layout:nth-child(2n)::before {
    background: rgb(0, 10, 21);
  }
}

.p-factory-list-layout-heading__sub {
  font-family: var(--font_lato);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-blue);
}
@media only screen and (max-width: 991px) {
  .p-factory-list-layout-heading__sub {
    font-size: 1.2rem;
  }
}
.p-factory-list-layout-heading__main {
  font-size: 3rem;
  margin-top: 0.4em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 991px) {
  .p-factory-list-layout-heading__main {
    font-size: 2rem;
  }
}

.p-factory-list-layout-desc {
  font-size: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .p-factory-list-layout-desc {
    font-size: 1.3rem;
  }
}

.p-factory-list-layout-more .c-button {
  margin-left: auto;
  margin-right: 0;
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .p-factory-list-layout-more .c-button {
    margin: 20px auto;
  }
}

/* foundation */
.p-company-message {
  display: flex;
  gap: 68px;
}
@media only screen and (max-width: 991px) {
  .p-company-message {
    flex-direction: column;
    gap: 2em;
  }
}
.p-company-message__text {
  width: 60%;
}
@media only screen and (max-width: 991px) {
  .p-company-message__text {
    width: 100%;
    order: 2;
  }
}
.p-company-message__text p {
  line-height: 2.4;
  margin-bottom: 0.7em;
}
.p-company-message__image {
  width: 40%;
  text-align: center;
  padding-top: 0.8em;
}
@media only screen and (max-width: 991px) {
  .p-company-message__image {
    width: 100%;
    padding: 12px 25px 0;
    order: 1;
  }
}
.p-company-message__image img {
  width: 380px;
}
@media only screen and (max-width: 600px) {
  .p-company-message__image img {
    max-width: 70%;
  }
}

.p-company-sign {
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
}
.p-company-sign p {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}
.p-company-sign p:nth-child(2) {
  font-size: 1.7em;
  line-height: 1;
  font-family: var(--font_mincho);
  font-weight: 400;
}
.p-company-sign img {
  width: 170px;
}
@media only screen and (max-width: 991px) {
  .p-company-sign img {
    width: 130px;
  }
}
.p-company-sign span.first-name {
  font-size: 1em;
  margin-left: 0.3em;
}

.p-company-philosophy {
  max-width: 620px;
  margin-inline: auto;
}
.p-company-philosophy-row:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .p-company-philosophy-row:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-company-philosophy-image {
  display: grid;
  place-items: center;
}
.p-company-philosophy-text {
  line-height: 2.2;
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .p-company-philosophy-text {
    margin-top: 12px;
  }
}
.p-company-philosophy-text--title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 0.83em;
}
@media only screen and (max-width: 991px) {
  .p-company-philosophy-text--title {
    font-weight: bold;
    font-size: 1.7rem;
    line-height: 1.5;
  }
}
.p-company-philosophy ol {
  line-height: 1.5;
  padding-left: 1.6em;
  display: grid;
  gap: 0.3em;
}

.p-company-list-01 dl {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.p-company-list-01 dt, .p-company-list-01 dd {
  border-bottom: 1px solid #707070;
}
.p-company-list-01 dt {
  width: 190px;
  padding: 0.7em 0.5em;
}
@media only screen and (max-width: 991px) {
  .p-company-list-01 dt {
    width: 140px;
  }
}
@media only screen and (max-width: 600px) {
  .p-company-list-01 dt {
    font-weight: 500;
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.p-company-list-01 dd {
  width: calc(100% - 192px);
  padding: 0.7em 0.5em;
}
@media only screen and (max-width: 991px) {
  .p-company-list-01 dd {
    width: calc(100% - 142px);
  }
}
@media only screen and (max-width: 600px) {
  .p-company-list-01 dd {
    width: 100%;
    padding-top: 0.3em;
  }
}

.p-company-client-list {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 991px) {
  .p-company-client-list {
    font-size: 1.3rem;
  }
}
.p-company-client-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  border-style: solid;
  border-color: #B3B3B3;
  border-width: 1px 0 0 1px;
}
.p-company-client-list ul li {
  width: 33.3333%;
  border-style: solid;
  border-color: #B3B3B3;
  border-width: 0 1px 1px 0;
  padding: 0.5em 0.8em;
}
@media only screen and (max-width: 600px) {
  .p-company-client-list ul li {
    width: 50%;
  }
}

.p-company-group {
  background: #1261A5;
  display: flex;
  justify-content: center;
  border-radius: 4px;
  padding: 50px 0;
}
@media only screen and (max-width: 991px) {
  .p-company-group {
    flex-direction: column;
    gap: 26px;
    padding: 26px;
  }
}

.p-company-group-item {
  color: white;
  width: 50%;
  padding: 0 50px;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item {
    width: 100%;
    padding: 0;
  }
}
.p-company-group-item:nth-child(n+2) {
  border-left: 1px solid #fff;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item:nth-child(n+2) {
    border-top: 1px solid #fff;
    border-left: none;
    padding-top: 26px;
  }
}
.p-company-group-item__image {
  display: flex;
  background: white;
  width: 100%;
  height: 118px;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item__image {
    height: 80px;
  }
}
.p-company-group-item__header {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item__header {
    margin-top: 20px;
  }
}
.p-company-group-item__thumb {
  width: 118px;
  height: 118px;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item__thumb {
    width: 80px;
    height: 80px;
  }
}
.p-company-group-item__logo {
  flex-grow: 1;
  display: grid;
  place-items: center;
}
.p-company-group-item__logo img {
  max-width: 90%;
}
.p-company-group-item__title {
  font-size: 2.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item__title {
    font-size: 1.8rem;
  }
}
.p-company-group-item__url {
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: underline;
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item__url {
    font-size: 1.3rem;
  }
}
.p-company-group-item__url:hover {
  color: var(--color-font-dark);
}
.p-company-group-item__content {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item__content {
    margin-top: 20px;
  }
}
.p-company-group-item__content p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
}
@media only screen and (max-width: 991px) {
  .p-company-group-item__content p {
    font-size: 1.3rem;
  }
}

/* foundation */
.p-product-archive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}
@media only screen and (max-width: 991px) {
  .p-product-archive {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.p-product-category__title {
  margin-top: 1em;
}

.p-product-category-list {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 20px auto;
}
@media only screen and (max-width: 991px) {
  .p-product-category-list {
    flex-wrap: wrap;
  }
}
.p-product-category-list li {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .p-product-category-list li {
    width: calc(50% - 6px);
  }
}
.p-product-category-list li a {
  display: grid;
  place-items: center;
  border: 1px solid var(--color-blue);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-blue);
  padding: 0.5em 1em;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-product-category-list li a {
    font-size: 1.3rem;
  }
}
.p-product-category-list li a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  -webkit-transform: translate(-120%, 0);
  transform: translate(-120%, 0);
}
.p-product-category-list li a.is-current {
  background-color: var(--color-blue);
  color: white;
}
.p-product-category-list li a:hover {
  color: white;
}
.p-product-category-list li a:hover::before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.p-product-category-list__single li {
  width: auto;
  min-width: 148px;
}

.p-product-item {
  width: 100%;
  height: 100%;
  border: 1px solid #e8e8e8;
  color: var(--color-font-dark);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  overflow: hidden;
}
.p-product-item:nth-child(4n+2) {
  transform: translate(0px, 52px);
}
.p-product-item:nth-child(4n+3) {
  transform: translate(0px, 64px);
}
.p-product-item:nth-child(4n+4) {
  transform: translate(0px, 76px);
}
.p-product-item__thumb {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .p-product-item__thumb {
    height: 34vw;
  }
}
.p-product-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.p-product-item__thumb:hover img {
  transform: scale(1.2);
}
.p-product-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 15px;
}
@media only screen and (max-width: 600px) {
  .p-product-item__content {
    padding: 8px 10px;
  }
}
.p-product-item__title {
  display: grid;
  place-items: center;
  width: 100%;
  height: 54px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 991px) {
  .p-product-item__title {
    font-size: 1.6rem;
    height: 36px;
  }
}
@media only screen and (max-width: 600px) {
  .p-product-item__title {
    font-size: 1.5rem;
  }
}
.p-product-item__title a {
  color: var(--color-font-dark);
}
.p-product-item__excerpt {
  font-size: 1.3rem;
  margin-top: 20px;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .p-product-item__excerpt {
    font-size: 1.35rem;
  }
}
@media only screen and (max-width: 600px) {
  .p-product-item__excerpt {
    font-size: 1.2rem;
    margin-top: 13px;
  }
}
.p-product-item__term {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .p-product-item__term {
    margin-top: 2px;
  }
}
.p-product-item__term-link {
  background: var(--color-blue);
  font-size: 1.2rem;
  color: white;
  padding: 0.3em 0.8em;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 600px) {
  .p-product-item__term-link {
    font-size: 1rem;
  }
}
.p-product-item__term-link::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-navy);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  -webkit-transform: translate(-120%, 0);
  transform: translate(-120%, 0);
}
.p-product-item__term-link:hover::before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.p-single-product-header-category .p-product-category-list {
  justify-content: center;
}
.p-single-product-header-category .p-product-category-list li {
  flex-grow: 0;
}

.p-single-product-content {
  width: 96%;
  max-width: 968px;
  margin: auto;
  color: #444;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 48px;
}
.p-single-product-content img {
  display: block;
}

.p-product-more-link {
  margin-top: 120px;
}
@media only screen and (max-width: 991px) {
  .p-product-more-link {
    margin-top: 88px;
  }
}
@media only screen and (max-width: 600px) {
  .p-product-more-link {
    margin-top: 60px;
  }
}
.p-product-more-link .c-button {
  margin: auto;
}

/* foundation */
.p-sustainability-page-intro {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-sustainability-page-intro {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .p-sustainability-page-intro {
    padding-bottom: 48px;
  }
}
.p-sustainability-page-intro__title {
  margin-bottom: 1.6em;
}
.p-sustainability-page-intro__container {
  max-width: 980px;
  margin: auto;
}

.p-sustainability-sdgs-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  place-items: center;
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  .p-sustainability-sdgs-icons {
    padding-top: 36px;
  }
}
.p-sustainability-sdgs-icons img {
  display: block;
}

.p-sustainability-sdgs-item {
  display: grid;
  grid-template-columns: 2.5fr 3fr;
  gap: 36px;
  max-width: 980px;
  background: #fff;
  margin: 0 auto 48px;
  padding: 48px;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  .p-sustainability-sdgs-item {
    display: block;
    padding: 30px;
    margin-bottom: 30px;
  }
}
.p-sustainability-sdgs-item__title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1em;
  padding-left: 18px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-sustainability-sdgs-item__title {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-sustainability-sdgs-item__title {
    padding-left: 12px;
  }
}
.p-sustainability-sdgs-item__title::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/common/icon_header_title.svg") center center no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
}
@media only screen and (max-width: 768px) {
  .p-sustainability-sdgs-item__title::before {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
  }
}
.p-sustainability-sdgs-item__media {
  display: grid;
  place-items: center;
}
.p-sustainability-sdgs-item__content {
  padding-top: 15px;
}
@media only screen and (max-width: 768px) {
  .p-sustainability-sdgs-item__content {
    padding-top: 20px;
  }
}
.p-sustainability-sdgs-item__content p {
  font-size: 1.5rem;
  margin-bottom: 2em;
}
@media only screen and (max-width: 991px) {
  .p-sustainability-sdgs-item__content p {
    font-size: 1.35rem;
    margin-bottom: 1em;
  }
}
.p-sustainability-sdgs-item__icon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .p-sustainability-sdgs-item__icon {
    justify-content: center;
  }
}
.p-sustainability-sdgs-item__icon img {
  width: 90px;
}
@media only screen and (max-width: 991px) {
  .p-sustainability-sdgs-item__icon img {
    width: 66px;
  }
}
.p-sustainability-sdgs-item img {
  display: block;
  vertical-align: bottom;
}

/* foundation */
.p-contact__container {
  max-width: 920px;
  margin: auto;
}

.p-contact-form {
  background: #fff;
  border-radius: 3px;
  padding: 36px;
  margin-top: 36px;
}
@media only screen and (max-width: 991px) {
  .p-contact-form {
    padding: 16px 24px;
    margin-top: 14px;
  }
}

.p-contact__annotation {
  font-size: 1.4rem;
  margin-top: 1em;
}

.contact .p-page-intro__title {
  margin-bottom: 1.6em;
}

/* foundation */
@media only screen and (max-width: 991px) {
  .pc {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .pc-m {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .pc-s {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 991px) {
  .sp {
    display: block;
  }
}

.sp-m {
  display: none;
}
@media only screen and (max-width: 600px) {
  .sp-m {
    display: block;
  }
}

.u-anim-fadein {
  opacity: 0;
}
.u-anim-fadein.-active {
  -webkit-transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  opacity: 1;
}
.u-anim-fadein.-visible {
  -webkit-transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  opacity: 1;
}

.u-swipe-from-bottom {
  transform: translate(0px, 40px);
}
.u-swipe-from-bottom.-visible {
  -webkit-transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.u-swipe-from-bottom.-active {
  -webkit-transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

.u-swipe-from-left {
  transform: translate(-35%, 0);
}
.u-swipe-from-left.-visible {
  -webkit-transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
.u-swipe-from-left.-active {
  -webkit-transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity ease 0.7s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

.u-text-hover-on {
  padding-bottom: 3px;
  background-image: linear-gradient(#242422, #242422);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.u-text-hover-on:hover {
  background-size: 100% 1px;
}
.u-text-hover-on.u-text-hover-blue {
  background-image: linear-gradient(#1E489D, #1E489D);
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}
@media only screen and (max-width: 768px) {
  .u-pt-50 {
    padding-top: 25px !important;
  }
}

.u-anchor::before {
  display: block;
  height: 160px;
  margin-top: -160px;
  content: "";
}

.u-text-center {
  text-align: center;
}

.u-link-google-map {
  display: inline-block;
  padding-top: 0.7em;
  color: var(--color-blue);
}
.u-link-google-map__icon {
  display: inline-block;
  position: relative;
  top: 1px;
  left: 5px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transition-duration: 1s;
  }
  100% {
    opacity: 1;
    transition-duration: 1s;
  }
}

/*# sourceMappingURL=style.css.map */
