.profile {
  display: flex;
}

.profile .profile_data {
  flex: 1;
}

.profile .profile_photo {
  width: 700px;
  margin-left: 20px;
}

.profile .pagelink {
  display: flex;
}
.profile .pagelink a {
  display: block;
  padding: 5px 5px;
  color: #fff;
  background: #000;
  font-size: 80%;
  line-height: 1;
}
.profile .pagelink a:hover {
  color: #fff;
  background: #583e11;
}
.profile .pagelink > div {
  width: 33%;
}
.profile .pagelink > div.page_list {
  width: 34%;
}

.profile .castname {
  padding: 20px 0;
  font-size: 28px;
  line-height: 1;
}

.profile h3 {
  margin-bottom: 10px;
  text-align: left;
  color: #9e7435;
  border-bottom: 1px solid #9e7435;
}

.profile #profile_data {
  width: 100%;
  margin: 0 0 20px;
}
.profile #profile_data th, .profile #profile_data td {
  padding: 5px 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
}
.profile #profile_data th {
  background: #eee;
}

.profile .sche {
  display: flex;
  padding: 5px 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
}
.profile .sche:nth-last-of-type(2n+1) {
  background: #eee;
}
.profile .sche .date {
  width: 50%;
}
.profile .sche .time {
  flex: 1;
}


.profile .slide {
  display: flex;
}
.profile .slide ul {
  list-style: none;
}

.profile .slide .swiper-container {
  width: 600px;
}
.profile .slide .swiper-pagination {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 0;
}
.profile .slide .swiper-pagination span {
  width: 100%;
  height: auto;
  background: transparent;
}


.profile_poke {
  display: flex;

  gap: 30px;
}

.profile_nodata {
  margin: 30px auto;
  text-align: center;
}

.profile_poke .photo, .profile_poke .data {
  width: calc((100% - 30px) / 2 );
}
.profile_poke .photo ul {
  list-style: none;
}

.profile_poke .photo img {
  width: 100%;
}

.profile_poke .data {
  text-align: left;
}

.profile_poke .data_inner {
  margin-bottom: 30px;
}

.profile_poke .data .name {
  margin-bottom: 10px;
  padding: 5px;
  border-left: 3px solid #ff7f8f;
}

.profile_poke .data .item dl {
  display: flex;
  flex-wrap: wrap;
}
.profile_poke .data .item dt {
  width: 35%;
  color: #fff;
  background-color: #ff7f8f;
}
.profile_poke .data .item dd {
  width: 65%;
}
.profile_poke .data .item dt, .profile_poke .data .item dd {
  margin-bottom: 4px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.4;
}

.profile_poke .blog {
  margin-top: 30px;
}

.profile_poke .blog_item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.profile_poke .blog_item_image {
  width: 100px;
  margin-right: 10px;
}

.profile_poke .blog_item_image img {
  width: 100%;
}

.profile_poke .blog_item_body {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 12px;
}

.profile_poke .blog_item_title a {
  color: #ff7f8f;
  font-size: 14px;
  font-weight: bold;
}

.profile_poke .blog_item_date {
  margin-top: auto;
  text-align: right;
  color: #666;
  font-size: 10px;
}

.profile_poke .sns {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.profile_poke .sns-icon {
  width: 50px;
  margin: 0 10px;
}
.profile_poke .sns-icon a {
  display: block;
  border-radius: 25px;
  background: #000;
}
.profile_poke .sns-icon.sns-twitter a {
  background: #000000;
}
.profile_poke .sns-icon.sns-insta a {
  position: relative;
  overflow: hidden;/*はみ出た部分を隠す*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
}

.profile_poke .sns-icon.sns-insta a:before {
  position: absolute;/*絶対配置*/
  z-index: 1;
  top: 50%;/*ずらす*/
  left: -40%;/*ずらす*/
  width: 110%;/*グラデーションカバーの幅*/
  height: 110%;/*グラデーションカバーの高さ*/
  /*グラデーションを重ねるため*/
  content: '';
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);/*グラデーション②*/
}

.profile_poke .sns-icon.sns-insta a img {
  position: relative;
  z-index: 2;
}

.swiper-pagination {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;

  gap: 3px;
}

.swiper-pagination-bullet {
  width: calc(100% / 6 - 3px * 5 / 6 );
  height: auto;
  border-radius: unset;
  background-color: transparent;
}

.schedule_title {
  margin-top: 30px;
  padding: 7px 0 5px;
  color: #fff;
  background-color: #ff7f8f;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.schedule {
  display: grid;
  justify-content: center;
  padding: 2px;
  background-color: #ff7f8f;

  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.schedule .datetime {
  padding: 10px 0;
  background-color: #fff;
  line-height: 1;
}

.schedule .datetime .date {
  font-weight: bold;
}

.schedule .datetime .timezone {
  margin-top: 5px;
}
