/* フォント定義 */
   @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script&family=Montserrat:wght@500;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');

   html {
     font-size: 62.5%; /* 10px ベース */
   }
   
   body {
     color: #333;
     background-color: #fff;
     font-size: 1.6rem;
     line-height: 1.8;
     font-weight: 400;
     margin: 0;
   }

   html, body {
     overflow-x: hidden;
   }
   
   img {
     max-width: 100%;
     height: auto;
     display: block;
   }
   
   a {
     text-decoration: none;
     color: inherit;
     transition: 0.3s;
   }
   
   a:hover {
     opacity: 0.8;
   }
   
   ul, ol {
     list-style: none;
     padding: 0;
     margin: 0;
   }
   
   /* =============================================
      見出しスタイル（明朝体使用）
      ============================================= */
   h1, h2, h3, h4, h5, h6 {
     font-family: 'Noto Serif JP', 'Sawarabi Mincho', '游明朝体', serif;
     color: #004080;
     font-weight: 700;
     line-height: 1.5;
     margin-bottom: 0.5em;
   }
   
   h1 { font-size: 3.6rem; }
   h2 { font-size: 3.2rem; }
   h3 { font-size: 2.8rem; }
   h4 { font-size: 2.4rem; }
   h5 { font-size: 2.0rem; }
   h6 { font-size: 1.6rem; }
   
   /* サブテキスト（本文） */
   p, a, ul, li, th, td, small, address {
     font-family: 'Noto Sans JP', 'Yu Gothic', '游ゴシック', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
     font-size: 1.4rem;
     line-height: 1.7;
     color: #333;
   }
   
   /* =============================================
      タイトル・装飾用フォント
      ============================================= */
   .section-label {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 1.8rem;
     letter-spacing: 2px;
     color: #84C1FF;
     text-transform: uppercase;
     margin-bottom: 0.8rem;
   }
   
   .page-title {
     font-size: 2.8rem;
     font-weight: 700;
     color: #004080;
     margin-bottom: 0.25em;
   }
   
   .lead-copy {
     font-family: 'Dancing Script', cursive;
     font-size: 2rem;
     color: #666;
     margin-bottom: 2em;
   }
   
  
   /* =============================================
      コンテナ / 共通ユーティリティ
      ============================================= */
   .container {
     max-width: 1100px;
     width: 100%;
     margin: 0 auto;
     padding: 0 5%;
   }
   
   .text-center {
     text-align: center;
   }
   
/* =============================================
      アニメーション共通定義
============================================= */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
   
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
   
   /* レスポンシブ設計はメディアクエリで別途管理 */

/*main(共通)
-------------------------------------------------------------*/
.section-box{
  position: relative;
  top: 0;
  width: 100%;
  height: auto;
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.section-inner{
  position: relative;
  top: o;
  width: calc(100% - 5vw);
  max-width: 1000px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.section-titleArea{
  position: relative;
  top: 0;
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
}

.section-title{
  position: relative;
  top: 0;
  text-align: center;
  width: 100%;
  height: auto;
}

.section-title-en{
  position: relative;
  top: 0;
  text-align: center;
  width: 100%;
  height: auto;
}

.section-contentsBox{
  position: relative;
  top: 0;
  width: 100%;
  height: auto;
}

.cta-block{
  position: relative;
  top: 0;
  width: auto;
  height: auto;
  text-align: center;
  margin: 2rem auto;
}
 
.cta-button{
  width: 180px;
  background-color: #E67E22;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover,
.cta-button:focus{
  background-color: #F39C12; /* 濃いオレンジ */
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 102, 204, 0.2);
}


@media (max-width: 768px) {
  .section-title{
    font-size: 5vw;
  }
  .section-title-en{
    font-size: 1.2rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/*section専用のアニメーション*/
.section-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-fadeIn.show {
  opacity: 1;
  transform: translateY(0);
}


/*--- メインコンテンツ ---*/
.sample-contentsBox-text{
    font-size: small;
    text-align: center;
}