@charset "UTF-8";
/* CSS Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Primary Colors - イベプラブランドカラー */
  --main-purple: #6060FF;
  --light-purple: #9FA8FF;
  --primary-blue: #4A90E2;
  --primary-purple: #7B68EE;
  --primary-gradient: linear-gradient(135deg, #4A90E2 0%, #7B68EE 100%);
  --main-gradient: linear-gradient(135deg, #6060FF 0%, #8B7CFF 100%);
  /* Secondary Colors */
  --secondary-orange: #FF8C00;
  --secondary-green: #32CD32;
  --accent-yellow: #FFD700;
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --black: #212529;
  /* Typography */
  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50px;
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  line-height: 1.7;
  color: var(--dark-gray);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#header {
  width: 100vw;
  height: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 53%, rgba(255, 255, 255, 0) 100%);
  position: fixed;
  top: 0;
  z-index: 10;
}
#header .header-nav {
  display: flex;
  justify-content: space-between;
}
#header .header-nav__logo {
  background-image: url(../img/header-logo-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 220px;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 32px;
}
#header .header-nav__logo img {
  width: 120px;
}
#header .header-nav__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header-nav__menu li {
  list-style: none;
  display: flex;
  gap: 16px;
}
#header .header-nav__menu li a {
  width: 90px;
  text-decoration: none;
  color: #000;
  text-align: center;
  /* Noto Sans JP/Medium_16 */
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#header .header-nav__contact {
  display: flex;
  gap: 10px;
  padding-right: 32px;
}
#header .header-nav__contact li {
  list-style: none;
  margin: auto 0;
}
#header .header-nav__contact li a {
  text-decoration: none;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-radius: var(--999, 999px);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  color: var(--enquete-eventos-tokyo-white, #FFF);
}
#header .header-nav__contact li .btn-download {
  background: var(--main-purple);
}
#header .header-nav__contact li .btn-contact {
  background: black;
}
#header .header-nav .hamburger {
  display: none;
}
@media screen and (max-width: 960px) {
  #header .header-nav__menu {
    display: none;
  }
  #header .hamburger {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  #header .header-nav__contact {
    display: none;
  }
}

main #main-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url("/assets/top/img/main-visual_02.png");
  background-size: cover;
}
main #main-visual .main-visual__area {
  padding: 140px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
main #main-visual .main-visual__area h1 {
  color: var(--Main-White, #FFF);
  text-shadow: 0 4.182px 4.182px rgba(0, 0, 0, 0.25), 0 4.182px 77.359px rgba(32, 32, 85, 0.4);
  font-family: MOBO-Bold;
  font-size: 4vw;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 92.4px */
}
main #main-visual .main-visual__area__logo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
main #main-visual .main-visual__area__logo h2 {
  color: var(--Main-White, #FFF);
  font-size: 2vw;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 36.4px */
  letter-spacing: 1.04px;
}
main #main-visual .main-visual__area__logo img {
  display: flex;
  width: 30vw;
  aspect-ratio: 11/3;
  padding-bottom: 0.487px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 396/73;
}
main #main-visual .main-visual__notice {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: white;
  width: 40%;
  min-width: 400px;
  padding: 24px;
  border-radius: 0 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main #main-visual .main-visual__notice__label {
  color: var(--main-purple);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
main #main-visual .main-visual__notice__label::before {
  content: "NOTICE";
  color: var(--light-purple);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #main-visual .main-visual__notice__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
main #main-visual .main-visual__notice__item .notice-date {
  color: #59595E;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
main #main-visual .main-visual__notice__item .notice-text {
  color: #37373D;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #main-visual .main-visual__image {
  position: absolute;
  width: 40%;
  bottom: -37%;
  right: 32px;
}
main #main-visual .main-visual__image img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  main #main-visual {
    background-position: 50% 50%;
  }
  main #main-visual .main-visual__notice {
    width: 40%;
    min-width: 400px;
  }
  main #main-visual .main-visual__image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  main #main-visual {
    padding: 36px;
  }
  main #main-visual .features-grid {
    display: flex;
    flex-direction: column;
  }
  main #main-visual .features-grid .feature-card {
    flex-direction: column;
  }
}
main #about {
  padding: 72px 80px;
}
main #about .about-container {
  display: flex;
  align-items: center;
  gap: 68px;
}
main #about .about-container .about-content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main #about .about-container .about-content__title {
  color: var(--main-purple);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main #about .about-container .about-content__title::before {
  content: "ABOUT";
  color: var(--light-purple);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #about .about-container .about-content__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main #about .about-container .about-content__features li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
main #about .about-container .about-content__features li::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/list-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
main #about .about-container .about-content .cta-button {
  margin-top: 8px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: var(--8, 8px);
  border-radius: var(--999, 999px);
  background: var(--main-purple);
  text-decoration: none;
}
main #about .about-container .about-content .cta-button span {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
main #about .about-container .about-image {
  height: 320px;
}
main #about .about-container .about-image img {
  height: 100%;
}
@media screen and (max-width: 960px) {
  main #about .about-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 766px) {
  main #about {
    padding: 48px 24px;
  }
  main #about .about-container {
    gap: 28px;
  }
  main #about .about-container .about-image {
    width: 100%;
    height: auto;
  }
  main #about .about-container .about-image img {
    width: 100%;
  }
}
main #features {
  display: flex;
  gap: 80px;
  padding: var(--72, 72px) 80px;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  background: var(--main-purple);
}
main #features .features-label {
  width: 200px;
  height: 100%;
  vertical-align: top;
}
main #features .features-label__title {
  color: var(--Main-White, #FFF);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #features .features-grid {
  flex: 1 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 32px;
}
main #features .features-grid .feature-card {
  display: flex;
  padding: var(--28, 28px);
  justify-content: center;
  align-items: center;
  gap: var(--28, 28px);
  align-self: stretch;
  border-radius: var(--20, 20px);
  background: #FFF;
}
main #features .features-grid .feature-card .feature-icon {
  display: flex;
  width: 68px;
  height: 68px;
  justify-content: center;
  align-items: center;
  border-radius: 849.15px;
  background: #EDEFFF;
}
main #features .features-grid .feature-card .feature-icon img {
  width: 100%;
  height: 100%;
}
main #features .features-grid .feature-card__text {
  display: flex;
  flex-direction: column;
  gap: var(--12, 12px);
  align-self: stretch;
  flex: 1;
}
main #features .features-grid .feature-card__text h3 {
  color: #37373D;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #features .features-grid .feature-card__text p {
  color: #59595E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 960px) {
  main #features {
    gap: 40px;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  main #features {
    padding: 36px;
  }
  main #features .features-grid {
    display: flex;
    flex-direction: column;
  }
  main #features .features-grid .feature-card {
    flex-direction: column;
  }
}
main #usage .container {
  display: flex;
  padding: 72px 80px;
  background: #F5F6FD;
}
main #usage .container .section-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 200px;
  color: var(--main-purple);
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #usage .container .section-title::before {
  content: "USAGE";
  color: var(--light-purple);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #usage .container .usage-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
main #usage .container .usage-contents .usage-steps {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
main #usage .container .usage-contents .usage-steps__step {
  border-radius: var(--16, 16px);
  background: #FFF;
  display: flex;
  padding: var(--16, 16px) var(--28, 28px);
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
}
main #usage .container .usage-contents .usage-steps__step__number {
  border-radius: var(--999, 999px);
  background: var(--main-purple);
  display: flex;
  width: 28px;
  height: 28px;
  padding-bottom: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
main #usage .container .usage-contents .usage-steps__line {
  width: 50px;
  height: 6px;
  border-radius: var(--999, 999px);
  background: #D9D9D9;
}
main #usage .container .usage-contents .usage-demo {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
main #usage .container .usage-contents .usage-demo__image {
  display: flex;
  width: 495.158px;
  aspect-ratio: 16/9;
  flex-direction: column;
  align-items: center;
}
main #usage .container .usage-contents .usage-demo__image img {
  width: 100%;
}
main #usage .container .usage-contents .usage-demo__description {
  color: #000;
  text-align: center;
  /* Noto Sans JP/M_18 */
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 960px) {
  main #usage .container {
    gap: 40px;
    flex-direction: column;
  }
  main #usage .container .usage-contents .usage-steps__step {
    padding: var(--16, 16px) var(--28, 14px);
    gap: 8px;
    flex: 1 0 0;
  }
  main #usage .container .usage-contents .usage-steps__line {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  main #usage .container {
    padding: 36px;
  }
  main #usage .container .usage-contents .usage-steps {
    flex-direction: column;
  }
  main #usage .container .usage-contents .usage-steps__step {
    width: 100%;
  }
  main #usage .container .usage-contents .usage-steps__line {
    width: 6px;
    height: 30px;
  }
  main #usage .container .usage-contents .usage-demo__image {
    width: 100%;
  }
}
main #pricing .container {
  display: flex;
  padding: var(--72, 72px) var(--80, 80px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--main-purple);
}
main #pricing .container .section-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--Main-White, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 100% */
}
main #pricing .container .section-title::before {
  content: "PRICING PLAN";
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
}
main #pricing .container .table-container {
  width: 100%;
  overflow-x: scroll;
  border-radius: 16px;
  margin-top: 68px;
}
main #pricing .container .table-container .pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow-x: visible;
  table-layout: fixed; /* 均等な横幅を保証 */
  /* レスポンシブ対応 */
}
main #pricing .container .table-container .pricing-table th, main #pricing .container .table-container .pricing-table td {
  padding: 20px 16px;
  text-align: center;
  vertical-align: middle;
}
main #pricing .container .table-container .pricing-table th {
  border-radius: 16px 16px 0 0;
}
main #pricing .container .table-container .pricing-table td {
  height: 92px;
  background: white;
}
main #pricing .container .table-container .pricing-table .plan-header {
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
  padding: 24px 16px;
}
main #pricing .container .table-container .pricing-table .plan-header.label {
  width: 120px;
}
main #pricing .container .table-container .pricing-table .plan-header.starter {
  width: 200px;
  background: #A2CB3A;
}
main #pricing .container .table-container .pricing-table .plan-header.regular {
  width: 200px;
  background: #39B443;
}
main #pricing .container .table-container .pricing-table .plan-header.advance {
  width: 200px;
  background: #009046;
}
main #pricing .container .table-container .pricing-table .plan-header.professional {
  width: 200px;
  background: #FE7D22;
}
main #pricing .container .table-container .pricing-table .plan-header.enterprise {
  width: 200px;
  background: #F63730;
}
main #pricing .container .table-container .pricing-table .row-label {
  background: #F9FAFB;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  text-align: left;
  width: 140px;
  padding: 32px 8px;
  text-align: center;
}
main #pricing .container .table-container .pricing-table .plan-value {
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 100% */
}
main #pricing .container .table-container .pricing-table .plan-value small {
  color: #505051;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
main #pricing .container .table-container .pricing-table .plan-value.starter {
  color: #A2CB3A;
}
main #pricing .container .table-container .pricing-table .plan-value.regular {
  color: #39B443;
}
main #pricing .container .table-container .pricing-table .plan-value.advance {
  color: #009046;
}
main #pricing .container .table-container .pricing-table .plan-value.professional {
  color: #FE7D22;
}
main #pricing .container .table-container .pricing-table .plan-value.enterprise {
  color: #F63730;
  font-size: 24px;
  line-height: 28px; /* 116.667% */
}
@media (max-width: 768px) {
  main #pricing .container .table-container .pricing-table {
    font-size: 14px;
  }
  main #pricing .container .table-container .pricing-table th, main #pricing .container .table-container .pricing-table td {
    padding: 12px 8px;
  }
  main #pricing .container .table-container .pricing-table .row-label {
    width: 100px;
  }
}
main #pricing .container .pricing-note {
  width: 100%;
  color: #FFF;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
  margin-top: 16px;
}
@media screen and (max-width: 1279px) {
  main #pricing .container {
    justify-content: left;
  }
}
@media screen and (max-width: 768px) {
  main #pricing .container {
    padding: 36px;
  }
}
main #usecase .container {
  display: flex;
  padding: 72px 80px;
  background: #F5F6FD;
  display: flex;
  gap: 68px;
}
main #usecase .container .section-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 200px;
  color: var(--Main-purple, #6060FF);
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #usecase .container .section-title::before {
  content: "USE CASE";
  color: #9FA8FF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #usecase .container .usecase-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  flex: 1;
  gap: 28px;
}
main #usecase .container .usecase-grid__item {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
main #usecase .container .usecase-grid__item__image {
  width: 100%;
}
main #usecase .container .usecase-grid__item__label {
  position: absolute;
  z-index: 10;
  color: var(--Main-purple, #6060FF);
  background: white;
  width: -moz-fit-content;
  width: fit-content;
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: var(--32, 32px) 0 var(--20, 20px) 0;
  background: #FFF;
  bottom: 8px;
  right: 0px;
}
@media screen and (max-width: 960px) {
  main #usecase .container {
    gap: 40px;
    flex-direction: column;
  }
  main #usecase .container .usecase-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    flex: 1;
    gap: 28px;
  }
  main #usecase .container .usecase-grid__item {
    height: auto;
  }
  main #usecase .container .usecase-grid__item__label {
    position: absolute;
    z-index: 10;
    color: var(--Main-purple, #6060FF);
    background: white;
    width: -moz-fit-content;
    width: fit-content;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-radius: var(--32, 32px) 0 var(--20, 20px) 0;
    background: #FFF;
    bottom: 5px;
    right: -1px;
  }
}
@media screen and (max-width: 768px) {
  main #usecase .container {
    padding: 36px;
  }
  main #usecase .container .usecase-grid {
    display: flex;
    flex-direction: column;
  }
}
main #contact .container {
  display: flex;
  padding: 72px 80px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
main #contact .container .section-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  width: 200px;
  color: var(--Main-purple, #6060FF);
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
main #contact .container .section-title::before {
  content: "INQURY";
  color: #9FA8FF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
main #contact .container .contact-form {
  width: 80%;
  height: 600px;
}
@media screen and (max-width: 960px) {
  main #contact .container {
    padding: 72px 32px;
  }
}
main #related-services {
  background: var(--main-purple);
  padding: 72px 80px;
}
main #related-services .container {
  display: flex;
  gap: 24px;
}
main #related-services .container .related-service__image {
  width: 45%;
  flex: 1;
}
main #related-services .container .related-service__image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  main #related-services .container {
    display: flex;
    flex-direction: column;
  }
  main #related-services .container .related-service__image {
    width: 100%;
  }
}

#footer {
  background: var(--main-purple);
  padding: 48px 80px 32px;
}
#footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
#footer .container .footer-brand {
  width: 100%;
  display: flex;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  align-items: end;
  gap: 30px;
}
#footer .container .footer-brand img {
  width: 150px;
}
#footer .container .footer-brand p {
  color: var(--eventos-tokyo-nero, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
#footer .container .footer-content {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: 72px;
  align-items: flex-start;
  gap: 60px;
}
#footer .container .footer-content .footer-section {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
#footer .container .footer-content .footer-section__title, #footer .container .footer-content .footer-section h4 {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
#footer .container .footer-content .footer-section__list, #footer .container .footer-content .footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  flex-wrap: wrap;
  height: 75px;
}
#footer .container .footer-content .footer-section__list li, #footer .container .footer-content .footer-section ul li {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}
#footer .container .footer-content .footer-section__list li a, #footer .container .footer-content .footer-section ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
#footer .container .footer-content .footer-section__list li a:hover, #footer .container .footer-content .footer-section ul li a:hover {
  color: #FFF;
  text-decoration: underline;
}
#footer .container .footer-content .footer-section__list li a::after, #footer .container .footer-content .footer-section ul li a::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/assets/top/img/icon_new-window.svg");
}
#footer .container .footer-bottom {
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}
#footer .container .footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
}
@media screen and (max-width: 960px) {
  #footer .container .footer-content {
    height: auto;
    flex-direction: column;
  }
  #footer .container .footer-content .footer-section {
    width: 100%;
  }
  #footer .container .footer-content .footer-section__list, #footer .container .footer-content .footer-section ul {
    flex-direction: row;
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
}
@media (max-width: 768px) {
  #footer {
    padding: 24px 16px 16px;
  }
  #footer .container {
    gap: 20px;
  }
  #footer .container .footer-brand {
    padding-bottom: 16px;
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
  #footer .container .footer-brand p {
    font-size: 12px;
  }
  #footer .container .footer-bottom {
    padding-top: 12px;
  }
  #footer .container .footer-bottom p {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */