@charset "UTF-8";

/* 変数まとめ */
:root {
  /* 色 ─────────────────────────────── */
  --sumi-black: #000;
  --black: #231815;
  --white: #fff;
  --baige: #F4DDA5;
  --gray-base-light: #F0F0F0;
  --gray-base: #D9D9D9;
  --gray-line: #B3B3B3;
  --gray-text: #B3B3B3;
  --red: #e94709;
  --red02: #d9340a;
  --red-shadow: #b82901;
  --blue-light: #9ADDE5;
  --yellow: #FDD028;
  --yellow-light: #ffec3f;

  /* 余白（Figmaバリアブル／1rem = 15px） ── */
  --space-side: 20px;
  /* SP時のコンテンツ左右余白（px固定） */
  --space-s: 1rem;
  /* 余白中2：1文字分：15px */
  --space-m: 1.4rem;
  /* 余白中3：基本のpadding：21px */
  --space-l: 2.5rem;
  /* 余白大1：基本の要素間隔、pの余白：37.5px */
  --space-xl: 4rem;
  /* 余白大2：セクション間の余白：60px */
  --space-xs: 7px;
  /* 余白小1：アイコン横の余白 */
  --radius: 8px;
  /* 角丸：ボタン */
  --radius-box: 16px;

  /* 文字サイズ（Figmaバリアブル／1rem = 15px） ── */
  --font-xs: 0.75rem;
  /* 11.25px */
  --font-sm: 0.8rem;
  /* 12px */
  --font-s: 0.9rem;
  /* 13.5px */
  --font-l: 1.1rem;
  /* 16.5px */
  --font-xl: 1.2rem;
  /* 18px */
  --font-xl2: 1.4rem;
  /* 21px */
  --font-xxl: 1.6rem;
  /* 24px */

  /* 行間・ウェイト（Figmaバリアブル） ───── */
  --line-height-base: 1.8;
  /* 本文 */
  --line-height-min: 1.5;
  /* 見出し・行間狭め */
}

/* ページ見出しの補足行（旧: インラインの display:block） */
.page_title .font_sm {
  display: block;
}

/* hoverエフェクトの長さ設定 */
a,
a *,
button,
input,
a:before,
a:after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

a,
a:link,
button {
  text-decoration: none;
  color: var(--red02);
}

a:hover,
button:hover {
  cursor: pointer;
}

#no_script {
  position: relative;
  width: 100%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 5px 10px;
  margin: 0;
  font-size: 14px;
  z-index: 100;
}


/* common
====================================================================================================================================== */
/*非表示*/
.none {
  display: none !important;
}

.visible-off {
  display: none;
}

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.hide {
  display: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/*取り消し線を引く*/
.deleted {
  text-decoration: line-through;
}

iframe {
  max-width: 100%;
}

/* ルビ */
rt {
  margin-bottom: -0.5em;
  letter-spacing: -0.2em;
}

/*list*/
ul.list_style {
  background: none;
  list-style-type: none;
  list-style-position: outside;
  padding: 0;
  margin-bottom: 1em;
}

ul.list_style li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 2rem;
  line-height: var(--line-height-min);
}

ul.list_style li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.6667rem;
  height: 0.6667rem;
  background: var(--red);
  border-radius: 50%;
  overflow: hidden;
}

ol.list_style {
  counter-reset: orderd_num;
  background: none;
  overflow: hidden;
  margin-bottom: 1.5em;
}

ol.list_style li {
  text-indent: -1.7em;
  padding-left: 1.7em;
  margin-bottom: 1.2em;
  line-height: 1.6;
}

ol.list_style li:before {
  counter-increment: orderd_num;
  content: counter(orderd_num);
  font-weight: bold;
  background-color: var(--red);
  display: inline-block;
  color: var(--white);
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  border-radius: 50%;
  margin-right: 0.2em;
  text-indent: 0;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
}

.list_style li:last-child {
  margin-bottom: 0 !important;
}

ul.caution {
  margin-bottom: 2.5em;
}

ul.caution li {
  margin-bottom: 0;
}

ul.caution li:before {
  content: "※";
}

ul.plane {
  list-style-type: none !important;
  padding: 0;
}

ul.plane,
ul.plane>li,
ol.plane>li {
  list-style-type: none !important;
  padding: 0;
}

ul.plane>li:before,
ol.plane>li:before {
  display: none;
}

/*default heading*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 0 0 1em;
  line-height: 1.5;
}

/* anchro */
.anchor {
  display: block;
  padding: 5em 0 0;
  margin: -5em 0 0;
  pointer-events: none;
}

/* page title */
.page_title_box {
  background: var(--black);
  color: var(--white);
  margin: -28px -20px 1.5em;
  padding: 0.3em 0.5em 1.5em;
  border-top: solid 3px var(--gray-text);
}

.page_title_box .navibar {
  font-size: 0.75em;
}

.page_title_box a,
#footer a {
  color: var(--baige);
  text-decoration: underline;
}

h1.page_title {
  font-size: 1.6rem;
  text-align: center;
  margin: 0.5em 0 0;
}

h2 {
  font-size: 1.5em;
  text-align: center;
  background-size: 2em auto;
  margin-bottom: 0.25em;
}

h2.bar {
  position: relative;
  font-size: var(--font-xl);
  background: var(--black);
  color: var(--white);
  padding: 0.8rem var(--space-side);
  /* Figma18px − 行の余り分 */
  margin: 0 calc(var(--space-side) * -1) var(--space-m);
  /* Figma30px − 行の余り分 */
}

#score_quiz h2.bar {
  margin-bottom: 0;
}

h2 .hint_modal {
  display: inline-block;
  position: absolute;
  left: auto;
  right: 10px;
  top: -0.5em;
  width: auto !important;
  background: var(--white);
  border: solid 1px var(--gray-line);
  line-height: 1.5;
  letter-spacing: 0;
  font-size: 0.9em;
}

h3 {
  position: relative;
  font-size: 1.25rem;
  text-align: left;
  margin-bottom: 1em;
  padding-left: 1em;
  overflow: hidden;
}

h3:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.7em;
  height: 0.7em;
  background: var(--red);
  border-radius: 50%;
}

h4 {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

/*hr*/
hr {
  clear: both;
  height: 2px;
  border-bottom: 2px dotted var(--gray-text);
  background: none;
  margin: 1em 0;
  overflow: hidden;
}

/*段落*/
table p {
  margin-bottom: 0;
  line-height: 1.7em;
}

/*カラー*/
.white {
  color: var(--white);
}

.black {
  color: var(--black) !important;
}

.red {
  color: var(--red02);
}

.yellow {
  color: var(--yellow-light);
}

/*container*/
.section_box,
.common_box {
  clear: both;
  padding: 0;
  margin-bottom: 3rem;
}

.section_box figure,
.section_box .img_box {
  margin-bottom: 1.5rem;
}

.section_box:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.section_box> :last-child {
  margin-bottom: 0;
}

/* 索引
====================================================================================================================================== */
/* button */
.button_area {
  display: block;
  margin-bottom: 2em;
  text-align: center;
}

a.btn,
button.btn,
input.btn,
#conts .btn_submit {
  -webkit-appearance: none;
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 240px;
  text-align: center;
  padding: 0.9rem 2rem;
  /* 高さ53px（border2px×2＋行22.5px）になる値 */
  margin: 0 0.5em 0.8em;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  background: var(--white);
  border: solid 2px var(--black);
  text-decoration: none;
  color: var(--black);
  border-radius: 3em;
  white-space: normal;
}

a.btn.bg_color,
button.btn.bg_color,
input.btn.bg_color,
#conts .btn_submit {
  background: var(--red);
  color: var(--white);
  font-size: var(--font-xl2);
  min-width: 300px;
  padding: 1.25rem 2rem;
  border: 0;
  border-bottom: solid 7px var(--red-shadow);
}

a.btn.bg_color .sholder_copy,
button.btn.bg_color .sholder_copy,
#conts .btn_submit .sholder_copy {
  color: var(--white);
}


.btn .sholder_copy {
  display: block;
  font-size: 0.75em;
}

.btn.coupon_btn,
.btn.sholder_on {
  position: relative;
  background-color: var(--yellow);
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.btn.coupon_btn:before {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: -10px;
  width: 50px;
  height: 50px;
  background: url("../images/icon/check.webp") no-repeat center center;
  background-size: 100% auto;
}

.mission_btn_wrap {
  text-align: center;
  margin: -1.5em auto 3em;
}

.btn.coupon_btn.mission_btn {
  background: no-repeat;
  padding: 0.65em 2em;
  padding-left: 2em;
  min-width: 0;
  padding-left: 3em;
  font-size: 1.1em;
}

.btn.coupon_btn.mission_btn:before {
  width: 45px;
}

a.icon_link {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  color: var(--black);
  font-weight: bold;
  font-size: 0.9em;
  line-height: 1.5;
}

/* 矢印設定 */
.icon_link:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2px;
  border: 0;
  width: 8px;
  height: 8px;
  border-top: 4px solid var(--gray-base);
  border-right: 4px solid var(--gray-base);
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

/* SNSボタン */
.btn.sns_share_all {
  font-size: 0.9em;
  text-align: left;
  margin: 0 auto 1em;
  padding: 1.1em 2em;
  padding-left: 1.5rem;
  width: 76vw;
  max-width: 400px;
  min-width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page_score .btn.sns_share_all {
  margin-bottom: 0;
}

.btn.sns_share_all .share_icon_list {
  float: right;
  display: flex;
  column-gap: 5px;
  font-weight: normal;
  font-size: 1.3em;
  line-height: 1.2;
  margin-right: -10px;
}

.btn.sns_share_all .share_icon_list img {
  width: 22px;
}


/*table*/
table {
  width: 100%;
  padding: 0;
  margin-bottom: 2.5em;
  border-collapse: collapse;
  vertical-align: top;
  border: 2px solid var(--gray-line);
  line-height: 1.75;
}

table caption {
  font-weight: bold;
  background-color: transparent;
  text-align: center;
  padding: 0.7em;
}

table th,
table td {
  border: 1px solid var(--gray-line);
  color: var(--black);
  padding: 1em;
}

table th {
  white-space: nowrap;
}

table td {
  width: 100%;
}

table thead th,
table thead td {
  background-color: var(--black);
  color: var(--white);
  font-weight: normal;
  font-size: 1rem;
  padding: 0.5em 1em;
}

table tbody th {
  background-color: var(--gray-base);
  font-weight: bold;
}

table.table_line {
  border: 0;
}

table.table_line th,
table.table_line td {
  background: none;
  border: 2px dotted var(--gray-text);
  border-left: 0;
  border-right: 0;
  border-top: 0;
}



/* 特殊 box
====================================================================================================================================== */
/*box*/
.point_box {
  background: url("../images/bg.webp");
  background-size: 300px auto;
  position: relative;
  padding: 1.5em 1.2em 1em;
  margin: 2em auto;
}

.point_box p:last-child {
  margin-bottom: 0;
}

.point_box .tit_tape {
  position: absolute;
  left: -10px;
  top: -25px;
  width: 9em;
}

.paper_wrap,
.paper_bottom_wrap {
  position: relative;
}

.paper_wrap:before,
.paper_wrap:after,
.paper_bottom_wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: absolute;
  left: 0;
  top: -11px;
  background: url("../images/bg_top.webp") repeat-x left bottom;
  background-size: auto 100%;
}

.paper_wrap:after {
  top: auto;
  bottom: -11px;
  background-image: url("../images/bg_bottom.webp");
}

.paper_wrap.paper_wrap_img:before {
  top: -1px;
  background-image: url("../images/bg_bl_top.webp");
}

.paper_wrap.paper_wrap_img:after,
.paper_bottom_wrap:after {
  top: auto;
  bottom: -1px;
  background-image: url("../images/bg_bl_bottom.webp");
  z-index: 10;
}

.paper_wrap.paper_wrap_img.paper_white:before {
  background-image: url("../images/bg_w_top.webp");
}

.paper_wrap.paper_wrap_img.paper_white:after {
  background-image: url("../images/bg_w_bottom.webp");
}

.paper_bottom_wrap:after {
  background-image: url("../images/bg_top.webp");
}


/* チャット */
.chat_wrap {}

.chat {
  position: relative;
  margin: 0 auto;
  padding-left: 68px;
  overflow: hidden;
  font-size: 0.88em;
  line-height: 1.7;
  overflow: hidden;
}

.chat.name_on {
  min-height: 70px
}

.chat .icon {
  position: absolute;
  left: -5px;
  top: 0;
  width: 5.3em;
  font-size: 0.85em;
  font-weight: normal;
  text-align: center;
  line-height: 1.2;
}

.chat .icon img {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: 2px;
  border-radius: 50%;
}

.chat .icon .name {
  display: block;
}

.chat .talk {
  position: relative;
  background: #0091BF;
  padding: 0.8em 1em;
  margin-bottom: 1.1em;
  color: var(--white);
  text-align: left !important;
  border-radius: 8px;
  word-break: break-all;
}

.chat .talk:before {
  content: "";
  display: block;
  position: absolute;
  top: 1em;
  left: -7px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 7px 5px 0;
  border-color: transparent;
  border-right-color: #0091BF;
}

.chat.right {
  padding-left: 0;
  padding-right: 63px;
}

.chat.right .icon {
  left: auto;
  right: -5px;
}

.chat.right .talk:before {
  left: auto;
  right: -7px;
  border-width: 5px 0 5px 7px;
  border-color: transparent;
  border-left-color: #0091BF;
}

/* レジェンジャー */
.chat.normal .talk {
  background: var(--yellow-light);
  color: var(--black);
}

.chat.normal .talk:before {
  border-right-color: var(--yellow-light);
}

.chat.normal.right .talk:before {
  border-left-color: var(--yellow-light);
}

/* メッセージ */
.message_box {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 1.3em 1em 1.2em;
  margin: 0 auto 1em;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  border-radius: 10px;
}

.message_box:before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: solid 2px var(--white);
  border-radius: 8px;
  pointer-events: none;
}


/* 吹き出し */
.fukidashi_message {
  padding-bottom: 5px;
}

.fukidashi_message .message_box:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: var(--black) transparent transparent transparent;
}

/* 選択肢 */
/*.select_btn_box {
	display: flex;
	overflow: hidden;
	margin: 0;
	line-height: 1.5;
}
.select_btn_box a, .select_btn_box button, .select_btn_box input {
	color: :var(--white);
	display: inline-block;
	width:100%;
	margin: 0;
	text-decoration: none;
	font-weight: bold;
}
.select_btn_box form {
	width:100%;
}
.select_btn_box a.btn_retreat {
	font-size: 0.7em;
	text-align: center;
	padding: 0.5em 0.5em 0.5em 0;
	width:60%;
	border-right: dotted 2px var(--gray-line);
	white-space: nowrap;
}
.select_btn_box a.btn_retreat.column01 {
    padding-top: 1.2em;
}
.select_btn_box a.btn_advance, .select_btn_box button.btn_advance, .select_btn_box input.btn_advance {
	font-size: 1.1em;
	color: #F59B00;
	background: url("../images/icon/arrow_next.webp") no-repeat 30px center;
	background-size: 16px auto;
	border: 0;
	padding-left: 55px !important;
	padding-top: 0.15em;
	text-align: left;
	line-height: 1.3;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.select_btn_box a.btn_advance.scop_btn {
	background: url("../images/item/scop.webp") no-repeat 15px center;
	background-size: 50px auto;
	padding-left: 65px !important;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.select_btn_box a span {
	display: inline-block;
	white-space: nowrap;
}
.select_btn_box.single_btn .btn_advance {
	width: auto !important;
	margin: 0 auto !important;
	min-height: 2em !important;
	padding-left: 26px !important;
	background-position: left center;
}
.select_btn_box.single_btn form {
	width: 100%;
}
.select_attention {
    position: absolute;
    left: 5px;
    bottom: -22px;
    font-size: 0.6em !important;
    color: var(--black);
}*/


/* 調整用
====================================================================================================================================== */
/*画像で見出しを作る用（スタイルを強制リセット）*/
h1.plane,
h2.plane,
h3.plane,
h4.plane,
h5.plane {
  background: none !important;
  border: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

h1.plane:after,
h2.plane:after,
h3.plane:after,
h4.plane:after,
h5.plane:after {
  display: none !important;
}

h1.plane img,
h2.plane img,
h3.plane img,
h4.plane img,
h5.plane img {
  margin: 0;
  max-width: none;
}

/*adjust*/
.clear {
  clear: both;
}

.ma0 {
  margin: 0 !important;
}

.mab0 {
  margin-bottom: 0 !important;
}

.mab10 {
  margin-bottom: 10px !important;
}

.mab05em {
  margin-bottom: 0.5em !important;
}

.mab1em {
  margin-bottom: 1em !important;
}

.mab15em {
  margin-bottom: 1.5em !important;
}

.mab2em {
  margin-bottom: 2em !important;
}

.mab3em {
  margin-bottom: 3em !important;
}

.mab4em {
  margin-bottom: 4em !important;
}

.mat0 {
  margin-top: 0 !important;
}

.mat1em {
  margin-top: 1em !important;
}

.mat15em {
  margin-top: 1.5em !important;
}

.mat2em {
  margin-top: 2em !important;
}

.mat3em {
  margin-top: 3em !important;
}

.mat4em {
  margin-top: 4em !important;
}

.mat-10 {
  margin-top: -10px !important;
}

.mat-20 {
  margin-top: -20px !important;
}

.mat-30 {
  margin-top: -30px !important;
}

.mar10,
.mr10 {
  margin-right: 10px !important;
}

.mar20,
.mr20 {
  margin-right: 20px !important;
}

.mal10,
.ml10 {
  margin-left: 10px !important;
}

.mal20,
.ml20 {
  margin-left: 20px !important;
}

.pa0 {
  padding: 0 !important;
}

.pat0 {
  padding-top: 0 !important;
}

.pab0 {
  padding-bottom: 0 !important;
}

.pat15 {
  padding-top: 15px !important;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/*font size*/
.font_xs {
  font-size: 0.8em;
}

.font_sm {
  font-size: 0.9em;
}

.font_la {
  font-size: 1.2em;
}

.font_xl {
  font-size: 1.4em;
}

.font_xll {
  font-size: 1.6em;
}

.font_normal {
  font-weight: normal;
}

.font_bold {
  font-weight: bold;
}

.text_line {
  text-decoration: underline !important;
}

.text_center {
  text-align: center !important;
}

.text_right {
  text-align: right !important;
}

.text_left {
  text-align: left !important;
}

.font_0 {
  font-size: 0;
}

.font_plus {
  font-size: 1.07em;
}

/*行間詰め*/
.line_height_min {
  line-height: 1.5;
}

/*文字間*/
.letter {
  letter-spacing: 0.08em;
}

/* 縦方向に中央寄せ */
.vertical_center {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 文章枠用CSS
====================================================================================================================================== */
p {
  margin-bottom: 1.5em;
}

#container {
  word-break: break-word;
}

.common_box {
  overflow: visible;
}

.common_box .text_box {
  margin-bottom: 2em;
}

.common_box:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.common_box .img_box {
  float: left;
  margin-right: 20px;
  max-width: 50%;
  width: auto;
  line-height: 1.7;
  margin-bottom: 1.5em;
}

.common_box .img_box.auto_width img {
  width: auto;
}

.common_box .text_box {
  display: inline;
  overflow: hidden;
}

.common_box.right .img_box {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}



/* フォーム画面
====================================================================================================================================== */
form#inputForm {
  text-align: center;
}

form input[type="text"],
form input[type="number"],
form input[type="email"],
form input[type="tel"],
form textarea {
  background: var(--white);
  border: solid 2px var(--gray-base);
  box-shadow: none !important;
  outline: none;
  padding: 0.6em;
  font-size: 16px;
  font-weight: normal;
  border-radius: 4px;
}

form input[type="text"]:focus,
form input[type="number"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
  background: #FBF3C9;
  border-color: var(--gray-text);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px auto;
}

form input[type="text"].on,
form input[type="number"].on,
form input[type="email"].on,
form input[type="tel"].on,
form textarea.on {
  border-color: #F59B00;
  background-image: url("../images/icon/check_form.webp");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-color: var(--white);
  padding-right: 30px;
}

form input[type="text"],
form input[type="number"],
form input[type="email"] {
  width: 100%;
}

.form_flex.wrap_invalid::after {
  content: "住所は番地まで入力してください";
  background: var(--red);
  padding: 0.3em 0.5em;
  color: var(--white);
  font-weight: bold;
  margin-top: 0.5em;
  display: inline-block;
  font-size: 0.8em;
  line-height: 1.2;
}

form textarea {
  width: 100%;
  height: 10em;
  line-height: 1.6;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  border: 2px solid var(--gray-line);
  background: #fff url(../images/icon/icon_pulldown.webp) no-repeat right center;
  border-radius: 0;
  font-size: 1rem;
  height: 2.9em;
  padding-left: 0.8em;
  padding-right: 0.8em;
  border-radius: 6px;
}

form .mini_select select {
  width: 8em;
  margin-right: 0.25em;
}

.table_form input[type="radio"],
.table_form input[type="checkbox"] {
  margin-right: 0.3em;
}

.table_form label {
  display: inline-block;
  margin: 0 1em 0.3em 0;
}

.table_question tr {
  display: block;
  padding-bottom: 0.5em;
  border-bottom: 2px dotted var(--gray-text);
  padding: 0.25em 0 1em;
}

table.table_question tr th {
  padding-bottom: 0.5em;
  position: relative;
  padding-left: 2em;
  padding-top: 1em;
}

table.table_question tr th::before {
  content: "Q";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1em;
  background: var(--black);
  color: var(--white);
  padding: 0.3em;
  font-size: 1.1em;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  text-align: center;
  line-height: 1;
}

.submit_caution {
  border: solid 2px var(--red);
  color: var(--red02);
  font-weight: bold;
  font-size: 0.85em;
  padding: 0.4em 1em;
  line-height: 1.8;
}

table.table_confirm tr th {
  font-weight: normal;
  font-size: 0.85em;
}

table.table_confirm tr td {
  font-weight: bold;
}

/* money text */
.form_flex {
  overflow: hidden;
}

.form_flex fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form_flex.single fieldset {
  display: grid;
  grid-template-columns: 1fr !important;
}

@media screen and (min-width: 550px) {
  .form_flex fieldset {
    grid-template-columns: 1fr 1fr 1fr;
  }

}

.text_form {
  width: 50%;
  float: left;
  font-size: 0.88em;
  margin-bottom: 1em;
}

.text_form input[type="text"],
.text_form input[type="number"] {
  width: 6.5em;
  margin-right: 0.2em;
}

.text_form strong,
.text_form .yen {
  white-space: nowrap;
  display: inline-block;
}

/* present select */
.radio_present {
  display: inline-block;
  width: 49%;
  padding: 0 0.5em;
  font-weight: bold;
  vertical-align: top;
  font-size: 0.95em;
  line-height: 1.5;
}

.radio_img,
.radio_text {
  display: block;
}

.radio_img {
  line-height: 1;
}

.radio_img img {
  width: 100%;
  margin-bottom: 0.5em;
  border-radius: 8px;
  overflow: hidden;
}

.radio_present input {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.3em;
}

.radio_text {
  display: inline;
}

.tousen {
  color: var(--red02);
  display: inline;
}

/*confilm*/
.error {
  color: var(--red02);
  font-weight: normal;
}

.required {
  color: var(--white);
  background: var(--red);
  font-size: 0.75em;
  margin-left: 0.4em;
  padding: 0.2em 0.3em;
  line-height: 1.2;
  vertical-align: middle;
}

/* form table */
table.table_form {
  margin-bottom: 1.5em;
}

table.table_form th,
table.table_form td {
  border-bottom: 0;
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.2em;
}

table.table_form td {
  padding: 0 !important;
}


/* accordion */
.section_acc,
.section_acc_single {
  margin-bottom: 0.75em;
  overflow: hiddend;
}

.section_acc_single .acc_title_single {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.section_acc_single .acc_main_single {
  display: none;
}

.section_acc .acc_title {
  position: relative;
  background: var(--black);
  color: var(--white);
  margin: 0;
  padding: 1rem 1.3rem;
  padding-right: calc(1.3rem + 20px);
  font-weight: bold;
  border-radius: 0.9rem;
}

.section_acc .acc_title:before,
.section_acc .acc_title:after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 15px;
  height: 0;
  border-bottom: solid 2px var(--white);
}

.section_acc .acc_title:after {
  transform: rotate(90deg);
}

.section_acc .acc_title.opened:after {
  display: none;
}

.section_acc .acc_main {
  padding: 1rem 0;
  display: none;
  overflow: hidden;
  font-weight: bold;
}

.acc_form {
  display: block;
}

.acc_form td {
  width: 100%;
}



@media screen and (max-width: 768px) {

  /* table */
  table th {
    white-space: normal;
  }

  table :not(thead) th {
    width: 20%;
  }

  table.table_line th {
    padding-right: 0;
    padding-left: 0;
  }

  /*索引*/
  /* 2列リンク */
  .listbox_2_col,
  .banner_2_col {
    width: 98%;
    margin: 0 1% 1.6em;
  }

  .list_box.topics .title {
    padding: 0.2em 0 0;
    clear: both;
    widows: 100%;
  }
}

@media screen and (max-width: 540px) {
  .common_box .img_box {
    float: none;
    text-align: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    max-width: initial;
  }

  .common_box.right .img_box {
    float: none;
    margin-left: 0;
  }

  /*point box*/
  #container .point_box .img_box,
  #container .number_box .img_box {
    max-width: 100%;
  }

  table.table_line th,
  table.table_line td {
    display: block;
    width: auto;
    padding: 1.5em;
    padding-left: 0;
    padding-right: 0;
  }

  table.table_line th {
    border: 0;
    padding-bottom: 0;
  }

  table.table_line td {
    padding-top: 0.2em;
  }
}



/* Scss Document */