:root {
  --primary-color: #000A56;
  --accent-color: #FF9A11;
  --white-text-color: #FFF;
  --black-text-color: #111;
  --border-radius: 30px;
  --content-color: rgba(255, 255, 255, 0.9);
}

/* Reset */
html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  font-family: 'Noto Sans JP','Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  background: linear-gradient(to right, #000A56 0%, #000425 100%);
  line-height: 1.6;
  color: var(--black-text-color);
  counter-reset: number 0;
}
img,
picture {
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

/* common */
.glocalist-lp__section {
  max-width: 1100px;
  width: calc(100% - 30px);
  scroll-margin-top: 100px;
}
@media (min-width: 768px) {
  .glocalist-lp__section {
    margin: 80px auto 0;
  }
}
@media (max-width: 767px) {
  .glocalist-lp__section {
    margin: 60px auto 0;
  }
}
.glocalist-lp__heading {
  margin-bottom: 30px;
  color: var(--white-text-color);
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .glocalist-lp__heading {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .glocalist-lp__heading {
    font-size: 30px;
  }
}
.glocalist-lp__heading span {
  color: var(--accent-color);
}
@media (max-width: 480px) {
  .glocalist-lp__heading br {
    display: none;
  }
}
.glocalist-lp__lead {
  margin-bottom: 30px;
  color: #FFF;
}

/* header */
.hero-area {
  position: relative;
  margin: 0 auto;
  padding: 60px 10px 60px 60px;
  max-width: 1100px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .hero-area {
    padding: 50px 0 30px 30px;
  }
}
@media (max-width: 767px) {
  .hero-area {
    padding: 30px 20px;
  }
}
.hero-area::before {
  content: "";
  position: absolute;
  background: url(../img/mv.png) no-repeat right;
  opacity: 0.9;
  z-index: -1;
  overflow: hidden;
}
@media (min-width: 1101px) {
  .hero-area::before {
    background-size: 480px;
    top: 0;
  }
}
@media (min-width: 768px) {
  .hero-area::before {
    background-size: 420px;
    top: -30px;
    right: 5%;
    width: 480px;
    height: 440px;
  }
}
@media (max-width: 767px) {
  .hero-area::before {
    width: 350px;
    height: 350px;
    top: -20px;
    opacity: 0.6;
    background-size: 350px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .hero-area::before {
    right: -2%;
  }
}
@media (max-width: 480px) {
  .hero-area::before {
    right: -15%;
  }
}
.hero-area__lead {
  font-weight: bold;
  color: var(--white-text-color);
  white-space: nowrap;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .hero-area__lead {
    margin-bottom: 40px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .hero-area__lead {
    margin-bottom: 80px;
    font-size: 20px;
  }
}
.hero-area__lead span {
  color: var(--accent-color);
}
.hero-area__product-description {
  font-size: 20px;
  color: var(--white-text-color);
}
.hero-area__product-name {
  margin-bottom: 20px;
  font-size: 80px;
  color: var(--white-text-color);
  line-height: 1;
  font-family: Arial;
}
.hero-area__link {
  display: block;
  height: 70px;
  border-radius: 35px;
  font-size: 24px;
  font-weight: bold;
  line-height: 70px;
  text-align: center;
  background: linear-gradient(to right, #FF9A11 0%, #DD6B00 100%);
  color: var(--black-text-color);
}
@media (min-width: 768px) {
  .hero-area__link {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .hero-area__link {
    width: 100%;
  }
}
.hero-area__link:hover,
.hero-area__link:active {
  box-shadow: 0 0 10px 0 rgb(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

/* menu */
.menu-list {
  position: sticky;
  top: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px;
  width: calc(100% - 20px);
  z-index: 1;
}
.menu-list__list {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .menu-list__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 40px;
  }
}
@media (max-width: 767px) {
  .menu-list__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    border-radius: 20px;
  }
}
.menu-list__link {
  display: block;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .menu-list__link {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .menu-list__link {
    padding: 5px 0;
  }
}
.menu-list__link:hover,
.menu-list__link:active {
  text-shadow: 0 0 10px rgba(255, 154, 17, 0.8);
}
.menu-list__link span {
  display: block;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .menu-list__link span {
    padding: 5px 0;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .menu-list__link span {
    padding: 0 20px;
    font-size: 14px;
  }
}
.menu-list__item:not(:first-of-type) .menu-list__link span {
  border-left: solid 1px var(--black-text-color);
}
@media (max-width: 473px) {
  .menu-list__item:nth-of-type(4) .menu-list__link span {
    border-left: 0;
  }
}
@media (min-width: 474px) and (max-width: 767px) {
  .menu-list__link span {
    padding: 0 10px;
  }
}

/* 資料DL */
.download-area {
  padding: 40px 0 50px;
  background: linear-gradient(90deg, #3280A2 0%, #18268D 100%);
}
@media (min-width: 768px) {
  .download-area {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .download-area {
    margin-top: 60px;
  }
}
.download-area__lead {
  font-size: 20px;
  font-weight: bold;
  color: var(--white-text-color);
  text-align: center;
}
@media (max-width: 767px) {
  .download-area__lead {
    margin: 0 20px;
    text-align: left;
  }
  .download-area__lead br {
    display: none;
  }
}
@media (min-width: 768px) {
  .download-area__link-list {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .download-area__link-list {
    margin: 20px auto;
    width: fit-content;
  }
}
@media (max-width: 767px) {
  .download-area__link-item {
    margin-top: 15px;
  }
}
.download-area__link {
  display: block;
  width: 350px;
  height: 70px;
  border-radius: 35px;
  font-size: 24px;
  font-weight: bold;
  line-height: 70px;
  text-align: center;
}
.download-area__link.download-button {
  background: linear-gradient(to right, #FF9A11 0%, #DD6B00 100%);
  color: var(--black-text-color);
}
.download-area__link.contact-button {
  background-color: #C9CBDD;
  color: var(--primary-color);
}
.download-area__link:hover,
.download-area__link:active {
  box-shadow: 0 0 10px 0 rgb(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  transform: translateY(-2px)
}

/* 海外事業における、こんな課題はありませんか？ */
@media (min-width: 768px) {
  .issue-and-solution {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media (min-width: 1101px) {
  .issue-and-solution__item {
    width: calc((100% - 60px) / 3);
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .issue-and-solution__item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .issue-and-solution__item {
    margin-top: 20px;
  }
}
.issue_balloon {
  position: relative;
  border-radius: var(--border-radius);
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-text-color);
  padding: 20px;
}
@media (min-width: 768px) {
  .issue_balloon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 30px solid rgba(255, 255, 255, 0.5);
  }
}
.issue__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
.issu__list {
  width: fit-content;
  margin: 0 auto;
}
.issu__item {
  margin-top: 5px;
  margin-left: 20px;
  list-style: disc;
}
.issue__icon {
  display: block;
  margin: 35px auto 15px;
  width: 82px;
  height: auto;
}
@media (max-width: 767px) {
  .issue__icon {
    display: none;
  }
}
.solution {
  position: relative;
  border-radius: var(--border-radius);
  background: var(--content-color);
  padding: 20px;
  color: var(--primary-color);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .solution {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .solution {
    margin-top: 70px;
  }
}
.solution::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url('../img/issue_list_icon_arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .solution::before {
    top: -90px;
    width: 60px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .solution::before {
    top: -65px;
    width: 40px;
    height: 60px;
  }
}
.solution__title {
  font-size: 20px;
  background: linear-gradient(transparent 70%, var(--accent-color) 70%);
  width: fit-content;
  margin: 0 auto 20px;
  font-weight: bold;
}

/* Glocalistとは */
.about-glocalist__image {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .about-glocalist__image {
    max-width: 900px;
  }
}
@media (max-width: 767px) {
  .about-glocalist__image {
    max-width: 400px;
  }
}

/* 公告データベース × 生成AIで、海外情報を意思決定に使える形へ */
@media (min-width: 768px) {
  .data-base-and-ai__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}
.data-base-and-ai__item {
  position: relative;
  padding: 20px;
  border-radius: var(--border-radius);
  background: var(--content-color);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}
.data-base-and-ai__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 30px solid var(--accent-color);
}
@media (min-width: 768px) {
  .data-base-and-ai__item:not(:last-of-type)::after {
    top: 0;
    bottom: 0;
    right: -60px;
    transform: rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .data-base-and-ai__item:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .data-base-and-ai__item:not(:last-of-type)::after {
    left: 0;
    right: 0;
    bottom: -45px;
  }
}
.data-base-and-ai__image {
  width: 150px;
  height: auto;
  margin: 0 auto 20px;
}
.data-base-and-ai__title {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

/* Glocalistでできること */
.glocalist-features__section {
  counter-increment: number 1; 
}
.glocalist-features__2-cloumns {
  border-radius: var(--border-radius);
  background: var(--content-color);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}
@media (min-width: 1101px) {
  .glocalist-features__2-cloumns {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding: 30px;
  }
}
@media (max-width: 1100px) {
  .glocalist-features__2-cloumns {
    margin-top: 20px;
    padding: 20px;
  }
}
@media (min-width: 1101px) {
  .glocalist-features__section:nth-of-type(even) .glocalist-features__2-cloumns {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1101px) {
  .glocalist-features__text-cloumn {
    width: calc(100% - 30px - 500px);
  }
}
.glocalist-features__image-cloumn {
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}
@media (max-width: 1100px) {
  .glocalist-features__image-cloumn {
    margin-top: 20px;
  }
}
.glocalist-features__image {
    width: 100%;
}
.glocalist-features__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 24px;
  line-height: 1.25;
}
.glocalist-features__heading::before {
  content: counter(number) " ";
  font-size: 80px;
  font-family: Arial;
  color: rgba(0, 10, 86, 0.30);
}

/* 実績と効果 */
.track-record-and-results__section {
  border-radius: var(--border-radius);
  background: var(--content-color);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .track-record-and-results__section {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .track-record-and-results__section {
    margin-top: 20px;
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .track-record-and-results__section-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
.track-record-and-results__heading {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 24px;
  text-align: center;
}
.track-record-and-results__description {
  margin-bottom: 20px;
}
.track-record-and-results__department-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.track-record-and-results__department-item {
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: bold;
  color: var(--white-text-color);
  background-color: var(--primary-color);
}
.customer-case__title {
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 16px;
  font-weight: bold;
  color: var(--white-text-color);
  text-align: center;
  background-color: var(--primary-color);
}
.customer-case__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.customer-case__case-text {
  color: var(--primary-color);
  font-weight: bold;
}
@media (max-width: 980px) {
  .customer-case__case-text {
    font-size: 14px;
    width: 50%;
  }
  .customer-case__case-text br {
    display: none;
  }
}
.customer-case__result-text {
  color: #f0710d;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 981px) {
  .customer-case__result-text {
    font-size: 24px;
  }
}
@media (max-width: 980px) {
  .customer-case__result-text {
    font-size: 20px;
  }
}
.customer-case__number {
  font-size: 40px;
}
@media (min-width: 981px) {
  .customer-case__percent {
    font-size: 30px;
  }
}
@media (max-width: 980px) {
  .customer-case__percent {
    font-size: 20px;
  }
}

/* GSH */
.about-gsh {
  max-width: 1100px;
  width: calc(100% - 40px);
  line-height: 1.75;
}
@media (min-width: 768px) {
  .about-gsh {
    margin: 50px auto 60px;
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about-gsh {
    margin: 30px auto;
  }
}
.about-gsh__image-wrappr {
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background-color:#FFF;
}
@media (min-width: 768px) {
  .about-gsh__image-wrappr {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .about-gsh__image-wrappr {
    width: 240px;
    margin-bottom: 20px;
  }
}
.about-gsh__image {
    width: 100%;
}
.about-gsh__text {
  color: var(--white-text-color);
  font-size: 14px;
}
@media (min-width: 768px) {
  .about-gsh__text {
    width: calc(100% - 300px - 30px);
  }
}

/* footer */
footer {
  padding: 1rem 0;
  background-color: #2C3840;
}
footer .footMenu {
  display: flex;
  flex-direction: row;
  margin: 0 auto 1rem auto;
  padding: 0;
  list-style: none;
  justify-content: center;
}
@media (max-width: 767px) {
  footer .footMenu {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
footer .footMenu li {
  display: table-cell;
  margin: 0;
  padding: 0 1.5rem;
  list-style-type: none;
  font-size: 14px;
}
footer .footMenu li a {
  color: #FFFFFF;
  text-decoration: none;
}
footer small {
  display: block;
  font-size: 11px;
  text-align: center;
  color: #FFFFFF;
}
