@charset "UTF-8";

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	info
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.info__inner {
  max-width: 647px;
  padding: 40px 0;
  margin: 0 auto;
}
.info__inner--box {
  margin-bottom: 20px;
}
.info__inner--box--item {
  display: block;
  padding: 16px 0;
  border-top: 1px solid #727272;
}
.info__inner--box--item:last-of-type {
  border-bottom: 1px solid #727272;
}
.info__inner--box--item p {
  color: #0085ff;
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
}
.info__inner--box--item h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .info__inner {
    max-width: 100%;
    padding: 40px 20px;
  }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	voice
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.voice__inner {
  max-width: 647px;
  padding: 40px 0;
  margin: 0 auto;
}
.voice__inner--box {
  margin-bottom: 20px;
}
.voice__inner--box--item {
  display: block;
  padding: 16px 0;
  border-top: 1px solid #727272;
}
.voice__inner--box--item:last-of-type {
  border-bottom: 1px solid #727272;
}
.voice__inner--box--item p {
  color: #0085ff;
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
}
.voice__inner--box--item h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.voice__inner--box--item--tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.voice__inner--box--item--tag p {
  display: inline-block;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 6px 10px;
  border: 1px solid #333333;
  border-radius: 4px;
  margin-right: 6px;
  margin-bottom: 6px;
}

@media only screen and (max-width: 768px) {
  .voice__inner {
    max-width: 100%;
    padding: 40px 20px;
  }
}
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
/* Hero section moved to style/voice/hero.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	voice category tiles (for /voice/student/)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.voice__category-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.voice__category-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.voice__category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.voice__category-tile {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.voice__category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.voice__category-image {
  width: 100%;
  padding-top: 75%;
  /* 4:3 aspect ratio */
  position: relative;
  background: #f5f5f5;
}

.voice__category-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__category-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.voice__category-label span {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

/* Mobile responsive */
@media only screen and (max-width: 1024px) {
  .voice__category-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .voice__category-section {
    padding: 40px 20px;
  }

  .voice__category-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .voice__category-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .voice__category-label span {
    font-size: 14px;
  }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

/* --- Visual Tiles Section --- */
.voice__tiles {
  padding-bottom: 100px;
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
}

.voice__tiles-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: 0.1em;
  font-family: "Helvetica Neue", sans-serif;
}

.voice__tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1025px;
  margin: 0 auto;
  padding: 0 24px;
}

.voice__tiles-item {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 3px solid #0385ff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.3s;
  background: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.voice__tiles-item:hover {
  opacity: 0.9;
}

.voice__tiles-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.voice__tiles-item:hover img {
  transform: scale(1.05);
}

.voice__tiles-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(3, 133, 255, 0.9) 0%,
    rgba(3, 133, 255, 0) 100%
  );
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 4px;
}

.voice__tiles-label span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.voice__tiles-label img {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 20px !important;
  height: 20px !important;
  background: #fff;
  border-radius: 50%;
  padding: 0px !important;
  box-sizing: content-box;
  filter: none;
  object-fit: contain;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
  .voice__tiles {
    padding-bottom: 60px;
    padding-top: 28px;
 }

  .voice__tiles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 16px;
    max-width: 600px;
    margin: 0 auto;
  }

  .voice__tiles-title {
    font-size: 18px;
  }

  .voice__tiles-label {
    height: 60%;
  }

  .voice__tiles-label span {
    font-size: 15px;
  }

  .voice__tiles-label img {
    right: 6px;
    bottom: 8px;
    width: 16px !important;
    height: 16px !important;
    padding: 0px !important;
  }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	Voice Experience Section (New)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.voice__experience-wrapper {
  padding-bottom: 20px;
  max-width: 1025px;
  margin: 0 auto;
  padding: 0 24px;
}

.voice__experience {
  margin-bottom: 60px;
  scroll-margin-top: 156px;
  /* Offset for fixed header */
}

.voice__experience-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.voice__experience-bar {
  display: block;
  width: 6px;
  height: 30px;
  background: #0385ff;
  margin-right: 15px;
}

.voice__experience-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Meiryo",
    sans-serif;
}

.voice__experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.voice__card {
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.voice__card-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.voice__card-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 2.5px 2.5px 1px rgba(0, 0, 0, 1);
}

.voice__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  /* Ensure it matches image height to center content vertically */
}

.voice__card-name {
  font-size: 18px;
  /* Increased from 18px */
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  font-family: "Helvetica Neue", sans-serif;
}

.voice__card-meta {
  font-size: 15px;
  font-weight: 500;
  font-family: "Helvetica Neue", sans-serif;
}

.voice__card-meta-row {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
}

.voice__card-meta-row span {
  width: 80px;
  font-size: 14px;
  font-weight: bold;
}

.voice__card-body {
  flex: 1;
}

.voice__card-body p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.voice__card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 20px;
}

.voice__card-footer a {
  color: #0385ff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
  border-bottom: 1px solid #0385ff;
  padding-bottom: 1px;
  line-height: 1.5;
}

.voice__card-footer a:hover {
  opacity: 0.7;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
  .voice__experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .voice__card {
    padding: 20px;
  }

  .voice__card-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }

  .voice__card-name {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .voice__card-meta {
    font-size: 13px;
  }

  .voice__card-body p {
    font-size: 13px;
  }

  .voice__card-footer {
    flex-direction: column;
    gap: 12px;
  }

  .voice__card-footer a {
    display: inline-block;
    width: fit-content;
  }
}