/* =======================================
  Google-Font-Start
==========================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* =======================================
    Google-Font-End
==========================================*/

/* =======================================
  All-Common-Css-Start
==========================================*/

:root {
  --font-nav: 16px;
  --font-para: 16px;
  --font-h1: 46px;
  --font-h2: 32px;
  --font-h3: 24px;
  --font-h4: 22px;

  --bg-color-primary: #554eb4;
  --bg-color-primary2: #001a2b;
  --bg-color-white: #fff;
  --bg-color-white2: #f3f4f5;
  --bg-color-two: #f5fbff;
  --bg-color-three: rgba(5, 3, 40, 0.53);
  --bg-color-four: rgba(68, 68, 68, 1);

  --font-color-primary: #554eb4;
  --font-color-black: #000;
  --font-color-black1: #050505;
  --font-color-black2: #151515;
  --font-color-black3: #2b2b2b;
  --font-color-white: #fff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

/* html {
    overflow-x: hidden;
} */

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-optical-sizing: auto;
}

h1 {
  font-size: var(--font-h1);
  font-family: "Noto Serif JP", serif;
}

h2 {
  font-size: var(--font-h2);
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}

h3 {
  font-size: var(--font-h3);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

h4 {
  font-size: var(--font-h4);
  font-family: "Noto Sans JP", sans-serif;
}

p {
  font-size: var(--font-para);
  font-family: "Noto Sans JP", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  display: inline-block;
}

ol,
ul {
  list-style: none;
}

img {
  vertical-align: middle;
}

.map {
  border: 0;
  width: 100%;
  height: 450px;
}

/* =======================================
  All-Common-Css-End
==========================================*/

/* =======================================
  Navbar-Section-Start
==========================================*/
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: all linear 0.3s;
  padding: 0;
  z-index: 1000;
  padding-bottom: 30px;
}

.navbarScrollEffect {
  padding-bottom: 0;
  background: rgba(0, 26, 43, 0.9);
  box-shadow: 0px 8px 30px rgb(56 88 214 / 8%);
}

#navBar button {
  background: none;
  outline: none;
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

#navBar label {
  display: flex;
  flex-direction: column;
  width: 70px;
  cursor: pointer;
  transform: scale(0.5);
}

#navBar label span {
  background: var(--bg-color-white);
  border-radius: 10px;
  height: 7px;
  margin: 7px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

#navBar span:nth-of-type(1) {
  width: 50%;
}

span:nth-of-type(2) {
  width: 100%;
}

#navBar span:nth-of-type(3) {
  width: 75%;
}

.navbar-brand {
  padding: 0;
  padding-left: 30px;
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.navbar ul {
  column-gap: 20px;
  row-gap: 20px;
}

.navbar ul li a {
  font-size: 16px;
  color: var(--font-color-white);
  transition: 0.3s;
  padding-block: 20px;
  padding-inline: 10px !important;
  position: relative;
  display: inline-block;
}

.navbar ul li a::before {
  position: absolute;
  height: 1px;
  width: 0;
  content: "";
  bottom: 0;
  left: 0;
  background: var(--bg-color-white);
  transition: 0.3s;
}

.navbar ul li:nth-last-child(1) a::before {
  background: none;
}

.navbar ul li a:hover::before {
  width: 100%;
}

.navbar ul li a:hover,
.navbar ul li a:active,
.navbar ul li a:focus {
  color: var(--font-color-white);
  text-decoration: none;
}

.navbar ul li a.nav-active-bg {
  background: var(--bg-color-primary);
}

.navbar ul li a.nav-active-bg-white {
  background: var(--bg-color-white);
  color: var(--font-color-primary);
}

/* =======================================
  Navbar-Section-End
==========================================*/

/* =======================================
  Hero-Section-Start
==========================================*/
.hero {
}

.hero .bg {
  background: url("../image/hero.jpg") no-repeat top/cover;
  text-align: center;
}

.hero .bg .overlay {
  background: rgba(2, 1, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.hero .bg .overlay h1 {
  color: var(--font-color-white);
  font-weight: 700;
  letter-spacing: 3.42px;
  margin-bottom: 15px;
}

.hero .bg .overlay p {
  color: var(--font-color-white);
  font-size: 19px;
  font-weight: 400;
}

.hero .bg .overlay p span {
  display: block;
}

.hero .bg .overlay .hero-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.hero .bg .overlay .hero-link a {
  font-size: var(--font-nav);
  color: var(--font-color-white);
  position: relative;
}

.hero .bg .overlay .hero-link a.hero-portfolio {
  padding: 12px 45px;
  padding-left: 25px;
  background: var(--bg-color-primary);
  border: 2px solid var(--bg-color-primary);
  transition: 0.3s;
}

.hero .bg .overlay .hero-link a.hero-career {
  padding: 12px 50px;
  padding-left: 40px;
  border: 2px solid #ffffff;
  transition: 0.3s;
}

.hero .bg .overlay .hero-link a.hero-portfolio:hover {
  background: #3f3a8c;
  border: 2px solid #3f3a8c;
}

.hero .bg .overlay .hero-link a.hero-career:hover {
  background: var(--bg-color-white);
  color: var(--font-color-primary);
}

.hero .bg .overlay .hero-link a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* =======================================
  Hero-Section-End
==========================================*/

/* =======================================
  Notice-Section-Start
==========================================*/
.notice {
  background: var(--bg-color-two);
}

.notice .bg-left {
  text-align: center;
  padding-block: 95px;
  background: var(--bg-color-primary);
  color: var(--font-color-white);
}

.notice .notice-list {
  padding-top: 10px;
}

.notice .notice-list .notice-item {
  display: flex;
  gap: 50px;
}

.notice .notice-list .notice-item p,
.notice .notice-list .notice-item a {
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--font-color-black);
  transition: 0.3s;
}

.notice .notice-list .notice-item a:hover {
  color: var(--font-color-primary);
}

.notice .notice-list .notice-item:nth-last-child(1) p.notice-item-title {
  margin-bottom: 0px;
}

.notice .notice-list .notice-item p.notice-item-title {
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding-right: 20px;
  border-bottom: 1px dashed var(--bg-color-primary);
}

.notice .notice-view {
  padding: 12px 45px;
  padding-left: 25px;
  border: 1px solid var(--bg-color-primary);
  color: var(--font-color-primary);
  font-size: var(--font-nav);
  transition: 0.3s;
  position: relative;
}

.notice .notice-view svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.notice .notice-view:hover {
  color: var(--font-color-white);
  background: var(--bg-color-primary);
}

/* =======================================
  Notice-Section-End
==========================================*/

/* =======================================
  Greetings-Section-Start
==========================================*/
.greetings {
  padding-block: 70px;
}

.greetings .greeting-text {
  text-align: center;
}

.greetings .greeting-text h2 {
  color: var(--font-color-black1);
}

.greetings .greeting-text p {
  color: var(--font-color-black);
  font-weight: 400;
  font-family: "Inter", sans-serif;
  margin-top: 35px;
  line-height: 28px;
}

.greetings .greeting-text p span {
  display: block;
}

/* =======================================
  Greetings-Section-End
==========================================*/
/* =======================================
  Description-Section-Start
==========================================*/
.description {
  padding-block: 50px;
  background: var(--bg-color-white2);
}

.description h2 {
  color: var(--font-color-black1);
  text-align: center;
}

.description .description-item {
  padding-top: 80px;
  overflow: hidden;
}

.description .description-list {
}

.description .description-list .list-image {
  height: 350px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.description .description-list .list-image img {
  height: 100%;
  width: calc(100% + 150px);
  object-fit: cover;
  position: relative;
  top: -30px;
  object-position: center;
}

.description
  .description-list
  .description-item:nth-child(odd)
  .list-image
  img {
  right: 150px;
  object-position: top;
}

.description .description-list .list-text {
  background: var(--bg-color-primary);
  color: var(--font-color-white);
  padding: 30px;
  z-index: 2;
  position: relative;
}

.description .description-list .list-text h3 {
  padding-bottom: 15px;
}

.description .description-list .list-text p {
  padding-bottom: 25px;
}

.description a {
  padding: 12px 45px;
  padding-left: 25px;
  border: 1px solid var(--bg-color-white);
  color: var(--font-color-white);
  font-size: var(--font-nav);
  transition: 0.3s;
  position: relative;
}

.description a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.description a:hover {
  color: var(--font-color-primary);
  background: var(--bg-color-white);
}

/* =======================================
  Description-Section-End
==========================================*/

/* =======================================
  Portfolio-Section-Start
==========================================*/
.portfolio {
  padding-block: 50px;
}

.portfolio h2 {
  color: var(--font-color-black1);
  font-weight: 700;
  text-align: center;
  padding-bottom: 50px;
}

.portfolio .portfolio-list {
  position: relative;
  margin-inline: 10px;
}

.portfolio .portfolio-list .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 1, 18, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.portfolio .portfolio-list .overlay a {
  height: 50px;
  width: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}

.portfolio .portfolio-list:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-list .portfolio-image {
  height: 245px;
  width: 100%;
  object-fit: cover;
}

.portfolio .portfolio-list .portfolio-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.portfolio .portfolio-list .portfolio-text {
  padding: 6px;
  padding-top: 20px;
}

.portfolio .portfolio-list .portfolio-text h3 {
  color: var(--font-color-black2);
  font-weight: 400;
}

.portfolio .portfolio-list .portfolio-text h5 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--font-color-primary);
  padding-top: 4px;
  padding-bottom: 8px;
}

.portfolio .portfolio-list .portfolio-text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--font-color-black);
}

.portfolio a {
  margin-top: 50px;
  padding: 12px 50px;
  padding-left: 30px;
  background: var(--bg-color-primary);
  color: var(--font-color-white);
  font-size: var(--font-nav);
  transition: 0.3s;
  position: relative;
  transition: 0.3s;
}

.portfolio a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.portfolio a:hover {
  background: #3f3a8c;
}

/* =======================================
  Portfolio-Section-End
==========================================*/

/* =======================================
  Job-Section-Start
==========================================*/
.job {
}

.job .job-image {
  height: 350px;
  width: 100%;
}

.job .job-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.job .job-text {
  padding-left: 50px;
  padding-right: 100px;
}

.job .job-text h4 {
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.job .job-text h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--font-color-primary);
  margin-block: 13px;
  margin-bottom: 20px;
}

.job .job-text p {
  font-family: "Inter", sans-serif;
}

.job a {
  margin-top: 50px;
  padding: 12px 50px;
  padding-left: 30px;
  background: var(--bg-color-primary);
  color: var(--font-color-white);
  font-size: var(--font-nav);
  transition: 0.3s;
  position: relative;
  transition: 0.3s;
}

.job a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.job a:hover {
  background: #3f3a8c;
}

/* =======================================
  Job-Section-End
==========================================*/

/* =======================================
  Contact-Section-Start
==========================================*/
.contact {
  color: var(--font-color-white);
  text-align: center;
}

.contact .bg {
  background: url(../image/contact.jpg) no-repeat top/cover;
}

.contact .bg .overlay {
  background: rgba(5, 3, 40, 0.529);
  padding-block: 70px;
}

.contact h3 {
  font-family: "Noto Serif JP", serif;
}

.contact p {
  margin-top: 6px;
  font-size: 14px;
}

.contact h5 {
  margin-block: 20px;
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 600;
}

.contact h5 i {
  font-size: 36px;
}

.contact h6 {
  font-size: 16px;
  font-weight: 400;
}

.contact a {
  margin-top: 40px;
  padding: 12px 50px;
  padding-left: 30px;
  background: var(--bg-color-white);
  color: var(--font-color-primary);
  font-size: var(--font-nav);
  transition: 0.3s;
  position: relative;
}

.contact a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.contact a:hover {
  background: var(--bg-color-primary);
  color: var(--font-color-white);
}

/* =======================================
  Contact-Section-End
==========================================*/

/* =======================================
  Footer-Section-Start
==========================================*/
.footer {
  background: var(--bg-color-primary2);
  padding-block: 30px;
  padding-bottom: 60px;
  color: var(--font-color-white);
}

.footer img {
  height: 40px;
}

.footer .footer-menu1 {
  display: flex;
  gap: 20px;
  padding-top: 30px;
}

.footer ul li a {
  font-size: var(--font-nav);
  color: var(--font-color-white);
  font-weight: 400;
  padding-block: 6px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: var(--font-color-primary);
}

.footer .simulation {
  margin-top: 15px;
  padding: 12px 26px;
  background: var(--bg-color-primary);
  color: var(--font-color-white);
  font-size: var(--font-nav);
  transition: 0.3s;
}

.footer .simulation:hover {
  background: var(--bg-color-white);
  color: var(--font-color-primary);
}

.footer .footer-right h5 {
  font-weight: 900;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 25px;
  padding-bottom: 5px;
}

.footer .footer-right p {
  font-size: var(--font-nav);
}

/* =======================================
  Footer-Section-End
==========================================*/

/* =======================================
  Route-Section-Start
==========================================*/
.route {
  background: var(--bg-color-primary);
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--font-color-white);
}

.route h2 {
  padding-bottom: 10px;
}

/* =======================================
  Route-Section-End
==========================================*/

/* =======================================
  Route-Section-End
==========================================*/
.philosophy {
}

.philosophy .philosophy-text {
  padding-bottom: 20px;
}

.philosophy .philosophy-text h2 {
  padding-bottom: 20px;
}

.philosophy .philosophy-text p span {
  display: block;
  padding-bottom: 3px;
}

.philosophy img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

/* =======================================
  Route-Section-End
==========================================*/

/* =======================================
  Company-Profile-Section-Start
==========================================*/
.company-profile {
  padding-block: 70px;
}

.company-profile h2 {
  text-align: center;
  padding-bottom: 70px;
}

.company-profile-list {
}

.company-profile-list .profile-item {
  display: flex;
  padding-bottom: 40px;
}

.company-profile-list .profile-item .left {
  width: 25%;
  text-align: center;
  border-bottom: 2px solid var(--bg-color-primary);
}

.company-profile-list .profile-item .right {
  width: 70%;
  border-bottom: 2px solid #e8e8e8;
}

.company-profile-list .profile-item .left p {
  font-weight: 700;
}

.company-profile-list .profile-item .left p,
.company-profile-list .profile-item .right p {
  padding-bottom: 10px;
}

/* =======================================
  Company-Profile-Section-End
==========================================*/

/* =======================================
  Access-Section-Start
==========================================*/

.access {
  padding-bottom: 40px;
  background: #f7f7f7;
}

.access h2 {
  padding-block: 40px;
  text-align: center;
}

/* =======================================
  Access-Section-End
==========================================*/

/* =======================================
  Business-Section-Start
==========================================*/

.business {
  padding-top: 80px;
}

.business .portfolio-list {
  margin-bottom: 50px;
  margin-inline: 10px;
}

.business .portfolio-list .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business .portfolio-list .portfolio-text {
  text-align: center;
}

.business .portfolio-list .portfolio-text a {
  padding: 12px 40px;
  padding-left: 20px;
  background: var(--bg-color-white);
  color: var(--font-color-primary);
  border: 1px solid var(--bg-color-primary);
  font-size: var(--font-nav);
  transition: 0.3s;
  position: relative;
}

.business .portfolio-list .portfolio-text a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.business .portfolio-list .portfolio-text a:hover {
  background: var(--bg-color-primary);
  color: var(--font-color-white);
}

.business .portfolio-list .portfolio-text p {
  font-weight: 700;
  font-size: 20px;
  padding-block: 15px;
}

/* =======================================
  Business-Section-End
==========================================*/

/* =======================================
  Faq-Section-Start
==========================================*/

.faq {
  padding-block: 40px;
}

.faq .image {
  position: relative;
}

.faq .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.faq .image {
  height: 300px;
  width: 100%;
}

.faq .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq .faq-list {
  padding-top: 40px;
}

.faq .faq-list .faq-item {
  padding-bottom: 20px;
}

.faq .faq-list .faq-item {
  padding-bottom: 20px;
}

.faq .faq-list .faq-title i {
  color: var(--bg-color-primary);
  padding-right: 6px;
}

.faq .faq-list .faq-ans {
  padding-left: 30px;
  padding-top: 16px;
}

.faq .faq-list .faq-ans p {
}

.faq .faq-list .faq-ans p span {
  display: block;
  padding-bottom: 16px;
}

.faq .faq-button {
  padding-top: 40px;
}

.faq .faq-button .faq-btn-block {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.faq .faq-button .faq-btn-block .btn-custom {
  flex: 1;
  background: #edecff;
  color: var(--font-color-primary);
  margin: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: var(--font-nav);
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.faq .faq-button .faq-btn-block .btn-custom::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #b5b0fb;
  font-size: 40px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq .faq-button .faq-btn-block {
  counter-reset: step-counter;
}

.faq .faq-button .faq-btn-block .btn-custom:hover {
  background: var(--bg-color-primary);
  color: var(--bg-color-white);
}

.faq .faq-button .faq-btn-block .btn-custom.active {
  background: var(--bg-color-primary);
  color: var(--bg-color-white);
}

/* =======================================
  Faq-Section-End
==========================================*/

.container {
  padding: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* 見出しのスタイル */
#ttl {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

/* テーブルスタイル */
.normal__table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

.normal__table th,
.normal__table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
  vertical-align: top;
}

.normal__table th {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #555;
}

.normal__table td {
  color: #333;
  line-height: 1.5;
}

/* リンクスタイル */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* テーブル内リンクの調整 */
.normal__table a {
  font-weight: bold;
}

/* メディアクエリ (レスポンシブ対応) */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  #ttl {
    font-size: 1.5rem;
  }

  .normal__table th,
  .normal__table td {
    padding: 10px;
  }
}

.privacy_content {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 20px;
  border-radius: 8px;
}

.privacy_content h2 {
  border-bottom: 2px solid #555;
  padding-bottom: 5px;
  margin-top: 20px;
}

.privacy_content p {
  margin: 10px 0;
}

.privacy_content ol,
.privacy_content ul {
  padding-left: 20px;
  margin: 10px 0;
}

.privacy_content li {
  margin-bottom: 5px;
}

.privacy_content address {
  font-style: normal;
  line-height: 1.4;
}
