@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*全共通*/
.red {
  color: #cf5757 !important;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes bgchange {
  0% {
    background: #dae2e3;
  }
  /*変化させたい色*/
  15% {
    background: rgb(180, 208, 210);
  }
  /*変化させたい色*/
  35% {
    background: rgb(192, 180, 210);
  }
  /*変化させたい色*/
  45% {
    background: rgb(214, 193, 211);
  }
  /*変化させたい色*/
  65% {
    background: rgb(214, 193, 193);
  }
  80% {
    background: rgb(250, 228, 202);
  }
  90% {
    background: rgb(202, 230, 218);
  }
  /*変化させたい色*/
  100% {
    background: rgb(180, 208, 210);
  }
  /*変化させたい色*/
}
@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.sp-image {
  display: none;
}

.sp {
  display: none;
}

html {
  font-size: 10px;
}

.icons {
  margin-bottom: 30px;
}
.icons div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.icons div img {
  width: 40px;
  margin-right: 20px;
}
.icons div p {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 2px;
}

.icon-flex {
  display: flex;
  justify-content: space-evenly;
  margin: 60px 0;
}
.icon-flex img {
  width: 50px;
}

#map-canvas {
  width: 100%;
  height: 300px;
  margin: 50px 0;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "Lato", "Open Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  background: #f8f8f8;
  color: rgba(0, 0, 0, 0.84);
  letter-spacing: 0.3rem;
}

.btn {
  display: inline-block;
  background-color: #1570B9;
  color: #fff;
  font-weight: bold;
  padding: 8px 30px;
  border-radius: 50px;
}
.btn img {
  width: 12px;
  margin-left: 4px;
}
.btn.black {
  background-color: rgba(0, 0, 0, 0.84);
  color: #fff;
}

.more-btn-block {
  display: block;
  text-align: right;
  margin-top: 30px;
}

.more-btn {
  display: inline-block;
}
.more-btn a {
  color: rgba(0, 0, 0, 0.84);
  font-size: 2rem;
  font-weight: 900;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.more-btn a img {
  width: 36px;
  margin-left: 6px;
}
.more-btn a:hover {
  opacity: 0.8;
}

.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 4.6rem;
  font-weight: 700;
  font-family: "Lato", "Open Sans", sans-serif;
  color: #1570B9;
  letter-spacing: 0.4rem;
  margin-bottom: 20px;
}

.sd {
  background-color: #1570B9;
  flex: none;
  height: 1px;
  margin: 0px 0px 0px 0px;
  transform-origin: center left;
  transition-delay: 100ms;
  transition-duration: 1200ms;
  width: 70px;
  max-width: 100%;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 20px 40px;
}
.navbar.active {
  background-color: #f8f8f8;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
}

.logo img {
  width: 120px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.84);
  font-size: 1.5rem;
  position: relative;
  transition: 0.2s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.hero {
  display: block;
  padding: 100px 0 120px 0;
  background-color: #f8f8f8;
}
.hero.crdetail {
  padding-bottom: 30px;
}
.hero.crdetail .hero-text {
  margin: 0 0 0 80px;
}

.hero-text {
  margin: 0 0 80px 80px;
}
.hero-text p {
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  color: #1570B9;
  font-family: "Lato", "Open Sans", sans-serif;
  font-weight: 900;
}
.hero-text h1,
.hero-text .title {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.8rem;
}
.hero-text.sub-hero h1 {
  color: #cf5757;
  font-family: "Lato", "Open Sans", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: 0.4rem;
  color: #1570B9;
  margin-bottom: 10px;
}
.hero-text.sub-hero h1.news-title {
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.84);
}
.hero-text.sub-hero p {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "Lato", "Open Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.84);
}
.hero-text.sub-hero p.title {
  font-size: 5rem;
  font-weight: bold;
  color: #1570B9;
  margin-bottom: 10px;
  letter-spacing: 0.8rem;
}
.hero-text.noimg {
  margin: 0 0 0 80px;
}

.hero-video-wrapper {
  width: 94%;
  max-width: 94%;
  height: 50vh;
  /* ← 高さを固定 */
  overflow: hidden;
  border-radius: 0 80px 80px 0;
}

.page-hero-wrapper {
  width: 94%;
  max-width: 94%;
  height: 30vh;
  overflow: hidden;
  border-radius: 0 80px 80px 0;
}
.page-hero-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.about {
  padding: 0 80px 120px 80px;
  background-color: #f8f8f8;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}
.about-text h3 {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 30px;
}
.about-text p {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.about-text.mission h3 {
  font-size: 3.6rem;
}
.about-text.mission p {
  font-size: 1.5rem;
  line-height: 4rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
}
.about-text.creator .section-title h2 {
  text-align: center;
  color: rgba(0, 0, 0, 0.84);
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.about-text.creator .section-title h2 .js-num {
  margin: 0 14px;
  font-size: 5rem;
  color: #cf5757;
  font-weight: 900;
  letter-spacing: 4px;
}
.about-text.creator p {
  font-size: 1.5rem;
  line-height: 4rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
}

.about-image {
  flex: 1;
  max-width: 600px;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

#creator {
  padding: 120px 80px;
  border-top-right-radius: 240px;
  background-color: white;
}
#creator .section-title h2 {
  color: #cf5757;
}
#creator .section-title .sd {
  background-color: #cf5757;
}
#creator .about-text {
  margin-bottom: 80px;
}
#creator .creator-content-box {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
#creator .creator-content-box .creator-content {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
#creator .creator-content-box .creator-content img {
  width: 100%;
  height: 130%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  filter: brightness(0.9);
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
}
#creator .creator-content-box .creator-content h3 {
  position: absolute;
  color: #fff;
  bottom: 40px;
  left: 40px;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 0 10px rgba(113, 113, 113, 0.1);
  line-height: 1.2;
}
#creator .creator-content-box .creator-content h3 .eng {
  font-size: 1.4rem;
  font-family: "Open Sans", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  letter-spacing: 0.1rem;
  opacity: 0.9;
}
#creator .creator-content-box .creator-content:nth-child(even) h3 {
  left: auto;
  right: 40px;
}
#creator .creator-content-box .creator-content:last-child h3 {
  bottom: 0;
}
#creator .creator-content-box .creator-content:hover img {
  filter: brightness(0.95);
  transition: 0.2s;
}

#page-content {
  padding: 200px 80px 120px 80px;
  border-top-right-radius: 240px;
  background-color: white;
}
#page-content .work-title {
  font-size: 2.4rem;
  font-weight: bold;
}
#page-content .power {
  font-size: 1.3rem;
}
#page-content .mov {
  width: 60%;
  margin-right: 4%;
  box-sizing: border-box;
}
#page-content .pwcr {
  width: 36%;
}
#page-content .pwcr h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}
#page-content .pwcr .creator-box {
  width: 280px;
  margin: 20px;
  position: relative;
  transition: 0.2s;
}
#page-content .pwcr .creator-box img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  filter: brightness(0.9);
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
}
#page-content .pwcr .creator-box h3 {
  position: absolute;
  color: #fff;
  bottom: 40px;
  right: 40px;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 0 10px rgba(113, 113, 113, 0.1);
  line-height: 1.2;
}
#page-content .pwcr .creator-box h3 .eng {
  font-size: 1.1rem;
  font-family: "Open Sans", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  letter-spacing: 0.1rem;
  opacity: 0.9;
}
#page-content .pwcr .creator-box:hover img {
  filter: brightness(0.95);
  transition: 0.2s;
}
#page-content .container {
  width: 80%;
  margin: 0 auto;
}
#page-content .container h2,
#page-content .container h3,
#page-content .container h4,
#page-content .container h5,
#page-content .container p,
#page-content .container ul,
#page-content .container ol,
#page-content .container blockquote {
  margin-bottom: 30px;
  font-size: 1.4rem;
}
#page-content .container h2,
#page-content .container h3,
#page-content .container h4,
#page-content .container h5 {
  font-weight: bold;
}
#page-content .container h2 {
  margin-top: 20px;
  font-size: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.84);
  padding-bottom: 10px;
}
#page-content .container h3 {
  font-size: 1.8rem;
}
#page-content .container a {
  color: #1570B9;
}

#values {
  padding: 200px 80px 120px 80px;
  border-top-right-radius: 240px;
  background-color: white;
  display: flex;
  justify-content: space-between;
}
#values .values-content {
  width: 50%;
  margin-right: 10%;
}
#values .values-content .values-item {
  padding: 60px 0;
  border-bottom: 1px solid #cecece;
}
#values .values-content .values-item h3 {
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 10px;
}
#values .values-content .values-item p {
  font-size: 1.4rem;
}
#values .values-content .values-item:first-child {
  padding: 0 0 60px 0;
}

#page-creators {
  padding: 200px 0;
  border-top-right-radius: 240px;
  background-color: white;
}
#page-creators .creator-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 140px;
}
#page-creators .creator-content .img-box {
  width: 60%;
  margin-right: 60px;
}
#page-creators .creator-content .img-box img {
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#page-creators .creator-content .txt-box {
  margin-right: 10%;
}
#page-creators .creator-content .txt-box h3 {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 30px;
  margin-bottom: 30px;
}
#page-creators .creator-content .txt-box h3 span {
  font-family: "Lato", "Open Sans", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #878787;
}
#page-creators .creator-content .txt-box h3.td {
  font-size: 2.6rem;
}
#page-creators .creator-content:nth-child(even) {
  flex-direction: row-reverse;
}
#page-creators .creator-content:nth-child(even) .img-box {
  margin-right: 0;
  margin-left: 60px;
}
#page-creators .creator-content:nth-child(even) .img-box img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
}
#page-creators .creator-content:nth-child(even) .txt-box {
  margin: 0;
  margin-left: 10%;
}

.white-to-gray {
  padding: 120px 0;
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f8f8f8 50%, #f8f8f8 100%);
}
.white-to-gray .image-wrapper {
  text-align: right;
  margin-left: 6%;
  width: 94%;
  max-width: 94%;
  height: 40vh;
  /* ← 高さを固定 */
  overflow: hidden;
  border-radius: 80px 0 0 80px;
}
.white-to-gray .image-wrapper img {
  text-align: right;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.tag {
  display: inline-block;
  font-family: "Lato", "Open Sans", sans-serif;
  background-color: #1570B9;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 5px 14px;
  border-radius: 20px;
  margin-right: 8px;
}
.tag.CREATOR {
  background-color: #cf5757;
}
.tag.todoroki {
  background-color: #468db6;
}
.tag.nonochi {
  background-color: #a44b72;
}
.tag.mayugon {
  background-color: #b46c40;
}
.tag.jura {
  background-color: rgba(0, 0, 0, 0.84);
}
.tag.runa {
  background-color: #5a8799;
}

.date {
  display: inline-block;
  font-family: "Open Sans", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #888888;
  margin-bottom: 5px;
}

.news {
  padding: 120px 80px;
  display: flex;
}
.news .section-title {
  margin-right: auto;
}
.news .news-list {
  width: 70%;
}

.news-list .news-item {
  color: rgba(0, 0, 0, 0.84);
  padding: 20px;
  border-top: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-list .news-item:last-of-type {
  border-bottom: 1px solid #eee;
}
.news-list .news-item:hover {
  transform: translateX(6px);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.02);
}
.news-list .news-item .news-title {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}
.news-list .right {
  margin: 30px;
}

#works {
  padding: 120px 80px;
}
#works .works {
  display: flex;
  overflow-x: scroll;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#works .works::-webkit-scrollbar {
  display: none;
}

.work-item {
  padding: 30px;
  background-color: #fff;
  min-height: 320px;
  min-width: 340px;
  border-radius: 16px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.work-item .thumbnail {
  overflow: hidden;
  margin-bottom: 10px;
  height: 180px;
  border-radius: 12px;
}
.work-item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
.work-item .tag {
  font-size: 1rem;
  margin-bottom: 8px;
  padding: 4px 14px;
}
.work-item .date {
  font-size: 1.1rem;
}
.work-item h3 {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.84);
}
.work-item:hover .thumbnail img {
  transform: scale(1.03);
}

#company-info {
  padding: 80px 80px 120px 80px;
}
#company-info .company-info-content {
  margin: 0 auto;
}
#company-info .company-info-content .company-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgb(234, 234, 234);
}
#company-info .company-info-content .company-info-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  width: 20%;
}
#company-info .company-info-content .company-info-item p {
  font-size: 1.5rem;
  width: 80%;
}

#creator-wanted {
  padding: 120px 80px;
  color: #fff;
  background: url(../images/1K4A0446.webp);
  background-size: cover;
  background-position: top;
  border-top-right-radius: 200px;
}
#creator-wanted .section-title h2 {
  color: #fff;
}
#creator-wanted .sd {
  background-color: #fff;
}
#creator-wanted h3 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 30px;
}
#creator-wanted p {
  width: 60%;
  font-weight: bold;
  margin-bottom: 30px;
}
#creator-wanted .btn {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.84);
  font-size: 1.2rem;
}

#wanted {
  background-color: #1570B9;
  padding: 120px 80px 100px 80px;
  color: #fff;
  display: flex;
}
#wanted .player-wanted {
  border-right: 1px solid #fff;
  width: 44%;
  padding-right: 6%;
}
#wanted .contact-wanted {
  width: 44%;
  margin-left: 6%;
}
#wanted h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 20px;
}
#wanted p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  height: 75px;
}
#wanted .btn {
  background-color: #fff;
  color: #1570B9 !important;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#wanted .btn:hover {
  transform: translateX(4px);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #000;
  color: #fff;
}
footer .footer-container {
  padding: 60px 80px;
  display: flex;
}
footer .footer-container .logo {
  font-weight: bold;
  margin-right: auto;
}
footer .footer-container .logo img {
  width: 140px;
  margin-bottom: 50px;
}
footer .footer-container .logo .company-info p {
  font-size: 1.4rem;
}
footer .footer-container .nav-links {
  display: flex;
  margin-top: 10px;
}
footer .footer-container .nav-links a {
  color: #fff;
  font-weight: normal;
  font-size: 1.4rem;
}
footer .sd {
  background-color: rgb(85, 85, 85);
  margin: 0 80px 40px 80px;
  width: calc(100% - 160px);
  box-sizing: border-box;
}
footer .footer-copyright {
  display: flex;
  padding: 0 80px 40px 80px;
  color: #999999;
}
footer .footer-copyright .copyright {
  font-size: 1.4rem;
  text-align: center;
  margin-right: auto;
  padding-bottom: 2px;
}
footer .footer-copyright div a {
  color: #999999;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  height: 100% !important;
}

#creator-detail {
  margin-top: 40px;
  display: flex;
  height: calc(100vh - 190px);
  overflow: auto;
  margin-bottom: 120px;
}
#creator-detail .page-hero-wrapper {
  width: 60%;
  min-width: 300px;
  position: sticky;
  top: 0;
  height: calc(100vh - 190px);
  background: #f0f0f0;
  overflow: hidden;
  pointer-events: auto;
}
#creator-detail .page-hero-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#creator-detail .slick-slider .slick-list,
#creator-detail .slick-slider .slick-track {
  height: 100% !important;
}
#creator-detail .creator-content {
  width: 40%;
  overflow-y: scroll;
  max-height: calc(100vh - 190px);
  padding: 0 40px;
}
#creator-detail .creator-content .content-inner {
  padding-bottom: 10vh;
  font-size: 1.4rem;
}
#creator-detail .creator-content .content-inner h1 {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 0px;
}
#creator-detail .creator-content .content-inner h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #cf5757;
  margin-bottom: 20px;
}
#creator-detail .creator-content .content-inner p {
  font-size: 1.4rem;
}
#creator-detail .creator-content .content-inner .icons div {
  margin: 10px 0;
}
#creator-detail .creator-content .content-inner .icons div p {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Lato", "Open Sans", sans-serif;
  font-style: italic;
}
#creator-detail .creator-content .content-inner .icons div img.tk {
  width: 36px;
  margin: 0 22px 0 2px;
}
#creator-detail .creator-content .content-inner .id {
  font-family: "Lato", "Open Sans", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #878787;
  margin-bottom: 30px;
}
#creator-detail .creator-content .content-inner .btn {
  font-size: 1.4rem;
}
#creator-detail .creator-content .content-inner .sd {
  width: 84%;
  margin: 0 8% 60px 8%;
  background-color: #cecece;
}
#creator-detail .creator-content .content-inner .prof {
  margin: 60px 0;
}
#creator-detail .creator-content .content-inner .flex h2 {
  width: 30%;
}
#creator-detail .creator-content .content-inner .flex .flex-content dl {
  display: flex;
  padding: 10px;
}
#creator-detail .creator-content .content-inner .flex .flex-content dl dt {
  width: 100px;
}
#creator-detail .creator-content .content-inner .cr-works {
  display: flex;
  flex-wrap: wrap;
  -moz-columns: 2;
       columns: 2;
  justify-content: space-evenly;
  margin: 10px;
}
#creator-detail .creator-content .content-inner .cr-works .creator-work-item {
  width: 200px;
  margin: 14px;
}
#creator-detail .creator-content .content-inner .cr-works .creator-work-item .thumbnail img {
  max-width: 100%;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#creator-detail .creator-content .content-inner .cr-works .creator-work-item .date {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.84);
}
#creator-detail .creator-content .content-inner .cr-works .creator-work-item h3 {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.84);
}

#other-creator {
  padding: 120px 80px;
  border-top-right-radius: 240px;
  background-color: white;
}
#other-creator .section-title h2 {
  color: #cf5757;
}
#other-creator .section-title .sd {
  background-color: #cf5757;
}
#other-creator .other-creator-box {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 100px;
}
#other-creator .other-creator-box::-webkit-scrollbar {
  display: none;
}
#other-creator .other-creator-box .creator-box {
  width: 320px;
  margin: 20px;
  position: relative;
  transition: 0.2s;
}
#other-creator .other-creator-box .creator-box img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  filter: brightness(0.9);
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
}
#other-creator .other-creator-box .creator-box h3 {
  position: absolute;
  color: #fff;
  bottom: 40px;
  right: 40px;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 0 10px rgba(113, 113, 113, 0.1);
  line-height: 1.2;
}
#other-creator .other-creator-box .creator-box h3 .eng {
  font-size: 1.1rem;
  font-family: "Open Sans", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  letter-spacing: 0.1rem;
  opacity: 0.9;
}
#other-creator .other-creator-box .creator-box:hover img {
  filter: brightness(0.95);
  transition: 0.2s;
}

form {
  width: 400px;
  margin: 0 auto;
}
form dt,
form dd {
  margin-bottom: 6px;
}
form dt p,
form dd p {
  font-size: 1.3rem;
  margin-bottom: 0 !important;
}
form input,
form textarea,
form select {
  width: 100%;
  border: none;
  border: 2px solid #eee;
  border-radius: 12px;
  color: rgba(0, 0, 0, 0.84);
  padding: 8px 12px;
  font-size: 1.3rem;
  transition: 0.2s;
  box-sizing: border-box;
  margin-bottom: 20px;
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border: 2px solid #1570B9;
  background-color: #f1f1f1;
}
form .red {
  color: #ff5066;
  margin: 2px;
}
form .submit {
  display: inline-block;
}
form .submit input[type=submit] {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "Lato", "Open Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  cursor: pointer;
  border: none;
  padding: 8px 30px;
  border-radius: 50px;
  text-align: center;
  letter-spacing: 1.3px;
  font-weight: bold;
  transition: 0.2s;
  color: #fff;
  background-color: #1570B9;
}
form .submit input[type=submit]:hover {
  transform: scale(0.95);
}
form .wpcf7-response-output {
  background: #ffffff;
  font-size: 1.2rem;
  padding: 30px;
  border: none !important;
  margin: 30px 0;
}
form .wpcf7-not-valid-tip {
  color: #cf5757;
  font-size: 1rem;
  margin-top: -20px;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */