﻿body {
  overflow-x: hidden;
}
:root {
  --color-primary: #ff7505;
  --color-accent: #9be0fa;
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #222;
  background: #fff;
}
.sp {
  display: none;
}
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 2rem;
}
.logo img {
  width: clamp(96px, 18vw, 140px);
  height: auto;
}
.header-actions {
  display: flex;
  gap: 1.6rem;
}
.container {
  width: min(92%, 1160px);
  margin-inline: auto;
}
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 1.2rem 2.4rem;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing);
}
.c-btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.c-btn--primary:hover, .c-btn--primary:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 14px rgba(255, 117, 5, 0.35);
}
.arrow {
  font-family: "Roboto Condensed", sans-serif;
}
.cta-global {
  width: 200%;
  left: -50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 14rem 2rem 18rem;
  text-align: center;
  background: url("../img/global/bg.png") center/cover no-repeat;
  transform: rotate(-4deg);
  transform-origin: top left;
  margin: 10% 0 15% 0;
  z-index: 100;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(4deg);
}
.cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 9rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 6rem;
  text-align: center;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.cta-btn {
  flex: 1 1 400px;
  max-width: 480px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 2rem 4rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
}
.cta-btn:hover, .cta-btn:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.access {
  position: relative;
  padding: 12rem 2rem 16rem;
}
.access-main {
  font-size: 24rem;
  color: #14b7f3;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  margin-bottom: 2rem;
}
.access-sub {
  font-size: 5.4rem;
  color: #333;
  margin-bottom: 4rem;
}
.map-wrapper {
  max-width: 1200px;
  margin: 0 auto 6rem;
  overflow: hidden;
}
.corp-title, .corp-heading {
  font-size: 4.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
}
.corp-flex {
  max-width: 1200px;
  margin: 0 auto 10rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 4rem;
}
.corp-col {
  flex: 1 1 480px;
  font-size: 2.4rem;
  color: #333;
  line-height: 1.8;
}
.corp-heading {
  font-size: 3.6rem;
  margin-bottom: 1.6rem;
}
.corp-note {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 2.4rem 0 1rem;
}
.corp-flex.alt {
  flex-direction: row-reverse;
}
.corp-col.alt-right {
  flex: 1 1 480px;
}
.site-footer {
  position: relative;
  background: #14b7f3;
  padding: 0rem 2rem 6rem;
  overflow: visible;
  color: #fff;
  z-index: 50;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -12vw;
  width: 124vw;
  height: 200px;
  background: #14b7f3;
  transform: rotate(-4deg);
  transform-origin: top left;
  z-index: 0;
  pointer-events: none;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -70px;
  left: -12vw;
  width: 124vw;
  height: 10px;
  background: linear-gradient(90deg, #14b7f3 0%, #d0f1fd 100%);
  transform: rotate(-4deg);
  transform-origin: top left;
  z-index: 1;
  pointer-events: none;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.footer-left {
  margin: 14rem 0 0 0;
}
.footer-left p {
  margin: 0 0 1.5rem;
  font-size: 2.3rem;
  line-height: 1.8;
}
.footer-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 2.3rem;
}
.footer-left a:hover, .footer-left a:focus-visible {
  text-decoration: underline;
}
.footer-right .footer-logo {
  max-width: 380px;
  height: auto;
  display: block;
}
.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 6rem;
  text-align: center;
  font-size: 2.4rem;
  color: #333;
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-block: 2rem;
  }
  .site-header {
    padding-block: 1rem;
  }
  .logo img {
    width: 90px;
  }
  .header-actions {
    gap: 1rem;
    margin: 0 0 0 2%;
  }
  .c-btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
  }
  .footer-left p {
    margin-bottom: 2rem;
  }
  .footer-right .footer-logo {
    max-width: 240px;
  }
  .sp {
    display: block;
  }
  .cta-title {
    font-size: 5rem;
  }
  .cta-btn {
    font-size: 1.8rem;
    padding: 1.6rem 3.2rem;
  }
  .cta-global {
    max-width: 130%;
    left: -15%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 14rem 2rem 18rem;
    text-align: center;
    background: url(../img/global/bg.png) center / cover no-repeat;
    transform: rotate(0deg);
    transform-origin: top left;
    margin: 10% 0 15% 0;
    z-index: 100;
  }
  .cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(0deg);
  }
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 290px;
    width: 100%;
  }
  .access-main {
    font-size: 7rem;
    color: #14b7f3;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1;
    margin-bottom: 2rem;
  }
  .access-sub {
    font-size: 2rem;
    color: #333;
    margin-bottom: 4rem;
  }
  .corp-title, .corp-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
  }
  .corp-col {
    flex: 1 1 480px;
    font-size: 1.5rem;
    color: #333;
    line-height: 1.8;
  }
  .corp-note {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.4rem 0 1rem;
  }
  .site-footer::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -12vw;
    width: 124vw;
    height: 200px;
    background: #14b7f3;
    transform: rotate(-4deg);
    transform-origin: top left;
    z-index: 0;
    pointer-events: none;
  }
  .site-footer::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -12vw;
    width: 124vw;
    height: 10px;
    background: linear-gradient(90deg, #14b7f3 0%, #d0f1fd 100%);
    transform: rotate(-4deg);
    transform-origin: top left;
    z-index: 1;
    pointer-events: none;
  }
}