@charset "utf-8";
/* -------------------------------------- 
    defult style reset 
 -------------------------------------- */
input,button,select,textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	resize: vertical;
}
/* style input */
form input {
	outline: none;
}
/* Chrome, Safari */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
  opacity: 1.0;
  -webkit-transition: all .2s;
  transition: all .2s;
  color: rgba(0,0,0,0.3);
}
/* Firefox */
input::-moz-placeholder,
textarea::-moz-placeholder{
  opacity: 1.0;
  -webkit-transition: all .2s;
  transition: all .2s;
  color: rgba(0,0,0,0.3);
}
/* Firefox 18以前 */
input:-moz-placeholder,
textarea:-moz-placeholder{
  opacity: 1.0;
  -webkit-transition: all .2s;
  transition: all .2s;
  color: rgba(0,0,0,0.3);
}

/* -------------------------------------- 
    contact common
 -------------------------------------- */
/*item-table -------------------- */
.item-table {
	text-align: left;
}
.item-table > .box-formitem {
    display: table;
    table-layout: auto;
    border-top: 1px solid #dfe6e7;
    width: 100%;
    box-sizing: border-box;
}
.item-table > .box-formitem:last-child {
    border-bottom: 1px solid #dfe6e7;
}

.item-table > .box-formitem dt, 
.item-table > .box-formitem dd {
    display: table-cell;
    padding: 25px 20px;
}
.item-table > .box-formitem dt {
    width: 460px;
    font-weight: bold;
    vertical-align: middle;
    background-color: #f8f8f8;
	padding-right: 70px;
	position: relative;
}


/*need -------------------- */
.need {
	display: inline-block;
	padding: 5px 8px;
	background-color: #bd1609;
	border-radius: 3px;

	color: #fff;
	font-size: 14px;
	line-height: 1;
	
	position: absolute;
	right: 17px;
	top: 25px;
	z-index: 1
}

@media (max-width: 767px) {
	.need {
		right: 10px;
		top: 15px;
	}
}

/*box-radio -------------------- */
.box-formitem.box-radio .radio-area {
	display: flex;
	flex-wrap: wrap;
    position: relative;
}
.box-formitem.box-radio .radio-area.l-1 > * {
    width: 100%;
}
.box-formitem.box-radio .radio-area.l-2 > * {
    width: 50%;
}
.box-formitem.box-radio .radio-area.l-3 > * {
    width: 33.3333%;
}

@media (max-width: 991px) {
    .box-formitem.box-radio .radio-area.m-1 > * {
        width: 100%;
    }
    .box-formitem.box-radio .radio-area.m-2 > * {
        width: 50%;
    }
    .box-formitem.box-radio .radio-area.m-3 > * {
        width: 33.3333%;
    }
}
@media (max-width: 767px) {
	.item-table > .box-formitem,
	.item-table > .box-formitem dt,
	.item-table > .box-formitem dd {
		display: block;
	}
	.item-table .box-formitem dt {
		width: 100%;
		padding: 10px;
	}
	.item-table > .box-formitem dd {
		padding: 20px 10px;
	}
}
@media (max-width: 480px) {
	.item-table > .box-formitem dt {
		position: relative;
	}
	.item-table > .box-formitem dt,
	.item-table > .box-formitem dd,
	.item-table > .box-formitem dd .f-bold {
		font-size: 15px;
    }
    .item-table > .box-formitem dt::before {
		left: 0;
	}
    .box-formitem.box-radio .radio-area.s-1 > * {
        width: 100%;
    }
    .box-formitem.box-radio .radio-area.s-2 > * {
        width: 50%;
    }
    .box-formitem.box-radio .radio-area.s-3 > * {
        width: 33.3333%;
    }
}

/* -------------------------------------- 
	contact index
 -------------------------------------- */
/* input -------------------- */
.input {
	position: relative;
	z-index: 1;
	display: block;
	vertical-align: top;
}
.input__field {
	position: relative;
	display: block;
	padding: 1em;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}
.input__field:focus {
	outline: none;
}
.input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	color: #6a7989;
	font-weight: bold;
	font-size: 70.25%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-sizing: border-box;
}
.input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}

/* animation -------------------- */
.input__field--anm {
	width: 100%;
    display: block;
	background: #fff !important;
	box-shadow: 0px 0px 0px 1px rgb(118,118,18);
	border-radius: 2px;
	color: #000;
	-webkit-transition: box-shadow 0.3s;
	transition: box-shadow 0.3s;
	font-size: 15px;
	font-family: "ヒラギノ角ゴ Pro W6",'HiraKakuPro-W6',"Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
.input__label--anm {
	padding: 0;
	width: 100%;
	text-align: left;
}
.input__label--anm::after {
	content: '';
  	position: absolute;
  	top: 0;
  	z-index: -1;
  	width: 100%;
  	height: 100%;
	box-shadow: 0px 0px 0px 0px;
	color: rgba(135,135,135, 0.8);
}
.input__field--anm:focus {
	box-shadow: 0px 0px 0px 1px #000;
	-webkit-animation: background 0.55s ease-in;
	-moz-animation: background 0.55s ease-in;
	animation: background 0.55s ease-in;
	background: #FFFFFF !important;
}
.input__field--anm:focus + .input__label--anm {
	pointer-events: none;
}
.input__field--anm:focus + .input__label--anm::after,
.input__field--anm:focus + grammarly-btn + .formError + .input__label--anm::after,
.input__field--anm:focus + .formError + .input__label--anm::after {
	-webkit-animation: anim-shadow 0.3s forwards;
	animation: anim-shadow 0.3s forwards;
}
.input__label-content--anm {
	padding: 0.75em 0.15em;
}
@-webkit-keyframes anim-shadow {
	to {
		box-shadow: 0px 0px 100px 50px;
    	opacity: 0;
	}
}
@keyframes anim-shadow {
	to {
		box-shadow: 0px 0px 100px 50px;
    	opacity: 0;
	}
}
@-webkit-keyframes background {
  0% {
    background: transparent;
  }
  66% {
    background: #FFFFFF;
  }
  100% {
    background: #FFFFFF;
  }
}
@-moz-keyframes background {
  0% {
    background: transparent;
  }
  66% {
    background: #FFFFFF;
  }
  100% {
    background: #FFFFFF;
  }
}
@keyframes background {
  0% {
    background: transparent;
  }
  66% {
    background: #FFFFFF;
  }
  100% {
    background: #FFFFFF;
  }
}

/* radio checkboc style -------------------- */
input[type=radio] {
  visibility: hidden;
  position: absolute;
}
.radio {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: block;
  margin: 0;
  padding: 12px 12px 12px 42px;
  vertical-align: middle;
  cursor: pointer;
}
.radio:hover {
  background-color: #f7f7f7;
}
.radio:hover:after {
  border-color: #aaa;
}
.radio:after {
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
    position: absolute;
    margin-top: -11px;
    width: 22px;
    height: 22px;
    top: 50%;
    left: 11px;
    display: block;
    border: 2px solid #bbb;
    border-radius: 50%;
    content: '';
}
.radio:before {
	position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    margin-top: -7px;
    width: 14px;
    height: 14px;
	border-radius: 50%;
	background-color: #00aecb;
	content: '';
	opacity: 0;
	-webkit-transform: scale3d(0.5,0.5,1);
	transform: scale3d(0.5,0.5,1);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
	transition-timing-function: cubic-bezier(0.2,1,0.3,1);
}

input[type=radio]:checked + .radio:before {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}

/* checkbox -------------------- */
.box-chk {
	padding-bottom: 0;
	margin-bottom: 0;
}
.box-chk label {
    position: relative;
    display: inline-block;
    word-break: break-all;
	padding: 12px 12px 12px 15px;
	box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}
.box-chk label:hover {
    background-color: #ecf9fc;
    cursor: pointer;
}
.box-chk label:hover:after {
    border-color: #aaa;
}
.box-chk label input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.box-chk label span {
    display: inline-block;
}
.box-chk label input[type="checkbox"] + span {
    position: relative;
    padding: 0 0 0 35px;
}
.box-chk label input[type="checkbox"] + span::before {
    border-color: #bbb;
}
.box-chk label input[type="checkbox"]:checked + span::before {
    background-color: #333;
    border-color: #00aecb;
}
.box-chk label span {
    display: inline-block;
}
.box-chk label input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.box-chk label input[type="checkbox"] + span::before,
.box-chk label input[type="checkbox"] + span::after {
  position: absolute;
  left: 0;
  display: inline-block;
  content: '';
  box-sizing: border-box;
  transition: background .3s ease,border .3s ease;
}
.box-chk label input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 22px;
  height: 22px;
  border: 2px #bbb solid;
  border-radius: 5px;
  top: calc(50% - 11px);
}
.box-chk label input[type="checkbox"] + span::after {
  z-index: 1;
  margin: 5px 8px;
  width: 6px;
  height: 9px;
  top: calc(50% - 9px);
}
.box-chk label input[type="checkbox"]:checked + span::before {
  background-color: #00aecb;
}
.box-chk label input[type="checkbox"]:checked + span::after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}


/* .ziparea --------------------  */
.ziparea {
	display: flex;
	flex-wrap: wrap;
    align-items: center;
}
.ziparea .postmark {
    padding-right: 10px;
}
.ziparea .input {
    width: 240px;
}
.ziparea .t-link {
    width: auto;
    padding-left: 15px;
}
.t-link a {
    display: inline-block;
    padding: 5px 5px 5px 25px;
    position: relative;
}
.t-link a::before {
	content:"";
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #007ebf;
    border-right: 1px solid #007ebf;
	position: absolute;
	left: 7px;
	top: 50%;
	transform: translateY(-55%) rotate(-45deg);
}

/* box-privacy-------------------- */
.box-privacy {
	padding-top: 50px;
	text-align: center;
}
.box-privacy .privacy-desc {
	padding-bottom: 20px;
}
.box-privacy .txtlink {
	color: #00aecb;
}

/* box-chk：”同意する”ボタン */
#contact .box-chk label:hover {
  background-color: #f7f7f7;
  cursor: pointer;
}
#contact .box-chk label input[type="checkbox"] + span::before,
#contact .box-chk label input[type="checkbox"] + span::after {
/*   top: 3px; */
}

@media (max-width: 480px) {
	.box-privacy {
		padding-block: 30px;
		text-align: left;
	}
    .radio {
		padding: 8px 10px 8px 42px;
	}
	.formError {
		width: 100%;
	}
	.formError .formErrorContent {
	    font-size: 14px;
	}
}

/* button --------------------  */
.btn-area {
	display: flex;
	justify-content: center;
	gap: 10px 10px;
}
button {
    border: 0;
	padding: 0;
    display: inline-block;
    border-radius: 999999px;
    box-sizing: border-box;
    position: relative;
	text-align: center;
	line-height: 70px;
	overflow: visible;
    resize: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    white-space: nowrap;
}
button .txt {
	display: inline-block;
	font-size: 15px;
}
button.btn-reset,
button.btn-back {
    color: #fff;
    background-color: #3d3a2b;
	width: 150px;
}
button.btn-confirm {
    color: #fff;
	background-color: #00aecb;
	width: 250px;
}
button.btn-confirm .txt {
	position: relative;
	padding-right: 30px;
}
button.btn-confirm .txt::before {
	content: "";
	display: block;
	width: 9px;
	height: 10px;
	background-color: #fff;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -5px;
	z-index: 1;
}
.btn.btn-reset:focus {
	background-color: #eee;
}
button:hover {
	cursor: pointer;
}

@media screen and (max-width: 480px) {
	.btn-area {
		gap: 10px 5px;
	}
	.box-select,
	.box-select label,
	.box-select label select,
	.selectlabel {
		display: block;
		width: 100%;
	}
    button.btn-reset,
	button.btn-back {
		width: 100px;
	}
	button.btn-confirm {
		width: 190px;
    	min-width: 190px;
	}
	button.btn-confirm .txt {
		padding-right: 20px;
	}
	button.btn-confirm .txt::before {
		right: 0px;
	}
}

/* -------------------------------------- 
	contact confirm
 -------------------------------------- */
.box-table.box-form > dl.formitemconf > dd {
	padding-left: 17px;
}

@media screen and (max-width: 480px) {
	.box-table.box-form > dl.formitemconf > dd,
	.box-table.box-form > dl.box-radio > dd {
		padding-top: 0.5em;
		padding-bottom: 1.2em;
	}
}


/* -------------------------------------- 
	contact form style
 -------------------------------------- */
.sec-contact {
}
.sec-contact .contact-ttl {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 20px;
}
.sec-contact .contact-desc {
	text-align: center;
	padding-bottom: 50px;
}

@media (max-width: 767px) {
	.sec-contact .contact-wrap {
		padding: 0 10px;
	}
	.sec-contact .contact-desc {
		text-align: left;
		padding-bottom: 30px;
	}
}

.sec-form {
	padding-bottom: 50px;
}

/* -------------------------------------- 
	Google reCAPTCHA
 -------------------------------------- */
.grecaptcha-badge {
	bottom: 100px !important;
}










