@charset "utf-8";
#maincol * {
	box-sizing: border-box;
}
:root {
	--main-color: #068ada;
	--bg-color: #e3f1ff;
}

/* iOSでのデフォルトスタイルをリセット
============================================== */
input[type="submit"],input[type="reset"],input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="reset"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
.span_indent{
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  padding-top: 5px;
}

/* form共通
============================================== */
.w_all {width: 100%;}
.w_full {width: 100%;}
.w_middle {width: 75%;}
.w_half {width: 50%;}

.required {color: red;}

input[type="text"], input[type="email"], input[type="password"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 2px;
  border: 1px solid #aaa;
  padding: 8px 5px;
    box-sizing: border-box;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
  box-shadow: 0 0 7px #aaa;
}
select {
    padding: 5px;
    border: 1px solid #aaa;
}
/* checkbox ========== */
.form-input label {
  width: 100%;
  display: flex;
	align-items: center;
}
[type="checkbox"], [type="radio"] {
    padding: 0;
    display: inherit;
    margin-right: 8px;
    transform: scale(1.2);
    height: 16px;
}
/* 確認・送信 ========== */
input[type="submit"], input[type="reset"] {
    padding: 0;
    width: 150px;
    height: 70px;
    color: #fff;
    margin: 0;
    background: var(--main-color);
    border-radius: 5px;
    font-size: 1em;
  font-family: 'Noto Sans JP', "sans-serif", Meiryo;
}
/* リセット・戻る ========== */
input[type="reset"], input[type="submit"].back {
    background: #CBCBCB;
}
input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
    opacity: .8;
}
input[type="submit"]:active, input[type="reset"]:active, button:active {
    opacity: .8;
}
input.zipcode-3 {
    width: 45px;
}
input.zipcode-4 {
    width: 55px;
}
/* checkbox ========== */
.checkbox_item {
	width: 100%;
	padding: 10px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.checkbox_item label {
    width: calc(50% - 7.5px);
    display: block;
	@media screen and (max-width: 767px) {
		width: 100%;
	}
}
[type="checkbox"], [type="radio"] {
    padding: 0;
    display: inherit;
    margin-right: 8px;
    transform: scale(1.2);
    height: 16px;
}
/* error
============================================== */
p.errmsg {
  color:#ff0000;
  margin:0px;
}
.msgarea {
  color:#ff0000;
  margin: 20px 0px;
  padding: 10px 20px 10px 20px;
  background-color: #eeeeee;
}
.top_text {
	font-weight: bold;
	font-size: 18px;
}
.top_caution {
    margin: 1em 0 0;
}
.sub_text {
    margin: 1em 0 5px;
}
.sub_text.mt_0 {
    margin-top: 0;
}
/* 以下ページごと
============================================== */
[type="checkbox"] {
    padding: 10px;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    accent-color: #5fa094;
}
.btn_box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 690px;
    margin: 70px auto 0;
    font-weight: bold;
}
/* TOPへ戻る ========== */
.back_home {
    text-align: center;
    margin: 40px 0 0;
}
.back_home a {
    color: #fff;
    padding: 15px 35px;
    background: var(--main-color);
    border-radius: 5px;
	display: inline-block;
	text-decoration: none;
}
/* table ========== */
.form-field {
    display: table-cell;
    width: 260px;
    padding: 20px 10px 20px 20px;
    vertical-align: middle;
    text-align: start;
    color: #000;
    background: var(--bg-color);
    border-bottom: 1px solid #595656;
    @media screen and (max-width: 767px) {
      border-bottom: none;
    }
}
.form-input {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #595656;
}
.form-element-container {
  display: table;
  width: 100%;
  margin: 30px auto 0;
	border-top: 1px solid #595656;
}
.form-field-input-pair {
  display: table-row;
}
.last_checkbox {
	padding: 15px;
}
/* 確認部分
============================================== */
.btn_box {
    margin: 50px auto 0;
    background: #fff;
    padding: 40px 15px;
  gap:30px;
}
.btn_des {
}
/* 三角フロー図
============================================== */
.flow-triangle{
  list-style-type: none;
  display:table;
  width:100%;
  padding:0;
  margin:0;
  overflow:hidden;
}
.flow-triangle li {
    display: table-cell;
    position: relative;
    background: #CBCBCB;
    padding: 0.7em 0.5em 0.6em 2em;
    color: #000;
    font-weight: bold;
    text-align: center;
    width: 33%;
}
.flow-triangle li:last-child{
  padding-right: 1em;
}
.flow-triangle li:last-child:before,
.flow-triangle li:last-child:after{
  display:none;
}
.flow-triangle li:before,
.flow-triangle li:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.flow-triangle li:before{
  top:-15px;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 1;
}
.flow-triangle li:after{
  top:-15px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #CBCBCB;
  border-width: 40px 0 40px 1em;
  z-index: 1;
}
.flow-triangle li.is-current {
    background: var(--main-color);
    color: #fff;
}
.flow-triangle li.is-current:after{
  border-color: transparent transparent transparent var(--main-color);
}
.flow-triangle span {
    display: inline-flex;
    justify-content: center;
    margin-right: 10px;
    width: 23px;
    height: 23px;
    background: #fff;
    color: #000;
    line-height: 1.5;
}
.flow-triangle .is-current span {
    background: #fff;
    color: var(--main-color);
}
/* ページ固有
------------------------------------------------------
------------------------------------------------------*/

.form-input .checkbox_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 10px;
}
.form-input .checkbox_list > label {
	width: auto;
}
.form-input .checkbox_list.direct > label {
	width: 100%;
}

.btn_ff{
  display: flex;
  gap: 20px;
}

/* 固有レスポンシブ
------------------------------------------------------
------------------------------------------------------*/
/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px){}

@media screen and (max-width: 767px) {
	.root-container {
		margin: 50px auto 0;
	}
  .w_full ,.w_middle , .w_half.mail{
    width: 100%;
}
  .form-element-container {
    margin: 30px auto 0;
  }
  .form-field-input-pair {
    display: block;
}
  .form-field {
    display: block;
    box-sizing: border-box;
    vertical-align: middle;
    width: 100%;
    padding: 15px 5%;
    text-align: left;
}
  .form-input {
    width: 100%;
    padding: 15px 5%;
    box-sizing: border-box;
    display: block;
  }
input[type="submit"], input[type="reset"], button {
    width: 140px;
    height: 60px;
}
/* 三角フロー図 ----------------------------*/
.flow-triangle {
    display: flex;
}
.flow-triangle span {
    display: block;
    margin: 0 auto 2px;
    width: 20px;
    height: 20px;
    font-size: 14px;
}
.flow-triangle li {
    padding: 8px 1% 5px 3%;
    font-size: 12px;
    width: 33%;
}
}
