/* 基本のスタイル設定 */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.5;
  /* ...他のスタイル */
  /* ...他のスタイル */
}
h1, h2, h3, h4 {
  text-align: center;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
  color: #333;
}
p {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
  padding: 0 0 18px;
  color: #333;
}
li {
  font-size: 16px;
  line-height: 1.8em;
  margin: 0;
  padding: 0;
  color: #333;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
a:link {
  color: #fff;
}
a:visited {
  color: #fff;
}
a:hover, a:active {
  color: #fff;
  text-decoration: underline;
}
hr {
  border-top: 1px dashed #aaa;
  margin: 0 0 2em;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* PC画面では、.mobile-only を非表示にします */
.mobile-only {
  display: none;
}
.fas.fa-gift {
  font-size: 36px;
  color: #ea5749;
}
/* カウントダウン */
#countdown {
  background-color: #312202;
  color: #ffed48;
  padding: 10px 0;
  font-weight: bold;
  font-size: 160%;
  margin: auto;
  text-align: center;
}
/* スマホ用のCSS */
@media only screen and (max-width: 640px) {
  /* スマホ画面では、.desktop-only を非表示にし、.mobile-only を表示します */
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  #countdown {
    background-color: #331310;
    color: #ffed48;
    padding: 10px 0;
    font-weight: bold;
    font-size: 100%;
    margin: auto;
    text-align: center;
  }
  .fas.fa-gift {
    font-size: 24px;
    color: #ea5749;
  }
}
/*==============================
フォント装飾
==============================*/
.cb {
  font-weight: bold;
  font-size: 100%;
  line-height: 1.6em;
}
.cbul {
  font-weight: bold;
  font-size: 105%;
  line-height: 1.6em;
  background: linear-gradient(transparent 80%, #ffea00 80%);
}
.cbl {
  font-weight: bold;
  font-size: 105%;
  line-height: 1.6em;
}
.cr {
  color: #f02f5c;
  font-weight: bold;
  font-size: 105%;
}
.crlul {
  color: #f02f5c;
  font-weight: bold;
  font-size: 105%;
  background: linear-gradient(transparent 80%, #ffea00 80%);
}
.crl {
  color: #f02f5c;
  font-weight: bold;
  font-size: 105%;
}
.label {
    background-color: #ff4687; /* 背景色 */
    color: #fff;              /* 白文字 */
    font-weight: bold;        /* 太字 */
    padding: 0.25rem 0.5rem;  /* 内側余白 */
    border-radius: 4px;       /* 角丸（任意） */
  }

@media only screen and (max-width: 640px) {
	.label {
		width: 60%;
		margin: 0.5rem 20%;
    background-color: #ff4687; /* 背景色 */
    color: #fff;              /* 白文字 */
    font-weight: bold;         /* 太字 */
    padding: 0.25rem 0.5rem;   /* 内側余白 */
    border-radius: 4px;        /* 角丸（任意） */
	display: block;
  }
}


.btn {
  /* ボタンの基本的なスタイル */
  width: 980px;
  margin: 3em auto;
  padding: 0px;
  border: none;
  color: white;
  text-align: center;
}
.btn:hover {
  /* マウスオーバー時の彩度増加 */
  filter: saturate(1.8); /* 彩度を50%上げる */
}
/* メインビジュアル */
.main-visual {
  width: 100%;
  background-color: #fff;
  color: #fff;
  padding: 0px;
  background-image: url(../images/main_bg.png);
  background-repeat: no-repeat;
  background-position: center;
}
/* 640px以下のレスポンシブ対応 */
@media only screen and (max-width: 640px) {
  .btn {
    /* ボタンの基本的なスタイル */
    width: 100%;
    margin: auto;
    padding: 10px 0px;
    border: none;
    color: white;
    text-align: center;
  }
}
/* QA */
:root {
  --qa-accent: #ff4687; /* アクセントカラー */
  --qa-bg: #f9f9f9;
  --qa-border: #ddd;
}

.qa-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.qa-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--qa-accent);
  padding-bottom: 0.3rem;
}

.qa-item {
  border-bottom: 1px solid var(--qa-border);
}

.qa-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.qa-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  color: var(--qa-accent);
  transition: transform 0.3s ease;
}

.qa-question.active::after {
  transform: rotate(45deg);
}

.qa-answer {
  display: none;
  padding: 0 0 1rem 0;
  color: #333;
  line-height: 1.6;
}

.qa-answer p {
  margin: 0;
}

/* 開閉アニメーション */
.qa-answer.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* コンテナ */
.two-col {
  max-width: 1100px;
  margin: 1rem auto 0;
  padding: 0.8rem;
}

/* 見出しは常に全幅 */
.two-col__title {
  font-size: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc; /* 下線は任意 */
  padding-bottom: 0.25rem;
}

/* モバイル（デフォルト）は縦並び */
.two-col__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.two-col__text {
  line-height: 1.75;
}

.two-col__media img {
  display: block;
  max-width: 100%;
	margin: -1rem 0 0;
  height: auto;
  border-radius: 8px;
}

/* PC幅から横並びに切り替え */
@media only screen and (min-width: 640px) {
  .two-col__content {
    grid-template-columns: 1fr 1fr; /* テキスト左 / 画像右 */
    gap: 2rem;
    align-items: start; /* 上揃え */
  }

  .two-col__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ccc; /* 下線は任意 */
    padding-bottom: 0.25rem;
  }
}

/* コンテンツ */
.product-introduction, .tokuten, .bullets, .testimonials, .postscript, .cta {
  padding: 1rem;
  background-color: #fff;
  margin: 0;
  border-radius: 0px;
}
.full-width {
  width: 100%;
  display: flex;
  justify-content: center;
}
.container {
  max-width: 980px;
  width: 100%; /* 新しいプロパティを追加 */
  margin: 0 auto;
  padding: 1rem 0; /* 必要に応じてページの左右の余白を調整 */
  background-color: transparent; /* 背景色を透明に設定 */
}
.container p {
  font-size: 1em;
}
.section-image {
  text-align: center;
  margin-bottom: 20px;
}
.section-image img {
  max-width: 100%;
}
/*h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 2em;
  color: #333;
  text-align: center;
  margin: 0 0;
  padding: 20px 0;
  letter-spacing: 0.05em;
  position: relative; /* 追加 */
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, purple, gold); /* グラデーション */
}*/
/*h3 {
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  font-size: 1.3em;
  position: relative;
  padding: 0 5vw;
  margin: 1.5em auto;
  ;
  display: inline-block;
}
h3:before, h3:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}
h3:before {
  left: 0;
}
h3:after {
  right: 0;
}*/
.program h4 {
    font-size: 1em;
    position: relative;
    background: #dfefff;
    box-shadow: 0px 0px 0px 3px #dfefff;
    border: dashed 2px white;
    padding: 0.2em 0.5em;
    margin: 1em 0.5em 2em;
    color: #454545;
  }
 .program h4:after {
    position: absolute;
    content: '';
    left: -7px;
    top: -7px;
    border-width: 0 0 15px 15px;
    border-style: solid;
    border-color: #fff #fff #a8d4ff;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  }
	.prof-tx{
		text-align: center;
		font-size: 1.2em !important;"
		font-weight: bold;
	    font-family: 'Noto Serif JP', serif;
	}
/* 640px以下のレスポンシブ対応 */
@media only screen and (max-width: 640px) {
  /*h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 1em;
    color: #333;
    text-align: center;
    margin: 0 0 10px;
    padding: 20px 10px;
    letter-spacing: 0.05em;
    position: relative; /* 追加 */
  }
  h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, purple, gold); /* グラデーション */
  }*/
  .container {
    padding: 0 5vw;
  }
  .container p {
    font-size: 0.8em;
  }
  .info-content {
    padding: 0 10px;
    margin: 0 0 10px;
  }
  
  }
.program h4 {
    font-size: 0.8em;
    position: relative;
    background: #dfefff;
    box-shadow: 0px 0px 0px 3px #dfefff;
    border: dashed 2px white;
    padding: 0.2em 0.5em;
    margin: 1em 0.5em 2em;
    color: #454545;
  }
 .program h4:after {
    position: absolute;
    content: '';
    left: -7px;
    top: -7px;
    border-width: 0 0 15px 15px;
    border-style: solid;
    border-color: #fff #fff #a8d4ff;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  }
.prof-tx{
		text-align: center;
		font-size: 1em !important;"
		font-weight: bold;
	    font-family: 'Noto Serif JP', serif;
	}

#footer {
  clear: both;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 25px 0 25px 0;
  margin: 0;
  background: #aa78d4;
}
#footer .navi {
  color: #fff;
  font-size: 14px;
  margin: 0 0 15px 0;
}
#footer p.copyright {
  color: #fff;
  font-size: 12px;
  font-family: Verdana, Geneva, sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 640px) {
  #footer {
    clear: both;
    width: 100%;
    text-align: center;
    padding: 15px 10px 10px 10px;
    margin: 0;
    background: #aa78d4;
  }
  #footer .navi {
    font-size: 12px;
    margin: 0 0 8px 0;
  }
  #footer p.copyright {
    color: #fff;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    letter-spacing: 0em;
    text-align: center;
    margin: 0 auto 0 auto;
    padding-top: 15px;
  }
}
/*==============================
ベネフィット
==============================*/
.benefit ul {
  padding: 0;
  position: relative;
  margin: 0 0 60px;
}
.benefit ul li {
  font-size: 140%;
  line-height: 1.5;
  padding: 0px 0 0 40px;
  margin: 0 0 10px;
  list-style-type: none !important;
  background-image: url(../images/check_pc.png);
  background-repeat: no-repeat;
  background-position: left top;
}
@media screen and (max-width:640px) {
  .benefit ul {
    padding: 0;
    position: relative;
    margin:1.5em 0em 1.5em;
  }
  .benefit ul li {
    font-size: 0.85em;
    font-weight: bold;
    line-height: 1.5;
    padding: 2px 0 2% 32px;
    margin: 0 0;
    list-style-type: none !important;
    background-image: url(../images/check_mobile.png);
    background-repeat: no-repeat;
    background-position: left top;
  }
}
/*==============================
特典 
==============================*/
.tokuten-box {
  padding: 0 0 10px;
  margin: 0 20px 40px;
  border-bottom: 1px dashed #EA5749;
}
.tokuten-box h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 180%;
  padding: 10px 0 30px;
}
.tokuten-content {
  display: flex;
  flex-direction: row;
  padding: 0 0 20px;
}
.tokuten-text {
  width: 56%;
  padding: 0 4% 0 0;
}
.tokuten-image {
  max-width: 40%;
}
.tokuten-content .tokuten-text {
  order: 1;
}
.tokuten-content .tokuten-image {
  order: 2;
}
@media only screen and (max-width: 640px) {
  .tokuten-box h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 130%;
    padding: 10px 0 30px;
  }
  .tokuten-text {
    width: 100%;
  }
  .tokuten-image {
    max-width: 100%;
  }
  .tokuten-content {
    flex-direction: column;
  }
  .tokuten-image {
    width: 100%; /* 必要に応じて幅を指定 */
    margin-bottom: 10px; /* 画像とテキストの間に余白を追加 */
  }
}
/* ...他のスタイル... */
/***** bullets *****/
.bullets .full-width {
  padding: 0px;
  background-image: url(../images/sec_bg_02.png);
  background-repeat: no-repeat;
  background-position: center top;
}
.bullets {
  /*    background-color: #fff;
    padding: 40px;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}
.bullets ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.bullets ul li {
  background-color: #f9f9f9;
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.bullets ul li:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.bullets ul li strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #4b0082;
}
.testimonial {
  display: flex;
  margin-bottom: 20px;
}
.testimonial img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-right: 20px;
}
.testimonial-text span {
  font-size: 88%;
}
.postscript .full-width {
  padding: 0px;
  background-color: #fff2ff;
}
.payment-method {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3列に分割 */
  gap: 20px; /* グリッドアイテム間の間隔 */
  margin-top: 20px; /* 上部の余白を追加 */
}
.method-item {
  background-color: #f9f9f9; /* 背景色を追加 */
  padding: 20px; /* 内側の余白を追加 */
  border-radius: 10px; /* 角を丸くする */
}
.method-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #333;
}
.process {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列に分割 */
  gap: 20px; /* グリッドアイテム間の間隔 */
  margin-top: 20px; /* 上部の余白を追加 */
}
.process-item {
  background-color: #f9f9f9; /* 背景色を追加 */
  padding: 20px; /* 内側の余白を追加 */
  border-radius: 10px; /* 角を丸くする */
}
.process-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #333;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-item {
  flex: 1;
  background-color: ; /* 背景色を追加 */
  padding: 20px; /* 内側の余白を追加 */
  border-radius: 10px; /* 角を丸くする */
}
/* 640px以下のレスポンシブ対応 */
@media only screen and (max-width: 640px) {
  /* 他のレスポンシブスタイル */
  .flex-container {
    flex-direction: column;
  }
}
.company-overview {
  background-color: #f9f9f9;
  padding: 40px 0;
}
.overview-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.company-info {
  flex: 1;
  min-width: calc(50% - 10px);
}
.company-map {
  flex: 1;
  min-width: calc(50% - 10px);
}
/* レスポンシブ対応 */
@media only screen and (max-width: 640px) {
  .overview-content {
    flex-direction: column;
  }
  .company-map iframe {
    width: 100%;
  }
}
.cta-button {
  display: block;
  margin: 20px auto;
  padding: 15px 30px; /* パディングを増やしてボタンを大きくします */
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease; /* 背景色の遷移も追加 */
  font-size: 1.5em; /* フォントサイズを増やしてボタンテキストを大きくします */
  text-transform: uppercase; /* テキストを大文字に変換 */
}
.cta-button:hover {
  transform: translateY(-5px);
  background-color: #0056b3; /* ホバー時の背景色を変更して目立たせます */
}
/* 640px以下のレスポンシブ対応 */
@media only screen and (max-width: 640px) {
  .testimonial {
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
  }
  .testimonial img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
/*==============================
テーブル
==============================*/
.t1 {
  background-color: #fff;
  margin-bottom: 10px;
  width: 100%;
}
.t1 td {
  line-height: 1.8em;
  padding: 0 2%;
  /*vertical-align:bottom;*/
  /*background: url(../images/dot_x.png) repeat-x bottom;*/
}
.t2 {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 40px;
}
.t2 tr {
  border-bottom: solid 2px white;
}
.t2 tr:last-child {
  border-bottom: none;
}
.t2 th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #d089c8;
  color: white;
  padding: 10px 0;
}
.t2 th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #d089c8;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.t2 td {
  text-align: left;
  width: 70%;
  background-color: #f7f7f7;
  padding: 10px 20px;
}
/*==============================
フォーム
==============================*/
.mf-01 {
  height: 40px;
  width: 60%;
  /* box-shadow */
  box-shadow: 0px 0px 4px 0px #e8e8e8 inset;
  /* border-radius */
  border-radius: 1px;
  /* border */
  border: 1px solid #cfcbcb;
  /* react native */
  shadowColor:"#e8e8e8", shadowOffset: {
    width: 0, height:0
  }
  , shadowOpacity:1, shadowRadius:4, borderWidth:1, borderColor:"#cfcbcb", borderRadius:1
}
.mf-02 {
  height: 300px;
  width: 100%;
  /* box-shadow */
  box-shadow: 0px 0px 4px 0px #e8e8e8 inset;
  /* border-radius */
  border-radius: 1px;
  /* border */
  border: 1px solid #cfcbcb;
  /* react native */
  shadowColor:"#e8e8e8", shadowOffset: {
    width: 0, height:0
  }
  , shadowOpacity:1, shadowRadius:4, borderWidth:1, borderColor:"#cfcbcb", borderRadius:1
}
.mf-03 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", A-OTF Shin Go Pro, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  height: 80px;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  border: 1px solid #333333;
  padding: 0;
  margin: 0 auto 12px;
  display: block;
  color: #333333;
  background-repeat: no-repeat;
}
.mf-04 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", A-OTF Shin Go Pro, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  height: 80px;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  border: 1px solid #333333;
  padding: 0;
  margin: 0 auto 12px;
  display: block;
  color: #333333;
  background-image: url(../../images/mail_pc.png);
  background-position: left center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
  .mf-03 {
    background-repeat: no-repeat;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", A-OTF Shin Go Pro, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    border: 1px solid #333333;
    padding: 0;
    margin: 0 auto 12px;
    display: block;
    color: #ccc;
  }
  .mf-04 {
    background-repeat: no-repeat;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", A-OTF Shin Go Pro, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    border: 1px solid #333333;
    padding: 0;
    margin: 0 auto 12px;
    display: block;
    color: #ccc;
    background-image: url(../../images/mail_sp.png);
    background-position: left center;
    background-repeat: no-repeat;
  }
}
.entry_submit {
  width: 800px;
  height: 120px;
  display: block;
  font-size: 0px;
  line-height: 0px;
  text-indent: -9999px;
  cursor: pointer;
  margin: auto;
  padding: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  background: url(../../images/btn.png) center top no-repeat;
  overflow: hidden;
}
.entry_submit:hover {
  width: 800px;
  height: 120px;
  display: block;
  font-size: 0px;
  line-height: 0px;
  text-indent: -9999px;
  cursor: pointer;
  margin: auto;
  padding: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  background: url(../../images/btn.png) center bottom no-repeat;
  overflow: hidden;
}
.entry_submit_sp {
  width: 398px;
  height: 59px;
  display: block;
  font-size: 0px;
  line-height: 0px;
  text-indent: -9999px;
  cursor: pointer;
  margin: auto;
  padding: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  background: url(../../images/btn_sp.png) center top no-repeat;
  overflow: hidden;
}
.entry_submit_sp:hover {
  width: 398px;
  height: 59px;
  display: block;
  font-size: 0px;
  line-height: 0px;
  text-indent: -9999px;
  cursor: pointer;
  margin: auto;
  padding: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  background: url(../../images/btn_sp.png) center bottom no-repeat;
  overflow: hidden;
}
.poyopoyo {
  animation: shake 0.5s infinite; /* アニメーションを無限に繰り返す */
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
}


.plans {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.plans .plan {
  border: 1px solid #ddd;   /* 枠線 */
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.plans .plan h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #333;
}

.plans .plan p {
  font-weight: bold;
  color: #d35400;
}

.plans .plan ul {
  margin: 10px 0 0 20px;
  padding: 0;
  list-style: disc;
}

.plans .plan li {
  margin-bottom: 6px;
}

 /* ボタン */
.txtbtn {
  text-align: center; /* ボタンをセンター配置 */
  margin: 40px 0;     /* 上下に余白を確保 */
}



.txtbtn .plan-btn {
  display: inline-block;
  padding: 14px 36px;     /* 上下左右に余白をしっかり */
  background-color: #333; /* シンプルに黒系 */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.txtbtn .plan-btn:hover {
  background-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}


/* -----------------------------------------
   スコープ用（<body class="makibu"> を付与）
----------------------------------------- */
.makibu {
  --accent: #6E51A3;   /* アクセント（お好みで） */
  --ink:    #333333;   /* 文字色 */
  --muted:  #6b6b6b;   /* 補助テキスト */
  --card:   #f7f7f8;   /* カードの淡色背景 */
  --line:   #e6e6ea;   /* 罫線 */
}

/* ========== 見出し h2（上品で控えめ） ========== */
.makibu h2 {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif; /* ゴシック系に変更 */
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 28px);
  color: var(--ink);
  text-align: center;
  letter-spacing: .04em;
  margin: 28px auto 18px;
  padding-bottom: 8px; /* 下線との余白を追加 */
  position: relative;
}

.makibu h2::after {
  content: "";
  display: block;
  height: 2px;
  margin: 12px auto 0;   /* フォントと下線の距離を広げる */
  max-width: 80%;
  background: var(--accent);
  border-radius: 2px;
}

/* 既存のグラデーション下線を打ち消し（あれば） */
.makibu h2{ background: none; }
.makibu h2::before{ content: none; }

/* ========== bullets（共通のカード風・フラット） ========== */
.makibu .bullets ul,
.makibu .benefit ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.makibu .bullets ul li,
.makibu .benefit ul li{
  position: relative;
  background: var(--card);
  color: var(--ink);
  margin: 10px 0;
  padding: 14px 16px 14px 44px;     /* 左にアイコン分の余白 */
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s ease, background-color .2s ease;
}

/* ホバーでわずかにコントラストを上げる（派手にしない） */
.makibu .bullets ul li:hover,
.makibu .benefit ul li:hover{
  background: #fff;
  border-color: #dcdce3;
}

/* 行頭アイコン（シンプルなアクセントドット） */
.makibu .bullets ul li::before,
.makibu .benefit ul li::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(110,81,163,0.12);  /* うっすらグロー */
}

/* 各リスト内の強調テキスト（必要なら） */
.makibu .bullets ul li strong{
  display: block;
  font-size: 1.05em;
  margin-bottom: 4px;
  color: var(--ink);
}

/* ========== 既存の画像ベースのチェックを無効化 ========== */
.makibu .benefit ul li{
  background-image: none !important;
  background-position: initial !important;
  background-repeat: initial !important;
  padding-left: 44px; /* 画像の代わりに擬似要素アイコンを使う */
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.7;
}

/* ========== モバイル微調整 ========== */
@media (max-width: 640px){
  .makibu h2{
    margin: 22px auto 12px;
    font-size: clamp(18px, 5vw, 22px);
  }
  .makibu h2::after{
  }
  .makibu .bullets ul li,
  .makibu .benefit ul li{
    padding: 12px 14px 12px 40px;
    border-radius: 8px;
    margin: 8px 0;
  }
  .makibu .bullets ul li::before,
  .makibu .benefit ul li::before{
    left: 14px;
    width: 9px; height: 9px; margin-top: -4.5px;
  }
}

.makibu h3 {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.6vw, 22px);
  color: #444;
  text-align: center;       /* テキスト中央 */
  margin: 32px auto 20px;   /* 左右autoでブロックを中央に */
  position: relative;
  display: block;           /* 幅100%で確実に中央 */
  padding: 0 12px;
}

/* 下に短めのアクセントライン */
.makibu h3::after {
  content: "";
  display: block;
  height: 2px;
  width: 40%;                 /* 見出し幅の40% */
  background: var(--accent);
  margin: 10px auto 0;        /* 中央に揃う */
  border-radius: 2px;
}
