* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #005c97;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-primary {
  background-color: #005c97;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #004a7a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 92, 151, 0.3);
}
.btn-dark {
  background-color: #0f172a;
  color: #ffffff;
}
.btn-dark:hover {
  background-color: #000;
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
}
.navbar .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.logo span {
  color: #1e293b;
  font-weight: 500;
}
.logo .image-logo {
  padding-right: 8px;
  display: inline-block;
  position: relative;
  top: 3px;
}

.logo-link {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 5px;
}
.logo-link .logo-img {
  width: 100%;
  height: auto;
  max-height: 120px;
  padding-top: 7px;
}

.site-branding {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.site-branding .site-tagline {
  line-height: 1.2;
}
.site-branding .site-tagline a {
  text-decoration: none;
  color: var(--text-color);
}
.site-branding .site-tagline .site-sub-title {
  font-size: 0.8rem;
}
.site-branding .site-tagline .site-title {
  font-size: 1.2rem;
  display: flex;
  flex-flow: column;
}
.site-branding .site-tagline .emphasize {
  display: inline-block;
}
.site-branding .site-tagline .emphasize::first-letter {
  color: #005c97;
}

.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.8;
}
.nav-links a:hover {
  opacity: 1;
  color: #005c97;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}
.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: #0f172a;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
}
.hero .hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero .hero-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}
.hero .hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
@media (max-width: 768px) {
  .hero .hero-image {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero .hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}
.hero .hero-content h1 span {
  color: #005c97;
}
.hero .hero-content p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 30px;
}
.hero .hero-content p span {
  font-size: 1rem;
  padding: 1em 0;
  display: block;
}

.service {
  background-color: #f8fafc;
}
.service p {
  padding-left: 1em;
  margin-bottom: 1em;
}
.service ul {
  padding-left: 1em;
}
.service ul li {
  margin-left: 1em;
  list-style-type: decimal;
}

.profile {
  background-color: #ffffff;
}
.profile .profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .profile .profile-grid {
    grid-template-columns: 1fr;
  }
}
.profile .profile-table {
  width: 100%;
  border-collapse: collapse;
}
.profile .profile-table th {
  text-align: left;
  white-space: nowrap;
  padding-right: 1em;
  vertical-align: top;
  font-weight: bold;
  width: 7em;
}
.profile .profile-table td {
  vertical-align: top;
  padding-bottom: 1em;
}
.profile h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #0f172a;
}
.profile p {
  font-size: 1.1rem;
  color: #64748b;
}
.profile .first-name {
  padding-left: 0.5em;
}
.profile ruby {
  font-size: 1.5rem;
}
.profile ruby rt {
  font-weight: 200;
  color: #1e293b;
}
.profile .profile-stats {
  display: flex;
  gap: 50px;
}
.profile .profile-stats .career-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.profile .profile-stats .career-list dt {
  flex-basis: 8em;
  font-weight: bold;
  padding: 0.5em 0;
  border-bottom: 1px solid #eee;
}
.profile .profile-stats .career-list dd {
  flex-basis: calc(100% - 8em);
  margin-left: 0;
  padding: 0.5em 0;
  border-bottom: 1px solid #eee;
}
.profile .profile-stats .career-list dd .duties {
  list-style: none;
  padding: 0;
  margin: 0.5em 0 0 1em;
  font-size: 0.9em;
}
.profile .profile-stats .career-list dd .duties li::before {
  content: "- ";
}
@media (max-width: 600px) {
  .profile .profile-stats .career-list dt {
    flex-basis: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
  .profile .profile-stats .career-list dd {
    flex-basis: 100%;
    padding-top: 0.2em;
    margin-bottom: 1em;
  }
}

.achievements {
  background-color: #f8fafc;
}
.achievements .achievements-grid {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 30px;
}
.achievements .achievements-grid .achievement-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}
.achievements .achievements-grid .achievement-list dt {
  flex-basis: 8em;
  font-weight: bold;
  padding: 0.5em 0;
  border-bottom: 1px solid #eee;
}
.achievements .achievements-grid .achievement-list dd {
  flex-basis: calc(100% - 8em);
  margin-left: 0;
  padding: 0.5em 0;
  border-bottom: 1px solid #eee;
}
.achievements .achievements-grid .achievement-list dd .duties {
  list-style: none;
  padding: 0;
  margin: 0.5em 0 0 1em;
  font-size: 0.9em;
}
.achievements .achievements-grid .achievement-list dd .duties li::before {
  content: "- ";
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  background-color: #ffffff;
}
.contact .contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact .contact-info .email {
  font-size: 1.2rem;
  font-weight: 600;
  color: #005c97;
  margin-top: 30px;
}
.contact .contact-form .form-group {
  margin-bottom: 20px;
}
.contact .contact-form input, .contact .contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact .contact-form input:focus, .contact .contact-form textarea:focus {
  border-color: #005c97;
}

footer {
  padding: 50px 0;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}
footer .footer-bottom {
  font-size: 0.9rem;
  color: #64748b;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.bright {
  font-size: 1.2em;
  color: white !important;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5), -1px -1px 3px rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  .profile-grid, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .achievements-grid1 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
.article-list-box {
  height: 300px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.article-list-box::-webkit-scrollbar {
  width: 8px;
}
.article-list-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.article-list-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.article-list-box .article-list {
  margin: 0;
  padding: 0;
}
.article-list-box .article-list .article-item {
  border-bottom: 1px solid #eee;
}
.article-list-box .article-list .article-item:last-child {
  border-bottom: none;
}
.article-list-box .article-list .article-link {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  width: 100%;
  color: #1e293b;
  font-weight: 500;
  box-sizing: border-box;
}
.article-list-box .article-list .article-link:hover {
  background-color: #f8fafc;
  color: #005c97;
  padding-left: 25px;
}
.article-list-box .article-date {
  font-size: 0.85rem;
  color: #64748b;
  white-space: nowrap;
}

.blog-main {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.blog-list {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-item {
  margin-bottom: 40px;
}
.blog-post-item .post-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: none;
}
@media (max-width: 768px) {
  .blog-post-item .post-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.blog-post-item .post-header-row .post-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1e293b;
  width: 70%;
}
@media (max-width: 768px) {
  .blog-post-item .post-header-row .post-title {
    width: 100%;
    font-size: 1.5rem;
  }
}
.blog-post-item .post-header-row .post-dates {
  text-align: right;
  font-size: 0.9rem;
  color: #1e293b;
  width: 30%;
}
@media (max-width: 768px) {
  .blog-post-item .post-header-row .post-dates {
    width: 100%;
    text-align: left;
    font-size: 0.85rem;
    color: #64748b;
  }
}
.blog-post-item .post-header-row .post-dates .date-row {
  margin-bottom: 4px;
}
.blog-post-item .post-header-row .post-dates .date-row:last-child {
  margin-bottom: 0;
}
.blog-post-item .post-header-row .post-dates .date-row .label {
  display: inline-block;
  min-width: 4em;
  text-align: right;
}
@media (max-width: 768px) {
  .blog-post-item .post-header-row .post-dates .date-row .label {
    text-align: left;
  }
}
.blog-post-item .post-content {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.blog-post-item .post-content p {
  margin-bottom: 1.5em;
}
.blog-post-item .post-content h2 {
  font-size: 1.5rem;
  border-left: 4px solid #005c97;
  padding-left: 15px;
  margin: 2em 0 1em;
}
.blog-post-item .post-content h3 {
  font-size: 1.3rem;
  margin: 1.5em 0 1em;
  font-weight: bold;
}
.blog-post-item .post-content img {
  max-width: 60%;
  height: auto;
  margin: 20px auto;
}

.post-divider {
  border-top: 1px solid #ddd;
  margin: 60px 0;
  width: 100%;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 80px;
}
.pagination-container .btn-pagination-box {
  display: block;
  width: 300px;
  padding: 15px 0;
  text-align: center;
  border: 1px solid #1e293b;
  color: #1e293b;
  background: #fff;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pagination-container .btn-pagination-box:hover {
  background: #1e293b;
  color: #fff;
  transform: translateY(-2px);
}

.blog-accordion {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #eee;
}
.blog-accordion .accordion-item {
  border-bottom: 1px solid #eee;
}
.blog-accordion .accordion-item .accordion-header {
  list-style: none;
  cursor: pointer;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  transition: background-color 0.3s;
}
.blog-accordion .accordion-item .accordion-header::-webkit-details-marker {
  display: none;
}
.blog-accordion .accordion-item .accordion-header:hover {
  background-color: #f8fafc;
}
.blog-accordion .accordion-item .accordion-header:hover .acc-title {
  color: #005c97;
}
.blog-accordion .accordion-item .accordion-header .acc-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.3s;
  line-height: 1.4;
}
.blog-accordion .accordion-item .accordion-header .acc-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 15px;
}
.blog-accordion .accordion-item .accordion-header .acc-icon::before, .blog-accordion .accordion-item .accordion-header .acc-icon::after {
  content: "";
  position: absolute;
  background-color: #64748b;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.blog-accordion .accordion-item .accordion-header .acc-icon::before {
  width: 100%;
  height: 2px;
}
.blog-accordion .accordion-item .accordion-header .acc-icon::after {
  width: 2px;
  height: 100%;
}
.blog-accordion .accordion-item[open] .accordion-header .acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-accordion .accordion-item[open] .accordion-content {
  animation: fadeIn 0.4s ease;
}
.blog-accordion .accordion-item .accordion-content {
  padding: 10px 20px 40px 20px;
  background-color: #fff;
}
.blog-accordion .accordion-item .accordion-content .acc-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #64748b;
  border-bottom: 1px dashed #eee;
  padding-bottom: 10px;
}
@media (max-width: 600px) {
  .blog-accordion .accordion-item .accordion-content .acc-meta {
    flex-direction: column;
    gap: 5px;
  }
}
.blog-accordion .accordion-item .accordion-content .acc-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #1e293b;
}
.blog-accordion .accordion-item .accordion-content .acc-body img {
  width: 60%;
  height: auto;
  margin: 15px auto;
}
.blog-accordion .accordion-item .accordion-content .acc-body p {
  margin-bottom: 1.5em;
}
.blog-accordion .accordion-item .accordion-content .acc-link-wrap {
  margin-top: 30px;
  text-align: right;
}
.blog-accordion .accordion-item .accordion-content .acc-link-wrap .btn-sm {
  display: inline-block;
  font-size: 0.85rem;
  color: #005c97;
  border: 1px solid #005c97;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}
.blog-accordion .accordion-item .accordion-content .acc-link-wrap .btn-sm:hover {
  background-color: #005c97;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pv {
  color: gray;
  padding: 0.5em 0;
}/*# sourceMappingURL=style.css.map */