@charset "utf-8";

/* common
-------------------------------------------------------*/
* {
	box-sizing: border-box;
}
#wrapper {
	overflow: hidden;
	background: #fff;
	max-width: 460px;
	margin: 0 auto;
}
.sp {
	display: none;
}
.area {
	padding: 70px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	box-sizing: border-box;
}
.q_ttl {
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 1.8rem;
}
.hissu {
	padding-left: 55px;
	position: relative;
}

.hissu::before {
	content: "必須";
	background: #cb0000;
	border-radius: 3px;
	padding: 5px;
	color: #fff;
	font-size: 1.4rem;
	position: absolute;
	left: 0;
	top: 0;
	width: 36px;
	text-align: center;
	line-height: 1;
}
.q_sub_ttl {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 10px;
}

@media screen and (max-width:768px) {
	.q_ttl {
	font-size: 1.6rem;
}
}


.ub_b {
	border-bottom: 4px solid #17b4bb;
}
.btn01 input, .btn01_index {
	background: linear-gradient(180deg, rgba(0, 90, 185, 1) 50%, rgba(1, 75, 153, 1) 50%);
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  width: 100%;
  padding: 20px;
  margin-top: 20px;
  border: none;
  font-family: "Noto Serif", serif;
}
.btn01_index {
	background:url(../img/arrow.png)no-repeat right 15px center/8px 14px,linear-gradient(to bottom,#f8932d,#e96413);
	max-width: 190px!important;
}


.btn01_index02 {
	cursor: pointer;
  background: rgb(196, 193, 193);
  padding: 10px;
  max-width: 160px;
  margin: 20px auto 0px;
  font-weight: 700;
  text-align: center;
  border: none;
}


@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 30px 20px;
	}
	.inner {
		max-width: 100%;
	}
}

.roboto {
  font-family: "Roboto", sans-serif;
}

/* header
-------------------------------------------------------*/
#header {
	box-sizing: border-box;
	background: #fff;
	padding: 10px 0;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	max-width: 100%;
}
#header .logo img {
    max-width: 197px;
}
#header .txt {
	font-size: 1.2rem;
	font-weight: 700;
	text-align: right;
	font-family: 'Noto Sans JP', serif;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#header .txt {
		font-size: 1rem;
		text-align: right;
	}
}

@media screen and (max-width:460px) {
	#header {
		padding: 10px;
	}
	#header .logo img {
    max-width: 150px;
}
}

/* index
-------------------------------------------------------*/
#index #visual .inner {
	max-width: 460px;
}
#index_form.area {
	padding: 0;
}
#index_form .inner {
	background: #eeeeee;
}
#index_form .ttl_box {
	background: #ae9e8a;
	color: #fff;
	text-align: right;
	padding: 10px;
}
#index_form .ttl_box .sub_ttl {
	font-size: 1.6rem;
	font-weight: 700;
}
#index_form .ttl_box .ttl {
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1;
}
#index_form .ttl_box span {
	font-size: #000000;
	background: #fff;
	color: #000000;
	font-size: 1.4rem;
	margin-right: 10px;
	padding: 5px 10px;
	margin-bottom: 5px;
	display: inline-block;
}

#index_form .row_box {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}
#index_form .row_box label {
	width: 49%;
}
#index_form .row_box label:nth-child(-n+2) {
	margin-bottom: 10px;
}

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



.step {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Roboto", sans-serif;
	position: relative;
	margin-bottom: 20px;
}

.step::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #d2d2d2;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.step li {
	position: relative;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #fff;
	background: #d2d2d2;
	z-index: 2;
}

.step li.step0 {
	width: 48px;
	height: 48px;
	background: #ae9e8a;
}

.step li.active {
	background: #005ab9;
}




.tile-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

/* label をカード化 */
.tile{
  position:relative;
  display:block;
  cursor:pointer;
  user-select:none;
}

/* 本物のcheckboxは見えないけどフォーカス可能に */
.tile > input{
  position:absolute;
  inset:0;
  opacity:0;
  margin:0;
}

/* カード本体 */
.tile__inner{
  height:120px;              /* ここでタイル高さ調整 */
  border-radius:0px;         /* 角丸したいなら 8px とか */
  background:#b9aa99;        /* 未選択のベージュ */
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: background.15s ease, transform .05s ease;
}

/* アイコン */
.tile__icon{
  line-height:0;
  max-width: 57px;
  margin: 0 auto;
}
.tile__icon .ico{
  width:40px;
  height:40px;
  display:block;
  color:#fff;                /* strokeの色 */
}

/* テキスト */
.tile__text{
  font-size:1.8rem;
  letter-spacing:.03em;
  font-weight: 700;
}

@media screen and (max-width:768px) {
	.tile__text{
  font-size:1.6rem;
}
}

/* 選択状態（チェックされたら青） */
.tile > input:checked + .tile__inner{
  background:#0b5fb6;
}

/* hover */
@media (hover:hover){
  .tile:hover .tile__inner{
    transform: translateY(-3px);
  }
}

/* キーボード操作時のフォーカス枠 */
.tile > input:focus-visible + .tile__inner{
  outline:3px solid rgba(11,95,182,.7);
  outline-offset:3px;
}


.bottom_txt {
	text-align: center;
	font-weight: 700;
	margin-top: 20px;
}

.privacy_i {
	position: relative;
	padding-left: 16px;
	display: inline-block;
}

.privacy_i::before {
	content: "";
	position: absolute;
	background: url(../img/privacy.png) no-repeat;
	background-size: 100%;
	width: 12px;
	height: 16px;
	left: 0;
	transform: translateY(-50%);
	top: 50%;
}

.bace_btn {
	cursor: pointer;
	background: #005AB9;
	background: linear-gradient(180deg, rgba(0, 90, 185, 1) 50%, rgba(1, 75, 153, 1) 50%);
	color: #fff;
	text-align: center;
	font-size: 2.5rem;
	width: 100%;
	padding: 20px;
	margin-top: 20px;
	border: none;
	font-family: "Noto Serif", serif;
}

.bace_btn span {
	display: block;
	position: relative;
}
.bace_btn span::before {
	content: "";
	position: absolute;
	background: url(../img/btn_arrow.png) no-repeat;
	background-size: 100%;
	width: 10px;
	height: 17px;
	right: 0px;
	transform: translateY(-50%);
	top: 50%;
}

/* form parts
-------------------------------------------------------*/

select {
	border: 1px solid #cbd5e1;
	border-radius: 3px;
	width: 100%;
	line-height: 1;
	background: #fff;
	padding: 10px 15px;
}
.radio_i {
	display: none;
}
.radio_btn {
	width: 18px;
	height: 18px;
	border: 1px solid #000;
	border-radius: 50%; /* 丸くする */
	display: inline-block;
	position: relative;
	margin-right: 8px;
	cursor: pointer;
}
.radio_btn::after {
	content: "";
	width: 12px;
	height: 12px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: scale(0) translate(-50%, -50%);
}
input[type="radio"]:checked + .radio_btn::after {
  transform: scale(1) translate(-50%, -50%);
}
label:has(.radio_i:checked) {
  border-color: #000;
}

::placeholder {
	color: #cbd5e1;
}
input[type="text"] {
	border: 1px solid #cbd5e1;
	border-radius: 3px;
	width: 100%;
	line-height: 1;
	background: #fff;
	padding: 10px 15px;
}
input[type="text"].w50 {
	width: 49%;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {

}

/* form
-------------------------------------------------------*/
/* visual */
#form #visual {
	background: #0e2544;
	color: #fff;
	text-align: center;
	font-weight: 700;
}
#form #visual.area {
	padding: 40px 20px;
}
#form #visual .inner {
	position: relative;
}
#form #visual .ttl {
	font-size: 2rem;
	margin-bottom: 10px;
}
#form #visual .sub_ttl {
	margin-bottom: 15px;
}
#form #visual .txt {
	border-bottom: 1px solid #fff;
	display: inline-block;
}
#form #visual .txt .yellow {
	color: #ffff00;
}
#form #visual .txt .num {
	font-size: 2.6rem;
}
#form #visual .img {
	position: absolute;
	right: -10px;
	bottom: -55px;
}
#form #visual .img img {
	max-width: 102px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#form #visual .img img {
		max-width: 80px;
	}
}

/* cont */
#cont.area {
	padding: 20px;
}
.form_box {
	padding: 30px;
}
.form_box:not(:last-child) {
	margin-bottom: 30px;
}
.form_box .btn01 input {
	max-width: 120px;
}
.form_box label:not(:last-child) {
	margin-bottom: 10px;
}
.form_box .a_box:not(:last-child) {
	margin-bottom: 30px;
}
.form_box .row_box {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;	
}
.form_box .row_box.sb {
	justify-content: space-between;	
}
#form .form_box .row_box label {
	width: inherit;
	border-radius: 100px;
	margin-right: 10px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.form_box {
		padding: 30px 20px;
	}
}

/* footer
-------------------------------------------------------*/
#footer {
	background: #333333;
	color: #fff;
}

#footer.area {
	padding: 30px 20px;
}
.list_footer {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.list_footer li {
	margin: 0 10px;
}
.list_footer a {
	font-size: 1.2rem;
	display: block;
	color: #fff;
}
#footer .logo {
	margin-bottom: 20px;
}
#footer .logo img {
	max-width: 197px;
}
#footer .copy {
	font-size: 1.2rem;
	text-align: center;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
}


/* alart
-------------------------------------------------------*/
#alart {
	max-width: 300px;
	background-color: #17b4bb;
	border-radius: 10px;
	padding: 20px 0 0;
	position: relative;
}
#alart .ttl {
	background: #0e2544;
	color: #fff;
	text-align: center;
	font-size: 2.7rem;
	font-weight: 700;
	margin: 0 20px;
	line-height: 1.2;
	padding: 10px 0;
	border-radius: 10px;
	margin-bottom: 20px;
}
#alart .ttl span {
	color: #60ff38;
}
#alart .img {
	text-align: center;
	margin: 0 10px;
}
#alart .img img {
	max-width: 287px;
}
#alart ul {
	background: #fff;
	border-radius: 0 0 10px 10px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 10px 20px 15px;
}
#alart ul li {
	width: 47%;
}
#alart ul li input {
	width: 100%;
	height: 70px;
	border-radius: 5px;
	font-size: 2rem;
	border: none;
	box-sizing: border-box;
	color: #fff;
	line-height: 1;
	text-align: center;
	font-weight: 700;
	background: #d9d9d9;
	box-shadow: 0px 5px 0px 0px #808080;
}
#alart ul li:last-child input {
	background-color: #ff9900;
}
#alart .btn_close {
	position: absolute;
	right: -10px;
	top: -16px;
	cursor: pointer;
}
#alart .btn_close img {
	max-width: 20px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
}


/* 設問表示
-------------------------------------------------------*/
.form_box {
  display: none;
}
.form_box.active {
  display: block;
}


/* 離脱防止アラート
-------------------------------------------------------*/
.modal {
	display: none; 
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.5);
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.modal-content {

}



.is-disabled {
  opacity: 0.5;
  pointer-events: none; /* クリック不可 */
}


#formWrap {
	margin: 0 auto;
	padding: 50px 20px;
	box-sizing: border-box;
}

.formTable {
	width: 100%;
	background: #fff;
	margin: 30px 0;
}

.formTable th {
	text-align: left;
	background: #EEEBE8;
	padding: 10px;
	display: block;
}

.formTable td {
	text-align: left;
	background: #fff;
	padding: 10px;
	display: block;
}





/* 進捗バー（上に隠しておく & 中央寄せ） */
.num_question {
  position: fixed;
  top: 0;
  left: 50%;
  max-width: 640px;
  width: 100%;
  z-index: 100;

  transform: translate(-50%, -120%); /* XもYもひとつにまとめる */
  transition: transform .35s ease;
  /* 任意: スムーズにしたいなら */
  /* will-change: transform; */
}

/* 最初の「次へ」でスッと降りる */
.num_question.show {
  transform: translate(-50%, 0);  /* ここも1本に */
}




/* 幅アニメ */
.num_question .meter{
  transition: width .35s ease;
}

.num_question_wrap {
	background: #fff;
	box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	padding: 10px 25px;

}

.num_question_wrap dl {
	display: flex;
	justify-content: space-between;
	align-items:center;
}

.num_question_wrap dl dt {
	font-weight: 700;
	width: 100px;
}

.num_question_wrap dl dd {
	background: #dfdedf;
	height: 20px;
	width: 100%;
	flex: 1;
	position: relative;
}

.meter {
	background: #17b4bb;
	height: 20px;
	width: 30%;
	position: relative;
	left: 0;
	top: 0;
}

.meter::after {
	position: absolute;
	content: "";
	background: url(../img/icon_woman02.png) no-repeat;
	background-size: 100%;
	width:58px;
	height:46px;
	top: 50%;
	transform: translateY(-50%);
	right: -10px;
}


.thanks_box {
	background: #EEEEEE;
}


.thanks_box_ttl {
	text-align: center;
	font-weight: 700;
	font-size: 3rem;
	border-top: 5px solid #ae9e8a;
	border-bottom: 5px solid #ae9e8a;
	padding: 20px 10px;
	margin-bottom: 30px;
	line-height: 1.2;
}

.thanks_box_img01 {
	margin-bottom: 0px;
}

.thanks_txt01 {
	text-align: center;
	font-size: 2rem;
}

.thanks_caution {
	border: 5px solid #fb0202;
	padding: 20px;
	padding-top: 60px;
	position: relative;
	background: #fdeeef;
	margin-top: 100px;
}
.thanks_caution::before {
	content: "";
	position: absolute;
	background: url(../img/thanks_img02.png) no-repeat;
	background-size: 100%;
	width: 120px;
	height: 120px;
	top: -65px;
	left: 50%;
	transform: translateX(-50%);

}

.thanks_caution .txt {
	text-align: center;
	font-size: 2rem;
}

.red {
	color: #fb0202;;
}

.thanks_cont {
	background: #ae9e8a;
	padding: 30px 20px;
	margin-top: 30px;
}

.thanks_cont_ttl {
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 30px;
	position: relative;
}


.thanks_cont01 {
	background: #fff;
	padding: 20px;
	margin-top: 20px;
}

.thanks_cont01 .txt {
	text-align: center;
	font-size: 2rem;
}

.under_line {
  background: linear-gradient(transparent 60%, #ffff00 60%);
}


.thanks_cont01_caution {
	background: #fb0202;
	border: 5px solid #fff;
}

.thanks_cont01_caution .txt {
	color: #fff;
}

.thanks_cal {
	border: 5px solid #21e298;
	border-radius: 20px;
	padding: 20px 20px;
	padding-bottom: 40px;
	margin-top: 30px;
}

.thanks_cal_ttl {
	text-align: center;
	font-weight: 700;
	font-size: 3.8rem;
	margin-bottom: 20px;
}

.thanks_cal .txt {
	text-align: center;
	font-size: 2.8rem;
}

.thanks_cal_btn {
	margin-top: 20px;
	text-align: center;
}

.thanks_cal_btn a {
	display: inline-block;
	font-weight: 700;
	font-size: 3rem;
	color: #fff;
	background-color: #0dbd79;
	border-radius: 100px;
	padding: 20px 50px;
}


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

.thanks_box_ttl {
	font-size: 2.5rem;
}
.thanks_txt01 {
	font-size: 1.6rem;
}



.thanks_caution {
	padding: 10px;
	padding-top: 55px;
	margin-top: 70px;
	border: 3px solid #fb0202;
}
.thanks_caution::before {
	width: 100px;
	height: 100px;
	top: -50px;

}

.thanks_caution .txt {
	font-size: 1.6rem;
}



.thanks_cont {
	padding: 20px 10px;
	margin-top: 20px;
}

.thanks_cont_ttl {
	font-size: 2.4rem;
	margin-bottom: 20px;
}
.thanks_cont_ttl::after {
	width: 55px;
	height: 100px;
}

.thanks_cont01 {
	padding: 10px;
}

.thanks_cont01 .txt {
	font-size: 1.6rem;
}


.thanks_cont01_caution {
	background: #fb0202;
	border: 3px solid #fff;
}


.thanks_cal {
	border: 3px solid #21e298;
	padding: 10px;
	padding-bottom: 20px;
	margin-top: 20px;
}

.thanks_cal_ttl {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.thanks_cal .txt {
	font-size: 1.7rem;
}


.thanks_cal_btn a {
	font-size: 1.9rem;
	color: #fff;
	padding: 15px 30px;
}
}




.step2_list li {
	background: #fff;
	padding: 10px;
	border: 1px solid #d6d6d6;
	margin-bottom: 10px;
}

.back_btn {
	cursor: pointer;
	background: #c4c1c1;
	padding: 10px;
	max-width: 160px;
	margin: 0 auto;
	font-weight: 700;
	text-align: center;
	margin-top: 20px;
	border: none;
	font-family: "Noto Serif", serif;
}

.step3_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.step3_list li {
	width: 48%;
	background: #fff;
	padding: 10px;
	border: 1px solid #d6d6d6;
	margin-bottom: 10px;
}

.step5_box {
	margin-bottom: 30px;
}

.thanks_box {
	font-family: 'Noto Sans JP', serif;
	font-weight: 700;
}

.icon_tel {
	position: relative;
	padding-left: 30px;
}

.icon_tel::before {
	content: "";
	position: absolute;
	background: url(../img/icon_tel.png) no-repeat;
	background-size: 100%;
	width: 25px;
	height: 25px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}