@charset "UTF-8";
/* -----------------------
   ヘッダー全体（既存 #header に重ならないよう調整）
------------------------ */
/* 通常（未スクロール時） */
:root {
  --header-height: 90px;
  --header-scroll-height: 60px;
  /* スクロール後の縮んだ高さ */
}

.breadcrumb {
  display: none;
}

html,
body {
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 16px;
  background: #00a0e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: height 0.3s ease, padding 0.3s ease;
}

#header.compact ~ .header {
  top: 60px;
  /* ← 白ヘッダー縮小後の高さに合わせる */
}

/* -----------------------
   NEWS + アイコン
------------------------ */
.head-content {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
}

.head--logo {
  border: 3px solid #ffff00;
  padding: 3px 10px;
}
.head--logo p {
  font-weight: bold;
  color: #ffff00;
}

.news_text {
  color: #fff;
  font-weight: bold;
}

.head--logo p,
.news_text {
  font-weight: bold;
  font-size: clamp(18px, 2vw, 25px);
}

.head-content img {
  width: clamp(18px, 2.5vw, 24px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.sns-icon_img img {
  width: 50px;
}

/* -----------------------
   ハンバーガー
------------------------ */
.hamburger {
  width: clamp(22px, 5vw, 32px);
  height: clamp(16px, 4vw, 18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------
   オーバーレイ
------------------------ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background-color: rgba(70, 70, 70, 0.74);
  z-index: 900;
  transition: 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* -----------------------
   ドロワーメニュー
------------------------ */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: clamp(280px, 60vw, 420px);
  max-height: calc(100vh - 80px);
  background: #04117d;
  padding: 80px 20px 20px;
  transition: 0.35s ease;
  z-index: 1001;
}

.nav.active {
  right: 0;
}

.nav p {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: bold;
}

.nav ul {
  list-style: none;
}

.nav li {
  margin-bottom: clamp(14px, 3vw, 24px);
}

.nav a {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 25px);
  text-decoration: none;
  color: #fff;
}

.munu_box {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #04117d;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 5px;
  max-width: 200px;
  text-align: center;
  margin: 20px;
}

.nav a img {
  width: clamp(40px, 5vw, 50px);
  height: auto;
}

.hmg_li {
  font-size: clamp(12px, 3vw, 16px);
}

.hmg_li span {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #ffff7e;
}

.list_wrapflex {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.arrow_mark {
  margin-left: auto;
  /* ← これで右端固定！ */
  display: flex;
  align-items: center;
}

.arrow_mark img {
  width: 14px !important;
  height: auto;
}

/* -----------------------
   スライダー
------------------------ */
.Top_slider {
  position: relative;
  width: 100%;
  margin-top: 100px;
}

/* スライダー画像のズレ防止 */
.slick-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-dots {
  bottom: 25px !important;
}

.slick-dots li {
  width: 14px;
  height: 14px;
}

.slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
}

.slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #ccc;
  /* 薄いグレー */
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  opacity: 1;
}

/* アクティブ */
.slick-dots li.slick-active button:before {
  background: #555;
  /* 濃いグレー */
}

.main .container-inner {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  color: #000;
}

.container-fluid {
  padding: 0px 0px;
}

p:not(:last-child) {
  margin-bottom: unset !important;
}

.slick-slider {
  margin-bottom: unset !important;
}

.profile_content {
  max-width: 1200px;
  margin: 0 auto;
  height: 560px;
  text-align: center;
  position: relative;
  background-image: url(/wp/wp-content/uploads/feature/aigan_sensei/eye_1.webp), url(/wp/wp-content/uploads/feature/aigan_sensei/eye_2.webp), url(/wp/wp-content/uploads/feature/aigan_sensei/eye_3.webp), url(/wp/wp-content/uploads/feature/aigan_sensei/eye_4.webp);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: 12% -13%, 76% 24%, 35% 90%, 67% 107%;
}
.profile_content .profile_box {
  color: #04117d;
  font-weight: bold;
  padding: 20px 0 20px 0px;
  line-height: 2;
}
.profile_content .content-owner {
  padding: 3em 0;
}

.contet--person {
  background-color: #58BFBF;
}
.contet--person .mainprofile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.contet--person .content-person-wrap {
  padding: 5rem 6rem;
  background: url(/wp/wp-content/uploads/feature/aigan_sensei/profile_back.webp);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.contet--person .person_section {
  background-color: white;
  color: #58BFBF;
  font-size: 3rem;
  text-align: center;
  border: solid 2px white;
  border-radius: 41px;
  width: 300px;
  margin: 0 auto;
  margin-bottom: 5rem;
}
.contet--person .person_section h3 {
  font-weight: bolder;
}
.contet--person .profile-title {
  padding-bottom: 0.5rem !important;
  font-size: 1.6rem;
}
.contet--person .profile-text {
  font-size: 1.4rem;
}
.contet--person .content-person-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding-bottom: 1rem;
}
.contet--person .content-person-img .person_profile img {
  width: 300px;
}
.contet--person .person_profile_box {
  font-weight: bold;
  color: #fff;
  width: 100%;
}
.contet--person .person_profile_box .person_name {
  font-weight: bold;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.activities_title {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  /* ========== ひとみ（中央から少し左） ========== */
  /* ========== 先生（中央から少し右） ========== */
}
.activities_title .activities_titleflex {
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}
.activities_title .activities_titleflex img {
  max-width: 600px;
  width: 100%;
  height: auto;
}
.activities_title::after {
  content: "";
  position: absolute;
  top: -65px;
  left: 5%;
  transform: translateX(0%);
  width: 270px;
  /* PCサイズでのキャラクターの幅を固定 */
  aspect-ratio: 1/1;
  background-image: url("/wp/wp-content/uploads/feature/aigan_sensei/hitomi_character.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.activities_title::before {
  content: "";
  position: absolute;
  top: -70px;
  right: 0%;
  left: auto;
  transform: translateX(0%);
  /* 幅を固定 */
  width: 276px;
  /* PCサイズでのキャラクターの幅を固定 */
  aspect-ratio: 1/1;
  background-image: url("/wp/wp-content/uploads/feature/aigan_sensei/sensei_character.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

#business-content {
  background-color: #04117d;
  text-align: center;
  color: #fff;
  position: relative;
  /* 中央 */
}
#business-content .business-content_innerwrap {
  padding: 5rem 6rem;
  background: url(/wp/wp-content/uploads/feature/aigan_sensei/bussines_back.webp);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
#business-content .business_text {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
  padding-bottom: 1.5em;
}
#business-content::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 25px solid transparent;
  border-top: 30px solid #04117d;
}
#business-content .business_img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 5rem 3rem;
}
#business-content .business_img_box .bussiness-3 {
  position: relative;
}
#business-content .business_img_box .bussiness-3::before {
  content: "";
  top: -35px;
  right: -12%;
  width: 115px;
  position: absolute;
  aspect-ratio: 1/1;
  background-image: url(/wp/wp-content/uploads/feature/aigan_sensei/kouza_mark.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
#business-content .arc-text span:nth-child(1) {
  transform: rotate(-6deg) translateY(8px);
}
#business-content .arc-text span:nth-child(2) {
  transform: rotate(-5.5deg) translateY(6.5px);
}
#business-content .arc-text span:nth-child(3) {
  transform: rotate(-5deg) translateY(5px);
}
#business-content .arc-text span:nth-child(4) {
  transform: rotate(-4.5deg) translateY(3.5px);
}
#business-content .arc-text span:nth-child(5) {
  transform: rotate(-4deg) translateY(3px);
}
#business-content .arc-text span:nth-child(6) {
  transform: rotate(-3.5deg) translateY(2.5px);
}
#business-content .arc-text span:nth-child(7) {
  transform: rotate(-3deg) translateY(2px);
}
#business-content .arc-text span:nth-child(8) {
  transform: rotate(0deg) translateY(0px);
}
#business-content .arc-text span:nth-child(9) {
  transform: rotate(0deg) translateY(0);
}
#business-content .arc-text span:nth-child(10) {
  transform: rotate(0deg) translateY(1px);
}
#business-content .arc-text span:nth-child(11) {
  transform: rotate(3deg) translateY(2px);
}
#business-content .arc-text span:nth-child(12) {
  transform: rotate(3.5deg) translateY(2.5px);
}
#business-content .arc-text span:nth-child(13) {
  transform: rotate(2deg) translateY(3px);
}
#business-content .arc-text span:nth-child(14) {
  transform: rotate(3deg) translateY(3.5px);
}
#business-content .arc-text span:nth-child(15) {
  transform: rotate(5deg) translateY(5px);
}
#business-content .arc-text span:nth-child(16) {
  transform: rotate(5.5deg) translateY(6.5px);
}
#business-content .arc-text span:nth-child(17) {
  transform: rotate(6deg) translateY(8px);
}

.original_goods {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  gap: 3rem;
}
.original_goods .original_note img {
  width: 185px;
}
.original_goods .sub-title_box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.original_goods .sub-title_box .limited-icon img {
  width: 80px;
}
.original_goods .sub-title_box p {
  font-size: 2.6rem;
  font-weight: 700;
  color: #00A0E9;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px 0 0 #fff, 3px 0 0 #fff, 0 -3px 0 #fff, 0 3px 0 #fff, 4px 4px 6px rgba(0, 0, 0, 0.8);
}
.original_goods .businessInfo-button {
  padding-top: 2rem;
}
.original_goods .businessInfo-button img {
  width: 540px;
}

.content_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
}
.content_title .contet_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.title-icon {
  text-align: center;
}
.title-icon img {
  width: 420px;
}

.mark_text {
  font-size: 8rem;
  font-weight: 100;
  font-family: system-ui;
}

.mark_in_text {
  font-size: 1.7rem;
  text-align: center;
  font-weight: bold;
  line-height: 2;
  padding-top: 1rem;
}

.contet_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.arc-text {
  display: flex;
  justify-content: center;
  gap: 3px;
  font-size: 32px;
  font-weight: bold;
}

.arc-text span {
  display: inline-block;
}

#work_content {
  background-color: #eec40d;
  /* 右上 */
  /* 左下 */
}
#work_content .arc-text span:nth-child(1) {
  transform: rotate(-6deg) translateY(3px);
}
#work_content .arc-text span:nth-child(2) {
  transform: rotate(-4deg) translateY(2px);
}
#work_content .arc-text span:nth-child(3) {
  transform: rotate(-3deg) translateY(1px);
}
#work_content .arc-text span:nth-child(4) {
  transform: rotate(-2deg) translateY(1px);
}
#work_content .arc-text span:nth-child(5) {
  transform: rotate(-1deg) translateY(0);
}
#work_content .arc-text span:nth-child(6) {
  transform: rotate(0deg) translateY(0);
}
#work_content .arc-text span:nth-child(7) {
  transform: rotate(0deg) translateY(-1px);
}
#work_content .arc-text span:nth-child(8) {
  transform: rotate(1deg) translateY(0);
}
#work_content .arc-text span:nth-child(9) {
  transform: rotate(2deg) translateY(1px);
}
#work_content .arc-text span:nth-child(10) {
  transform: rotate(3deg) translateY(1px);
}
#work_content .arc-text span:nth-child(11) {
  transform: rotate(4deg) translateY(2px);
}
#work_content .arc-text span:nth-child(12) {
  transform: rotate(5deg) translateY(3px);
}
#work_content .arc-text span:nth-child(13) {
  transform: rotate(6deg) translateY(4px);
}
#work_content .arc-text span:nth-child(14) {
  transform: rotate(7deg) translateY(5px);
}
#work_content .content_title {
  align-items: flex-end;
}
#work_content .content_title_colum p {
  font-weight: bolder;
  text-align: center;
  font-size: 2.6rem;
  padding-bottom: 3rem;
}
#work_content .work_content_innerewrap {
  padding: 5rem 6rem;
  background: url(/wp/wp-content/uploads/feature/aigan_sensei/work_back.webp);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
#work_content .ivent_daialiy {
  text-align: center;
  position: relative;
}
#work_content .img_top_right,
#work_content .img_bottom_left {
  position: absolute;
  width: clamp(60px, 10vw, 120px);
  /* 画面の幅で自動調整 */
  pointer-events: none;
}
#work_content .img_top_right {
  width: 70px;
  top: clamp(-20px, -3vw, -25px);
  left: clamp(60px, 5vw, 60px);
}
#work_content .img_bottom_left {
  bottom: clamp(-20px, -2vw, -30px);
  right: clamp(-28px, -2vw, -30px);
}
#work_content .img_bottom_left_shadow {
  position: absolute;
  left: 96%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 10%;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(3px);
  border-radius: 50%;
  pointer-events: none;
}
#work_content .content_title .title_image {
  position: relative;
  display: inline-block;
}
#work_content .content_title .title_image img {
  height: 132px;
}
#work_content .content_title .title_image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 60%;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(3px);
  border-radius: 50%;
  pointer-events: none;
}
#work_content .active-phot_box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#work_content .ivent_daialiy {
  border: 3px solid black;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 3px;
}
#work_content .ivent_daialiy .ivent_daialiy_title {
  font-weight: bold;
  font-size: 1.9rem;
  border: 3px solid;
  border-top: none;
  border-radius: 0 0px 10px 10px;
  max-width: 400px;
  margin: 0 auto;
}
#work_content .ivent_daialiy h4 {
  font-size: 2.7rem;
  font-weight: bold;
  padding-top: 2rem;
}
#work_content .ivent_daialiy .ivent_daialiy_colum {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  margin: 0px auto;
  width: 425px;
}
#work_content .ivent_daialiy .ivent_daialiy_flex {
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: center;
}
#work_content .ivent_daialiy .list_title {
  font-size: 2.1rem;
  border: solid 2px;
  padding: 0px 10px;
}
#work_content .ivent_daialiy .list_day {
  font-size: 2.3rem;
}
#work_content .ivent_daialiy span {
  font-size: 2.1rem;
}
#work_content .ivnet_box_flex {
  display: flex;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 5rem;
  justify-content: center;
}
#work_content .ivent_youtube {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8rem 0;
  gap: 3rem;
}
#work_content .ivent_youtube .character_icon {
  position: relative;
}
#work_content .ivent_youtube .character_icon::after {
  content: "";
  position: absolute;
  left: 23%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 35%;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(3px);
  border-radius: 50%;
  pointer-events: none;
}
#work_content .ivent_youtube .ivent_video img {
  width: 550px;
}

.active-phot_box + .active-phot_box {
  margin-top: -42px;
}

#youtube_content {
  background-color: #f1003e;
}
#youtube_content .youtube-content_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
}
#youtube_content .youtube-content_title p {
  font-size: 2.3rem;
  font-weight: bold;
  color: #fff;
}
#youtube_content .move_contet-box_innerwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 5rem 6rem 1.5em 6rem;
}
#youtube_content .move_contet-box_innerwrap .youtube_01title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffff00;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
#youtube_content .move_contet-box_innerwrap .ruby-tight {
  font-size: 3.4rem;
  font-weight: bold;
  color: #ffff00;
}
#youtube_content .move_contet-box_innerwrap .ruby-tight rt {
  letter-spacing: -1.3em;
}
#youtube_content .title-icon {
  text-align: center;
}
#youtube_content .title_image img {
  width: 130px;
}
#youtube_content .youtube-content_summary {
  color: #fff;
  border-left: 3px solid white;
  padding: 0 0 0 10px;
}
#youtube_content .youtube_content_innerewrap {
  background: url(/wp/wp-content/uploads/feature/aigan_sensei/youtube_back.webp);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
#youtube_content .content_title {
  padding: 8rem 0 0.5em 0;
}
#youtube_content .content_title p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.3rem;
}
#youtube_content .contet_flex {
  margin-bottom: 3rem;
}
#youtube_content .contet_flex,
#youtube_content .content_title {
  color: #ffffff;
}
#youtube_content .youtube-content_view_imgbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 0 3em 2em;
}
#youtube_content .youtube-content_view_imgbox .content_view_img img {
  border-radius: 10px;
  width: 90vw;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
#youtube_content .move_digest_colum {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 10px;
  padding: 0rem 0 6rem 0;
}
#youtube_content .youtube_move-box {
  margin: 0 auto;
  max-width: 800px;
}
#youtube_content .move_contet-box .break-img img {
  width: 100%;
}
#youtube_content .youtube_move_kind {
  font-weight: bold;
  text-align: center;
  padding: 3rem 0 3rem 0;
}
#youtube_content .youtube_move_kind h4 {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 2.7rem;
  font-weight: bolder;
  line-height: 1.8;
  padding: 0 1rem;
}
#youtube_content .full_move img {
  width: 220px;
  height: 13px;
  vertical-align: unset !important;
}
#youtube_content .digest_move img {
  width: 630px;
  height: 13px;
  vertical-align: unset !important;
}
#youtube_content .arc-text {
  display: flex;
  justify-content: center;
  gap: 3px;
  font-size: 32px;
  font-weight: bold;
}
#youtube_content .arc-text span {
  display: inline-block;
}
#youtube_content .arc-text span:nth-child(1) {
  transform: rotate(-7deg) translateY(4px);
}
#youtube_content .arc-text span:nth-child(2) {
  transform: rotate(-6deg) translateY(3px);
}
#youtube_content .arc-text span:nth-child(3) {
  transform: rotate(-5deg) translateY(2px);
}
#youtube_content .arc-text span:nth-child(4) {
  transform: rotate(-4deg) translateY(1px);
}
#youtube_content .arc-text span:nth-child(5) {
  transform: rotate(-3deg) translateY(1px);
}
#youtube_content .arc-text span:nth-child(6) {
  transform: rotate(-2deg) translateY(0px);
}
#youtube_content .arc-text span:nth-child(7) {
  transform: rotate(-1deg) translateY(0px);
}
#youtube_content .arc-text span:nth-child(8) {
  transform: rotate(0deg) translateY(-1px);
}
#youtube_content .arc-text span:nth-child(9) {
  transform: rotate(1deg) translateY(0px);
}
#youtube_content .arc-text span:nth-child(10) {
  transform: rotate(2deg) translateY(1px);
}
#youtube_content .arc-text span:nth-child(11) {
  transform: rotate(3deg) translateY(1px);
}
#youtube_content .arc-text span:nth-child(12) {
  transform: rotate(4deg) translateY(2px);
}
#youtube_content .arc-text span:nth-child(13) {
  transform: rotate(5deg) translateY(3px);
}
#youtube_content .arc-text span:nth-child(14) {
  transform: rotate(6deg) translateY(4px);
}
#youtube_content .arc-text span:nth-child(15) {
  transform: rotate(7deg) translateY(5px);
}
#youtube_content .arc-text span:nth-child(16) {
  transform: rotate(8deg) translateY(6px);
}
#youtube_content .arc-text span:nth-child(17) {
  transform: rotate(9deg) translateY(7px);
}
#youtube_content .arc-text span:nth-child(18) {
  transform: rotate(10deg) translateY(8px);
}

#tiktok_content {
  background-color: #ffff7e;
  /* 透明クリック領域（共通） */
  /* 左側領域 */
  /* 右側領域 */
}
#tiktok_content .tiktok_content_innerewrap {
  padding: 8rem 5rem 6rem;
  background: url(/wp/wp-content/uploads/feature/aigan_sensei/sns_back.webp);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
#tiktok_content .sns-move_img_flex,
#tiktok_content .sns-content_series {
  max-width: 800px;
  margin: 0 auto;
}
#tiktok_content .sns-content_series {
  padding-bottom: 10rem;
}
#tiktok_content .title_image img {
  width: 120px;
}
#tiktok_content .content_title_colum .title-icon {
  width: 40vw;
}
#tiktok_content .sns-move_img_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}
#tiktok_content .sns-contet_title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 3rem 5rem 3rem;
  gap: 5rem;
}
#tiktok_content .sns-contet_title h3 {
  font-size: 2.1rem;
  font-weight: bold;
}
#tiktok_content .sns-contet_title .sns_icon img {
  width: 60px;
}
#tiktok_content .sns-contet_title .megane_insta img {
  width: 90px;
}
#tiktok_content .sub-title_box {
  padding: 2rem 0;
}
#tiktok_content .sub-title_box p {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}
#tiktok_content .border-dot {
  text-align: center;
}
#tiktok_content .sns-move_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
#tiktok_content .after-contet {
  border: 3px solid #00a0e9;
  border-radius: 5px;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 4rem;
  align-items: center;
  gap: 5rem;
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 10rem;
}
#tiktok_content .after-contet_box {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  align-items: center;
  gap: 2rem;
}
#tiktok_content .after-contet_box img {
  width: 70px;
}
#tiktok_content .after-contet_box p {
  font-size: 2rem;
}
#tiktok_content .after-contet_img {
  position: relative;
  /* ← これ必須（ずれ防止） */
  display: inline-block;
}
#tiktok_content .after-contet_img img {
  display: block;
  width: 360px;
  height: auto;
}
#tiktok_content .link-area {
  position: absolute;
  top: 0;
  width: 50%;
  /* 左右半分ずつ */
  height: 100%;
  /* 画像と同じ高さ */
  display: block;
  text-indent: -9999px;
  /* 中身があっても表示しない */
}
#tiktok_content .link-area.left {
  left: 0;
}
#tiktok_content .link-area.right {
  right: 0;
}

#contact_contet {
  background-color: #00a0e9;
  color: #fff;
  font-weight: bold;
  padding-top: 8rem;
  overflow: hidden;
  /* ---------------------------------------------------------------------- */
  /* --- 480px以下 (スマートフォン) --- */
}
#contact_contet .official_tiktok img,
#contact_contet .mail-btn img {
  width: 400px;
  max-width: 100%;
  height: auto;
}
#contact_contet .official_tiktok,
#contact_contet .example_p {
  padding-top: 3rem;
}
#contact_contet .example_icon img {
  width: 90px;
  max-width: 100%;
  height: auto;
}
#contact_contet .contact_contet_innnerwrap {
  text-align: center;
  padding-bottom: 6rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
#contact_contet .contact_contet_innnerwrap .content_wrap_box h2 {
  text-align: center;
  font-size: 3.5rem;
  color: #fff;
  font-weight: bold;
  border-bottom: solid;
  padding: 5px 0;
  display: inline;
}
#contact_contet .contact_contet_innnerwrap .content_wrap_box .messege_title {
  font-size: 2rem;
  font-weight: bold;
  padding-top: 3rem;
}
#contact_contet .contact_contet_innnerwrap .example_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 3rem 0;
  line-height: 2;
}
#contact_contet .contact_contet_innnerwrap .example_box p {
  text-align: left;
}
#contact_contet .warnning_comment {
  position: relative;
  padding-left: 1em;
  text-align: left;
  font-size: 1.3rem;
  margin: 0 auto;
  max-width: 800px;
}
#contact_contet .warnning_comment::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
#contact_contet .example_title-dott {
  padding-top: 5rem;
}
#contact_contet .border-dot img {
  width: 840px;
}
#contact_contet .example_title-dott img,
#contact_contet .border-dot img {
  width: 800px;
  padding: 3rem 0;
}
#contact_contet .content_wrap_box {
  position: relative;
}
#contact_contet .content_mail_colum {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
#contact_contet .customer_mail {
  border: 2px solid;
  padding: 10px;
}
#contact_contet .customer_mail .customer_mail_btn {
  color: #fff;
  font-size: 1.3rem;
}
#contact_contet .mail_contact_box {
  max-width: 800px;
  margin: 0 auto;
  /* ========== 擬似要素（キャラクター） PC基準 ========== */
}
#contact_contet .mail_contact_box::before, #contact_contet .mail_contact_box::after {
  content: "";
  position: absolute;
  top: 93.2%;
  transform: translateY(-50%);
  width: 200px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
#contact_contet .mail_contact_box::before {
  left: 50px;
  background-image: url("/wp/wp-content/uploads/feature/aigan_sensei/hitomi_character.webp");
}
#contact_contet .mail_contact_box::after {
  right: 15px;
  background-image: url("/wp/wp-content/uploads/feature/aigan_sensei/sensei_character.webp");
}
@media (max-width: 780px) {
  #contact_contet {
    padding-top: 5rem;
  }
  #contact_contet .contact_contet_innnerwrap {
    padding-bottom: 4rem;
  }
  #contact_contet .contact_contet_innnerwrap .content_wrap_box h2 {
    font-size: 2.8rem;
  }
  #contact_contet .contact_contet_innnerwrap .content_wrap_box .messege_title {
    font-size: 1.5rem;
  }
  #contact_contet .contact_contet_innnerwrap .example_box {
    gap: 2rem;
    padding: 2rem 0;
  }
  #contact_contet .warnning_comment {
    font-size: 1.1rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #contact_contet .mail_contact_box::before, #contact_contet .mail_contact_box::after {
    width: 150px;
    top: 93%;
  }
  #contact_contet .mail_contact_box::before {
    left: 33px;
  }
  #contact_contet .mail_contact_box::after {
    right: 20px;
  }
}
@media (max-width: 480px) {
  #contact_contet {
    padding-top: 3rem;
  }
  #contact_contet .official_tiktok img,
  #contact_contet .mail-btn img {
    width: 70%;
  }
  #contact_contet .contact_contet_innnerwrap {
    padding-bottom: 2rem;
  }
  #contact_contet .contact_contet_innnerwrap .content_wrap_box h2 {
    font-size: 2rem;
  }
  #contact_contet .contact_contet_innnerwrap .content_wrap_box .messege_title {
    font-size: 1.2rem;
  }
  #contact_contet .contact_contet_innnerwrap .example_box {
    gap: 1rem;
    padding: 1rem 0;
  }
  #contact_contet .warnning_comment {
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #contact_contet .border-dot img {
    padding: 1rem 0;
  }
  #contact_contet .customer_mail .customer_mail_btn {
    font-size: 1rem;
  }
  #contact_contet .mail_contact_box {
    /* 擬似要素は非表示にせず、極端に小さくして画面外に押し出す */
  }
  #contact_contet .mail_contact_box::before, #contact_contet .mail_contact_box::after {
    width: 80px;
    /* 最小限のサイズに縮小 */
    top: 97%;
    /* より下に配置 */
  }
  #contact_contet .mail_contact_box::before {
    left: -10px;
  }
  #contact_contet .mail_contact_box::after {
    right: -5px;
  }
}

/* -----------------------
   ▼ スマートフォン・タブレット対応 (max-width: 768px)
------------------------ */
@media (max-width: 780px) {
  #header.compact ~ .header {
    top: 0;
  }
  .Top_slider {
    margin-top: 60px;
    /* ヘッダー高さに合わせて調整 */
  }
  .nav {
    width: 90vw;
    max-width: none;
    padding: 60px 15px 15px;
  }
  /* --- スライダー調整 --- */
  .slick-dots {
    bottom: 5px !important;
  }
  .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .slick-dots li button:before {
    width: 8px;
    height: 8px;
  }
  /* --- ヘッダー要素 --- */
  .head--logo p,
  .news_text {
    font-size: 14px;
  }
  .head-content img {
    width: 18px;
  }
  .sns-icon_img img {
    display: none;
  }
  .icon-hamburger {
    gap: 1rem;
  }
  .munu_box {
    max-width: 150px;
  }
  .nav a img {
    width: 35px;
  }
  .nav li {
    margin-bottom: 12px;
  }
  .hmg_li {
    font-size: 12px;
  }
  .hmg_li span {
    font-size: 1.6rem;
  }
  /* --- プロフィールセクション --- */
  .profile_content {
    height: auto;
    /* 高さをコンテンツに合わせる */
    padding-bottom: 30px;
    background-image: url(/wp/wp-content/uploads/feature/aigan_sensei/eye_2.webp), url(/wp/wp-content/uploads/feature/aigan_sensei/eye_3.webp);
    background-position: 90% 20%, 24% 85%;
    background-size: 120px, 120px;
  }
  .profile_content br {
    display: none;
  }
  .profile_content .content-owner {
    padding: 2em 0 1em;
  }
  .profile_content .content-owner img {
    width: 90%;
    max-width: 200px;
  }
  .profile_content .profile_box {
    padding: 10px 15px;
    line-height: 1.6;
    font-size: 14px;
    text-align: left;
  }
  .contet--person .content-person-wrap {
    padding: 3rem 15px;
  }
  .contet--person .person_section {
    width: 90%;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    padding: 5px 10px;
  }
  .contet--person .mainprofile {
    gap: 2rem;
  }
  .contet--person .content-person-img {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contet--person .content-person-img .person_profile img {
    width: 100%;
    max-width: 150px;
  }
  .contet--person .person_profile_box .person_name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .contet--person .profile-title {
    font-size: 1.2rem;
  }
  .contet--person .profile-text {
    font-size: 1rem;
  }
  /* --- 活動紹介タイトル --- */
  .activities_title .activities_titleflex {
    padding: 2rem 0;
  }
  .activities_title .activities_titleflex img {
    width: 90%;
    max-width: 300px;
  }
  .activities_title::after {
    top: -10px;
    left: 15%;
    transform: translateX(-50%);
    width: 20vw;
  }
  .activities_title::before {
    top: -9px;
    left: 85%;
    transform: translateX(-50%);
    width: 20vw;
  }
  /* --- 事業内容セクション (#business-content) --- */
  #business-content .business-content_innerwrap {
    padding: 3rem 15px;
  }
  #business-content .business_text {
    font-size: 1.4rem;
    padding-bottom: 1em;
  }
  #business-content .business_img_box {
    gap: 15px;
    padding: 7rem 0 2rem 0;
  }
  #business-content .business_img_box .bussiness-3::before {
    width: 90px;
  }
  .content_title {
    flex-direction: column;
    gap: 1rem;
  }
  .content_title .title_image {
    display: none;
  }
  .title-icon img {
    width: 90%;
    max-width: 300px;
  }
  .arc-text {
    font-size: 18px;
    gap: 1px;
  }
  .mark_text {
    font-size: 3rem;
    /* 括弧を小さく */
  }
  .mark_in_text {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
  }
  .mark_in_text br {
    display: none;
  }
  .contet_flex {
    gap: 10px;
    padding: 0 10px;
  }
  /* --- グッズセクション (.original_goods) --- */
  .original_goods {
    flex-direction: column;
    gap: 20px;
    padding: 3rem 15px;
  }
  .original_goods .original_note img {
    width: 100%;
    max-width: 120px;
  }
  .original_goods .sub-title_box {
    align-items: center;
    gap: 0.5rem;
  }
  .original_goods .sub-title_box .limited-icon img {
    width: 50px;
  }
  .businessInfo-button {
    text-align: center;
  }
  .original_goods .sub-title_box p {
    font-size: 1.6rem;
    text-shadow: none;
    /* 影を消してシンプルに */
  }
  .original_goods .businessInfo-button img {
    width: 90%;
    max-width: 250px;
  }
  /* --- ワークコンテンツセクション (#work_content) --- */
  #work_content .work_content_innerewrap {
    padding: 3rem 15px;
  }
  #work_content .content_title {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  #work_content .content_title .title_image {
    display: none;
    /* 左右の装飾画像を非表示 */
  }
  #work_content .title-icon img {
    width: 90%;
    max-width: 300px;
  }
  #work_content .content_title_colum p {
    font-size: 1.4rem;
    padding-bottom: 1rem;
  }
  .active-phot_box {
    gap: 10px;
  }
  .active-phot_box + .active-phot_box {
    margin-top: 10px;
  }
  .active-phot_box div img {
    width: 100%;
    height: auto;
  }
  /* --- ワークコンテンツセクション (#work_content) --- */
  #work_content .ivent_daialiy {
    max-width: 100%;
    padding: 15px 10px;
  }
  /* 右上用/左下用 画像の位置調整 */
  #work_content .img_top_right {
    width: 40px;
    /* アイコンをさらに小さく */
    top: -15px;
    left: 5px;
  }
  #work_content .img_bottom_left {
    width: 40px;
    /* アイコンをさらに小さく */
    bottom: -15px;
    right: 5px;
  }
  #work_content .ivent_daialiy_title {
    font-size: 1.2rem;
    max-width: 90%;
    margin: 0 auto 10px;
    padding: 5px 10px;
  }
  #work_content .ivent_daialiy h4 {
    font-size: 1.5rem;
    padding-top: 0.5rem;
    margin-bottom: 1rem;
  }
  #work_content .ivent_daialiy .ivent_daialiy_colum {
    padding: 0;
    gap: 10px;
    margin: 0 auto;
    align-items: flex-start;
  }
  #work_content .ivent_daialiy .ivent_daialiy_title {
    font-size: 1.5rem;
  }
  #work_content .ivent_daialiy .ivent_daialiy_flex {
    flex-direction: row;
    /* ★★★ ここで横並びに戻す ★★★ */
    justify-content: center;
    /* 中央に寄せる */
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    /* 境界線を強調 */
    border-radius: 5px;
  }
  /* 各情報の文字サイズと配置を調整 */
  #work_content .ivent_daialiy .list_title {
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  #work_content .ivent_daialiy .list_day {
    font-size: 1.4rem;
    text-align: left;
    margin-left: auto;
  }
  #work_content .ivent_daialiy .list_day span {
    font-size: 1.4rem;
  }
  #work_content .ivent_youtube .character_icon img {
    width: 150px;
  }
  #work_content .ivent_youtube .ivent_video img {
    width: 290px;
  }
  #work_content .ivnet_box_flex {
    flex-direction: column;
  }
  /* --- YouTubeセクション (#youtube_content) --- */
  #youtube_content .youtube_content_innerewrap {
    padding-bottom: 3rem;
  }
  #youtube_content .content_title {
    padding: 4rem 15px 0.5em 15px;
  }
  #youtube_content .title-icon img {
    width: 90%;
    max-width: 300px;
  }
  #youtube_content .content_title_colum p {
    font-size: 1.4rem;
    padding-bottom: 1rem;
  }
  #youtube_content .youtube-content_title {
    gap: 0.5rem;
  }
  .full_youtube {
    padding: 1rem 15px;
  }
  #youtube_content .youtube-content_title p {
    font-size: 1.4rem;
    padding-bottom: 1rem;
  }
  #youtube_content .move_contet-box_innerwrap {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 15px;
  }
  #youtube_content .youtube_01title {
    flex-direction: column;
    font-size: 1.6rem;
  }
  #youtube_content .youtube-content_summary {
    border-left: none;
    padding: 10px 0 0 0;
    font-size: 14px;
  }
  #youtube_content .youtube-content_view_imgbox {
    flex-direction: column;
    padding: 0 15px 1em;
  }
  #youtube_content .youtube-content_view_imgbox .content_view_img {
    margin-bottom: 10px;
  }
  #youtube_content .youtube-content_view_imgbox .content_view_img img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  #youtube_content .youtube_move_kind {
    padding: 1.5rem 0 1.5rem 0;
  }
  #youtube_content .youtube_move_kind h4 {
    font-size: 1.6rem;
  }
  #youtube_content .move_digest_colum {
    grid-template-columns: 1fr;
    padding: 1rem 15px;
  }
  .full_move img,
  .digest_move img {
    width: 90%;
    max-width: 250px;
  }
  .digest_move img {
    width: 90%;
    max-width: 340px;
  }
  /* --- TikTokセクション (#tiktok_content) --- */
  #tiktok_content .tiktok_content_innerewrap {
    padding: 3rem 15px;
  }
  #tiktok_content .sns-move_img_flex {
    gap: 20px;
  }
  #tiktok_content .sns-move_img img {
    width: 100%;
    max-width: 200px;
  }
  #tiktok_content .sns-contet_title {
    gap: 1rem;
    padding: 2rem 15px;
  }
  #tiktok_content .sns-contet_title h3 {
    font-size: 1.4rem;
  }
  #tiktok_content .sns-contet_title .sns_icon img {
    width: 35px;
  }
  #tiktok_content .sns-contet_title .megane_insta img {
    width: 60px;
  }
  #tiktok_content .sub-title_box p {
    font-size: 1.2rem;
  }
  #tiktok_content .sns-content_series {
    padding-bottom: 3rem;
  }
  #tiktok_content .sns-move_box {
    flex-direction: column;
    gap: 20px;
  }
  #tiktok_content .after-contet {
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 1rem;
    gap: 15px;
    margin-bottom: 3rem;
  }
  .after-contet_img img {
    width: 100%;
    max-width: 250px;
  }
  #tiktok_content .after-contet_box p {
    font-size: 1.2rem;
  }
  #tiktok_content .border-dot img {
    padding: 1rem 0;
  }
  /* --- お問い合わせセクション (#contact_contet) --- */
  #contact_contet .contact_contet_innnerwrap {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 15px;
    padding-right: 15px;
  }
  #contact_contet .contact_contet_innnerwrap .content_wrap_box h2 {
    font-size: 2.2rem;
  }
  #contact_contet .messege_title {
    font-size: 1.4rem;
    padding-top: 1.5rem;
  }
  #contact_contet .contact_contet_innnerwrap .example_box {
    gap: 0.5rem;
    padding: 1.5rem 0;
    line-height: 1.4;
  }
  #contact_contet .example_icon img {
    width: 50px;
  }
  #contact_contet .example_box p {
    font-size: 1rem;
  }
  #contact_contet .official_tiktok img,
  #contact_contet .mail-btn img {
    width: 90%;
    max-width: 250px;
  }
  #contact_contet .border-dot img,
  #contact_contet .example_title-dott img {
    width: 100%;
    max-width: 400px;
    padding: 1.5rem 0;
  }
}
@media (max-width: 480px) {
  .activities_title {
    /* ひとみをさらに小さく調整 */
    /* 先生をさらに小さく調整 */
  }
  .activities_title::after {
    width: 100px;
    top: -20px;
    left: -2px;
    /* 左端に寄せる */
    transform: translateX(0);
    /* transformをリセット */
  }
  .activities_title::before {
    width: 100px;
    top: -20px;
    right: -25px;
    /* 右端に寄せる */
    left: auto;
    transform: translateX(0);
    /* transformをリセット */
  }
  .activities_title .activities_titleflex img {
    width: 60%;
    max-width: none;
  }
  .activities_title .activities_titleflex {
    padding: 1rem 0;
    /* 必要に応じてさらにパディングを調整 */
  }
  #business-content .business_img_box .bussiness-3::before {
    width: 70px;
  }
}

