@charset "utf-8";
/*
Theme Name: あべのハルカス
*/

/* ------------------------------------------------------------
   変数
------------------------------------------------------------ */
:root {
	--sec: 40px;
	--sec-half: 20px;
	--sec-padding: 20px;
/*フォーム関連の変数*/
	--f-bdc: #ccc; /*線の色*/
	--f-bdr: 4px; /*角丸*/
	--f-pdg: .5em; /*余白*/
	--btn-color: #29abe2; /*水色*/
	--btn-color2: #082F90; /*青色*/
	--pink: #f4428b;
}

@media (min-width:768px) {
	:root {
	--sec: 60px;
	--sec-half: 30px;
	--sec-padding: 20px;
}
}

@media (min-width:1100px) {
	:root {
	--sec: 80px;
	--sec-half: 40px;
	--sec-padding: 40px;
}
}

/*=====================================================*/
/*　ベース　*/
/*=====================================================*/
* {
	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html,body {
	width: 100%;
}
html {
    font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
	color: #333;
	font-size: 1.5rem;
	background-color: #f0fdff;
	/*background-image: url("img/bg2.jpg");*/
}
@media screen and (min-width:768px) {
	body {
	font-size: 1.6rem;
}
}
@media screen and (min-width:1100px) {
	body {
	font-size: 1.7rem;
}
}
a {
	color: #333;
	text-decoration: underline;
}
a:link,a:visited {
	color: #333;
}
a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
a:focus, *:focus { outline: none; }
img {
	vertical-align: bottom;
	width: 100%;
}
ul {
    list-style:none;
}
ul,li {
	list-style-type:none;
}
/* 太字　*/
.b {
	font-weight: bold;
}
/* 行間　*/
.txt {
	line-height: 1.7;
}
/* インデント　*/
.indent {
	padding-left: 1em;
	text-indent: -1em;
}
/* ボタン
----------------------------------------------------*/
.btn a,
.btn input {
    background: var(--btn-color);
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
	width: 45%;
    max-width: 300px;
    padding: 1em 2em;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: bold;
	text-decoration: none;
	text-align: center;
}
.btn a:hover,
.btn input:hover {
    background: var(--btn-color2);
}
.btn a:after,
.btn input:after {
    content: '';
    width: .5em;
    height: .5em;
	border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 1.5em;
    transition: 0.3s ease-in-out;
}


/* responsive
----------------------------------------------------*/
.sec {
	margin-top: var(--sec);
	margin-bottom: var(--sec);
}
.sec-half {
	margin-top: var(--sec-half);
	margin-bottom: var(--sec-half);
}
@media screen and (max-width:767px) {
	.pc { display: none; }
	.sp { display: block; }
}
@media screen and (min-width:768px) {
	.pc { display: block; }
	.sp { display: none; }
}

@media screen and (min-width:1100px) {
	.inner {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
}


/*=====================================================*/
/*　ヘッダー　*/
/*=====================================================*/
header h1 {
	background-color: var(--btn-color2);
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 1.5em;
	padding: 1em 0;
	margin-bottom: var(--sec);
}
header .close {
	font-weight: bold;
	font-size: 1.2em;
	color: var(--btn-color2);
	text-align: center;
}


/*header h1 {
	width: 80%;
	max-width: 450px;
	margin: 1.5em auto;
}
header .close {
	font-weight: bold;
	font-size: 1.2em;
	color: var(--btn-color2);
	text-align: center;
}*/


/*=====================================================*/
/*　コンテンツ　*/
/*=====================================================*/
.sec .txt-intro {
	font-weight: bold;
	font-size: 1.1em;
	text-align: center;
	padding: 0 1em;
}


/*=====================================================*/
/*　プログレスバー　*/
/*=====================================================*/
/* プログレスバー前のテキスト */
.before-status {
	line-height: 1.8;
	padding: 0 1em 2em;
}
.status ul {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	place-content: center;
	overflow: hidden;
}
.status ul li {
	background-color: #ccc;
	color: #fff;
	font-weight: bold;
	text-align: center;
	position: relative;
	padding: .5em 0;
}
.status ul li:not(:last-of-type) {
	border-right: 2px solid #fff;
}

.status ul li .step {
	font-size: .8em;
	font-weight: normal;
	display: block;
}
.status ul li.current {
	background-color: var(--btn-color);
}
.status ul li.current::before {
	border-color: transparent transparent transparent var(--btn-color);
}

@media screen and (min-width:768px) {
	.status ul li::before,
	.status ul li::after {
	position: absolute;
	content: "";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 45px 0 45px 30px;
	top: 50%;
	transform: translateY(-50%);
}
	.status ul li::before {
	border-color: transparent transparent transparent #ccc;
	left: calc(100% - 12px);
	z-index: 2;
}
	.status ul li::after {
	border-color: transparent transparent transparent #fff;
	left: calc(100% - 9px);
	z-index: 1;
}
	.status ul li:last-of-type::before,
	.status ul li:last-of-type::after {
	display: none;
}
}


/*=====================================================*/
/*　フォーム　*/
/*=====================================================*/
h2 {
	font-weight: bold;
	font-size: 1.1em;
	padding: 0 0 0 .75em;
	border-left: 5px solid var(--btn-color);
	margin-left: 1em;
	margin-bottom: 1em;
}
/*.tbl1 {
	margin-top: 0px;
}*/
.tbl-form {
	--bdc: #ddd; /*テーブル線の色*/
	width: 100%;
	border-bottom: 1px solid var(--bdc);
}
.tbl-form th,
.tbl-form td {
	display: block;
	background-color: #fff;
}
.tbl-form th {
	padding: 1em;
	background-color: #fafafa;
	border-top: 1px solid var(--bdc);
	border-bottom: 1px solid var(--bdc);
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 3.5em;
	column-gap: .5em;
}
.tbl-form th.hissu {
	
	
}
/*必須*/
.tbl-form th.hissu::after {
	content: "必須";
	display: inline-block;
	background-color: var(--btn-color);
	color: #fff;
	font-weight: bold;
	font-size: .8em;
	text-align: center;
	line-height: 1;
	padding: .5em 0 .6em;
	border-radius: 3px;
	margin-left: auto;
	width: 3.5em;
}
.tbl-form td {
	padding: 1.5em 1em;
}

/*注釈*/
.note {
	padding-top: .75em;
	font-size: .8em;
}
.note + .note {
	padding-top: 0;
}

/*スペース*/
.tbl-form .pt-half {
	padding-top: .5em;
}
.tbl-form .pt-1 {
	padding-top: 1em;
}
.tbl-form .pb-half {
	padding-bottom: .5em;
}
.tbl-form .pb-1 {
	padding-bottom: 1em;
}
/*テーブル下注釈*/
.attention {
	max-width: 770px;
	margin: 2em	auto 0;
}


@media screen and (min-width:768px) {
	h2 {
	font-size: 1.3em;
}
	.tbl1 tr {
	display: grid;
	grid-template-columns: 30% 1fr;
}
	.tbl-form th {
	padding: 1.5em;
	border-bottom: none;
	vertical-align: middle;
}
	.tbl-form td {
	padding: 2em 1.5em;
	border-top: 1px solid var(--bdc);
}
/* 下のテーブルPC表示時の必須マークの位置 */
	/*.tbl2 th.hissu {
	display: block;
}
	.tbl-form th.hissu::after {
	margin-left: 1em;
}*/
}

@media screen and (min-width:1100px) {
	h2 {
	margin-left: 0;
}
}


/* フォームの項目
----------------------------------------------------*/
/*　テキストボックス　*/
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	width: 100%;
	border: 1px solid var(--f-bdc);
	outline: none !important;
	box-shadow: none;
	height: 3em;
	padding: var(--f-pdg);
	border-radius: var(--f-bdr);
	font-size: 1.6rem;
	display: block;
}

/*　テキストエリア　*/
textarea {
	height: 10em;
}


/* セレクトボックス
----------------------------------------------------*/
select {
	padding: var(--f-pdg);
	border: 1px solid #ccc;
	appearance: none;
	background-image: url("img/img-select.png");
	background-position: top 50% right 20px;
	background-repeat: no-repeat;
	border-radius: var(--f-bdr);
}
select::-ms-expand {
	display: none
}

/* 横幅 */
.w-ss { width: 20%!important; }
.w-s  { width: 40%!important; }
.w-m  { width: 60%!important; }
.w-l  { width: 80%!important; }
.w-ll { width: 100%!important; }



/* ラジオボタン
----------------------------------------------------*/
/* ラジオボタンを隠す */
.radio-btns input[type=radio].radio-btns__item{
  display: none;
}

.radio-btns label {
  display: inline-block;
}

/* spanの左側にボタンを配置するスペースを作る */
.radio-btns .radio-btns__item + span {
  padding-left: 1.75em;
  display: inline-block;
  position: relative;
}


/* 各パーツを作成 */
.radio-btns .radio-btns__item + span::after,
.radio-btns .radio-btns__item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* after上書き */
.radio-btns .radio-btns__item + span::after {
  opacity: 0;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 3px;
  border: none;
  background: var(--btn-color);
  transform: translateY(-50%);
}
/* checkedの状態 */
.radio-btns .radio-btns__item:checked + span::after {
  opacity: 1;
}



/* チェックボックス
----------------------------------------------------*/
.checkbox input[type=checkbox].checkbox__item{
  display: none;
}

.checkbox label {
  display: inline-block;
}

/* spanの左側にボタンを配置するスペースを作る */
.checkbox .checkbox__item + span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

.checkbox .checkbox__item + span::after,
.checkbox .checkbox__item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.checkbox .checkbox__item + span::before {
  border-radius: var(--f-bdr);
  background-color: #fff;
}

/* after上書き */
.checkbox .checkbox__item + span::after {
  opacity: 0;
  width: 10px;
  height: 15px;
  top: 28%;
  left: 5px;
  border: none;
  border-right: 3px solid var(--btn-color);
  border-bottom: 3px solid var(--btn-color);
  transform: rotate(45deg);
  z-index: 1;
}
/* checkedの状態 */
.checkbox .checkbox__item:checked + span::after {
  opacity: 1;
}

@media screen and (min-width:768px) {
	.checkbox .checkbox__item + span::after {
	top: 12%;
}
}

/* 縦横並び、項目間のスペース
----------------------------------------------------*/
/* 水平配置の項目もスマホの時は垂直に　*/
.sec .mw_wp_form .radio-btns .horizontal-item,
.sec .mw_wp_form .checkbox .horizontal-item {
    display: block;
}
/* ラジオ・チェックボックス垂直配置のスペース　*/
.sec .mw_wp_form .radio-btns span + span,
.sec .mw_wp_form .checkbox span + span {
	margin-top: 1em;
}
/* 水平配置項目のスペース削除　*/
.sec .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

@media screen and (min-width:768px) {
/* 水平配置に戻す　*/
	.sec .mw_wp_form .radio-btns .horizontal-item,
	.sec .mw_wp_form .checkbox .horizontal-item {
    display: inline;
}
/* 水平配置項目のスペース設定　*/
	.sec .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 2em;
}
}

/* きっかけその他テキスト
----------------------------------------------------*/
.other {
	/*margin-top: 1em;*/
}
@media screen and (min-width:768px) {
	.other {
	/*margin-top: .75em;*/
	margin-left: 2em;
}
}


/* 同意の内容
----------------------------------------------------*/
.privacy-wrap {
	padding-left: 1em;
	padding-right: 1em;
	position: relative;
}
.consent-wrap {
	border: 1px solid var(--f-bdc);
	height: 15em;
	padding: 1em;
	border-radius: 3px;
	font-size: .9em;
	line-height: 1.7;
	overflow-y: scroll;
	margin: 2em auto 2em;
	max-width: 960px;
	background-color: #fff;
}
.consent-wrap .ttl-consent {
	font-weight: bold;
	border-bottom: 1px solid #333;
	padding-bottom: .25em;
}
.privacy-txt .ttl-consent {
	margin-bottom: 1em;
}
.consent-wrap dt {
	padding-top: 1em;
}
.consent-wrap ol li {
	list-style-type: decimal;
	margin-left: 1.25em;
}
.consent-wrap ul > li {
	list-style-type: disc;
	margin-left: 1.5em;
}



/*同意チェック*/
.privacy-accept {
	text-align: center;
	margin-bottom: 20px;
}
.privacy-accept label {
	font-weight: bold!important;
}

@media screen and (min-width:768px) {
	.privacy-wrap {
	padding-left: 0;
	padding-right: 0;
}
	.lead-privacy {
	text-align: center;
}
	.consent-wrap {
	margin: 3em auto 3em;
	padding: 2em;
	font-size: .84em;
	height: 20em;
}

}


/* 送信ボタン
----------------------------------------------------*/
.submitBox {
	display: grid;
	grid-template-columns: auto 1fr;
	justify-content: center;
	margin: 2em auto;
	padding-left: 1em;
	padding-right: 1em;
	max-width: 600px;
}
.submitBox .btn input {
	width: 100%;
	max-width: 380px;
}
/* 戻るボタン　*/
.submitBox .btn-back input {
	background-color: #999;
}
.submitBox .btn-back input:hover {
	background-color: #777;
}
/* 同意チェックなしで押せない状態 */
.submitBox input[type="submit"][disabled] {
	background-color: #999;
}

/* 確認画面　*/
.mw_wp_form_confirm .submitBox {
	grid-template-columns: 1fr 1fr;
	gap: 1em;
}


/*.submitBox input[type=submit],
.submitBox input[type=button] {
	background-color: var(--btn-color);
	color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
	text-align: center;
	border-radius: var(--f-bdr);
	padding: 1em 0;
	width: 70%;
	transition: .2s;
}
.submitBox input[type=submit]:hover,
.submitBox input[type=button]:hover {
	opacity: .8;
}
.submitBox input.back {
	background-color: #666;
	width: 30%;
}
.submitBox input:nth-of-type(2) {
	margin-left: 1em;
}*/

/*フォーカス時の枠線*/
/*input:focus,
textarea:focus,
select:focus {
	border-color: var(--btn-color);
}*/

@media screen and (min-width:768px) {
	.submitBox {
    margin: 3em auto;
}
}


/* 入力・確認画面内容切り替え
----------------------------------------------------*/
/*.mw_wp_form_input .txt-confirm {
	display: none;
}
.mw_wp_form_confirm .txt-input {
	display: none;
}*/
.mw_wp_form_confirm .hidden-conf {
	display: none;
}



/* 送信確認画面
----------------------------------------------------*/
.form-conf .check-list {
	display: block;
}
.form-conf .check-list:not(:first-of-type) {
	padding-top: .5em;
}

/*エラーメッセージ*/
.mw_wp_form .error {
	background-color: #f4428b;
	color: #fff!important;
	padding: .5em 1em;
	margin-top: 1em;
	display: inline-block!important;
	position: relative;
}
.mw_wp_form .error::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 1.2em;
	border: 5px solid transparent;
	border-bottom: 5px solid #f4428b;
}
.error + .error,
.error + .error + .error{
	padding-left: 0!important;
}
.error + .error::before,
.error + .error + .error::before {
	content: none;
}
.privacy-wrap + p .error {
	margin-left: auto;
    margin-right: auto;
    display: table!important;
}

/*.input-areaうまくいかん*/
.is-error input,
.is-error textarea {
		background-color: #ffeeee;
}

/*オートコンプリート使用時の背景水色を削除*/
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}




/* 送信完了画面
----------------------------------------------------*/
.form-thanks dt {
	font-weight: bold;
	font-size: 2.2rem;
	text-align: center;
}
.form-thanks dd {
	display: table;
	margin: 0 auto 2em;
	padding-left: 1em;
	padding-right: 1em;
	line-height: 1.7;
}
.form-thanks dd p {
	text-align: center;
	font-size: 1.2em;
	margin: 1.5em 0;
}
.form-thanks dd ul {
	display: table;
	margin-left: 2em;
}
.form-thanks dd ul li {
	text-align: left;
	list-style-type: disc;
	padding-bottom: .5em;
}
.form-thanks .bk-top {
	display: block;
	text-decoration: none;
	background-color: var(--btn-color2);
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 1em 0;
	margin: 2em auto;
	width: 50%;
	max-width: 400px;
	transition: .2s;
	border-radius: 50px;
}
.form-thanks .bk-top:hover {
	opacity: .9;
}

@media screen and (min-width:768px) {
	.form-thanks dt {
	font-size: 3rem;
}
	.form-thanks dd {
	margin: 2em auto 3em;
	text-align: center;
}
}



/* 受付終了画面
----------------------------------------------------*/
.closetxt {
	display: table;
	margin: 15vh auto;
	line-height: 2;
	text-align: center;
}


/*=====================================================*/
/*　フッター　*/
/*=====================================================*/
footer {
	text-align: center;
	background-color: #000;
	color: #fff;
	padding-top: 1em;
	padding-bottom: 1em;
}
footer .copyright {
	font-size: .8em;
}

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