@charset "utf-8";

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
  padding: 0;
}
input,
textarea {
  margin: 0;
  font-size: 100%;
}
label {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
img {
  vertical-align: top;
  max-width: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:after,
q:before {
  content: "";
}
a,
input,
select,
textarea,
button {
  outline: none;
}
abbr,
acronym {
  border: 0;
}
*,
*:before,
*::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}

/* !Inline Align ------------------------------------------------------------ */
/*common*/
a {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op img {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op:hover img {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
body {
  color: #000;
  background: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
}

/*** タブレット 768x ~ 1200px***/
@media screen and (max-width: 1200px) {
  html {
    overflow-y: scroll;
    font-size: 0.83vw;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  html {
    overflow-y: scroll;
    font-size: 62.5%;
  }

  body {
    font-size: 1.2rem;
  }
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* !15th_lp_wrapper
---------------------------------------------------------- */
#anniversary_lp_wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#anniversary_lp_wrapper .bg_color {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(
    129.39% 72.78% at -12.95% 76.62%,
    #e2f7ff 16.35%,
    #fff 62.98%
  );
}

#anniversary_lp_wrapper .bg_img {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.05;
  width: 110%;
}

@media screen and (max-width: 767px) {
  #anniversary_lp_wrapper .bg_img {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* !header
---------------------------------------------------------- */
#anniversary_lp_header {
  width: 100%;
  position: relative;
}

.anniversary_lp_logo {
  position: fixed;
  top: 2rem;
  left: 16px;
  width: 11rem;
  transition: opacity 0.3s ease-in-out;
  z-index: 90;
}

.anniversary_lp_logo.hidden,
.anniversary_lp_btnMenu.hidden {
  opacity: 0;
  pointer-events: none;
}
.anniversary_lp_logo.is-fixed {
  position: fixed;
  top: 1.6rem;
  z-index: 90;
}

.anniversary_lp_btnMenu {
  position: fixed;
  right: 2.6rem;
  top: 1.8rem;
  z-index: 90;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.anniversary_lp_btnMenu .menu_open_icon {
  border-radius: 32px;
  border: 1px solid #fff;
  background: #003a8f;
  width: 80px;
  height: 40px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.anniversary_lp_btnMenu .menu_open_text {
  color: #003a8f;
  text-align: center;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 14px */
}

/******* navi *******/
#anniversary_lp_navi {
  /* padding: 22.9rem 0; */
  text-align: center;
  width: 50%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  transform: translateX(100%);
  transition: all 0.3s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #003a8f;
}

/* #anniversary_lp_navi .bg_logo {
  position: absolute;
  bottom: 0;
  right: 50%;
  opacity: 0.05;
  width: 100%;
  z-index: 100;
} */

#anniversary_lp_navi.open {
  transform: translateX(0%);
}

.menu_close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  margin: 2.4rem 1.6rem 0 auto;
  position: fixed;
  top: 1.8rem;
  right: 2.6rem;
  z-index: 10;
}

.menu_close > p {
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 14px */
}

#anniversary_lp_navi .anniversary_lp_close {
  z-index: 10;
  width: 6rem;
  cursor: pointer;
  width: 80px;
  height: 40px;
  border-radius: 32px;
  border: 1px solid #fff;
  background: #003a8f;
  display: flex;
  align-items: center;
  justify-content: center;
}

#anniversary_lp_navi ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 10rem 8rem 5.6rem;
}

#anniversary_lp_navi ul li {
  text-align: left;
}

#anniversary_lp_navi a {
  width: 100%;
  position: relative;
  text-decoration: unset;
  color: #fff;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#anniversary_lp_navi .ydb {
  color: #fff;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}

#anniversary_lp_navi .jap {
  color: #0096e0;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  display: block;
  margin-top: 8px;
}

#anniversary_lp_navi a:hover {
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

#anniversary_lp_navi .link_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 8rem 8rem;
}

#anniversary_lp_navi .link_list .top,
#anniversary_lp_navi .link_list .bottom {
  display: flex;
  gap: 16px;
}

#anniversary_lp_navi .link_list a {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

#anniversary_lp_navi .link_list .line {
  width: 1px;
  height: 21px;
  opacity: 0.2;
  background: #fff;
}

.headerLinks {
  height: auto;
  min-height: 7.2rem;
  position: relative;
  background: #003a8f;
  padding: 1.8rem 1rem;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerLinks .swiper-slide {
  text-align: center;
}

.headerLinks a {
  width: 76.8rem;
  margin: 0 auto;
  display: flex;
  gap: 1.6rem;
  position: relative;
  color: white;
  font-size: 1.6rem;
  text-decoration: none;
  padding-right: 3.2rem; /* 矢印アイコンのスペースを確保 */
}

.headerLinks a .date {
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.16px;
  margin-top: 8px;
  flex-shrink: 0;
}

.headerLinks a .text {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 28px */
  letter-spacing: 0.32px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  flex: 1;
  min-width: 0;
  text-align: start;
}

.headerLinks a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  background: url("../image/icon/icon_arrow_down_wh.svg") no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  background-size: 100% 100%;
}

.headerLinks a:hover .jap {
  text-decoration: underline;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .headerLinks {
    min-height: 5.4rem;
    padding: 1.6rem;
  }

  .headerLinks a {
    width: 100%;
    min-width: unset;
  }

  .headerLinks a .date {
    font-size: 12px;
    margin-top: 5px;
  }

  .headerLinks a .text {
    font-size: 12px;
  }

  .anniversary_lp_logo {
    top: 2rem;
    left: 1.3rem;
    width: 6.4rem;
  }

  .anniversary_lp_logo.is-fixed {
    top: 1.6rem;
  }

  /******* btnMenu *********/
  .anniversary_lp_btnMenu {
    right: 2rem;
    width: 3.6rem;
  }

  /******* cv *******/
  .anniversary_lp_cv {
    right: 50%;
    transform: translateX(50%);
    bottom: 2.5%;
    width: 34.5rem;
    z-index: 999;
  }

  #anniversary_lp_navi a {
    height: auto;
  }

  /******* navi *******/
  #anniversary_lp_navi {
    padding: 1rem;
    right: 0;
    top: 0;
    z-index: 90;
    width: 100%;
  }

  #anniversary_lp_navi .anniversary_lp_close {
    right: 1.58rem;
    top: 3.2rem;
    width: 4.4rem;
  }

  #anniversary_lp_navi .anniversary_lp_close img {
    pointer-events: none;
  }

  #anniversary_lp_navi ul {
    position: relative;
    left: auto;
    top: auto;
    transform: translate(0);
    display: block;
    padding: 5.6rem 1.7rem 0;
  }

  #anniversary_lp_navi li + li {
    margin-top: 2.4rem;
  }

  #anniversary_lp_navi .ydb {
    font-size: 2.4rem;
  }

  #anniversary_lp_navi .jap {
    font-size: 1.2rem;
    margin-top: 0;
  }

  #anniversary_lp_navi .link_list {
    padding: 4rem 1.7rem;
  }

  #anniversary_lp_navi .link_list a {
    font-size: 1.4rem;
  }

  .menu_close {
    margin: 1.4rem 0.6rem 0 auto;
  }

  #anniversary_lp_navi .anniversary_lp_close,
  .anniversary_lp_btnMenu .menu_open_icon {
    width: 5.6rem;
    height: 2.8rem;
  }

  #anniversary_lp_navi .anniversary_lp_close img,
  .anniversary_lp_btnMenu .menu_open_icon img {
    width: 1.6rem;
  }

  .menu_close > p,
  .anniversary_lp_btnMenu .menu_open_text {
    font-size: 10px;
  }

  .anniversary_lp_headerLinks {
    min-height: 4.2rem;
    padding: 1.3rem;
  }

  .anniversary_lp_headerLinks .swiper-slide {
    text-align: center;
  }

  .anniversary_lp_headerLinks {
    display: flex;
    position: relative;
  }

  .anniversary_lp_headerLinks a {
    min-width: auto;
    max-width: 35rem;
    width: 100%;
  }

  .anniversary_lp_headerLinks a .ydb {
    font-size: 1.8rem;
    margin-right: 1.6rem;
  }

  .anniversary_lp_headerLinks a .jap {
    font-size: 1.2rem;
  }

  .anniversary_lp_headerLinks a::after {
    width: 1.6rem;
    height: 1.6rem;
  }

  #anniversary_lp_navi .anniversary_lp_navBtn {
    max-width: 34.5rem;
    width: 100%;
    margin: 3.2rem auto 0;
  }
}

/* !mainVisual
---------------------------------------------------------- */
.anniversary_lp_mainVisual {
  position: relative;
  padding: 32px 0 0;
  /* padding: 32px 0 144px; */
}

.anniversary_lp_mainVisual .top_text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.anniversary_lp_mainVisual .top_text img {
  width: 96px;
}

.anniversary_lp_mainVisual .top_text p {
  color: #00428e;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 36px */

  display: flex;
  flex-direction: column;
  align-items: center;
}

.anniversary_lp_mainVisual .top_text p span {
  color: #00428e;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}

/* *** 1枚 *** */
.kv-img {
  border-radius: 24px;
  border: 2px solid #00428e;
  overflow: hidden;
  aspect-ratio: 1440 / 810;
  width: 1440px;
  max-width: calc(100% - 200px);
  margin: 32px auto 0;
}

@media (max-width: 1200px) {
  .kv-img {
    max-width: calc(100% - 32px);
  }
}

@media (max-width: 768px) {
  .kv-img {
    aspect-ratio: 343 / 456;
  }
}

/* *** スライダー *** */
.kv-swiper-cards {
  padding: 32px 0 0;
  position: relative;
  width: 100%;
  /* max-width: 1181px; */
  margin: 0 auto; /* 中央寄せ */
}

.kv-swiper-cards .swiper-container {
  position: relative;
  height: auto;
  overflow: visible;
}

.kv-swiper-cards .swiper-wrapper {
  position: relative;
}

.kv-swiper-cards .swiper-slide {
  position: absolute;
  transition: all 0.6s ease;
  width: 100%;
}

.kv-swiper-cards .item {
  width: 100%;
  aspect-ratio: 1181 / 664; /* この比率でアイテムの高さが自動決定 */
  border-radius: 24px;
  border: 2px solid #00428e;
  overflow: hidden;
  background: #fff;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

button {
  border: none;
  background: transparent;
  padding: 0;
}

.swiper-button-next,
.swiper-button-prev {
  position: unset;
  width: 48px;
  height: 48px;
}

.swiper-pagination {
  position: unset;
  margin-top: 0;
}

.kv-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px; /* スライドの下に自然に配置 */
  padding-bottom: 40px; /* 下部の余白 */
}

.kv-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -20px;
  width: fit-content;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #90a7ca;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.swiper-pagination-bullet-active {
  background: #003a8f;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .anniversary_lp_mainVisual {
    /* padding: 24px 0 96px; */
    padding: 24px 0 0;
  }

  .anniversary_lp_mainVisual .top_text {
    gap: 16px;
  }

  .anniversary_lp_mainVisual .top_text img {
    width: 72px;
  }

  .anniversary_lp_mainVisual .top_text p {
    font-size: 24px;
  }

  .anniversary_lp_mainVisual .top_text p span {
    font-size: 14px;
  }

  .kv-swiper-cards {
    padding-top: 24px;
  }

  /* .kv-swiper-cards .swiper-container {
    height: 458px;
  } */

  .kv-swiper-cards .item {
    aspect-ratio: 343 / 456;
  }

  .kv-swiper-controls {
    gap: 16px;
    margin-top: 48px;
  }

  .kv-pagination {
    gap: 8px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 20px;
    height: 20px;
  }
}

/* title
-----------------------------------------------------------*/
.title {
  color: #003a8f;
  font-family: Montserrat;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}

.title span {
  color: #0096e0;
}

.main_title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.main_title h1 {
  color: #003a8f;
  font-family: Montserrat;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}

.main_title.white h1,
.main_title.white .sub {
  color: #fff;
}

.main_title h1 span {
  color: #0096e0;
}

.main_title .sub {
  color: #0096e0;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}

.disable {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .main_title {
    gap: 8px;
  }

  .main_title h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
  }

  .main_title .sub {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
  }

  .title {
    font-size: 40px;
    font-weight: 800;
    line-height: 100%;
    text-align: center;
  }
}

/* !btn
---------------------------------------------------------- */
.main_btn {
  border-radius: 4px;
  border: 1px solid #003a8f;
  background: #fff;
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.1);
  display: flex;
  width: 320px;
  height: 80px;
  padding: 8px 40px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  transition: all 0.2s ease;
  cursor: pointer;
}

.main_btn::after {
  content: "";
  display: block;
  background-image: url(../image/icon/icons.svg);
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .main_btn:hover {
    transform: translateY(4px);
    box-shadow: none;
  }
}

@media screen and (max-width: 768px) {
  .main_btn {
    width: 320px;
    height: 56px;
    padding: 16px 24px;
  }
}

/* !introduction
---------------------------------------------------------- */
#anniversary_introduction {
  /* ＊＊＊ 1枚の場合 ＊＊＊ */
  padding: 48px 0 64px;

  /* ＊＊＊ 複数の場合 ＊＊＊ */
  /* padding: 120px 0 64px; */
}

@media screen and (max-width: 768px) {
  #anniversary_introduction {
    /* ＊＊＊ 1枚の場合 ＊＊＊ */
    padding: 40px 0 0;

    /* ＊＊＊ 複数の場合 ＊＊＊ */
    /* padding: 80px 0 0; */
  }
}

#anniversary_introduction .top_text {
  width: 1000px;
  margin: 0 auto 48px;
  max-width: calc(100% - 32px);
  color: #003a8f;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 250%; /* 45px */
}

.timeline-container {
  max-width: 100%;
  margin: 0 auto;
}

.timeline-swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 60px;
}

.timeline-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #003da5;
  font-weight: bold;
  opacity: 0.5;
  position: relative;
}

.timeline-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.timeline-pagination {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 634px;
  max-width: calc(100% - 44px);
  /* margin: 0 auto 40px; */
  margin: 0 auto;
}

.timeline-year {
  color: #90a7ca;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  width: 70px;
  /* margin: 0 auto; */
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-year:hover {
  color: #003a8f;
  opacity: 0.7;
}

.timeline-year.is-active {
  color: #003a8f;
}

@media screen and (max-width: 768px) {
  #anniversary_introduction .top_text {
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto 40px;
    white-space: nowrap;
  }

  .timeline-pagination {
    gap: 24px 16px;
    margin: 0 auto;
    width: 400px;
  }

  .timeline-year {
    width: 72px;
    font-size: 20px;
  }

  .timeline-swiper {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 420px) {
  .timeline-pagination {
    width: 280px;
  }

  .timeline-year {
    width: 54px;
    font-size: 16px;
  }
}

@media screen and (max-width: 374px) {
  #anniversary_introduction .top_text {
    font-size: 15.6px;
  }
}

/* !cards
---------------------------------------------------------- */
#card_15th {
  padding: 96px 0 64px;
}

#card_15th .card-container {
  margin: 0 auto;
}

#card_15th .top-area {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 900px;
  max-width: calc(100% - 32px);
  margin: 0 auto 32px;
}

#card_15th .left_box {
  flex-shrink: 0;
  width: 47.6%;
}

#card_15th .left_box .text {
  color: #0096e0;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 16px 0 48px;
}

#card_15th .left_box .box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

#card_15th .left_box .box p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding: 2px 8px;
  background: #003a8f;
}

#card_15th .card-main-slider {
  flex: 1;
  max-width: 600px;
  position: relative;
}

#card_15th .card-main-slider .swiper-slide {
  width: 453px !important;
  margin: 12px 0 0;
  position: relative;
}

#card_15th .card-main-slider .swiper-slide .item {
  width: 417px;
  aspect-ratio: 417 / 538;
  max-width: 100%;
  display: block;
  margin: 16px;
  box-shadow: 0 16px 16px 0 rgba(0, 66, 142, 0.1);
  border-radius: 48px;
  position: relative;
  z-index: 2;
}

#card_15th .card-main-slider .swiper-slide .item img {
  width: 100%;
}

#card_15th .card-main-slider .swiper-slide .item:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 416px;
  height: 542px;
  transform: rotate(-3deg);
  flex-shrink: 0;
  border-radius: 48px;
  background: #d9d9d9;
  z-index: -10;
}

.big-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #003a8f;
  background: #fff;
  position: relative;
  z-index: 2;
  aspect-ratio: 417 / 538;
  display: flex;
  flex-direction: column;
}

.big-card .content {
  flex: 1;
}

.big-card .img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.big-card h4 {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 8px;
}

.big-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.big-card .tags li {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 16px;
  border: 1px solid #003a8f;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.big-card .tags li.blue {
  color: white;
  background: #0096e0;
}

.big-card .tags li.yellow {
  color: #003a8f;
  background: #ffe10d;
}

.big-card .tags li.pink {
  color: white;
  background: #ff42a7;
}

.big-card .dec {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.big-card .btn {
  display: flex;
  padding: 8px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid #003a8f;
  background: #fff;
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.1);
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  position: relative;
  transition: all 0.2s ease;
}

@media (hover: hover) {
  .big-card:hover .btn {
    transform: translateY(4px);
    box-shadow: none;
  }
}

a.big-card {
  text-decoration: none;
}

.big-card .btn::after {
  content: "";
  display: block;
  background-image: url(../image/icon/icon_plus_b.svg);
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

#card_15th .card-bottom-slider {
  max-width: 100%;
  margin: auto;
  padding: 30px 0; /* 上下に余白を追加 */
}

#card_15th .card-bottom-slider .swiper-slide {
  cursor: pointer;
  width: 200px !important;
  transition: rotate 0.3s ease;
  position: relative;
}

#card_15th .card-bottom-slider .swiper-slide .item {
  box-shadow: 0 16px 16px 0 rgba(0, 66, 142, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.card-main-slider .swiper-slide .number {
  height: 72px;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 3;
}

.number img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.card-main-slider .swiper-slide .tag-circle {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 18px */
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 3px solid #003a8f;
  background: #0096e0;
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 3;
}

#card_15th .card-bottom-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

#card_15th .card-bottom-slider .swiper-pagination {
  color: #003a8f;
  text-align: right;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  width: fit-content;
  display: flex;
  gap: 8px;
}

#card_15th .card-bottom-slider .swiper-pagination .swiper-pagination-current,
#card_15th .card-bottom-slider .swiper-pagination .swiper-pagination-total {
  width: 24px;
  display: block;
}

.card-bottom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px; /* スライドの下に自然に配置 */
}

.card-bottom-controls .swiper-button-next,
.card-bottom-controls .swiper-button-prev {
  width: 48px;
  height: 48px;
  margin-top: 0;
}

.card-bottom-controls .item-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-card {
  width: 200px;
  height: 293px;
  border-radius: 24px;
  border: 1px solid #003a8f;
  background: #fff;
  position: relative;
  padding: 16px;
}

.card-bottom-slider .number {
  position: absolute;
  left: -8px;
  top: -20px;
  height: 36px;
  z-index: 3;
}

#card_15th .card-bottom-slider .number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-bottom-slider .tag-circle {
  position: absolute;
  z-index: 3;
  right: -6px;
  top: -26px;
  display: flex;
  width: 56px;
  height: 56px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 15px */
  border-radius: 40px;
  border: 3px solid #003a8f;
  background: #0096e0;
}

.mini-card {
  display: flex;
  flex-direction: column;
}

.mini-card .content {
  flex: 1;
}

.mini-card .img {
  border-radius: 16px;
  overflow: hidden;
}

.mini-card h4 {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin: 8px 0;
}

.mini-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.mini-card .tags li {
  display: flex;
  padding: 2px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 16px;
  border: 1px solid #003a8f;
}

.mini-card .tags li.blue {
  color: white;
  background: #0096e0;
}

.mini-card .tags li.yellow {
  background: #ffe10d;
  color: #003a8f;
}

.mini-card .tags li.pink {
  background: #ff42a7;
  color: white;
}

.mini-card .btn {
  display: flex;
  padding: 4px 8px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid #003a8f;
  background: #fff;
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.mini-card .btn::after {
  content: "";
  display: block;
  background-image: url(../image/icon/icon_plus_b.svg);
  background-size: contain; /* 画像をボックスに収める */
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
}

.mini-card .btn p {
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 15px */
}

/*------- pop over -------*/
.hide {
  display: none !important;
}

/* Fancyboxのモーダルコンテンツ用 */
.fancyboxBox {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
}

.fancybox__content {
  background: transparent;
  padding: 0;
  max-width: calc(100% - 32px);
}

.fancyboxDisplay .content_box {
  border-radius: 24px;
  border: 2px solid #00428e;
  background: #fff;
  display: inline-flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.fancyboxDisplay .content_box .top_box {
  display: flex;
  align-items: start;
  gap: 16px;
  position: absolute;
  top: -44px;
  left: -8px;
  z-index: 3;
}

.fancyboxDisplay .number {
  height: 72px;
}

.fancyboxDisplay .tag-circle {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 18px */
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 3px solid #003a8f;
  background: #0096e0;
}

.fancyboxDisplay .content {
  position: relative;
  width: 100%;
  display: flex;
  gap: 36px;
  align-items: center;
}

.fancyboxDisplay .img {
  border-radius: 8px;
  overflow: hidden;
  width: 40.6%;
}

.fancyboxDisplay .right_box {
  width: 55.69%;
}

.fancyboxDisplay .right_box .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}

.fancyboxDisplay .right_box .tags li {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  padding: 2px 7px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #00428e;
}

.fancyboxDisplay .right_box .tags li.blue {
  color: white;
  background: #0096e0;
}

.fancyboxDisplay .right_box .tags li.yellow {
  color: #003a8f;
  background: #ffe10d;
}

.fancyboxDisplay .right_box .tags li.pink {
  color: white;
  background: #ff42a7;
}

.fancyboxDisplay .right_box h4 {
  color: #00428e;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  margin-bottom: 4px;
}

.fancyboxDisplay .right_box .place {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.fancyboxDisplay .right_box .place img {
  width: 20px;
  height: 20px;
}

.fancyboxDisplay .right_box .place p {
  color: #00428e;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
}

.fancyboxDisplay .right_box .dec {
  color: #00428e;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  margin-bottom: 16px;
}

.fancyboxDisplay .right_box .btn a {
  border-radius: 4px;
  border: 1px solid #003a8f;
  background: #fff;
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.1);
  display: flex;
  width: 196px;
  padding: 8px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #003a8f;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  text-decoration: none;
  transition: 0.3s ease;
}

.fancyboxDisplay .right_box .btn a::after {
  content: "";
  display: block;
  background-image: url(../image/icon/icons.svg);
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

.fancyboxDisplay .right_box .btn a:hover {
  box-shadow: none;
  transform: translateY(2px);
}

.fancyboxDisplay .close {
  position: absolute;
  bottom: -72px;
  right: 16px;
}

.fancyboxDisplay .close a {
  text-align: center;
  border-radius: 36px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #00428e;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
  width: 184px;
  height: 56px;
  text-decoration: none;
}

.fancyboxDisplay .close a img {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 768px) {
  #card_15th {
    padding: 96px 0 0;
  }

  #card_15th .top-area {
    flex-direction: column;
    gap: 16px;
  }

  #card_15th .left_box {
    width: 100%;
  }

  .mini-card {
    padding: 12px 12px 16px;
  }

  .card-bottom-slider .tag-circle {
    font-size: 9px;
    line-height: 120%;
    width: 44px;
    height: 44px;
    border: 2px solid #003a8f;
  }

  #card_15th .left_box .text {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin: 8px auto 16px;
  }

  #card_15th .left_box .box {
    gap: 8px;
  }

  #card_15th .left_box .box p {
    font-size: 14px;
    line-height: 175%; /* 24.5px */
  }

  #card_15th .card-main-slider .swiper-slide {
    width: 343px !important;
    margin: 8px 0 0;
  }

  #card_15th .card-main-slider .swiper-slide .item {
    width: 320px;
  }

  #card_15th .card-bottom-slider {
    padding: 30px 0 30px;
  }

  #card_15th .card-main-slider .swiper-slide .item:after {
    width: 320px;
    height: 464px;
  }

  .big-card {
    aspect-ratio: 290 / 415;
    padding: 20px 18px;
  }

  .big-card h4 {
    font-size: 15.2px;
    line-height: 150%;
  }

  .big-card .dec {
    font-size: 12px;
  }

  .card-main-slider .swiper-slide .number {
    height: 40px;
    left: -12px;
    top: -4px;
  }

  .card-main-slider .swiper-slide .tag-circle {
    font-size: 12px;
    width: 64px;
    height: 64px;
    border: 2.4px solid #003a8f;
    top: -6px;
  }

  .fancyboxDisplay .content {
    flex-direction: column;
    gap: 16px;
  }

  .fancyboxDisplay .content_box {
    padding: 16px;
  }

  .fancyboxDisplay .img {
    width: 100%;
  }

  .fancyboxDisplay .right_box {
    width: 100%;
  }

  .fancyboxDisplay .right_box h4 {
    font-size: 16px;
  }

  .fancyboxDisplay .number {
    height: 40px;
    margin-left: -22px;
  }

  .fancyboxDisplay .tag-circle {
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 12.5px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 18.75px */
    width: 64px;
    height: 64px;
    border: 3px solid #003a8f;
  }

  .fancyboxDisplay .content_box .top_box {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    left: 0;
    top: -28px;
  }

  .cardBox .fancyboxDisplay .close {
    bottom: -72px;
    padding-bottom: 20px;
  }

  .fancyboxDisplay .right_box .btn a {
    width: 100%;
  }

  .mini-card {
    width: 194px;
    height: 284px;
  }

  #card_15th .card-bottom-slider .swiper-slide {
    width: 194px !important;
  }

  .card-bottom-slider .number {
    left: -26px;
  }

  .card-bottom-slider .number img {
    height: 32px;
  }
}

@media screen and (max-width: 374px) {
  #card_15th {
    padding: 96px 0 0;
  }
  #card_15th .card-main-slider .swiper-slide .item {
    width: 300px;
  }

  #card_15th .card-main-slider .swiper-slide .item::after {
    width: 300px;
    height: 434px;
  }

  .card-main-slider .swiper-slide .tag-circle {
    right: 4px;
  }
}

/* !video
---------------------------------------------------------- */
.video-container {
  width: 95%;
  height: 480px;
  margin-left: auto;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .video-container {
    width: 100%;
    margin: 0;
    height: 200px;
  }
}

/* !movie
---------------------------------------------------------- */
#movie {
  padding: 96px 0 64px;
}

.movie_box {
  max-width: calc(100% - 32px);
  margin: 80px auto 0;
  width: fit-content;
}

.movie_box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-decoration: none;
}

.movie_box a .img {
  position: relative;
}

.movie_box a .outbox {
  position: relative;
  width: 712px;
  aspect-ratio: 712 / 400;
  max-width: 100%;
}

.movie_box a .under_box {
  border-radius: 24px;
  border: 2px solid #003a8f;
  background: #fff;
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 712px;
  aspect-ratio: 712 / 400;
  z-index: -1;
  max-width: 100%;
}

.movie_box a .play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .movie_box a:hover .play_icon {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.movie_box a h4 {
  color: #003a8f;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.8px;
}

.movie_box a .img {
  width: 712px;
  aspect-ratio: 712 / 400;
  border-radius: 24px;
  border: 2px solid #003a8f;
  overflow: hidden;
  max-width: 100%;
}

.fancyboxDisplay .movieBox {
  width: 1014px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.fancyboxDisplay .movieBox .content {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  margin-bottom: 32px;
}

.fancyboxDisplay .movieTitle {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.8px;
}

@media screen and (max-width: 768px) {
  #movie {
    padding: 96px 0 0;
  }

  .movie_box {
    margin: 40px auto 0;
  }

  .fancyboxDisplay .movieTitle {
    font-size: 14px;
    line-height: 175%;
  }

  .fancyboxDisplay .close {
    bottom: -56px;
  }

  .fancyboxDisplay .close a {
    padding: 8px 16px;
    gap: 10px;
    width: 120px;
    height: 40px;
    font-size: 14px;
    line-height: 180%;
  }

  .fancyboxDisplay .close a img {
    width: 12px;
    height: 12px;
  }

  .movie_box a .play_icon {
    width: 48px;
    height: 48px;
  }

  .movie_box a h4 {
    font-size: 14px;
    line-height: 175%;
  }
}

/* !news
---------------------------------------------------------- */
#news {
  padding: 96px 0 100px;
}

#news .inner {
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 80px;
  display: flex;
  align-items: start;
  gap: 80px;
  border-radius: 24px;
  background: #00428e;
}

#news .inner .main_title {
  flex-shrink: 0;
}

#news .news_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  flex: 1;
  width: 100%;
}

#news .news_list a {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  padding: 0 24px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

#news .news_list a.pc {
  display: block;
}

#news .news_list a.sp {
  display: none;
}

#news .news_list a .date {
  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.16px;
  display: block;
  margin-bottom: 4px;
}

#news .news_list a .text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block; /* これを追加！ */
}

#news .news_list a::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../image/icon/icons.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  #news .news_list a:hover::after {
    transform: translateY(-50%) translateX(4px);
  }
}

@media screen and (max-width: 768px) {
  #news {
    padding: 96px 0 76px;
  }

  #news .inner {
    padding: 64px 24px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  #news .news_list {
    gap: 16px;
  }

  #news .news_list a {
    padding: 0 32px 16px 0;
    font-size: 14px;
    line-height: 150%;
  }

  #news .news_list a .date {
    font-size: 14px;
    line-height: 150%;
  }

  #news .news_list a.pc {
    display: none;
  }

  #news .news_list a.sp {
    display: block;
  }
}

/* !bottom flex
---------------------------------------------------------- */
.flex_contents {
  padding: 40px 0 160px;
}

.content_row {
  display: flex;
  width: 100%;
}

.content_row.reverse {
  flex-direction: row-reverse;
}

.content_row .img,
.content_row .text_box {
  flex: 1;
  min-width: 0;
}

#welcome_to_baystars .img {
  border-radius: 0 24px 24px 0;
  overflow: hidden;
}

#exhibition .img {
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}

#exhibition .main_title h1 {
  font-family: "Noto Sans JP";
  font-size: 64px;
}

.content_row .text_box {
  width: 100%;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.content_row .text_box .text {
  color: #00428e;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 31.5px */
}

@media screen and (max-width: 1110px) {
  #welcome_to_baystars .main_title h1 {
    font-size: 60px;
  }

  .content_row .text_box {
    gap: 48px;
  }

  #exhibition .main_title h1 {
    font-size: 54px;
  }
}

@media screen and (max-width: 924px) {
  #welcome_to_baystars .main_title h1 {
    font-size: 48px;
  }

  .content_row .text_box {
    gap: 36px;
  }

  #exhibition .main_title h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .flex_contents {
    padding: 20px 0 96px;
  }

  .content_row,
  .content_row.reverse {
    flex-direction: column;
    gap: 40px;
  }

  #welcome_to_baystars .img {
    width: 95%;
    margin-right: auto;
  }

  #exhibition .img {
    width: 95%;
    margin-left: auto;
  }

  #welcome_to_baystars {
    margin-bottom: 96px;
  }

  .content_row .text_box .text {
    font-size: 14px;
    line-height: 175%; /* 24.5px */
    text-align: center;
  }

  #exhibition .main_title h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%;
  }
}

@media screen and (max-width: 374px) {
  #welcome_to_baystars .main_title h1 {
    font-size: 44px;
  }
}

/* anniversary_lp_footer
-----------------------------------------------------------*/
footer {
  background: #003a8f;
  padding: 40px 0;
}

footer .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

footer .logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
  justify-content: center;
}

footer .logos img {
  width: 130px;
}

footer .sns_box {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

footer .sns_box > p {
  color: #fff;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 14px */
  letter-spacing: 0.42px;
}

footer .sns_list {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

footer .sns_list > a {
  width: 32px;
  height: 32px;
}

@media (hover: hover) {
  footer .sns_list > a:hover {
    opacity: 0.7;
  }
}

footer .copyright {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  letter-spacing: 0.36px;
}

@media screen and (max-width: 768px) {
  footer .logos {
    gap: 32px;
  }

  footer .logos img {
    width: 104px;
  }

  footer .sns_box {
    flex-direction: column;
    gap: 16px;
  }

  footer .copyright {
    font-size: 10px;
    letter-spacing: 0.3px;
  }
}
