@charset "utf-8";

.container {
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(/campaign/2025/50th/1010/images/bg_sp_2.jpg);
  background-position: 0 80px;
  background-repeat: no-repeat;
  background-size: cover;
}

.title {
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

h1 {
  margin-right: 10px;
  font-size: min(4.651162790697675vw, 20px);
  line-height: 1.5;
  color: #002F51;
  text-align: center;
  margin-block: var(--leading-trim);
}

.ship {
  width: 4.30%;
}

.pukapuka {
  animation: floatShip 4s ease-in-out infinite;
}

section {
  text-align: center;
  position: relative;
}

section#tokyo {
  z-index: 7;
}

section#kanto {
  z-index: 6;
}

section#kansai {
  z-index: 5;
}

section#hokkaido {
  z-index: 4;
}

section#hokuriku {
  z-index: 3;
}

section#chugoku {
  z-index: 2;
}

section h2 {
  padding-top: 60px;
  font-size: min(6.976744186046512vw, 30px);
  line-height: 1.5;
  color: #002F51;
  text-align: center;
  margin-block: var(--leading-trim);
}

section p.subtitle {
  padding-top: 5px;
  font-size: min(3.488372093023256vw, 15px);
  line-height: 1.5;
  color: #002F51;
  text-align: center;
  margin-block: var(--leading-trim);
}

.messages {
  width: calc(100% - 20px * 2);
  margin: 0 auto;
}

.message.hidden {
  display: none;
}

.inner {
  width: calc(100% - 10px * 2);
  margin: 60px auto 10px;
  background: rgba(180,194,234,0.10);
  border-radius: 10px;
  padding: 20px 15px;
  position: relative;
  text-align: center;
}

.inner::before {
  content: "“";
  font-size: min(18.6046511627907vw, 80px);
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 300;
  font-style: normal;
  position: absolute;
  top: -30px;
  left: -10px;
  color: #002F51;
}

.inner p {
  font-size: min(2.7906976744186047vw, 12px);
  line-height: 2;
  color: #002F51;
  text-align: left;
  margin-block: var(--leading-trim);
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.inner p img {
  margin-top: 20px;
  border-radius: 10px;
}

.inner p.collapsed {
  max-height: 6em;
}

.inner a {
  display: inline-block;
  font-size: min(2.7906976744186047vw, 12px);
  line-height: 2;
  color: #002F51;
  text-align: center;
  text-decoration: none;
  border-top: 1px solid #00224b;
  margin-top: 20px;
  padding-top: 2px;
  cursor: pointer;
}

.customer {
  font-size: min(3.255813953488372vw, 14px);
  line-height: 1.5;
  color: #002F51;
  text-align: right;
  margin-block: var(--leading-trim);
}

.more {
  margin: 60px auto 0;
}

.more button {
  font-size: min(2.7906976744186047vw, 12px);
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
  background-color: #002F51;
  border: none;
  border-radius: 50px;
  padding: 10px 15px;
  cursor: pointer;
}

.copyright {
  margin: 60px auto 30px;
  font-size: min(2.7906976744186047vw, 12px);
  line-height: 1.5;
  color: #002F51;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sticky {
  display: none;
}

.anchor {
  padding-top: 80px;
  margin-top: -80px;
}

@media only screen and (min-width: 768px) {
  .content {
    width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .container {
    width: 430px;
    margin: 0 auto 0 0;
    padding-bottom: 80px;
    background: #ffffff;
  }

  .sticky {
    display: block;
    width: 430px;
    position: sticky;
    top: 270px;
  }

  .bg {
    display: none;
  }

  .title {
    display: none;
  }

  .sticky .title {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  h3 {
    margin-right: 20px;
    font-size: min(6.976744186046512vw, 30px);
    line-height: 1.5;
    color: #002F51;
    text-align: center;
    margin-block: var(--leading-trim);
  }

  .ship {
    width: 7.67%;
  }

  .copyright {
    display: none;
  }

  .sticky .copyright {
    display: block;
    margin: 20px auto 0;
    font-size: min(1vw, 12px);
    line-height: 1.5;
    color: #002F51;
    text-align: center;
  }
}


/*----------
ANIMATION
----------*/
@keyframes floatShip {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-3px); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}