@charset "UTF-8";
/*
Theme Name: Honto-Kikaku
Theme URL: https://hontokikaku.com/
Description: ホントキカクのWPテーマ
Version: 1.0.0
*/

/* -------------------- リセット & 基本設定 -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 2px red solid; */
}

:root {
  --c-navy: #003953;          /* ネイビー（濃いティール） */
  --c-purple: #cdb9ff;        /* メインの紫 */
  --c-purple-light: #fff5fe;  /* 淡い紫 */
  --c-blue: #a9d2fe;          /* ブルー */
  --c-pink: #e9c6e6;          /* アクセントのピンク */
  --c-text: #003953;          /* 基本テキスト */
  --c-gray: #f1f1f3;          /* 背景グレー */
  --c-line: #d8d8de;          /* 罫線 */
  --c-white: #ffffff;
  --transit-default: all 0.2s ease-out;
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-weight: 600;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--c-text);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px;
}

.inner {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transit-default, all 0.4s ease-out);
}

ul {
  list-style: none;
}

.en {
  font-family: "Geologica", sans-serif;
}

.red {
  color: #c03333;
}

/* -------------------- 汎用ボタン -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 0.25s;
  position: relative;
}
.btn--outline::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: solid 2px var(--c-navy);
  border-right: solid 2px var(--c-navy);
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.btn--outline {
  border: 1px solid var(--c-navy);
  border-radius: 100vmax;
  padding: 6px 40px;
  background: var(--c-white);
  color: var(--c-navy);
}
.btn--outline:hover {
  background: var(--c-navy);
  color: var(--c-white);
}

.btn--outline:hover::after {
  border-top: solid 2px var(--c-white);
  border-right: solid 2px var(--c-white);
}

/* -------------------- 共通セクション見出し -------------------- */
.section-head {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto 40px;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-head--center {
  justify-content: center;
}
.section-head--center .section-head-left .section-head__jp {
  text-align: center;
}
.section-head__jp {
  color: var(--c-navy);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head__jp::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  border-radius: 7px;
  background-color: var(--c-purple);
}
.section-head__en {
  font-size: 5rem;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: -12px 0;
}

.section-head-btn {

}

.section-foot {
  text-align: center;
  margin-top: 40px;
}

/* =====================================================================
   ヘッダー
===================================================================== */
.header {
  position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px auto 0;
}
.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  width: 260px;
}

.gnav {
  background: #FFF;
  padding: 10px 30px;
  border-radius: 100vmax;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}
.gnav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}
.gnav__en {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
}

.gnav__en::before {
    content: "";
    display: inline-block;
    width: .5rem;
    height: .5rem;
    margin-right: .25rem;
    border-radius: 50%;
    background-color: var(--c-navy);
    transform: translateY(-0.15rem);
}

.gnav__item a:hover .gnav__en::before {
  background-color: var(--c-purple);
}

.gnav__item--contact .gnav__en::before {
  content: none;
}

.gnav__jp {
  font-size: 0.8rem;
  font-weight: bold;
}

.gnav__item--contact a {
  border: 1px solid var(--c-navy);
  background: var(--c-white);
  color: var(--c-navy);
  padding: 10px 40px;
  border-radius: 100vmax;
}

.gnav__item--contact a:hover {
  border-radius: 100vmax;
  background: var(--c-navy);
  color: var(--c-white);
  background: var(--c-navy);
}

.gnav__item--contact a .gnav__en {
  color: var(--c-navy);
}

.gnav__item--contact a:hover .gnav__en {
  color: var(--c-white);
}


/* ハンバーガー（PCでは非表示） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-navy);
  transition: 0.3s;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* =====================================================================
   ヒーロー
===================================================================== */
.hero {
  position: relative;
  min-height: 360px;
  padding: 160px 0 40px;
  margin: -80px 0 0 0;
}

.hero__inner {
  position: relative;
}

/* 装飾の円 */
.hero__circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero__circle--big {
  width: 66%;
  aspect-ratio: 1 / 1;
  top: 270%;
  right: -6%;
  background: URL('../images/mesh-gradient.png');
  background-size: 100% 100%;
  z-index: 2;
}
.hero__circle--middle {
  width: 50%;
  aspect-ratio: 1 / 1;
  bottom: 450%;
  right: -25%;
  background: var(--c-purple-light);
}
.hero__circle--small {
  width: 10%;
  aspect-ratio: 1 / 1;
  top: -10%;
  left: 0%;
  background: var(--c-purple-light);
}
.hero__triangle--big {
  position: absolute;
  bottom: 0%;
  left: 12%;
  width: 0;
  height: 0;
  border-left: 115px solid transparent;
  border-right: 115px solid transparent;
  border-top: 200px solid var(--c-blue);
  opacity: 0.4;
  z-index: 0;
}
.hero__triangle--middle {
  position: absolute;
  bottom: -40%;
  right: 43%;
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 120px solid var(--c-blue);
  opacity: 0.4;
  z-index: 3;
}
.hero__triangle--small {
  position: absolute;
  top: -36%;
  left: 30%;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 75px solid var(--c-blue);
  opacity: 0.6;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__title {
  width: 30%;
}

.hero__lead {
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-navy);
  position: relative;
}

.hero__lead::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--c-navy);
  display: block;
  margin: 0 0 10px;
}

.hero__three__triangle {
  position: relative;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.hero__three__triangle span {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--c-navy);
  margin: 6px 0 0;
}

@keyframes parallax-large-anim {
  from {
    transform: translateY(400%);
  }
  to {
    transform: translateY(0px);
  }
}

.large {
  animation: parallax-large-anim linear;
  animation-timeline: scroll();
}

@keyframes parallax-small-anim {
  from {
    transform: translateY(-200%);
  }
  to {
    transform: translateY(0px);
  }
}

.small {
  animation: parallax-small-anim linear;
  animation-timeline: scroll();
}

/* =====================================================================
   ハッシュタグ帯
===================================================================== */
.hashbar {
  width: 100%;
  position: relative;
  z-index: 3;
  background-color: var(--c-white);
}
.hashbar__track {
  white-space: nowrap;
  scrollbar-width: none;
  border-top: 1px solid var(--c-navy);
  border-bottom: 1px solid var(--c-navy);
}
/* .hashbar__label {
  width: 20%;
  text-align: right;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 30px;
  border-right: 1px solid rgba(255,255,255,0.3);
} */
.hash__list {
  width: 100%;
  padding: 10px 0;
}
.hash__list ul {
  width: 100%;
}
.hash__list ul li {
  width: auto;
  padding: 0 32px;
  border-left: 1px solid var(--c-navy);
}
.hash__list ul li a{
  color: var(--c-navy);
  font-size: 0.85rem;
}
.hashbar__track a {
  color: var(--c-navy);
  font-size: 0.85rem;
}

.hash__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/* =====================================================================
   ABOUT
===================================================================== */
.about {
  padding: 80px 0;
  position: relative;
  z-index: 3;
}
.about__en {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--c-navy);
}
.about__title {
  width: 100%;
  margin: 10px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__title img {
  width: 30%;
  max-width: 260px;
  margin: 0 10px;
}
/* 見出し左右の線 */
.about__title::before,
.about__title::after {
  content: '';
  width: 100px;
  height: 1px;
  background: var(--c-navy);
  display: block;
}
.about__body {

}
.about__body p {
  text-align: center;
  margin-top: 36px;
  font-size: 1rem;
  color: var(--c-navy);
}
.about__btn {
  display: flex;
  justify-content: center;
  margin: 40px auto 0;
}

/* =====================================================================
   MEMBERS
===================================================================== */
.members {
  padding: 0 0 80px;
  position: relative;
}

.members::before {
  content: '';
  width: 100%;
  height: 86%;
  background: var(--c-gray);
  position: absolute;
  bottom: 0;
}

.members .section-head {
  z-index: 3;
  position: relative;
}

.members__list {
  display: flex;
  /* gap: 24px; */
  margin: 0 auto;
  scrollbar-width: none;
  z-index: 3;
}
.members__list::-webkit-scrollbar { display: none; }

.member-card {
  width: 320px;
  height: 320px;
  border: 3px solid var(--c-white);
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 0 0 20px;
}
.member-card:hover {
  border: none;
  padding: 0;
}

.member-image {
  overflow: hidden;
  border-radius: 40px;
}
.member-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.member__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/* =====================================================================
   SERVICE
===================================================================== */
.service {
  padding: 80px 0 0;
  position: relative;
}
.service__en { display: inline-block; }

.service .section-head { position: relative; }

.service__cols {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto 40px;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
}

.service__col {
  width: calc((100% - 60px) / 4);
  display: flex;
  flex-direction: column;
  /* flex: 1; */
}

.service__col__2 {
  width: calc(((100% - 60px) / 4) * 2)
}

.service__col-title {
  background: var(--c-navy);
  color: var(--c-white);
  text-align: center;
  padding: 4px;
  border-radius: 100vmax;
  margin-bottom: 16px;
}
.service__col-title h3 {
  font-size: 1rem;
}

.service__list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service__col__1 .service__list {
  background: #fdfcfe;
}
.service__col__2 .service__list {
  background: #f8fbfe;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service__col__3 .service__list {
  background: #fffbfd;
}

.service__group {
  margin-bottom: 20px;
}

.service__col__2 .service__list .service__group {
  width: calc((100% - 20px) / 2);
}

.service__group-title {
  background: var(--c-pink);
  color: var(--c-white);
  text-align: center;
  font-weight: 700;
  padding: 1px 0;
  border-radius: 100vmax;
  font-size: 1rem;
}

.service__col__1 .service__group-title {
  background: #cdb9ff;
}

.service__col__2 .service__group-title {
  background: #a9d2fe;
}

.service__group ul li {
  font-size: 0.875rem;
  margin: 8px 0 0;
  padding: 0 10px 0 24px;
  position: relative;
}

.service__group ul li::before {
  content: "";
  display: inline-block;
  width: .5rem;
  height: .5rem;
  margin-right: .25rem;
  border-radius: 50%;
  background-color: var(--c-navy);
  position: absolute;
  top: 8px;
  left: 10px;
}

.service__col__1 .service__group ul li::before {
  background-color: #cdb9ff;
}

.service__col__2 .service__group ul li::before {
  background-color: #a9d2fe;
}

.service__col__3 .service__group ul li::before {
  background-color: #f0aecc;
}

/* サービスフロー */
.flow {
 padding: 40px 0 80px;
 position: relative;
}
.flow::before {
  content: '';
  width: 100%;
  height: 66%;
  background: URL('../images/mesh-gradient.png');
  position: absolute;
  bottom: 0;
  opacity: .4;
}

.flow__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}
.flow__cards {
  position: relative;
}
.flow__cards li {
  width: 22%;
}
.flow__card--head {
  position: relative;
  z-index: 10;
  transform: rotate(-15deg);
  top: 20px;
}

.flow__card .flow__card__inner {
  width: 100%;
  aspect-ratio: 5 / 8;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.flow__card--head .flow__card__inner {
  width: 100%;
  aspect-ratio: 5 / 8;
  background: URL('../images/mesh-gradient.png');
  background-size: 100% 100%;
  border-radius: 40px;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__card--head .flow__card__inner::before {
  content: '';
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: block;
  border: 2px solid #FFF;
  border-radius: 40px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.flow__card--head .flow__card__inner h3 {
  color: var(--c-white);
  text-align: center;
  position: relative;
  z-index: 3;
}
.flow__card--head .flow__card__inner h3 .jp {
  font-size: 1rem;
  display: block;
  margin: 0 0 4px;
}
.flow__card--head .flow__card__inner h3 .en {
  font-size: 2.625rem;
  line-height: 120%;
}

.flow__card {
  position: absolute;
  top: 0;
  transform: rotate(8deg);
  transition: transform 0.3s ease-in-out;
}
.flow__card:nth-child(2) {
  left: 15%;
  z-index: 8;
}
.flow__card:nth-child(3) {
  left: 28%;
  z-index: 7;
}
.flow__card:nth-child(4) {
  left: 41%;
  z-index: 6;
}
.flow__card:nth-child(5) {
  left: 54%;
  z-index: 5;
}
.flow__card:nth-child(6) {
  left: 67%;
  z-index: 4;
}
.flow__card:nth-child(7) {
  left: 80%;
  z-index: 3;
}

.flow__card:hover {
  position: absolute;
  top: -40px;
  transform: rotate(15deg) scale(1.1);
}

.flow__card:nth-child(2):hover,
.flow__card:nth-child(3):hover,
.flow__card:nth-child(4):hover,
.flow__card:nth-child(5):hover,
.flow__card:nth-child(6):hover,
.flow__card:nth-child(7):hover {
  z-index: 15;
}

.flow__card__inner a {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 40px;
  overflow: hidden;
}

.flow__card__inner a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =====================================================================
   WORKS
===================================================================== */
.works {
  padding: 80px 0 0;
  position: relative;
}
.works__list {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
}
.work-card {
  width: calc(100% / 4);
  cursor: pointer;
  display: flex;
}
.work-card a {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-content: flex-start;
  border-radius: 40px;
  transition: var(--transit-default, all 0.4s ease-out);
  position: relative;
}

.work-card a::before {
  content: '';
  width: 0%;
  height: 0%;
  display: block;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 40px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: var(--transit-default, all 0.4s ease-out);
  z-index: -1;
}
.work-card a:hover::before {
  width: 100%;
  height: 100%;
  border: 2px solid rgb(228, 234, 237);
}

.work-card__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
  transition: var(--transit-default, all 0.4s ease-out);
}
.work-card a:hover .work-card__thumb  {
  border-radius: 40px;
}

.work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.work-card:hover .work-card__thumb img {
  transform: scale(1.1);
}

.work-card__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  margin: 16px 0 0;
}

.work-card__name {
  font-size: 0.875rem;
  color: var(--c-purple);
}

.work-card__title {
  font-size: 1rem;
  color: var(--c-navy);
  margin: 6px 0 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.work-card__tags {
  margin-top: 10px;
}
.work-card__tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.work-card__tags ul li {
  font-size: 0.75rem;
  padding: 0 10px;
  border-radius: 100vmax;
  color: #80b1c8;
  border: 1px solid #80b1c8;
}

/* =====================================================================
   NEWS
===================================================================== */
.news {
  padding: 80px 0;
}
.news__list {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}
.news__item a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--c-line);
  transition: 0.2s;
  position: relative;
}
.news__item a:hover {
   background: var(--c-gray);
   padding: 18px 20px 18px 40px;
}
.news__item:first-child a {
  border-top: 1px solid var(--c-line);
}
.news__item time {
  font-size: 1rem;
  color: #7a8a90;
  flex-shrink: 0;
}
.news__cat {
  background: var(--c-purple);
  color: var(--c-white);
  font-size: 0.85rem;
  padding: 1px 10px;
  flex-shrink: 0;
}
.news__txt {
  font-size: 1rem;
  flex: 1;
}
.news__arrow {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--c-navy);
  border-right: solid 2px var(--c-navy);
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

/* =====================================================================
   CONTACT
===================================================================== */
.contact {
  background: var(--c-gray);
  padding: 80px 0;
}
.contact__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
}
.contact__lead {
  width: 36%;
}
.contact__text {
  margin: 40px 0 0;
}
.contact__text p {
  font-size: 1rem;
  margin: 20px 0 0;
}

/* フォーム */
.contact__form {
  flex: 1;
  margin: 0 0 0 40px;
  padding: 0 0 0 40px;
  border-left: 1px solid var(--c-navy);
}
.form-group {
  margin-bottom: 24px;
}
.form-group > label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-radios {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem 2rem;
    border: none;
}
.form-radios label {
    display: flex;
    align-items: center;
    gap: 0 10px;
    position: relative;
    cursor: pointer;
    margin: 16px 0 0;
}
.form-radios label:first-child {
    margin: 8px 0 0;
}
.form-radios label span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
.form-radios label::before,
.form-radios label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}
.form-radios label::before {
    width: 18px;
    height: 18px;
    background-color: #FFF;
}
.form-radios label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #a97bbf;
    animation: anim-radio-1 .3s linear;
}
@keyframes anim-radio-1 {
    0% {box-shadow: 0 0 0 1px transparent;}
    50% {box-shadow: 0 0 0 10px #a97bbf33;}
    100% {box-shadow: 0 0 0 10px transparent;}
}
.form-radios input {
    display: none;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  border: 1px solid var(--c-white);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 1rem;
  background: var(--c-white);
  font-family: inherit;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: 2px solid var(--c-purple);
  border-color: transparent;
}

.contact__privacy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 1rem;
    border: none;
}
.contact__privacy p {
  font-size: 1rem;
  line-height: 1;
}
.contact__privacy p a {
  font-size: 1rem;
  text-decoration: underline;
}

.contact__privacy label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}
.contact__privacy label::before {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #FFF;
    content: '';
}
.contact__privacy label:has(:checked)::after {
    position: absolute;
    top: 5px;
    left: 7px;
    transform: rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid #a97bbf;
    border-width: 0 3px 3px 0;
    content: '';
    animation: anim-radio-1 .3s linear;
}
.contact__privacy input {
    display: none;
}

.contact__submit {
  text-align: center;
  margin: 40px 0 0;
}

.contact__submit input {
  width: auto;
}

.contact__form .contact__submit .btn--primary {
  background: var(--c-purple);
  color: var(--c-white);
  border: none;
  border-radius: 999px;
  padding: 16px 40px;
  font-size: 1rem;
  transition: var(--transit-default, all 0.4s ease-out);
}

.contact__submit .btn:hover {
  background: #c03333;
}

.contact__form .wpcf7-radio .wpcf7-list-item {
  margin: 16px 0 0;
  display: block;
}
.contact__form .wpcf7-radio .first {
  margin: 0 0 0;
}

.contact__form .wpcf7-not-valid-tip {
  font-size: .85rem;
}

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

.contact__page {
  background: var(--c-white);
  padding: 40px 0 80px;
}

.contact__page .contact__form input,
.contact__page .contact__form textarea {
  background: var(--c-gray);
}

.contact__page .form-radios label::before {
  background: var(--c-gray);
}

.contact__page .contact__privacy label::before {
  background: var(--c-gray);
}


/* =====================================================================
   フッター
===================================================================== */
.footer {
  background: #242d32;
  padding: 80px 0;
}
.footer__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}

.fnav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}
.fnav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  position: relative;
  bottom: 0;
  transition: 0.2s;
}
.fnav__item a:hover {
  bottom: 8px;
}
.fnav__en {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
}

.fnav__en::before {
    content: "";
    display: inline-block;
    width: .5rem;
    height: .5rem;
    margin-right: .25rem;
    border-radius: 50%;
    background-color: var(--c-white);
    transform: translateY(-0.15rem);
}

.fnav__item a:hover .fnav__en::before {
  background-color: var(--c-purple);
}

.fnav__item--contact .fnav__en::before {
  content: none;
}

.fnav__jp {
  color: var(--c-white);
  font-size: 0.6rem;
  font-weight: bold;
}

.footer__logo {
  width: 20%;
  max-width: 120px;
  margin: 80px auto 40px;
  display: flex;
  justify-content: center;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 24px;
}
.footer__sns a { color: var(--c-white); opacity: 0.85; transition: 0.2s; }
.footer__sns a:hover { opacity: 1; }

.footer__copy {
  color: var(--c-white);
  text-align: center;
  font-size: 0.85rem;
}

/* =====================================================================
   PROFILE モーダル（ポップアップ）
===================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.modal.is-open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}
.modal__panel {
  max-width: 800px;
  width: 100%;
  position: relative;
}

.modal__circle--big {
  border-radius: 50%;
  width: 30%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: -20%;
  right: -10%;
  background: URL('../images/mesh-gradient.png');
  background-size: 100% 100%;
  z-index: 99;
  animation: modalInLong 0.3s ease;
}

.modal__circle--small {
  border-radius: 50%;
  width: 7%;
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: 10%;
  left: -4%;
  background: URL('../images/mesh-gradient.png');
  background-size: 100% 100%;
  z-index: 101;
  animation: modalInLong 0.3s ease;
}

.modal__triangle--big {
  position: absolute;
  bottom: -14%;
  left: 4%;
  width: 0;
  height: 0;
  border-left: 65px solid transparent;
  border-right: 65px solid transparent;
  border-top: 115px solid #e6f3ff;
  z-index: 101;
  animation: modalInRev 0.3s ease;
}

.modal__triangle--small {
  position: absolute;
  top: -3%;
  right: 8%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 36px solid #89a6f4;
  z-index: 101;
  animation: modalInRev 0.3s ease;
}

.modal__panel__inner {
  position: relative;
  background: var(--c-white);
  border-radius: 40px;
  max-width: 800px;
  width: 100%;
  padding: 50px 60px 30px 60px;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.3s ease;
  position: relative;
  z-index: 100;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes modalInLong {
  from { opacity: 0; transform: translateY(200px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes modalInRev {
  from { opacity: 0; transform: translateY(-100px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--c-navy);
}
.modal__label {
  position: absolute;
  left: -8%;
  top: 4%;
  writing-mode: sideways-lr;
  font-size: 4.375rem;
  font-weight: 900;
  color: var(--c-navy);
}
.modal__body {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.modal__visual {
  position: relative;
  width: 44%;
}
.modal__img {
  width: 100%;
  border-radius: 40px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
}
.modal__img img {
}
.modal__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 0;
}
.modal__sns a {
  color: #80b1c8;
  transition: 0.2s;
}
.modal__sns a svg {
  width: 24px;
  height: 24px;
}

.modal__sns a:hover {
  opacity: 0.7;
}

.modal__info {
  flex: 1;
}

.modal__name-en {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--c-navy);
}

.modal__name {
  font-size: 0.875rem;
  color: #80b1c8;
  font-weight: 500;
  margin: 4px 0 0;
}

.modal__role-tag {
  display: inline-block;
  background: var(--c-purple-light);
  color: #a97bbf;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 6px;
  margin: 10px 0;
}

.modal__heading {
  display: flex;
  align-items: center;
  position: relative;
  margin: 20px 0 0;
}
.modal__heading::before {
  content: '';
  width: 15px;
  height: 3px;
  background: var(--c-purple);
  display: block;
}
.modal__heading span {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 0 4px;
}
.modal__profile {
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 8px 0 0;
  padding: 0 0 0 20px;
}

.modal__skills {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0 0;
  padding: 0 0 0 20px;
  gap: 6px;
}
.modal__skills li {
  font-size: 0.875rem;
  line-height: 1;
  /* margin: 0 0 6px 6px; */
  padding: 4px 10px;
  border: 1px solid var(--c-navy);
}

.modal__footer {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}
.modal__footer p {
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--c-navy);
  font-weight: 700;
  position: relative;
}
.modal__footer p::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-navy);
  position: absolute;
  bottom: -5px;
}


/* =====================================================================
   パンくずリスト
===================================================================== */

.breadcrumb {
  width: 100%;
  max-width: 1360px;
  margin: 40px auto 0;
  padding: 0 80px;
}

.breadcrumb ol {
  display: flex;
}

.breadcrumb ol li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  margin-left: 8px;
  color: var(--c-navy);
}

.breadcrumb ol li:first-child {
  margin-left: 0;
  padding-left: 0 !important;
}

.breadcrumb ul li::before {
  content: '/';
  display: block;
  margin-right: 8px;
}

.breadcrumb ul li:first-child::before {
  content: none;
}

.breadcrumb ol li a {
  color: var(--c-navy);
  text-decoration: underline;
}


/* =====================================================================
   投稿
===================================================================== */
.single {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 80px 80px;
}

.single__head .cat {
  background: var(--c-purple);
  color: var(--c-white);
  font-size:1rem;
  padding: 0 20px;
  margin-bottom: 10px;
  display: inline-block;
}

.single__head h1 {
  font-size: 2.4rem;
  line-height: 1.4;
}

.single__head .date {
  font-size: 0.85rem;
  margin-top: 20px;
}

.single__thumbnail {
  margin-top: 40px;
}

.single__foot {
  margin-top: 60px;
}


/* =====================================================================
   固定
===================================================================== */
.page {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 80px 80px;
}

.page__head h1 {
  font-size: 2.4rem;
  line-height: 1.4;
}

.s-p__body {
  margin-top: 60px;
}
.s-p__body h2 {
  font-size: 2rem;
  margin-top: 40px;
}
.s-p__body h3 {
  font-size: 1.6rem;
  margin-top: 40px;
}
.s-p__body p {
  margin-top: 20px;
  font-weight: 400;
}
.s-p__body ul {
  margin-top: 20px;
}
.s-p__body ul li {
  margin-top: 10px;
}
.s-p__body ul li:first-child {
  margin-top: 0;
}
.s-p__body img {
  display: block;
  max-width: 100%;
  margin: 20px auto 0;
}
.s-p__body:first-child {
  margin-top: 0;
}



/* =====================================================================
   メンバー一覧
===================================================================== */
.members__page__inner {
  width: 100%;
  max-width: 1360px;
  margin: 40px auto 0;
  padding: 0 80px 80px;
}

.members__page__head__title p {
  color: var(--c-navy);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.members__page__head__title p::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  border-radius: 7px;
  background-color: var(--c-purple);
}

.members__page__head__title h2 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

.members__page__head > p {
  text-align: center;
  margin-top: 20px;
}

.members__body {
  margin-top: 40px;
}

.members__body__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.members__body__list .member-card {
  width: 23%;
  height: auto;
  margin: 0 0 0 0;
  padding: 0;
  /* border: 3px solid var(--c-gray); */
  border: none;
}

.members__body__list li:nth-child(n+5) {
  margin: 40px 0 0 0;
}

.members__body__list .member-card .member-image {
  padding: 10px;
  transition: 0.3s;
  border: 2px solid var(--c-gray);
}
.members__body__list .member-card:hover  .member-image {
  padding: 0;
  border: none;
}

.members__body__list .member-card .member-image img {
  overflow: hidden;
  border-radius: 40px;
}

.member-text {
  margin-top: 10px;
}

.member-text .role {
  color: var(--c-purple);
  font-size: 1.4rem;
  text-align: center;
}

.member-text .name {
  color: var(--c-navy);
  font-size: 0.875rem;
  text-align: center;
}


/* =====================================================================
   ニュース一覧
===================================================================== */
.cat {
  width: 100%;
  max-width: 1360px;
  margin: 40px auto 0;
  padding: 0 80px 80px;
}

.cat__head h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

.cat__head p {
  text-align: center;
  margin-top: 20px;
}

.cat__body {
  margin-top: 40px;
}

.cat__list {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}
.cat__item a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 60px 18px 20px;
  border-bottom: 1px solid var(--c-line);
  transition: 0.2s;
  position: relative;
}
.cat__item a:hover {
   background: var(--c-gray);
   padding: 18px 60px 18px 40px;
}
.cat__item:first-child a {
  border-top: 1px solid var(--c-line);
}

.cat__thum {
  width: 200px;
}

.cat__text {
  flex: 1;
}

.cat__date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px 0;
}
.cat__date time {
  font-size: 1rem;
  color: #7a8a90;
  flex-shrink: 0;
}
.cat__cat {
  background: var(--c-purple);
  color: var(--c-white);
  font-size: 0.85rem;
  padding: 1px 10px;
  flex-shrink: 0;
}
.cat__text h3 {
  font-size: 1rem;
  flex: 1;
}
.cat__arrow {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--c-navy);
  border-right: solid 2px var(--c-navy);
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}


/* =====================================================================
   レスポンシブ : タブレット（768px 以下）
===================================================================== */
@media (max-width: 768px) {
  /* ナビをドロワー化 */
  .gnav {
    position: fixed;
    inset: 0;
    background: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.35s;
    z-index: 150;
  }
  .gnav.is-open { transform: translateX(0); }
  .gnav__list {
    flex-direction: column;
    gap: 24px;
  }
  .hamburger { display: flex; }

  .hero__title { font-size: 56px; }
  .hero__circle--big { width: 400px; height: 400px; right: -60px; }

  .section-head__en { font-size: 36px; }

  /* サービスは2カラムへ */
  .service__cols { grid-template-columns: repeat(2, 1fr); }
  .service__head-btn,
  .works__head-btn { position: static; margin-top: 14px; }

  /* WORKS は2カラムへ */
  .works__list { grid-template-columns: repeat(2, 1fr); }

  /* フローは横スクロール */
  .flow__cards {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .flow__cards::-webkit-scrollbar { display: none; }
  .flow__card { flex: 0 0 130px; }

  /* CONTACT は1カラムへ */
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }

  /* モーダル調整 */
  .modal__body { grid-template-columns: 1fr; padding-left: 30px; }
  .modal__label { font-size: 22px; }
  .modal__panel { padding: 50px 24px 30px; }
}

/* =====================================================================
   レスポンシブ : スマートフォン（600px 以下）
===================================================================== */
@media (max-width: 600px) {
  .header__inner { padding: 14px 18px; }

  .hero { padding: 30px 18px 50px; min-height: 280px; }
  .hero__title { font-size: 44px; }
  .hero__circle--big { width: 300px; height: 300px; top: -120px; right: -80px; }
  .hero__circle--small { width: 120px; height: 120px; }

  .about { padding: 50px 18px; }
  .about__title { font-size: 26px; padding: 0 40px; }

  .members,
  .service,
  .works,
  .contact { padding-left: 18px; padding-right: 18px; }

  .section-head__en { font-size: 30px; }

  /* サービス・WORKS は1カラムへ */
  .service__cols { grid-template-columns: 1fr; }
  .works__list { grid-template-columns: 1fr; }

  .member-card { flex: 0 0 180px; }

  /* NEWS は縦並びに */
  .news__item a { flex-wrap: wrap; gap: 8px; }
  .news__txt { flex: 1 1 100%; order: 3; }

  .footer__nav ul { gap: 18px; }
  .contact__en { font-size: 34px; }
}
