html,
body {
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.baskervville {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}
.baskervville-italic {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: italic;
}
.noto-serif-jp-light {
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.noto-sans-jp-thin {
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.noto-sans-jp-light {
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
.hide {
  display: none !important;
}
.menu {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 64rem;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99;
  opacity: 0;
  transition: all 1s cubic-bezier(0.14, 0.33, 0.09, 1);
  visibility: hidden;
}
@media (max-width: 768px) {
  .menu {
    width: 100vw;
  }
}
.menu .close-btn {
  position: absolute;
  right: 5rem;
  top: 7rem;
  z-index: 4;
  width: 2.6rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu .close-btn {
    right: 3rem;
    top: 4rem;
    width: 2.2rem;
  }
}
.menu ul {
  margin-top: 20rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 768px) {
  .menu ul {
    margin-top: 14rem;
    gap: 3rem;
  }
}
.menu ul li a {
  width: 49rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4.6rem;
  position: relative;
  left: 20%;
  opacity: 0;
  transition: all 1s cubic-bezier(0.14, 0.33, 0.09, 1);
}
.menu ul li a span {
  color: white;
  position: relative;
  z-index: 4;
}
.menu ul li a span:first-child {
  font-size: 2.4rem;
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}
.menu ul li a span:last-child {
  font-size: 1.7rem;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.menu ul li a::before {
  position: absolute;
  content: '';
  width: 13rem;
  height: 1px;
  left: 105%;
  top: 50%;
  background-color: white;
  opacity: 0.5;
}
.menu ul li a::after {
  position: absolute;
  content: '';
  width: 0;
  height: 2.8rem;
  background-color: rgba(255, 255, 255, 0.25);
  transition: all 1s cubic-bezier(0.11, 0.39, 0.16, 0.88);
}
.menu ul li a:hover {
  opacity: 1;
}
.menu ul li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .menu ul li a {
    width: 80vw;
    gap: 4rem;
  }
  .menu ul li a span:first-child {
    font-size: 2rem;
  }
  .menu ul li a span:last-child {
    font-size: 1.4rem;
  }
}
.menu ul li .active {
  left: 0;
  opacity: 1;
}
.menu-show {
  opacity: 1;
  visibility: visible;
}
.copyright {
  position: fixed;
  right: 4rem;
  bottom: 1.6rem;
  color: white;
  font-size: 1.2rem;
  z-index: 6;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 1.2rem;
    right: 1rem;
    bottom: 1rem;
  }
}
.slide-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.slide-container .slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s cubic-bezier(0.14, 0.33, 0.09, 1);
}
.slide-container .slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.slide-container .show {
  opacity: 1;
  visibility: visible;
}
.menu-btn {
  position: fixed;
  right: 5rem;
  top: 7rem;
  z-index: 19;
  width: 3.6rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-btn {
    right: 1.7rem;
    top: 4rem;
    width: 2.8rem;
  }
}
.cover-image {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  object-fit: cover;
  mix-blend-mode: overlay;
}
.logo {
  position: fixed;
  left: 5rem;
  top: 5rem;
  z-index: 99;
}
.logo img {
  width: 24rem;
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .logo {
    left: 1.8rem;
    top: 1.8rem;
  }
  .logo img {
    width: 15rem;
  }
}
.btn {
  width: 35rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.7rem;
  margin: 3rem auto;
  border: 1px solid white;
  cursor: pointer;
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
.btn:hover {
  opacity: 0.8;
}
.btn .side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
.btn .center-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24%;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
  .btn .center-arrow {
    right: 10%;
  }
}
.black-btn {
  border-color: #000;
  color: #000;
}
.page-slogan {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(500px, 55%, 800px);
  font-size: 4rem;
  letter-spacing: 1.1rem;
  color: white;
  z-index: 5;
  transition: all 2s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
  white-space: nowrap;
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .page-slogan {
    font-size: 2.2rem;
    right: 10%;
    letter-spacing: 0;
  }
}
.big-title {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 24rem;
  font-size: 14rem;
  color: white;
  z-index: 2;
  transition: all 2s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 5rem;
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .big-title {
    font-size: 8rem;
    left: 3rem;
  }
}
.big-title span {
  transition: all 2s cubic-bezier(0.06, 0.55, 0.26, 0.94);
}
.big-title span:first-child {
  position: relative;
  left: 0;
}
.big-title span:last-child {
  position: relative;
  right: 0;
}
.big-title-innovation {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 24rem;
  font-size: 14rem;
  color: white;
  z-index: 2;
  transition: all 2s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 5rem;
  mix-blend-mode: overlay;
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
@media (max-width: 768px) {
  .big-title-innovation {
    font-size: 8rem;
    left: 14rem;
  }
}
.big-title-innovation span {
  transition: all 2s cubic-bezier(0.06, 0.55, 0.26, 0.94);
}
.big-title-innovation span:first-child {
  position: relative;
  left: 0;
}
.big-title-innovation span:last-child {
  position: relative;
  right: 0;
}
.init-slogan-2 {
  opacity: 0;
}
.init-slogan-2 span:first-child {
  left: -10rem;
}
.init-slogan-2 span:last-child {
  right: -10rem;
}
.init-slogan {
  letter-spacing: 3rem;
  left: 20rem;
  opacity: 0;
}
.stage-contact {
  position: relative;
  height: 100vh;
  z-index: 13 !important;
}
.stage-contact .background-image {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
@media (max-width: 768px) {
  .stage-contact .background-image {
    height: 96rem;
  }
}
.stage-contact .form-contact {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  height: 100vh;
  padding-left: 15rem;
}
.stage-contact .form-contact .form-title {
  font-size: 2.4rem;
  text-align: center;
  width: 100%;
}
.stage-contact .form-contact .form {
  width: 58rem;
  height: fit-content;
}
.stage-contact .form-contact .form .title {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.stage-contact .form-contact .form .input-group {
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stage-contact .form-contact .form .input-group label {
  color: #000;
  font-size: 1.4rem;
}
.stage-contact .form-contact .form .input-group input,
.stage-contact .form-contact .form .input-group textarea {
  border: 1px solid #000;
  outline: none;
  padding: 12px 18px;
  width: 100%;
  font-size: 1.4rem;
  color: #000;
  background: transparent;
  border-radius: 0.3rem;
  font-family: Baskerville, 'Goudy Old Style', 'Palatino', 'Book Antiqua', serif;
}
.stage-contact .form-contact .form .wpcf7-form-control-wrap {
  position: relative;
}
.stage-contact .form-contact .form .show-tips::after {
  position: absolute;
  bottom: -4rem;
  font-size: 1.4rem;
  color: #ff0000;
  left: 0;
}
.stage-contact .form-contact .form .show-tips[data-name="username"]::after {
  content: '「お名前」をご記入ください。';
}
.stage-contact .form-contact .form .show-tips[data-name="phone"]::after {
  content: '「電話番号」をご記入ください。';
}
.stage-contact .form-contact .form .show-tips[data-name="email"]::after {
  content: '「メールアドレス」をご記入ください。';
}
.stage-contact .form-contact .form .show-tips[data-name="content"]::after {
  content: '「お問い合わせ内容」をご記入ください。';
  bottom: -2rem;
}
.stage-contact .form-contact .form .show-email-tips[data-name="email"]::after {
  content: '正しいメールアドレスをご記入ください。' !important;
}
.stage-contact .form-contact .form .show-phone-tips[data-name="phone"]::after {
  content: '正しい電話番号をご記入ください。' !important;
}
.stage-contact .form-contact .form .cross-input-group {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.stage-contact .form-contact .form .cross-input-group input {
  width: 27rem;
}
.stage-contact .form-contact .form .confirm-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  cursor: pointer !important;
  width: fit-content;
  margin: 0 auto;
}
.stage-contact .form-contact .form .confirm-check label {
  color: #000;
  font-size: 1.6rem;
  margin-left: 1rem;
}
.stage-contact .form-contact .form .confirm-check label a {
  text-decoration: underline;
  color: #000;
}
.stage-contact .form-contact .form .confirm-check input {
  background-color: transparent;
  border: 1px solid #000;
  outline: none;
}
.stage-contact .form-contact .form .submit-btn {
  border: 1px solid #000;
  outline: none;
  width: 34rem;
  height: 7.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  color: #000;
  margin: 4.8rem auto 0 auto;
  cursor: pointer;
}
.stage-contact .form-contact .form .submit-btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .stage-contact .form-contact {
    padding-left: 4rem;
    height: 96rem;
  }
  .stage-contact .form-contact .form {
    width: 78vw;
  }
  .stage-contact .form-contact .form .title {
    padding: 10rem 0 1rem 0;
    letter-spacing: 0.5rem;
  }
  .stage-contact .form-contact .form .cross-input-group {
    flex-direction: column;
    gap: 0;
  }
  .stage-contact .form-contact .form .input-group input,
  .stage-contact .form-contact .form .input-group textarea {
    padding: 8px 12px;
  }
  .stage-contact .form-contact .form .submit-btn {
    width: 100%;
  }
}
.wpcf7-submit {
  display: none;
}
.wpcf7-response-output {
  margin-top: 0 !important;
  color: white;
}
.grass-container {
  position: relative;
  margin-left: auto;
  width: clamp(500px, 55%, 800px);
  z-index: 3;
  color: white;
}
.grass-container::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  right: -64rem;
  top: 0;
  background-color: rgba(95, 95, 95, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: all 3s cubic-bezier(0.14, 0.33, 0.09, 1);
}
@media (max-width: 768px) {
  .grass-container {
    width: 100vw;
    margin-top: 100vh;
  }
}
.grass-container .title {
  font-size: 2.4rem;
  line-height: 2.8rem font-family: "Baskervville", serif; font-weight: 400; font-style: normal;;
  display: flex;
  flex-direction: column;
  margin-bottom: 19rem;
  position: relative;
  transform: translateY(0);
  transition: all 3s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
}
.grass-container .title .sub-title {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .grass-container .title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 10rem;
  }
  .grass-container .title .sub-title {
    font-size: 1.2rem;
  }
}
.grass-container .content {
  margin-top: 5.4rem;
  font-size: 1.8rem;
  line-height: 3.6rem;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  position: relative;
  transform: translateY(0);
  transition: all 3s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
}
@media (max-width: 768px) {
  .grass-container .content {
    margin-top: 4rem;
    font-size: 1.4rem;
    line-height: 3rem;
  }
}
.grass-container .init-status {
  position: relative;
  transform: translateY(10rem);
  opacity: 0;
}
.grass-container .manager-intro {
  margin-top: 24rem;
  position: relative;
  transform: translateY(0);
  transition: all 3s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
}
.grass-container .manager-intro .name {
  font-size: 2.6rem;
  position: relative;
  letter-spacing: 1rem;
}
.grass-container .manager-intro .name img {
  position: absolute;
  width: 35rem;
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  .grass-container .manager-intro .name {
    margin-top: 4rem;
    font-size: 1.6rem;
    line-height: 3rem;
    letter-spacing: 0;
  }
  .grass-container .manager-intro .name img {
    width: 20rem;
  }
}
.grass-container .manager-intro .avatar {
  padding-top: 5.4rem;
}
.grass-container .manager-intro .avatar img {
  width: 43rem;
  height: 39rem;
  object-fit: cover;
}
@media (max-width: 768px) {
  .grass-container .manager-intro .avatar img {
    width: 24rem;
    height: 16.8rem;
  }
}
.grass-container .fix-height-200 {
  height: 20rem;
}
@media (max-width: 768px) {
  .grass-container .fix-height-200 {
    height: 10rem;
  }
}
.grass-container .btn {
  width: 100%;
  margin: 4rem auto;
}
main {
  background-image: linear-gradient(to bottom right, #3D3D3D 0%, #202020 40%);
  min-height: 100vh;
  width: 100vw;
}
main .news-title {
  font-size: 13.5rem;
}
@media (min-width: 769px) {
  main .news-title {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 23rem;
  }
}
@media (max-width: 768px) {
  main .news-title {
    position: relative;
    font-size: 6.4rem;
    padding: 23rem 0 10rem 3rem;
  }
}
main .news-title .title {
  opacity: 0.3;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-weight: 200;
  font-size: 13.5rem;
  color: #F5F5F5;
  letter-spacing: 5rem;
}
@media (max-width: 768px) {
  main .news-title .title {
    font-size: 6.4rem;
    opacity: 1;
    letter-spacing: 2rem;
  }
}
main .news-list {
  padding-top: 28rem;
  margin-left: auto;
  margin-right: 10rem;
  padding-bottom: 8rem;
  width: clamp(400px, 40%, 600px);
}
@media (max-width: 768px) {
  main .news-list {
    padding-top: 0;
    width: calc(100vw - 6rem);
    margin: 0 auto !important;
  }
}
main .news-list .news-item {
  color: white;
  padding-top: 12rem;
}
@media (max-width: 768px) {
  main .news-list .news-item {
    padding-top: 8rem;
  }
}
main .news-list .news-item .news-date {
  padding-left: 5.5rem;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-weight: 200;
  font-size: 1.4rem;
  position: relative;
}
main .news-list .news-item .news-date::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 5rem;
  height: 1px;
  opacity: 0.4;
  background-color: white;
}
main .news-list .news-item .news-content .title {
  padding: 2.7rem 0 3.6rem 0;
  font-size: 2rem;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-weight: 200;
}
@media (max-width: 768px) {
  main .news-list .news-item .news-content .title {
    padding: 3.2rem 0;
  }
}
main .news-list .news-item .news-content .content {
  color: white;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-weight: 200;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  main .news-list .news-item .news-content .content {
    font-size: 1.5rem;
  }
}
main ul.page-numbers {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  width: calc(100vw - 20rem);
  margin: 5rem auto 0 auto;
  padding-bottom: 14rem;
  color: #667085;
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  justify-content: space-between;
  position: relative;
}
main ul.page-numbers li .page-numbers {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  color: #667085;
}
main ul.page-numbers .current {
  background-color: #ffffff;
  color: #7F56D9;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  border-radius: 0.8rem;
}
main ul.page-numbers li:first-child,
main ul.page-numbers li:last-child {
  flex-grow: 1;
}
main ul.page-numbers .prev,
main ul.page-numbers .next {
  width: 100% !important;
  gap: 1rem;
}
main ul.page-numbers .prev img,
main ul.page-numbers .next img {
  width: 1.2rem;
}
main ul.page-numbers .prev {
  justify-content: flex-start !important;
}
main ul.page-numbers .next {
  justify-content: flex-end !important;
}
main ul.page-numbers .next img {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  main ul.page-numbers {
    justify-content: center;
    width: calc(100vw - 6rem);
  }
  main ul.page-numbers li .page-numbers,
  main ul.page-numbers .current {
    width: 3.4rem;
    height: 3.4rem;
  }
  main ul.page-numbers li:first-child,
  main ul.page-numbers li:last-child {
    position: absolute;
    font-size: 1.2rem;
  }
  main ul.page-numbers .prev,
  main ul.page-numbers .next {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  main ul.page-numbers li:first-child {
    left: 0;
    top: 8rem;
  }
  main ul.page-numbers li:last-child {
    right: 0;
    top: 8rem;
  }
}
/*# sourceMappingURL=./news.css.map */