@charset "UTF-8";
.top-wrap {
  position: relative;
  width: 100%;
  padding: 350px 0;
}
.top {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f3f3f3, #fff, #ececec);
}
.top__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.top-wrap {
  position: relative;
  z-index: 1;
}

.top-wrap__ttl {
  position: absolute;
  top: 25%;
  left: 11%;
  text-align: center;
}
.top-wrap__ttl h1 {
  font-size: clamp(8rem, -3rem + 13.75vw, 9.375rem);
  font-weight: 500;
  line-height: 0.8;
  color: #cccccc;
}
.js-typing {
  opacity: 1;
}
/* 文字打ち（前回のやつのままでOK） */
.js-typing span {
  opacity: 0;
  display: inline-block;
  transform: translateY(0.6em) scale(0.96);
  -webkit-filter: blur(8px);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-filter 1.2s ease;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease,
    -webkit-filter 1.2s ease;
}

/* ここからスライドイン対象 */
.top-wrap__txt {
  opacity: 0;
  transform: translateY(18px);
  -webkit-filter: blur(6px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-filter 1.2s ease;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease,
    -webkit-filter 1.2s ease;
  transition-delay: 0.15s; /* h1終わり直後に少し余韻 */
}

.top-wrap__txt.is-show {
  opacity: 1;
  transform: translateY(0);
  -webkit-filter: blur(0);
  filter: blur(0);
}

/* さらに気持ちよく：中身を段階表示（任意） */
.top-wrap__txt.is-show > div {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.top-wrap__txt.is-show > div:nth-child(1) {
  transition-delay: 0.1s;
}
.top-wrap__txt.is-show > div:nth-child(2) {
  transition-delay: 0.22s;
}
.top-wrap__txt.is-show > div:nth-child(3) {
  transition-delay: 0.34s;
}
.top-wrap__txt.is-show > div {
  opacity: 1;
  transform: translateY(0);
}

.top-wrap__img {
  position: absolute;
  bottom: -2px;
  right: 15%;
}
.top-wrap__img img {
  max-width: 100%;
  height: auto;
  width: 90%;
}
.top-wrap__txt {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 14px;
}
.top-wrap__txt--name h2 {
  font-size: 38px;
  font-weight: 200;
}
.top-wrap__txt--alias h3 {
  font-size: clamp(1rem, 0.8176rem + 0.5405vw, 1.25rem);
  font-weight: 200;
}
.news-blog {
  background-color: #ffffff;
}
.news-blog-wrap {
  width: 90%;
  padding: 120px 0;
}
.news-blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  opacity: 0;
  transform: translateY(120px); /* ← ここを大きく */
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-filter 1.6s ease;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s ease;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s ease,
    -webkit-filter 1.6s ease;
}
.news-blog__grid.is-show {
  opacity: 1;
  transform: translateY(0);
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-blog__item {
  max-width: 480px;
  aspect-ratio: 1 / 1;
  position: relative;
  background-color: #f6f6f8;
  border-radius: 15px;
  box-shadow: 1px -4px 6px rgb(0 0 0 / 7%);
}
.news-blog__ttl {
  text-align: center;
  font-size: 29px;
  position: absolute;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  top: -3%;
  line-height: 1;
  font-weight: 100;
}
.news-blog__ttl h3 {
  font-weight: 500;
}
.news-blog__ttl p {
  display: inline-block;
  font-size: 12px;
  padding: 8px 18px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 15px;
  font-weight: bold;
}
.news-blog__list {
  list-style: none;
  padding: 60px 40px;
}
.date {
  font-size: 14px;
  color: #888888;
}
.title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.desc {
  font-size: 14px;
  line-height: 2;
  margin-top: 10px;
}
.blog__item:first-child {
  margin-bottom: 20px;
}
.news__item a {
  color: #000000;
  text-decoration: none;
  font-weight: 100;
}
.news__item:not(:last-child) {
  margin-bottom: 20px;
}
.blog__item a {
  color: #000000;
  text-decoration: none;
  font-weight: 100;
}
.slider {
  width: 100%;
}
.slider img {
  aspect-ratio: 16 /9;
  width: 100%;
}

.media-pro {
  background-image: url("../img/back.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.media-pro__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.media-pro__item {
  position: relative;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 1px -4px 6px rgb(0 0 0 / 5%);
  max-width: 480px;
}
.media-pro__ttl {
  text-align: center;
  font-size: 29px;
  position: absolute;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  top: -3%;
  line-height: 1;
  font-weight: 100;
}
.media-pro__ttl h3 {
  font-weight: 500;
}
.media-pro__ttl p {
  display: inline-block;
  font-size: 12px;
  padding: 8px 18px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 15px;
  font-weight: bold;
}
.media__item:first-child {
  margin-bottom: 40px;
}
.media__item a {
  color: #000000;
  text-decoration: none;
}
.media-pro__list {
  list-style: none;
  padding: 60px 40px;
}
.media-pro__btn {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px 60px;
}
.media-pro__btn a {
  background: linear-gradient(to right, #e2e2e2, #ffffff);
  padding: 28px 30px;
  border-radius: 11px;
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  border: 1px solid #e2e2e2;
  font-weight: 100;
}
.media-pro__btn a::after {
  content: ">";
  margin-left: 10px;
  margin-bottom: 6px;
  display: inline-block;
  vertical-align: middle;
}
.profile {
  position: relative;
  width: 54%;
  place-content: center;
}
.profile__ttl {
  text-align: center;
  font-size: 29px;
}
.profile__ttl h3 {
  font-weight: 100;
}
.profile__body p {
  margin: 25px 0 35px 0;
  font-size: 14px;
  line-height: 2;
}
.profile__btn {
  text-align: center;
}
.profile__btn a {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1px;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.profile__btn a::after {
  content: ">";
  margin-left: 10px;
  margin-bottom: 6px;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
}
.profile__img {
  position: absolute;
  top: -15%;
  left: 110%;
  width: 75%;
}
.profile__img img {
  width: 100%;
  height: auto;
}
.media-pro__grid {
  opacity: 0;
  transform: translateY(140px) scale(0.96);
  -webkit-filter: blur(12px);
  filter: blur(12px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-filter 1.6s ease;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s ease;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s ease,
    -webkit-filter 1.6s ease;
}

.media-pro__grid.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  -webkit-filter: blur(0);
  filter: blur(0);
}
@media screen and (max-width: 1280px) {
  .top-wrap {
    padding: 320px 0;
  }
  .top-wrap__img {
    right: 10%;
  }
  .top-wrap__img img {
    width: 90%;
  }
  .top-wrap__ttl {
    position: absolute;
    top: 25%;
    left: 5%;
    text-align: center;
  }
}
@media screen and (max-width: 1080px) {
  .top-wrap__ttl h1 {
    font-size: clamp(5.375rem, -0.6964rem + 12.1429vw, 7.5rem);
  }
  .top-wrap__img img {
    width: 80%;
  }
  .top-wrap__img {
    right: 0%;
  }
  .top-wrap {
    padding: 280px 0;
  }

  .news-blog__item {
    max-width: 480px;
    aspect-ratio: auto;
  }
  .news-blog__list {
    padding: 13% 8%;
  }
  .title {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
  }
  .media-pro__btn {
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px 40px;
  }
  .media-pro__btn a {
    padding: 20px 15px;
    font-size: 16px;
  }
  .media__item:first-child {
    margin-bottom: 20px;
  }
  .desc {
    line-height: 1.8;
    margin-top: 10px;
  }
  .profile {
    position: relative;
    place-content: center;
  }
  .profile__img {
    left: 100%;
    top: -10%;
    left: 115%;
    width: 160px;
  }
}
@media screen and (max-width: 800px) {
  .top-wrap__ttl h1 {
    font-size: clamp(4rem, 1.9231rem + 6.1538vw, 5rem);
  }
  .top-wrap {
    padding: 250px 0;
  }
  .top-wrap__img {
    right: -13%;
  }
  .top-wrap__img img {
    width: 70%;
  }
  .top-wrap__txt--name h2 {
    font-size: 32px;
    font-weight: 200;
  }
  .top-wrap__txt {
    font-size: 13px;
  }
  .news-blog__grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }
  .news-blog__item {
    width: 100%;
    margin: 0 auto;
  }
  .news-blog__ttl {
    top: -5%;
  }
  .media-pro__grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }
  .media-pro__item {
    margin: 0 auto;
  }
  .profile {
    width: 60%;
  }
  .profile__img {
    top: -20%;
    left: 115%;
    width: 125px;
  }
}
@media screen and (max-width: 640px) {
  .top-wrap__img img {
    width: 55%;
  }
  .top-wrap {
    padding: 210px 0;
  }
  .top-wrap__img {
    right: -30%;
  }
  .top-wrap__txt--name h2 {
    font-size: 28px;
    line-height: 1.4;
  }
  .top-wrap__txt {
    margin-top: 15px;
    font-size: 12px;
  }
}
@media screen and (max-width: 540px) {
  .top-wrap__ttl {
    top: 10%;
    left: 2%;
  }
  .top-wrap__ttl h1 {
    font-size: clamp(3rem, 1.4423rem + 4.6154vw, 3.75rem);
  }
  .top-wrap__txt--name h2 {
    font-size: 24px;
  }
  .top-wrap__img {
    right: -46%;
  }
  .p {
    font-size: 13px;
  }
  .profile__img {
    top: 0;
    left: 100%;
    width: 110px;
  }
  .top-wrap__img img {
    width: 40%;
  }
  .top-wrap {
    padding: 160px 0;
  }
  .top-wrap__ttl h2 {
    font-size: 18px;
  }
  .top-wrap__txt--alias h3 {
    font-size: 12px;
  }
}
@media screen and (max-width: 420px) {
  .top-wrap__ttl h1 {
    font-size: clamp(2.625rem, 1.8462rem + 2.3077vw, 3rem);
  }
  .top-wrap__img {
    right: -61%;
  }
}
@media screen and (max-width: 360px) {
  .top-wrap__img img {
    width: 37%;
  }
  .top-wrap__txt--name h2 {
    font-size: 20px;
  }
  .top-wrap__img {
    right: -75%;
  }
}
.news-blog__item .ameblo-embed {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.news-blog__item .ameblo-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 透明リンクを全面に被せる */
.news-blog__item .ameblo-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* 中身の“表示窓”を固定して、中だけスクロール */
.ameblo-embed.ameblo-embed--crop > .ameblo-latest {
  list-style: none;
  margin: 0;
  padding: 12px 14px;
  height: 420px; /* ← iframeっぽい高さ（好みで） */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* 項目 */
.ameblo-embed.ameblo-embed--crop > .ameblo-latest > .ameblo-latest__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* リンクをカードっぽく */
.ameblo-embed.ameblo-embed--crop
  > .ameblo-latest
  > .ameblo-latest__item
  > .ameblo-latest__link {
  display: block;
  padding: 12px 8px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ameblo-embed.ameblo-embed--crop
  > .ameblo-latest
  > .ameblo-latest__item
  > .ameblo-latest__link:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* 日付＋タイトル */
.ameblo-embed.ameblo-embed--crop .ameblo-latest__date {
  display: inline-block;
  margin-right: 10px;
  opacity: 0.75;
  font-size: 12px;
}

.ameblo-embed.ameblo-embed--crop .ameblo-latest__title {
  display: inline;
  font-weight: 500;
  line-height: 1.5;
}

/* スマホは高さ少し低め */
@media (max-width: 750px) {
  .ameblo-embed.ameblo-embed--crop > .ameblo-latest {
    height: 320px;
    padding: 10px 12px;
  }
}
