
/* 全体初期化 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Hiragino Sans", "Helvetica", "Arial", sans-serif;
  color: #333;
  /*  background: #f9f9f9;*/
  /* スマホ表示用に幅を制限（実機でmax640pxになるよう調整） */
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
}

/* ヘッダー（背景動画） */
.header {
  position: relative;
  width: 100%;
  /* ファーストビューとしてスマホ全画面を想定 */
  overflow: hidden;
}
.header-content {

}
.header-content img{
  width: 100%;
}
.center-content img.header-logo {
  max-width: 120px;
  width: 100%;
  height: auto;
}

.cv{
  width: 100%;
  text-align: center;
  margin:40px auto;
}

/* CTAボタン画像を画面下から45pxに配置 */
.cta-button {
  width: 80%;
}
.cta-button img {
  /* max-width: 400px; */ /* 画像の大きさ調整（必要に応じて変更） */
  height: auto;
  margin: 0 auto;
  width: 80%;
  text-align: center;

}

/* 汎用セクション・タイトル */
.section {
/*  padding: 20px 15px;*/
  background: #fff;
/*  margin-bottom: 10px;*/
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.section-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left;
}

/* メッセージセクション（ここを上書き） */
.section.message {
  /* カード風のデザインに変更 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background: #fffdeb;
  padding: 40px 0px;
  /*  margin-bottom: 20px;*/
  border-radius: 10px;
}
.section.message .section-title {
  text-align: left;
  font-size: 1.6rem;    /* 見出しをやや大きめに */
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  margin-left: 5%;
}
.section.message .section-title img{
  width: 40%;
  max-width: 200px;
}
.message-content {
  flex-directon: column;
   /* 画像を中央寄せ */
  width: 100%;
  text-align: right;
}
.message-content .message-image {
  width: 95%;          /* スマホでの表示に合わせて調整 */
  /* max-width: 430px; */    /* PCなど広い画面で大きくなりすぎないよう制限 */
  height: auto;
  border-radius: 8px;  /* 角を少し丸める */
  margin-bottom: 30px; /* 画像と文章の間に余白 */
  text-align: right;
}
.message-text{
  width: 90%;
  margin: 0 auto;
}
.message-content p {
  line-height: 2;    /* 行間を少しゆったり */
  margin-bottom: 1.2em;/* 段落間の余白 */
  color: #444;
  width: 100%;
  max-width: 600px;    /* PC表示時に横幅を制限して読みやすく */
  text-align: left;
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W4","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

/**/
.about{
  width: 100%;
}
.about img{
  width: 100%;
}

/* 特徴 */
.features {
  margin-top: -5px;
  width: 100%;
  padding: 0;
  /* background: #eef; */
}

.features img{
  width: 100%;
}
.feature-box {
  margin-bottom: 20px;
}
.feature-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}
.feature-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: bold;
}
.feature-text {
  line-height: 1.6;
}

/* サポート案内 */
.support {
  background: #fff;
}
.support p {
  line-height: 1.6;
}

/* CTAセクション */
.cta {
  /* text-align: center; */
  background: #ffffff;
  padding: 60px 40px;
}
.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.cta p {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
  margin: 50px auto 20px;
}
.cta img{
  width: 100%;
}
/* フッター */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/* レスポンシブ（必要に応じてメディアクエリ追加） */
@media screen and (min-width: 641px) {
  /* PC向けに余白調整などが必要なら追記 */
}

.container{
  overflow: hidden;
}
.slidein{
  /* 装飾に関わるスタイルは省略 */
/*  margin: 50px auto;*/
  transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
}
.slide_left{
  transform: translateX(calc(-50vw - 50%));
}
.slide_right{
  transform: translateX(calc(50vw + 50%));
}
.show{
  transform: translateX(0);
}