<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
Theme Name: SOLARIS Child - Official Design
Template: solaris_tcd088
*/

/* ---------------------------------------------------
  1. 基本設定（公式デザインを壊さない）
--------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #f6f6f6;
  color: #222;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* ---------------------------------------------------
  2. SOLARIS公式クラスの補助・微調整のみ
--------------------------------------------------- */

/* 公式グリッド補助 */
.aikan-grid {
  gap: 32px;
}
@media (max-width: 750px) {
  .aikan-grid {
    gap: 20px;
  }
}

/* 公式カード補助 */
.aikan-card {
  transition: box-shadow 0.3s, transform 0.3s;
}
.aikan-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.aikan-card img {
  border-radius: 8px 8px 0 0;
}

/* 公式ボタン補助 */
.aikan-btn {
  min-width: 180px;
  min-height: 48px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 28px;
  box-shadow: 0 2px 10px rgba(0,112,164,0.04);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-align: center;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
}
.aikan-btn--primary {
  background: #0070a4;
  color: #fff;
}
.aikan-btn--primary:hover,
.aikan-btn--primary:focus {
  background: #005a8a;
  color: #fff;
  transform: translateY(-2px);
}
.aikan-btn--accent {
  background: #ff6f00;
  color: #fff;
}
.aikan-btn--accent:hover,
.aikan-btn--accent:focus {
  background: #ff9800;
  color: #fff;
  transform: translateY(-2px);
}
.aikan-btn--white {
  background: #fff;
  color: #0070a4;
  border: 1px solid #0070a4;
}
.aikan-btn--white:hover,
.aikan-btn--white:focus {
  background: #f6f6f6;
  color: #005a8a;
}

/* デザインボタンラッパー補助 */
.designbutton.type2.shapetype1 a {
  border-radius: 60px;
  font-weight: 600;
  min-width: 220px;
  height: 56px;
  line-height: 56px;
  font-size: 1rem;
  padding: 0 2.5rem;
  box-shadow: 0 4px 24px rgba(0,112,164,0.10);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}

/* ---------------------------------------------------
  3. モバイル補助
--------------------------------------------------- */
@media (max-width: 750px) {
  body {
    font-size: 15px;
  }
  .aikan-btn,
  .designbutton.type2.shapetype1 a {
    min-width: 140px;
    font-size: 0.95rem;
    height: 44px;
    line-height: 44px;
    padding: 0 1.2rem;
  }
  .aikan-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ---------------------------------------------------
  4. 見出し・余白・その他
--------------------------------------------------- */
.cbheadline {
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
}
.cbheadline .headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0070a4;
  margin-bottom: 1.2rem;
}
.cbheadline .subheadline {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}
section {
  margin-bottom: 48px;
}
@media (max-width: 750px) {
  .cbheadline .headline {
    font-size: 1.3rem;
  }
  section {
    margin-bottom: 32px;
  }
}

/* FAQリスト補助 */
.faqlist .question {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid #ddd;
  padding: 20px 30px;
  background: #fff;
  transition: background 0.2s;
}
.faqlist .question:hover,
.faqlist .question.active {
  background: #f7f7f7;
}
.faqlist .answer {
  border: 1px solid #ddd;
  border-top: none;
  padding: 24px 30px;
  background: #f7f7f7;
  color: #555;
}

/* ---------------------------------------------------
  5. アニメーション補助（公式と競合しない範囲）
--------------------------------------------------- */
.aikan-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.aikan-fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------
  6. アクセシビリティ補助
--------------------------------------------------- */
.aikan-btn:focus {
  outline: 3px solid #ff6f00;
  outline-offset: 2px;
}
</pre></body></html>