/* =========================
   Root variables
   ========================= */
:root {
  --pink: #fdf2f0;
  --red: #df0045;
  --yellow: #ffffda;
  --white: #fff;
  --black: #000;
  --gray: #efefef;
}

/* =========================
   Base Reset & Defaults
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: var(--black);
  scroll-behavior: smooth;
}

img,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

button {
  padding: 0;
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

button,
a,
.card,
.hover-animate {
  transition: all 0.3s ease;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(0 0 0 / 20%);
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

.mb40 {
  margin-bottom: 40px;
}

.navbar {
  position: fixed;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.6rem 2.4rem;
  background-color: #df0045;
}

.navbar .container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.navbar-sub {
  background-color: var(--white);
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #101010;
  transition: all 0.3s ease-in-out;
}

.nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 615px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.logo {
  min-width: 200px;
  max-width: 300px;
}

@media only screen and (width <= 768px) {
  .nav-menu {
    position: fixed;
    top: 79px;
    left: -100%;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: unset;
    padding-bottom: 20px;
    text-align: center;
    background-color: #df0045;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 10px 27px rgb(0 0 0 / 5%);
    transition: 0.3s;
  }

  .navbar {
    padding: 1.6rem 0;
  }

  .navbar-sub .nav-menu {
    background: #f2f2f2;
  }

  .active {
    left: 0;
    z-index: 99999999;
  }

  .nav-item {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .logo {
    width: 200px;
    max-width: 100%;
  }
}

/* =========================
   Custom Styles
   ========================= */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.sec-1 {
  position: relative;
  padding: 60px 0;
  margin-top: 160px;
  overflow: visible;
  background-color: var(--pink);
}

/* Outward slant at top */
.sec-1::before {
  position: absolute;
  top: -100px; /* move above section */
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100px;
  content: "";
  background-color: var(--pink); /* same as section bg */
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.sec-1 .main2 {
  margin-top: -250px;
  margin-bottom: 40px;
}

/* Keep content above slant */
.sec-1 .container {
  position: relative;
  z-index: 2;
}

.sec-1__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.sec-1__content .content-left {
  flex: 1 1 50%;
}

.sec-1__content .content-right {
  flex: 1 1 50%;
  max-width: 560px;
}

.sec-1__img img {
  display: block;
  width: 100%;
  height: auto;
}

.sec-eng {
  display: block;
  margin-bottom: 30px;
  font-size: 35px;
  font-weight: bold;
  color: var(--black);
}

.sec-title {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
  color: var(--red);
}

.sec-1__content .para {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.5px;
}

.swiper-container {
  margin-top: 150px;
}

@media (width <= 1024px) {
  .sec-eng {
    font-size: 28px;
  }

  .sec-title {
    font-size: 24px;
  }

  .sec-1__content .para {
    font-size: 16px;
  }
}

@media (width <= 768px) {
  .sec-1__content {
    flex-direction: column;
    align-items: center;
  }

  .sec-1__content .content-left,
  .sec-1__content .content-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .sec-eng {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .sec-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .sec-1__content .para {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (width <= 480px) {
  .sec-1 {
    padding: 30px 0;
  }

  .sec-eng {
    font-size: 20px;
  }

  .sec-title {
    font-size: 18px;
  }

  .sec-1__content .para {
    font-size: 14px;
    line-height: 1.6;
  }
}

.sec-2 {
  position: relative;
  width: 100%;
  height: 210vh; /* desktop: 3 slides × 70vh */
}

.swiper-container {
  position: sticky;
  top: 100px;
  z-index: 10;
  width: 100%;
  height: 70vh;
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70vh;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  background: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: translateY(0);
}

@media (width <= 768px) {
  .sec-2 {
    height: 300vh; /* 3 slides × 100vh */
  }

  .swiper-container {
    top: 30px; /* better for mobile */
    height: 100vh;
  }

  .swiper-slide {
    height: 70vh;
    font-size: 18px; /* scale text */
  }
}

.sec-3 {
  padding: 100px 0;
  margin: 50px 0;
  background-image: url("../img/map.png");
  background-position: center;
  background-size: cover;
}

.sec-3 .container {
  position: relative;
}

.sec-3__tag {
  position: absolute;
  top: -140px;
  left: 0;
  z-index: 99;
  width: 10vw;
  max-width: 150px;
}

.sec-3__content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.sec-3__content .sec-3__title {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
  color: var(--red);
}

.sec-3__content .para {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.5px;
}

.sec-3__content .para-small {
  font-size: 14px;
}

.sec-3__sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}

/* Tablet */
@media (width <= 1024px) {
  .sec-3 {
    padding: 80px 20px;
    margin: 40px 0;
  }

  .sec-3__tag {
    top: -100px;
    width: 14vw;
    max-width: 120px;
  }

  .sec-3__content .sec-3__title {
    font-size: 32px;
  }

  .sec-3__content .para {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* Mobile */
@media (width <= 768px) {
  .sec-3 {
    padding: 60px 15px;
    margin: 30px 0;
    background-position: right center; /* better crop on small screens */
  }

  .sec-3__tag {
    z-index: 999;
    display: block;
    width: 60px;
    margin: 0 auto 20px;
  }

  .sec-3__content {
    max-width: 100%;
    text-align: center;
  }

  .sec-3__content .sec-3__title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .sec-3__content .para {
    font-size: 16px;
    line-height: 1.6;
  }

  .sec-3__content .para-small {
    font-size: 13px;
  }

  .sec-3__sub-title {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .sec-3__sub-title img {
    width: 80%;
    height: auto;
  }
}

/* Small Mobile */
@media (width <= 480px) {
  .sec-3 {
    padding: 40px 10px;
  }

  .sec-3__content .sec-3__title {
    font-size: 20px;
  }

  .sec-3__content .para {
    font-size: 14px;
  }

  .sec-3__content .para-small {
    font-size: 14px;
  }
}

.sec-5 {
  padding: 100px 0 350px;
  background: var(--gray);
}

.sec-5__title {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2.5px;
}

.text-highlight {
  color: var(--red);
  background: linear-gradient(
    180deg,
    rgb(42 123 155 / 0%) 59%,
    rgb(255 255 0 / 100%) 60%
  );
}

.sec-5__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  margin-top: 50px;
}

.sec-5__content .sec-5__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 30px 20px;
  text-align: center;
  background: var(--white);
  border-radius: 20px;
}

.sec-5__content .item-number img {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
}

.sec-5__content .ilust {
  max-width: 115px;
  margin: 0 auto 30px;
}

.sec-5__content .ilust3 {
  margin-bottom: 50px;
}

.sec-5__content .item-para {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.5;
}

.sec-5__content .item1 {
  transform: translateY(50px);
}

.sec-5__content .item2 {
  transform: translateY(150px);
}

.sec-5__content .item3 {
  transform: translateY(250px);
}

@media (width <= 768px) {
  .sec-5 {
    padding: 60px 20px 90px;
  }

  .sec-5__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 1px;
  }

  .sec-5__content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .sec-5__content .sec-5__item {
    min-height: auto;
    padding: 20px 15px;
  }

  .sec-5__content .item-number img {
    top: -25px;
    left: -25px;
    width: 70px;
  }

  .sec-5__content .ilust {
    max-width: 80px;
    margin-bottom: 20px;
  }

  .sec-5__content .ilust3 {
    margin-bottom: 30px;
  }

  .sec-5__content .item-para {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Remove staggered transforms on mobile */
  .sec-5__content .item1,
  .sec-5__content .item2,
  .sec-5__content .item3 {
    transform: none;
  }
}

.sec-7 {
  padding: 60px 0 150px;
  background: var(--yellow);
}

.sec-7 .voice-tag {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-7 .voice-tag img {
  width: 200px;
  margin-bottom: 10px;
}

.sec-7 .sec-7__title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.sec-7__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 150px;
}

.sec-7__content .voice-card .voice-img {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.sec-7__content .voice-card .voice-img img {
  position: relative;
  z-index: 99;
  max-width: 170px;
  padding: 0 20px;
  margin-bottom: -20px;
}

.sec-7__content .voice-card .voice-content {
  position: relative;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
}

.sec-7__content .voice-card .voice-content h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.sec-7__content .voice-card .voice-content h4 span {
  font-size: 16px;
}

.sec-7__content .voice-card .voice-content .para {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.5;
}

.sec-7__content .voice-card .voice-content .voice-tag {
  position: absolute;
  top: -40px;
  width: 120px;
}

@media (width <= 768px) {
  .sec-7 {
    padding: 40px 0 80px;
  }

  .sec-7 .voice-tag img {
    width: 140px;
    margin-bottom: 5px;
  }

  .sec-7 .sec-7__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.5;
  }

  .sec-7__content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .sec-7__content .voice-card .voice-img img {
    max-width: 120px;
    padding: 0 10px;
    margin-bottom: -15px;
  }

  .sec-7__content .voice-card .voice-content {
    padding: 15px;
  }

  .sec-7__content .voice-card .voice-content h4 {
    font-size: 18px;
  }

  .sec-7__content .voice-card .voice-content h4 span {
    font-size: 14px;
  }

  .sec-7__content .voice-card .voice-content .para {
    font-size: 13px;
    line-height: 1.6;
  }

  .sec-7__content .voice-card .voice-content .voice-tag {
    top: -30px;
    width: 90px;
  }
}

.sec-8 {
  position: relative;
  padding: 80px 0;
  background-image: url("../img/bg.jpg");
  background-position: center;
  background-size: cover;
}

.sec-8 .faq-badge {
  position: absolute;
  top: -80px;
  left: 20%;
  width: 15vw;
  max-width: 240px;
  transform: translateX(-50%);
}

.sec-8__title {
  margin-bottom: 60px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
}

.faq-wrap {
  width: 100%;
  max-width: 1000px;
  padding: 30px;
  background: var(--gray);
  border-radius: 20px;
}

.faq-wrap:nth-child(odd) {
  align-self: flex-start;
  margin-right: auto;
}

.faq-wrap:nth-child(even) {
  align-self: flex-end;
  margin-left: auto;
}

.q-box,
.a-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.faq-wrap .left-area {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  margin-top: -2px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
}

.q-box {
  padding-bottom: 20px;
  color: var(--red);
  border-bottom: 1px solid var(--black);
}

.faq-wrap .right-area {
  flex: 1;
}

.q-text,
.a-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.q-text {
  font-weight: 700;
  color: var(--red);
}

.a-text {
  font-weight: 400;
}

/* ------------------- TABLET / MOBILE ------------------- */
@media (width <= 1024px) {
  .sec-8 .faq-badge {
    top: -50px;
    left: 15%;
    max-width: 180px;
  }
}

@media (width <= 768px) {
  .sec-8 .faq-badge {
    top: -30px;
    left: 10%;
    max-width: 160px;
  }

  .sec-8__title {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1.4;
  }

  .faq-container {
    gap: 30px;
  }

  .faq-wrap {
    align-self: stretch !important;
    max-width: 100%;
    padding: 20px;
    margin: 0 !important;
  }

  .faq-wrap .left-area {
    min-width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .q-text {
    font-size: 16px;
  }

  .a-text {
    font-size: 14px;
  }

  .q-box,
  .a-box {
    gap: 12px;
  }
}

@media (width <= 480px) {
  .sec-8__title {
    font-size: 22px;
  }

  .faq-wrap {
    padding: 15px;
    border-radius: 10px;
  }

  .faq-wrap .left-area {
    min-width: 24px;
    height: 24px;
    font-size: 18px;
  }

  .faq-wrap .left-area {
    margin-top: 0;
  }

  .q-box,
  .a-box {
    gap: 8px;
  }

  .sec-8 .faq-badge {
    top: -20px;
    left: 50%;
    width: 80px;
    transform: translateX(-50%);
  }
}

.sec-9 {
  padding: 80px 0 100px;
  background-color: var(--gray);
}

.sec-9 .entry-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 80px;
}

.sec-9 .entry-content .left-area {
  flex-shrink: 0;
  width: 100%;
  max-width: 100px;
}

.sec-9 .entry-content .left-area img {
  max-width: 45px;
}

.job-details p {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 2;
}

.sec-9 .right-box-title {
  padding-top: 20px;
  margin-top: 0;
  font-size: 2.4rem;
  line-height: calc(47.32 / 24);
  letter-spacing: 0.07em;
  border-top: 3px solid #000;
}

.sec-9 .side-culture {
  display: flex;
  align-items: center;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.sec-9 .entry-content .right-area {
  padding: 20px 40px;
  background-color: #fff;
  border-radius: 10px;
}

.sec-9 .job-content-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #666;
}

.sec-9 .job-content-item h2,
.sec-9 .job-content-item p {
  font-size: 1.4rem;
  font-feature-settings: "palt" 1;
  line-height: calc(23.09 / 14);
  letter-spacing: 0.14em;
}

.sec-9 .job-content-item h2 {
  width: 140px;
  margin-bottom: 0;
  font-weight: bold;
  text-align: left;
}

.sec-9 .job-content-item p:first-child {
  margin-top: 0;
}

.sec-9 .job-content-item .job-details {
  width: calc(100% - 160px);
}

.sec-9 .job-details__flex {
  display: flex;
}

p.m0 {
  margin: 0;
}

.sec-9 .job-details__flex p {
  margin-top: 0;
}

.sec-9 .job-details__flex span:first-child {
  flex-shrink: 0;
}

@media only screen and (width <= 768px) {
  .sec-9 .entry-content {
    flex-direction: column;
  }

  .sec-9 .entry-content .left-area {
    display: flex;
    align-self: center;
    justify-content: center;
    margin-bottom: 50px;
  }

  .sec-9 .job-content-item {
    flex-direction: column;
    gap: 10px;
  }

  .sec-9 .job-content-item .job-details {
    width: 100%;
  }

  .sec-9 .job-content-item h2 {
    width: 100%;
  }

  .sec-9 .entry-content .right-area {
    padding: 20px;
  }

  .sec-9 {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .sec-9 .entry-content {
    margin-top: 0;
  }
}

.footer {
  position: relative;
  padding: 80px 0 0;
  color: var(--white);
  text-align: center;
  background-color: var(--red);
}

.footer .lopita {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 100px;
  max-width: 20vw;
  transform: translateX(-50%);
}

.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 80px;
}

.footer .footer-title {
  margin-bottom: 10px;
  font-size: clamp(30px, 5vw + 0.2rem, 88px);
  font-weight: bold;
  line-height: 1.2;
}

.footer .para-big {
  margin-bottom: 10px;
  font-size: clamp(20px, 3vw + 0.2rem, 30px);
  font-weight: bold;
}

.footer .para-sub {
  margin-bottom: 40px;
  font-size: clamp(16px, 2.5vw + 0.2rem, 20px);
  font-weight: bold;
}

.footer .footer-btn__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer .footer-btn__wrap a {
  display: flex;
  flex: 1 1 45%;
  align-items: center;
  justify-content: center;
  max-width: 300px;
}

.footer .btn-cta {
  width: 100%;
  height: auto;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: clamp(14px, 1.2vw, 1.2rem);
  color: rgb(255 255 255);
  background-color: rgb(0 0 0);
}

.sec-2 .container,
.c-animation-visual .tag-wrap {
  position: relative;
}

.c-animation-visual .tag-wrap img {
  margin-top: -150px;
}

.sec-2 .container .sec-3__tag {
  top: -100px;
  z-index: 88;
}

/* Vertical dots on right, centered */
.sec-2 .swiper-pagination {
  position: fixed; /* keep centered on viewport while in range */
  top: 50%;
  right: 24px;
  z-index: 1001; /* above backgrounds */
  display: flex;
  visibility: hidden;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;

  /* hidden by default; toggled by JS */
  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.sec-2 .swiper-pagination.is-visible {
  visibility: visible;
  opacity: 1;
}

/* Dots styling */
.sec-2 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgb(136 136 136 / 79.7%);
  border-radius: 50%;
  opacity: 1; /* override Swiper’s default dimming */
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.sec-2 .swiper-pagination-bullet-active {
  background: var(--red);
  transform: scale(1.2);
}

@media (width <= 768px) {
  .sec-2 .swiper-pagination {
    right: 12px;
    gap: 10px;
  }

  .sec-2 .container .sec-3__tag {
    top: 60px;
    z-index: 88;
  }
}

/* ------------------ MOBILE / TABLET ------------------ */
@media (width <= 768px) {
  .c-animation-visual .tag-wrap img {
    margin-top: -40px;
  }

  .footer .lopita {
    top: -60px;
    width: 80px;
  }

  .footer .footer-btn__wrap {
    flex-direction: column;
    gap: 15px;
  }

  .footer .footer-btn__wrap a {
    max-width: 100%;
  }

  .footer .footer-title {
    font-size: clamp(24px, 6vw, 40px);
  }

  .footer .para-big,
  .footer .para-sub {
    text-align: center;
  }
}

@media (width <= 480px) {
  .footer .lopita {
    top: -50px;
    width: 60px;
  }

  .footer .footer-title {
    font-size: clamp(20px, 7vw, 32px);
  }

  .footer .para-big {
    font-size: clamp(16px, 4vw, 24px);
  }

  .footer .para-sub {
    font-size: clamp(14px, 3.5vw, 20px);
  }
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (width <= 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

.hero {
  position: relative;
  padding-top: 90px;
}

.hero .main-title {
  position: absolute;
  top: max(23%, 100px);
  left: max(calc(50% - 600px), 20px);
  z-index: 1;
  max-width: 73.58%;
  padding-right: 20px;
  pointer-events: none;
}

@media (width <= 768px) {
  .hero .main-title {
    top: calc(57.69vw + 90px);
    max-width: 100%;
  }
}

.link-to-entry {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999999;
  display: block;
}

.banner-entry {
  width: 100%;
  max-width: 300px;
}

@media screen and (width <= 768px) {
  .banner-entry {
    max-width: 150px;
  }

  .link-to-entry {
    right: 5px;
    bottom: 5px;
  }
}
