@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--header-text);
  padding-top: 40px;
  z-index: 100;
  transition: color 0.3s ease, background-color 0.3s ease;
}
header .logo {
  transition: opacity 0.5s ease;
}
header.is-logo-hidden .logo {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1080px) {
  header {
    justify-content: space-between;
    align-items: flex-start;
    padding: 21px;
  }
  header .logo {
    position: absolute;
    top: 29px;
    left: 20px;
    height: 180px;
  }
  header .logo h1 {
    margin: 0;
  }
}
header .logo {
  height: auto;
}
header .logo h1 {
  width: 120px;
  height: auto;
}
header .logo h1 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .nav {
  font-size: 0.87rem;
  font-weight: 700;
}
header .nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav ul li {
  display: inline-block;
  margin-right: 65px;
}
header .nav ul li a {
  position: relative;
  text-decoration: none;
  color: var(--nav-text);
}
header .nav ul li a::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.5s ease;
}
header .nav ul li a:hover::before {
  transform: scale(1, 1);
}
header .nav ul li:nth-of-type(4) {
  margin-right: 110px;
}
header .nav ul li:last-child a::before {
  display: none;
}
header .nav ul li:last-child a:hover::before {
  transform: none;
}
header .nav ul .contact-btn a {
  display: inline-block;
  padding: 10px 40px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  border: 2px solid var(--btn-border);
  border-radius: 50px;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.2s ease, border-color 0.2s ease;
}
header .nav ul .contact-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--btn-hover-bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.55, 1);
  z-index: -1;
}
header .nav ul .contact-btn a:hover {
  color: var(--btn-hover-text);
  border-color: var(--btn-hover-border);
}
header .nav ul .contact-btn a:hover::after {
  transform: scaleX(1);
}
header .toggle-button {
  display: none;
}
@media (max-width: 1080px) {
  header .toggle-button {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 50px;
    right: 20px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 21;
  }
  header .toggle-button span {
    display: block;
    width: 70%;
    height: 2px;
    background-color: var(--header-text);
    transition: 0.5s;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  header .toggle-button span:nth-child(1) {
    top: 10px;
  }
  header .toggle-button span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  header .toggle-button span:nth-child(3) {
    bottom: 10px;
  }
}
@media (max-width: 1080px) {
  header.open .toggle-button span {
    background-color: var(--header-text);
  }
  header.open .toggle-button span:nth-child(1) {
    transform: rotate(-45deg);
    top: 50%;
  }
  header.open .toggle-button span:nth-child(2) {
    transform: rotate(45deg);
    top: 50%;
  }
  header.open .toggle-button span:nth-child(3) {
    transform: rotate(45deg);
    top: 50%;
  }
}
@media (max-width: 1080px) {
  header.open #navi {
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
  }
  header.open #navi ul li {
    margin-bottom: 30px;
  }
  header.open #navi ul li a {
    color: #ffffff;
  }
}
@media (max-width: 1080px) {
  header #navi {
    display: block;
    position: fixed;
    top: 0;
    left: -500px;
    bottom: 0;
    padding: 110px 0 0 60px;
    background-color: #090909;
    width: 500px;
    transition: all 0.5s;
    opacity: 0;
    z-index: 20;
  }
  header #navi ul {
    flex-direction: column;
    align-items: flex-start;
  }
  header #navi ul li {
    margin-bottom: 30px;
    margin-right: 0;
  }
  header #navi ul .contact-btn a {
    background-color: transparent;
    color: #ffffff;
    padding: 0;
    border-radius: 0;
    border: 0;
    position: relative;
    overflow: visible;
  }
  header #navi ul .contact-btn a::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #ffffff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: all 0.5s ease;
  }
  header #navi ul .contact-btn a:hover::before {
    transform: scale(1, 1);
  }
  header #navi ul .contact-btn a::after {
    display: none;
  }
  header #navi ul .contact-btn a:hover {
    color: #ffffff;
    border-color: transparent;
  }
  header #navi ul .contact-btn a:hover::after {
    transform: none;
  }
}
@media (max-width: 770px) {
  header #navi {
    padding-left: 30px;
    width: 300px;
    left: -300px;
  }
}

body.is-menu-open header .nav a {
  color: var(--menu-text);
}
body.is-menu-open header .toggle-button span {
  background-color: var(--menu-text);
}

.main {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
.main .logo {
  position: absolute;
  height: auto;
}
.main .logo h1 {
  width: 120px;
  height: auto;
}
.main .logo h1 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.main .main-visual::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  opacity: var(--overlay-opacity);
  transition: opacity 0.3s ease-out;
  z-index: 2;
}
.main .main-visual .placeholder {
  height: 100vh;
}
.main .main-visual .mv-title {
  position: fixed;
  top: 50%;
  left: 10%;
  z-index: 3;
}
.main .main-visual .mv-title h2 {
  color: var(--text-sub);
  font-size: 2.5rem;
  padding-bottom: 20px;
  font-weight: 700;
}
.main .main-visual .mv-title p {
  color: var(--text-sub);
  font-size: 1.6rem;
  font-weight: 500;
}
.main .main-visual .scroll_container {
  position: fixed;
  bottom: 10%;
  right: 10%;
  --circle-size: 200px;
  --circle-radius: 100px;
  --circle-font: 16px;
  width: var(--circle-size);
  height: var(--circle-size);
  z-index: 2;
}
.main .main-visual .scroll_container .circle-text {
  position: absolute;
  inset: 0;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
  transform-origin: center;
  color: var(--text-sub);
}
.main .main-visual .scroll_container .circle-text span {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: var(--circle-font);
  transform-origin: 0 var(--circle-radius);
  white-space: pre;
}
.main .main-visual .scroll_container .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  -webkit-animation: scroll_01 3s infinite;
          animation: scroll_01 3s infinite;
}
.main .main-visual .scroll_container .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #ffffff;
  transform: translateX(-50%);
}
.main .main-visual .scroll_container .arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}
@media (max-width: 1080px) {
  .main .main-visual .mv-title h2 {
    font-size: 1.5rem;
    padding-bottom: 15px;
  }
  .main .main-visual .mv-title p {
    font-size: 1.2rem;
  }
  .main .main-visual .scroll_container {
    --circle-size: 160px;
    --circle-radius: 80px;
    --circle-font: 13px;
    bottom: 7%;
  }
}
@media (max-width: 770px) {
  .main .main-visual .mv-title h2 {
    color: var(--text-sub);
    padding-bottom: 10px;
    font-weight: 700;
  }
  .main .main-visual .mv-title p {
    color: var(--text-sub);
    font-size: 1rem;
    font-weight: 500;
  }
  .main .main-visual .scroll_container {
    --circle-size: 120px;
    --circle-radius: 60px;
    --circle-font: 11px;
    bottom: 5%;
    right: 5%;
  }
}
.main .main-contents {
  position: relative;
  z-index: 4;
  width: 100%;
  background-color: #F8F9FB;
  margin: 0;
}
.main .main-contents .concept {
  top: 0;
  width: 100%;
  background: #0a0a0a;
  padding: 100px 20px 0 20px;
  transform-origin: center top;
  margin-bottom: 10vh;
}
.main .main-contents .concept article {
  max-width: 582px;
  margin: 0 auto;
  color: var(--text-sub);
}
.main .main-contents .concept article h3 {
  font-weight: 400;
  font-size: 1rem;
  padding-bottom: 30px;
}
.main .main-contents .concept article h4 {
  font-weight: 800;
  font-size: 4rem;
  margin: 0 0 30px 0;
}
.main .main-contents .concept article h4 span {
  display: block;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.8rem;
  padding-top: 10px;
}
@media (max-width: 1080px) {
  .main .main-contents .concept {
    padding: 80px 20px 0 20px;
    min-height: auto;
    margin-bottom: 14px;
  }
  .main .main-contents .concept article {
    max-width: 550px;
  }
  .main .main-contents .concept article h4 {
    font-size: 3rem;
  }
  .main .main-contents .concept article h4 span {
    font-size: 1.9rem;
    line-height: 2.8rem;
  }
  .main .main-contents .concept article p {
    font-size: 0.9rem;
  }
}
@media (max-width: 1080px) {
  .main .main-contents .concept {
    padding: 80px 20px 40px;
    height: auto;
  }
  .main .main-contents .concept article {
    max-width: 330px;
  }
  .main .main-contents .concept article h4 {
    font-size: 2.3rem;
  }
  .main .main-contents .concept article h4 span {
    font-size: 1.7rem;
    line-height: 2.8rem;
  }
  .main .main-contents .concept article p {
    font-size: 0.87rem;
  }
}
@media (max-width: 770px) {
  .main .main-contents .concept {
    padding: 80px 20px 40px;
    height: auto;
  }
  .main .main-contents .concept article {
    max-width: 330px;
  }
  .main .main-contents .concept article h4 {
    font-size: 2.3rem;
  }
  .main .main-contents .concept article h4 span {
    font-size: 1.7rem;
    line-height: 2.8rem;
  }
  .main .main-contents .concept article p {
    font-size: 0.87rem;
  }
}
.main .main-contents .about {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 90px;
}
.main .main-contents .about .about-visual {
  width: 60%;
}
.main .main-contents .about .about-visual .about-visual__photo {
  position: relative;
  width: 100%;
  height: 400px;
}
.main .main-contents .about .about-visual .about-visual__photo img {
  height: 100%;
  border-radius: 0 10px 10px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .main-contents .about .about-visual .about-visual__photo .about-visual__deco {
  position: absolute;
  bottom: -50px;
  right: -50px;
  font-family: "Mrs Sheppards";
  color: rgb(253, 185, 11);
  letter-spacing: 0.5rem;
  font-size: 6.5rem;
  font-weight: 400;
  transform: rotate(-15deg);
}
.main .main-contents .about .about-text {
  width: 40%;
  color: var(--text-main);
  padding: 0 calc(var(--size) * 1.5 + 3.6vw);
}
.main .main-contents .about .about-text .about-heading h3 {
  display: inline-block;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 0 10px;
}
.main .main-contents .about .about-text .about-heading h4 {
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 3.5rem;
  margin: 40px 0;
}
.main .main-contents .about .about-text p {
  font-size: 1rem;
}
@media (max-width: 1080px) {
  .main .main-contents .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .main .main-contents .about .about-visual {
    margin-right: auto;
    width: 90%;
  }
  .main .main-contents .about .about-visual .about-visual__photo {
    max-height: 200px;
  }
  .main .main-contents .about .about-visual .about-visual__photo .about-visual__deco {
    font-size: 3.5rem;
    bottom: -30px;
    right: -30px;
  }
  .main .main-contents .about .about-text {
    display: flex;
    justify-content: center;
    text-align: left;
    width: 100%;
    padding: 50px 20px 0 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  .main .main-contents .about .about-text .about-heading {
    width: 30%;
  }
  .main .main-contents .about .about-text .about-heading h3 {
    font-size: 1.2rem;
  }
  .main .main-contents .about .about-text .about-heading h4 {
    font-size: 1.8rem;
    line-height: 2.3rem;
    letter-spacing: 0.1rem;
    margin: 15px 0;
  }
  .main .main-contents .about .about-text p {
    font-size: 1rem;
    width: 70%;
    line-height: 1.6rem;
  }
}
@media (max-width: 770px) {
  .main .main-contents .about .about-text {
    flex-direction: column;
  }
  .main .main-contents .about .about-text .about-heading {
    width: 100%;
  }
  .main .main-contents .about .about-text .about-heading h3 {
    font-size: 1.2rem;
  }
  .main .main-contents .about .about-text .about-heading h4 {
    font-size: 1.8rem;
    line-height: 2.3rem;
    margin: 15px 0;
  }
  .main .main-contents .about .about-text p {
    width: 100%;
    line-height: 1.6rem;
  }
}
.main .main-contents .business {
  position: relative;
  color: var(--text-main);
  width: 100%;
  padding: 60px 25px 100px 20px;
}
.main .main-contents .business .square__right {
  display: none;
}
.main .main-contents .business .business-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}
.main .main-contents .business .business-wrapper .business__title {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 20px;
  padding: 0 20px;
}
.main .main-contents .business .business-wrapper .business__title .sec-no {
  display: inline-block;
  vertical-align: middle;
}
.main .main-contents .business .business-wrapper .business__title h3 {
  font-size: 2rem;
  font-weight: 700;
  vertical-align: middle;
}
.main .main-contents .business .business-wrapper .business__title h4 {
  font-size: 1rem;
}
.main .main-contents .business .business-wrapper .business__contents {
  position: relative;
  color: var(--text-main);
  width: 100%;
  display: block;
}
.main .main-contents .business .business-wrapper .business__contents .business__slider {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main .main-contents .business .business-wrapper .business__contents li {
  padding: 0 10px;
  height: auto !important;
  display: block;
}
.main .main-contents .business .business-wrapper .business__contents li h5 {
  display: inline-block;
  color: var(--text-main);
  margin: 15px 0 0 0;
  font-size: 1rem;
  font-weight: 700;
}
.main .main-contents .business .business-wrapper .business__contents li p {
  display: inline-block;
  color: var(--text-main);
  margin: 15px 0 0 10px;
  font-size: 0.8rem;
}
.main .main-contents .business .business-wrapper .slick-slide {
  display: flex;
  height: auto;
}
.main .main-contents .business .business-wrapper .slick-track {
  display: flex;
  align-items: stretch;
}
.main .main-contents .business .business-wrapper .slick-list {
  overflow: hidden;
  margin-right: 100px;
}
@media (max-width: 1080px) {
  .main .main-contents .business .business-wrapper .slick-list {
    margin-right: 0;
  }
}
@media (max-width: 770px) {
  .main .main-contents .business .business-wrapper .slick-list {
    margin-right: 0;
  }
}
.main .main-contents .business .business-wrapper li > a {
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}
.main .main-contents .business .business-wrapper li > a img {
  width: 100%;
  height: 230px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .main-contents .business .business-wrapper .prev-arrow {
  display: none;
}
.main .main-contents .business .business-wrapper .next-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.main .main-contents .business .business-wrapper .next-arrow .dli-arrow-right {
  display: block;
  height: 2px;
  width: 20px;
  position: relative;
  background: #333;
  border-radius: 2px;
}
.main .main-contents .business .business-wrapper .next-arrow .dli-arrow-right::before {
  content: "";
  background-color: #333;
  height: 2px;
  width: 10px;
  transform: rotate(45deg);
  transform-origin: right center;
  position: absolute;
  top: 0.5px;
  right: 0;
  border-radius: 2px;
}
.main .main-contents .business .business-wrapper .next-arrow .dli-arrow-right::after {
  content: "";
  background-color: #333;
  height: 2px;
  width: 10px;
  transform: rotate(-45deg);
  transform-origin: right center;
  position: absolute;
  bottom: 0.5px;
  right: 0;
  border-radius: 2px;
}
@media (max-width: 1080px) {
  .main .main-contents .business .square__right {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    height: 80%;
    width: 20%;
    border-radius: 10px 0 0 10px;
    background-color: rgb(253, 185, 11);
    z-index: -1;
  }
  .main .main-contents .business .business-wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .main .main-contents .business .business-wrapper .next-arrow {
    width: 40px;
    height: 40px;
    right: 25px;
  }
  .main .main-contents .business .business-wrapper .next-arrow .dli-arrow-right {
    width: 15px;
    height: 2px;
  }
  .main .main-contents .business .business-wrapper .next-arrow .dli-arrow-right::before, .main .main-contents .business .business-wrapper .next-arrow .dli-arrow-right::after {
    width: 7px;
  }
  .main .main-contents .business .business-wrapper .business__contents li {
    padding: 0;
    margin-right: 10px;
    width: auto;
  }
  .main .main-contents .business .business-wrapper li > a {
    width: 100%;
    max-width: none;
  }
  .main .main-contents .business .business-wrapper li > a img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main .main-contents .business .business-wrapper h4 {
    display: none;
  }
  .main .main-contents .business .slick-list {
    margin: 0;
    overflow: hidden;
    padding-left: 10px;
  }
  .main .main-contents .business .business__contents li {
    padding: 0 10px;
    width: auto;
  }
  .main .main-contents .business .business__contents {
    width: auto !important;
  }
}
@media (max-width: 770px) {
  .main .main-contents .business {
    padding-top: 20px;
  }
  .main .main-contents .business .next-arrow {
    display: none;
  }
  .main .main-contents .business .slick-list {
    margin: 0;
    overflow: hidden;
  }
  .main .main-contents .business li > a {
    width: 100%;
  }
}
.main .main-contents .solutions {
  margin: 0 auto;
  color: var(--text-main);
  max-width: 1240px;
  width: 100%;
  padding: 0 20px 100px;
}
.main .main-contents .solutions .slts-heading {
  margin: 0 0 100px 0;
}
.main .main-contents .solutions .slts-heading .slts__deco-box {
  display: none;
}
.main .main-contents .solutions .slts-heading .sec-no_pc {
  display: inline-block;
  color: var(--text-main);
  vertical-align: top;
  margin: 20px 0 0 30px;
}
.main .main-contents .solutions .slts-heading .slts__description {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.87rem;
}
.main .main-contents .solutions .slts-heading .slts__description .slts__title {
  width: 70%;
  vertical-align: bottom;
}
.main .main-contents .solutions .slts-heading .slts__description .slts__title h3 {
  display: inline-block;
  font-size: 6rem;
  font-weight: 800;
  margin: 0;
  line-height: 6rem;
}
@media (max-width: 1080px) {
  .main .main-contents .solutions .slts-heading .slts__description .slts__title h3 {
    font-size: 5rem;
    line-height: 5rem;
  }
}
.main .main-contents .solutions .slts-heading .slts__description .slts__desc-text {
  width: 30%;
}
.main .main-contents .solutions .slts-heading .slts__description .slts__desc-text h4 {
  font-weight: 700;
  padding-bottom: 5px;
}
.main .main-contents .solutions .slts-heading .slts__description .slts__desc-text p {
  line-height: 1.5rem;
}
.main .main-contents .solutions .slts-contents {
  padding-bottom: 80px;
}
.main .main-contents .solutions .slts-contents ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main .main-contents .solutions .slts-contents ul li {
  position: relative;
  background-color: #dddddd;
  border-radius: 5px;
  min-height: 10em;
  height: auto;
  color: var(--text-main);
  overflow: hidden;
}
.main .main-contents .solutions .slts-contents ul li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fdb90b;
  height: 3px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transform: scaleX(0);
  transform-origin: left top;
}
.main .main-contents .solutions .slts-contents ul li:hover:not(.is-open)::before {
  transform: scaleX(1);
  transform-origin: left top;
  background-color: #fdb90b;
}
.main .main-contents .solutions .slts-contents ul li.is-open::before {
  transform: scaleX(1);
  transform-origin: right top;
  background-color: #333333;
}
.main .main-contents .solutions .slts-contents ul li.is-close::before {
  transform: scaleX(0);
  transform-origin: left top;
}
.main .main-contents .solutions .slts-contents ul li .slts_title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translate3d(0, 0, 0) skewY(0);
  pointer-events: none;
  transition: opacity 0.2s ease;
  opacity: 1;
  font-weight: 700;
}
.main .main-contents .solutions .slts-contents ul li .slts_title.is-active {
  -webkit-animation: titleAnime 0.3s forwards;
          animation: titleAnime 0.3s forwards;
  pointer-events: none;
  opacity: 0;
}
.main .main-contents .solutions .slts-contents ul li .slts_p {
  font-size: 0.8rem;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translate3d(0, 100%, 0) skewY(-20deg);
  pointer-events: none;
  transition: opacity 0.2s ease;
  opacity: 0;
  padding: 10px 25px;
}
.main .main-contents .solutions .slts-contents ul li .slts_p.is-active {
  -webkit-animation: pharaAnime 0.3s forwards;
          animation: pharaAnime 0.3s forwards;
  pointer-events: none;
  opacity: 1;
}
.main .main-contents .solutions .slts-contents ul li .slts_title.is-close {
  -webkit-animation: titleBackAnime 0.3s forwards;
          animation: titleBackAnime 0.3s forwards;
  opacity: 1;
}
.main .main-contents .solutions .slts-contents ul li .slts_p.is-close {
  -webkit-animation: pharaBackAnime 0.3s forwards;
          animation: pharaBackAnime 0.3s forwards;
  opacity: 0;
}
.main .main-contents .solutions .slts-contents ul li .slts_cross {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  /* 横線 */
  /* 縦線 */
}
.main .main-contents .solutions .slts-contents ul li .slts_cross span {
  display: inline-block;
  position: absolute;
  width: 60%;
  height: 2px;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  background-color: #333333;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.main .main-contents .solutions .slts-contents ul li .slts_cross span:nth-of-type(1) {
  transform: translate(-50%, -50%);
}
.main .main-contents .solutions .slts-contents ul li .slts_cross span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.main .main-contents .solutions .slts-contents li.is-open .slts_cross span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(180deg);
}
.main .main-contents .solutions .slts-contents li.is-open .slts_cross span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-360deg);
}
.main .main-contents .solutions .company-info {
  text-align: center;
}
.main .main-contents .solutions .company-info a {
  display: inline-block;
  padding: 13px 50px;
  font-weight: 500;
  color: #ffffff;
  background-color: #333333;
  position: relative;
  border: 2px solid #333333;
  border-radius: 50px;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main .main-contents .solutions .company-info a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.55, 1);
  z-index: -1;
}
.main .main-contents .solutions .company-info a:hover {
  color: var(--text-main);
  border-color: #333333;
}
.main .main-contents .solutions .company-info a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 1080px) {
  .main .main-contents .solutions .slts-heading .slts__deco-box {
    display: none;
  }
  .main .main-contents .solutions .slts-heading .slts__description .slts__desc-text .slts__title {
    padding-top: 40px;
    padding-bottom: 15px;
  }
  .main .main-contents .solutions .slts-heading .slts__description .slts__desc-text p {
    font-size: 0.8rem;
  }
  .main .main-contents .solutions .slts-contents ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .main .main-contents .solutions .slts-contents ul li {
    width: 100%;
  }
}
@media (max-width: 770px) {
  .main .main-contents .solutions {
    padding: 0 20px 80px 0;
  }
  .main .main-contents .solutions .slts-heading {
    position: relative;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .main .main-contents .solutions .slts-heading .slts__deco-box {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background-color: rgb(253, 185, 11);
    border-radius: 0 10px 10px 0;
    width: 60px;
    height: 77%;
  }
  .main .main-contents .solutions .slts-heading .slts__deco-box .sec-no_sp {
    display: inline-block;
    position: absolute;
    top: 50px;
    left: 20px;
  }
  .main .main-contents .solutions .slts-heading .slts__description {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.87rem;
    padding: 0 0 0 80px;
  }
  .main .main-contents .solutions .slts-heading .slts__description .slts__title {
    width: 100%;
    vertical-align: bottom;
    padding-top: 40px;
    padding-bottom: 15px;
  }
  .main .main-contents .solutions .slts-heading .slts__description .slts__title .sec-no_pc {
    display: none;
  }
  .main .main-contents .solutions .slts-heading .slts__description .slts__title h3 {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 2.5rem;
  }
  .main .main-contents .solutions .slts-heading .slts__description .slts__desc-text {
    width: 100%;
  }
  .main .main-contents .solutions .slts-heading .slts__description .slts__desc-text p {
    line-height: 1.5rem;
  }
  .main .main-contents .solutions .slts-contents ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-left: 20px;
  }
  .main .main-contents .solutions .slts-contents ul li {
    width: 100%;
  }
}
.main .main-contents .page-break {
  position: relative;
  height: 300px;
  vertical-align: bottom;
}
.main .main-contents .page-break .marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.main .main-contents .page-break .marquee .marquee-content {
  font-size: 13rem;
  color: var(--text-main);
  opacity: 0.2;
}
.main .main-contents .page-break canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 20;
}
.main .main-contents .section-contact {
  background-color: #222222;
  padding-right: 0;
  padding-left: 0;
  margin: 0;
}
.main .main-contents .section-contact .section-contact__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}
.main .main-contents .section-contact .section-contact__wrapper .tel {
  width: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-sub);
  text-align: center;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transition: 0.3s;
}
.main .main-contents .section-contact .section-contact__wrapper .tel a {
  display: inline-block;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}
.main .main-contents .section-contact .section-contact__wrapper .tel:hover {
  background-color: #ffffff;
  color: var(--text-main);
}
.main .main-contents .section-contact .section-contact__wrapper .form {
  width: 50%;
  color: var(--text-sub);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transition: 0.3s;
}
.main .main-contents .section-contact .section-contact__wrapper .form a {
  display: inline-block;
  text-decoration: none;
  transition: border-color 0.3s ease;
  padding: 20px;
}
.main .main-contents .section-contact .section-contact__wrapper .form:hover {
  background-color: #ffffff;
  color: var(--text-main);
}
@media (max-width: 1080px) {
  .main .main-contents .section-contact .section-contact__wrapper .tel {
    margin-right: 0;
  }
}
@media (max-width: 770px) {
  .main .main-contents .section-contact .section-contact__wrapper {
    flex-direction: column;
  }
  .main .main-contents .section-contact .section-contact__wrapper .tel,
.main .main-contents .section-contact .section-contact__wrapper .form {
    width: 100%;
    font-size: 1rem;
  }
  .main .main-contents .section-contact .section-contact__wrapper .tel {
    border-right: none;
  }
  .main .main-contents .section-contact .section-contact__wrapper .form {
    border-top: none;
  }
}
@-webkit-keyframes titleAnime {
  0% {
    transform: translate3d(0, 0, 0) skewY(0);
  }
  100% {
    transform: translate3d(0, -100%, 0) skewY(-20deg);
  }
}
@keyframes titleAnime {
  0% {
    transform: translate3d(0, 0, 0) skewY(0);
  }
  100% {
    transform: translate3d(0, -100%, 0) skewY(-20deg);
  }
}
@-webkit-keyframes pharaAnime {
  0% {
    transform: translate3d(0, 100%, 0) skewY(-20deg);
  }
  100% {
    transform: translate3d(0, 0, 0) skewY(0);
  }
}
@keyframes pharaAnime {
  0% {
    transform: translate3d(0, 100%, 0) skewY(-20deg);
  }
  100% {
    transform: translate3d(0, 0, 0) skewY(0);
  }
}
@-webkit-keyframes titleBackAnime {
  0% {
    transform: translate3d(0, -100%, 0) skewY(-20deg);
  }
  100% {
    transform: translate3d(0, 0, 0) skewY(0);
  }
}
@keyframes titleBackAnime {
  0% {
    transform: translate3d(0, -100%, 0) skewY(-20deg);
  }
  100% {
    transform: translate3d(0, 0, 0) skewY(0);
  }
}
@-webkit-keyframes pharaBackAnime {
  0% {
    transform: translate3d(0, 0, 0) skewY(0);
  }
  100% {
    transform: translate3d(0, 100%, 0) skewY(-20deg);
  }
}
@keyframes pharaBackAnime {
  0% {
    transform: translate3d(0, 0, 0) skewY(0);
  }
  100% {
    transform: translate3d(0, 100%, 0) skewY(-20deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}
@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}
@-webkit-keyframes scaleAnim {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.95);
  }
}
@keyframes scaleAnim {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.95);
  }
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.about {
  color: var(--text-main);
}
.about .about-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.about .about-inner .about-title {
  padding: 200px 0 100px 0;
}
.about .about-inner .about-title h2 {
  font-size: 5rem;
  font-weight: 700;
}
.about .about-inner .about-title h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .about .about-inner .about-title h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .about .about-inner .about-title h3 {
    font-size: 1rem;
    font-weight: 700;
  }
}
.about .about-inner .about-heading {
  padding: 50px 0;
  border-top: 1px solid #e3e3e3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about .about-inner .about-heading h4 {
  width: 25%;
  font-size: 1.4rem;
  font-weight: 700;
}
.about .about-inner .about-heading p {
  width: 60%;
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.35rem;
}
.about .about-inner .services {
  padding: 50px 0;
  border-top: 1px solid #e3e3e3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .about-inner .services .services-title {
  width: 25%;
}
.about .about-inner .services .services-title h4 {
  font-size: 1.4rem;
  font-weight: 700;
}
.about .about-inner .services .services-contents {
  width: 75%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.about .about-inner .services .services-contents .contents-item {
  width: 45%;
}
.about .about-inner .services .services-contents .contents-item dl dd {
  font-size: 1.1rem;
  font-weight: 700;
  padding-bottom: 30px;
}
.about .about-inner .services .services-contents .contents-item dl dt {
  font-size: 0.87rem;
}
.about .about-inner .services .services-contents .items-bottom {
  margin-top: 50px;
}
.about .about-inner .about-representative {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 0;
  border-top: 1px solid #e3e3e3;
}
.about .about-inner .about-representative .about-rep-title {
  width: 10%;
}
.about .about-inner .about-representative .about-rep-title span {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
}
.about .about-inner .about-representative .about-rep-title span::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #333333;
}
.about .about-inner .about-representative .about-rep-title h4 {
  writing-mode: vertical-rl;
  padding-top: 15px;
  font-size: 1.4rem;
  font-weight: 700;
}
.about .about-inner .about-representative .about-rep-photo {
  width: 40%;
  height: 400px;
}
.about .about-inner .about-representative .about-rep-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 41%;
     object-position: 50% 41%;
  border-radius: 10px;
  height: 100%;
}
.about .about-inner .about-representative .about-rep-text {
  width: 40%;
}
.about .about-inner .about-representative .about-rep-text dt {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 30px;
}
.about .about-inner .about-representative .about-rep-text .text-box {
  font-size: 0.87rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6rem;
}
.about .about-inner .about-representative .about-rep-text .job-title {
  margin: 30px 0 10px 0;
  text-align: right;
}
.about .about-inner .about-representative .about-rep-text .name {
  font-size: 1.3rem;
  text-align: right;
}
.about .company-info {
  background-color: #f6f6f6;
  width: 100%;
  padding: 80px 40px;
}
.about .company-info h4 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  padding-bottom: 10px;
}
.about .company-info h5 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: 40px;
}
.about .company-info .company-detail {
  background-color: #ffffff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1240px;
  margin: 0 auto;
}
.about .company-info .company-detail dl {
  padding: 30px 0;
  border: 1px solid #f6f6f6;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.87rem;
}
.about .company-info .company-detail dl dt {
  font-weight: 700;
  width: 30%;
  padding-left: 30px;
  padding-right: 30px;
}
.about .company-info .company-detail dl dd {
  width: 70%;
  padding-right: 30px;
}

@media (max-width: 1080px) {
  .about .about-inner .about-heading {
    flex-direction: column;
  }
  .about .about-inner .about-heading h4 {
    width: 100%;
    padding-bottom: 20px;
  }
  .about .about-inner .about-heading p {
    width: 100%;
  }
  .about .about-inner .services {
    flex-direction: column;
    align-items: flex-start;
  }
  .about .about-inner .services .services-title {
    padding-bottom: 20px;
  }
  .about .about-inner .services .services-contents {
    flex-direction: column;
    width: 100%;
  }
  .about .about-inner .services .services-contents .contents-item {
    width: 100%;
  }
  .about .about-inner .services .services-contents .contents-item dl {
    margin-bottom: 35px;
  }
  .about .about-inner .services .services-contents .contents-item dl dd {
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 5px;
  }
  .about .about-inner .services .services-contents .contents-item dl dt {
    font-size: 0.87rem;
  }
  .about .about-inner .services .services-contents .items-bottom {
    margin-top: 0;
  }
  .about .about-inner .about-representative {
    flex-direction: column;
  }
  .about .about-inner .about-representative .about-rep-title {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: baseline;
    padding-bottom: 20px;
  }
  .about .about-inner .about-representative .about-rep-title span {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
  }
  .about .about-inner .about-representative .about-rep-title span::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #333333;
  }
  .about .about-inner .about-representative .about-rep-title h4 {
    writing-mode: horizontal-tb;
    padding: 15px 0 0 20px;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .about .about-inner .about-representative .about-rep-photo {
    width: 100%;
    margin-bottom: 30px;
  }
  .about .about-inner .about-representative .about-rep-photo img {
    border-radius: 10px;
  }
  .about .about-inner .about-representative .about-rep-text {
    width: 100%;
  }
  .about .about-inner .about-representative .about-rep-text dt {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  .about .about-inner .about-representative .about-rep-text .job-title {
    margin: 30px 0 10px 0;
  }
  .about .about-inner .about-representative .about-rep-text .name {
    font-size: 1.1rem;
  }
  .about .company-info .company-detail {
    grid-template-columns: 1fr;
  }
  .about .company-info .company-detail dl {
    flex-direction: column;
    align-items: flex-start;
  }
  .about .company-info .company-detail dl dt {
    width: 100%;
    padding-bottom: 10px;
  }
  .about .company-info .company-detail dl dd {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 770px) {
  .about .about-inner {
    padding: 0 25px;
  }
  .about .company-info {
    padding-left: 25px;
    padding-right: 25px;
  }
  .about .company-info .company-detail dl dt {
    font-size: 0.8rem;
    padding-left: 15px;
  }
  .about .company-info .company-detail dl dd {
    font-size: 0.8rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.news-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.news {
  color: var(--text-main);
  padding: 0 40px 100px 40px;
}
.news .news-title {
  padding: 200px 0 100px 0;
}
.news .news-title h2 {
  font-size: 5rem;
  font-weight: 700;
}
.news .news-title h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .news .news-title h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .news .news-title h3 {
    font-size: 1rem;
    font-weight: 700;
  }
}
.news .news-contents ol li {
  border-top: 1px solid #e3e3e3;
  padding: 40px 0;
}
.news .news-contents ol li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news .news-contents ol li a .news-thumbnail {
  width: 15%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-contents ol li a .news-category {
  width: 15%;
  font-size: 0.75rem;
  font-weight: 600;
  vertical-align: middle;
}
.news .news-contents ol li a .news-category span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 35px;
  border-radius: 20px;
  color: #ffffff;
  background-color: #333333;
}
.news .news-contents ol li a .news-items {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news .news-contents ol li a .news-items .item {
  width: 80%;
}
.news .news-contents ol li a .news-items .item time {
  display: block;
  font-size: 0.87rem;
  padding-bottom: 10px;
}
.news .news-contents ol li a .news-items .item h4 {
  font-size: 1rem;
  font-weight: 600;
}
.news .news-contents ol li a .news-items .news-button {
  width: 20%;
  margin: 0 auto;
}
.news .news-contents ol li a .news-items .news-button .btn-circle {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: relative;
  background-color: #333333;
  transition: all ease 0.5s;
  border: 2px solid #333333;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 770px) {
  .news .news-contents ol li a .news-items .news-button .btn-circle {
    width: 32px;
    height: 32px;
  }
}
.news .news-contents ol li a .news-items .news-button .btn-circle .arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 2px;
  border-radius: 1px;
  background-color: #ffffff;
  border-color: #333333;
  transition: background-color ease 0.5s;
}
@media (max-width: 770px) {
  .news .news-contents ol li a .news-items .news-button .btn-circle .arrow {
    width: 12px;
  }
}
.news .news-contents ol li a .news-items .news-button .btn-circle .arrow::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 10px;
  transform: rotate(-45deg);
  width: 7px;
  height: 2px;
  border-radius: 1px;
  background-color: #ffffff;
  transition: background-color ease 0.5s;
}
@media (max-width: 770px) {
  .news .news-contents ol li a .news-items .news-button .btn-circle .arrow::before {
    width: 5px;
    left: 8px;
    top: 1px;
  }
}
.news .news-contents ol li a .news-items .news-button .btn-circle .arrow::after {
  position: absolute;
  content: "";
  bottom: 2px;
  left: 10px;
  transform: rotate(45deg);
  width: 7px;
  height: 2px;
  border-radius: 1px;
  background-color: #ffffff;
  transition: all ease 0.5s;
}
@media (max-width: 770px) {
  .news .news-contents ol li a .news-items .news-button .btn-circle .arrow::after {
    width: 5px;
    left: 8px;
    bottom: 1px;
  }
}
.news .news-contents ol li a:hover .news-button .btn-circle {
  background-color: #ffffff;
  transform: translateX(4px);
}
.news .news-contents ol li a:hover .news-button .btn-circle .arrow {
  background-color: #333333;
}
.news .news-contents ol li a:hover .news-button .btn-circle .arrow::before, .news .news-contents ol li a:hover .news-button .btn-circle .arrow::after {
  background-color: #333333;
}
@media (max-width: 770px) {
  .news .news-contents ol li a {
    flex-direction: column;
    align-items: flex-start;
  }
  .news .news-contents ol li a .news-thumbnail {
    width: 100%;
    margin-bottom: 10px;
  }
  .news .news-contents ol li a .news-category {
    margin-right: auto;
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  .news .news-contents ol li a .news-category span {
    height: 30px;
    width: 95px;
  }
  .news .news-contents ol li a .news-items {
    width: 100%;
  }
  .news .news-contents ol li a .news-items .item h4 {
    font-size: 0.87rem;
  }
}

.news-post .news-post__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1080px) {
  .news-post .news-post__inner {
    padding: 0 25px;
  }
}
.news-post .news-post__inner .news-title {
  padding: 200px 0 100px 0;
}
.news-post .news-post__inner .news-title h2 {
  font-size: 5rem;
  font-weight: 700;
}
.news-post .news-post__inner .news-title h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .news-post .news-post__inner .news-title h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .news-post .news-post__inner .news-title h3 {
    font-size: 1rem;
    font-weight: 700;
  }
}
.news-post .news-post__inner .post-contents .post-contents__inner {
  max-width: 900px;
  margin: 0 auto 100px auto;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-date {
  text-align: right;
  margin-bottom: 30px;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-date span {
  display: inline-block;
  padding-right: 15px;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-thumbnail {
  width: 90%;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-text {
  margin-bottom: 100px;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-text h4 {
  padding-bottom: 40px;
  font-size: 1.6rem;
  font-weight: 700;
}
.news-post .news-post__inner .post-contents .post-contents__inner .post-text .text-body {
  line-height: 1.75rem;
  font-size: 1.1rem;
}
.news-post .news-post__inner .post-contents .post-contents__inner .home-btn {
  display: block;
  width: 150px;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  background-color: var(--text-main);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 5px;
}
.news-post .news-post__inner .post-contents .post-contents__inner .home-btn a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1080px) {
  .news-post .news-post__inner .post-contents .post-contents__inner {
    margin-bottom: 70px;
  }
  .news-post .news-post__inner .post-contents .post-contents__inner .post-date time {
    font-size: 0.9rem;
  }
  .news-post .news-post__inner .post-contents .post-contents__inner .post-thumbnail {
    width: 90%;
  }
  .news-post .news-post__inner .post-contents .post-contents__inner .post-text h4 {
    font-size: 1.3rem;
  }
}

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.contact {
  color: var(--text-main);
  padding: 0 40px;
}
.contact .contact-title {
  padding: 200px 0 100px 0;
}
.contact .contact-title h2 {
  font-size: 5rem;
  font-weight: 700;
}
.contact .contact-title h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .contact .contact-title h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .contact .contact-title h3 {
    font-size: 1rem;
    font-weight: 700;
  }
}

form {
  display: block;
  max-width: 800px;
  margin: 0 auto 200px auto;
}
form dl .inq-contents {
  display: flex;
  padding-bottom: 60px;
  vertical-align: middle;
}
form dl .inq-contents dt {
  width: 30%;
  height: auto;
  font-weight: 500;
}
form dl .inq-contents dd {
  width: 70%;
  line-height: 1.8rem;
  height: auto;
}
form dl .inq-contents dd label {
  margin-right: 25px;
}
form dl .purpose-wrapper label {
  display: inline-block;
  align-items: center;
  padding: 4px 12px 4px 4px;
  cursor: pointer;
}
form dl .purpose-wrapper input[type=radio] {
  margin-right: 8px;
}
@media (max-width: 1080px) {
  form dl {
    max-width: 550px;
    margin: 0 auto;
  }
  form dl .inq-contents {
    flex-direction: column;
  }
  form dl .inq-contents dt {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  form dl .inq-contents dd {
    width: 100%;
    height: auto;
  }
  form dl .inq-contents dd label {
    display: block;
    margin-bottom: 5px;
  }
}

input[type=radio],
textarea,
input[type=text],
input[type=email],
input[type=tel] {
  /* Re-enable the native appearance */
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  /* Add a specific border and color to make them visible */
  border: 1px solid #333333;
  background-color: #ffffff;
  width: 1em;
  height: 1em;
  /* Add some spacing for better layout */
}

textarea {
  width: 100%;
  height: 200px;
  font-size: 0.8rem;
  line-height: 1.5em;
  border-radius: 3px;
  resize: none;
  padding: 5px 10px;
}
textarea::-moz-placeholder {
  color: #333333;
  opacity: 0.3;
}
textarea::placeholder {
  color: #333333;
  opacity: 0.3;
}

input[text=radio] {
  margin-right: 0.5em;
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  height: 40px;
  font-size: 0.8rem;
  border-radius: 3px;
  padding: 0 10px;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  color: var(--text-main);
  opacity: 0.3;
  letter-spacing: 0.1rem;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  color: var(--text-main);
  opacity: 0.3;
  letter-spacing: 0.1rem;
}
@media (max-width: 1080px) {
  input[type=text],
input[type=email],
input[type=tel] {
    height: 30px;
  }
}

.privacy {
  vertical-align: middle;
  margin-bottom: 80px;
}
.privacy label input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 1px solid #333333;
  background-color: #ffffff;
  border-radius: 3px;
  font-size: 0.7rem;
  width: 1.3em;
  height: 1.3em;
  margin-right: 10px;
}
.privacy label a {
  text-decoration: underline;
}
.privacy label a:visited {
  color: var(--text-main);
}
@media (max-width: 1080px) {
  .privacy {
    max-width: 550px;
    margin: 0 auto 90px auto;
  }
}

.submit-btn {
  text-align: center;
  margin: 0 auto 20px auto;
  width: 150px;
  height: 50px;
  text-align: center;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  background-color: #333333;
  padding: 10px 40px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.5s;
  color: #ffffff;
  cursor: pointer;
}
.submit-btn input[type=submit] {
  letter-spacing: 1.7rem;
  margin-right: -1.7rem;
}
.submit-btn:hover {
  background-color: #333333;
  color: #ffffff;
}

.contact {
  color: var(--text-main);
  padding: 60px 40px 100px 40px;
}
.contact .confirm-message {
  padding: 40px auto;
}
.contact .confirm-message p {
  padding-bottom: 60px;
  font-size: 0.9rem;
}
@media (max-width: 770px) {
  .contact .confirm-message p {
    font-size: 0.87rem;
  }
}
@media (max-width: 770px) {
  .contact .confirm-contents {
    font-size: 0.87rem;
  }
}

.contact {
  max-width: 1140px;
  margin: 0 auto;
  color: var(--text-main);
}
.contact .thanks-message .message-box {
  text-align: left;
}
.contact .thanks-message .message-box h4 {
  font-weight: 700;
  font-size: 1.3rem;
  padding-bottom: 40px;
}
.contact .thanks-message .message-box p {
  padding-bottom: 5px;
}
.contact .thanks-message .message-box p:last-of-type {
  margin-bottom: 40px;
}
.contact .thanks-message .back-btn {
  text-align: center;
}
.contact .thanks-message .back-btn a {
  display: inline-block;
  text-align: center;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  background-color: #333333;
  padding: 10px 40px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.2rem;
  transition: all 0.5s;
  color: #ffffff;
}
.contact .thanks-message .back-btn a:hover {
  background-color: #333333;
  color: #ffffff;
}
@media (max-width: 1080px) {
  .contact .thanks-message .message-box {
    text-align: left;
  }
  .contact .thanks-message .message-box h4 {
    font-size: 1.1rem;
    padding-bottom: 30px;
  }
  .contact .thanks-message .message-box p {
    font-size: 0.87rem;
    padding-bottom: 3px;
  }
  .contact .thanks-message .message-box p:last-of-type {
    margin-bottom: 40px;
  }
  .contact .thanks-message .back-btn a {
    display: inline-block;
    text-align: center;
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
    background-color: #333333;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.2rem;
    text-indent: 1rem;
    transition: all 0.5s;
    color: #ffffff;
  }
  .contact .thanks-message .back-btn a:hover {
    background-color: #333333;
    color: #ffffff;
  }
}
@media (max-width: 770px) {
  .contact .thanks-message .message-box h4 {
    font-size: 0.9rem;
    padding-bottom: 30px;
  }
  .contact .thanks-message .message-box p {
    font-size: 0.87rem;
    padding-bottom: 3px;
    line-height: 1.45rem;
  }
  .contact .thanks-message .message-box p:last-of-type {
    margin-bottom: 40px;
  }
}

/* =========================
   Splash 全体
========================= */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg-sub, #070707);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

/* 中央ラッパー */
#splash_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* =========================
   プログレスバー
========================= */
#splash_progress {
  position: relative;
  width: 100vw;
  height: 2px;
  overflow: hidden;
}

/* 左右共通 */
.progress {
  position: absolute;
  top: 0;
  width: 50%;
  height: 4px;
}

/* 左：中央 → 左 */
.progress.left {
  right: 50%;
  transform: scaleX(-1);
}

/* 右：中央 → 右 */
.progress.right {
  left: 50%;
}

/* SVG はみ出し防止 */
.progress svg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* =========================
   テキスト
========================= */
#splash_text {
  width: 40%;
  margin-top: 24px;
  text-align: left;
  margin-left: 30vw;
}
#splash_text h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0.4rem 0;
  line-height: 1.4;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 770px) {
  #splash_text {
    width: 70%;
  }
}
footer {
  color: #ffffff;
  background-color: #222222;
}

.footer {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 20;
  padding: 80px 20px 40px;
}
.footer .footer__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .ft__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 50px 0;
}
.footer .ft__info h1 {
  margin: 0;
  width: 150px;
  height: auto;
}
@media (max-width: 770px) {
  .footer .ft__info h1 {
    width: 95px;
  }
}
.footer .ft__info img {
  width: 100%;
  height: auto;
}
.footer nav {
  margin-bottom: 80px;
}
.footer nav ul {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer nav ul li a {
  font-size: 0.87rem;
  font-weight: 700;
}
@media (max-width: 770px) {
  .footer nav ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}
.footer .ft__contact-info {
  font-size: 0.87rem;
}
.footer .ft__contact-info p {
  margin: 5px 0 0;
}
.footer small {
  display: block;
  text-align: center;
  font-size: 0.75rem;
}

* {
  box-sizing: border-box;
  /* 幅計算を安定させる */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* =========================
  共通 CSS変数 :root
========================= */
:root {
  /* Base colors */
  --bg-main: #ffffff;
  --bg-sub: #070707;
  --text-main: #222222;
  /* 本文の基本文字色 */
  --text-sub: #ffffff;
  /* 白文字用 */
  /* Header */
  --header-bg: transparent;
  --header-border: transparent;
  --header-logo-filter: brightness(0) invert(1);
  /* Navigation */
  --nav-hover: #333333;
  /* SP menu */
  --menu-bg: #090909;
  --menu-text: var(--header-text);
  /* Links / Accent */
  --link-color: var(--text-main);
  --link-hover: #333333;
  /* トップページボタン初期値 */
  --top-btn-bg: #ffffff;
  --top-btn-text: #000000;
  --top-btn-border: #ffffff;
  --top-btn-hover-bg: #000000;
  --top-btn-hover-text: #ffffff;
  --top-btn-hover-border: #ffffff;
  /* その他ページボタン初期値 */
  --other-btn-bg: #000000;
  --other-btn-text: #ffffff;
  --other-btn-border: #000000;
  --other-btn-hover-bg: #ffffff;
  --other-btn-hover-text: #000000;
  --other-btn-hover-border: #000000;
  --size: 13px;
  --overlay-opacity: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* =========================
     Base colors
  ========================= */
  --bg-main: #ffffff;
  --text-main: #333333;
  --text-sub: #ffffff;
  /* =========================
     Header
  ========================= */
  --header-bg: transparent;
  --header-text: #ffffff;
  --header-border: transparent;
  /* ロゴ（画像1枚で切り替える用） */
  --header-logo-filter: brightness(0) invert(1);
  /* =========================
     Navigation
  ========================= */
  --nav-text: var(--header-text);
  --nav-hover: #333333;
  /* =========================
     Links / accent
  ========================= */
  --link-color: var(--text-main);
  --link-hover: #333333;
}

.home {
  --header-text: #ffffff;
  --nav-text: #ffffff;
  --nav-hover: #ffffff;
}

.home.is-scrolled {
  --header-text: #333333;
  --nav-text: #333333;
  --nav-hover: #333333;
}

body.is-menu-open {
  --header-text: #ffffff;
  --nav-hover: #cccccc;
}

/* news, about, contact ページ */
body.page-dark {
  --header-text: #333333;
  --nav-text: #333333;
  --nav-line: #333333;
  --nav-bg: #ffffff;
  --nav-hover: #333333;
}

img {
  width: 100%;
}

p {
  line-height: 1.75rem;
}

a {
  text-decoration: none;
}

a:visited {
  color: inherit;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

.sec-no {
  display: inline-block;
  position: relative;
  font-weight: 700;
  color: #333333;
}
.sec-no::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 17px;
  background-color: #333333;
}

/* =========================
  ページごとの上書き body
========================= */
/* トップページ */
body.home {
  /* Header / Nav */
  --header-text: var(--text-sub);
  --nav-text: var(--header-text);
  --nav-hover: rgba(255, 255, 255, 0.7);
  /* Buttons */
  --btn-bg: var(--top-btn-bg);
  --btn-text: var(--top-btn-text);
  --btn-border: var(--top-btn-border);
  --btn-hover-bg: var(--top-btn-hover-bg);
  --btn-hover-text: var(--top-btn-hover-text);
  --btn-hover-border: var(--top-btn-hover-border);
  --content-padding: 60px;
  background-color: #0a0a0a;
}
body.home.is-scrolled {
  --header-text: #333333;
  --nav-text: #333333;
  --nav-hover: #333333;
}

/* news / about / contact ページ（ダークヘッダー） */
body.page-dark {
  /* Header / Nav */
  --header-text: #333333;
  --nav-text: var(--header-text);
  --nav-hover: #333333;
  /* Buttons */
  --btn-bg: var(--other-btn-bg);
  --btn-text: var(--other-btn-text);
  --btn-border: var(--other-btn-border);
  --btn-hover-bg: var(--other-btn-hover-bg);
  --btn-hover-text: var(--other-btn-hover-text);
  --btn-hover-border: var(--other-btn-hover-border);
}
body.page-dark.is-menu-open {
  --nav-text: var(--text-sub);
  /* SPメニュー開いたときは白 */
}

.marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 50px;
}
.marquee .marquee-area {
  display: flex;
  -webkit-animation: loop-slide 120s infinite linear 1s both;
          animation: loop-slide 120s infinite linear 1s both;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateX(0);
}
.marquee .marquee-area .marquee-content {
  font-size: 10rem;
  font-weight: 800;
  opacity: 0.2;
  white-space: nowrap;
  color: #999999;
}
@media (max-width: 770px) {
  .marquee {
    margin-top: 30px;
  }
  .marquee .marquee-area .marquee-content {
    font-size: 5rem;
    color: #999999;
  }
}

.main-visual,
.main-contents,
footer {
  max-width: 100%;
  /* 画面幅を超えないようにする */
  overflow-x: hidden;
  /* 必要に応じて横スクロールを防ぐ */
}

#bg-effect {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
/*# sourceMappingURL=style.css.map */