@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
/* ---------------------------------------------------------
    loading
--------------------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/pc_background.jpg) no-repeat center center/cover;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loading .loading_logo {
  width: 150px;
  opacity: 0;
  transform: scale(0.9);
  animation: loadingFadeIn 1.2s ease 0.3s forwards;
}
.loading .loading_logo img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

@keyframes loadingFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

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

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

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

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  background: url(../images/common/pc_background.jpg) no-repeat center bottom/cover fixed;
}
body.is-menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  vertical-align: top;
}

.content_area {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

.inner {
  width: calc(100% - 40px);
  margin: auto;
}

/* ---------------------------------------------------------
    header_logo（初期位置に固定 - スクロールで流れる）
--------------------------------------------------------- */
.header_logo {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 101;
  padding: 12px 20px;
  box-sizing: border-box;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.is-menu-open .header_logo {
  opacity: 0;
  visibility: hidden;
}
.header_logo a {
  display: block;
  width: 85px;
  pointer-events: auto;
}
.header_logo img {
  width: 100%;
  display: block;
}

/* ---------------------------------------------------------
    header（追従 - スクロールで表示/非表示）
--------------------------------------------------------- */
.site_header {
  display: none;
  position: fixed;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 100;
  padding: 12px 20px;
  box-sizing: border-box;
  transition: opacity 0.4s ease, visibility 0.4s ease, background 0.3s ease;
}
.site_header.is-scrolled {
  top: 0;
  background: linear-gradient(180deg, rgba(200, 160, 220, 0.85) 0%, rgba(100, 130, 200, 0.7) 100%);
}
.site_header.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site_header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site_header .header_sns {
  width: 35px;
  min-height: 35px;
  flex-shrink: 0;
  display: block;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.is-menu-open .site_header .header_sns {
  opacity: 0;
  visibility: hidden;
}
.site_header .header_sns img {
  width: 100%;
  display: block;
}
.site_header .hamburger {
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site_header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  filter: drop-shadow(0 0 4px #FF7EDB);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site_header .hamburger.is-active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.site_header .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.site_header .hamburger.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .site_header {
    display: block;
  }
}
/* ---------------------------------------------------------
    nav_menu
--------------------------------------------------------- */
.nav_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(200, 160, 220, 0.85) 0%, rgba(100, 130, 200, 0.9) 50%, rgba(70, 100, 170, 0.92) 100%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}
.nav_menu.is-open {
  opacity: 1;
  visibility: visible;
}
.nav_menu .nav_menu_inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 120px 40px 40px;
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav_menu .nav_links {
  width: 100%;
}
.nav_menu .nav_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.nav_menu .nav_links ul li {
  margin-bottom: 24px;
}
.nav_menu .nav_links ul li a {
  text-decoration: none;
  display: block;
}
.nav_menu .nav_links ul li a .en {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "fot-chiaro-std", sans-serif;
}
.nav_menu .nav_links ul li a .ja {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.nav_menu .nav_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.nav_menu .nav_sns .sns_icon {
  width: 35px;
  display: block;
}
.nav_menu .nav_sns .sns_icon img {
  width: 100%;
  display: block;
}
.nav_menu .nav_banner {
  width: 100%;
  max-width: 300px;
  margin-top: 25px;
}
.nav_menu .nav_banner a {
  display: block;
}
.nav_menu .nav_banner img {
  width: 100%;
  display: block;
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.site_footer {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 15px 20px 30px;
  margin-top: 100px;
  box-sizing: border-box;
  background: url(../images/common/footer.jpg) no-repeat center center/cover;
  position: relative;
}
.site_footer .wave_1 {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  animation: wave1 4s ease-in-out infinite;
}
.site_footer .wave_2 {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -2;
  animation: wave2 6s ease-in-out infinite;
}
.site_footer .wave_3 {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -3;
  animation: wave3 5s ease-in-out infinite;
}
.site_footer .footer_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site_footer .footer_nav {
  width: 100%;
}
.site_footer .footer_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 0;
  text-align: center;
}
.site_footer .footer_nav ul li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.08em;
}
.site_footer .footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.site_footer .footer_sns .footer_sns_icon {
  width: 40px;
  display: block;
}
.site_footer .footer_sns .footer_sns_icon img {
  width: 100%;
  height: auto;
  display: block;
}
.site_footer .footer_copyright {
  margin-top: 20px;
  font-size: 11px;
  color: #666;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ---------------------------------------------------------
    wave animation
--------------------------------------------------------- */
@keyframes wave1 {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes wave2 {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes wave3 {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
/* ---------------------------------------------------------
    fixd_bunner
--------------------------------------------------------- */
.fixd_bunner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42.5% 57.5%;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.fixd_bunner .bunner {
  position: relative;
}
.fixd_bunner .bunner .link {
  position: absolute;
  inset: 0;
}

/* ---------------------------------------------------------
    page_top
--------------------------------------------------------- */
.page_top {
  width: 60px;
  margin: 0 auto;
  display: flex;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 10px;
}
.page_top .link {
  position: absolute;
  inset: 0;
}

/* ---------------------------------------------------------
    PC サイドメニュー
--------------------------------------------------------- */
.pc_side_menu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc_side_menu {
    display: none !important;
  }
}
@media screen and (min-width: 767px) {
  body {
    background: url(../images/common/pc_background.jpg) no-repeat center bottom/cover fixed;
    min-height: 100vh;
  }
  .content_area {
    margin: 0 auto;
  }
  .site_header {
    left: 50%;
  }
  .fixd_bunner {
    left: 50%;
  }
  .site_footer {
    margin: 100px auto 0;
  }
  .pc_side_menu {
    display: block;
    position: fixed;
    top: 50%;
    right: calc(50% - 215px - 310px);
    transform: translateY(-50%);
    width: 240px;
    z-index: 50;
  }
  .pc_side_menu .pc_side_menu_inner {
    background: linear-gradient(180deg, rgba(200, 160, 220, 0.85) 0%, rgba(100, 130, 200, 0.9) 50%, rgba(70, 100, 170, 0.92) 100%);
    border: 1.5px solid #fff;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pc_side_menu .pc_side_nav {
    width: 100%;
  }
  .pc_side_menu .pc_side_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .pc_side_menu .pc_side_nav ul li {
    margin-bottom: 16px;
  }
  .pc_side_menu .pc_side_nav ul li:last-child {
    margin-bottom: 0;
  }
  .pc_side_menu .pc_side_nav ul li a {
    text-decoration: none;
    display: block;
    transition: opacity 0.2s ease;
  }
  .pc_side_menu .pc_side_nav ul li a:hover {
    opacity: 0.7;
  }
  .pc_side_menu .pc_side_nav ul li a .en {
    font-family: "fot-chiaro-std", sans-serif;
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
  }
  .pc_side_menu .pc_side_nav ul li a .ja {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    font-family: "Zen Maru Gothic", sans-serif;
  }
  .pc_side_menu .pc_side_sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  .pc_side_menu .pc_side_sns .sns_icon {
    width: 35px;
    display: block;
  }
  .pc_side_menu .pc_side_sns .sns_icon img {
    width: 100%;
    display: block;
  }
  .pc_side_menu .pc_side_banner {
    width: 100%;
    margin-top: 20px;
  }
  .pc_side_menu .pc_side_banner a {
    display: block;
  }
  .pc_side_menu .pc_side_banner img {
    width: 100%;
    display: block;
    border-radius: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .site_header .hamburger,
  .site_header .header_sns {
    display: none !important;
  }
  .nav_menu {
    display: none !important;
  }
  .content_area {
    margin-right: calc(50% - 215px - 30px);
    margin-left: auto;
  }
  .content_area::before {
    left: calc(50% + 30px);
  }
  .header_logo {
    left: calc(50% + 30px);
  }
  .site_header {
    left: calc(50% + 30px);
  }
  .fixd_bunner {
    left: calc(50% + 30px);
  }
  .site_footer {
    margin-right: calc(50% - 215px - 30px);
  }
}
.pc_jellyfish {
  display: none;
}

@media screen and (min-width: 767px) {
  .pc_jellyfish {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .pc_jellyfish [class^=pc_jellyfish_] {
    position: absolute;
  }
  .pc_jellyfish .pc_jellyfish_left_1 {
    top: 15%;
    left: 3%;
    width: 140px;
  }
  .pc_jellyfish .pc_jellyfish_left_2 {
    top: 55%;
    left: 1%;
    width: 100px;
  }
  .pc_jellyfish .pc_jellyfish_left_3 {
    bottom: 10%;
    left: 5%;
    width: 160px;
  }
  .pc_jellyfish .pc_jellyfish_right_1 {
    top: 20%;
    right: 3%;
    width: 150px;
  }
  .pc_jellyfish .pc_jellyfish_right_2 {
    bottom: 15%;
    right: 2%;
    width: 90px;
  }
  .pc_jellyfish .sango_1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
  }
  .pc_jellyfish .sango_2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18%;
  }
}
/* ---------------------------------------------------------
    body modal open
--------------------------------------------------------- */
body.is-modal-open {
  overflow: hidden;
}

/* ---------------------------------------------------------
    news_modal
--------------------------------------------------------- */
.news_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.news_modal.is-open {
  opacity: 1;
  visibility: visible;
}
.news_modal .news_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.news_modal .news_modal_content {
  position: relative;
  width: calc(100% - 40px);
  max-width: 390px;
  max-height: 80vh;
  background: url(../images/common/news_bg.jpg) no-repeat center center/cover;
  border-radius: 16px;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.news_modal .news_modal_close {
  position: sticky;
  top: 12px;
  float: right;
  margin-right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(200, 200, 210, 0.6);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.news_modal .news_modal_close:hover {
  background: rgba(150, 150, 170, 0.8);
}
.news_modal .news_modal_body {
  padding: 20px 24px 30px;
}
.news_modal .news_modal_date {
  font-size: 14px;
  color: #333;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}
.news_modal .news_modal_title {
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #333;
  margin: 8px 0 16px;
  line-height: 1.6;
}
.news_modal .news_modal_thumbnail {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #fff;
  margin-bottom: 16px;
}
.news_modal .news_modal_thumbnail img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.news_modal .news_modal_text {
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333;
  line-height: 1.8;
}
.news_modal .news_modal_text p {
  margin: 0 0 1em;
}
.news_modal .news_modal_text p:last-child {
  margin-bottom: 0;
}
.news_modal .news_modal_text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

body .content_area {
  position: relative;
}
body .content_area .header_bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
body .content_area .header_bg img {
  width: 100%;
}
body .content_area::before {
  content: "";
  position: fixed;
  top: 0;
  left: calc(50% + 30px);
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 100vh;
  background: url(../images/news/news_bg.jpg) no-repeat top center/cover;
  z-index: -5;
}

@media screen and (max-width: 1024px) {
  body .content_area::before {
    left: 50%;
  }
}
.bubble_target {
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
/*
---------------------------------------------------------
    sect_news
---------------------------------------------------------
*/
.sect_news {
  padding-top: 230px;
  position: relative;
}
.sect_news .sect_title {
  width: calc(100% - 40px);
  max-width: 130px;
  margin: 0 auto;
}
.sect_news .news_content {
  width: calc(100% - 40px);
  margin: 25px auto 0;
}
.sect_news .news_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sect_news .news_content ul li {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(130, 140, 200, 0.18);
  padding: 20px 20px 18px;
  position: relative;
}
.sect_news .news_content ul li > a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sect_news .news_content ul li .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sect_news .news_content ul li .wrap .date {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.04em;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.sect_news .news_content ul li .wrap .new {
  display: inline-block;
}
.sect_news .news_content ul li .wrap .new img {
  width: 50px;
  vertical-align: middle;
}
.sect_news .news_content ul li .title {
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  margin-top: 8px;
  line-height: 1.6;
}
.sect_news .news_content ul li .btn {
  width: 140px;
  margin: 12px auto 0;
  position: relative;
}
.sect_news .news_content ul li .btn a {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.sect_news .news_content ul li .btn img {
  width: 100%;
  display: block;
}

/*
---------------------------------------------------------
    bunner_area
---------------------------------------------------------
*/
.bunner_area {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bunner_area .bunner {
  width: calc(100% - 40px);
  margin: auto;
  position: relative;
}
.bunner_area .bunner a {
  position: absolute;
  inset: 0;
}/*# sourceMappingURL=news.css.map */