@media screen and (min-width: 1071px) {
  .home .header-pip-logo {
    display: none !important;
  }

  .home #site-header,
  body.page-template-soette #site-header {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .home #site-header.fixed,
  body.page-template-soette #site-header.fixed {
    position: fixed;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.index-ttl {
  font-size: 21px;
  color: #a1c4f4;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.index-ttl-img {
  height: 38px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .index-ttl-img {
    height: 8.5vw;
  }

  .index-ttl {
    font-size: 4.2vw;
    margin-bottom: 1vw;
  }
}

/* -------------------------- fv -------------------------- */

.fv {
  background-image: url(../images/index/index-bg.png);
  background-size: 820px auto;
  background-position: left top;
  background-repeat: no-repeat;
  padding-top: 74px;
}

.fv-container {
  display: flex;
  gap: 3.2%;
  width: 1336px;
  max-width: 93%;
  margin: 0 auto;
}

.fv-container .fv-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 17.3%;
  max-width: 231px;
}

.fv-container .custom-logo-link:first-of-type {
  width: 28.3%;
  min-width: 28.3%;
  margin-bottom: 17%;
}

.fv-container .custom-logo-link:nth-of-type(2) {
  width: 71.6%;
  min-width: 71.6%;
  margin-bottom: 18%;
}

.fv .main-navigation ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.fv-container #primary-menu a {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #004097;
  gap: 8%;
  padding: 8.5% 1% 8.5% 10%;
  border-radius: 10px;
  background-color: #e5f2ff;
  white-space: nowrap;
  min-width: 215px;
  transition: all 0.3s ease;
}

.fv-container #primary-menu a .secondary-menu {
  display: none !important;
}

.fv-container #primary-menu a span {
  display: flex;
}

.fv-container #primary-menu a img {
  width: 24px;
  object-fit: contain;
}

.fv-container .btn-purchase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  padding: 8.5% 15.5%;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffac25;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  min-width: 215px;
  margin-top: 10%;
  transition: all 0.3s ease;
}

.fv-container .btn-purchase img {
  width: 15px;
  padding-top: 2px;
  object-fit: contain;
}

.top-fv-slider {
  width: 100%;
  max-width: 1062px;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  min-height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1066/675;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.slide:not(.active) {
  z-index: 1;
  pointer-events: none;
}

.slide picture {
  height: 100%;
}

.slide img {
  width: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: block;
  aspect-ratio: 1066/675;
  min-height: 100%;
}

.slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
}

.slide-link:hover {
  text-decoration: none;
}

.slider-wrapper.dragging .slide-link {
  pointer-events: none;
}

.slider-wrapper.dragging .slide-link {
  pointer-events: none;
}

.slider-dots {
  margin-left: auto;
  margin-top: 25px;
  display: flex;
  gap: 26px;
  z-index: 100;
  pointer-events: auto;
  margin-right: 30px;
}

@media (min-width: 1440px) {
  .slider-dots {
    position: absolute;
    bottom: -25px;
    right: 0px;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .slider-dots {
    position: absolute;
    bottom: -2.5vw;
    right: 0;
  }
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc6c6;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  pointer-events: auto;
  z-index: 101;
}

.dot.active {
  background: #004097;
  border-color: #004097;
  transform: scale(2);
}

@keyframes fadeInSafe {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (hover: hover) {
  .fv-container #primary-menu a:hover,
  .fv-container .btn-purchase:hover {
    opacity: 0.6;
  }
}

@media (max-width: 1439px) {
  .fv {
    background-size: 56.9vw auto;
    padding-top: 5.1vw;
    will-change: transform;
  }

  .fv-container .fv-header {
    max-width: 16.3%;
  }

  .fv-container .custom-logo-link:first-of-type {
    width: 4.5vw;
    min-width: 4.5vw;
    margin-bottom: 2.7vw;
  }

  .fv-container .custom-logo-link:nth-of-type(2) {
    width: 11.4vw;
    min-width: 11.4vw;
    margin-bottom: 2.8vw;
  }

  .fv .main-navigation ul {
    gap: 0.5vw;
    max-width: 100%;
  }

  .fv-container #primary-menu a {
    font-size: 1.12vw;
    border-radius: 0.7vw;
    min-width: 15vw;
    padding: 1.25vw 0.5vw 1.25vw 1.3vw;
    gap: 1.3vw;
  }

  .fv-container #primary-menu a img {
    width: 1.6vw;
  }

  .fv-container .btn-purchase {
    border-radius: 0.7vw;
    font-size: 1.12vw;
    min-width: 15vw;
    padding: 1.3vw 2.4vw;
  }

  .fv-container .btn-purchase img {
    width: 1.1vw;
  }

  .top-fv-slider {
    max-width: 73.25vw;
    border-radius: 1.4vw;
  }

  .slider-container {
    border-radius: 1.4vw;
  }

  .slider-dots {
    margin-top: 1.7vw;
    gap: 1.8vw;
    margin-right: 2vw;
  }
}

@media (max-width: 767px) {
  .fv {
    background-image: url(../images/index/index-bg-sp.png);
    background-size: 100% auto;
    padding-top: 7.4vw;
  }

  .fv-container {
    width: 100%;
    max-width: 100%;
  }

  .top-fv-slider {
    width: 86.6%;
    max-width: 86.6%;
    border-radius: 5.3vw;
  }

  .slider-container {
    border-radius: 5.3vw;
  }

  .slider-wrapper {
    aspect-ratio: 325/460;
  }

  .slide img {
    aspect-ratio: 325/460;
  }

  .slider-dots {
    margin-top: 0;
    gap: 7vw;
    margin-right: auto;
    position: absolute;
    bottom: -8vw;
  }

  .dot {
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 50%;
    background: #ccc6c6;
  }
}

/* -------------------------- about -------------------------- */

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 105px;
  background-image: url(../images/index/about-bg.png);
  background-size: 900px auto;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.about-container {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about-ttl {
  height: 120px;
  object-fit: contain;
}

.about-txt {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-top: 45px;
}

.about-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  text-decoration: none;
  color: #fff;
  background-color: #004097;
  padding: 20px 75px;
  border-radius: 20px;
  border: 2px solid #004097;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

.about-btn-img {
  width: 40px;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

@media (hover: hover) {
  .about-btn:hover {
    background-color: #fff;
    color: #004097;
  }
  .about-btn:hover .about-btn-img {
    filter: unset;
  }
}

.about-slider-container {
  width: 100%;
  padding: 70px 0 calc(200px + 3vw);
  overflow: hidden;
  position: relative;
}

.about-slider-wrapper {
  display: flex;
  width: max-content;
}

.about-slide {
  flex: 0 0 auto;
  margin-right: 1.6vw;
}

.about-slide-image {
  object-fit: contain;
  border-radius: 20px;
  transition: transform 0.3s ease;
  height: 16.9vw;
}

@media (max-width: 1440px) {
  .about-slide {
    margin-right: 23px;
  }
  .about-slide-image {
    height: 244px;
  }
}

@media (min-width: 768px) {
  .about-slider-wrapper.even .about-slide:nth-of-type(2n) {
    transform: translateY(3vw);
  }

  .about-slider-wrapper:not(.even) .about-slide:nth-of-type(2n + 1) {
    transform: translateY(3vw);
  }
}

@media (max-width: 767px) {
  .about {
    padding-top: 28vw;
    background-image: url(../images/index/about-bg-sp.png);
    background-size: 100% auto;
  }

  .about-ttl {
    height: 17.6vw;
  }

  .about-txt {
    font-size: 4.2vw;
    margin-top: 4vw;
    line-height: 2.3;
  }

  .about-btn {
    gap: 3vw;
    margin-top: 8vw;
    padding: 3vw 9vw 3vw 6vw;
    border-radius: 2.1vw;
    font-size: 4.2vw;
    border-width: 0.5vw;
  }

  .about-btn-img {
    width: 11vw;
  }

  .about-slider-container {
    padding: 16vw 0 16vw;
  }

  .about-slide {
    margin-right: 2.6vw;
  }

  .about-slide-image {
    border-radius: 4vw;
    height: 32.2vw;
  }
}

/* -------------------------- column -------------------------- */

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
}

.latest-columns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  margin: 48px auto;
  justify-content: center;
}

.latest-columns-list.two-items {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66.67%;
}

.latest-columns-list.one-item {
  grid-template-columns: 1fr;
  max-width: 33.33%;
}

.latest-column-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.latest-column-image {
  width: 100%;
  aspect-ratio: 326/206;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}

.latest-column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.latest-column-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.latest-column-title {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  line-height: 1.36;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 15px;
  margin-bottom: 4px;
}

.latest-column-excerpt {
  font-size: 16px;
  color: #717171;
  font-weight: 500;
  line-height: 1.56;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.latest-column-excerpt.four-lines {
  -webkit-line-clamp: 4;
}

.latest-column-excerpt.three-lines {
  -webkit-line-clamp: 3;
}

.latest-column-excerpt.two-lines {
  -webkit-line-clamp: 2;
}

.latest-column-excerpt.one-line {
  -webkit-line-clamp: 1;
}

.latest-columns-button {
  text-align: center;
}

.latest-columns-button a {
  background: #fff;
  color: #004097;
  padding: 21px 50px;
  width: 310px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 2px solid #004097;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.latest-columns-button a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #004097;
  border-right: 2px solid #004097;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

@media (max-width: 1148px) {
  .column .container {
    max-width: 96%;
    width: 96%;
  }
}

@media (max-width: 767px) {
  .column .container {
    max-width: 86.6%;
    width: 86.6%;
  }
  .column .index-ttl-img {
    height: 19vw;
  }

  .column {
    margin-top: 2vw;
  }

  .latest-columns-list {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 0;
    margin: 7vw auto;
  }

  .latest-column-item {
    flex-direction: row;
    align-items: center;
    gap: 4.6vw;
    padding: 7vw 0;
    border-bottom: 0.3vw solid #c7c7c7;
    border-radius: 0;
  }

  .latest-column-image {
    aspect-ratio: 124/72;
    border-radius: 1.3vw;
    width: 33vw;
  }

  .latest-column-title {
    font-size: 4.8vw;
    margin-top: 0;
    margin-bottom: 0;
  }

  .latest-column-excerpt {
    display: none;
  }

  .latest-columns-button {
    margin-top: 14vw;
  }

  .latest-columns-button a {
    padding: 4.2vw 5.5vw;
    width: 56vw;
    border-radius: 2.6vw;
    font-size: 4.2vw;
  }

  .latest-columns-button a::before {
    width: 2.5vw;
    height: 2.5vw;
    right: 6vw;
    border-width: 0.6vw;
  }
}

@media (hover: hover) {
  .latest-column-item:hover .latest-column-image img {
    transform: scale(1.1);
  }

  .latest-columns-button a:hover {
    background-color: #004097;
    color: #fff;
    border-color: #004097;
  }

  .latest-columns-button a:hover::before {
    border-color: #fff;
    transform: translate(0.3em, -50%) rotate(45deg);
  }
}

/* -------------------------- products -------------------------- */

.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../images/index/products-bg.png);
  background-size: 904px auto;
  background-position: left top;
  background-repeat: no-repeat;
  padding-top: 350px;
  padding-bottom: 110px;
  margin-top: -240px;
}

.products-container {
  margin-top: 50px;
}

.products-container .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1168px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.category-tab {
  background: #fff;
  border: 2px solid #ccc;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 34px;
  padding: 15px 25px;
  min-width: 264px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 24px;
  font-weight: 800;
}

.category-tab[style*="border-color"] {
  color: var(--border-color);
}

.category-tab:hover {
  transform: translateY(-4px);
}

.category-tab.active {
  color: #fff;
}

.category-tab.active[style*="border-color"] {
  background: var(--border-color);
}

.category-tab img {
  height: 36px;
  object-fit: contain;
}

.category-tab.active img {
  filter: brightness(0) invert(1);
}

.category-content {
  display: none;
}

.category-content.active {
  display: block;
}

.category-section {
  padding: 30px 0 30px;
  border-radius: 10px;
  margin-bottom: 55px;
}

.category-section .container {
  margin: 0 auto;
  padding: 0 34px;
}

.products-container .all-products-link {
  background: #fff;
  color: #004097;
  padding: 21px 50px;
  min-width: 310px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid #004097;
}

.products-container .all-products-link::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #004097;
  border-right: 2px solid #004097;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.category-info {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 20px;
  min-height: 75px;
  margin-right: auto;
  display: none !important;
}

.category-info .category-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-info .category-header .category-image {
  width: 75px;
  height: 75px;
  min-width: 75px;
  min-height: 75px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-info .category-header .category-image img {
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.category-info .category-header .category-name {
  font-size: 39px;
  font-weight: 800;
  color: #000;
  padding-right: 35px;
  white-space: nowrap;
  line-height: 1;
  padding-right: 0 !important; /* 一時的に追加 */
  border-right: none !important; /* 一時的に追加 */
}

.category-info .category-description {
  font-size: 18px;
}

.related-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  width: 100%;
}

.related-products .related-product-item {
  width: 22.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background: #fff;
  border-radius: 10px;
  padding: 33px 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.related-products .related-product-item .product-image {
  aspect-ratio: 396/387;
  max-height: 187px;
  min-height: 187px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 90%;
}

.related-products .related-product-item .product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.related-products .related-product-item .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  gap: 20px;
}

.related-products .related-product-item .product-info .product-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #000;
}

.related-products .related-product-item .product-info .product-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #004097;
  border: 2px solid #004097;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 87%;
  border-radius: 36px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1148px) {
  .product-others .container {
    max-width: 100%;
  }
  .category-section .container {
    padding: 0 2vw;
  }
  .category-content.active {
    max-width: 100%;
    width: 100%;
  }
  .category-tabs {
    width: 96%;
  }
  .category-tab {
    min-width: unset;
    flex: 1;
    max-width: 264px;
  }
}

@media (max-width: 767px) {
  .products {
    background-image: url(../images/index/products-bg-sp.png);
    background-size: 100% auto;
    background-position: left top;
    padding-top: 20vw;
    padding-bottom: 9.4vw;
    margin-top: 0;
  }

  .category-tabs {
    gap: 2.6vw;
    margin-bottom: 5vw;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 86.6%;
  }

  .category-tab {
    width: 41.2vw;
    min-width: 41.2vw;
    max-width: 41.2vw;
    border-width: 0.5vw;
    border-radius: 6.1vw;
    padding: 1.7vw 4.2vw;
    gap: 1.3vw;
    font-size: 4.8vw;
  }

  .category-tab img {
    height: 6.9vw;
    width: 9.3vw;
    margin-left: -4vw;
  }

  .category-section {
    padding: 8vw 0 8vw;
    border-radius: 0vw;
    margin-bottom: 7vw;
  }

  .category-section .container {
    padding: 0 6.7vw;
  }

  .products-container .all-products-link {
    padding: 4.2vw 5.5vw;
    min-width: 56vw;
    border-radius: 2.6vw;
    font-size: 4.2vw;
  }

  .products-container .all-products-link::before {
    width: 2.5vw;
    height: 2.5vw;
    right: 6vw;
    border-width: 0.6vw;
  }
}

@media screen and (min-width: 1149px) {
  .related-products .related-product-item:nth-of-type(4) ~ .related-product-item {
    display: none !important;
  }
}

@media screen and (max-width: 1148px) {
  .products-container .container {
    max-width: 100%;
    width: 100%;
  }
  .related-products .related-product-item {
    padding: 2.8vw 2.6vw;
    width: 22.2%;
  }
  .related-products .related-product-item .product-image {
    aspect-ratio: 396/387;
    max-height: unset;
    min-height: unset;
    width: 80%;
    max-width: 80%;
  }

  .related-products .related-product-item .product-info .product-title {
    font-size: 16px;
  }
  .related-products .related-product-item .product-info .product-link {
    font-size: 12px;
    height: 30px;
  }
}

@media screen and (max-width: 1148px) and (min-width: 768px) {
  .related-products .related-product-item:nth-of-type(3) ~ .related-product-item:last-of-type {
    margin-right: auto;
  }
}

@media screen and (max-width: 979px) {
  .related-products {
    column-gap: 5%;
  }

  .related-products .related-product-item {
    padding: 2.8vw 2.6vw;
    width: 30%;
  }

  /* .related-products .related-product-item:last-of-type {
    margin-right: auto;
  } */

  .related-products .related-product-item .product-info .product-title {
    font-size: 18px;
  }
  .related-products .related-product-item .product-info .product-link {
    font-size: 14px;
    height: 36px;
  }
}

@media (max-width: 767px) {
  .products-container {
    padding-top: 8vw;
    padding-bottom: 7vw;
    margin-top: 0;
    width: 100%;
  }

  .category-info {
    gap: 3vw;
    margin-bottom: 5vw;
    flex-direction: column;
    margin-right: unset;
  }

  .category-info .category-header {
    gap: 2vw;
    min-height: 14.6vw;
  }

  .category-info .category-header .category-image {
    width: 14.6vw;
    height: 14.6vw;
    min-width: 14.6vw;
    min-height: 14.6vw;
  }

  .category-info .category-header .category-image img {
    height: 9vw;
  }

  .category-info .category-header .category-name {
    font-size: 7.7vw;
    border-right: none !important;
    padding-right: 0 !important;
  }

  .category-info .category-description {
    font-size: 4.2vw;
    text-align: center;
    line-height: 1.65;
    text-align: left;
  }

  .related-products {
    gap: 4vw;
  }

  .related-products .related-product-item {
    width: 47.5%;
    gap: 4vw;
    padding: 4.2vw 4.2vw;
  }

  .related-products .related-product-item:nth-of-type(2) ~ .related-product-item:last-of-type {
    margin-right: auto;
  }

  .related-products .related-product-item:nth-of-type(4) ~ .related-product-item {
    display: none !important;
  }

  .related-products .related-product-item .product-image {
    aspect-ratio: 396/387;
    max-height: 30.4vw;
    min-height: 30.4vw;
    width: auto;
  }

  .related-products .related-product-item .product-info {
    gap: 4vw;
  }

  .related-products .related-product-item .product-info .product-title {
    font-size: 4.2vw;
    text-align: center;
  }

  .related-products .related-product-item .product-info .product-link {
    font-size: 3.7vw;
    height: 7.5vw;
    border-radius: 5vw;
  }
}

@media (hover: hover) {
  .related-product-item:hover .product-info .product-link {
    background: #004097;
    color: #fff;
  }

  .products-container .all-products-link:hover {
    background-color: #004097;
    color: #fff;
    border-color: #004097;
  }

  .products-container .all-products-link:hover::before {
    border-color: #fff;
    transform: translate(0.3em, -50%) rotate(45deg);
  }
}

/* -------------------------- faq -------------------------- */

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../images/index/faq-bg.png);
  min-height: 542px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 310px;
  margin-right: 37.5%;
  margin-top: 20px;
}

.faq-container .index-ttl-img {
  height: 50px;
}

.faq-txt {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin-top: 25px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.faq-link {
  background: #fff;
  color: #004097;
  padding: 21px 50px;
  min-width: 310px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid #004097;
}

.faq-link::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #004097;
  border-right: 2px solid #004097;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .faq-link:hover {
    background-color: #004097;
    color: #fff;
    border-color: #004097;
  }
  .faq-link:hover::before {
    border-color: #fff;
    transform: translate(0.3em, -50%) rotate(45deg);
  }
}

@media (max-width: 767px) {
  .faq {
    background-image: url(../images/index/faq-bg-sp.png);
    min-height: 115vw;
    background-size: cover;
    background-position: center center;
    justify-content: flex-start;
    padding-top: 12vw;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 81%;
    width: 81%;
    transform: translateX(2%);
    margin-right: auto;
    margin-left: auto;
    margin-top: 0vw;
  }

  .faq-container .index-ttl-img {
    height: 8.5vw;
  }

  .faq-txt {
    font-size: 4.26vw;
    margin-top: 6vw;
    margin-bottom: 0;
  }

  .faq-link {
    padding: 4.2vw 5.5vw;
    min-width: 56vw;
    border-radius: 2.6vw;
    font-size: 4.2vw;
    margin: 0 auto;
    transform: translateX(-3vw);
    margin-top: 8vw;
  }

  .faq-link::before {
    width: 2.5vw;
    height: 2.5vw;
    right: 6vw;
    border-width: 0.6vw;
  }
}

/* -------------------------- news -------------------------- */

.news {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 105px;
  padding-bottom: 110px;
  background-image: url(../images/index/news-bg.png);
  background-size: 575px auto;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.news-list {
  margin-top: 50px;
  margin-bottom: 50px;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20.2px 100px;
  border-bottom: 1px solid #c7c7c7;
  transition: all 0.3s ease;
}

.news-item:first-child {
  border-top: 1px solid #c7c7c7;
}

.news-date {
  font-size: 18px;
  color: #004097;
  font-weight: 700;
  min-width: 110px;
}

.news-category {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 21px;
  background-color: #e5f2ff;
  color: #004097;
  padding: 6px 18px;
  font-size: 18px;
  min-width: 192px;
  max-width: 192px;
  margin-right: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.news-category span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.news-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.news-button a {
  background: #fff;
  color: #004097;
  padding: 21px 50px;
  min-width: 310px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid #004097;
}

.news-button a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #004097;
  border-right: 2px solid #004097;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

@media (max-width: 1148px) {
  .news-container {
    max-width: 100%;
  }
  .news-container > .container {
    max-width: 96%;
    width: 96%;
  }
  .news-item {
    padding: 20.2px 1%;
  }
}

@media (max-width: 767px) {
  .news {
    background-image: url(../images/index/news-bg-sp.png);
    background-size: 100% auto;
    background-position: center bottom;
    padding-top: 18vw;
    padding-bottom: 16vw;
  }

  .news-container > .container {
    max-width: 87%;
    width: 87%;
  }

  .news-list {
    margin-top: 2vw;
    margin-bottom: 7.3vw;
  }

  .news-item {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 5.4vw 0;
    border-width: 0.3vw;
  }

  .news-item:first-child {
    border-top: unset;
  }

  .news-date {
    font-size: 4.8vw;
    min-width: 27vw;
  }

  .news-category {
    border-radius: 5.6vw;
    padding: 0.1vw 3vw;
    font-size: 3.7vw;
    min-width: 23.4vw;
    max-width: 57vw;
    margin-right: 0;
    font-weight: 500;
  }

  .news-title {
    font-size: 4.2vw;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    width: 100%;
    flex: unset;
    margin-top: 3.5vw;
    line-height: 1.7;
  }

  .news-button a {
    padding: 4.2vw 5.5vw;
    min-width: 56vw;
    border-radius: 2.6vw;
    font-size: 4.2vw;
    margin: 0 auto;
  }

  .news-button a::before {
    width: 2.5vw;
    height: 2.5vw;
    right: 6vw;
    border-width: 0.6vw;
  }
}

@media (hover: hover) {
  .news-button a:hover {
    background-color: #004097;
    color: #fff;
    border-color: #004097;
  }
  .news-button a:hover::before {
    border-color: #fff;
    transform: translate(0.3em, -50%) rotate(45deg);
  }
  .news-item:hover {
    opacity: 0.6;
  }
}

/* -------------------------- contact -------------------------- */

.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #fff7d6;
  border-radius: 20px;
  margin-bottom: 180px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 600px;
  margin-top: 15px;
}

.contact-info-text {
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
  color: #000;
  text-align: center;
}

.contact-info-btn {
  background: #004097;
  color: #fff;
  padding: 21px 50px;
  min-width: 310px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #004097;
  transition: all 0.3s ease;
}

.contact-info-btn::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .contact .container {
    padding: 13.3vw 0;
    border-radius: 2.6vw;
    margin-bottom: 13.6vw;
    width: 86.6%;
    max-width: 86.6%;
  }

  .contact-info {
    gap: 6vw;
    max-width: 90%;
    width: 90%;
    margin-top: 3vw;
  }

  .contact-info-text {
    font-size: 4.2vw;
    line-height: 1.7;
  }

  .contact-info-btn {
    padding: 4.2vw 5.5vw;
    min-width: 56vw;
    border-radius: 2.6vw;
    font-size: 4.2vw;
  }

  .contact-info-btn::before {
    width: 2.5vw;
    height: 2.5vw;
    right: 6vw;
    border-width: 0.6vw;
  }
}

@media (hover: hover) {
  .contact-info-btn:hover {
    background-color: #fff;
    color: #004097;
    border-color: #004097;
  }
  .contact-info-btn:hover::before {
    border-color: #004097;
    transform: translate(0.3em, -50%) rotate(45deg);
  }
}
