@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* 基本設定 */
:root {
  --primary-color: #3490dc;
  --secondary-color: #f6993f;
  --dark-overlay: rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  color: #555;
}

body.index {
  background-image: url("../img/tex01_400b.jpg");
  background-size: calc(400px * 2) calc(645px * 2);
  color: #fff;
}

main {
  padding-top: 72px;
}

h1, h2, h3, h4 {
  font-family: "Noto Serif JP", serif;
  text-align: justify;
}

p {
  line-height: 1.5;
  text-align: justify;
}

li {
  line-height: 1.5;
}

.root {
  width: 100%;
  height: 100vh;
}

/* レイアウト */
.section {
  padding: 5rem 1rem;
}
@media (max-width: 768px) {
  .section {
    padding: 2rem 1rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.access-section .container {
  max-width: 1120px;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 40;
}

/* ナビゲーション */
.nav {
  display: grid;
  grid-template: "logo menu icon cta" auto / auto 1fr 35px auto;
  gap: 8px;
  align-items: center;
  padding: 1rem;
}
.nav-list {
  display: flex;
  gap: 3rem;
  list-style: none;
}
@media (max-width: 1000px) {
  .nav-list {
    gap: 1.5rem;
    font-size: 14px;
  }
}
@media (max-width: 840px) {
  .nav-list {
    gap: 1rem;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .nav-list {
    font-size: 16px;
  }
}
.nav-menu {
  place-self: center;
}
.nav-link {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-link:hover {
  opacity: 0.6;
}

.logo-img {
  height: 40px;
  width: auto;
}

.contact-btn {
  padding: 0.5rem 1.25rem;
  background: #333;
  color: white;
  border-radius: 9999px;
  transition: background 0.3s;
}
.contact-btn:hover {
  background: #ed8936;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.pc-only {
  display: block;
}

.nav-menu .instagram,
.nav-menu .contact-btn {
  display: none;
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s;
    z-index: 90;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu.active .instagram {
    display: block;
  }
  .nav-menu.active .instagram img {
    width: 40px;
  }
  .nav-menu .contact-btn {
    display: block;
    margin-top: 2rem;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
  .nav-list li {
    margin: 1rem 0;
  }

  .pc-only {
    display: none;
  }

  .logo {
    margin: 0 auto;
  }
}
/*★★★★★★★★★★★★ メインビジュアル ★★★★★★★★★★★★★★*/
.main-visual {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.main-visual .title {
  width: min(calc(100% - 2em), 400px);
  position: absolute;
  top: 45%;
  left: 50%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media (max-width: 768px) {
  .main-visual .title {
    top: 42%;
  }
}
.main-visual .title .copy {
  font-size: 38px;
  letter-spacing: .2em;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .main-visual .title .copy {
    font-size: 26px;
  }
}
.main-visual .title h1 {
  content: url("../img/logo1240.png");
  width: 100%;
  margin-top: 24px;
}

.slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}
.slide:first-child {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/*★★★★★★★★★★★★ プログラム ★★★★★★★★★★★★★★*/
.program-section {
  padding: 4rem 0;
  background: #fff;
  display: flex;
}
.program-section figure {
  width: min(100%, 300px);
}
.program-section figure img {
  width: 100%;
}

.index .program-section {
  color: #555;
}

.program-content {
  width: min(calc(100% - 2rem), 600px);
  margin: 0 auto;
}

.tag {
  color: #ed8936;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 2.25rem;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .title {
    font-size: 2rem;
  }
}

.description {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .description {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .description {
    font-size: 1rem;
  }
}

/*★★★★★★★★★★★★ プロフィール ★★★★★★★★★★★★★★*/
.profile-section {
  padding: 2.5rem 1rem;
}
@media (max-width: 768px) {
  .profile-section {
    padding: 1rem;
  }
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  background: #333333ba;
  color: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 400px;
}
@media (max-width: 768px) {
  .profile-container {
    flex-direction: column-reverse;
    gap: 0;
  }
}

.profile-text {
  flex: 1;
  padding: 2rem;
}
@media (max-width: 768px) {
  .profile-text {
    padding: 1rem;
  }
}

.profile-content h2 {
  font-size: 1.2rem;
  color: #ed8936;
}
.profile-content p {
  margin-top: 1rem;
  font-size: 15px;
}
.profile-content table {
  line-height: 2;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .profile-content th, .profile-content td {
    display: block;
  }
}
.profile-content th {
  white-space: nowrap;
  padding-right: 1rem;
}
@media (max-width: 768px) {
  .profile-content td {
    padding-left: 1em;
  }
}
.profile-content a {
  text-decoration: underline;
}
.profile-content .qualification:not(:first-of-type) h2 {
  margin-top: 2rem;
}

.profile-name_role {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-top: 16px;
}
@media (max-width: 1000px) {
  .profile-name_role img {
    width: 120px;
    height: auto;
  }
}
.profile-name_role .name {
  font-size: 1.6em;
}
@media (max-width: 1000px) {
  .profile-name_role .name {
    font-size: 1.4em;
  }
}
.profile-name_role .role {
  font-size: .7em;
  color: #fff;
  border-top: 1px solid #fff;
  padding-top: 2px;
}

.profile-gallery {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .profile-gallery {
    width: 100%;
    padding: 1rem;
  }
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, 160px);
  max-width: calc(160px * 3 + 16px * 2);
  gap: 16px;
  margin: 0 auto;
  width: 100%;
  align-content: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .gallery-thumbnails {
    grid-template-columns: repeat(auto-fit, 100px);
    gap: 10px;
    max-width: 100%;
  }
}

.thumbnail {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.thumbnail.active {
  border: 3px solid #ed8936;
}
.thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.thumbnail:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}
.gallery-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gallery-image.active {
  opacity: 1;
  z-index: 1;
}

.gallery-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 3;
}
.gallery-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gallery-nav.gallery-prev {
  left: -50px;
}
.gallery-nav.gallery-next {
  right: -50px;
}

@media (max-width: 768px) {
  .gallery-nav.gallery-prev {
    left: 10px;
  }
  .gallery-nav.gallery-next {
    right: 10px;
  }

  .gallery-close {
    top: 10px;
    right: 10px;
  }
}
.profile-gallery .thumbnail {
  margin-bottom: 0 !important;
}
.profile-gallery .thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image {
  max-width: 100%;
  max-height: 100%;
}

/*★★★★★★★★★★★★ 料金 ★★★★★★★★★★★★★★*/
.pricing-section {
  background-color: #fff;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .pricing-section {
    margin-top: 2rem;
  }
}

.index .pricing-section {
  background-color: transparent;
}

.section-header {
  text-align: center;
}
.section-header h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  word-break: keep-all;
  text-align: center;
  display: inline-block;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.6rem;
  }
}
.section-header h2 span {
  display: inline-block;
  font-size: .6em;
  line-height: 1.5;
}
.section-header ul {
  display: inline-block;
  text-align: left;
}
.section-header li {
  list-style-type: "※";
  margin-left: 1em;
}
@media (max-width: 768px) {
  .section-header li {
    font-size: 14px;
  }
}

.price-cards {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: 80px;
}
.price-cards.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  column-gap: 4px;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .price-cards.active {
    flex-direction: column;
    row-gap: 8px;
  }
}
.price-cards h3 {
  width: 100%;
  color: #fff;
  font-size: 1.6em;
  text-align: center;
  padding: 4px 0;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .price-cards h3 {
    font-size: 1.2em;
  }
}
.price-cards h4 {
  font-size: 1.2em;
  font-weight: bold;
}
.price-cards.price-60 h3 {
  background-color: #ed8936;
}
.price-cards.price-60 h4 {
  color: #ed8936;
}
.price-cards.price-90 h3 {
  background-color: #0284c7;
}
.price-cards.price-90 h4 {
  color: #0284c7;
}

.price-card {
  width: 33%;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  text-align: center;
  transition: border-color 0.3s;
  padding: 1.5rem;
}
.price-card:hover {
  border-color: #3b82f6;
}
@media screen and (max-width: 960px) {
  .price-card {
    width: 100%;
  }
}

.index .price-card {
  background-color: #fff;
  color: #555;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin: 24px auto 0;
}
.price .rate {
  display: block;
  border-top: 1px solid #ccc;
  padding-top: .5em;
  margin-top: .5em;
}
.price span {
  font-size: 1rem;
}

.mobilePersonal {
  margin-top: 80px;
}
.mobilePersonal h3 {
  background-color: #ed8936;
  color: #fff;
  text-align: center;
  font-size: 1.6em;
  padding: 4px 0;
}
.mobilePersonal ul {
  color: #555;
  background-color: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
  margin-top: 8px;
}
.mobilePersonal li {
  text-align: center;
  color: #ed8936;
}
.mobilePersonal .price {
  font-size: 1.6rem;
  color: #555;
  margin: 0 auto 16px;
}

.features {
  margin: 2rem 0;
  list-style: none;
}
@media (max-width: 768px) {
  .features {
    text-align-last: left;
  }
}
.features li {
  color: #f97316;
  text-indent: -1em;
  margin: 0.75rem 0;
}
.features li::before {
  content: "✓";
  margin-right: 0.5rem;
  color: #38bdf8;
}

.cta {
  text-align: center;
}
.cta h3 {
  width: min(100%, 400px);
  font-size: 1.2rem;
  text-align-last: center;
  border-bottom: 1px solid;
  padding-bottom: 8px;
  margin: 40px auto 0;
}
.cta p {
  text-align-last: left;
  width: min(100%, 400px);
  margin: 16px auto 0;
}
@media (max-width: 600px) {
  .cta p {
    font-size: 14px;
  }
}

.cta-button {
  display: inline-block;
  background: #ed8936;
  color: white;
  border-radius: 100px;
  padding: .5rem 1rem;
  margin: 16px auto 0;
}
.cta-button::before {
  display: inline-block;
  content: url("../svg/icon-mail.svg");
  width: 1em;
  margin-right: .5em;
}
.cta-button.hotpepper {
  background-color: #8c61b8;
}
.cta-button.hotpepper::before {
  content: url("../svg/icon-window.svg");
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tab {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tab-button {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border: 2px solid #fff;
  background: #666;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-button.active {
  color: white;
}
.tab-button.active.price-60 {
  background-color: #ed8936;
}
.tab-button.active.price-90 {
  background-color: #0284c7;
}

/*★★★★★★★★★★★★ アクセス ★★★★★★★★★★★★★★*/
.parking-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.parking-item:not(:first-child) {
  margin-top: 0.5rem;
}

.parking-icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: #0284c7;
}
.parking-icon svg {
  width: 100%;
  height: 100%;
}

.access-section {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .access-section {
    margin-top: 2rem;
  }
}

.access-content {
  display: grid;
  grid-template-columns: 1fr minmax(540px, auto);
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .access-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .access-info {
    width: min(100%, 600px);
    padding: 0;
    margin: 0 auto;
  }
}

.location {
  font-size: 1.2em;
  margin: 1.5rem 0;
}
.location img {
  width: min(100%, 540px);
  margin-top: .5rem;
}
.location figure {
  position: relative;
}
.location figcaption {
  position: absolute;
  bottom: 4px;
  right: 4px;
  color: #fff;
  font-size: .8em;
  margin-top: .5rem;
}

.transport, .parking {
  margin-top: 1.5rem;
}
.transport h3, .parking h3 {
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: 1.25rem;
  border: 1px solid;
  padding: 4px 8px;
  margin-bottom: 1rem;
}

.station {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.station + .station {
  margin-top: 24px;
}
.station-name {
  font-weight: 500;
}
.station-distance {
  margin-top: .5rem;
}
.station-distance::before {
  content: "→ ";
}

.map {
  position: relative;
  height: 100%;
  min-height: 400px;
  border-radius: 1rem;
  overflow: hidden;
}
.map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

/*★★★★★★★★★★★★ アドバイザー ★★★★★★★★★★★★★★*/
.advisor-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.advisor-section .card {
  position: relative;
  width: min(calc(100% - 2rem), 800px);
  height: 330px;
  box-sizing: border-box;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .advisor-section .card {
    height: 280px;
  }
}
.advisor-section .card__front, .advisor-section .card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  color: #fff;
  text-align: center;
  transition: transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
}
.advisor-section .card__front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url("../img/bg-advisor01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  transform: rotateX(0deg);
  padding-left: 30%;
}
@media (max-width: 768px) {
  .advisor-section .card__front {
    background-position: -50px top;
  }
}
@media (max-width: 422px) {
  .advisor-section .card__front {
    justify-content: flex-start;
  }
}
.advisor-section .card__front p {
  text-align: center;
  font-size: 1.5rem;
  font-style: oblique;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  .advisor-section .card__front p {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .advisor-section .card__front p {
    font-size: 1rem;
  }
}
.advisor-section .card__back {
  display: flex;
  color: white;
  box-sizing: border-box;
  transform: rotateX(180deg);
  background-color: #353535;
}
.advisor-section .card__back figure {
  width: 40%;
  height: 100%;
}
.advisor-section .card__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advisor-section .card.flipped .card__front {
  transform: rotateX(-180deg);
}
.advisor-section .card.flipped .card__back {
  transform: rotateX(0deg);
}
.advisor-section .card__title {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
}
@media (max-width: 768px) {
  .advisor-section .card__title {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .advisor-section .card__title {
    font-size: 1.8rem;
  }
}
.advisor-section .card__title ruby {
  ruby-position: under;
  -webkit-ruby-position: after;
}
.advisor-section .card__title span {
  font-size: 1.5rem;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .advisor-section .card__title span {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .advisor-section .card__title span {
    display: block;
    font-size: 1rem;
  }
}
.advisor-section .card__link {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  text-align: center;
  cursor: pointer;
  padding: .5rem 1.5rem;
}
.advisor-section .card__link:hover {
  background-color: #ed8936;
  color: #fff;
}
.advisor-section .card__link::after, .advisor-section .card__back .card__link::before {
  display: inline-block;
  animation: arrowPulse 1s infinite ease-in-out;
  position: relative;
  font-size: .5rem;
}
.advisor-section .card__link::after {
  content: "▶";
  margin-left: 5px;
}
.advisor-section .card__back .card__link::before {
  content: "◀";
  margin-right: 5px;
}
.advisor-section .card__back .card__link::after {
  content: "";
}
@keyframes arrowPulse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
.advisor-section .card__profile {
  width: 60%;
  display: grid;
  place-items: center;
}
.advisor-section .card__profile ul {
  padding: 0 1rem;
}
.advisor-section .card__profile li {
  text-align: left;
}
@media (max-width: 768px) {
  .advisor-section .card__profile li {
    font-size: .8rem;
  }
}

/*★★★★★★★★★★★★ FAQ ★★★★★★★★★★★★★★*/
.faq-section {
  padding: 2.5rem 1rem;
}
.faq-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-item.active .icon {
  transform: rotate(45deg);
}
.faq-item.active .answer {
  max-height: 500px;
  opacity: 1;
  padding: 1rem;
  margin-bottom: 1rem;
  visibility: visible;
}

.icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  opacity: 0;
  padding: 0;
  margin: 0;
  visibility: hidden;
}

/*★★★★★★★★★★★★ フッタ ★★★★★★★★★★★★★★*/
.footer {
  background: #f8f9fa;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 1rem;
  }
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  color: #666;
  margin-bottom: 2rem;
}

.footer-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}
@media (max-width: 768px) {
  .footer-nav-list {
    flex-direction: column;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.copyright {
  text-align: center;
  color: #666;
  font-size: 0.875rem;
}

/* ギャラリーレイアウト修正 - 最優先スタイル */
.profile-container {
  display: flex !important;
  min-height: 600px !important;
  height: auto !important;
  align-items: stretch !important;
}

@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
  }
}
.profile-text {
  flex: 1 !important;
  min-width: 50% !important;
}

.profile-gallery {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: auto !important;
}

.gallery-thumbnails {
  display: grid;
  width: 100%;
  align-content: center;
  justify-content: center;
  margin: auto;
}

/*# sourceMappingURL=base.css.map */
