@charset "UTF-8";
.Container01 {
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .Container01 {
    max-width: 85%;
  }
}

h1 {
  font-family: Montserrat;
  color: #232323;
}

h2, p, li {
  font-family: "Noto Sans JP";
  color: #232323;
}

a {
  text-decoration: none;
  color: inherit;
  color: #232323;
}

li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block !important;
  }
}

header {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 99;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.header_inner h2 {
  color: #fff;
  font-size: 40px;
  letter-spacing: 2.5px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .header_inner h2 {
    font-size: 16px;
  }
}
.header_inner .header_menu nav ul {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .header_inner .header_menu nav ul {
    gap: 6px;
    padding-left: 0;
  }
}
.header_inner .header_menu nav ul a {
  text-decoration: none;
  list-style: none;
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(0.75rem, 0.4459rem + 1.2973vw, 1.5rem);
  letter-spacing: 1.92px;
  font-weight: 700;
  transition: 0.3s all;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}
.header_inner .header_menu nav ul a:hover {
  opacity: 0.8;
}
.header_inner .header_menu nav ul a li {
  color: #fff;
}

.FV {
  position: relative;
  overflow: hidden;
  padding: 316px 0;
}
@media screen and (max-width: 767px) {
  .FV {
    padding: 80px 0;
  }
}
.FV::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(66, 66, 66, 0.4), rgba(66, 66, 66, 0.4)), url("../img/FV.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.FV .FV_inner {
  position: relative;
  z-index: 1;
}
.FV .FV_inner h1 {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: clamp(2.5rem, 1.6892rem + 3.4595vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 5.04px;
}
.FV .FV_inner h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: white;
  margin-top: 10px;
}
.FV .FV_inner h3 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.7973rem + 0.8649vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 2.4px;
  margin-top: 32px;
  line-height: 150%;
}

.FV_top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(66, 66, 66, 0.4), rgba(66, 66, 66, 0.4)), url(../img/FV.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: scale(1);
  opacity: 0;
  -webkit-animation: zoomFade 40s ease-in-out infinite;
          animation: zoomFade 40s ease-in-out infinite;
}
@-webkit-keyframes zoomFade {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  90% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes zoomFade {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  90% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.About {
  padding: 174px 0 220px 0;
}
@media screen and (max-width: 767px) {
  .About {
    padding: 80px 0;
  }
}
.About .About_inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .About .About_inner {
    flex-direction: column;
    gap: 24px;
  }
}
.About .About_inner .About_left h1 {
  color: #232323;
  font-family: Montserrat;
  font-size: clamp(2.5rem, 0.9797rem + 6.4865vw, 6.25rem);
  font-weight: 600;
  letter-spacing: 7px;
}
.About .About_inner .About_right h2 {
  color: #232323;
  font-family: "Noto Sans JP";
  font-size: clamp(2rem, 1.7973rem + 0.8649vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 2.8px;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .About .About_inner .About_right h2 {
    margin-bottom: 24px;
  }
}
.About .About_inner .About_right p {
  color: #232323;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.6px;
}

.Business {
  position: relative;
  overflow: hidden;
  padding: 140px 0 207px 0;
}
@media screen and (max-width: 767px) {
  .Business {
    padding: 72px 0;
  }
}
.Business::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 66, 66, 0.6);
  z-index: 2;
}
.Business .Business_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -10;
}
.Business .Business_inner {
  z-index: 1;
  display: flex;
  gap: 56px;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .Business .Business_inner {
    flex-direction: column;
    gap: 40px;
  }
}
.Business .Business_inner .Business_left {
  width: 40vw;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  padding: 60px 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ← 上揃え */
}
@media screen and (max-width: 767px) {
  .Business .Business_inner .Business_left {
    padding: 0;
    width: 100%;
    height: auto;
  }
}
.Business .Business_inner .Business_left h1 {
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(2.5rem, 0.9797rem + 6.4865vw, 6.25rem);
  font-weight: 600;
  letter-spacing: 7px;
  letter-spacing: 2.8px;
}
.Business .Business_inner .Business_right {
  width: 60vw;
  height: 100vh;
  overflow-y: scroll;
  padding: 60px 32px;
}
@media screen and (max-width: 767px) {
  .Business .Business_inner .Business_right {
    width: 100%;
    padding: 0;
  }
}
.Business .Business_inner .Business_right h2 {
  color: #FFF;
  font-size: clamp(2rem, 1.7973rem + 0.8649vw, 2.5rem);
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 2.8px;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .Business .Business_inner .Business_right h2 {
    margin-bottom: 24px;
  }
}
.Business .Business_inner .Business_right p {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.12px;
}
.Business .Business_inner .Business_right .Business_area {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.Business .Business_inner .Business_right .Business_area .Business_box {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 32px 24px 24px 32px;
  display: flex;
  gap: 80px;
  align-items: center;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .Business .Business_inner .Business_right .Business_area .Business_box {
    padding: 24px;
    flex-direction: column;
    gap: 8px;
  }
}
.Business .Business_inner .Business_right .Business_area .Business_box .Business_box_left h3 {
  color: #FFF;
  font-size: clamp(2.5rem, 2.0946rem + 1.7297vw, 3.5rem);
  font-family: Montserrat;
  font-weight: 600;
  letter-spacing: 2.8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .Business .Business_inner .Business_right .Business_area .Business_box .Business_box_left h3 {
    font-size: 28px;
  }
}
.Business .Business_inner .Business_right .Business_area .Business_box .Business_box_left p {
  font-size: clamp(0.875rem, 0.8243rem + 0.2162vw, 1rem);
}
.Business .Business_inner .Business_right .Business_area .Business_box .Business_box_right span {
  color: #fff;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .Business .Business_inner .Business_right .Business_area .Business_box .Business_box_right span {
    display: inline-block; /* 回転のために必要 */
    transform: rotate(90deg);
  }
}
.Business .Business_inner .Business_right .Business_area .Business_box:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.Company {
  background-color: #000;
  padding: 40px 20px;
}
.Company .Company_inner {
  padding: 72px 0 99px 0;
  background-image: linear-gradient(rgba(66, 66, 66, 0.6), rgba(66, 66, 66, 0.6)), url(../img/Contact.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .Company .Company_inner {
    padding: 32px 0;
    max-width: 100%;
  }
}
.Company .Company_inner h2 {
  font-size: clamp(3rem, 1.6824rem + 5.6216vw, 6.25rem);
  text-shadow: 0 0 10.7px rgba(186, 186, 186, 0.25);
  color: #FFF;
  font-family: Montserrat;
  font-weight: 600;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: 24px;
}
.Company .Company_inner h3 {
  color: #FFF;
  text-shadow: 0 0 58.2px rgba(98, 98, 98, 0.25);
  font-size: clamp(1.5rem, 1.2973rem + 0.8649vw, 2rem);
  text-align: center;
  font-weight: 600;
  letter-spacing: 2.24px;
  margin-bottom: 40px;
}
.Company .Company_inner p {
  color: #FFF;
  text-shadow: 0 0 15.6px rgba(136, 136, 136, 0.25);
  font-size: clamp(0.875rem, 0.8243rem + 0.2162vw, 1rem);
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.12px;
  text-align: center;
}
.Company .Company_inner .Company_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.Company .Company_inner .Company_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 455px;
  height: 100px;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 0.7973rem + 0.8649vw, 1.5rem);
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s all;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .Company .Company_inner .Company_btn a {
    width: 226px;
    height: 62px;
  }
}
.Company .Company_inner .Company_btn a::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 66px;
  height: 1.5px;
  background-color: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .Company .Company_inner .Company_btn a::after {
    width: 40px;
    right: -20px;
  }
}
.Company .Company_inner .Company_btn a:hover {
  opacity: 0.8;
}

.Contact {
  position: relative;
  overflow: hidden;
  height: auto;
  padding: 60px 0 24px 0;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .Contact {
    padding: 40px 0 24px 0;
  }
}
.Contact footer {
  position: relative;
  z-index: 99;
  text-align: center;
  padding-top: 187px;
}
@media screen and (max-width: 767px) {
  .Contact footer {
    padding-top: 32px;
  }
}
.Contact footer .header_inner {
  justify-content: center;
  gap: 32px;
  padding-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .Contact footer .header_inner {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .Contact footer .header_inner h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .Contact footer .header_inner nav ul {
    flex-direction: column;
    padding-left: 0;
  }
  .Contact footer .header_inner nav ul a {
    color: #fff;
  }
  .Contact footer .header_inner nav ul a li {
    font-size: 24px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .Contact footer .header_inner {
    flex-direction: column;
  }
}
.Contact footer small {
  display: inline-block;
  text-align: center;
}
.Contact .Contact_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.Contact .Contact_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 12, 19, 0.35); /* ご希望の暗さ */
  z-index: 2;
}
.Contact .Contact_inner {
  position: relative;
  z-index: 99;
  text-align: center;
}
.Contact .Contact_inner p {
  font-size: clamp(0.875rem, 0.8243rem + 0.2162vw, 1rem);
  line-height: 200%;
  letter-spacing: 1.12px;
  margin-bottom: 56px;
  font-weight: 700;
  color: #fff;
}
.Contact .Contact_inner .Contact_btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid #fff;
  color: #fff;
  width: 50%;
  font-size: clamp(2rem, 1.1892rem + 3.4595vw, 4rem);
  letter-spacing: 3.2px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 100px;
  transition: 0.3s all;
  padding: 16px 40px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Contact .Contact_inner .Contact_btn a {
    width: 100%;
    padding: 24px;
    text-align: center;
    gap: 22px;
  }
}
.Contact .Contact_inner .Contact_btn a:hover {
  opacity: 0.8;
}
.Contact .Contact_inner .Contact_btn a span {
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .Contact .Contact_inner .Contact_btn a span {
    margin-left: 0px;
  }
}

.Page_FV {
  padding: 161px 0 59px 0;
}
@media screen and (max-width: 767px) {
  .Page_FV {
    padding: 116px 0 59px 0;
  }
}
.Page_FV .FV_inner h1 {
  text-align: left;
}
.Page_FV .FV_inner h1::after {
  display: none;
}
.Page_FV .FV_inner h3 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .Page_FV .FV_inner h3 {
    margin-top: 8px;
  }
}
@-webkit-keyframes slideInExact {
  0% {
    transform: translateY(120%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInExact {
  0% {
    transform: translateY(120%);
  }
  100% {
    transform: translateY(0);
  }
}
.Page_FV .FV_inner {
  position: relative;
  overflow: hidden;
}
.Page_FV .FV_inner h1,
.Page_FV .FV_inner h3 {
  display: inline-block;
  transform: translateY(120%);
  -webkit-animation: slideInExact 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: slideInExact 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.Page_FV .FV_inner h1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.Page_FV .FV_inner h3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.Business_01 {
  position: relative;
  overflow: hidden;
  padding: 56px 0 120px 0;
}
@media screen and (max-width: 767px) {
  .Business_01 {
    padding: 96px 0;
  }
}
.Business_01 .Business_01_bgvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scaleX(-1);
  z-index: -1;
  opacity: 0.6;
}
.Business_01 .Business_01_inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
@-webkit-keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.Business_01 .Business_01_inner .Business_01_title {
  margin-bottom: 80px;
}
.Business_01 .Business_01_inner .Business_01_title h2 {
  font-size: clamp(2rem, 1.5946rem + 1.7297vw, 3rem);
  color: #232323;
  font-weight: 700;
  letter-spacing: 3.36px;
  text-align: left;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-animation: fadeInBlur 1s ease-out forwards;
          animation: fadeInBlur 1s ease-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.Business_01 .Business_01_inner .Business_01_title p {
  font-size: clamp(1.125rem, 1.0743rem + 0.2162vw, 1.25rem);
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.4px;
  text-align: left;
  opacity: 0;
  -webkit-animation: fadeInBlur 1s ease-out forwards;
          animation: fadeInBlur 1s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.Business_01 .Business_01_inner img {
  width: 680px;
  opacity: 0;
  -webkit-animation: slideUpFade 1.2s ease-out 1s forwards;
          animation: slideUpFade 1.2s ease-out 1s forwards;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .Business_01 .Business_01_inner img {
    width: 85%;
    margin: 0 auto;
  }
}

.Business_02 {
  background: #F1F2F3;
  padding: 125px 0 236px 0;
}
@media screen and (max-width: 767px) {
  .Business_02 {
    padding: 80px 0 80px 0;
  }
}
.Business_02 .Business_02_area {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.Business_02 .Business_02_area .Business_02_box {
  background: #FFF;
  width: 1080px;
  margin: 0 auto;
  padding: 56px 48px 40px 48px;
}
@media screen and (max-width: 767px) {
  .Business_02 .Business_02_area .Business_02_box {
    width: 90%;
    padding: 24px 24px 32px 24px;
  }
}
.Business_02 .Business_02_area .Business_02_box .Business_02_box_title {
  display: flex;
  gap: 158px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .Business_02 .Business_02_area .Business_02_box .Business_02_box_title {
    margin-bottom: 0px;
    flex-direction: column;
    gap: 16px;
  }
}
.Business_02 .Business_02_area .Business_02_box .Business_02_box_title .Business_02_box_left {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .Business_02 .Business_02_area .Business_02_box .Business_02_box_title .Business_02_box_left {
    width: 100%;
  }
}
.Business_02 .Business_02_area .Business_02_box .Business_02_box_title .Business_02_box_left h2 {
  font-size: clamp(2rem, 1.5946rem + 1.7297vw, 3rem);
  font-weight: 600;
  letter-spacing: 2.4px;
  margin-bottom: 8px;
}
.Business_02 .Business_02_area .Business_02_box .Business_02_box_title .Business_02_box_left h5 {
  color: #3F72AF;
  font-size: clamp(1rem, 0.9493rem + 0.2162vw, 1.125rem);
  line-height: 150%;
  letter-spacing: 1.26px;
  margin-bottom: 24px;
}
.Business_02 .Business_02_area .Business_02_box .Business_02_box_title .Business_02_box_left p {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1.12px;
  font-weight: 700;
}
.Business_02 .Business_02_area .Business_02_box .Business_02_box_title .Business_02_box_right img {
  width: 323px !important;
  height: auto !important;
}
.Business_02 .Business_02_area .Business_02_box h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1.6px;
  margin-bottom: 16px;
}
.Business_02 .Business_02_area .Business_02_box h3 span {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1.12px;
  display: inline-block;
  margin-left: 16px;
  font-weight: 400;
}
.Business_02 .Business_02_area .Business_02_box .Business_02_tools {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.Business_02 .Business_02_area .Business_02_box .Business_02_tools .Business_02_tool {
  background: #F1F2F3;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 218px;
}
@media screen and (max-width: 767px) {
  .Business_02 .Business_02_area .Business_02_box .Business_02_tools .Business_02_tool {
    flex-direction: column;
    gap: 24px;
  }
}
.Business_02 .Business_02_area .Business_02_box .Business_02_tools .Business_02_tool .Business_02_tool_left {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .Business_02 .Business_02_area .Business_02_box .Business_02_tools .Business_02_tool .Business_02_tool_left {
    width: 100%;
  }
}
.Business_02 .Business_02_area .Business_02_box .Business_02_tools .Business_02_tool .Business_02_tool_left h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 1.12px;
  margin-bottom: 8px;
  margin-top: 0;
}
.Business_02 .Business_02_area .Business_02_box .Business_02_tools .Business_02_tool .Business_02_tool_left h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.Business_02 .Business_02_area .Business_02_box .Business_02_tools .Business_02_tool .Business_02_tool_left p {
  font-size: 14px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.7px;
}

.Company_01 {
  background: #F1F2F3;
}

.Company_02 {
  background: #F1F2F3;
  padding: 24px 0 167px 0;
}
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .Company_02 {
    padding: 0 0 40px 0;
  }
}
.Company_02 .Company_02_inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .Company_02 .Company_02_inner {
    flex-direction: column;
    gap: 32px;
  }
}
.Company_02 .Company_02_inner .About_left h1 {
  color: #232323;
  font-family: Montserrat;
  font-size: clamp(2.5rem, 0.9797rem + 6.4865vw, 6.25rem);
  font-weight: 600;
  letter-spacing: 7px;
  opacity: 0;
  -webkit-animation: fadeInBlur 1s ease-out forwards;
          animation: fadeInBlur 1s ease-out forwards;
}
.Company_02 .Company_02_inner .About_right h2 {
  color: #232323;
  font-family: "Noto Sans JP";
  font-size: clamp(2rem, 1.7973rem + 0.8649vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 2.8px;
  margin-bottom: 72px;
  opacity: 0;
  -webkit-animation: fadeInBlur 1s ease-out forwards;
          animation: fadeInBlur 1s ease-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .Company_02 .Company_02_inner .About_right h2 {
    margin-bottom: 24px;
  }
}
.Company_02 .Company_02_inner .About_right p {
  color: #232323;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.6px;
}

.Company_03 {
  background: #F1F2F3;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .Company_03 {
    padding: 64px 0 144px 0;
  }
}
.Company_03 .Company_03_inner {
  margin: 0 auto;
}
.Company_03 .Company_03_inner .Company_03_head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .Company_03 .Company_03_inner .Company_03_head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.Company_03 .Company_03_inner .Company_03_head h1 {
  font-family: Montserrat;
  font-size: clamp(3rem, 1.6824rem + 5.6216vw, 6.25rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  letter-spacing: 7px;
  opacity: 0;
  -webkit-animation: fadeInBlur 1s ease-out forwards;
          animation: fadeInBlur 1s ease-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.Company_03 .Company_03_inner .Company_03_head p {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 6px;
  letter-spacing: 1.26px;
  opacity: 0;
  -webkit-animation: fadeInBlur 1s ease-out forwards;
          animation: fadeInBlur 1s ease-out forwards;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.Company_03 .Company_03_inner .Company_03_line {
  width: 100%;
  height: 1px;
  background-color: #666;
  border: none;
  margin-bottom: 32px;
}
.Company_03 .Company_03_inner .Company_table {
  width: 70%;
  margin-left: auto;
  background-color: #F1F2F3;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .Company_03 .Company_03_inner .Company_table {
    width: 100%;
  }
}
.Company_03 .Company_03_inner .Company_table th,
.Company_03 .Company_03_inner .Company_table td {
  text-align: left;
  padding: 16px;
  border-top: 1px solid #666;
  font-size: clamp(0.875rem, 0.8243rem + 0.2162vw, 1rem);
  vertical-align: top;
  letter-spacing: 0.8px;
  line-height: 200%;
  font-weight: 400;
}
.Company_03 .Company_03_inner .Company_table th {
  width: 240px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .Company_03 .Company_03_inner .Company_table th {
    width: 92px;
  }
}
.Company_03 .Company_03_inner .Company_table tr.first-row th,
.Company_03 .Company_03_inner .Company_table tr.first-row td {
  border-top: none;
}
.Company_03 .Company_03_inner .Company_table tr:last-child td,
.Company_03 .Company_03_inner .Company_table tr:last-child th {
  border-bottom: 1px solid #666;
}

/* --------------------------------------------------
   お問い合わせフォーム
-------------------------------------------------- */
.Contact_01 {
  background-color: #F1F2F3;
  padding: 80px 20px;
}
.Contact_01 .Contact_01_inner {
  max-width: 800px;
  margin: 0 auto;
}
.Contact_01 .Contact_01_inner .Contact_01_text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.26px;
  text-align: center;
}
.Contact_01 .Contact_01_inner .Contact01_contact_area {
  margin-top: 80px;
}
.Contact_01 .Contact_01_inner .Contact01_contact_area .Contact01_contact_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .Contact_01 .Contact_01_inner .Contact01_contact_area .Contact01_contact_box {
    flex-direction: column;
    gap: 24px;
  }
}
.Contact_01 .Contact_01_inner .Contact01_contact_area .Contact01_contact_box .Contact01_contact_title .cf7-badge p {
  color: #3F72AF;
  font-size: 12px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.48px;
}
.Contact_01 .Contact_01_inner .Contact01_contact_area .Contact01_contact_box .Contact01_contact_title .cf7-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.64px;
}
.Contact_01 .Contact_01_inner .Contact01_contact_area .Contact01_contact_box p label span input {
  display: inline-block;
  border: none;
  padding: 15px 0 15px 24px;
  width: 550px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .Contact_01 .Contact_01_inner .Contact01_contact_area .Contact01_contact_box p label span input {
    width: 100%;
  }
}
.Contact_01 .Contact_01_inner .Contact01_contact_area .Contact01_contact_box p label span textarea {
  display: inline-block;
  border: none;
  padding: 15px 0 15px 24px;
  width: 550px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .Contact_01 .Contact_01_inner .Contact01_contact_area .Contact01_contact_box p label span textarea {
    width: 100%;
  }
}
.Contact_01 .Contact_01_inner .Contact01_contact_button .Contact01_policy {
  margin-bottom: 56px;
}
.Contact_01 .Contact_01_inner .Contact01_contact_button .Contact01_policy p {
  text-align: center;
  font-size: 14px;
  line-height: 200%;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.Contact_01 .Contact_01_inner .Contact01_contact_button .Contact01_policy p a {
  color: #3F72AF;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.Contact_01 .Contact_01_inner .Contact01_contact_button .Contact_submit {
  text-align: center;
}
.Contact_01 .Contact_01_inner .Contact01_contact_button .Contact_submit p input {
  background-color: #3F72AF;
  padding: 16px 64px;
  border: none;
  color: #fff;
  border-radius: 12px;
  transition: 0.3s all;
  cursor: pointer;
}
.Contact_01 .Contact_01_inner .Contact01_contact_button .Contact_submit p input:hover {
  opacity: 0.7;
}
.Contact_01 .Contact_01_inner .Contact01_contact_button .Contact_submit p .wpcf7-previous {
  margin-top: 80px;
  margin-bottom: 24px;
  background-color: #D9D9D9;
  color: #232323;
}

.wpcf7-spinner {
  display: none !important;
}

.Contact_thanks {
  background-color: #F1F2F3;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
.Contact_thanks_inner {
  max-width: 700px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.Contact_thanks .Thanks_title {
  font-size: clamp(1.8rem, 1.2rem + 1.5vw, 2.4rem);
  color: #3F72AF;
  font-weight: 700;
  margin-bottom: 24px;
}
.Contact_thanks .Thanks_text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
}
.Contact_thanks .Thanks_btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.Contact_thanks .Thanks_btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background: #3F72AF;
  transition: background 0.3s, transform 0.1s ease-in;
}
.Contact_thanks .Thanks_btn:hover {
  background: #366195;
  transform: translateY(-2px);
}
.Contact_thanks .Thanks_btn--sub {
  background: #999;
}
.Contact_thanks .Thanks_btn--sub:hover {
  background: #878787;
}
@media (max-width: 768px) {
  .Contact_thanks {
    padding: 60px 16px;
  }
  .Contact_thanks_inner {
    padding: 40px 24px;
  }
  .Contact_thanks .Thanks_text {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .Contact_thanks .Thanks_btn {
    width: 100%;
    padding: 14px 0;
  }
  .Contact_thanks .Thanks_btn-wrap {
    flex-direction: column;
    gap: 12px;
  }
}

.policy {
  padding: 10% 0;
  background-color: #F1F2F3;
}
.policy .policy_inner .policy_area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.policy .policy_inner .policy_area .policy_box h2 {
  font-size: 22px;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.policy .policy_inner .policy_area .policy_box p {
  line-height: 170%;
  letter-spacing: 0.6px;
}

.cf7-btn[disabled] {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
  transition: none;
}

.rc-anchor-logo-img {
  z-index: 999;
}
/*# sourceMappingURL=main.css.map */