@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Montserrat:wght@400&display=swap");
.gothic {
  font-family: YakuHanJP_Noto, "Noto Sans JP", sans-serif;
}

.zm_gothic {
  font-family: "Zen Maru Gothic", YakuHanJP_Noto, "Noto Sans JP", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.text_color {
  color: #2c2a28;
}

h2, h3, h4, h5, h6, p {
  font-family: "Zen Maru Gothic", YakuHanJP_Noto, "Noto Sans JP", sans-serif;
  color: #2c2a28;
}

.itv-sub-title {
  color: #b1b1a7;
  display: block;
  margin-bottom: -0.5em;
}

a {
  cursor: pointer;
  display: block;
}
a i,
a span, a::after, a::before {
  cursor: pointer;
  display: block;
}

.balloon1-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 22px 30px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  background: #fff;
  border-radius: 23px;
}
@media screen and (max-width: 768px) {
  .balloon1-left {
    margin: 1.5em 0 1.5em 0;
  }
}

.balloon1-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
}
@media screen and (max-width: 768px) {
  .balloon1-left:before {
    top: -30px;
    left: 50%;
    margin-top: 0;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
    border-right: 15px solid transparent;
  }
}

.balloon1-left p {
  margin: 0;
  padding: 0;
  color: #1a1210;
  font-family: "Zen Maru Gothic", YakuHanJP_Noto, "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.8;
}

.detail_link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 198px;
  height: 44px;
  gap: 16px;
  border-radius: 60px;
  background: #d9656f;
  color: #fff;
  font-family: sans-serif;
  letter-spacing: 2px;
  font-size: 18px;
  text-decoration: none;
  overflow: hidden;
}
.detail_link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #E38E95;
  border-radius: 60px;
  z-index: 1;
  transition: transform 150ms ease-in-out;
}
.detail_link:hover::after {
  transform: translateX(77.5%);
}
.detail_link span {
  margin-left: -20px;
  z-index: 2;
}
.detail_link i {
  position: relative;
  transition: transform 150ms ease-in-out, opacity 150ms ease-in-out;
  z-index: 2;
  width: 16px;
  height: 16px;
  background: url(../img/link_arrow.svg) no-repeat center center;
  display: block;
}
.detail_link .last {
  opacity: 0;
  transform: translateX(250%);
}
.detail_link:hover .first {
  transform: translateX(0%);
  opacity: 0;
}
.detail_link:hover .last {
  transform: translateX(890%);
  opacity: 1;
}

.text-highlight-pink {
  position: relative;
  display: inline;
  text-decoration: none;
}
.text-highlight-pink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 6px;
  background: #f2cbcf;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease-out;
  z-index: -1;
}
.text-highlight-pink.animate::after {
  transform: scaleX(1);
}

.text-highlight-yellow {
  position: relative;
  display: inline;
  text-decoration: none;
}
.text-highlight-yellow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 6px;
  background: #fde047;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease-out;
  z-index: -1;
}
.text-highlight-yellow.animate::after {
  transform: scaleX(1);
}

.text-palt {
  font-feature-settings: "palt" 1;
}

/* アニメーション ここから */
/* 基本のフェードインアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-out;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

/* 下からフェードアップ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-out;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* 左からスライドイン */
.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s ease-out;
}

.slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

/* 右からスライドイン */
.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.7s ease;
}
@media screen and (max-width: 768px) {
  .slide-right {
    transform: translateY(30px);
  }
}

.slide-right.animate { /* animated → animate に統一 */
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .slide-right.animate {
    transform: translateY(0);
  }
}

/* ズームイン */
.zoom-in {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease-out;
}

.zoom-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* バウンスアニメーション */
.bounce-in {
  opacity: 0;
  transform: translateY(25px) scale(0.5);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 遅延アニメーション用 */
.delay-100 {
  transition-delay: 0.1s;
}

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

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

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* 継続時間の調整 */
.duration-fast {
  transition-duration: 0.4s;
}

.duration-normal {
  transition-duration: 0.8s;
}

.duration-slow {
  transition-duration: 1.2s;
}

/* アニメーション ここまで *//*# sourceMappingURL=ambassador.css.map */