@charset "UTF-8";
/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   Main SCSS Entry Point
   ======================================== */
/* ========================================
   レスポンシブ設定
   ======================================== */
/* ベースのスタイル（隠しておく） */
.js-fade {
  opacity: 0;
  transform: translateY(30px); /* 30px下から出現 */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 画面に入った時のスタイル（表示） */
.js-fade.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* 順番に表示させたい場合（子要素など）に使える遅延クラス */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   共通スタイル
   ======================================== */
/* ========================================
   カラー変数
   ======================================== */
/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #c7e8fa;
  font-family: YakuHanJP, "M PLUS 1", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  overflow-x: hidden;
}
@media screen and (max-width: 740px) {
  body {
    font-size: 80%;
  }
}

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

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

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 740px) {
  .container {
    padding: 0;
  }
}

/* 黄色いタイトル画像（共通） */
.title-yellow {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto 32px;
}
@media screen and (max-width: 740px) {
  .title-yellow {
    height: 36px;
    margin-bottom: 24px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.box-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff100;
  background: #3eb4e8;
  padding: 15px 30px;
  margin: 0;
  border-radius: 20px 20px 0 0;
  text-align: center;
}
@media screen and (max-width: 740px) {
  .box-title {
    font-size: 22px;
  }
}

/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   Main SCSS Entry Point
   ======================================== */
/* ========================================
   Header
   ======================================== */
.header {
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  height: 40px;
  width: auto;
}

/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   Main SCSS Entry Point
   ======================================== */
/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  background: #fff799;
  padding: 20px 20px 0;
  overflow: visible;
  min-height: auto;
}

/* 左上ロゴ（乗算処理） */
.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.hero-logo-image {
  height: auto;
  max-width: 200px;
  mix-blend-mode: multiply;
}

/* アンバサダー情報テキスト */
.hero-ambassador {
  position: absolute;
  top: 80px;
  left: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-top: 8px;
  line-height: 1.5;
}
@media screen and (max-width: 740px) {
  .hero-ambassador {
    top: 1vw;
    right: 2vw;
    font-size: 2.4vw;
  }
}

/* メインビジュアルコンテナ */
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0px;
  margin-top: -30px;
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* タレント写真 - 1300px幅で1180px */
.hero-talent-image {
  max-width: 1180px;
  width: 100%; /* 1180/1300 = 90.77% */
  height: auto;
  display: block;
}

/* タイトル画像（タレント写真の下部に重ねる）- 1300px幅で872px */
.hero-title-overlay img {
  width: 100%;
  max-width: 950px;
}

.hero-title-image {
  width: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

/* 波状セクション分割 */
.hero-wave {
  position: absolute;
  width: 100%;
  margin-top: -100px;
  z-index: 1;
}
@media screen and (max-width: 740px) {
  .hero-wave {
    margin-top: -50px;
  }
}

.hero-wave img {
  width: 100%;
  display: block;
  margin-top: -1px;
}

/* Responsive - Mobile */
@media screen and (max-width: 740px) {
  .hero {
    padding: 10px 10px 0;
  }
  .hero-logo {
    position: absolute;
    top: 8px;
    left: 10px;
  }
  .hero-logo-image {
    max-width: 120px;
  }
  .hero-ambassador {
    font-size: 10px;
    margin-top: 4px;
  }
  .hero-content {
    padding-top: 40px;
  }
  .hero-talent-image {
    max-width: 100%;
  }
  .hero-title-overlay {
    max-width: 95%;
  }
}
/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   Main SCSS Entry Point
   ======================================== */
/* ========================================
   Campaign Overview Section
   ======================================== */
.campaign-overview {
  position: relative;
  z-index: 5;
  padding: 0 20px 60px;
  margin-top: -200px;
  text-align: center;
}
@media screen and (max-width: 740px) {
  .campaign-overview {
    margin-top: -18dvh;
    padding: 0vw 4vw 4vw;
  }
}

.section-title {
  margin-top: 60px;
}
@media screen and (max-width: 740px) {
  .section-title {
    margin-top: 6vw;
  }
}

.campaign-desc-image {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.campaign-period {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 740px) {
  .campaign-period {
    margin-top: 10vw;
  }
}

.campaign-period-image {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.haikei {
  margin: 40px auto 30px;
  border: solid 1px rgba(102, 51, 51, 0.2);
  border-radius: 20px;
  padding: 15px;
  max-width: 700px;
  background-color: #FFF;
}
@media screen and (max-width: 740px) {
  .haikei {
    margin: 6vw auto 5vw;
    padding: 4vw;
  }
}
.haikei p {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 740px) {
  .haikei p {
    font-size: 3.2vw;
  }
}

/* ========================================
   Presents Section
   ======================================== */
.presents {
  background: #c7e8fa;
  padding: 30px 20px 60px;
  text-align: center;
}
@media screen and (max-width: 740px) {
  .presents {
    padding: 2vw 4vw;
  }
}

.presents-title {
  max-width: 300px;
}

/* メインボックス（青い線で囲む） */
.presents-box {
  background: #fff;
  border: 3px solid #0878be;
  border-radius: 20px;
  margin-top: 30px;
  text-align: left;
  overflow: hidden;
}
.presents-intro {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0;
  text-align: center;
  color: #0878be;
}
@media screen and (max-width: 740px) {
  .presents-intro {
    font-size: 3.5vw;
    margin: 15px 0;
  }
}

.presents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0 30px 30px;
}
@media screen and (max-width: 740px) {
  .presents-grid {
    padding: 0 20px;
  }
}

.present-card {
  padding: 32px;
  text-align: left;
  /* 波線区切り */
  border-bottom: 2px dashed #0878be;
  /* 下2つは下線なし */
}
.present-card:nth-child(odd) {
  border-right: 2px dashed #0878be;
}
.present-card:nth-child(3), .present-card:nth-child(4) {
  border-bottom: none;
}

.present-header {
  margin-bottom: 10px;
}

.present-label {
  position: relative;
  left: -8px;
  width: 100%;
}
@media screen and (max-width: 740px) {
  .present-label {
    left: 0px;
  }
}

.present-name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 740px) {
  .present-name {
    font-size: 3vw;
  }
}

.present-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.present-product {
  width: 100%;
  border-radius: 12px;
}

/* Wチャンス */
.w-chance {
  margin-top: 30px;
  padding: 20px;
  background: #f2f2f2;
  text-align: center;
}

.w-chance-text {
  font-size: 18px;
  font-weight: 700;
  color: #3eb4e8;
  margin-bottom: 15px;
}

.w-chance-image {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

/* 注意書き */
.presents-notes {
  margin-top: 40px;
  text-align: left;
}
.presents-notes p {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

/* ========================================
   Target Products Section
   ======================================== */
.target-products {
  position: relative;
  background: #c7e8fa;
  padding: 60px 20px;
  text-align: center;
}

.target-products-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff100;
  background: #3eb4e8;
  padding: 15px 30px;
  margin: 0;
  border-radius: 20px 20px 0 0;
  text-align: center;
}
@media screen and (max-width: 740px) {
  .target-products-title {
    font-size: 22px;
  }
}

/* メインボックス（タイトルバー下のコンテンツ） */
.target-products-box {
  background: #fff;
  border: 3px solid #3eb4e8;
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 30px;
  text-align: left;
}
@media screen and (max-width: 740px) {
  .target-products-box {
    padding: 10px;
  }
}

.products-image-wrapper {
  margin-bottom: 30px;
}

.products-image {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.products-list p {
  font-size: 13px;
  color: #333;
  line-height: 2;
  margin: 0;
}

.brand-name {
  color: #3eb4e8;
  font-weight: 700;
}

/* Responsive - Mobile */
@media screen and (max-width: 740px) {
  .campaign-desc-image,
  .campaign-period-image {
    max-width: 100%;
  }
  .presents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .present-card {
    padding: 15px 10px;
  }
  .present-image {
    min-height: none;
  }
  .products-image-wrapper {
    padding: 15px;
  }
}
/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   Main SCSS Entry Point
   ======================================== */
/* ========================================
   How to Apply Section
   ======================================== */
.how-to-apply {
  position: relative;
  background: #fff;
  padding: 0 20px 60px;
  text-align: center;
  overflow: hidden;
}

/* セクション間の波（境界線） */
.how-to-apply-wave {
  position: relative;
  width: 100%;
  background: #c7e8fa;
}

.how-to-apply-wave img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 背景装飾（bg.png） */
.how-to-apply-bg {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 250vw;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.how-to-apply .container {
  position: relative;
  z-index: 2;
}

.steps {
  margin: 0 auto 80px;
}
@media screen and (max-width: 740px) {
  .steps {
    margin: 0 auto 10vw;
  }
}

.step {
  background-color: #FFF;
  border: solid 4px #3eb4e8;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  /* 【追加1】テキストと画像を上下中央揃えにする */
  align-items: center;
  /* スマホ時の調整 */
}
@media screen and (max-width: 740px) {
  .step {
    flex-wrap: wrap;
    flex-direction: column;
    /* スマホのときは中央揃え解除（お好みで） */
    align-items: normal;
  }
}
.step .text {
  /* 【追加2】テキストエリアが余った幅を全部使うようにする */
  flex: 1;
}
.step .text h3 {
  display: flex;
  gap: 20px;
  /* アイコンとテキストのズレ防止 */
  align-items: center;
}
.step .text h3 img {
  height: 54px;
}
@media screen and (max-width: 740px) {
  .step .text h3 img {
    height: 10vw;
  }
}
.step .text h3 span {
  font-size: 34px;
  color: #ed86b3;
}
@media screen and (max-width: 740px) {
  .step .text h3 span {
    font-size: 6vw;
  }
}
.step .text p {
  font-size: 22px;
  color: #0476bd;
  text-align: left;
  font-weight: 600;
  /* マージンで少し隙間を調整 */
  margin-top: 15px;
}
@media screen and (max-width: 740px) {
  .step .text p {
    font-size: 3.5vw;
  }
}
.step .pic {
  /* 親で指定されている高さ */
  height: 170px;
  /* 【追加3】画像の横幅エリアがつぶれないように固定・または確保する */
  /* 必要に応じて width: 250px; など固定幅にしてもOK */
  flex-shrink: 0;
}
.step .pic img {
  /* 【追加4】画像を親の高さ(170px)に強制的に合わせる */
  height: 100%;
  width: 100%; /* 横幅も親に合わせる */
  /* 【重要】画像の比率を保ったまま枠に収める */
  object-fit: contain;
}
@media screen and (max-width: 740px) {
  .step .pic {
    /* スマホでは高さをなりゆきにするか、調整する */
    height: 35vw;
    text-align: center; /* 画像を真ん中に */
  }
}
.step:nth-child(3) {
  /* テキストと画像をカタマリとして中央に寄せる */
  justify-content: flex-start;
}
.step:nth-child(3) .text {
  /* 「幅いっぱい広がる(flex:1)」を打ち消して、「文字量に合わせる」に変更 */
  flex: 0 1 auto;
  margin-right: 100px;
}
@media screen and (max-width: 740px) {
  .step:nth-child(3) .text {
    margin-right: 0px;
  }
}

.step-image {
  width: 100%;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

/* Receipt Examples */
.receipt-examples {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.receipt-example {
  text-align: center;
}

.receipt-example-image {
  max-width: 200px;
  width: 100%;
  margin-bottom: 10px;
}

.receipt-label {
  font-size: 16px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 20px;
  display: inline-block;
}

.receipt-ok {
  background: #27ae60;
  color: #fff;
}

.receipt-ng {
  background: #e74c3c;
  color: #fff;
}

/* Responsive - Mobile */
@media screen and (max-width: 740px) {
  .how-to-apply {
    padding: 0 15px 40px;
  }
  .how-to-apply-title {
    font-size: 22px;
  }
  .steps {
    gap: 15px;
  }
  .receipt-examples {
    flex-direction: column;
    gap: 25px;
  }
  .receipt-example-image {
    max-width: 180px;
  }
  .apply-button {
    font-size: 18px;
    padding: 15px 50px;
    width: 100%;
    max-width: 280px;
  }
}
/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   Main SCSS Entry Point
   ======================================== */
/* ========================================
   Receipt Notes Section
   ======================================== */
.receipt-notes {
  background: #fff;
  padding: 40px 20px 30px;
  text-align: center;
}

.receipt-notes-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff100;
  background: #3eb4e8;
  padding: 15px 30px;
  margin: 0;
  border-radius: 20px 20px 0 0;
  text-align: center;
}
@media screen and (max-width: 740px) {
  .receipt-notes-title {
    font-size: 4vw;
  }
}

.receipt-notes-box {
  background: #fff;
  border: 3px solid #3eb4e8;
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 30px;
  text-align: left;
}

.receipt-notes-content {
  margin-bottom: 30px;
}

.receipt-notes-highlight {
  font-size: 19px;
  font-weight: 700;
  color: #1376be;
}

.receipt-notes-small + .receipt-notes-highlight,
.receipt-notes-highlight + .receipt-notes-highlight,
.receipt-notes-text + .receipt-notes-highlight {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #bdc3c7;
}

.receipt-notes-small {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.receipt-notes-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

/* 撮影要素ボックス */
.receipt-elements-box {
  background: #fff;
  border: 2px solid #0878be;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}

.receipt-elements-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: -20px -20px 20px;
  padding: 15px 20px;
  background: #1376be;
  border-radius: 12px 12px 0 0;
}
@media screen and (max-width: 740px) {
  .receipt-elements-title {
    font-size: 3.2vw;
  }
}

.receipt-elements-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 740px) {
  .receipt-elements-grid {
    flex-wrap: nowrap;
    gap: 20px;
  }
}

.receipt-element {
  display: flex;
  align-items: center;
  gap: 15px;
}

.receipt-element-image {
  max-width: 150px;
}

.receipt-element-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.receipt-element-list li {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 740px) {
  .receipt-element-list li {
    font-size: 3vw;
  }
}

.receipt-element-label {
  font-size: 15px;
  color: #333;
}
@media screen and (max-width: 740px) {
  .receipt-element-label {
    font-size: 3vw;
  }
}

/* NG例ボックス */
.receipt-ng-box {
  background: #fff;
  border: 2px solid #0878be;
  border-radius: 16px;
  padding: 20px;
}

.receipt-ng-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: -20px -20px 20px;
  padding: 15px 20px;
  background: #0878be;
  border-radius: 12px 12px 0 0;
}
@media screen and (max-width: 740px) {
  .receipt-ng-title {
    font-size: 3.2vw;
  }
}

.receipt-ng-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 740px) {
  .receipt-ng-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.receipt-ng-item {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.receipt-ng-image {
  max-width: 150px;
  margin-bottom: 10px;
}

.receipt-ng-label {
  font-size: 15px;
  color: #333;
}
@media screen and (max-width: 740px) {
  .receipt-ng-label {
    font-size: 3vw;
  }
}

/* Responsive - Mobile */
@media screen and (max-width: 740px) {
  .receipt-element {
    flex-direction: column;
    text-align: center;
  }
}
/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   Main SCSS Entry Point
   ======================================== */
/* ========================================
   Terms Section
   ======================================== */
.terms {
  background-color: white;
  padding: 40px 20px 60px;
  text-align: center;
}

.terms-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff799;
  background: #3eb4e8;
  padding: 15px 30px;
  margin: 0;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.terms-box {
  background: #fff;
  border: 3px solid #3eb4e8;
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  text-align: left;
}

.terms-content {
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 12px;
}
@media screen and (max-width: 740px) {
  .terms-content {
    padding: 10px;
  }
}
.terms-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #3eb4e8;
  margin: 25px 0 10px;
}
.terms-content h3:first-of-type {
  margin-top: 20px;
}
.terms-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}
.terms-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.terms-content ul li {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 5px;
}

.brand-terms-name {
  font-weight: 700;
  color: #333;
}

.terms-note {
  font-size: 13px !important;
  color: #666 !important;
}

/* Responsive - Mobile */
@media screen and (max-width: 740px) {
  .terms-title {
    font-size: 20px;
    padding: 12px 20px;
  }
  .terms-box {
    padding: 10px;
  }
  .terms-content h3 {
    font-size: 15px;
  }
  .terms-content p, .terms-content ul li {
    font-size: 13px;
  }
}
/* ========================================
   牛乳を飲んで、酪農応援！キャンペーン
   Main SCSS Entry Point
   ======================================== */
/* ========================================
   Apply Button Section
   ======================================== */
.apply-section {
  background: white;
  padding: 0 20px;
  text-align: center;
}

.apply-button {
  display: inline-block;
  background: #0878be;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 20px 80px;
  border-radius: 50px;
  border: 3px solid #fff100;
  border-bottom-width: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.apply-button.none {
  opacity: 0.4;
  pointer-events: none;
}
.apply-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  background: #ff9000;
}

/* ========================================
   Campaign Contact Section
   ======================================== */
.campaign-contact {
  background: #fff;
  padding: 40px 20px 60px;
  text-align: center;
}

.contact-box {
  margin-bottom: 40px;
  background-color: #f2f2f2;
  border-radius: 12px;
  padding: 20px;
}

.contact-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.contact-info {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.campaign-logos {
  margin-top: 30px;
}

.campaign-logo-image {
  max-width: 400px;
  margin: 0 auto;
}

.now_text {
  background: #fff;
  border: 3px solid #3eb4e8;
  border-radius: 20px;
  padding: 30px;
  text-align: left;
}
.now_text h3 {
  margin-bottom: 20px;
  color: #1376be;
}

/* Responsive - Mobile */
@media screen and (max-width: 740px) {
  .apply-button {
    font-size: 18px;
    padding: 15px 50px;
  }
  .campaign-logo-image {
    max-width: 280px;
  }
}
/* ========================================
   Footer
   ======================================== */
.footer {
  background: #0878be;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.copyright {
  font-size: 13px;
  color: white;
}
