/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}
/* Section Base */
.info-section {
  background: #fff;
  padding: 60px 20px;
}

/* Top Buttons */
.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  justify-content: center;
}

.section-title {
  display: none !important;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.logo {
  width: 308px;
}

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

.pink-btn {
  background: #f78da7;
}

.pink-btn:hover {
  background: #f56d8c;
}

.green-btn {
  background: #00bfa6;
}

.green-btn:hover {
  background: #00a58e;
}

.icon {
  font-size: 1.4rem;
}

.arrow {
  font-size: 1.2rem;
}

#sp-img {
  display: none;
}

/* Info Box Layout */
.info-box {
  max-width: 1100px;
  background: #f9f9f9;
  margin: 0 auto;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.column {
  flex: 1;
}

.column h2 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
}
ul {
  list-style: none;
}

li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.date {
  font-size: 0.9rem;
  color: #777;
  width: 90px;
  flex-shrink: 0;
}

.text {
  color: #333;
  font-size: 0.95rem;
}

/* タグ */
.tag {
  width: fit-content;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.pink-tag {
  background: #fbd2da;
  color: #c7517a;
}

.green-tag {
  background: #c8f3ee;
  color: #007a6d;
}
.news-link {
    margin-top: auto;
    display: inline-block;
    font-size: 0.95rem;
    text-decoration: none;
}
.divider {
  display: none;
  width: 2px;
  height: 200px;
  background: #ddd;
}
#fb-display {
  display: none;
}

/* Info Box Layout */
.info-box {
  max-width: 1100px;
  background: #f9f9f9;
  margin: 0 auto;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.column h2 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
}
ul {
  list-style: none;
}

li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.date {
  font-size: 0.9rem;
  color: #777;
  width: 90px;
  flex-shrink: 0;
}

.text {
  color: #333;
  font-size: 0.95rem;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .nav-links {
    gap: 20px !important;
  }
}
@media (min-width: 768px) {
  .button-container {
    flex-direction: row;
  }
  .info-box {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
   .info-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .column {
    display: flex;
    flex-direction: column;
  }
  .divider {
    display: block;
  }
  .column {
    flex: 1;
  }
}
/* Header Layout */
.header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 40px;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.subtext {
  font-weight: bold;
  font-size: 17px;
  color: #333;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: bold;
  position: relative;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.header_buttons {
  display: flex;
  gap: 10px;
}

.button-container .btn {
  min-width: 375px;
}

.header_buttons .btn {
  padding: 8px 18px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header_buttons .btn::before {
  content: "";
  background: url('../images/arrow1.svg') no-repeat;
  width: 15px;
  height: 15px;
  font-size: 16px;
  font-weight: normal;
  margin-right: 10px;
}

.mobile-buttons .btn::before {
  content: "";
  background: url('../images/arrow1.svg') no-repeat;
  width: 15px;
  height: 15px;
  font-size: 16px;
  font-weight: normal;
  margin-right: 10px;
}

.btn:hover {
  opacity: 0.8;
}

.pink {
  background-color: #ff8da1;
}

.green {
  background-color: #00c7a9;
}
.header-cta {
  display: flex;
  flex-direction: column;
  gap:5px;
}
.group-link {
  font-size: 13px;
  text-decoration: none;
  color: #000;
  align-self: flex-end;
  padding-right:30px;
  background-image: url('../images/blank.svg');
  background-repeat: no-repeat;
  background-position: right center;
}
@media(max-width:923px){
  .header_buttons .btn {
  font-size: 14px;
}
  .nav-links a {
    font-size: 14px;
  }
}
@media(max-width:841px){
  .group-link {
  display:none;
  }
}

/* Hamburger Menu Icon */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  width: 30px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger Menu Animation */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Overlay Background */
.mobile-menu::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Mobile Navigation */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #000;
  font-size: 19px;
  font-weight: bold;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}
/* Mobile Buttons */
.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-buttons .btn {
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.2s ease;
}

.image-map img {
  position: absolute;
  right: -140px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }
}


/* Content layout */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20%;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Left side text */
.content {
  border-top: 2px solid #00a0e9;
  padding-block: -40px;
  position: relative;
}

.message-section {
  position: relative;
}

.message-section::after {
  content: "";
  position: absolute;
  bottom: -11px;
  z-index: 10;
  left: 0;
  right: 0;
  height: 10px;
  background: url('../images/overline.svg');
}

.image-block {
  position: absolute;
  right: 0;
  bottom: 0;
}

.small-text {
  font-size: 0.8rem;
  color: #444;
  margin-bottom: 6px;
}

.text-block h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}

.text-block h2 span {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #fff56e 60%);
  padding: 0 4px;
}

/* Right side image */
.image-block {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 300px;
  pointer-events: none;
}

.image-block img {
  width: 100%;
  max-width: 35vw;
  height: auto;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {

  .image-block img {
    max-width: 350px;
  }

  .content {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 5%;
  }

  .image-block {
    justify-content: center;
    margin-top: 20px;
  }

  .text-block h2 {
    font-size: 1.3rem;
  }
}



.about-section {
  background-color: #e7f5ff;
  padding: 0px 5%;
}

.inner {
  max-width: 1220px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 40px;
}

/* Text area */
.text-area {
  margin-block: 50px;
  text-align: center;
}

.text-area p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 15px 0;
}

.text-area hr {
  border: none;
  height: 1px;
  background-color: #d0d0d0;
  margin: 0;
}

/* Section title */
.section-title {
  text-align: center;
  position: relative;
  font-weight: 600;
  font-size: 28px;
  color: #333;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-title::before,
.section-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #00a0e9;
  transform: rotate(60deg);
  flex-shrink: 0;
}

.section-title::after {
  transform: rotate(-60deg);
}


/* Main content layout */
.content-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.blank::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: url('../images/overline.svg');
  background-size: cover;
  /* optional, adjust as needed */
  transform: scaleY(-1);
  transform-origin: center;
}

.blank {
  height: 30px;
  position: relative;
}

/* Image box */
.image-box {
  flex: 1;
  min-width: 300px;

}

.image-box img {
  min-width: 380px;
  width: 500px;
  padding: 8px;
}
@media(min-width:1200px){
  .image-box img {
    margin-left: 120px;
  }
}

.image-map {
  position: relative;
}

.labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.labels span {
  font-size: 0.8rem;
  color: #333;
}

/* Side note (pink card) */
.side-note {
  flex: 1;
  min-width: 250px;
  background-color: #ffd7dd;
  transform: rotate(-2deg);
  padding: 25px;
  color: #333;
  font-size: 0.9rem;
  position: relative;
}

.side-note img {
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 60px;
  opacity: 0.9;
}

@media (max-width: 1110px) {

.image-map img{
  position: unset;
}

.content-area {
  flex-direction: column;
  align-items: center;
}

.image-block img {
    max-width: 382px;
}

}

@media (max-width: 956px) {
  .image-block img {
      max-width: 336px;
  }
}

@media (max-width: 900px) {
  .image-block img {
      max-width: 300px;
  }
}

/* Responsive Design */
@media (max-width: 840px) {
  .header {
    padding: 12px 40px;
    justify-content: space-between;
  }

  .image-block img {
    max-width: 336px;
  }

  .content {
    padding: 60px 6%;
  }
  
  .header-left {
    gap: 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .header_buttons {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .logo-section .subtext {
    font-size: 14px;
  }

  .mobile-buttons .btn {
    justify-content: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .content-area {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .side-note {
    transform: none;
    text-align: center;
    padding-bottom: 80px;
  }

  .side-note img {
    position: static;
    margin-top: 15px;
  }
}


/* Base footer style */
.footer {
  background-color: #4cc1f7;
  /* bright blue */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Left section */
.footer-left h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

/* Center section (links) */
.footer-center {
  display: flex;
  gap: 40px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: opacity 0.3s;
  font-weight: bold;
}

.footer-center a:hover {
  opacity: 0.8;
}

/* Right section (buttons) */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-right a {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
  border: white 2px solid;
}

.footer-right .a:hover {
  opacity: 0.85;
}

.footer-right .pink {
  background-color: #ff7fa8;
}

.footer-right .green {
  background-color: #3cc495;
}

/* Copyright */
.footer-copy {
  text-align: center;
  font-size: 0.6rem;
  margin-top: 30px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-center {
    gap: 15px;
  }

  .footer-right {
    align-items: center;
  }

  .section-title {
    gap: 10px;
  }

  #sp-img {
    display: inline;
    width: 100%;
  }

  #pc-img {
    display: none;
  }

  .info-section {
    position: relative;
  }

  .button-container {
    position: absolute;
    top: -210px;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-right .btn {
    width: 100%;
  }

  .button-container .btn {
    min-width: 320px;
    border: white 2px solid;
  }

  .image-map img {
    position: absolute;
    right: unset;
    left: -50%;
    transform: translateX(-50%);
    max-width: 400px;
  }

  .about-section#about {
    padding: unset;
    padding-bottom: 200px;
  }

  .info-box {
    background-color: unset;
  }

  .column {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
  }
}

@media (max-width: 704px) {
  .image-block {
    margin-bottom: 190px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .content {
    align-items: center;
  }

  .message-section#top {
    margin-top: 250px;
  }

  .info-section {
    padding: 20px 20px 0px 20px;
  }

  .info-box {
    padding: 10px;
  }

}

@media (max-width: 500px) {
  .message-section::after {
    background: url('../images/overline_sp.svg');
  }

  .blank::before {
    background: url('../images/overline_sp.svg');
  }

  .header {
    justify-content: space-between;
  }

  .logo-section img {
    width: 240px;
  }

  .btn {
    padding: 16px 16px;
    font-size: 14px;
  }

  .inner {
    padding: 50px 10px;
  }

  #enter {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: auto;
    gap: 4px;
  }

  .image-box img {
    width: 100%;
    min-width: unset;
  }

  #fb-display {
    display: flex;
  }

  .footer-right {
    display: none;
  }

  .image-map img {
    max-width: 330px;
  }

  
  .text-area p {
    font-size: 13px;
    font-weight: bold;
  }

  #sp-text-area {
    display: inline !important;
    margin-bottom: 10px;
  }

  #pc-text-area {
    display: none;
  }



  .text-area p {
    line-height: 0.7;
  }

  .small-text {
    text-align: center;
  }

 .btn img {
    width: 40px;
  }

 .footer-center a {
    font-size: 15px;
  }

  .footer-center {
    gap: 50px;
  }

  .header {
      padding: 12px 15px;
  }

  .button-container {
    gap: 10px;
  }

}

#sp-text-area {
  display: none;
}



/* Product Header Section */
.product-header-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-header-image {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}

.product-info-text {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #00000075;
  margin: 0;
  z-index: 10;
}

@media (max-width: 768px) {
  .product-info-text {
    font-size: 2rem;
    padding: 15px 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
  .product-header-image {
    height: 150px;
  }
}

@media (max-width: 500px) {
  .product-info-text {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
}

/* Product Navigation */
.product-nav {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding-block: 60px;
  background: #fff;
}

.product-nav-link {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: medium;
  position: relative;
  padding-bottom: 8px;
}

.product-nav-link.active {
  border-bottom: none;
}

.product-nav-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .product-nav {
    padding: 50px 5%;
    gap: 30px;
  }

  .product-nav-link {
    font-size: 16px;
  }
}

/* Active tab underline with angled ends */
.product-nav-link {
  position: relative;
}

.product-nav-link.active::after {
  content: "";
  position: absolute;
  left: -25px;               /* extend a bit to show angled cuts */
  right: -25px;
  bottom: 0px;             /* space between text and bar */
  height: 7px;              /* thickness of the bar */
  background: #55BAF0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .product-nav-link.active::after {
    left: -10px;
    right: -10px;
    bottom: 0px;
    height: 6px;
  }
}

/* Product Catalog Styles */

.product-inner {
  max-width: 1220px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 10%;
  position: relative;
}

/* Page Header */
.product-page-header {
  margin-bottom: 70px;
  text-align: center;
}

.product-label {
  color: #00a0e9;
  font-size: clamp(12px, 3.3vw, 16px);
  font-weight: bold;
}

.product-title {
  font-size: clamp(20px, 5.5vw, 30px);
  font-weight: bold;
  color: #000;
  margin: 0;
}

/* Category Navigation */
.category-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.category-label {
  font-size: 18px;
  color: #000;
  font-weight: normal;
  margin-right: 10px;
}

.category-btn {
  padding: 4px 10px;
  margin-inline: 10px;
  margin-block: 4px;
  border-radius: 8px;
  border: none;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: normal;
  background: #f0f0f0;
}

.category-btn.blue {
  background: #C4EBFF;
}

.category-btn.yellow {
  background: #FFF0BB;
}

.category-btn.pink {
  background: #FFE9EF;
}

.category-btn.active {
  opacity: 0.8;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-nav .category-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.product-section button{
  cursor: auto;
}

/* Product Section */
.product-section {
  margin-bottom: 60px;
  transition: opacity 0.3s ease;
}

.product-section.hidden {
  display: none;
}

.product-section:last-child {
  border-bottom: none;
}

.product-section-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.product-section-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C0C0C0;
  padding-bottom: 10px;
  position: relative;
}

.product-section-title {
  position: relative;
  margin: 0;
}

.product-section-title::after {
  content: '';
  position: absolute;
  bottom: -19px;
  left: 0;
  width: 130px;
  height: 2px;
  background: #55BAF0;
  z-index: 1;
}

/* Product Description */
.product-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Product Images */
.product-image-container {
  margin: 30px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.product-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.product-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.product-image-item {
  text-align: center;
}

.product-image-item .product-image {
  max-width: 300px;
  margin-bottom: 10px;
}

.image-label {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* Product Table */
.product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 14px;
}

.product-table caption {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 15px;
  color: #000;
}

.product-table thead {
  background: #f5f5f5;
}

.product-table th {
  padding: 12px 8px;
  text-align: left;
  font-weight: bold;
  border: 1px solid #ddd;
  color: #000;
}

.product-table td {
  padding: 12px 8px;
  border: 1px solid #ddd;
  color: #333;
}

.product-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.product-table tbody tr:hover {
  background: #f0f0f0;
}

/* Product Note */
.product-note {
  font-size: 13px;
  color: #666;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 870px) {
  .category-btn {
    padding: 4px 10px;
    margin-inline: 4px;
    margin-block: 4px;
    border-radius: 8px;
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: normal;
    background: #f0f0f0;
}

}
@media (max-width: 768px) {
  .product-image-container {
    flex-direction: column;
    gap: 20px;
  }

  .product-title {
    font-size: 28px;
  }

  .category-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .product-section-title {
    font-size: 16px;
  }

  .product-images-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
  }

  .product-table th,
  .product-table td {
    padding: 8px 6px;
  }

}

@media (max-width: 500px) {
  .category-btn {
    padding: 8px 8px;
    font-size: 10px;
  }

  .product-section-title::after {
    width: 70px;
  }

  .product-inner {
    padding: 50px 6%;
}

}


/* Online Shop Section */
.online-shop-section {
  background: #e7f5ff;
  padding: 0px 5%;
}

.online-shop-inner {
  max-width: 1220px;
  margin: 0 auto;
  background: #fff;
  padding-inline: 10%;
  padding-bottom: 150px;
  text-align: center;
}


.online-shop-label {
  color: #00a0e9;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.online-shop-title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 45px 0;
  color: #000;
}

.online-shop-subtitle {
  color: #333;
  font-size: 16px;
  margin: 0 0 32px 0;
  text-align: center;
}

.online-shop-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.shop-btn {
  background: #49C6A6;
  color: #fff;
  text-decoration: none;
  padding: 22px 36px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 360px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
}

.shop-btn:hover {
  opacity: 0.85;
}

.shop-btn .arrow {
  font-size: 22px;
}

@media (max-width: 500px) {

  .online-shop-title {
    font-size: 26px;
  }

  .online-shop-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .shop-btn {
    min-width: 280px;
    padding: 18px 24px;
    font-size: 16px;
  }
.online-shop-inner {
  padding-bottom: 50px;
}
}

/*各page menu*/
.page-menu {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding-block: 60px;
  background: #fff;
}

.page-menu-link {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: medium;
  position: relative;
  padding-bottom: 8px;
}

.page-menu-link.active {
  border-bottom: none;
}

.page-menu-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .page-menu {
    padding: 50px 5%;
    gap: 30px;
  }

  .page-menu-link {
    font-size: 16px;
  }
}

/* Active tab underline with angled ends */
.page-menu-link {
  position: relative;
}

.page-menu-link.active::after {
  content: "";
  position: absolute;
  left: -25px;               /* extend a bit to show angled cuts */
  right: -25px;
  bottom: 0px;             /* space between text and bar */
  height: 7px;              /* thickness of the bar */
  background: #55BAF0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-menu-link.active::after {
    left: -10px;
    right: -10px;
    bottom: 0px;
    height: 6px;
  }
}
/* Page header title */
.page-section {
  background-color: #e7f5ff;
  padding: 0px 5%;
}

.page-inner {
  max-width: 1220px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 10%;
  position: relative;
}
@media(min-width:3100px){
  .page-inner {
    padding: 50px 4%;}
}

.page-header {
  margin-bottom: 70px;
  text-align: center;
}

.sub-title {
  color: #00a0e9;
  font-size: clamp(12px, 3.3vw, 16px);
  font-weight: bold;
}

.title {
  font-size: clamp(20px, 5.5vw, 30px);
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}
/*com page*/
.compage-menu {
  display: flex;
  justify-content: center;
  gap: 86px;
  padding-block: 60px;
  background: #fff;
}

.compage-menu-link {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: medium;
  position: relative;
  padding-bottom: 8px;
}

.compage-menu-link.active {
  border-bottom: none;
}

.compage-menu-link:hover {
  opacity: 0.7;
}

@media (max-width: 1030px) {
  .compage-menu {
    padding: 50px 5%;
    gap: 40px;
  }

  .compage-menu-link {
    font-size: 16px;
  }
}

/* Active tab underline with angled ends */
.compage-menu-link {
  position: relative;
}

.compage-menu-link.active::after {
  content: "";
  position: absolute;
  left: -25px;               /* extend a bit to show angled cuts */
  right: -15px;
  bottom: 0px;             /* space between text and bar */
  height: 7px;              /* thickness of the bar */
  background: #55BAF0;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .compage-menu-link.active::after {
    left: -20px;
    right: -10px;
    bottom: 0px;
    height: 6px;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  }
}
@media (max-width: 637px) {
  .compage-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
    padding: 30px 10px;
  }

  .compage-menu a {
    text-align: center;
    white-space: nowrap;
    font-size: 14px;
    padding-bottom: 6px;
  }

  .compage-menu a.active::after {
    left: 0px;
    right: 0px;
    bottom: 0;
  }
}
@media (max-width: 637px) and (min-width: 530px) {
  .compage-menu a.active::after {
    left: 30px;
    right: 30px;
    bottom: 0;
  }
}
@media (max-width: 529px) {
  .compage-menu a.active::after {
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.com-message-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
}
.catch {
    text-align: left;
    font-weight: 500;
    font-size: 18px;
}
.message-text {
    text-align: left;
    line-height: 2.2;
    align-self: center;
    font-weight: 400;
}
.signature-text {
  text-align: left;
  margin-left: auto;
  font-weight: 500;
}
.com-row {
  display: flex;
  align-items: center; 
  margin-bottom: 12px;
  gap: 20px;
}
.com-label-dt {
  flex: 0 0 230px;
  display: flex;
  align-items: center;
  background-color: #54BAF0;
  color: #fff;
  padding: 8px;
  justify-content: center;
  font-size: 16px;
}
.vision-text {
    text-align: left;
    font-weight: 500;
    font-size: 20px;
}
.production-label {
  flex: 0 0 230px;
  display: flex;
  align-items: center;
  background-color: #54BAF0;
  color: #fff;
  padding: 10px;
  justify-content: center;
  margin-top: 60px;
}
.business-text {
  text-align: left;
  margin-top: 30px;
  line-height: 2;
}
.quality-signature {
    text-align: right;
    margin: 20px 0;
}
.com-info-dl {
    max-width: 80%;
    margin: auto;
}
.com-info {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}
.com-info::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 140px;
  height: 2px;
  background: #55BAF0;
  z-index: 1;
}
.com-info:last-child::after {
  display: none;
}
.com-info:not(:last-child) {
    border-bottom: 1px solid #C0C0C0;
}
.com-info-dt {
  flex: 0 0 136px;
  display: flex;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
}
.com-info-dd p {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
span.span-history {
    font-size: min(3vw, 14px);
    display: block;
    margin: auto;
    max-width: 80%;
}
span.era {
  font-size: 12px;
  margin-top: 4px;
}
.company-name {
    font-size: min(4.2vw, 20px);
    font-weight: 600;
}

.company-post {
    font-size: min(3vw, 16px);
    font-weight: 500;
}
.access-closeup-image-item {
    text-align: center;
    margin-top: 20px;
}
.access-text {
    font-size: min(3vw, 14px);
}
@media(max-width:1111px){
  .com-row {
    display: block;
    margin-bottom: 40px;
 }
  .vision-text {
    text-align: center;
 }
 .com-info-dl{
   max-width: 100%;
 }
  .com-info {
    display: block;
 }
  dd.com-info-dd {
    padding: 10px 0;
 }
}

@media (max-width: 768px) {
  .vision-text {
    font-size: 16px;
    margin-top: 10px;
 }
}
/*recruit-page*/
h1.title {
    font-size: clamp(24px, 5.5vw, 34px);
    text-align: center;
}
.recruit-menu {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.recruit-link {
  position: relative;
  width: 30%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border:1px solid #54BAF0;
  text-decoration: none;
  color: #333;
}
.recruit-link:nth-of-type(4) {
  margin-left: 17.5%;
}
.recruit-link:nth-of-type(5) {
  margin-right: 17.5%;
}
.recruit-link:nth-of-type(n+4) {
  margin-top: 30px;
}
.recruit-link::after {
    content: '→';
    position: absolute;
    right: 5px;
    transform: scale(0.8);
    color: #54BAF0;
}
.recruit-job {
  font-weight: 600;
  text-align: left;
  font-size: clamp(16px,5vw,18px);
}
.recruit-row {
  display: flex;
  align-items: center; 
  margin-bottom: 12px;
  gap: 20px;
}
.recruit-label-dt {
  flex: 0 0 235px;
  display: flex;
  align-items: center;
  background-color: #54BAF0;
  color: #fff;
  padding: 6px;
  justify-content: center;
  font-size: 16px;
}
.information-session-text {
    text-align: left;
    font-weight: 500;
}
.recruit-info {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}
.recruit-info::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 140px;
  height: 2px;
  background: #55BAF0;
  z-index: 1;
}
.recruit-info {
    border-bottom: 1px solid #C0C0C0;
}
.recruit-info-dt {
  flex: 0 0 136px;
  display: flex;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
}
.recruit-info-dd {
    text-align: left;
}
.recruit-wrapper {
    max-width: 80%;
    margin: 0 auto 40px;
}
.recruitform {
    display: flex;
    padding: 10px 0;
    align-items: center;
}
.recruitform-dt {
  flex: 0 0 120px;
  display: flex;
  font-weight: 600;
}
.recruitform-dl {
    max-width: 70%;
    margin: auto;
}
.recruitform-wrapper {
    border: 2px solid #54BAF0;
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 20px;
}
.recruitform-title {
    font-weight: 600;
    color: #54BAF0;
    font-size: 18px;
    text-align: center;
}
.recruitform-text {
  padding: 10px 0 15px;
  text-align: center;
}
.recruitform-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.recruitform-row {
  display: flex;
  gap: 24px;
  width: 320px;
  text-align: left;
}
.recruitform-row .label {
  width: 6em;
  font-weight: bold;
}
.recruit-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.recruit-btn {
  text-align: center;
  position: relative;
  background: #49C6A6;
  color: #fff;
  text-decoration: none;
  padding: 10px 36px;
  border-radius: 12px;
  font-weight: bold;
  gap: 16px;
  min-width: 580px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
}

.recruit-btn:hover {
  opacity: 0.85;
}
.recruit-btn::after {
  position: absolute;
  content:'→';
  transform: scale(1.4);
  right: 18px;
  top: 24px;
}
.recruit-line2 {
  font-size: 20px;
}
.recruit-line1 {
  font-size: 14px;
}
.flow-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.flow-label {
    display: flex;
    min-width: 260px;
    height: 60px;
    background: #54BAF0;
    font-size: 18px;
    color: #fff;
}
.flow-number {
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.flow-title {
    display: flex;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}
.flow-number::after {
  content: '';
  height: 50px;
  width: 1px;
  background: #fff;
  right: 2px;
  position: absolute;
}
.member-voice-text {
    text-align: center;
}
.profile-text {
    font-size: 16px;
    line-height: 1.8em;
}
.recruit-voice-section {
  background-color: #e7f5ff;
  padding: 0px 5%;
}
/*blue*/
.recruit-bluepage-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 50px 10%;
  background: #C4EBFF;
}
.profile-blue-group {
    font-size: 16px;
    padding-bottom: 10px;
}
.profile-blue-name {
    font-size: 18px;
}
.blue-career {
    font-weight: 600;
    color: #54BAF0;
    font-size: 18px;
    margin-bottom: 20px;
}
.profile-blue-block {
    line-height: 1.8;
}
.profile-blue-row {
    border-bottom: 1px solid #54BAF0;
    padding-bottom: 20px;
}
.profile-blue-info {
    display: flex;
    gap: 20px;
}
.profile-blue-image {
  flex: 4;
  min-width: 250px;
}

.profile-blue-details {
  flex: 6;
}
.profile-blue-block {
    background: #fff;
    padding: 20px;
    border: 2px solid #54BAF0;
}
.blue-bubble:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 40px solid #54BAF0;
}
.blue-bubble {
    color: #fff;
    position: relative;
    display: flex;
    width: fit-content;
    height: 84px;
    min-width: 200px;
    padding: 0 20px;
    background: #54BAF0;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: min(4vw, 18px);
    font-weight: 600;
}
.profile-blue-reason {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
}
.blue-flow-title {
    background: #54BAF0;
    text-align: center;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
}
.blue-timeline .blue-timeline-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blue-timeline .blue-timeline-item {
    padding: 0 0 1.5em;
    position: relative;
}
.blue-timeline .blue-timeline-number {
    background-color: #C4EBFF;
    border-radius: 50%;
    color: #fff;
    height: 100px;
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.blue-timeline .blue-timeline-item:not(:last-child):before {
    border-left: 3px solid #55BAF0;
    content: "";
    display: block;
    height: 100%;
    left: 50px;
    position: absolute;
    top: 0;
}
.__label {
    display: block;
    font-size: 15px;
    padding-bottom: 1px;
    color: #333;
    text-align: center;
    font-weight: 600;
}
.blue-timeline {
    max-width: 80%;
    margin: 20px auto;
}
.blue-timeline-title {
    color: #55BAF0;
}
.blue-timeline-title p {
  color: #333;
  font-size: 14px;
}
.blue-page-inner-last {
    background: #54BAF0;
    max-width: 1220px;
    margin: 0 auto;
    padding: 50px 6%;
}
.blue-row-last {
  display: flex;
  gap: 30px;
  align-items: center;
  line-height: 2em;
}
.blue-row-last-main {
  flex: 2.5;
  color: #fff;
}
.blue-row-last-side {
  background: #fff;
  flex: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  text-align: center;
  color: #55BAF0;
  font-weight: 600;
}
/*pink*/
.recruit-pinkpage-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 50px 10%;
  background: #FFE9EF;
}

.profile-pink-group {
    font-size: 16px;
    padding-bottom: 10px;
}

.profile-pink-name {
    font-size: 18px;
}

.pink-career {
    font-weight: 600;
    color: #F78BAB;
    font-size: 18px;
    margin-bottom: 20px;
}

.profile-pink-block {
    line-height: 1.8;
}

.profile-pink-row {
    border-bottom: 1px solid #F78BAB;
    padding-bottom: 20px;
}

.profile-pink-info {
    display: flex;
    gap: 20px;
}

.profile-pink-image {
  flex: 4;
  min-width: 250px;
}

.profile-pink-details {
  flex: 6;
}

.profile-pink-block {
    background: #fff;
    padding: 20px;
    border: 2px solid #F78BAB;
}

.pink-bubble:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 40px solid #F78BAB;
}

.pink-bubble {
    color: #fff;
    position: relative;
    display: flex;
    width: fit-content;
    height: 84px;
    min-width: 200px;
    padding: 0 20px;
    background: #F78BAB;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: min(4vw, 18px);
    font-weight: 600;
}

.profile-pink-reason {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
}

.pink-flow-title {
    background: #F78BAB;
    text-align: center;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
}

.pink-timeline .pink-timeline-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pink-timeline .pink-timeline-item {
    padding: 0 0 1.5em;
    position: relative;
}

.pink-timeline .pink-timeline-number {
    background-color: #FFE9EF;
    border-radius: 50%;
    color: #fff;
    height: 100px;
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.pink-timeline .pink-timeline-item:not(:last-child):before {
    border-left: 3px solid #F78BAB;
    content: "";
    display: block;
    height: 100%;
    left: 50px;
    position: absolute;
    top: 0;
}

.__label {
    display: block;
    font-size: 15px;
    padding-bottom: 1px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.pink-timeline {
    max-width: 80%;
    margin: 20px auto;
}

.pink-timeline-title {
    color: #F78BAB;
}

.pink-timeline-title p {
  color: #333;
  font-size: 14px;
}

.pink-page-inner-last {
    background: #F78BAB;
    max-width: 1220px;
    margin: 0 auto;
    padding: 50px 6%;
}

.pink-row-last {
  display: flex;
  gap: 30px;
  align-items: center;
  line-height: 2em;
}

.pink-row-last-main {
  flex: 2.5;
  color: #fff;
}

.pink-row-last-side {
  background: #fff;
  flex: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  text-align: center;
  color: #F78BAB;
  font-weight: 600;
}
/*green*/
.recruit-greenpage-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 50px 10%;
  background: #CFF2C7;
}

.profile-green-group {
    font-size: 16px;
    padding-bottom: 10px;
}

.profile-green-name {
    font-size: 18px;
}

.green-career {
    font-weight: 600;
    color: #49C6A6;
    font-size: 18px;
    margin-bottom: 20px;
}

.profile-green-block {
    line-height: 1.8;
}

.profile-green-row {
    border-bottom: 1px solid #49C6A6;
    padding-bottom: 20px;
}

.profile-green-info {
    display: flex;
    gap: 20px;
}

.profile-green-image {
  flex: 4;
  min-width: 250px;
}

.profile-green-details {
  flex: 6;
}

.profile-green-block {
    background: #fff;
    padding: 20px;
    border: 2px solid #49C6A6;
}

.green-bubble:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 40px solid #49C6A6;
}

.green-bubble {
    color: #fff;
    position: relative;
    display: flex;
    width: fit-content;
    height: 84px;
    min-width: 200px;
    padding: 0 20px;
    background: #49C6A6;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: min(4vw, 18px);
    font-weight: 600;
}

.profile-green-reason {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
}

.green-flow-title {
    background: #49C6A6;
    text-align: center;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
}

.green-timeline .green-timeline-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.green-timeline .green-timeline-item {
    padding: 0 0 1.5em;
    position: relative;
}

.green-timeline .green-timeline-number {
    background-color: #CFF2C7;
    border-radius: 50%;
    color: #fff;
    height: 100px;
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.green-timeline .green-timeline-item:not(:last-child):before {
    border-left: 3px solid #49C6A6;
    content: "";
    display: block;
    height: 100%;
    left: 50px;
    position: absolute;
    top: 0;
}

.__label {
    display: block;
    font-size: 15px;
    padding-bottom: 1px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.green-timeline {
    max-width: 80%;
    margin: 20px auto;
}

.green-timeline-title {
    color: #49C6A6;
}

.green-timeline-title p {
  color: #333;
  font-size: 14px;
}

.green-page-inner-last {
    background: #49C6A6;
    max-width: 1220px;
    margin: 0 auto;
    padding: 50px 6%;
}

.green-row-last {
  display: flex;
  gap: 30px;
  align-items: center;
  line-height: 2em;
}

.green-row-last-main {
  flex: 2.5;
  color: #fff;
}

.green-row-last-side {
  background: #fff;
  flex: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  text-align: center;
  color: #49C6A6;
  font-weight: 600;
}
/*purple*/
.recruit-purplepage-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 50px 10%;
  background: #E2DDFD;
}

.profile-purple-group {
    font-size: 16px;
    padding-bottom: 10px;
}

.profile-purple-name {
    font-size: 18px;
}

.purple-career {
    font-weight: 600;
    color: #8F80E4;
    font-size: 18px;
    margin-bottom: 20px;
}

.profile-purple-block {
    line-height: 1.8;
}

.profile-purple-row {
    border-bottom: 1px solid #8F80E4;
    padding-bottom: 20px;
}

.profile-purple-info {
    display: flex;
    gap: 20px;
}

.profile-purple-image {
  flex: 4;
  min-width: 250px;
}

.profile-purple-details {
  flex: 6;
}

.profile-purple-block {
    background: #fff;
    padding: 20px;
    border: 2px solid #8F80E4;
}

.purple-bubble:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 40px solid #8F80E4;
}

.purple-bubble {
    color: #fff;
    position: relative;
    display: flex;
    width: fit-content;
    height: 84px;
    min-width: 200px;
    padding: 0 20px;
    background: #8F80E4;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: min(4vw, 18px);
    font-weight: 600;
}

.profile-purple-reason {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
}

.purple-flow-title {
    background: #8F80E4;
    text-align: center;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
}

.purple-timeline .purple-timeline-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.purple-timeline .purple-timeline-item {
    padding: 0 0 1.5em;
    position: relative;
}

.purple-timeline .purple-timeline-number {
    background-color: #E2DDFD;
    border-radius: 50%;
    color: #fff;
    height: 100px;
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.purple-timeline .purple-timeline-item:not(:last-child):before {
    border-left: 3px solid #8F80E4;
    content: "";
    display: block;
    height: 100%;
    left: 50px;
    position: absolute;
    top: 0;
}

.__label {
    display: block;
    font-size: 15px;
    padding-bottom: 1px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.purple-timeline {
    max-width: 80%;
    margin: 20px auto;
}

.purple-timeline-title {
    color: #8F80E4;
}

.purple-timeline-title p {
  color: #333;
  font-size: 14px;
}

.purple-page-inner-last {
    background: #8F80E4;
    max-width: 1220px;
    margin: 0 auto;
    padding: 50px 6%;
}

.purple-row-last {
  display: flex;
  gap: 30px;
  align-items: center;
  line-height: 2em;
}

.purple-row-last-main {
  flex: 2.5;
  color: #fff;
}

.purple-row-last-side {
  background: #fff;
  flex: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  text-align: center;
  color: #8F80E4;
  font-weight: 600;
}
.lastpage-inner {
    max-width: 1220px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 10%;
    padding-bottom: 80px;
    position: relative;  
}
.accordion {
  border: 2px solid #54BAF0;
  border-radius: 15px;
  padding: 10px 30px;
  margin-bottom: 40px;
}
.accordion-item {
  border-radius: 5px;
  margin-bottom: 1em;
  overflow: hidden;
}
.accordion-toggle {
  display: none;
}
.accordion-title {
  border-bottom: 1px solid;
  display: block;
  padding: 1em;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  font-size: clamp(12px, 3vw, 18px);
}
.accordion-title::after {
  content: "▼";
  position: absolute;
  right: 1em;
  font-size: 1.2em;
  transition: transform 0.3s;
  color: #54BAF0;
  top: 50%;
  transform: translateY(-50%)
}
.accordion-toggle:checked + .accordion-title::after {
  content: "▼";
  transform: translateY(-50%) rotate(180deg);
}
.accordion-content {
  display: flex;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding: 0 1em;
  background-color: #fff;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: clamp(14px, 3vw, 18px);
  align-items: center;
}
.accordion-toggle:checked + .accordion-title + .accordion-content {
  max-height: 200px;
  padding: 1em;
}
.faq-q {
    font-size: clamp(16px, 4vw, 30px);
    margin-right: 10px;
}
.faq-a {
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 600;
    color: #54BAF0;
    margin: 0 5px 0 5px;
}

@media(max-width:1100px) {
  .blue-row-last {
    gap: 10px;
    flex-direction: column;
    align-items: normal;
  }
  .blue-row-last-side {
  line-height: 1.5;
  }
 .pink-row-last {
    gap: 10px;
    flex-direction: column;
    align-items: normal;
  }
  .pink-row-last-side {
  line-height: 1.5;
  }
   .green-row-last {
    gap: 10px;
    flex-direction: column;
    align-items: normal;
  }
  .green-row-last-side {
  line-height: 1.5;
  }
 .purple-row-last {
    gap: 10px;
    flex-direction: column;
    align-items: normal;
  }
  .purple-row-last-side {
  line-height: 1.5;
  }
}
@media(max-width:1000px) {
  .recruit-menu {
  font-size: 14px;
  }
  .profile-blue-row {
    text-align:center;
  }
  .profile-blue-group {
    display: inline-block;
    text-align: left;
  }
  .profile-blue-info {
    flex-direction: column;
}
  .profile-blue-image {
    width: 70%; 
    margin: 0 auto;
  }
  .profile-blue-details {
    display:inline-block;
    text-align:left;
  }
  .blue-career {
    text-align:center;
  }
  .profile-blue-reason {
    gap: 20px;
    flex-direction: column;
  }
  .recruit-bluepage-inner {
    padding: 50px 5%;
  }
  .blue-bubble {
    height: 70px;
}
  .blue-bubble:before {
   display: none;
}
  .profile-pink-row {
  text-align: center;
}
.profile-pink-group {
  display: inline-block;
  text-align: left;
}
.profile-pink-info {
  flex-direction: column;
}
.profile-pink-image {
  width: 70%;
  margin: 0 auto;
}
.profile-pink-details {
  display: inline-block;
  text-align: left;
}
.pink-career {
  text-align: center;
}
.profile-pink-reason {
  gap: 20px;
  flex-direction: column;
}
.recruit-pinkpage-inner {
  padding: 50px 5%;
}
.pink-bubble {
  height: 70px;
}
.pink-bubble:before {
  display: none;
 }
 .profile-green-row {
  text-align: center;
}
.profile-green-group {
  display: inline-block;
  text-align: left;
}
.profile-green-info {
  flex-direction: column;
}
.profile-green-image {
  width: 70%;
  margin: 0 auto;
}
.profile-green-details {
  display: inline-block;
  text-align: left;
}
.green-career {
  text-align: center;
}
.profile-green-reason {
  gap: 20px;
  flex-direction: column;
}
.recruit-greenpage-inner {
  padding: 50px 5%;
}
.green-bubble {
  height: 70px;
}
.green-bubble:before {
  display: none;
 }
.profile-purple-row {
  text-align: center;
}
.profile-purple-group {
  display: inline-block;
  text-align: left;
}
.profile-purple-info {
  flex-direction: column;
}
.profile-purple-image {
  width: 70%;
  margin: 0 auto;
}
.profile-purple-details {
  display: inline-block;
  text-align: left;
}
.purple-career {
  text-align: center;
}
.profile-purple-reason {
  gap: 20px;
  flex-direction: column;
}
.recruit-purplepage-inner {
  padding: 50px 5%;
}
.purple-bubble {
  height: 70px;
}
.purple-bubble:before {
  display: none;
}
}
@media(max-width:996px) {
  .recruit-info {
    display: block;
}
  .recruit-label-dt {
    flex: 0 0 130px;
  }
  .recruitform-dt {
    flex: 0 0 90px;
  }
}
@media(max-width:906px) {
  .recruit-row {
    display: block;
  }
  .information-session-text {
    margin-top: 10px;
    text-align: center;
  }
  .recruitform {
    display: block;
  }
}
@media(max-width:925px) {
  .flow-group {
    display: block;
  }
  .flow-label {
    margin-bottom: 10px;
    }
  .flow-title {
    font-size:16px;
  }
}
@media(min-width:835px){
.benefit-img {
    margin: auto;
    display: block;
}
}
@media (max-width: 768px) {
    .profile-text {
        font-size: 14px;
    }
}
@media(max-width:716px) {
  .accordion {
    padding: 10px 10px;
}
}
@media (max-width: 716px) {
  .recruit-btn {
    min-width: 350px;
    padding-top: 6px;
  }
  .recruit-line1 {
    font-size: 13px;
  }
  .recruit-line2 {
    font-size: 17px;
    padding-top: 6px;
  }
}
@media (max-width: 668px) {
  .recruitform-row {
    gap: 6px;
    justify-content: center;
  }
  .recruit-menu {
    display: block;
  }
  .recruit-link {
    width: 50%;
    margin: auto;
    margin-bottom: 10px;
  }
  .recruit-link:nth-of-type(n+4) {
    margin: auto;
    margin-bottom: 10px;
  }
  /* timeline å…±é€š */
   .blue-timeline,
  .pink-timeline,
  .green-timeline,
  .purple-timeline {
    max-width: 100%;
  }
.blue-timeline .blue-timeline-number,
  .pink-timeline .pink-timeline-number,
  .green-timeline .green-timeline-number,
  .purple-timeline .purple-timeline-number {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
  }

  .blue-timeline .blue-timeline-head,
  .pink-timeline .pink-timeline-head,
  .green-timeline .green-timeline-head,
  .purple-timeline .purple-timeline-head {
    gap: 10px;
  }

  .blue-timeline .blue-timeline-item:not(:last-child)::before,
  .pink-timeline .pink-timeline-item:not(:last-child)::before,
  .green-timeline .green-timeline-item:not(:last-child)::before,
  .purple-timeline .purple-timeline-item:not(:last-child)::before {
    left: 37px;
  }
  .__label {
    font-size: 12px;
    line-height: 1.3;
  }
}
/*sustainability page*/
sub {
  font-size: 0.75em;
  vertical-align: baseline;
  position: relative;
 }
.sustainabilitypage-menu {
  display: flex;
  justify-content: center;
  gap: 86px;
  padding-block: 60px;
  background: #fff;
}

.sustainabilitypage-menu-link {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: medium;
  position: relative;
  padding-bottom: 8px;
}

.sustainabilitypage-menu-link.active {
  border-bottom: none;
}

.sustainabilitypage-menu-link:hover {
  opacity: 0.7;
}

@media (max-width: 1030px) {
  .sustainabilitypage-menu {
    padding: 50px 5%;
    gap: 40px;
  }

  .sustainabilitypage-menu-link {
    font-size: 16px;
  }
}




.sustainabilitypage-menu-link {
  position: relative;
}

.sustainabilitypage-menu-link.active::after {
  content: "";
  position: absolute;
  left: -25px;               /* extend a bit to show angled cuts */
  right: -15px;
  bottom: 0px;             /* space between text and bar */
  height: 7px;              /* thickness of the bar */
  background: #55BAF0;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .sustainabilitypage-menu-link.active::after {
    left: -20px;
    right: -10px;
    bottom: 0px;
    height: 6px;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  }
}
@media (max-width: 637px) {
  .sustainabilitypage-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    padding: 30px 10px;
  }

  .sustainabilitypage-menu a {
    text-align: center;
    white-space: nowrap;
    font-size: 14px;
    padding-bottom: 6px;
  }

  .sustainabilitypage-menu a.active::after {
    left: 0px;
    right: 0px;
    bottom: 0;
  }
}
@media (max-width: 637px) and (min-width: 530px) {
  .sustainabilitypage-menu a.active::after {
    left: 30px;
    right: 30px;
    bottom: 0;
  }
}
@media (max-width: 529px) {
  .sustainabilitypage-menu a.active::after {
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.sustainability-message {
    padding: 20px 0;
    line-height: 1.8;
}
.factory-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px;
}

.factory-btn {
  background: #49C6A6;
  color: #fff;
  text-decoration: none;
  padding: 22px 36px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 360px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
}

.factory-btn:hover {
  opacity: 0.85;
}

.factory-btn .arrow {
  font-size: 22px;
}
.corporate {
    margin: 40px 0;
}
.about_yoshi {
    margin: 40px 0;
}
.about_volunteer {
    padding-top: 20px;
}
p.reeden-text {
    margin: 20px 0;
}
.volunteer-image {
    display: flex;
    gap: 10px;
}
.volunteer-image img {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .sustainability-message {
    font-size: 14px;
  }
}
.corporate-columns-inner {
  display: flex;
  gap: 20px;
}
.corporate-text {
  flex: 6;
  line-height: 1.7;
}
.corporate-image {
  flex: 4;
}
.corporate-title {
    font-weight: 600;
    margin: 10px 0;
    font-size: min(5.5vw, 18px);
}
.corporate-group {
    margin: 20px 0 40px;
}
span.certification-text {
    font-size: 0.7rem;
    display: block;
    margin-top: 20px;
}

.evaluation-group {
    margin: 20px 0 40px;
}
@media(max-width:600px){
  .corporate-columns-inner {
    flex-direction:column;
}
}
@media (max-width: 500px) {
  .factory-btn {
    min-width: 280px;
    padding: 18px 24px;
    font-size: 16px;
  }
}
/*copyright page*/
.copyright-text {
    line-height: 1.8;
    padding: 20px 0 40px;
}
@media (max-width: 768px) {
  .copyright-text {
    font-size: 14px
  }
}
/*factory page*/
/*factory-rest*/
/*
.factory-rest-wrapper {
    display: none;
}
*/
/*factory-reception*/
.factory-reception-wrapper
 {
    display: none;
}

.factory-rest-title {
    text-align: center;
    margin-bottom: 20px;
    color: red;
    font-size: clamp(16px, 4.5vw, 24px);
}
.factory-rest-text {
    margin-bottom: 20px;
}
img.factory-image {
    display: block;
    margin: 20px auto;
    max-width: 70%;
    height: auto;
}
.factory-info-box {
  max-width: 1100px;
  background: #f9f9f9;
  margin: 0 auto;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.factory-info-box h2 {
   font-size:1.1em;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
}
.factory-title {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
ul.kids-thoughts {
    margin: 10px 0 20px;
}
.factory-img-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.factory-img-group img {
  width: 100%;
  height: auto;
  display: block;
}
.factory-span {
    font-size: clamp(12px, 2vw, 14px);
    letter-spacing: 0;
}
.factory-flow-container {
    margin-top: 20px;
}
.factorytour-container {
    max-width: 85%;
    margin: auto;
    padding: 40px 0;
}
.factoryform {
    display: flex;
    padding: 10px 0;
    align-items: flex-start;
}
.factoryform-dt {
  flex: 0 0 120px;
  display: flex;
  font-weight: 600;
}
.factoryform-dl {
    max-width: 80%;
    margin: auto;
}
.factoryform-wrapper {
    border: 2px solid #54BAF0;
    border-radius: 10px;
    padding: 10px 0;
    margin: 20px 0 40px;
}
.factory-public-dl {
    max-width: 80%;
    margin: auto;
}
.factory-public {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}
.factory-public::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 140px;
  height: 2px;
  background: #55BAF0;
  z-index: 1;
}
.factory-public:last-child::after {
  display: none;
}
.factory-public:not(:last-child) {
    border-bottom: 1px solid #C0C0C0;
}
.factory-public-dt {
  flex: 0 0 136px;
  display: flex;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
}
.factory-public-item {
  text-indent: -1em;
  padding-left: 1em;
  margin: 14px 0;
}
.factory-public-tel {
    text-align: left;
    display: inline-block;
}
.factory-public-web {
    font-weight: 600;
    margin-bottom: 5px;
}
.factory-center {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.factory-public-container {
    margin: 30px 0;
    border: 1px solid #54BAF0;
    border-radius:10px;
    text-align: center;
    display: block;
    padding: 10px 10px;
}
.factorybutton-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  justify-content: center;
}
.publicform-btn,
.access-btn {
  background:#49C6A6;
  padding: 16px 32px 16px 0px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  width: 400px;
  text-align: center;
  position: relative;
}
.publicform-btn::after,
.access-btn::after {
    position: absolute;
    content: '→';
    right: 18px; 
}

.factory-about-container {
    border: 1px solid #54BAF0;
    border-radius: 10px;
    padding: 25px;
    margin: 15px 0 20px;
}
.ainoritaxi-text {
    font-weight: 600;
}
.shuttle-contact-label {
    font-weight: 600;
}
p.shuttle-contact-label {
    font-weight: 600;
}
.taxi-accordion {
  border-radius: 15px;
  padding: 30px;
}
.taxi-accordion-item {
  margin-bottom: 1em;
  overflow: hidden;
}
.taxi-accordion-toggle {
  display: none;
}
.taxi-accordion-title {
  display: block;
  padding: 1em;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  color: #fff;
  background: #54BAF0;
  font-size: min(3.3vw, 18px);
}
.taxi-accordion-title::after {
  content: "▼";
  color: #fff;
  position: absolute;
  right: 1em;
  font-size: 1.2em;
  transition: transform 0.3s;
  top: 50%;
  transform: translateY(-50%)
}
.taxi-accordion-toggle:checked + .taxi-accordion-title::after {
  content: "▼";
  transform: translateY(-50%) rotate(180deg);
}
.taxi-accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1em;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: clamp(14px, 3vw, 18px);
}
.taxi-accordion-toggle:checked + .taxi-accordion-title + .taxi-accordion-content {
  max-height: 1500px;
  padding: 1em;
}
p.factory-public-sample {
    margin-bottom: 20px;
}

span.factory-red {
    color: red;
    display: block;
    margin: 20px 0 10px;
}
p.shuttle-example-label {
    margin-top: 20px;
}
.shuttle-info ul {
    margin-top: 20px;
}

p.shuttle-contact-item {
    margin-top: 20px;
}
.taxi-title {
    background: #54BAF0;
    display: inline-block;
    color: #fff;
    padding: 5px 20px;
    border-radius: 10px;
    margin: 20px 0 10px;
}
.shuttle-info li {
    font-size: min(4vw,16px);
}
.shuttle-info a {
  word-break: break-all;
}

@media(max-width:1145px){
  .com-info-dl,
span.span-history {
   max-width:90%;
 }
}
@media(max-width:1111px){
 .factory-public-dl {
   max-width: 100%;
 }
  .factory-public-dt {
    flex: 0;
  }
  .factory-public {
    flex-direction:column;
    gap:5px;
 }
}
@media screen and (max-width: 925px) {
  .factorytour-container {
    max-width: 85%;
    margin: auto;
    padding: 40px 0;
}
}
@media(max-width:898px) {
  .factoryform {
    flex-direction:column;
    gap:5px;
  }
  .factoryform-dt {
    flex: 0;
  }
.taxi-accordion {
        padding: 30px 0 10px;
    }
}
@media (max-width: 768px) {
    ul.kids-thoughts {
    font-size: 14px;
}
  span.factory-tel {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
     .publicform-btn,
     .access-btn {
        width: 300px;
        font-size: 12px;
    }
}

/*contact page*/
.contact-text {
    margin-top: 14px;
}
.contact-columns-inner {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}
.contact-column {
    flex: 1;
}
.contact-item {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.4;
    padding: 10px 0;
}
.contact-red {
    color: red;
    font-weight: 600;
}
.contact-btn {
  background: #49C6A6;
  color: #fff;
  text-decoration: none;
  padding: 22px 36px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
}

.shop-btn:hover {
  opacity: 0.85;
}

.shop-btn .arrow {
  font-size: 22px;
}
@media(max-width:829px){
  .contact-btn {
    font-size: 15px;
    padding: 22px 14px;
  }
}
@media(max-width:678px){
  .contact-columns-inner {
    flex-direction: column;
    }
  .contact-btn {
    height:80px;
  }
}

/*common css*/
a {
    color: #333;
}
p {
    letter-spacing: 1px;
    line-height: 1.6em;
}
.blue-label-title {
    background: #54BAF0;
    color: #fff;
    display: inline-block;
    padding: 5px 20px;
    font-size: clamp(14px, 2.5vw, 18px);
}
.sp-only {
  display: none;
}
@media(max-width:768px){
    p {
        font-size: 14px;
    }
  .sp-only {
    display: block;
  }
  .page-inner {
  padding: 50px 5%;
  position: relative;
}
 .page-header {
    margin-bottom: 40px;
}
}
/*news*/
.newslist-btn {
    position: relative;
    width: 40%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #54BAF0;
    text-decoration: none;
    color: #333;
    margin: auto;
    font-size:min(3.5vw,16px);
}
.newslist-btn::after {
    content: '→';
    position: absolute;
    right: 5px;
    transform: scale(0.8);
    color: #54BAF0;
}
span.category {
    padding: 3px 20px;
    border-radius: 15px;
    font-size: min(3vw,14px);
    margin-right: 10px;
    width: fit-content; 
}
span.factory {
    background: #E0F4FF;
}
span.news {
      background: #FFC5D9;
}
span.reedenyoshi {
      background: #90E6D9;
}
h2.news-title {
    margin-bottom: 20px;
    font-size: clamp(16px,4vw,24px);
}
li a {
  color: #333;
  text-decoration: none;
}
@media (max-width: 668px) {
    .newslist-btn {
        width: 80%;
    }
}
@media (max-width: 500px) {
    .enter {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        width: auto;
        gap: 4px;
    }
}
/*topmovie*/
.topmovie-wrap {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.topmovie-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .topmovie-wrap {
    height: 80vh;
  }
}
@media (max-width: 500px) {
  .button-container {
    position: absolute;
    top: -185px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*recruit*/
.recruitmovie-wrap {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.recruitmovie-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .recruitmovie-wrap {
    height: 100%;
  }
  .recruitmovie-wrap video {
    height: 200px;
  }
}
/*pagetop button*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #b7b6b6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #b7b6b6;
    border-right: 3px solid #b7b6b6;
    transform: translateY(20%) rotate(-45deg);
}
.pagetop__arrow {
    transition: transform 0.45s cubic-bezier(.33,1,.68,1);
}
.pagetop:hover .pagetop__arrow {
    transform: translateY(5%) rotate(-45deg);
}
@media(max-width:450px){
  .pagetop {
     display: none;
}
}
/*product*/
.product-intro {
    font-size: min(5.3vw,18px);
    font-weight: 600;
    border-bottom: 1px solid #C0C0C0;
    padding-bottom: 10px;
    position: relative;
}
.product-intro::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 130px;
  height: 2px;
  background: #55BAF0;
  z-index: 1;
}
.product-container {
    padding-bottom: 2.5rem;
}
.product-text {
    padding-bottom: 5px;
    padding-top: 14px;
}
.product-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.pdf-link-reeden {
    font-size: min(3vw,14px);
    text-decoration: none;
    color: #333;
    background-color: #E0F4FF;
    padding: 3px 10px;
}

.product-container:last-of-type .product-intro {
    border-bottom: none;
}
.product-container:last-of-type .product-intro::after {
    display: none;
}
.product-header {
    font-size: min(5.3vw,18px);
    font-weight: 600;
    border-bottom: 1px solid #C0C0C0;
    padding-bottom: 10px;
    position: relative;
}
.product-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 130px;
  height: 2px;
  background: #55BAF0;
  z-index: 1;
}
/*404page*/
span.caution {
    font-size: min(4vw, 20px);
    display: block;
}
.notfound-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px;
}

.notfound-btn {
  background: #49C6A6;
  color: #fff;
  text-decoration: none;
  padding: 22px 36px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 360px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
}

.notfound-btn:hover {
  opacity: 0.85;
}

.notfound-btn .arrow {
  font-size: 22px;
}
@media (max-width: 500px) {
  .notfound-btn {
    min-width: 230px;
    padding: 18px 24px;
    font-size: 16px;
  }
}
/*sitemap*/
li.sitemap-item.has-children {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sitemap-item {
  list-style: none;
}
.sitemap-item > a {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  text-decoration: none;
}
.sitemap-item .children {
  padding: 0;
  margin: 0;
}
.children li {
    padding: 5px 0;
}
.sitemap-item .children a {
  font-size: 14px;
  text-decoration: none;
}
.sitemap-item > a {
    font-size: min(5.3vw,16px);
    font-weight: 600;
    border-bottom: 1px solid #C0C0C0;
    padding-bottom: 10px;
    position: relative;
    display: block;
    width: 100%;
}
.sitemap-item > a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 130px;
  height: 2px;
  background: #55BAF0;
  z-index: 1;
}
@media (max-width: 900px) {
  .sitemap-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .sitemap-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/*fotter sitemap*/
.fotternav-container .footer__nav {
    display: flex;
    justify-content: center;
    font-size:14px;
    margin-top: 30px;
  }
.footer__nav a {
  color:#fff;
}

ul.footer__nav li{
  border-right:1px solid;
  padding: 0 1em;
}
ul.footer__nav li:last-child {
  border-right: none;
}
@media(max-width:400px){
  .footer__nav a {
    font-size:.8rem;
  }
}
/*compage map */
.map-column-left {
  flex: 3;
}
.map-column-right {
  flex: 7;
  width: 100%;
}
.map-columns-inner {
    display: flex;
}
img.access-image {
    object-fit: contain;
    width: 30%;
}
img.access-map-image {
    object-fit: contain;
    width: 70%;
}
img.access-closeup-image {
    object-fit: contain;
    width: 80%;
}
/*header button*/
.cIcon {
  display: inline-block;
  position: relative;
  overflow: hidden; 
  border-radius: 50%;
  vertical-align: middle;
}

.cIconFrame {
  position: absolute;
  inset: 0;
  border: 1px solid currentColor !important;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 2;
  pointer-events: none;
}

.cIconBody {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cIconBody svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.cIcon._m { 
  width: 24px; 
  height: 24px; 
}

.cIcon._l { 
  width: 32px; 
  height: 32px; 
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.nav-links a:hover .cIcon._anim._move .cIconBody {
  animation: arrowMoveKokuyoRefined 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes arrowMoveKokuyoRefined {
  0% { transform: translateX(0); opacity: 1; }
  35% { transform: translateX(130%); opacity: 1; }
  35.1% { transform: translateX(130%); opacity: 0; }
  35.9% { transform: translateX(-130%); opacity: 0; }
  36% { transform: translateX(-130%); opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}
@media (min-width: 1500px) {
    .page-inner,
    .product-inner,
    .lastpage-inner,
    .recruit-bluepage-inner,
    .recruit-pinkpage-inner,
    .recruit-purplepage-inner,
    .recruit-greenpage-inner {
        padding: 50px 6%;
    }
  .blue-page-inner-last,
  .pink-page-inner-last,
  .purple-page-inner-last,
  .green-page-inner-last {
  padding: 50px 6%;
 }
}
@media (min-width: 2400px) {
    .page-inner,
    .product-inner,
    .lastpage-inner,
    .recruit-bluepage-inner,
    .recruit-pinkpage-inner,
    .recruit-purplepage-inner,
    .recruit-greenpage-inner {
        padding: 50px 3%;
    }
  .blue-page-inner-last,
  .pink-page-inner-last,
  .purple-page-inner-last,
  .green-page-inner-last {
  padding: 50px 3%;
 }
}