html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/*====================================================================
全ページ共通CSS
====================================================================*/
*, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
   background-color: #fff;
   font-size: 18px;
   font-weight: 400;
   font-family: "Noto Sans JP", sans-serif;
   color: #fff;
   letter-spacing: .05em;
}
/* --- カスタムカーソルのスタイル --- */
.cursor {
  /* 見た目の設定 */
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%; /* 円形にする */

  /* 位置の設定 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; /* 常に最前面に表示 */

  /* マウスイベントを透過させるための重要設定 */
  pointer-events: none;

  /* 中心を基準に位置を調整するため */
  transform: translate(-50%, -50%);

  /* アニメーションを滑らかにする */
  transition: transform 0.2s ease-out;
}

/* ホバー時のスタイル */
.cursor.hover {
  transform: translate(-50%, -50%) scale(2.5); /* 少し大きくする */
  background-color: #ffffffdd; /* 少し薄くする */
}

.title-font {
    font-family: "trajan-sans-pro", sans-serif;
    font-weight: 400;
    letter-spacing: -.02em;
}

.sp-indent {
  display: none;
}

@media (max-width: 768px){
  .sp-indent {
  display: block;
}
}

/*====================================================================
ヘッダー
====================================================================*/


/*====================================================================
フッター
====================================================================*/



body .body_bg {
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    /* filter: brightness(60.8%); */
}

body .body_bg video {
  width: 100%;
  height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 768px){
  body .body_bg video {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    /* filter: brightness(60.8%); */
}
}

/*====================================================================
top-page
====================================================================*/
/* .page_load {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  z-index: 9999;
  background: url(https://rproduction-city.com/wp-content/uploads/2023/10/top_mv.mp4);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.page_load img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.top_hero {
    position: relative;
    width: 100dvw;
    height: 100dvh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.top_hero .top_hero-title {
    padding-left: 10%;
    width: 62%;
}

.top_hero .top_hero-title h1 {
    font-size: 6.8vw;
    font-family:  "trajan-sans-pro", sans-serif;
    font-weight: 400;
    letter-spacing: -.04em;
    text-align: center;
    color: #fff;
}

.top_hero .top_nav_area {
    position: relative;
    width: 38%;
}

.top_hero .top_nav_area::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 14%;
}

.top_hero .top_nav_area .top_nav .top_nav_ul {
    padding-left: 24%;
}

.top_hero .top_nav_area .top_nav .top_nav_ul li p a {
    font-size: 2.02vw;
    line-height: 1.618;
    font-weight: 600;
    font-family: avenir-next-world, sans-serif;
    font-style: normal;
    letter-spacing: .05em;
}

@media (max-width: 768px){
  .top_hero {
    position: absolute;
    width: 100dvw;
    height: fit-content;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: block;
  }
  .top_hero .top_hero-title {
    padding-left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.top_hero .top_hero-title h1 {
  font-size:  12vw;
}
.top_hero .top_nav_area {
  width: 100%;
  /* text-align: center; */
}
.top_hero .top_nav_area::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 4px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_hero .top_nav_area .top_nav .top_nav_ul {
  padding-left: 0;
  padding-top: 30px;
  width: fit-content;
  margin: 0 auto;
}
.top_hero .top_nav_area .top_nav .top_nav_ul li p a {
  font-size: 5vw;
  line-height: 1.618;
  font-weight: 400;
}
}

/*====================================================================
page-共通
====================================================================*/
.page-bg {
    background-color: #000000aa;
    width: 95vw;
    height: 100%;
    position: relative;
    margin: 50px auto;
    padding: 16px;
}

h2 {
    font-size: 4vw;
    margin: 96px 0 48px;
    padding-left: 2.5dvw;
    position: relative;
    font-family: avenir-next-world, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: .05em;
}


@media (max-width: 768px){
  .page-bg {
    width: calc(100dvw - 8px);
    padding: 8px;
}
h2 {
  font-size: 6vw; 
  letter-spacing: .1em;
  margin: 48px 0 24px;
  padding-left: 2dvw;
}
}

/*====================================================================
burger-menu
====================================================================*/

.burger {
    position: fixed;
    top: 5%;
    right: 5%;
    height: 40px;
    width: 60px;
   z-index: 9999;
  }
  
  .burger span {
    position: absolute;
    margin: auto;
    inset: 0;
    background-color: #fff;
    width: 80%;
    height: 3px;
    transition: .3s;
  }
  
  .burger span:nth-child(1) {
    top: 30%;
  }
  
  .burger span:nth-child(2) {
    top: -30%;
  }
  
  
  .burger.active span:nth-child(1) {
    left: 20%;
  }
  
  .burger.active span:nth-child(2) {
    left: -20%;
  }

  #gnav {
    width: 100vw;
    height: 100dvh;
    background-color: #000;
    position: fixed;
    left: 100%;
    top: 0;
    z-index: 9998;
    transition: .5s;
  }

  #gnav.drawer {
    left: 0;
  }

  #gnav ul {
    width: 100vw;
    height: 100dvh;
    padding: 100px;
  }

  #gnav ul li p a {
    display: block;
    line-height: 2;
    font-size: 3vw;
    font-family: avenir-next-world, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: .3s;
    letter-spacing: .05em;
  }

  #gnav ul li p a:hover {
    color: transparent;
    -webkit-text-stroke: 2px #FFF;
    text-stroke: 2px #FFF;
  }
  

@media (max-width: 768px){
  #gnav ul {
    padding: 50px;
  }
  #gnav ul li p a {
    display: block;
    line-height: 2;
    font-size: 10vw;
    transition: .3s;
  }
  #gnav ul li p a:hover {
    color: transparent;
    -webkit-text-stroke: 1px #FFF;
    text-stroke: 1px #FFF;
  }
}

/*====================================================================
 * works page
====================================================================*/
.works-page-bg {
  margin: 0 auto;
  padding: 0;
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 0 auto;
}

.achievements > p {
	width: 100%;
    height: 100%;
    margin: 50px auto;
}

.achievements p iframe {
	object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
} 

.achievements.block-mode {
  display: block;
}

.achievement_box {
    position: relative;
    width: 33%;
    height: 100%;
    aspect-ratio: 16 / 9;
    transition: .3s;
}

.achievements.block-mode .achievement_box {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.achievement_box .details {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #00000099;
  opacity: 0;
  transition: .3s;
}

.achievement_box .details:hover {
  opacity: 1;
}

.achievement_box .details .details_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.achievement_box .details .details_list p {
  line-height: 1.4;
  font-size: 12px;
}

.achievement_box div.achievement_img_area {
  padding: 10px;
  width: 100%;
  height: 100%;
}

.achievement_box div.achievement_img_area img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#changeLayout {
  position: fixed;
  bottom: 3%;
  right: 5%;
  height: 40px;
  width: 60px;
  border: 2px solid #fff;
  border-radius: 6px;
}

#changeLayout.active {
  border: none;
}

#changeLayout span {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  border-radius: 2px;
  width: 30%;
  height: 50%;
  transition: .3s;
}

#changeLayout span:nth-child(1) {
  left: 0;
}

#changeLayout span:nth-child(2) {
  transform: translate(-50%, -50%);
  left: 50%;
}

#changeLayout span:nth-child(3) {
  right: 0;
}

#changeLayout.active span {
  border: 2px solid #fff;
}

#changeLayout:hover {
  animation: box_up .5s ease;
}

@keyframes box_up {
  0% {
    bottom: 3%;
  }
  50% {
    bottom: 4%;
  }
  100% {
    bottom: 3%;
  }
}

@media (max-width: 768px){
  .works-page-bg {
    padding: 10px;
  }

  .achievement_box {
    width: 50%;
}

.achievement_box div.achievement_img_area {
  padding: 4px;
  width: 100%;
  height: 100%;
}

.achievements.block-mode .achievement_box {
  padding: 10px 6px;
}

.achievement_box .details {
  display: none;
}

}



/*====================================================================
 * service page
====================================================================*/
.service-page-bg .service-page-fv {
  width: 100%;
  height: 100dvh;
  border-bottom: 2px solid #fff;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-page-bg .service-page-fv .service-page-fv_mv {
  position: absolute;
  width: 50%;
  aspect-ratio: 16 / 9;
  top: 0;
  left: 0;
}

.service-page-bg .service-page-fv .service-page-fv-main_coppy h3 {
  font-size: 4.4rem;
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: -.02em;
}

.service-page-bg .service-page-fv .service-page-fv-main_coppy p {
  width: 50%;
  line-height: 1.6;
}

.service_box {
line-height: 1.6;
}



/*====================================================================
 * service page works slideshow
====================================================================*/
.works-slideshow {
  position: relative;
  max-width: 100%;
  margin: 40px auto;
  min-height: 400px; /* 最小高さを追加 */
}

.works-slide-wrapper {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  height: 100%; /* 高さを100%に設定 */
}

.works-slide-item {
  min-width: 33.333%;
  padding: 0 10px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.works-slide-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 16px;
}

.works-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.works-slide-img:hover img {
  transform: scale(1.05);
}

.works-slide-content h4 {
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: 600;
}

.works-slide-content h4 a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.works-slide-content h4 a:hover {
  opacity: 0.7;
}

.works-slide-content p {
  font-size: 0.9em;
  line-height: 1.6;
  color: #ccc;
}

.works-slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.works-slide-nav button {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  pointer-events: auto;
  transition: background 0.3s ease;
}

.works-slide-nav button:hover {
  background: rgba(0, 0, 0, 0.9);
}

.works-slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.works-slide-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.works-slide-dots .dot.active {
  background: #fff;
}

@media (max-width: 768px) {
  .works-slide-item {
    min-width: 100%;
  }
  
  .works-slide-nav button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/*====================================================================
 * privacy-poricy
====================================================================*/

main.privacy-policy .page-bg {
    position: relative;
    line-height: 1.4;
}

main.privacy-policy .page-bg h2 {
    font-size: 2.2vw;
    text-align-last: left;
    margin-bottom: 0;
}



/*====================================================================
  page-about
====================================================================*/
.aboutpage-bg {
  padding-left: 0;
  margin-top: 0;
  padding-top: 160px;
}

.about_content h3 {
    font-size: 2.8vw;
    margin-bottom: 30px;
    font-family:  "trajan-sans-pro", sans-serif;
    font-weight: 400;
    letter-spacing: -.04em;
    margin-left: 16px;
}

.main_coppy {
  width: 95vw;
  aspect-ratio: 16 / 9;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.main_coppy .about_fv {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 100%);
}

.main_coppy .about_fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  display: block;
  /* 下に向かって徐々に透過 */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.main_coppy p {
    position: relative;
    text-align: center;
    line-height: 2.6;
    font-weight: 400;
    letter-spacing: .08em;
    font-size: 1em;
}

:root {
  /* 色 */
  --popup-bg-color: #000000ed;
  --text-color-light: #fff;
  --border-color-light: #fff;

  /* アニメーション速度 */
  --duration-bg-expand: 0.6s;
  --duration-content-fade: 0.5s;
  --duration-fast: 0.3s;
  --duration-switch: 0.25s; /* メンバー切り替え速度 */

  /* イージング */
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===================================
   ベースコンポーネント (PC)
   =================================== */
.creator_wrapper {
  display: flex;
  align-items: center;
  margin: 160px 0;
  padding-right: 16px;
}

.creator_wrapper .title_area {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 40%;
  aspect-ratio: 7 / 5;
  background-color: var(--popup-bg-color);
  border-radius: 0 999px 999px 0;
  box-shadow: 1px 0 4px #333,
              5px 0 16px rgba(51, 51, 51, 0.8),
              11px 0 36px rgba(51, 51, 51, 0.6),
              19px 0 64px rgba(51, 51, 51, 0.4),
              30px 0 100px rgba(51, 51, 51, 0.2);
}

.creator_wrapper .title_area h4 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-color-light);
  transition: opacity var(--duration-fast), transform var(--duration-content-fade);
}

.creator_wrapper .creator_box {
  display: flex;
  justify-content: space-around;
  width: 60%;
}

.creator_wrapper .member {
  width: 30%;
  padding: 8px;
}

.creator_wrapper .member .flex-left .job_title {
  font-weight: 200;
  margin-bottom: 4px;
  font-size: 14px;
}

.creator_wrapper .member .flex-left .name {
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.creator_wrapper .member .flex-left .member_img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.creator_wrapper .member .flex-right {
  display: none;
}


/* ===================================
   ポップアップウィンドウ (PC)
   =================================== */
#member_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh; /* 100vhから変更 */
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-fast), visibility 0s var(--duration-fast);
}

#member_popup .popup-bg {
  position: absolute;
  top: 20vh;
  left: 0;
  width: 40%;
  height: 50vh;
  background-color: var(--popup-bg-color);
  border-radius: 0 999px 999px 0;
  z-index: -1;
  transition: all var(--duration-bg-expand) var(--ease-in-out-cubic);
}

#member_popup .popup-back_btn {
  position: absolute;
  top: 40px;
  left: 40px;
  color: var(--text-color-light);
  text-decoration: none;
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--duration-content-fade) var(--duration-content-fade);
}

#member_popup .popup-content_wrapper {
  width: 90%;
  max-width: 1200px;
  height: 65dvh;
  display: flex;
  align-items: flex-end;
  gap: 5%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-content-fade) var(--duration-content-fade),
              transform var(--duration-content-fade) var(--duration-content-fade);
}

#member_popup .popup-content_wrapper.is-switching {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration-switch), transform var(--duration-switch);
}

#member_popup .popup-member_switcher {
  position: absolute;
  bottom: 2%;
  right: 2%;
  display: flex;
  gap: 16px;
  opacity: 0;
  transition: opacity var(--duration-content-fade) var(--duration-content-fade);
}

.popup-member_switcher .switcher-item {
  width: 100px;
  border: 2px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  transition: border-color var(--duration-fast), transform var(--duration-fast);
}

.popup-member_switcher .switcher-item .switcher-text {
  font-size: 0.7em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.popup-member_switcher .switcher-item:hover {
  border-color: var(--border-color-light);
  transform: scale(1.05);
}

.popup-member_switcher .switcher-item .member_img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.popup-member_switcher .switcher-item .member_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ===================================
   ポップアップ表示時の変化 (PC)
   =================================== */
body.popup-active #member_popup {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

body.popup-active #member_popup .popup-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

body.popup-active .creator_wrapper {
  pointer-events: none;
}

body.popup-active .creator_wrapper .title_area h4 {
  opacity: 0;
  transform: translateX(-100px);
}

body.popup-active #member_popup .popup-back_btn,
body.popup-active #member_popup .popup-content_wrapper,
body.popup-active #member_popup .popup-member_switcher {
  opacity: 1;
  transform: translateY(0);
}

/* ポップアップ時の内部レイアウト (PC) */
body.popup-active #member_popup .popup-content_wrapper .flex-left {
  width: 30%;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.popup-active #member_popup .popup-content_wrapper .flex-left .name p {
  font-size: 2em;
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1.4;
}

body.popup-active #member_popup .popup-content_wrapper .flex-left .job_title p {
  font-weight: 200;
  margin-bottom: 8px;
}

body.popup-active #member_popup .popup-content_wrapper .flex-left .member_img {
  flex: 1;
  width: 100%;
  min-height: 0;
}

body.popup-active #member_popup .popup-content_wrapper .flex-left .member_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.popup-active #member_popup .popup-content_wrapper .flex-right {
  width: 70%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-color-light);
}

body.popup-active #member_popup .popup-content_wrapper .flex-right .member-read_txt {
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.6;
  max-width: 65ch;
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
}

body.popup-active #member_popup .popup-content_wrapper .flex-right .member-main_txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 65ch;
  padding-left: 1em;
}

/* 画像のコンテナ（フィルターを重ねるための基準位置） */
body.popup-active #member_popup .popup-content_wrapper .flex-right .member-bg {
    padding-top: 3em;
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* ▼ position: relative を追加 ▼ */
}

/* ▼▼▼ 以下を新規追加 ▼▼▼ */
/* 画像の上に重ねるグラデーションフィルターの層 */
body.popup-active #member_popup .popup-content_wrapper .flex-right .member-bg::after {
    content: ''; /* 疑似要素には必須 */
    position: absolute; /* 親要素を基準に配置 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 上から下へ徐々に黒くなるグラデーション */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1; /* 画像よりも手前に表示 */
}


/* 背景画像自体のスタイル */
body.popup-active #member_popup .popup-content_wrapper .flex-right .member-bg img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* ===============================================
    ▼▼▼ スマートフォン対応用の追加CSS (768px以下) ▼▼▼
   =============================================== */
@media (max-width: 768px) {

  .main_coppy {
    aspect-ratio: 5 / 8;
  }

    .main_coppy p {
      font-weight: 400;
      font-size: 1em;
  }

    /* --- ベースコンポーネントの調整 --- */
    .creator_wrapper {
        flex-direction: column; /* 縦積みに変更 */
        margin: 40px 0 64px; /* 上下の余白を縮小 */
        padding-right: 0;
    }

    .creator_wrapper .title_area {
        width: 100%;
        aspect-ratio: auto; /* アスペクト比を解除 */
        height: 150px; /* 高さを固定 */
        border-radius: 0;
        margin-bottom: 32px;
    }

    .creator_wrapper .title_area h4 {
        font-size: 24px; /* フォントサイズを調整 */
    }

    .creator_wrapper .creator_box {
        width: 100%;
        align-items: center; /* 中央寄せ */
        gap: 0;
    }
    
    .creator_wrapper .member {
        width: 33%; /* 幅を調整 */
    }

    .creator_wrapper .member .flex-left .name {
        letter-spacing: .075em;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    /* --- ポップアップウィンドウの調整 --- */
    #member_popup {
      display: block;
    }

    #member_popup .popup-content_wrapper {
        flex-direction: column; /* ポップアップ内も縦積みに */
        width: 100%;
        height: 85dvh; /* 高さを画面に合わせる */
        gap: 16px;
        overflow-y: auto; /* 内容がはみ出たらスクロール */
        padding: 60px 0 20px; /* 上下のパディング調整 */
    }

    #member_popup .popup-back_btn {
        top: 20px;
        left: 20px;
    }

    /* --- ポップアップ内部レイアウトの調整 --- */
    body.popup-active #member_popup .popup-content_wrapper .flex-left {
        width: calc(100% - 8px);
        margin: 0 auto;
        order: 1; /* 表示順序：一番上 */
    }

    body.popup-active #member_popup .popup-content_wrapper .flex-right {
        width: 100%;
        height: auto;
        order: 2; /* 表示順序：二番目 */
        padding: 0 8px; /* 左右に少し余白 */
    }

    body.popup-active #member_popup .popup-content_wrapper .flex-right .member-read_txt {
        font-size: 16px;
        text-align: center;
    }

    body.popup-active #member_popup .popup-content_wrapper .flex-right .member-main_txt {
        font-size: 13px;
        line-height: 1.8;
          padding-left: 0;
    }
    
    body.popup-active #member_popup .popup-content_wrapper .flex-left .name p {
        font-size: 1.2em;
        text-align: center;
    }

    body.popup-active #member_popup .popup-content_wrapper .flex-left .job_title p {
        text-align: center;
    }

    /* --- メンバー切り替えスイッチャーの調整 --- */
    #member_popup .popup-member_switcher {
        position: relative; /* 配置基準を変更 */
        order: 3; /* 表示順序：一番下 */
        width: 100%;
        justify-content: center; /* 中央寄せ */
        right: auto;
        padding: 0;
        gap: 15px;
        background-color: #000;
    }

    .popup-member_switcher .switcher-item {
        width: 60px; /* スイッチャーの画像を小さく */
    }
}



.about_content dl {
    display: flex;
    flex-wrap: wrap;
	line-height: 1.6;
  margin: 0 16px;
}

.about_content dl dt {
    width: 30%;
    margin: 8px 0;
}

.about_content dl dd {
    width: 70%;
    margin: 16px 0;
}


@media (max-width: 768px){
  .about_content h3 {
    font-size: 5vw;
}
.about_content dl {
  display: block;
}
.about_content dl dt {
  width: 100%;
  margin: 0;
  font-size: 14px;
  font-weight: 300;
}
.about_content dl dd {
  width: 100%;
  margin: 0 0 8px;
  letter-spacing: .1em;
  line-height: 1;
  font-size: 0.8em;
}
}


/*====================================================================
  page-news
====================================================================*/

.news__item {
    margin-bottom: 30px;
    line-height: 1.4;
}

/*====================================================================
  form
====================================================================*/
/* === Layout & Structure === */
.formarea {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.formarea .form-side {
  color: #fff;
  position: sticky;
  top: 40px;
  height: fit-content;
  width: fit-content;
  max-width: 100dvw;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 64px;
  font-size: 16px;
  padding-right: 16px;
}

.formarea .form-side .form-side_txt p.form-read {
  font-weight: 600;
  font-size: 1.5em;
}

.formarea .form-side .tel_number {
  letter-spacing: .075em;
  font-size: 1.5em;
  font-weight: 600;
}

.formarea .contact-form {
  width: auto;
  padding-left: 16px;
  font-size: 18px;
  margin-bottom: 120px;
  border-left: 0.5px solid #666;
  flex: 1;
}

/* === Form Fields === */
.form-wrap {
  padding-bottom: 24px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #666;
}

.form-title {
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 8px;
}

span.required {
  display: inline-block;
  background-color: #dc3232;
  color: #fff;
  font-size: 12px;
  padding: 4px;
  margin-left: 12px;
  font-weight: 400;
}

.form_box,
.isp-btn {
  width: 100%;
  overflow: scroll;
}

.form_box p span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 16px;
}

input.wpcf7-text,
input.wpcf7-tel,
input.wpcf7-email,
textarea.wpcf7-textarea {
  display: block;
  width: 100%;
  padding: 6px 10px;
  background-color: #fefefe;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

/* === Error & Validation === */
.wpcf7-not-valid-tip {
  font-size: 16px;
  margin-top: 6px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #dc3232;
}

/* === Checkbox === */
.checkbox-cl01 input {
  display: none;
}

.checkbox-cl01 input + span {
  display: inline-block;
  padding-left: 32px;
  line-height: 50px;
  position: relative;
}

.checkbox-cl01 input + span::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  transition: all 0.12s, border-color 0.08s;
}

.checkbox-cl01 input:checked + span::before {
  width: 10px;
  height: 16px;
  top: 16px;
  left: 4px;
  border-radius: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
  opacity: 1;
}

/* === Radio Buttons === */
.form-wrap-ul input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  margin-right: 8px;
  border: 2px solid #fefefe;
}

.form-wrap-ul input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fefefe;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* === Radio Button Label === */
.form-wrap-ul label {
  display: flex;
  align-items: center;
}

.wpcf7-list-item {
  margin: 0;
}

.agree_chk {
  font-size: 12px;
}

.agree_chk a {
  text-decoration: underline;
  color: #59afff;
}

/* === Submit Button === */
.submit-btn {
  margin-top: 24px;
  width: 50%;
  height: 70px;
  background-color: #fefefe;
  transition: .6s;
  border: 1px solid #fefefe;
}

.submit-btn:hover {
  background-color: #000;
}

.submit-btn p {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  color: #fefefe; /* 初期文字色を黒に設定 */
  mix-blend-mode: difference; /* ブレンドモードを差分に設定 */
}

.submit-btn p input {
  width: 100%;
  height: 100%;
  padding-left: 50px;
  font-weight: 900;
}

.submit-btn p .submit-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  background-color: #fefefe;
  mix-blend-mode: difference; /* ブレンドモードを差分に設定 */
  transition: .6s;
}

.submit-btn p .submit-arrow .arrow {
	position: absolute;
	display: inline-block;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.submit-btn p .submit-arrow .arrow::before,
.submit-btn p .submit-arrow .arrow::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
  right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.submit-btn:hover p .submit-arrow {
  right: 4px;
}

.arrow1::before{
	left: 2px;
	width: 50%;
	height: 3px;
	background: #000;
  mix-blend-mode: difference;
}
.arrow1::after{
	left: 25% !important;
	width: 30%;
	height: 30%;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  mix-blend-mode: difference;
}


.wpcf7-spinner {
  display: none !important;
}

/* === Extra Text Sections === */
.exp,
.recaptcha_txt {
  font-size: .8rem;
  line-height: 1.4;
  margin-top: 8px;
  font-weight: 200;
}

.recaptcha_txt {
  margin-top: 30px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .formarea {
    flex-direction: column;
  }

  .formarea .form-side,
  .formarea .contact-form,
  .form_box,
  .isp-btn,
  .submit-btn,
  .exp,
  .recaptcha_txt {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }

  .formarea .form-side {
    position: static !important;
    margin-bottom: 48px;
    gap: 32px;
    padding-right: 0;
  }

  .formarea .form-side .form-side_txt p.form-read {
  font-size: 1.3em;
}

}


/*====================================================================
  single-page-bg
====================================================================*/

.single-page-bg .achievements {
  padding: 50px 0;
  margin-bottom: 30px;
}

.single-page-bg .achievements .wp-block-image {
    aspect-ratio: 16 / 9;
}

.single-page-bg .details_list dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
}

.single-page-bg .details_list dl dt {
  flex: 0 0 16%;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 200;
}

.single-page-bg .details_list dl dd {
  flex: 0 0 84%;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.single-page-bg .wp-block-video {
  margin-bottom: 30px;
}

@media (max-width: 768px){
  .single-page-bg .details_list dl dt {
    flex: 0 0 30%;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 200;
  }
  
  .single-page-bg .details_list dl dd {
    flex: 0 0 70%;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
  }
  
}

/*====================================================================
  works 詳細　YTB
====================================================================*/

.ytp-endscreen-content {
  display: none;
}