@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  visibility: visible !important;
}

:root {
  --g-color-base: #DDDDDD;
  --g-color-grey: #D9D9D9;
  --g-color-red: #FF5704;
  --g-color-orange: #FFD9C7;
  --g-color-pink: #F8F0E9;
  --g-color-text: #231F20;
  --g-color-white: #FFFFFF;
  --g-padding-s: 72px;
}

html {
  overflow-x: hidden;
  min-width: 0;
  font-size: 0.6944444444vw;
}
@media screen and (max-width: 828px) {
  html {
    font-size: 1.2077294686vw;
  }
}
@media screen and (max-width: 414px) {
  html {
    font-size: 2.4154589372vw;
  }
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

.header.container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.p-container {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}

.only-pc {
  display: block;
}
@media screen and (max-width: 828px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}
@media screen and (max-width: 828px) {
  .only-sp {
    display: block;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9.94rem;
  background-color: var(--g-color-white);
  padding: 0.8rem 4.8rem;
  position: sticky;
  top: 0;
  z-index: 100;
  min-width: 0;
}
@media screen and (max-width: 828px) {
  .header {
    padding: 0.8rem 4.8rem;
  }
}
@media screen and (max-width: 414px) {
  .header {
    padding: 1rem 1.4rem 1rem 1rem;
    height: auto;
  }
}
.header-logo {
  cursor: pointer;
}
.header-logo img {
  width: 16rem;
  height: auto;
  display: block;
}
@media screen and (max-width: 828px) {
  .header-logo img {
    width: 18rem;
    height: 8.34rem;
  }
}
@media screen and (max-width: 414px) {
  .header-logo img {
    width: 12.8rem;
    height: auto;
  }
}
.header-content {
  display: flex;
  align-items: center;
  min-width: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 24px;
}
@media screen and (max-width: 828px) {
  .header-nav {
    display: none;
  }
}
.header-nav-item {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #231F20;
  font-style: W5;
  line-height: 1.2;
  letter-spacing: 0%;
  white-space: nowrap;
}
.header-nav-item:hover {
  opacity: 0.7;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}
@media screen and (max-width: 828px) {
  .header-actions {
    margin-right: 1.2rem;
  }
}
@media screen and (max-width: 414px) {
  .header-actions {
    margin-right: 12px;
  }
}
.header-actions-btn {
  padding: 1rem 1.2rem;
  color: var(--g-color-text);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header-actions-btn:hover {
  opacity: 0.7;
}
.header-actions-btn .btn-text {
  font-size: 1.4rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.2;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.header-actions-btn .btn-icon-arrow {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}
.header-actions-btn .btn-icon-arrow .icon-arrow {
  width: 4px;
  height: 2px;
  background-color: var(--g-color-red);
}
.header-actions-btn .btn-icon-arrow .icon-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent var(--g-color-red);
}
.header-actions-btn .btn-icon-download {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background-color: #FFD9C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-actions-btn .btn-icon-download .icon-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.header-actions-btn .btn-icon-download .icon-download-btn {
  position: relative;
  width: 5px;
  height: 5px;
  background-color: var(--g-color-red);
  top: -1px;
}
.header-actions-btn .btn-icon-download .icon-download-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--g-color-red) transparent transparent transparent;
}
.header-actions-btn .btn-icon-download .icon-download-box {
  width: 8px;
  height: 2px;
  background-color: var(--g-color-red);
  margin-top: 3px;
}
.header-actions-arrow {
  background-color: var(--g-color-red);
  color: #fff;
  border: none;
}
.header-actions-download {
  background-color: #fff;
  border: 1px solid var(--g-color-red);
  color: var(--g-color-text);
}
@media screen and (max-width: 828px) {
  .header-actions-download {
    display: none;
  }
}
.header-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px;
  background-color: #EEEEEE;
  border-radius: 999px;
  gap: 0;
}
@media screen and (max-width: 828px) {
  .header-lang {
    display: none;
  }
}
.header-lang-btn {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 40px;
  padding: 6.5px 10px;
  border: none;
  background-color: transparent;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #231F20;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header-lang-btn.is-active {
  color: #fff;
}
.header-lang-btn:hover:not(.is-active) {
  opacity: 0.7;
}
.header-lang::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background-color: var(--g-color-red);
  border-radius: 999px;
  transition: transform 0.3s ease;
  z-index: 1;
}
.header-lang.lang-en::before {
  transform: translateX(100%);
}
.header-menu {
  display: none;
}
@media screen and (max-width: 828px) {
  .header-menu {
    display: block;
  }
}
@media screen and (max-width: 414px) {
  .header-menu {
    right: 2.4rem;
  }
}
.header-menu-toggle {
  position: relative;
  width: 38px;
  height: 34px;
  background-color: #FFD9C7;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.header-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #FF5704;
  transition: all 0.3s ease;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}
.header-menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}
.header-menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}
.header-menu-toggle.is-active {
  background-color: #FFD9C7;
}
.header-menu-toggle.is-active span {
  background-color: var(--g-color-red);
  width: 18px;
  height: 2px;
}
.header-menu-toggle.is-active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header-menu-toggle.is-active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-bar {
  display: none;
  width: 100%;
  height: calc(100vh - 84px);
  background-color: var(--g-color-white);
  position: fixed;
  top: 79px;
  left: 0;
  z-index: 10;
  overflow-y: auto;
  border-top: 1px solid #DDDDDD;
}
.mobile-menu-bar.is-open {
  display: block;
}
.mobile-menu-bar .mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2.4rem;
  border-bottom: 1px solid #E8E8E8;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 414px) {
  .mobile-menu-bar .mobile-menu-item {
    padding: 2rem 2.4rem;
  }
}
.mobile-menu-bar .mobile-menu-item:active {
  background-color: #F5F5F5;
}
.mobile-menu-bar .mobile-menu-item-text {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #111111;
  line-height: 1.2;
  letter-spacing: 0%;
}
.mobile-menu-bar .mobile-menu-item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--g-color-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-bar .mobile-menu-item-icon .mobile-menu-arrow {
  width: 5px;
  height: 2px;
  background-color: #fff;
}
.mobile-menu-bar .mobile-menu-item-icon .mobile-menu-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #fff;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10rem 0;
  gap: 10rem;
}
@media screen and (max-width: 828px) {
  .hero {
    padding: 12rem 0;
    gap: 12rem;
  }
}
@media screen and (max-width: 828px) {
  .hero {
    padding: 0 0 6rem 0;
    gap: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .hero {
    overflow-x: hidden;
    gap: 6rem;
  }
}
.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 828px) {
  .hero-content {
    gap: 4.2rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    padding: 0 5.5rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-content {
    padding: 0 2.4rem;
  }
}
.hero-content-marketing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-marketing {
    gap: 1.5rem;
    order: 2;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-marketing {
    gap: 1.4rem;
  }
}
.hero-content-marketing-animation {
  display: none;
}
.hero-content-marketing-title {
  display: flex;
  flex-direction: column;
}
.hero-content-marketing-title .hero-marketing-title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: bold;
  line-height: 2;
  letter-spacing: 0%;
  color: #111111;
  overflow-wrap: break-word;
  word-break: normal;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-title .hero-marketing-title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-title .hero-marketing-title {
    text-align: center;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-marketing-title .hero-marketing-title {
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0%;
  }
}
.hero-content-marketing-title .hero-marketing-text {
  font-size: 4.8rem;
  font-weight: 900;
  font-style: black;
  line-height: 1.2;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #111111;
  letter-spacing: 0%;
  overflow-wrap: break-word;
  word-break: normal;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-title .hero-marketing-text {
    font-size: 4.4rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-title .hero-marketing-text {
    text-align: center;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-marketing-title .hero-marketing-text {
    font-size: 3.2rem;
    line-height: 4.4rem;
    letter-spacing: 0%;
  }
}
.hero-content-marketing-description {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-description {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-marketing-description {
    padding: 0 5rem;
  }
}
.hero-content-marketing-description img {
  width: 26rem;
  height: 10rem;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-description img {
    width: 26.5rem;
    height: 10rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-description img {
    display: none;
  }
}
.hero-content-marketing-description span {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: regular;
  line-height: 1.5;
  width: 359px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #111111;
  letter-spacing: 0%;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-description span {
    font-size: 1.4rem;
    line-height: 2.1rem;
    width: 35.9rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-description span {
    font-size: 2.2rem;
    line-height: 2.8rem;
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-marketing-description span {
    font-size: 1.4rem;
    line-height: 1.3;
    width: 33.5rem;
  }
}
.hero-content-marketing-btn {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-btn {
    gap: 1.2rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-btn {
    padding: 0 5.5rem;
    flex-direction: column;
    justify-content: center;
  }
}
.hero-content-marketing-btn .hero-actions-btn {
  padding: 1.4rem 3rem;
  color: #111111;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-btn .hero-actions-btn {
    padding: 1.5rem 3rem;
    gap: 1rem;
    border-radius: 0.7rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-marketing-btn .hero-actions-btn {
    padding: 1.2rem 5.5rem;
  }
}
.hero-content-marketing-btn .hero-actions-btn:hover {
  opacity: 0.7;
}
.hero-content-marketing-btn .hero-actions-btn .btn-text {
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 700;
  font-style: bold;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  letter-spacing: 0%;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-btn .hero-actions-btn .btn-text {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-marketing-btn .hero-actions-btn .btn-text {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
.hero-content-marketing-btn .hero-actions-btn .btn-icon-arrow {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-btn .hero-actions-btn .btn-icon-arrow {
    width: 2rem;
    height: 2rem;
  }
}
.hero-content-marketing-btn .hero-actions-btn .btn-icon-arrow .icon-arrow {
  width: 4px;
  height: 2px;
  background-color: var(--g-color-red);
}
.hero-content-marketing-btn .hero-actions-btn .btn-icon-arrow .icon-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #FF5704;
}
.hero-content-marketing-btn .hero-actions-btn .btn-icon-download {
  width: 2.8rem;
  height: 2rem;
  min-width: 2.8rem;
  background-color: #FFD9C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content-marketing-btn .hero-actions-btn .btn-icon-download .icon-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-content-marketing-btn .hero-actions-btn .btn-icon-download .icon-download-btn {
  position: relative;
  width: 5px;
  height: 5px;
  background-color: var(--g-color-red);
  top: -1px;
}
.hero-content-marketing-btn .hero-actions-btn .btn-icon-download .icon-download-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--g-color-red) transparent transparent transparent;
}
.hero-content-marketing-btn .hero-actions-btn .btn-icon-download .icon-download-box {
  width: 8px;
  height: 2px;
  background-color: var(--g-color-red);
  margin-top: 3px;
}
.hero-content-marketing-btn .hero-actions-arrow {
  background-color: var(--g-color-red);
  color: #fff;
  border: none;
}
.hero-content-marketing-btn .hero-actions-download {
  background-color: #fff;
  border: 1px solid var(--g-color-red);
  color: var(--g-color-text);
  white-space: nowrap;
}
.hero-content-marketing-btn .hero-actions-download .btn-icon-download {
  width: 28px;
  height: 28px;
  min-width: 28px;
}
@media screen and (max-width: 828px) {
  .hero-content-marketing-btn .hero-actions-download .btn-icon-download {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.hero-content-animation {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 828px) {
  .hero-content-animation {
    gap: 3.5rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-animation {
    gap: 1.4rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-animation {
    display: contents;
  }
}
.hero-content-animation-content {
  width: 56rem;
  height: 31rem;
  border-radius: 1rem;
}
@media screen and (max-width: 828px) {
  .hero-content-animation-content {
    width: 56rem;
    height: 31.5rem;
    border-radius: 1rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-animation-content {
    order: 1;
    width: 100%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 auto;
    max-width: calc(100vw - 28px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-animation-content {
    max-width: calc(100vw - 28px);
  }
}
.hero-content-animation-imgs1 {
  display: none;
}
.hero-content-animation-img {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
@media screen and (max-width: 828px) {
  .hero-content-animation-img {
    width: 56rem;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-content-animation-img {
    order: 3;
    width: 100%;
  }
}
.hero-content-animation-img .hero-animation-images {
  width: 54rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 828px) {
  .hero-content-animation-img .hero-animation-images {
    width: 54.2rem;
    gap: 2.3rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-animation-img .hero-animation-images {
    gap: 0.9rem;
  }
}
.hero-content-animation-img .hero-animation-images img {
  width: 9rem;
  height: 9rem;
  min-width: 9rem;
  display: block;
}
@media screen and (max-width: 828px) {
  .hero-content-animation-img .hero-animation-images img {
    width: 9rem;
    height: 9rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-content-animation-img .hero-animation-images img {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
  }
}
.hero-content-animation-img .hero-animation-description {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 828px) {
  .hero-content-animation-img .hero-animation-description {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.hero-content-animation-img .hero-animation-description span {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: regular;
  line-height: 1.2;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #111111;
}
@media screen and (max-width: 828px) {
  .hero-content-animation-img .hero-animation-description span {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
.hero-enterprises {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 828px) {
  .hero-enterprises {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-enterprises {
    gap: 2.8rem;
  }
}
.hero-enterprises-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 828px) {
  .hero-enterprises-text {
    gap: 0.8rem;
  }
}
.hero-enterprises-text .enterprises-text {
  display: flex;
}
@media screen and (max-width: 828px) {
  .hero-enterprises-text .enterprises-text {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
.hero-enterprises-text .enterprises-text span {
  font-size: 2.8rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.2;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #111111;
}
@media screen and (max-width: 828px) {
  .hero-enterprises-text .enterprises-text span {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-enterprises-text .enterprises-text span {
    font-size: 1.6rem;
    font-weight: 700;
    font-style: bold;
    line-height: 1.2;
    letter-spacing: 0%;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  }
}
.hero-enterprises-logos {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 22px 0;
  overflow: hidden;
}
@media screen and (max-width: 828px) {
  .hero-enterprises-logos {
    gap: 2.4rem;
    padding: 2.2rem 0;
  }
}
@media screen and (max-width: 414px) {
  .hero-enterprises-logos {
    gap: 1.6rem;
    padding: 1.6rem 0;
  }
}
.hero-enterprises-logos .logo-track {
  width: 100%;
  overflow: hidden;
}
.hero-enterprises-logos .logo-track-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  gap: 48px;
}
@media screen and (max-width: 828px) {
  .hero-enterprises-logos .logo-track-inner {
    gap: 4.8rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-enterprises-logos .logo-track-inner {
    gap: 1.2rem;
  }
}
.hero-enterprises-logos .logo-track-1 .logo-track-inner {
  animation: scroll-left 20s linear infinite;
}
.hero-enterprises-logos .logo-track-2 .logo-track-inner {
  animation: scroll-right 20s linear infinite;
}
.hero-enterprises-logos .logo-track a {
  display: block;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.hero-enterprises-logos .logo-track a:hover {
  opacity: 0.7;
}
.hero-enterprises-logos .logo-track img {
  width: auto;
  height: 40px;
  display: block;
}
@media screen and (max-width: 828px) {
  .hero-enterprises-logos .logo-track img {
    height: 4rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-enterprises-logos .logo-track img {
    height: 3rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-enterprises-logos .logo-track img {
    height: 4rem;
  }
}
.hero-enterprises-logos .swiper {
  width: 100%;
}
.hero-enterprises-logos .swiper-wrapper {
  transition-timing-function: linear !important;
}
.hero-enterprises-logos .swiper-slide {
  width: auto !important;
}
.hero-enterprises-logos .swiper-slide a {
  display: block;
  transition: opacity 0.3s ease;
}
.hero-enterprises-logos .swiper-slide a:hover {
  opacity: 0.7;
}
.hero-enterprises-logos .swiper-slide img {
  width: auto;
  height: 40px;
  display: block;
}
@media screen and (max-width: 828px) {
  .hero-enterprises-logos .swiper-slide img {
    height: 4rem;
  }
}
@media screen and (max-width: 828px) {
  .hero-enterprises-logos .swiper-slide img {
    height: 3rem;
  }
}
@media screen and (max-width: 414px) {
  .hero-enterprises-logos .swiper-slide img {
    height: 2.4rem;
  }
}

.footer {
  padding: 64px 0 40px 0;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 828px) {
  .footer {
    padding: 6.4rem 0 4.6rem 0;
  }
}
@media screen and (max-width: 414px) {
  .footer {
    padding: 6rem 0 10rem 0 !important;
  }
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
@media screen and (max-width: 828px) {
  .footer-content {
    gap: 6.4rem;
  }
}
@media screen and (max-width: 414px) {
  .footer-content {
    gap: 4.4rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content {
    align-items: stretch;
    width: 100%;
    padding: 0 4rem;
  }
}
.footer-content-nav {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 141px;
}
@media screen and (max-width: 828px) {
  .footer-content-nav {
    gap: 14.1rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content-nav {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4rem;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav {
    gap: 4.4rem;
  }
}
.footer-content-nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-logo {
    gap: 1.2rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content-nav-logo {
    align-items: flex-start;
    align-self: flex-start;
    margin: 0 auto;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav-logo {
    gap: 1.2rem;
  }
}
.footer-content-nav-logo-link img {
  width: 208px;
  height: 95.89px;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-logo-link img {
    width: 20.8rem;
    height: 9.589rem;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav-logo-link img {
    width: 20.8rem;
    height: 9.589rem;
  }
}
.footer-content-nav-logo-sns {
  width: 204px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-logo-sns {
    width: 20.4rem;
    gap: 1.6rem;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav-logo-sns {
    width: 20.4rem;
    gap: 1.6rem;
  }
}
.footer-content-nav-logo-sns .footer-sns-link {
  cursor: pointer;
}
.footer-content-nav-logo-sns .footer-sns-link img {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-logo-sns .footer-sns-link img {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav-logo-sns .footer-sns-link img {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.footer-content-nav-links {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links {
    gap: 6.4rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links {
    gap: 2.8rem;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav-links {
    gap: 2.8rem;
  }
}
.footer-content-nav-links .footer-content-nav-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links .footer-content-nav-item {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links .footer-content-nav-item {
    align-items: stretch;
    width: 100%;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
}
.footer-content-nav-links .footer-content-nav-item-text {
  font-size: 1.4rem;
  font-weight: 600;
  font-style: W6;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #474A53;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links .footer-content-nav-item-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav-links .footer-content-nav-item-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links .footer-content-nav-item-text {
    width: 100%;
    padding-bottom: 1.2rem;
    margin-bottom: 0;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
  }
}
.footer-content-nav-links .footer-content-nav-item-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links .footer-content-nav-item-content {
    gap: 2rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links .footer-content-nav-item-content {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    row-gap: 2rem;
    -moz-column-gap: 0;
         column-gap: 0;
    padding: 0;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav-links .footer-content-nav-item-content {
    row-gap: 2.4rem;
    padding: 0;
  }
}
.footer-content-nav-links .footer-content-nav-item-content a {
  font-size: 1.4rem;
  font-style: W4;
  line-height: 1.2;
  letter-spacing: 0%;
  font-weight: 400;
  color: #231F20;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links .footer-content-nav-item-content a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content-nav-links .footer-content-nav-item-content a {
    color: #231f20;
    text-decoration: underline;
    text-underline-offset: 0.25em;
    white-space: normal;
    font-size: 1.4rem;
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .footer-content-nav-links .footer-content-nav-item-content a {
    font-size: 1.4rem;
  }
}
.footer-content-date {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
  font-size: 0.1rem;
  font-style: W5;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #8F97B1;
}
@media screen and (max-width: 828px) {
  .footer-content-date {
    font-size: 1rem;
  }
}
@media screen and (max-width: 828px) {
  .footer-content-date {
    align-self: flex-start;
    width: 100%;
    text-align: left;
  }
}

.challenge {
  padding: 80px 0;
  background-color: #F8F0E9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
@media screen and (max-width: 828px) {
  .challenge {
    padding: 8rem 0;
    gap: 4.8rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge {
    padding: 8rem 0;
  }
}
.challenge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 828px) {
  .challenge-content {
    gap: 1.2rem;
  }
}
.challenge-content-question {
  color: #FF5704;
  font-size: 2rem;
  font-weight: 700;
  font-style: bold;
  line-height: 100%;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .challenge-content-question {
    font-size: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge-content-question {
    font-size: 1.6rem;
  }
}
.challenge-content-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.3;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  word-break: normal;
}
@media screen and (max-width: 828px) {
  .challenge-content-title {
    font-size: 3.2rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 414px) {
  .challenge-content-title {
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
.challenge-content-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.challenge-content-description span {
  font-size: 1.6rem;
  font-weight: 400;
  font-style: regular;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #111111;
  text-align: center;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .challenge-content-description span {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 828px) {
  .challenge-content-description span {
    text-align: left;
  }
}
.challenge-diagram {
  width: 110rem;
}
@media screen and (max-width: 828px) {
  .challenge-diagram {
    width: 105rem;
    gap: 4.5rem;
  }
}
@media screen and (max-width: 828px) {
  .challenge-diagram {
    width: 100%;
  }
}
.challenge-diagram .challengeSwiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.challenge-diagram .challengeSwiper .swiper-button-prev,
.challenge-diagram .challengeSwiper .swiper-button-next {
  border: none;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FF6600;
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: opacity 0.2s ease;
  display: none;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-button-prev,
  .challenge-diagram .challengeSwiper .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-button-prev,
  .challenge-diagram .challengeSwiper .swiper-button-next {
    display: flex;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-button-prev,
  .challenge-diagram .challengeSwiper .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-button-prev::after,
.challenge-diagram .challengeSwiper .swiper-button-next::after {
  content: none;
}
.challenge-diagram .challengeSwiper .swiper-button-prev:hover,
.challenge-diagram .challengeSwiper .swiper-button-next:hover {
  opacity: 0.9;
}
.challenge-diagram .challengeSwiper .swiper-button-prev:active,
.challenge-diagram .challengeSwiper .swiper-button-next:active {
  opacity: 0.8;
}
.challenge-diagram .challengeSwiper .swiper-button-prev.swiper-button-disabled,
.challenge-diagram .challengeSwiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.challenge-diagram .challengeSwiper .swiper-button-prev {
  left: 18%;
  /* Left arrow: triangle + shaft */
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-button-prev {
    left: 10%;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-button-prev {
    left: 5%;
  }
}
.challenge-diagram .challengeSwiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-95%, -50%);
  border-style: solid;
  border-width: 10px 12px 10px 0;
  border-color: transparent #fff transparent transparent;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-button-prev::before {
    border-width: 1rem 1.2rem 1rem 0;
  }
}
.challenge-diagram .challengeSwiper .swiper-button-prev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 6px;
  transform: translateY(-50%);
  background-color: #fff;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-button-prev::after {
    width: 1.2rem;
    height: 0.6rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-button-next {
  right: 18%;
  /* Right arrow: shaft + triangle */
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-button-next {
    right: 10%;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-button-next {
    right: 5%;
  }
}
.challenge-diagram .challengeSwiper .swiper-button-next::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 6px;
  transform: translate(-95%, -50%);
  background-color: #fff;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-button-next::before {
    width: 1.2rem;
    height: 0.6rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-button-next::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-button-next::after {
    border-width: 1rem 0 1rem 1.2rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 19px;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide {
    gap: 1.9rem;
    width: 32rem;
  }
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide {
    width: 320px;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide {
    width: 28rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue img {
  width: 60px;
  height: 60px;
  display: block;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue img {
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue img {
    width: 6rem;
    height: 6rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue-title {
  font-size: 2.15rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue-title {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue-desc {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: regular;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  margin-top: 2rem;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  word-break: normal;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue-desc {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue-desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-issue-desc {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-arrows {
    gap: 2.8rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-arrows img {
  width: 28.87px;
  height: 38px;
  display: block;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-arrows img {
    width: 2.887rem;
    height: 3.8rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-arrows img {
    width: 2.887rem;
    height: 3.8rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution {
  position: relative;
  padding: 31px 16px 20px 16px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution {
    margin-top: 2rem;
    padding: 3.1rem 1.6rem 2rem 1.6rem;
    gap: 1.2rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution {
    padding: 3.1rem 1.6rem 2rem 1.6rem;
    gap: 1.2rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-title {
  font-size: 1.8rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-desc {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: regular;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-desc {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-desc {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-mark {
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #FFD9C7;
  border-radius: 5rem;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 16px 6px 7px;
  box-sizing: border-box;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-mark {
    padding: 0.6rem 1.6rem 0.6rem 0.7rem;
    gap: 0.8rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-mark img {
  width: 26.67px;
  height: 26.67px;
  display: block;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-mark img {
    width: 2.667rem;
    height: 2.667rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-mark img {
    width: 2.167rem;
    height: 2.167rem;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-mark-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FF5704;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-mark-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 414px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide .challenge-diagram-solution-mark-text {
    font-size: 1.4rem;
    line-height: 100%;
  }
}
.challenge-diagram .challengeSwiper .swiper-wrapper .challenge-swiper-slide {
  display: none;
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .challenge-swiper-slide {
    display: flex;
    width: 74% !important;
  }
}
@media screen and (max-width: 828px) {
  .challenge-diagram .challengeSwiper .swiper-wrapper .swiper-slide:not(.challenge-swiper-slide) {
    display: none;
  }
}

.touchpoint {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 828px) {
  .touchpoint {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint {
    width: 100%;
    padding: 6rem 2.4rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint {
    padding: 6rem 0;
  }
}
.touchpoint-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 828px) {
  .touchpoint-title {
    margin-bottom: 4.8rem;
    gap: 1.2rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-title {
    margin-bottom: 4.8rem;
    gap: 1.2rem;
  }
}
.touchpoint-title-text {
  display: flex;
}
@media screen and (max-width: 828px) {
  .touchpoint-title-text {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.touchpoint-title-text span {
  font-size: 2rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #FF5704;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-title-text span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-title-text span {
    font-size: 1.6rem;
  }
}
.touchpoint-title-desc {
  font-size: 3.6rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.3;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 828px) {
  .touchpoint-title-desc {
    font-size: 3.6rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-title-desc {
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
.touchpoint-title-exp {
  display: none;
  font-size: 1.4rem;
  font-style: regular;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-title-exp {
    display: block;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-title-exp {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.touchpoint-title-experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.touchpoint-title-experience span {
  font-size: 1.6rem;
  font-style: regular;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0%;
  text-align: center;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-title-experience span {
    text-align: left;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-title-experience span {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.touchpoint-content {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 828px) {
  .touchpoint-content {
    flex-direction: column;
    width: 100%;
    padding: 0 2.4rem;
  }
}
.touchpoint-content-line {
  position: absolute;
  left: 15%;
  top: 160px;
  z-index: -1;
}
.touchpoint-content-line img {
  width: 78rem;
  height: auto;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-line img {
    width: 80.8rem;
    height: 2.887rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-line img {
    display: none;
  }
}
.touchpoint-content-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-flow {
    margin-right: 6rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-flow {
    margin-right: 0;
    gap: 2rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-flow {
    flex-direction: row-reverse;
  }
}
.touchpoint-content-flow-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-flow-title {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-flow-title {
    flex-direction: row;
    gap: 0;
  }
}
.touchpoint-content-flow-title span {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-flow-title span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-flow-title span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-flow-title span {
    font-size: 2.4rem;
  }
}
.touchpoint-content-flow img {
  width: 131px;
  height: 138px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scaleX(-1);
}
@media screen and (max-width: 828px) {
  .touchpoint-content-flow img {
    width: 13.1rem;
    height: 13.8rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-flow img {
    width: 10rem;
    height: 10.8rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-flow img {
    width: 6.8rem;
    height: 7.2rem;
  }
}
.touchpoint-content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item {
    margin-right: 0;
    margin-top: 2.8rem;
  }
}
.touchpoint-content-item-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-header {
    gap: 0.4rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-header {
    flex-direction: row-reverse;
    gap: 0.4rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-header {
    gap: 0.4rem;
  }
}
.touchpoint-content-item-text {
  background-color: #FFD9C7;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #FF5704;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-text {
    font-size: 1.4rem;
    padding: 0.3rem 0.8rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-text {
    font-size: 1.4rem;
    padding: 0.3rem 0.8rem;
  }
}
.touchpoint-content-item-title {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-title {
    gap: 0.6rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-title {
    gap: 0.6rem;
  }
}
.touchpoint-content-item-title-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #FF5704;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-title-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-title-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.touchpoint-content-item-title-icon span {
  font-size: 1.8rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #fff;
  border-radius: 50%;
  font-family: Helvetica, sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-title-icon span {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-title-icon span {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.touchpoint-content-item-title-text {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-title-text {
    font-size: 2.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-title-text {
    font-size: 2.1rem;
    line-height: 2;
  }
}
.touchpoint-content-item-box {
  width: 22rem;
  border-radius: 8px;
  border: 2px solid #DDDDDD;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  background-color: #fff;
  margin-top: 12px;
  position: relative;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box {
    width: 22rem;
    padding: 1.4rem;
    gap: 1rem;
  }
}
.touchpoint-content-item-box:hover {
  background-color: #FFD9C7;
}
.touchpoint-content-item-box * {
  pointer-events: none;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box {
    width: 80%;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-box {
    width: 34.2rem;
    padding: 1.4rem;
    margin-top: 1.2rem;
  }
}
.touchpoint-content-item-box-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box-title {
    gap: 1rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-box-title {
    gap: 1rem;
  }
}
.touchpoint-content-item-box-title img {
  width: 30px;
  height: 28px;
  display: block;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box-title img {
    width: 3rem;
    height: 2.8rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box-title img {
    width: 3.6rem;
    height: 3.3rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-box-title img {
    width: 3rem;
    height: 2.8rem;
  }
}
.touchpoint-content-item-box-title span {
  font-size: 1.4rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.3;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box-title span {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box-title span {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-box-title span {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
.touchpoint-content-item-box-content {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: regular;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box-content {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-box-content {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-box-content {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
.touchpoint-content-item-more {
  font-size: 1.4rem;
  padding: 4px 8px;
  font-weight: 700;
  font-style: bold;
  line-height: 18px;
  letter-spacing: 0%;
  color: #FF5704;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  background-color: #FFD9C7;
  border-radius: 4px;
  margin-top: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.touchpoint-content-item-more:hover {
  background-color: #FFB89A;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-more {
    font-size: 1.4rem;
    padding: 0.4rem 0.8rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-content-item-more {
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 0.9rem 1.8rem;
    margin-top: 0.8rem;
  }
}
.touchpoint-content-item-hidden {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.touchpoint-content-item-hidden.is-visible {
  display: flex;
}
.touchpoint-content-item-arrow {
  width: 29px;
  height: 49px;
  margin-top: 5px;
  display: block;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-arrow {
    width: 2.9rem;
    height: 4.9rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-arrow {
    display: none;
  }
}
.touchpoint-content-item-arrow1 {
  width: 29px;
  height: 79px;
  display: block;
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-arrow1 {
    width: 2.9rem;
    height: 7.9rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-content-item-arrow1 {
    display: none;
  }
}
.touchpoint-flow {
  width: auto;
  padding: 2rem 4rem;
  background-color: #F0EDEA;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 5px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow {
    width: 107.4rem;
    padding: 2rem 15.95rem;
    border-radius: 2rem;
    gap: 4.8rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-flow {
    flex-direction: column;
    width: 100%;
    padding: 2rem 2.4rem;
    border-radius: 0;
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow {
    padding: 2.8rem 0;
    gap: 1.2rem;
    margin-top: 2.8rem;
  }
}
.touchpoint-flow-exp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-exp {
    gap: 2rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-exp {
    flex-direction: row-reverse;
    gap: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-exp {
    gap: 2rem;
  }
}
.touchpoint-flow-exp span {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-exp span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-exp span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-exp span {
    font-size: 2.4rem;
  }
}
.touchpoint-flow-exp img {
  width: 180px;
  height: 179px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-exp img {
    width: 18rem;
    height: 17.9rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-exp img {
    width: 10rem;
    height: 10.8rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-exp img {
    width: 7.8rem;
    height: 7.8rem;
  }
}
.touchpoint-flow-point {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point {
    gap: 1.2rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point {
    gap: 1.2rem;
  }
}
.touchpoint-flow-point-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-title {
    gap: 1rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-title {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-title {
    gap: 0.4rem;
  }
}
.touchpoint-flow-point-title-content {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-title-content {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-title-content {
    gap: 0.6rem;
  }
}
.touchpoint-flow-point-title-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #FF5704;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-title-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-title-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.touchpoint-flow-point-title-icon span {
  font-size: 1.8rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #fff;
  border-radius: 50%;
  font-family: Helvetica, sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-title-icon span {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-title-icon span {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
.touchpoint-flow-point-title-text {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-title-text {
    font-size: 2.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-title-text {
    font-size: 2.1rem;
    line-height: 2;
  }
}
.touchpoint-flow-point-title-market {
  font-size: 1.4rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #FF5704;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  padding: 3px 8px;
  background-color: #FFD9C7;
  border-radius: 5px;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-title-market {
    font-size: 1.4rem;
    padding: 0.3rem 0.8rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-title-market {
    font-size: 1.4rem;
    padding: 0.3rem 0.8rem;
  }
}
.touchpoint-flow-point-title-markets {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-title-markets {
    gap: 1rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-title-markets {
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.touchpoint-flow-point-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 8px;
  padding: 14px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-desc {
    gap: 1rem;
    padding: 1.4rem;
    border-radius: 0.8rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-desc {
    width: 34.2rem;
    padding: 1.4rem;
    margin: 0 auto;
  }
}
.touchpoint-flow-point-desc-crm {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-desc-crm {
    gap: 1rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-desc-crm {
    gap: 1rem;
  }
}
.touchpoint-flow-point-desc-crm img {
  width: 40px;
  height: 38px;
  display: block;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-desc-crm img {
    width: 4rem;
    height: 3.8rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-desc-crm img {
    width: 3rem;
    height: 2.9rem;
  }
}
.touchpoint-flow-point-desc-crm span {
  font-size: 1.6rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-desc-crm span {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-desc-crm span {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.touchpoint-flow-point-desc-net {
  width: 487px;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: regular;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .touchpoint-flow-point-desc-net {
    width: 48.7rem;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-flow-point-desc-net {
    width: 31.4rem;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
.touchpoint-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.touchpoint-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.touchpoint-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.touchpoint-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 60vw;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-content {
    padding: 4rem;
    border-radius: 2rem;
    max-width: 70rem;
  }
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-content {
    padding: 3rem;
    max-width: 90%;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-modal-content {
    padding: 2.4rem;
    border-radius: 1.6rem;
  }
}
.is-open .touchpoint-modal-content {
  transform: translateY(0);
}
.touchpoint-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-close {
    top: 2rem;
    right: 2rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-modal-close {
    top: 1.6rem;
    right: 1.6rem;
    width: 3rem;
    height: 3rem;
  }
}
.touchpoint-modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.touchpoint-modal-close:hover {
  opacity: 0.7;
}
.touchpoint-modal-image {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-image {
    margin-bottom: 2.4rem;
    border-radius: 0.8rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-modal-image {
    margin-bottom: 2rem;
  }
}
.touchpoint-modal-image img {
  width: auto;
  height: 360px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 414px) {
  .touchpoint-modal-image img {
    width: 84%;
    height: auto;
  }
}
.touchpoint-modal-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  margin-bottom: 16px;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-modal-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
.touchpoint-modal-desc {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555555;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  margin-bottom: 32px;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-desc {
    font-size: 1.4rem;
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-modal-desc {
    font-size: 1.3rem;
    margin-bottom: 2.4rem;
  }
}
.touchpoint-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-buttons {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-modal-buttons {
    gap: 1.2rem;
    flex-direction: column;
    align-items: center;
  }
}
.touchpoint-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-btn {
    gap: 0.8rem;
    padding: 1.4rem 2.8rem;
    border-radius: 5rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 414px) {
  .touchpoint-modal-btn {
    width: 100%;
    padding: 1.2rem 2.4rem;
    font-size: 1.4rem;
  }
}
.touchpoint-modal-btn .btn-icon-arrow {
  display: flex;
  align-items: center;
  gap: 0;
}
.touchpoint-modal-btn .btn-icon-arrow .icon-arrow {
  width: 1.2rem;
  height: 0.2rem;
  background-color: currentColor;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-btn .btn-icon-arrow .icon-arrow {
    width: 1.2rem;
    height: 0.2rem;
  }
}
.touchpoint-modal-btn .btn-icon-arrow .icon-triangle {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}
@media screen and (max-width: 828px) {
  .touchpoint-modal-btn .btn-icon-arrow .icon-triangle {
    border-top-width: 0.4rem;
    border-bottom-width: 0.4rem;
    border-left-width: 0.6rem;
  }
}
.touchpoint-modal-btn-primary {
  background-color: #FF5704;
  color: #fff;
  border: 2px solid #FF5704;
}
.touchpoint-modal-btn-primary:hover {
  background-color: #e04e03;
  border-color: #e04e03;
}
.touchpoint-modal-btn-secondary {
  background-color: #fff;
  color: #FF5704;
  border: 2px solid #FF5704;
}
.touchpoint-modal-btn-secondary:hover {
  background-color: #FFF5F0;
}

.touchpoint-flow-point-desc[data-modal-id] {
  cursor: pointer;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
.touchpoint-flow-point-desc[data-modal-id]:hover {
  opacity: 0.8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.solution-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}
@media screen and (max-width: 828px) {
  .solution-title {
    gap: 1.2rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 414px) {
  .solution-title {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
}
.solution-title-header {
  font-size: 2rem;
  font-style: bold;
  line-height: 1.2;
  font-weight: 700;
  color: #FF5704;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .solution-title-header {
    font-size: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .solution-title-header {
    font-size: 1.6rem;
  }
}
.solution-title-desc {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
  font-style: bold;
  color: #111111;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  word-break: normal;
  text-align: center;
}
@media screen and (max-width: 828px) {
  .solution-title-desc {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 828px) {
  .solution-title-desc {
    font-size: 3rem;
  }
}
@media screen and (max-width: 414px) {
  .solution-title-desc {
    font-size: 2.4rem;
  }
}
.solution-title-text {
  display: block;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  font-style: bold;
  color: #111111;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  word-break: normal;
}
@media screen and (max-width: 828px) {
  .solution-title-text {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 828px) {
  .solution-title-text {
    display: none;
  }
}
.solution-title-text-sp {
  display: none;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  font-style: bold;
  color: var(--g-color-text);
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 828px) {
  .solution-title-text-sp {
    display: block;
  }
}
@media screen and (max-width: 414px) {
  .solution-title-text-sp {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
.solution .solutionSwiper {
  position: relative;
  overflow: hidden;
}
.solution .solutionSwiper .swiper-button-prev,
.solution .solutionSwiper .swiper-button-next {
  border: none;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FF6600;
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-button-prev,
  .solution .solutionSwiper .swiper-button-next {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 414px) {
  .solution .solutionSwiper .swiper-button-prev,
  .solution .solutionSwiper .swiper-button-next {
    width: 5rem;
    height: 5rem;
  }
}
.solution .solutionSwiper .swiper-button-prev::after,
.solution .solutionSwiper .swiper-button-next::after {
  content: none;
}
.solution .solutionSwiper .swiper-button-prev:hover,
.solution .solutionSwiper .swiper-button-next:hover {
  opacity: 0.9;
}
.solution .solutionSwiper .swiper-button-prev:active,
.solution .solutionSwiper .swiper-button-next:active {
  opacity: 0.8;
}
.solution .solutionSwiper .swiper-button-prev {
  left: 18%;
  /* Left arrow: triangle + shaft */
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-button-prev {
    left: 10%;
  }
}
@media screen and (max-width: 414px) {
  .solution .solutionSwiper .swiper-button-prev {
    left: 5%;
  }
}
.solution .solutionSwiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-95%, -50%);
  border-style: solid;
  border-width: 10px 12px 10px 0;
  border-color: transparent #fff transparent transparent;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-button-prev::before {
    border-width: 1rem 1.2rem 1rem 0;
  }
}
.solution .solutionSwiper .swiper-button-prev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 6px;
  transform: translateY(-50%);
  background-color: #fff;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-button-prev::after {
    width: 1.2rem;
    height: 0.6rem;
  }
}
.solution .solutionSwiper .swiper-button-next {
  right: 18%;
  /* Right arrow: shaft + triangle */
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-button-next {
    right: 10%;
  }
}
@media screen and (max-width: 414px) {
  .solution .solutionSwiper .swiper-button-next {
    right: 5%;
  }
}
.solution .solutionSwiper .swiper-button-next::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 6px;
  transform: translate(-95%, -50%);
  background-color: #fff;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-button-next::before {
    width: 1.2rem;
    height: 0.6rem;
  }
}
.solution .solutionSwiper .swiper-button-next::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-button-next::after {
    border-width: 1rem 0 1rem 1.2rem;
  }
}
.solution .solutionSwiper .swiper-wrapper .swiper-slide {
  width: 820px;
  background-color: #FFD9C7;
  border-radius: 30px;
  padding: 80px 70.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide {
    padding: 8rem 7.05rem;
    gap: 2rem;
    border-radius: 3rem;
    width: 82rem;
  }
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide {
    width: 53rem;
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 414px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide {
    width: 30rem;
    height: 29.4rem;
    padding: 3.2rem 2.2rem 3rem 2.2rem;
  }
}
.solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-title {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  font-style: bold;
  color: #111111;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 414px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-title {
    font-size: 2rem;
  }
}
.solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-desc {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: regular;
  color: #111111;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-desc {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-desc {
    font-size: 1.4rem;
    display: none;
  }
}
.solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-desc-sp {
  display: none;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  font-style: regular;
  color: #111111;
  letter-spacing: 0%;
  text-align: center;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-desc-sp {
    display: block;
  }
}
@media screen and (max-width: 414px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-desc-sp {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
.solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-img {
  width: 679px;
  height: 361px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-img {
    width: 67.9rem;
    height: 36.1rem;
  }
}
@media screen and (max-width: 828px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-img {
    width: 45rem;
    height: 24rem;
  }
}
@media screen and (max-width: 414px) {
  .solution .solutionSwiper .swiper-wrapper .swiper-slide .solution-item-img {
    width: 25.6rem;
    height: 13.6rem;
  }
}

.market {
  background-image: url("https://22228163.fs1.hubspotusercontent-na2.net/hubfs/22228163/new_top_2026/img/s6_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8.5rem 19.2rem 8.5rem 17.2rem;
  gap: 42px;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 62rem 45rem;
  max-width: inherit;
}
.market-first {
  margin: 12rem 0 12rem 0;
}
@media screen and (max-width: 828px) {
  .market-first {
    margin: 12rem 0 12rem 0;
  }
}
@media screen and (max-width: 414px) {
  .market-first {
    margin: 6rem 0 6rem 0;
  }
}
.market-second {
  margin: 0;
}
@media screen and (max-width: 828px) {
  .market {
    padding: 8.56rem 19.2rem 8.54rem 17.2rem;
    gap: 4.2rem;
  }
}
@media screen and (max-width: 828px) {
  .market {
    flex-direction: column;
    grid-template-columns: 1fr;
    padding: 6rem 4rem;
  }
}
@media screen and (max-width: 414px) {
  .market {
    gap: 2.2rem;
    padding: 3.6rem 2.8rem;
  }
}
.market-contact {
  width: 62rem;
  height: 46rem;
  padding: 3.6rem 4rem;
  background-color: #fff;
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media screen and (max-width: 828px) {
  .market-contact {
    width: 60.2rem;
    height: 50rem;
    padding: 3.63rem 4rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 828px) {
  .market-contact {
    width: 60.2rem;
    height: auto;
    align-items: center;
  }
}
@media screen and (max-width: 414px) {
  .market-contact {
    width: 100%;
    padding: 2rem 2.4rem 3rem 2rem;
  }
}
.market-contact-logo {
  width: 18rem;
  height: 8.3rem;
  margin-bottom: 16px;
  display: block;
}
@media screen and (max-width: 828px) {
  .market-contact-logo {
    width: 18rem;
    height: 8.34rem;
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-logo {
    width: 14.2rem;
    height: 6.6rem;
  }
}
.market-contact-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media screen and (max-width: 828px) {
  .market-contact-content {
    align-items: center;
  }
}
.market-contact-content-text1 {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  font-style: bold;
  color: #222222;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .market-contact-content-text1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-content-text1 {
    display: none;
  }
}
.market-contact-content-text2 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 900;
  font-style: black;
  color: #222222;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .market-contact-content-text2 {
    font-size: 4.2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 828px) {
  .market-contact-content-text2 {
    text-align: center;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-content-text2 {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
.market-contact-content-text1-sp {
  display: none;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  font-style: bold;
  color: #222222;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 414px) {
  .market-contact-content-text1-sp {
    display: block;
  }
}
.market-contact-content-text3 {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-style: regular;
  color: #222222;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  margin-top: 10px;
}
@media screen and (max-width: 828px) {
  .market-contact-content-text3 {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-content-text3 {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.market-contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
@media screen and (max-width: 828px) {
  .market-contact-actions {
    gap: 1.2rem;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 828px) {
  .market-contact-actions {
    width: 100%;
    flex-direction: column;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-actions {
    gap: 1.2rem;
    margin-top: 2.4rem;
  }
}
.market-contact-actions .market-actions-btn {
  padding: 15px 30px;
  border: 1px solid #000;
  color: var(--g-color-text);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 828px) {
  .market-contact-actions .market-actions-btn {
    padding: 1.5rem 3rem;
    border-radius: 0.7rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 828px) {
  .market-contact-actions .market-actions-btn {
    padding: 1.6rem 1.5rem;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-actions .market-actions-btn {
    width: 28rem;
    padding: 1.2rem 0;
    margin: 0 auto;
  }
}
.market-contact-actions .market-actions-btn:hover {
  opacity: 0.7;
}
.market-contact-actions .market-actions-btn .btn-text {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  font-style: bold;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0%;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .market-contact-actions .market-actions-btn .btn-text {
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-actions .market-actions-btn .btn-text {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}
.market-contact-actions .market-actions-btn .btn-icon-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 828px) {
  .market-contact-actions .market-actions-btn .btn-icon-arrow {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-actions .market-actions-btn .btn-icon-arrow {
    width: 2rem;
    height: 2rem;
  }
}
.market-contact-actions .market-actions-btn .btn-icon-arrow .icon-arrow {
  width: 4px;
  height: 2px;
  background-color: var(--g-color-red);
}
.market-contact-actions .market-actions-btn .btn-icon-arrow .icon-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent var(--g-color-red);
}
.market-contact-actions .market-actions-btn .btn-icon-download {
  width: 28px;
  height: 28px;
  background-color: #FFD9C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .market-contact-actions .market-actions-btn .btn-icon-download {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-actions .market-actions-btn .btn-icon-download {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.market-contact-actions .market-actions-btn .btn-icon-download .icon-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.market-contact-actions .market-actions-btn .btn-icon-download .icon-download-btn {
  position: relative;
  width: 5px;
  height: 5px;
  background-color: var(--g-color-red);
  top: -1px;
}
.market-contact-actions .market-actions-btn .btn-icon-download .icon-download-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--g-color-red) transparent transparent transparent;
}
.market-contact-actions .market-actions-btn .btn-icon-download .icon-download-box {
  width: 8px;
  height: 2px;
  background-color: var(--g-color-red);
  margin-top: 3px;
}
.market-contact-actions .market-actions-arrow {
  background-color: var(--g-color-red);
  color: #fff;
  border: none;
}
.market-contact-actions .market-actions-download {
  background-color: #fff;
  border: 1px solid var(--g-color-red);
  color: var(--g-color-text);
}
.market-contact-actions .market-actions-download .btn-icon-download {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 828px) {
  .market-contact-actions .market-actions-download .btn-icon-download {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media screen and (max-width: 414px) {
  .market-contact-actions .market-actions-download .btn-icon-download {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.market-line {
  width: 43.8rem;
  height: 46rem;
  padding: 4.2rem 2.8rem;
  border-radius: 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media screen and (max-width: 828px) {
  .market-line {
    width: 43.2rem;
    height: 50rem;
    padding: 4.3rem 2.8rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 828px) {
  .market-line {
    width: 60.2rem;
    height: auto;
    align-items: center;
  }
}
@media screen and (max-width: 414px) {
  .market-line {
    width: 100%;
    padding: 2rem 2.4rem;
  }
}
.market-line-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
@media screen and (max-width: 828px) {
  .market-line-img {
    width: 37.6rem;
    height: 21.1rem;
    border-radius: 1.2rem;
  }
}
@media screen and (max-width: 828px) {
  .market-line-img {
    width: 55rem;
    height: 30.3rem;
  }
}
@media screen and (max-width: 414px) {
  .market-line-img {
    width: 29.4rem;
    height: 16.537rem;
  }
}
.market-line-title {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.2;
  font-weight: 700;
  font-style: bold;
  color: #222222;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .market-line-title {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 414px) {
  .market-line-title {
    display: none;
  }
}
.market-line-title-sp {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  font-style: bold;
  color: #222222;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  display: none;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 414px) {
  .market-line-title-sp {
    display: block;
    margin-top: 1rem;
  }
}
.market-line-text {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  font-style: bold;
  color: #222222;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  margin-top: 10px;
}
@media screen and (max-width: 828px) {
  .market-line-text {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 414px) {
  .market-line-text {
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: center;
  }
}
.market-line-btn {
  padding: 15px 21px 15px 30px;
  border: 1px solid #FF5704;
  background-color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 50%;
  margin-top: 24px;
}
@media screen and (max-width: 828px) {
  .market-line-btn {
    padding: 1.5rem 2.1rem 1.5rem 3rem;
    border-radius: 0.7rem;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 828px) {
  .market-line-btn {
    width: 100%;
    padding: 1.6rem 1.5rem;
  }
}
@media screen and (max-width: 414px) {
  .market-line-btn {
    padding: 1.2rem 5.5rem;
  }
}
.market-line-btn:hover {
  opacity: 0.7;
}
.market-line-btn .btn-text {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  font-style: bold;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0%;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .market-line-btn .btn-text {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.market-line-btn .btn-icon-arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FF5704;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  min-width: 18px;
}
@media screen and (max-width: 828px) {
  .market-line-btn .btn-icon-arrow {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.market-line-btn .btn-icon-arrow .icon-arrow {
  width: 4px;
  height: 2px;
  background-color: #fff;
}
.market-line-btn .btn-icon-arrow .icon-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #fff;
}
.market-line-btn .btn-icon-download {
  width: 20px;
  height: 20px;
  background-color: #FFD9C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .market-line-btn .btn-icon-download {
    width: 2rem;
    height: 2rem;
  }
}
.market-line-btn .btn-icon-download .icon-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.market-line-btn .btn-icon-download .icon-download-btn {
  position: relative;
  width: 5px;
  height: 5px;
  background-color: var(--g-color-red);
  top: -1px;
}
.market-line-btn .btn-icon-download .icon-download-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--g-color-red) transparent transparent transparent;
}
.market-line-btn .btn-icon-download .icon-download-box {
  width: 8px;
  height: 2px;
  background-color: var(--g-color-red);
  margin-top: 3px;
}

.news {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 828px) {
  .news {
    gap: 12rem;
  }
}
@media screen and (max-width: 414px) {
  .news {
    gap: 6rem;
  }
}
.news-item {
  width: 100%;
}
.news-item-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
@media screen and (max-width: 828px) {
  .news-item-header {
    gap: 1.2rem;
    margin-bottom: 4.8rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item-header {
    gap: 1.2rem;
    margin-bottom: 4.8rem;
  }
}
.news-item-header-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FF5704;
  line-height: 1.2;
  letter-spacing: 0%;
  font-style: bold;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .news-item-header-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item-header-title {
    font-size: 1.6rem;
  }
}
.news-item-header-desc {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 828px) {
  .news-item-header-desc {
    flex-direction: column;
  }
}
.news-item-header-desc span {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0%;
  font-style: bold;
  line-height: 1.3;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .news-item-header-desc span {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item-header-desc span {
    font-size: 2.4rem;
  }
}
.news-item .newsSwiper {
  position: relative;
  overflow: inherit;
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper {
    overflow: hidden;
  }
}
.news-item .newsSwiper .swiper-button-prev,
.news-item .newsSwiper .swiper-button-next {
  border: none;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FF6600;
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .news-item .newsSwiper .swiper-button-prev,
  .news-item .newsSwiper .swiper-button-next {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-button-prev,
  .news-item .newsSwiper .swiper-button-next {
    width: 3.333rem;
    height: 3.333rem;
  }
}
.news-item .newsSwiper .swiper-button-prev::after,
.news-item .newsSwiper .swiper-button-next::after {
  content: none;
}
.news-item .newsSwiper .swiper-button-prev:hover,
.news-item .newsSwiper .swiper-button-next:hover {
  opacity: 0.9;
}
.news-item .newsSwiper .swiper-button-prev:active,
.news-item .newsSwiper .swiper-button-next:active {
  opacity: 0.8;
}
.news-item .newsSwiper .swiper-button-prev {
  left: 4%;
  /* Left arrow: triangle + shaft */
}
.news-item .newsSwiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-95%, -50%);
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent #fff transparent transparent;
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-button-prev::before {
    border-width: 0.6rem 0.8rem 0.6rem 0;
  }
}
.news-item .newsSwiper .swiper-button-prev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 6px;
  transform: translateY(-50%);
  background-color: #fff;
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-button-prev::after {
    width: 0.8rem;
    height: 0.4rem;
  }
}
.news-item .newsSwiper .swiper-button-next {
  right: 4%;
  /* Right arrow: shaft + triangle */
}
.news-item .newsSwiper .swiper-button-next::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 6px;
  transform: translate(-95%, -50%);
  background-color: #fff;
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-button-next::before {
    width: 0.8rem;
    height: 0.4rem;
  }
}
.news-item .newsSwiper .swiper-button-next::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-button-next::after {
    border-width: 0.6rem 0rem 0.6rem 0.8rem;
  }
}
.news-item .newsSwiper .swiper-wrapper .swiper-slide {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: start;
  cursor: pointer;
}
@media screen and (max-width: 828px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide {
    width: 40rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide {
    width: 32.2rem;
  }
}
.news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-img {
  width: 400px;
  height: 246px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: block;
}
@media screen and (max-width: 828px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-img {
    width: 40rem;
    height: 24.6rem;
    border-radius: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-img {
    width: 32.2rem;
    height: 19.8rem;
  }
}
.news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-date {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 6px;
  font-weight: 400;
  font-style: regular;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #111111;
}
@media screen and (max-width: 828px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-date {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-date {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 0.6rem;
  }
}
.news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-context {
  width: 400px;
  font-size: 1.6rem;
  font-style: bold;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0%;
  margin-bottom: 6px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-context {
    width: 40rem;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-context {
    width: 32rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
@media screen and (max-width: 828px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-list {
    gap: 0.6rem;
  }
}
.news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-list span {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-style: regular;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #FF5704;
  background-color: #FFD9C7;
  padding: 2px 6px;
  border-radius: 4px;
}
@media screen and (max-width: 828px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-list span {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0.2rem 0.6rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item .newsSwiper .swiper-wrapper .swiper-slide .news-item-list span {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0.2rem 0.6rem;
  }
}
.news-item-btn {
  width: 288px;
  margin: auto;
  margin-top: 48px;
  padding: 15px 30px;
  border: 1px solid #FF5704;
  background-color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 828px) {
  .news-item-btn {
    width: 28.8rem;
    margin-top: 4.8rem;
    padding: 1.5rem 3rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 828px) {
  .news-item-btn {
    padding: 1.6rem 1.5rem;
  }
}
@media screen and (max-width: 414px) {
  .news-item-btn {
    width: 28.8rem;
    padding: 1.5rem 3rem;
  }
}
.news-item-btn:hover {
  opacity: 0.7;
}
.news-item-btn .btn-text {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  font-style: bold;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0%;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .news-item-btn .btn-text {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.news-item-btn .btn-icon-arrow {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: #FF5704;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  min-width: 1.6rem;
}
@media screen and (max-width: 828px) {
  .news-item-btn .btn-icon-arrow {
    width: 1.667rem;
    height: 1.667rem;
  }
}
.news-item-btn .btn-icon-arrow .icon-arrow {
  width: 4px;
  height: 4px;
  background-color: #fff;
}
.news-item-btn .btn-icon-arrow .icon-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #fff;
}
.news-item-btn .btn-icon-download {
  width: 2rem;
  height: 2rem;
  background-color: #FFD9C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-item-btn .btn-icon-download .icon-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.news-item-btn .btn-icon-download .icon-download-btn {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--g-color-red);
  top: -0.1rem;
}
.news-item-btn .btn-icon-download .icon-download-btn::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6rem 0.6rem 0 0.6rem;
  border-color: var(--g-color-red) transparent transparent transparent;
}
.news-item-btn .btn-icon-download .icon-download-box {
  width: 0.8rem;
  height: 0.2rem;
  background-color: var(--g-color-red);
  margin-top: 0.3rem;
}

.infra {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 828px) {
  .infra {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 414px) {
  .infra {
    gap: 3.6rem;
    padding: 6rem 0;
  }
}
.infra-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 828px) {
  .infra-header {
    gap: 1.2rem;
  }
}
.infra-header-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FF5704;
  line-height: 1.3;
  letter-spacing: 0%;
  font-style: bold;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .infra-header-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .infra-header-title {
    font-size: 1.6rem;
  }
}
.infra-header-text {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  letter-spacing: 0%;
  font-style: bold;
  text-align: center;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .infra-header-text {
    font-size: 3.6rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 414px) {
  .infra-header-text {
    font-size: 2.4rem;
  }
}
.infra-item {
  width: 1080px;
  display: flex;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 828px) {
  .infra-item {
    width: 108rem;
    gap: 1.8rem;
  }
}
@media screen and (max-width: 828px) {
  .infra-item {
    width: 100%;
    flex-direction: column;
  }
}
.infra-item-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 26px;
}
@media screen and (max-width: 828px) {
  .infra-item-content {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 828px) {
  .infra-item-content {
    align-items: center;
  }
}
.infra-item-content .infra-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 828px) {
  .infra-item-content .infra-item-header {
    gap: 2rem;
  }
}
@media screen and (max-width: 828px) {
  .infra-item-content .infra-item-header {
    flex-direction: column;
  }
}
@media screen and (max-width: 414px) {
  .infra-item-content .infra-item-header {
    gap: 0.8rem;
  }
}
.infra-item-content .infra-item-header-number {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: #FF5704;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .infra-item-content .infra-item-header-number {
    width: 7.2rem;
    height: 7.2rem;
  }
}
@media screen and (max-width: 414px) {
  .infra-item-content .infra-item-header-number {
    width: 4rem;
    height: 4rem;
  }
}
.infra-item-content .infra-item-header-number span {
  font-size: 3.6rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0%;
  font-style: bold;
  font-family: "Arial", sans-serif;
}
@media screen and (max-width: 828px) {
  .infra-item-content .infra-item-header-number span {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 414px) {
  .infra-item-content .infra-item-header-number span {
    font-size: 2.5rem;
  }
}
.infra-item-content .infra-item-header-desc {
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media screen and (max-width: 828px) {
  .infra-item-content .infra-item-header-desc {
    align-items: center;
  }
}
.infra-item-content .infra-item-header-desc span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  letter-spacing: 0%;
  font-style: bold;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .infra-item-content .infra-item-header-desc span {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 414px) {
  .infra-item-content .infra-item-header-desc span {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.infra-item-content-desc {
  width: 61rem;
}
@media screen and (max-width: 828px) {
  .infra-item-content-desc {
    width: 60.4rem;
  }
}
@media screen and (max-width: 414px) {
  .infra-item-content-desc {
    width: 34.2rem;
  }
}
.infra-item-content-desc span {
  font-size: 1.6rem;
  font-weight: 400;
  color: #111111;
  line-height: 1.5;
  letter-spacing: 0%;
  font-style: regular;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .infra-item-content-desc span {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 414px) {
  .infra-item-content-desc span {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
.infra-item-img {
  width: 44rem;
  height: 32.8rem;
  border-radius: 2rem;
  background-color: #F0EDEA;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 828px) {
  .infra-item-img {
    width: 44rem;
    height: 32.8rem;
  }
}
@media screen and (max-width: 414px) {
  .infra-item-img {
    width: 34.2rem;
    height: 25.495rem;
  }
}
.infra-item-img img {
  width: 28.9rem;
  height: 26.8rem;
  display: block;
}
@media screen and (max-width: 828px) {
  .infra-item-img img {
    width: 28.9rem;
    height: 26.8rem;
  }
}
@media screen and (max-width: 414px) {
  .infra-item-img img {
    width: 20rem;
    height: 18.5rem;
  }
}
@media screen and (max-width: 828px) {
  .infra-item-reverse {
    flex-direction: column-reverse;
  }
}

.question {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 828px) {
  .question {
    padding: 12rem 0;
    gap: 4.8rem;
  }
}
@media screen and (max-width: 414px) {
  .question {
    gap: 3.2rem;
    padding: 6rem 0;
  }
}
.question-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 828px) {
  .question-header {
    gap: 1.2rem;
  }
}
.question-header-title {
  font-size: 2rem;
  font-weight: 700;
  font-style: bold;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FF5704;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .question-header-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 828px) {
  .question-header-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 414px) {
  .question-header-title {
    font-size: 1.6rem;
  }
}
.question-header-desc {
  display: flex;
}
@media screen and (max-width: 828px) {
  .question-header-desc {
    flex-direction: column;
    align-items: center;
  }
}
.question-header-desc span {
  font-size: 2.8rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.3;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .question-header-desc span {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 828px) {
  .question-header-desc span {
    font-size: 3.2rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 414px) {
  .question-header-desc span {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
.question-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 828px) {
  .question-content {
    gap: 2rem;
  }
}
.question-content-item {
  padding: 16px 18px;
  border: 2px solid #EEEEEE;
  border-radius: 8px;
}
@media screen and (max-width: 828px) {
  .question-content-item {
    padding: 1.6rem 1.8rem;
    border-radius: 0.8rem;
  }
}
@media screen and (max-width: 414px) {
  .question-content-item {
    padding: 1.6rem 1.8rem;
    border-radius: 0.8rem;
  }
}
.question-content-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  width: 1044px;
  border-bottom: 1px solid #EEEEEE;
}
@media screen and (max-width: 828px) {
  .question-content-item-title {
    width: 104.4rem;
    padding: 1.3rem 0;
    gap: 1rem;
  }
}
@media screen and (max-width: 828px) {
  .question-content-item-title {
    width: 55.7rem;
  }
}
@media screen and (max-width: 414px) {
  .question-content-item-title {
    width: 30.6rem;
  }
}
.question-content-item-title .question-title-first {
  font-size: 3.8rem;
  font-weight: 700;
  font-style: bold;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FF5704;
  font-family: Arial, sans-serif;
}
@media screen and (max-width: 828px) {
  .question-content-item-title .question-title-first {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 414px) {
  .question-content-item-title .question-title-first {
    font-size: 2.8rem;
  }
}
.question-content-item-title .question-title-second span {
  font-size: 2rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .question-content-item-title .question-title-second span {
    font-size: 2rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 414px) {
  .question-content-item-title .question-title-second span {
    font-size: 1.8rem;
  }
}
.question-content-item-desc {
  width: 1044px;
  padding: 12px 0;
}
@media screen and (max-width: 828px) {
  .question-content-item-desc {
    width: 104.4rem;
    padding: 1.2rem 0;
  }
}
@media screen and (max-width: 828px) {
  .question-content-item-desc {
    width: 55.7rem;
  }
}
@media screen and (max-width: 414px) {
  .question-content-item-desc {
    width: 30.6rem;
  }
}
.question-content-item-desc span {
  font-size: 1.4rem;
  font-style: regular;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 828px) {
  .question-content-item-desc span {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 414px) {
  .question-content-item-desc span {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
.question-btn {
  padding: 15px 30px;
  border: 2px solid #FF5704;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 828px) {
  .question-btn {
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 414px) {
  .question-btn {
    display: none;
  }
}
.question-btn:hover {
  opacity: 0.7;
}
.question-btn .btn-text {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  font-style: bold;
  color: #111111;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0%;
  white-space: nowrap;
}
@media screen and (max-width: 828px) {
  .question-btn .btn-text {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
.question-btn .btn-icon-arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FF5704;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 828px) {
  .question-btn .btn-icon-arrow {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.question-btn .btn-icon-arrow .icon-arrow {
  width: 4px;
  height: 2px;
  background-color: #fff;
}
.question-btn .btn-icon-arrow .icon-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #fff;
}
.question-btn .btn-icon-download {
  width: 2rem;
  height: 2rem;
  background-color: #FFD9C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.question-btn .btn-icon-download .icon-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.question-btn .btn-icon-download .icon-download-btn {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--g-color-red);
  top: -0.1rem;
}
.question-btn .btn-icon-download .icon-download-btn::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6rem 0.6rem 0 0.6rem;
  border-color: var(--g-color-red) transparent transparent transparent;
}
.question-btn .btn-icon-download .icon-download-box {
  width: 0.8rem;
  height: 0.2rem;
  background-color: var(--g-color-red);
  margin-top: 0.3rem;
}/*# sourceMappingURL=style.css.map */