@charset "UTF-8";
/* =============================================================
  common.scss — 共通CSSのエントリーポイント → css/common.css
  全ページで読み込む土台。
  ここから出力されるのは「ベース + 大枠 + 再利用パーツ」だけ。
  ページ固有のスタイル（p-*）は pages/xxx.scss が各自コンパイルする。

  ★ 触るのは下記3ファイルだけ。common.scss は触らなくてOK ★
    - _foundation.scss   … 変数・mixin（出力なし）※変更前にチーム相談
    - _base.scss         … body/a/u-* など共通の素スタイル
    - _layout.scss       … ヘッダー・フッター（l-）
    - _components.scss   … ボタン・カードなど（c-）
============================================================= */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.7;
}

:focus-visible {
  outline: 2px solid #ffd23f;
  outline-offset: 2px;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.u-center {
  text-align: center;
}

html,
body {
  height: 100%;
}

body {
  overflow: hidden;
  background: #d6e7f5;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(100vw * 80 / 375, 80px);
  background: #ffffff;
  z-index: 100;
}
.l-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 20px;
}
.l-header__logo {
  line-height: 0;
  width: min(100vw * 230 / 375, 230px);
}
.l-header__logo a {
  display: block;
  width: 100%;
}
.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-frame {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: min(100vw * 80 / 375, 80px);
  box-sizing: border-box;
  background-color: #d6e7f5;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 769px) {
  .l-frame {
    background-image: url("../images/bg-pc.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}
.l-frame__inner {
  width: 100%;
  min-height: 100%;
  margin-inline: auto;
  background: #ffffff;
}
@media screen and (min-width: 769px) {
  .l-frame__inner {
    width: 375px;
    max-width: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  }
}

.l-main {
  display: block;
  width: 100%;
}

.l-footer {
  width: 336px;
  margin-inline: auto;
  padding-top: 16px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
  background: #ffffff;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .l-footer {
    width: calc(100vw * 336 / 375);
    padding-top: calc(100vw * 16 / 375);
    padding-bottom: calc(calc(100vw * 40 / 375) + env(safe-area-inset-bottom));
  }
}
.l-footer__notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .l-footer__notice {
    gap: calc(100vw * 8 / 375);
  }
}
.l-footer__icons {
  display: flex;
  flex-shrink: 0;
  width: 90px;
  gap: 7px;
}
@media screen and (max-width: 768px) {
  .l-footer__icons {
    width: calc(100vw * 90 / 375);
    gap: calc(100vw * 7 / 375);
  }
}
.l-footer__icon {
  flex-shrink: 0;
}
.l-footer__icon--stop {
  width: 33px;
}
@media screen and (max-width: 768px) {
  .l-footer__icon--stop {
    width: calc(100vw * 33 / 375);
  }
}
.l-footer__icon--recycle {
  width: 45px;
}
@media screen and (max-width: 768px) {
  .l-footer__icon--recycle {
    width: calc(100vw * 45 / 375);
  }
}
.l-footer__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__notice-text {
  flex: 1;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .l-footer__notice-text {
    font-size: calc(100vw * 12 / 375);
  }
}
.l-footer__caution {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .l-footer__caution {
    margin-top: calc(100vw * 16 / 375);
    font-size: calc(100vw * 12 / 375);
  }
}
.l-footer__nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    margin-top: calc(100vw * 24 / 375);
    gap: calc(100vw * 10 / 375);
  }
}
.l-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-footer__link {
    gap: calc(100vw * 8 / 375);
    font-size: calc(100vw * 12 / 375);
  }
}
.l-footer__link:hover {
  opacity: 0.7;
}
.l-footer__link-icon {
  display: inline-block;
  width: 11px;
}
@media screen and (max-width: 768px) {
  .l-footer__link-icon {
    width: calc(100vw * 11 / 375);
  }
}
.l-footer__link-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__sep {
  font-size: 12px;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .l-footer__sep {
    font-size: calc(100vw * 12 / 375);
  }
}
.l-footer__copy {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.18;
  text-align: center;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    margin-top: calc(100vw * 24 / 375);
    font-size: calc(100vw * 12 / 375);
  }
}

.l-top-button {
  position: fixed;
  bottom: min(100vw * 20 / 375, 20px);
  right: min(100vw * 20 / 375, 20px);
  z-index: 50;
  display: block;
  text-decoration: none;
  filter: drop-shadow(0 3px 0 #12328C);
  transition: filter 0.2s ease, transform 0.2s ease, opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 600px) {
  .l-top-button {
    right: auto;
    left: calc(50% + 375px / 2 + 24px);
  }
}
.l-top-button:hover {
  filter: none;
  transform: translateY(3px);
}
.l-top-button.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.l-top-button__inner {
  width: min(100vw * 70 / 375, 70px);
  height: min(100vw * 70 / 375, 70px);
}
.l-top-button__inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body {
  background: #ccc;
  font-family: "Yu Gothic", "Noto Sans JP", "游ゴシック", "Yu Gothic Medium", sans-serif;
}

img {
  display: block;
}

.p-about__title {
  margin-bottom: 20px;
}
.p-about__lead {
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.p-about__lead--more {
  margin-bottom: 60px;
}
.p-about__margin {
  margin: 40px auto;
}

.l-main {
  display: block;
  width: 100%;
}

.kv {
  width: 100%;
}

.kv__img {
  width: 100%;
}
.kv__img img {
  width: 100%;
  height: auto;
  display: block;
}

.c-button {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-button {
    height: calc(100vw * 52 / 375);
    border-radius: calc(100vw * 8 / 375);
  }
}
.c-button--gold {
  height: 56px;
  font-size: 24px;
  font-size: 1.5rem;
  background: linear-gradient(90deg, #C18700 0%, #E2B54C 20%, #DFB322 50%, #D39400 80%, #C18700 100%);
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .c-button--gold {
    height: calc(100vw * 52 / 375);
    font-size: calc(100vw * 24 / 375);
  }
}
.c-button--red {
  font-size: 20px;
  font-size: 1.25rem;
  background: #E6262C;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .c-button--red {
    font-size: calc(100vw * 20 / 375);
  }
}
.c-button--navy {
  font-size: 22px;
  font-size: 1.375rem;
  background: #12328C;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .c-button--navy {
    font-size: calc(100vw * 22 / 375);
  }
}
.c-button--outline-red {
  font-size: 20px;
  font-size: 1.25rem;
  background: #ffffff;
  border: 2px solid #E6262C;
  color: #E6262C;
}
@media screen and (max-width: 768px) {
  .c-button--outline-red {
    font-size: calc(100vw * 20 / 375);
  }
}
.c-button--outline-navy {
  font-size: 22px;
  font-size: 1.375rem;
  background: #ffffff;
  border: 2px solid #12328C;
  color: #12328C;
}
@media screen and (max-width: 768px) {
  .c-button--outline-navy {
    font-size: calc(100vw * 22 / 375);
  }
}
.c-button--shadow {
  text-shadow: 0px 0px 8px rgba(90, 66, 0, 0.7);
}
.c-button--disabled, .c-button--disabled:hover {
    background-color: #717171;
    border-color: #717171;
    color: #fff;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 1;
}
.c-button__arrow {
  position: absolute;
  background: #12328C;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-button__arrow {
    width: calc(100vw * 20 / 375);
    height: calc(100vw * 20 / 375);
    right: calc(100vw * 16 / 375);
  }
}
.c-button__arrow::after {
  content: "";
  width: 8px;
  height: 12px;
  background-image: url("../images/icon_arrow.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-button__arrow::after {
    width: calc(100vw * 8 / 375);
    height: calc(100vw * 12 / 375);
  }
}

.c-button-wrap {
  position: relative;
}
.c-button-wrap__icon {
  width: 100%;
  max-width: 214px;
  position: absolute;
  top: -46px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  animation: floating 2s ease-in-out infinite;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-button-wrap__icon {
    max-width: calc(100vw * 214 / 375);
    top: calc(100vw * -46 / 375);
  }
}

.cheers__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.cheers__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.cheers__title--thanks {
  max-width: 146px;
}
.cheers__title--kanpai {
  max-width: 144px;
}
.cheers__circle {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 160/138;
  border-radius: 50%;
  background: linear-gradient(135deg, #12328C 0%, #4B98CA 60%, #6BD3EE 100%);
  margin: 0 auto;
}
.cheers__cans {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 164px;
  height: 110px;
  z-index: 3;
}
.cheers__can {
  position: absolute;
  width: 100%;
  max-width: 48px;
}
.cheers__can--left {
  top: 20px;
  left: 20px;
  transform-origin: left bottom;
  animation: can-left 2.4s ease-in-out infinite;
}
.cheers__can--right {
  top: 20px;
  right: 20px;
  transform-origin: right bottom;
  animation: can-right 2.4s ease-in-out infinite;
}
.cheers__star {
  position: absolute;
  z-index: 4;
  animation: star-spin 4s linear infinite;
}
.cheers__star--1, .cheers__star--4 {
  width: 20px;
  top: 20px;
}
.cheers__star--2, .cheers__star--3 {
  width: 18px;
  top: 44px;
}
.cheers__star--1 {
  left: 16px;
}
.cheers__star--2 {
  left: 58px;
}
.cheers__star--3 {
  right: 58px;
}
.cheers__star--4 {
  right: 16px;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes can-left {
  0%, 100% {
    transform: rotate(0deg) translate(0, 0);
  }
  40% {
    transform: rotate(7deg) translate(8px, -10px);
  }
  50% {
    transform: rotate(5deg) translate(5px, -2px);
  }
  60% {
    transform: rotate(7deg) translate(8px, -10px);
  }
  80% {
    transform: rotate(2deg) translate(2px, -4px);
  }
}
@keyframes can-right {
  0%, 100% {
    transform: rotate(0deg) translate(0, 0);
  }
  40% {
    transform: rotate(-7deg) translate(-8px, -10px);
  }
  50% {
    transform: rotate(-5deg) translate(-5px, -2px);
  }
  60% {
    transform: rotate(-7deg) translate(-8px, -10px);
  }
  80% {
    transform: rotate(-2deg) translate(-2px, -4px);
  }
}
@keyframes star-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.c-accordion {
  width: 100%;
  max-width: 335px;
}
@media screen and (max-width: 768px) {
  .c-accordion {
    max-width: calc(100vw * 335 / 375);
  }
}
.c-accordion__trigger {
  position: relative;
  z-index: 0;
  background: transparent;
  border-radius: 8px 8px 0 0;
}
.c-accordion__trigger.is-open {
  background: #F2FEFF;
}
.c-accordion__trigger.is-open .c-accordion__arrow {
  transform: translateY(-50%) rotate(-180deg);
}
.c-accordion__arrow {
  position: absolute;
  background: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .c-accordion__arrow {
    width: calc(100vw * 20 / 375);
    height: calc(100vw * 20 / 375);
    right: calc(100vw * 16 / 375);
  }
}
.c-accordion__arrow::after {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url("../images/icon_acc-arrow.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-accordion__arrow::after {
    width: calc(100vw * 12 / 375);
    height: calc(100vw * 8 / 375);
  }
}
.c-accordion__content {
  width: 100%;
  max-width: 335px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #F2FEFF;
  border-radius: 0 0 8px 8px;
}
@media screen and (max-width: 768px) {
  .c-accordion__content {
    max-width: calc(100vw * 335 / 375);
  }
}
.c-accordion__inner {
  padding: 40px 16px;
}
@media screen and (max-width: 768px) {
  .c-accordion__inner {
    padding: calc(100vw * 40 / 375) calc(100vw * 16 / 375);
  }
}
.c-accordion__rule {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .c-accordion__rule {
    font-size: calc(100vw * 15 / 375);
  }
}
.c-accordion__rule > .c-accordion__title:not(:first-of-type) {
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-accordion__rule > .c-accordion__title:not(:first-of-type) {
    padding-top: calc(100vw * 10 / 375);
  }
}
.c-accordion__title {
  font-weight: 700;
}
.c-accordion__description {
  line-height: 1.6;
  font-weight: 500;
}
.c-accordion__note {
  margin-top: 4px;
  line-height: 1.6;
  font-weight: 500;
}
