@charset "utf-8";
/* ------------------------------
 WebSurvey Custom CSS
(C) Programming Fast Inc. ALL RIGHT RESERVED.   
------------------------------ */

/* ベースカスタム
===================================== */
/*フォントサイズ*/
html {
  font-size: 100%;  
}
/*基本*/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
/*
body {
  font-family: Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #222222;
  background: #FFFFFF;
}
*/
body {
  margin: 0;
  padding: 0;

  /* 画像が読み込めない環境向けのフォールバックカラー */
  background-color: #6ec1ff;

  /*
    1) グラデーション方向: 左上 -> 右下
       → 例: to bottom right
       または 45deg, 135deg など角度指定も可能。
    2) 複数のカラー・ストップで段階的に変化。
  */
  background: linear-gradient(
    to bottom right,  /* 左上から右下へ */
    #ffffff 0%,       /* 上部(左上)の明るい青 */
    #ffffff 30%,      /* 少し濃い青 */
    #ffffff 50%,      /* 中央付近でやや淡い帯 */
    #ffffff 70%,      /* 濃いめの青へ */
    #ffffff 100%      /* 下部(右下)で最も濃い青 */
  );
}

h1,h2,h3,h4 {
  font-size: 1em;
}
h2 {
  margin-bottom: 1em;
}
h3 {
  margin-top: 0;
  margin-bottom: .25em;}
p {
  margin-top: 0;
  margin-bottom: 0.75em;
}
small,
.small {
  font-size: 0.9em;
}
ul {
  margin: 0;
  padding-left: 1.2em;
}

/* アンケートカスタム
===================================== */
/* コンテナ */
.page-container {
  width: 800px; /* アンケート横幅 */
  margin: 0 auto;
  border: 0px solid #CCCCCC; /* アンケート線色 */
  border-top: 0;
  border-bottom: 0;
  box-shadow: -2px 0 10px 0 rgba(0, 0, 0, .1),2px  0 10px 0 rgba(0, 0, 0, .1); /* アンケートシャドウ */
  box-sizing: border-box;
  border-radius: 0; /* アンケート角丸 */
	position: relative;
	height: auto !important;
	height: 100%;
	min-height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* ビューポート全体の高さを確保 */
}
/* ヘッダー */
.page-header {
  background: url(../img/header.png) 0 0 no-repeat;
  box-sizing: border-box;
	width: 100%;
	height: 219px;/*
	height: 0;*/
	margin-bottom: 0px;
	padding: 0;
}
.page-header h1 {
  display: none;
}
/* コンテンツ */
.page-content {
  flex: 1;
  padding-top: 0;/*
  text-align: center;*/
  padding: 0 2em 2em 2em;
}

.page-content-kiyaku {
  flex: 1;
  padding-top: 0;/*
  text-align: center;*/
  padding: 0 2em 2em;
}
.page-content2 {
  padding-top: 0;
  text-align: left;
  padding: 1em 2em;
}

.page-content-cntr {
  text-align: center;
  min-height: 80px;
}
.page-content-inner,
.inbox {
  border: solid 1px #FFFFFF;
  background-color: #FFF;
}
.page-content-inner {
  padding: 25px;
  margin: 0.25em auto 1em; 
}
.campaign {
  width: 630px;
  margin: 0 auto;
  border-radius: 30px;
}
.inbox {
  padding: 10px 20px;
}
.page-content-inner > .inbox {
  background-color: #F8F8F8;
  text-align: left;
}

.page-content-campaign {
  text-align: center;
}

.page-content-campaign2 {
  text-align: center;
  border: solid 0px #000;
  padding: 10px;
}

.link{
  margin:20px auto;
  text-align:center;
}

/* 部分 */
.page-section {}
/* フッター */
/*.page-footer {
  width: 100%;
	height: 15px;
	position: absolute;
	bottom: 0;
  color: #fff;
}*/

.page-footer {
  background-color: #0b1e3b;
  color: #ffffff;
  text-align: left;
  padding: 20px;
  font-size: 0.9em;
  line-height: 1.6;
}

.page-footer a {
  color: #ffffff;
  text-decoration: underline;
}

/* 見出し期間表示 */
.query-heading2 {
  background: #0C3072;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #092253), color-stop(1, #092253));
  background: -webkit-linear-gradient(top, #0C3072 5%, #092253 100%);/*
  background: linear-gradient(to bottom,  #0094F1 0%,#0094F1 50%);*/
  border-top: 1px solid #D8EBF0;
  border-bottom: 1px solid #777777;
  color: #FFFFFF;
  padding: 0.5em 0em;
  margin: 0 auto 0.2em;
  text-align: center;
}
.query-heading2 span {
  letter-spacing: 2px;
  line-height: 1;
  padding-left: .0em;
  vertical-align: middle;
}


/* 質問見出し */
.query-heading {
  background: #0C3072;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #EFF3F5), color-stop(1, #EFF3F5));
  background: -webkit-linear-gradient(top, #EFF3F5 5%, #EFF3F5 100%);/*
  background: linear-gradient(to bottom,  #0094F1 0%,#0094F1 50%);*/
  border-top: 1px solid #D8EBF0;
  border-bottom: 1px solid #EFF3F5;
  color: #000000;
  padding: 0.5em 1.5em;
  margin: 0 auto 1em;
}
.query-heading span {
  letter-spacing: 2px;
  line-height: 1;
  padding-left: .5em;
  vertical-align: middle;
}
.query-heading img {
  vertical-align: middle;
}
/* 質問背景 */
.query-box {
  background: none;
  padding: .4em;
}

.query-box2 {
  background: none;
  padding: .4em;
  /*text-align: center;*/
}

/* 質問番号 */
.query-num {
  display: none !important;
}

.query-text {
  color: #000000;/*
  font-size: 3em;*/
  font-size: 1.6em;
  font-weight: bold;
}

.query-text2 {
  color: #666666;
  font-size: 1.2em;
  font-weight: bold;
  padding: 0 0 0 1em;
  text-align: center;
  width: 600px;           /* 親要素798pxより小さい幅を指定 */
  margin: 0 auto;         /* 左右自動マージンで中央配置 */
  box-sizing: border-box; /* パディングを含めた幅の計算に */
}

@media screen and (max-width: 800px) {
  .query-text2 {
    width: 100%;           /* 画面幅に対して柔軟な幅に */
    margin: 0 auto;       /* 左右自動マージンで中央配置 */
    padding: 0 1em;       /* 必要に応じてパディングも調整 */
    box-sizing: border-box; /* パディングを含めた幅の計算 */
    font-size: 0.97em;
  }
}

.query-text3 {
  color: #000;
  font-size: 1.5em;
  padding: 0 0 0 1em;
}
.query-must-asterisk {
  font-size: 1em;
}
/* 質問アキ */
dd {
  color: #000000;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 8px 0;
  padding: 0.5em 1em 0em;
}

@media screen and (max-width: 800px) {
  dd {
    color: #000000;
    font-size: 0.90em;
    font-weight: bold;
    margin: 0 0 8px 0;
    padding: 0.5em 0em 0em;
  }
}

input.etc {
  margin: 4px 0;
}
.caption-campaign {
  text-align: center;
  font-weight: 700;
}
.list-discimg {
  padding-left: 0;
  font-size: 1.0em;
  line-height: 1.6em;
}
.list-discimg li {
  list-style-type: none;
  margin-bottom: .25em;
  padding-left: 12px;
  background: url(../img/list_disc.png) no-repeat left top;
}
.indentbox {
  padding: 0 1em .5em;
}
.hr-dashed {
  height: 0;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px dashed #DDDDDD;
}
.line-top {
  border-top: 1px dashed #DDDDDD;
  padding-top: .5em;
}
/* テーブルカスタム（マトリックス）
===================================== */
.matrix {
 margin: 0 0 1em;
}
.matrix-table {
  border: 1px solid #A8A8A8; /* テーブル線 */
}
.matrix-table th,
.matrix-table td {
  background: #FFFFFF;
  border: 1px solid #A8A8A8; /* テーブル線 */
}
.matrix-table .matrix-header {
  background: #8593AC; /* ヘッダー背景色 */
}
.matrix-table .matrix-header-item {
  background: #8593AC; /* ヘッダー背景色 */
}
.matrix-table .matrix-row-odd {
  background: #DCEDF7; /* 奇数行背景色 */
}
.matrix-table .matrix-row-even {
  background: #FFFFFF;  /* 偶数行背景色 */
}

/* フォーム＆ボタンカスタム
===================================== */
input[type="text"], input.text,
input[type="password"], input.password {
  padding: .2em;
  font-size: 1.5em;
}
/* フォーム＆ラベル（login） */
.label-login,
.form-login {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  text-align: left;
}
.label-login {
  width: 5em;
}
/* フォーム位置 */
.page-content-survey {
  text-align: center;
  margin: 1em 0 0;  
}
/* ボタン位置 */
.page-content-button {
  margin: 0;  
}
.page-content-button-cntr {
  margin: 1em auto;
  text-align: center;  
}
/* スタートボタン */
.btn-start {
  background: #E4E4E4;
  border-color: #DBDBDB;
}
/* 次へボタン */
.btn-next {
  background-color: #8b2c1e;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  width: 85%;
  max-width: 450px;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  display: block;
  margin: 40px auto;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease;
  opacity: 0.6; /* 初期は無効っぽく見せる */
}

.btn-next:hover {
  background-color: #a33325; /* ホバー時の色 */
  transform: translateY(-2px);
}


/* aタグにも完全に同じボタンスタイルを適用 */
a.button.btn-next {
  display: block;
  width: 80%;
  max-width: 410px;
  margin: 40px auto;
  padding: 15px 20px;
  background-color: #8b2c1e;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease;
  opacity: 1; /* ← 常に有効状態で表示 */
  cursor: pointer;
}

/* hover時の動作を統一 */
a.button.btn-next:hover {
  background-color: #a33325;
  transform: translateY(-2px);
}

/* リンクボタン間の余白調整 */
.link-button {
  margin-top: 5px;
}

/* 応募ボタン */
.btn-submit {
  padding: .7em 1em !important;
  font-size: 180%;
  background: #FF6E42;
  border: 1px solid #FF6E42;  /*IE 6/7/8*/
  border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/ 
  font-weight: 700;
  border-radius: 35px;
  color:#FFFFFF;
}
.btn-submit:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F20000), color-stop(0.5, #F20000), to(#ff4141));
  background: -webkit-linear-gradient(top, #F20000 0%, #F20000 50%, #ff4141 100%);
  background: linear-gradient(to bottom,  #ff4141 0%, #ff4141 50%, #ff4141 100%);
}
/* 戻るボタン */
.btn-revise {
  padding: .7em 1em !important;
  font-size: 120%;
  background: #7f7f7f;
  border: 1px solid #DBDBDB;  /*IE 6/7/8*/
  border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/ 
  font-weight: 700;
  border-radius: 4px;
  color:#FFF;
}
.btn-revise:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#7f7f7f), color-stop(0.5, #CCCCCC), to(#999999));
  background: -webkit-linear-gradient(top, #7f7f7f 0%, #7f7f7f 50%, #999999 100%);
  background: linear-gradient(to bottom,  #999999 0%, #999999 50%, #999999 100%);
}
/* 完了ボタン */
.btn-finish {
  background: #E4E4E4;
  border-color: #DBDBDB;
}
/* 住所入力ボタン */
.btn-findaddress {
  background: #E4E4E4;
  border-color: #DBDBDB;
}
/* 住所選択ボタン */
.btn-selectaddress {
  background: #E4E4E4;
  border-color: #DBDBDB;
}
/* メール送信ボタン */
.btn-sendmail {
  background: #E4E4E4;
  border-color: #DBDBDB;
}
/* 予備調査完了ボタン */
.btn-thanks-h {
  background: #E4E4E4;
  border-color: #DBDBDB;
}
/* input画像ボタン */
input[type="image"]:hover {
	opacity:0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
/* リンクボタン */
.btn-link {
  padding: .7em 1em !important;
  font-size: 120%;
  background: #F20000;
  border: 1px solid #990000;  /*IE 6/7/8*/
  border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/ 
  font-weight: 700;
  border-radius: 4px;
  color:#FFFFFF;
}
.btn-submit:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F20000), color-stop(0.5, #F20000), to(#ff4141));
  background: -webkit-linear-gradient(top, #F20000 0%, #F20000 50%, #ff4141 100%);
  background: linear-gradient(to bottom,  #ff4141 0%, #ff4141 50%, #ff4141 100%);
}

.thanks {
  text-align: center;
  padding: 2em 0;
  font-size: 1.2em;
}

.upload {
  text-align: left;
  padding: 0em 2em 1em;
  font-size: 1.0em;
  color: #F20000;
  font-weight: bold;
}

.thx-box {
  background-color: #fff;
  padding: 15px !important;
  text-align: center;
  border-radius: 30px;
  width: 88%;
  margin: 0 auto;
}

.thx-box-line {
  border-top: 3px dashed #000;
}

.thx-box-msg1 {
  color: #000000;
  font-size: 0.8em;
}

img.thx-box-img {
  margin: 0 0 1em;
}

.caption-template-close{
  text-align: center;
  font-weight: bold;
}

/* JT2025年11月施策用 */

.query {
  text-align: center;
  margin: 15px 0 0px;
}

.query-index {
  text-align: center;
  margin: 55px 0 10px;
}

.choice-table {
  margin: 0 auto;
}

.choice-table tr {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* チェックボックス拡大 */
input[type="checkbox"] {
  width: 24px;
  height: 24px;
  transform: scale(1.0);
  cursor: pointer;
  vertical-align: middle;
}

/* チェックボックスとラベルの間に余白 */
.form-choice label {
  margin-left: 8px;
  cursor: pointer;
}

.btn-next:enabled {
  opacity: 1;
  cursor: pointer;
}

.btn-next:hover:enabled {
  background-color: #a33325;
  transform: translateY(-2px);
}

/* 青い帯＋白文字の見出し */
.section-heading {
  background: #0b1e3b;          /* 濃い青帯 */
  color: #ffffff;               /* 白文字 */
  text-align: center;           /* テキスト中央寄せ */
  padding: 12px 0;              /* 上下の余白 */
  margin: 0px 0 15px;          /* 前後の余白 */
  border-radius: 0px;           /* 角を少し丸く */
}

.section-heading h2 {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

/* 本文部分 */
.section-text {
  line-height: 1.8;
  font-size: 0.8em;
  margin: 0 auto 20px;
  max-width: 700px;
  text-align: center;
}

.section-text2 {
  line-height: 1.8;
  font-size: 1.2em;
  margin: 0 auto 0px;
  max-width: 700px;
  text-align: center;
  font-weight: bold;
}

.section-text3 {
  line-height: 1.8;
  font-size: 0.9em;
  margin: 0 auto 0px;
  max-width: 700px;
  text-align: center;
  font-weight: bold;
  margin-bottom:1em;
}

.content-image {
  display: block;        /* ブロック要素化して中央揃えをしやすく */
  max-width: 100%;       /* 画面幅を超えないようにする（レスポンシブ対応） */
  height: auto;          /* 縦横比を維持 */
  margin: 20px auto;     /* 上下に余白を追加＆中央寄せ */
  border-radius: 8px;    /* 角を少し丸く（任意） */
}
.content-image-step {
  display: block;        /* ブロック要素化して中央揃えをしやすく */
  max-width: 100%;       /* 画面幅を超えないようにする（レスポンシブ対応） */
  height: auto;          /* 縦横比を維持 */
  margin: 15px auto;     /* 上下に余白を追加＆中央寄せ */
  border-radius: 8px;    /* 角を少し丸く（任意） */
}

/* 応募規約エリア全体 */
.terms-container {
  width: 90%;
  max-width: 750px;
  margin: 40px 40px 10px;
  text-align: left;
  font-size: 0.9em;
  line-height: 1.7;
}

/* タイトル部分 */
.terms-title {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5em;
}

/* 注意書き */
.terms-note {
  text-align: center;
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}

/* スクロールボックス */
.terms-box {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 20px;
  height: 250px;
  overflow-y: scroll;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 0.95em;
}

/* 段落間の余白調整 */
.terms-box p {
  margin-top: 0;
  margin-bottom: 0.5em;
}

/* スクロールバーのスタイル（WebKit系ブラウザ） */
.terms-box::-webkit-scrollbar {
  width: 8px;
}
.terms-box::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.terms-box::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}
.terms-box::-webkit-scrollbar-thumb:hover {
  background: #666;
}

/* 外枠（薄いグレー背景） */
.terms-outer {
  background-color: #eeeeee;   /* 外枠の背景色 */
  padding: 20px;               /* 内側の余白（白ボックスとの間隔） */
  border-radius: 6px;          /* 角を少し丸く */
}

.terms-box ul {
  list-style: none;
  margin-left: 0;
  margin-top: 0em;
  margin-bottom: 0.8em;
  padding-left: 0em;
}

.terms-box li {
  position: relative;
  padding-left: 1.2em;
  text-indent: 0;
  line-height: 1.7;
  margin-bottom: 0em;
}

.terms-box li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}


.und_snd{
  font-size: 0.9em;
  text-align: center;
  max-width: 500px;
  margin: 5px auto;     /* 上下に余白を追加＆中央寄せ */
}

.caption-section-error{
 text-align: center;
 margin-top: 10px;
 font-weight: bold;
}

.form-text .text {
  width: 700px;       /* 任意の幅に変更 */
  max-width: 90%;     /* スマホなどで画面幅を超えないように制御 */
  padding: 10px;       /* テキスト内の余白を確保 */
  font-size: 1em;      /* 読みやすい文字サイズ */
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* 幅の計算をpadding込みに */
}

.circle-number-list {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
  margin: 0;
}

.circle-number-list li {
  counter-increment: item;
  margin: 8px 0;
  position: relative;
  padding-left: 1.8em;  /* ← 少し詰めて丸と文字の距離を縮める */
  line-height: 1.6;
}

.circle-number-list li::before {
  content: counter(item);
  font-family: "Arial", sans-serif;
  font-weight: bold;
  display: inline-block;
  width: 1.3em;         /* ◯の直径を小さく */
  height: 1.3em;
  line-height: 1.3em;   /* 数字の縦位置を中央に */
  text-align: center;
  border-radius: 50%;
  background: #fff;     /* 背景：白 */
  color: #000;          /* 数字：黒 */
  border: 1px solid #000; /* 枠線：黒 */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9em;     /* 数字も少し小さく */
}

.bracket-list {
  list-style: none;        /* 通常の番号を消す */
  counter-reset: item;     /* カウンター初期化 */
  padding-left: 0;
  margin: 0;
}

.bracket-list li {
  counter-increment: item; /* 各liでカウントアップ */
  margin: 6px 0;
  position: relative;
  padding-left: 2em;       /* 番号ぶん余白を取る */
  line-height: 1.6;
}

.bracket-list li::before {
  content: "(" counter(item) ")";  /* (1)(2)(3)… の形に */
  position: absolute;
  left: 0;
  top: 0;
  /*font-weight: bold;*/
  color: #000;
}

.asterisk-list {
  list-style: none;       /* デフォルトの・を消す */
  padding-left: 0;
  margin: 0;
}

.asterisk-list li {
  position: relative;
  padding-left: 1.2em;    /* 「※」ぶん左に余白を確保 */
  line-height: 1.6;
}

.asterisk-list li::before {
  content: "※";           /* 「※」を追加 */
  position: absolute;
  left: 0;
  top: 0;
  color: #000;            /* 文字色（必要に応じて変更） */
  font-weight: bold;
}

.image-link-wrapper {
  margin: 20px auto;   /* 他の画像と統一 */
  position: relative;
  display: block;
  text-align: center;  /* 念のため中央寄せ */
  max-width: 686px;    /* 他の画像と同じ幅制限を適用 */
  width: 85%;          /* 他と同じ幅比率 */
}

/* 画像を100%で表示 */
.image-link-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* リンク範囲（画像上に透明なボタンを重ねる） */
.image-link-area {
  position: absolute;
  left: 6%;       /* 横方向の位置（画像内ボタンの左端） */
  top: 82%;       /* 縦方向の位置（ボタンの高さ位置） */
  width: 88%;     /* ボタンの横幅（画像全体に対する割合） */
  height: 8%;     /* ボタンの縦幅（画像全体に対する割合） */
  display: block;
  z-index: 5;
  cursor: pointer;
  text-decoration: none;
}

/* 確認用：デバッグ時に赤い枠を表示（本番では削除） */
.image-link-area.debug {
  outline: 2px solid red;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 1.2em;
    letter-spacing: 1px;
  }
  .section-text {
    font-size: 0.75em;
    padding: 0 1em;
  }
  .section-text2 {
    line-height: 1.5;
    font-size: 1em;
    margin: 0 auto 0px;
    max-width: 700px;
    text-align: center;
    font-weight: bold;
  }

  .section-text3 {
    line-height: 1.5;
    font-size: 0.9em;
    margin: 0 auto 0px;
    max-width: 700px;
    text-align: center;
    font-weight: bold;
    margin: 0 0 1em;
  }

  .content-image {
    display: block;        /* ブロック要素化して中央揃えをしやすく */
    max-width: 90%;       /* 画面幅を超えないようにする（レスポンシブ対応） */
    height: auto;          /* 縦横比を維持 */
    margin: 20px auto;     /* 上下に余白を追加＆中央寄せ */
    border-radius: 8px;    /* 角を少し丸く（任意） */
  }

  .content-image-step {
    display: block;        /* ブロック要素化して中央揃えをしやすく */
    max-width: 90%;       /* 画面幅を超えないようにする（レスポンシブ対応） */
    height: auto;          /* 縦横比を維持 */
    margin: 5px 15px;     /* 上下に余白を追加＆中央寄せ */
    border-radius: 8px;    /* 角を少し丸く（任意） */
  }

  .terms-container {
    width: 90%;
    max-width: 750px;
    margin: 40px auto;
    text-align: left;
    font-size: 0.85em;
    line-height: 1.5;
  }
  .terms-note {
    text-align: center;
    font-size: 0.8em;
    color: #555;
    margin-bottom: 10px;
  }

  .terms-outer {
    background-color: #eeeeee;   /* 外枠の背景色 */
    padding: 10px;               /* 内側の余白（白ボックスとの間隔） */
    border-radius: 6px;          /* 角を少し丸く */
  }
  a.btn-next {
    padding: 15px 20px !important;
    width: 79% !important;
    font-size: 1.2em !important;
  }

  input.btn-next {
    padding: 15px 20px !important;
    width: 90% !important;
    font-size: 1.2em !important;
  }
  .image-link-wrapper {
    width: 100%;
  }
}
