@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.cast-single .cast-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cast-single .cast-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
  }
}
.cast-single .cast-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cast-single .cast-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.cast-single .cast-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  display: block;
}
.cast-single .cast-header {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
@media (max-width: 768px) {
  .cast-single .cast-header {
    padding: 40px 0;
  }
}
.cast-single .cast-header-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .cast-single .cast-header-inner {
    flex-direction: column;
    gap: 30px;
  }
}
.cast-single .cast-image {
  flex: 0 0 300px;
}
@media (max-width: 768px) {
  .cast-single .cast-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.cast-single .cast-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cast-single .cast-info {
  flex: 1;
}
.cast-single .cast-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
@media (max-width: 768px) {
  .cast-single .cast-name {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.cast-single .cast-details {
  margin-bottom: 30px;
}
.cast-single .cast-detail-item {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cast-single .cast-detail-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .cast-single .cast-detail-item {
    flex-direction: column;
    gap: 5px;
  }
}
.cast-single .cast-detail-item dt {
  flex: 0 0 100px;
  font-weight: bold;
  color: #555;
}
@media (max-width: 768px) {
  .cast-single .cast-detail-item dt {
    flex: 0 0 auto;
    font-size: 0.9rem;
  }
}
.cast-single .cast-detail-item dd {
  flex: 1;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .cast-single .cast-detail-item dd {
    font-size: 0.95rem;
  }
}
.cast-single .cast-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.cast-single .cast-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.cast-single .cast-social .social-link svg {
  width: 24px;
  height: 24px;
}
.cast-single .cast-social .social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
.cast-single .cast-social .social-link.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}
.cast-single .cast-social .social-link.twitter {
  background: #000;
  color: white;
}
.cast-single .cast-social .social-link.twitter:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.cast-single .cast-social .social-link.facebook {
  background: #1877f2;
  color: white;
}
.cast-single .cast-social .social-link.facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}
.cast-single .cast-message {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .cast-single .cast-message {
    padding: 40px 0;
  }
}
.cast-single .cast-message .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .cast-single .cast-message .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.cast-single .cast-message .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}
.cast-single .cast-message .message-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 768px) {
  .cast-single .cast-message .message-content {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.cast-single .cast-message .message-content p {
  margin-bottom: 1em;
}
.cast-single .cast-message .message-content p:last-child {
  margin-bottom: 0;
}
.cast-single .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

.p-fp-banner__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 36px;
}

.c-headline {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
}

.p-global__nav {
  font-size: 0.9rem;
  line-height: 1.2;
}

/* 本文 */
p {
  font-family: "Noto Sans JP", sans-serif;
}

/* span と a タグ */
span, a {
  font-family: "Noto Sans JP", sans-serif;
}

/* テーブル要素 */
table, th, td {
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 600px) {
  .ikusei_schedule_section {
    padding: 0px 15px;
  }
}

.ikusei_schedule_header {
  text-align: center;
  margin-bottom: 20px;
}

h2.ikusei_schedule_title {
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 900;
}

.ikusei_schedule_title {
  color: #e3007d;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 600px) {
  .ikusei_schedule_title {
    font-size: 24px;
  }
}

.ikusei_schedule_subtitle {
  font-size: 16px;
  color: #333333;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 600px) {
  .ikusei_schedule_subtitle {
    font-size: 14px;
  }
}

.ikusei_schedule_table {
  border-collapse: separate;
  border-spacing: 0;
  width: 70%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.ikusei_schedule_table th,
.ikusei_schedule_table td {
  padding: 12px;
  text-align: center;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .ikusei_schedule_table {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .ikusei_schedule_table {
    width: 95%;
  }
  .ikusei_schedule_table th,
  .ikusei_schedule_table td {
    padding: 8px;
    font-size: 14px;
  }
}

.ikusei_schedule_header_row th,
.ikusei_schedule_header_row td {
  color: #ffffff;
  font-weight: bold;
  border: none;
  padding: 0;
}
.ikusei_schedule_header_row td:first-child {
  background-color: transparent;
}
@media (max-width: 600px) {
  .ikusei_schedule_header_row th,
  .ikusei_schedule_header_row td {
    padding: 12px 8px;
  }
}

.ikusei_schedule_badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: #e3007d;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .ikusei_schedule_badge {
    font-size: 12px;
  }
}

.ikusei_schedule_content_row {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.ikusei_schedule_content_row:hover {
  background-color: #f5f5f5;
}
.ikusei_schedule_content_row td {
  color: #333333;
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
  font-size: 2.5rem;
}
@media (max-width: 600px) {
  .ikusei_schedule_content_row td {
    font-size: 1.2rem;
  }
}
.ikusei_schedule_content_row td:first-child {
  font-weight: 600;
  color: #e3007d;
}
.ikusei_schedule_content_row:last-child td {
  border-bottom: none;
}

.p-fp-slider__logo.c-animation--text {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
}
@media (max-width: 600px) {
  .p-fp-slider__logo.c-animation--text {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
  }
}

span.p-fp-news__tab-labels-link.p-archive--news-category__item-link.u-flex-center {
  border-radius: 1rem 1rem 0 0;
}

.ikusei_hero_section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 5rem 1.5rem;
  background-image: url("../images/bg_top_bnr01.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ikusei_hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
@media (max-width: 768px) {
  .ikusei_hero_section {
    padding: 4rem 1.5rem;
    min-height: 400px;
  }
}
@media (max-width: 600px) {
  .ikusei_hero_section {
    padding: 3rem 1.2rem;
    min-height: 350px;
    background-attachment: scroll;
  }
}

.ikusei_content_wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.ikusei_main_title {
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  margin-bottom: 3rem !important;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .ikusei_main_title {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .ikusei_main_title {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem;
  }
}

.ikusei_text_block {
  margin-bottom: 0rem;
  width: 100%;
}
.ikusei_text_block p {
  font-size: 1.1rem;
  line-height: normal;
  opacity: 0.95;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ikusei_text_block p {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .ikusei_text_block p {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .ikusei_text_block {
    margin-bottom: 1.2rem;
  }
}

.p-side-button--right {
  display: none;
}

.ikusei_hero_section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 5rem 1.5rem;
  background-image: url("../images/bg_top_bnr01.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ikusei_hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
@media (max-width: 768px) {
  .ikusei_hero_section {
    padding: 4rem 1.5rem;
    min-height: 400px;
  }
}
@media (max-width: 600px) {
  .ikusei_hero_section {
    padding: 3rem 1.2rem;
    min-height: 350px;
    background-attachment: scroll;
  }
}

.ikusei_content_wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  h2.ikusei_main_title {
    font-size: 1.7rem !important;
  }
}

.ikusei_main_title {
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  margin-bottom: 3rem !important;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .ikusei_main_title {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .ikusei_main_title {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem;
  }
}

.tumeru {
  letter-spacing: -1px;
}

.ikusei_text_block {
  margin-bottom: 1rem;
  width: 100%;
}
.ikusei_text_block p {
  font-size: 1.1rem;
  line-height: normal;
  opacity: 0.95;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ikusei_text_block p {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .ikusei_text_block p {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .ikusei_text_block {
    margin-bottom: 1.2rem;
  }
}

.p-side-button--right {
  display: none;
}

.contact_phone {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e3007d;
  margin-bottom: 2rem;
}
.contact_phone p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: normal;
}
@media (max-width: 600px) {
  .contact_phone p {
    flex-direction: column;
    gap: 0;
  }
}
.contact_phone p .material-icons {
  border-radius: 3rem;
  background: #e3007d;
  color: #ffffff;
  font-size: 1rem;
  padding: 0 1rem;
}

.ikusei-price-table {
  width: 100%;
  max-width: 100%;
}
.ikusei-price-table__header {
  display: flex;
  background-color: #e3007d;
}
.ikusei-price-table__header-item {
  padding: 0.1rem;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
}
.ikusei-price-table__header-item:first-child {
  flex: 0 0 30%;
  width: 30%;
}
.ikusei-price-table__header-item:last-child {
  flex: 0 0 70%;
  width: 70%;
}
@media (max-width: 600px) {
  .ikusei-price-table__header-item {
    padding: 0.1rem;
    font-size: 14px;
  }
}
.ikusei-price-table__row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}
.ikusei-price-table__row:last-child {
  border-bottom: none;
}
.ikusei-price-table__label {
  flex: 0 0 30%;
  width: 30%;
  padding: 0.1rem;
  text-align: center;
  font-weight: 600;
  color: #333333;
  background-color: #fce4ef;
  border-right: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .ikusei-price-table__label {
    padding: 0.1rem;
    font-size: 14px;
  }
}
.ikusei-price-table__content {
  flex: 0 0 70%;
  width: 70%;
  padding: 0.1rem;
  text-align: center;
  color: #333333;
  background-color: #ffffff;
  word-wrap: break-word;
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e0e0e0;
}
@media (max-width: 600px) {
  .ikusei-price-table__content {
    padding: 0.1rem;
    font-size: 14px;
  }
}

.ikusei-price-table__row:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.hr-default {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.l-header {
  top: 50px;
}
@media (max-width: 600px) {
  .l-header--sp {
    top: 50px;
  }
}

.gt_switcher_wrapper {
  position: fixed;
  top: 0px !important;
  right: 0 !important;
  z-index: 99 !important;
  background: #fff;
  padding: 1rem;
  border-radius: 0;
  width: 100%;
  display: block;
}

.glink[data-gt-lang=zh-CN] span {
  font-size: 0 !important;
  line-height: 0 !important;
}

.glink[data-gt-lang=zh-CN] span:after {
  content: "ZH";
  font-size: 14px !important;
  line-height: normal !important;
}

.cast-profile-section {
  margin: 40px 0;
}
.cast-profile-section .cast-catchcopy {
  font-size: 24px;
  margin-bottom: 20px;
}
.cast-profile-section .cast-sns {
  margin-bottom: 30px;
}
.cast-profile-section .cast-sns-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}
.cast-profile-section .cast-sns-list li {
  list-style: none;
}
.cast-profile-section .cast-sns-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.cast-profile-section .cast-sns-list a svg {
  width: 24px;
  height: 24px;
}
.cast-profile-section .cast-sns-list .instagram a {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
.cast-profile-section .cast-sns-list .instagram a:hover {
  opacity: 0.8;
}
.cast-profile-section .cast-sns-list .tiktok a {
  background: #000;
  color: white;
}
.cast-profile-section .cast-sns-list .tiktok a:hover {
  background: #333;
}
.cast-profile-section .cast-sns-list .twitter a {
  background: #000;
  color: white;
}
.cast-profile-section .cast-sns-list .twitter a:hover {
  background: #333;
}
.cast-profile-section .cast-profile-heading {
  font-size: 20px;
  margin-bottom: 15px;
}
.cast-profile-section .cast-profile-text {
  margin-bottom: 25px;
  line-height: 1.8;
}
.cast-profile-section .cast-profile-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.cast-profile-section .cast-profile-table th {
  background: #fce4ef;
  padding: 12px 15px;
  text-align: left;
  font-weight: bold;
  width: 120px;
  border: 1px solid #ddd;
}
.cast-profile-section .cast-profile-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

@media (max-width: 768px) {
  .cast-profile-section .cast-sns-list {
    flex-direction: column;
  }
  .cast-profile-section .cast-sns-list a {
    justify-content: center;
  }
  .cast-profile-section .cast-profile-table th {
    width: 80px;
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */