@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* フォント */
/* 配置(フレックス) */
/* 擬似要素の共通基盤 */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

li {
  list-style: none;
}

a {
  position: relative;
  text-decoration: none;
  color: black;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

span {
  display: inline-block;
  white-space: nowrap;
}

img {
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  color: #fff;
  background: orange;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* ホバーで上下送り&下線 */
.hover02 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 12rem);
}
@media screen and (max-width: 767px) {
  .hover02 {
    height: calc(100vh - 14rem);
  }
}
.hover02 .hover02__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70rem;
  font-size: 1.5rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .hover02 .hover02__nav {
    display: none;
  }
}
.hover02 .hover02__nav .nav__menu a {
  height: 3.5rem;
  overflow: hidden;
  transition: 0.6s;
}
.hover02 .hover02__nav .nav__menu a span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 2.5rem;
  transition: 0.6s;
}
.hover02 .hover02__nav .nav__menu a img {
  position: relative;
  z-index: 2;
  width: 2.5rem;
}
.hover02 .hover02__nav .nav__menu a::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: 0.6s;
}
.hover02 .hover02__nav .nav__menu a::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translateY(100%);
  color: #237eed;
  font-size: 2.5rem;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
}
.hover02 .hover02__nav .nav__menu a:hover span {
  color: #237eed;
  opacity: 0;
  transform: translateY(-100%);
}
.hover02 .hover02__nav .nav__menu a:hover::before {
  background: #237eed;
  transform: scale(1, 1);
  transform-origin: left top;
}
.hover02 .hover02__nav .nav__menu a:hover::after {
  transform: translateY(0);
  opacity: 1;
}
.hover02 .hover02__nav .menu01 a::after {
  content: "TOP";
}
.hover02 .hover02__nav .menu02 a::after {
  content: "会社案内";
}
.hover02 .hover02__nav .menu03 a::after {
  content: "事業紹介";
}
.hover02 .hover02__nav .menu04 a::after {
  content: "サステナビリティ";
}
.hover02 .hover02__nav .menu05 a::after {
  content: "ニュース";
}
.hover02 .hover02__nav .menu06 a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding-right: 2.5rem;
}
.hover02 .hover02__nav .menu06 a .menu06__blue {
  display: none;
}
.hover02 .hover02__nav .menu06 a::after {
  content: "採用情報";
}
.hover02 .hover02__nav .menu06 a:hover .menu06__black {
  display: none;
}
.hover02 .hover02__nav .menu06 a:hover .menu06__blue {
  display: block;
}/*# sourceMappingURL=style.css.map */