@charset "UTF-8";
/*------------------------------------------------------------
 * 共通
------------------------------------------------------------*/
body {
  color: #000;
}

.adjust-width {
  max-width: 1140px;
}

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

.c-button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  border-radius: 3.7rem;
  color: #0055a2;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.2rem 4rem 1.2rem 2rem;
  border: 6px solid transparent;
  text-decoration: none;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button a {
    font-size: 1.6rem;
    padding: 1rem 4rem;
  }
}
.c-button a::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.2rem;
  background-color: #0055a2;
  -webkit-mask: url("/assets/images/character/menu-arrow.svg") center/contain no-repeat;
  mask: url("/assets/images/character/menu-arrow.svg") center/contain no-repeat;
  right: 2rem;
}
@media screen and (min-width: 769px) {
  .c-button a:hover {
    opacity: 1;
    border: 6px solid rgba(15, 143, 223, 0.3);
  }
}
.c-button.-blue a {
  background-color: #0f8fdf;
  color: #fff;
  -webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.c-button.-blue a::after {
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 769px) {
  .c-button.-blue a:hover {
    background-color: #fff;
    color: #0055a2;
  }
  .c-button.-blue a:hover::after {
    background-color: #0055a2;
  }
}

.c-title {
  color: #0055a2;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  .c-title {
    margin-bottom: 4.8rem;
  }
}
.c-title h1,
.c-title h2 {
  font-family: "Ultra", serif;
  font-size: 10.4rem;
  line-height: 1.3;
  margin-bottom: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c-title h1,
.c-title h2 {
    font-size: 5.4rem;
    margin-bottom: 0.8rem;
  }
}
.c-title p {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-title p {
    font-size: 1.4rem;
    line-height: 1.28;
  }
}

/*------------------------------------------------------------
 * メインビュー
------------------------------------------------------------*/
.mv {
  position: relative;
  overflow: hidden;
}
.mv .mv-bg {
  background-color: #d9f1ff;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.mv .bg-anim {
  --bg-size: 24rem;
  --bg-size-sp: 12rem;
  position: absolute;
  width: 200%;
  height: 200%;
  left: -100%;
  top: 0;
  background-image: url("/assets/images/character/mv-bg.svg");
  background-size: var(--bg-size);
  -webkit-animation: move-bg 60s linear infinite;
  animation: move-bg 60s linear infinite;
}
@media screen and (max-width: 768px) {
  .mv .bg-anim {
    background-size: var(--bg-size-sp);
    -webkit-animation: move-bg-sp 60s linear infinite;
    animation: move-bg-sp 60s linear infinite;
  }
}
@-webkit-keyframes move-bg {
  100% {
    background-position: calc(var(--bg-size) * 4) calc(var(--bg-size) * 4 * -1);
  }
}
@keyframes move-bg {
  100% {
    background-position: calc(var(--bg-size) * 4) calc(var(--bg-size) * 4 * -1);
  }
}
@-webkit-keyframes move-bg-sp {
  100% {
    background-position: calc(var(--bg-size-sp) * 4) calc(var(--bg-size-sp) * 4 * -1);
  }
}
@keyframes move-bg-sp {
  100% {
    background-position: calc(var(--bg-size-sp) * 4) calc(var(--bg-size-sp) * 4 * -1);
  }
}
.mv .mv-container {
  padding-top: 8rem;
  padding-bottom: 51.4rem;
  padding-left: min(5.6vw, 8rem);
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv .mv-container {
    padding: 3rem 2rem 0;
  }
}
.mv .content {
  width: min(33.3vw, 45.6rem);
}
@media screen and (max-width: 768px) {
  .mv .content {
    width: 100%;
    margin-bottom: 1.8rem;
    padding-right: 7px;
    padding-left: 7px;
    text-align: center;
  }
}
.mv .character-name {
  margin-top: 16rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .mv .character-name {
    margin-top: 3.2rem;
  }
}
.mv .character-name img {
  height: auto;
}
.mv .sub-text {
  margin-top: 0;
  font-size: 1.8rem;
  line-height: 1.55;
  color: #fff;
  border-radius: 2.2rem;
  background-color: #0055a2;
  padding: 0.6rem 2.4rem;
  display: inline-block;
  font-size: min(1.8rem, 1.4vw);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mv .sub-text .u-sp-only {
    display: none;
  }
}
@media screen and (max-width: 389px) {
  .mv .sub-text .u-sp-only {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mv .sub-text {
    font-size: 1.6rem;
    line-height: 1.75;
    padding: 0.6rem 2.3rem;
  }
}
.mv .right {
  position: absolute;
  right: 0;
  top: 0;
  width: min(81.5rem, 57vw);
  opacity: 1;
  -webkit-transform: translateX(900px) rotate(30deg);
  transform: translateX(900px) rotate(30deg);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-animation: slide-right 0.6s ease-out forwards;
  animation: slide-right 0.6s ease-out forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .mv .right {
    position: static;
    width: 100%;
    text-align: right;
  }
}
@-webkit-keyframes slide-right {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slide-right {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*------------------------------------------------------------
 * メニュー
------------------------------------------------------------*/
.menu-container {
  position: relative;
  background-color: #0f8fdf;
  border-radius: 20rem 20rem 0 0;
  padding: 13.6rem 0 12rem;
  margin-top: -255px;
}
@media screen and (max-width: 768px) {
  .menu-container {
    border-radius: 8rem 8rem 0 0;
    padding: 6.4rem 0 8rem;
    margin-top: -93px;
  }
}
.menu-container .adjust-width {
  max-width: 992px;
}
@media screen and (max-width: 768px) {
  .menu-container .adjust-width {
    padding-right: 14.1vw;
    padding-left: 14.1vw;
  }
}
.menu-container .page-nav {
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 768px) {
  .menu-container .page-nav {
    margin-bottom: 4.8rem;
  }
}
.menu-container .page-nav ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.6rem;
}
@media screen and (max-width: 768px) {
  .menu-container .page-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.2rem;
  }
}
.menu-container .page-nav li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.menu-container .bg-loop-right {
  overflow: hidden;
}
.menu-container .bg-loop-right .loop-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -webkit-animation: loop-right 30s linear infinite;
  animation: loop-right 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .menu-container .bg-loop-right .loop-inner {
    gap: 1.8rem;
    -webkit-animation: loop-right-sp 30s linear infinite;
    animation: loop-right-sp 30s linear infinite;
  }
}
.menu-container .bg-loop-right img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: none;
  width: 2023px;
}
@media screen and (max-width: 768px) {
  .menu-container .bg-loop-right img {
    width: 1122px;
  }
}
@-webkit-keyframes loop-right {
  0% {
    -webkit-transform: translateX(calc(-2023px - 3.2rem));
    transform: translateX(calc(-2023px - 3.2rem));
  }
  100% {
    translate: 0;
  }
}
@keyframes loop-right {
  0% {
    -webkit-transform: translateX(calc(-2023px - 3.2rem));
    transform: translateX(calc(-2023px - 3.2rem));
  }
  100% {
    translate: 0;
  }
}
@-webkit-keyframes loop-right-sp {
  0% {
    -webkit-transform: translateX(calc(-1122px - 1.8rem));
    transform: translateX(calc(-1122px - 1.8rem));
  }
  100% {
    translate: 0;
  }
}
@keyframes loop-right-sp {
  0% {
    -webkit-transform: translateX(calc(-1122px - 1.8rem));
    transform: translateX(calc(-1122px - 1.8rem));
  }
  100% {
    translate: 0;
  }
}

/*------------------------------------------------------------
 * プロフィール
------------------------------------------------------------*/
.profile-section {
  background-color: #0f8fdf;
}
.profile-section .profile-container {
  border-radius: 20rem 20rem 0 0;
  background-color: #fff;
  padding: 12rem 0 11.6rem;
}
@media screen and (max-width: 768px) {
  .profile-section .profile-container {
    border-radius: 8rem 8rem 0 0;
    padding: 6.4rem 0 8rem;
  }
}
.profile-section .c-title {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .profile-section .inner {
    margin-top: 2.6rem;
  }
}
.profile-section .bg-loop-left {
  overflow: hidden;
  white-space: nowrap;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .profile-section .bg-loop-left {
    padding-top: 5.7rem;
    padding-bottom: 5.7rem;
  }
}
.profile-section .bg-loop-left .loop-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8rem;
  -webkit-animation: loop-left 35s linear infinite;
  animation: loop-left 35s linear infinite;
}
@media screen and (max-width: 768px) {
  .profile-section .bg-loop-left .loop-inner {
    gap: 4.4rem;
    -webkit-animation: loop-left-sp 30s linear infinite;
    animation: loop-left-sp 30s linear infinite;
  }
}
.profile-section .bg-loop-left img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: none;
  width: 2560px;
}
@media screen and (max-width: 768px) {
  .profile-section .bg-loop-left img {
    width: 1419px;
  }
}
@-webkit-keyframes loop-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-2560px - 8rem));
    transform: translateX(calc(-2560px - 8rem));
  }
}
@keyframes loop-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-2560px - 8rem));
    transform: translateX(calc(-2560px - 8rem));
  }
}
@-webkit-keyframes loop-left-sp {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-1419px - 4.4rem));
    transform: translateX(calc(-1419px - 4.4rem));
  }
}
@keyframes loop-left-sp {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-1419px - 4.4rem));
    transform: translateX(calc(-1419px - 4.4rem));
  }
}
.profile-section .content {
  position: relative;
  margin-top: -37.7rem;
}
@media screen and (max-width: 768px) {
  .profile-section .content {
    margin-top: -21.9rem;
  }
}
.profile-section .content p {
  margin: 0;
}
.profile-section .content .character,
.profile-section .content .character-name {
  margin-bottom: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .profile-section .content .character {
    margin-bottom: 1.6rem;
  }
  .profile-section .content .character img {
    width: 22.4rem;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .profile-section .content .character-name img {
    width: 22.2rem;
    height: auto;
  }
}
.profile-section .content .text {
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 560px;
  margin: 0 auto 3.1rem;
}
@media screen and (max-width: 768px) {
  .profile-section .content .text {
    font-size: 1.6rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.profile-section .profile {
  margin: 0 auto 5.6rem;
  max-width: 76rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  row-gap: 8px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .profile-section .profile {
    grid-template-columns: 80px 1fr;
    row-gap: 4px;
    font-size: 1.6rem;
  }
}
.profile-section .profile dt,
.profile-section .profile dd {
  padding: 1.05rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .profile-section .profile dt,
.profile-section .profile dd {
    padding: 1.1rem 1.4rem;
  }
}
.profile-section .profile dt {
  background-color: #0055a2;
  border-radius: 8px 0 0 8px;
  color: #fff;
  letter-spacing: 0.4em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .profile-section .profile dt {
    border-radius: 4px 0 0 4px;
  }
}
.profile-section .profile dd {
  background-color: rgba(217, 241, 255, 0.5);
  border-radius: 0 8px 8px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .profile-section .profile dd {
    border-radius: 0 4px 4px 0;
  }
}
.profile-section .feature {
  text-align: center;
}
.profile-section .feature img {
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

/*------------------------------------------------------------
 * ギャラリー
------------------------------------------------------------*/
.gallery-section {
  position: relative;
  overflow: hidden;
}
.gallery-section .gallery-container {
  border-radius: 20rem;
  background-color: #0f8fdf;
  padding-top: 10.3rem;
  padding-bottom: 12rem;
  background-image: url("/assets/images/character/gallery-bg.png");
}
@media screen and (max-width: 768px) {
  .gallery-section .gallery-container {
    border-radius: 8rem;
    padding-top: 5.4rem;
    padding-bottom: 8rem;
  }
}
.gallery-section .c-title {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .gallery-section .c-title {
    gap: 1.7rem;
  }
}
@media screen and (max-width: 389px) {
  .gallery-section .c-title {
    gap: 0.7rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .gallery-section .c-title img {
    width: 8.2rem;
    height: auto;
  }
}
.gallery-section .gallery-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .gallery-section .gallery-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
.gallery-section .gallery-group .item img {
  border-radius: 3.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  .gallery-section .gallery-group .item img {
    border-radius: 2rem;
  }
}
.gallery-section .bg-color {
  background-color: #d9f1ff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 22rem;
  z-index: -1;
}

.vbox-overlay .vbox-child {
  background-color: transparent !important;
}
.vbox-overlay .vbox-child img {
  border-radius: 3.2rem;
}

/*------------------------------------------------------------
 * ゆ〜ま〜くんNEWS
------------------------------------------------------------*/
.news-section .news-container {
  background-color: #d9f1ff;
  border-radius: 0 0 20rem 20rem;
  padding: 12rem 0;
  background-image: url("/assets/images/character/news-bg.svg");
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (max-width: 768px) {
  .news-section .news-container {
    border-radius: 0 0 8rem 8rem;
    padding: 8rem 0;
  }
}
.news-section .c-title h1,
.news-section .c-title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news-section .c-title h1,
.news-section .c-title h2 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .news-section .c-title h1 img,
.news-section .c-title h2 img {
    display: block;
    width: 22.2rem;
    height: auto;
  }
}
.news-section .news-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 7rem;
  margin-bottom: 8.8rem;
}
@media screen and (max-width: 768px) {
  .news-section .news-group {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.8rem;
    margin-bottom: 4.8rem;
    padding: 0 2rem;
  }
}
.news-section .news-group .item.-new a::before {
  content: "";
  position: absolute;
  background-image: url("/assets/images/character/icon-new.svg");
  background-repeat: no-repeat;
  width: 5.2rem;
  height: 5.1rem;
  top: 1.4rem;
  left: 1.3rem;
  z-index: 1;
}
.news-section .news-group .item a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 769px) {
  .news-section .news-group .item a:hover {
    opacity: 1;
  }
  .news-section .news-group .item a:hover .image img {
    border-radius: 0;
  }
  .news-section .news-group .item a:hover .image span {
    opacity: 1;
    border-radius: 0;
  }
  .news-section .news-group .item a:hover .text {
    color: #0073bb;
  }
}
.news-section .news-group .item a .image {
  margin: 0;
  position: relative;
}
.news-section .news-group .item a .image img {
  border-radius: 3.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-transition: border-radius 0.3s;
  transition: border-radius 0.3s;
}
@media screen and (max-width: 768px) {
  .news-section .news-group .item a .image img {
    width: 100%;
  }
}
.news-section .news-group .item a .image span {
  opacity: 0;
  position: absolute;
  inset: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Ultra", serif;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  background-color: rgba(15, 143, 223, 0.5);
  border-radius: 3.2rem;
  -webkit-transition: opacity 0.3s, border-radius 0.3s;
  transition: opacity 0.3s, border-radius 0.3s;
}
.news-section .news-group .item a .date {
  font-size: 1.4rem;
  line-height: 1.42;
  margin: 1.6rem 0 0.4rem;
}
@media screen and (max-width: 768px) {
  .news-section .news-group .item a .date {
    margin-bottom: 0.8rem;
  }
}
.news-section .news-group .item a .text {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news-section .button {
  width: 40rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news-section .button {
    width: 100%;
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}
.news-section .button .c-button a {
  font-size: 2.4rem;
  padding: 1.65rem 4rem 1.65rem 2rem;
}
@media screen and (max-width: 768px) {
  .news-section .button .c-button a {
    font-size: 2rem;
  }
}
.news-section .button .c-button a::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  .news-section .button .c-button a::after {
    width: 1.8rem;
    height: 1.4rem;
  }
}

/*------------------------------------------------------------
 * footer
------------------------------------------------------------*/
.character-footer {
  padding: 3rem 0;
  text-align: center;
}
.character-footer .character-copyright {
  font-size: 1.2rem;
}