@charset "utf-8";

/*共通*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

img {
    max-width: 100%;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
  text-decoration: underline;
  color: #007acc; /* 強調色 */
}

body {
  font-family: "Zen Maru Gothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}


/* ヒーローヘッダー */
.hero {
  background: linear-gradient(to bottom, #e6f7ff, #ffffff);
  padding: 4rem 1rem 3rem;
  text-align: center;
}

.hero-content {
  margin-bottom: 2rem; /* ←ここに追加 */
}

/* ロゴ＋テキスト横並び */
.logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* ロゴ画像 */
.logo {
  width: 120px;
  height: auto;
}

/* ロゴテキスト */
.logo-text {
  font-size: 2.2rem;
  font-family: 'Yusei Magic', cursive;
  font-weight: bold;
  color: #007acc;
}

/* キャッチコピー */
.catch {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

/* CTAボタン */
.cta-button {
  display: inline-block;
  background-color: #ff4081;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #ff4081;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .logo-block {
    flex-direction: column;
  }

  .catch {
    font-size: 1.5rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}


/* ▼ グローバルナビ全体 */
.global-nav {
  background-color: #007acc;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ▼ ナビのリスト横並び */
.global-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0.5rem 1rem;
  list-style: none;
}

.global-nav li {
  position: relative;
  margin: 0 0.5rem;
}

/* ▼ ナビのリンク */
.global-nav a {
  color: #fff;
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  border-radius: 5px;
}

.global-nav a:hover {
  background-color: #005b99;
}

/* ▼ サブメニュー */
.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  z-index: 100;
  min-width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  margin: 0;
}

.submenu li:nth-child(even) {
  background-color: #f5f5f5;
}

.submenu a {
  color: #333;
  padding: 0.5rem 1rem;
}

.submenu a:hover {
  background-color: #e0f0ff;
}

@media screen and (max-width: 768px) {
  .global-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .global-nav li {
    width: 100%;
    margin: 0;
  }

  .global-nav a {
    width: 100%;
    padding-left: 1rem;
  }

  .has-submenu .submenu {
    position: static;
    border: none;
    box-shadow: none;
    background-color: #e6f2fb;
  }

  .has-submenu:hover .submenu {
    display: block;
  }
}

.x-post {
	margin: 30px auto;
	text-align: center;
}

.twitter-tweet {
	margin: 30px auto;
	text-align: center;
}


/* ---------- Aboutセクション ---------- */
.about {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

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

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #007acc;
}

/* リード文 */
.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 3rem;
}

/* ポイント部分のレイアウト */
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* 各ポイントのスタイル */
.point {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.point h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.point p {
  font-size: 1rem;
  line-height: 1.6;
}

.point-icon {
  font-size: 2rem;
  color: #ff4081;
  margin-bottom: 0.8rem;
  display: block;
}

/* レスポンシブ対応（スマホ用） */
@media screen and (max-width: 768px) {
  .about-points {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .lead {
    font-size: 1rem;
  }
}

/* --- 対応エリアセクション --- */
.service-area {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.service-area .section-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-area p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.service-area ul {
  margin: 1rem auto 2rem;
  max-width: 600px;
  padding-left: 1.5rem;
  list-style-type: disc;
  color: #333;
}

.service-area ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.service-area img {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


/*理念*/
.philosophy {
  background-color: #fff8e1;
  padding: 4rem 1rem;
  color: #333;
}

.philosophy .section-title {
  font-size: 1.8rem;
  color: #007acc;
  text-align: center;
  margin-bottom: 2rem;
}

.philosophy .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2rem;
}

.philosophy p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

/*学べること*/
.services {
  background-color: #f5faff; /* 今まで通り青系 */
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: #ff4081;
  margin-bottom: 0.5rem;
  display: block;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.service-item h3 a {
  color: #007acc;
  text-decoration: none;
}

.service-item:hover h3 a {
  color: #ff4081;
}

.service-item h3 a:hover {
  text-decoration: underline;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}

/*受講の流れ*/
.pricing-flow {
  background-color: #fdfdfd;
  padding: 4rem 1rem;
}

.pricing-flow h3 {
  font-size: 1.4rem;
  color: #007acc;
  margin-bottom: 1rem;
  border-left: 5px solid #007acc;
  padding-left: 0.5rem;
}

.pricing-flow ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.pricing-flow li {
  margin-bottom: 0.5rem;
}

.pricing-flow p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.flow ol {
  margin-left: 1.5rem;
  margin-top: 1rem;
  line-height: 1.8;
  counter-reset: step;
}

.flow li {
  margin-bottom: 1rem;
  padding: 1rem 0.5rem;
  border-left: 3px solid #007acc;
  line-height: 2;
}

.flow li strong {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: #007acc;
}

.flow li::before {
  counter-increment: step;
  content: counter(step);
  background-color: #ff4081;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  text-align: center;
  line-height: 1.6rem;
  margin-right: 0.5rem;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .pricing-flow h3 {
    font-size: 1.2rem;
  }

  .flow ol {
    margin-left: 1rem;
  }

  .pricing-flow ul,
  .flow li {
    font-size: 0.95rem;
  }
}

/*講師紹介*/
.instructor {
  background-color: #f9fcff;
  padding: 4rem 1rem;
}

.instructor-box {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.instructor-image img {
  width: 160px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.instructor-text h3 {
  font-size: 1.4rem;
  color: #007acc;
  margin-bottom: 1rem;
}

.instructor-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .instructor-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-image img {
    width: 120px;
  }

  .instructor-text h3 {
    font-size: 1.2rem;
  }
}


/*お問い合わせ*/
.contact-cta {
  background-color: #e6f7ff;
  padding: 4rem 1rem;
  text-align: center;
}

.contact-cta .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  background-color: #007acc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #005f99;
}

.cta-button.line {
  background-color: #00c300;
}

.cta-button.line:hover {
  background-color: #00a800;
}


.site-footer {
  background-color: #007acc;
  color: #fff;
  padding: 2rem 1rem 1rem;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.footer-left h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer-left p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right li {
  margin-bottom: 0.5rem;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-right a.current {
  color: #ff4081; /* 例：コーラル */
  font-weight: bold;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-left, .footer-right {
    width: 100%;
  }
}


.faq {
  background: url("../images/bg_sketchpaper.png");
  background-size: cover;
  background-repeat: repeat;
  padding: 3rem 1rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 40px 15px 15px;
  cursor: pointer;
  position: relative;
}

.faq-question .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-question.active::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 15px;
  background-color: #fff;
}

.faq-answer p {
  margin: 15px 0;
}


.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}

.privacy-policy h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #007acc;
  padding-bottom: 0.5rem;
  color: #007acc;
}

.privacy-policy p {
  margin-bottom: 1.5rem;
}

.privacy-policy dl {
  border-top: 1px solid #ccc;
}

.privacy-policy dt {
  font-weight: bold;
  background-color: #f0f8ff;
  border-bottom: 1px solid #ccc;
  padding: 1rem;
  margin-top: 1.5rem;
}

.privacy-policy dd {
  margin: 0;
  padding: 1rem;
  background-color: #fafafa;
  border-bottom: 1px solid #ccc;
}

.privacy-policy ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.privacy-policy ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.privacy-policy a {
  color: #007acc;
  text-decoration: underline;
}

.privacy-policy a:hover {
  text-decoration: none;
}
