@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
@font-face {
    font-family: "Tempus Sans ITC";
    src: url(../font/TEMPSITC.TTF); 
}

/*================================
入力フォーム部分
==================================*/

table.form-table {
	border-collapse: collapse;
}
table.form-table {
	width: 100%;
}
table.form-table th,
table.form-table td {
	display: block;
	width: 100%;
}
table.form-table td {
	padding: 20px 0 50px;
	text-align: left;
	font-size:	1.6rem;
	line-height: 1.4em;
	color: #555;
}
table.form-table th {
	font-size: 1.6rem;
	line-height:1.5em;
	font-weight: bold;
	color: #555;
	position: relative;
	text-align: left;
}
.popup-body table.form-table td {
	padding-bottom: 30px;
}
.inquiry{
	font-size: 1.4rem;
	padding-top: 10px;
}
a.link{
	color: #1F85E1;
	text-decoration: underline;
}
.form-text{
	margin: 0 0 30px;
	font-size: 1.6rem;
	line-height: 1.8em;
}
.required::after{
	content: "必須";
	color: #fff;
	font-size: 1.2rem;
	font-weight: normal;
	background-color: #3986C5;
	padding: 0 15px 2px;
	margin-left: 15px;
	border-radius: 4px;
	top: -2px;
	position: relative;
	word-break: keep-all;
}


/*=====================================
入力フォーム
======================================*/
input[type="submit"],
input[type="text"],
input[type="password"],
input[type="tel"],
select,
textarea,
button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	border: none;
}

input[type="text"],
input[type="password"],
input[type="tel"],
textarea {
    background: #fff;
    font-size: 16px;
	color: #555;
    padding: 9px 15px;
    transition: 0.8s;
    border-radius: 5px;
    border: 1px solid #BFC9D3;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus {
	background: #FFFEF7;
	/* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
}
/* 
input::placeholder,
textarea::placeholder {
	color: #ccc;
}
 
::-webkit-input-placeholder {
	color: #ccc;
	opacity: 1;
}
 
::-moz-placeholder {
	color: #ccc;
	opacity: 1;
}
 
:-ms-input-placeholder {
	color: #ccc;
	opacity: 1;
} */ 
.input1{
	width:100%;
}
.input2{
	width:100%;
}
.input3{
	width: 200px;
}
.input4{
	width: calc(100% - 90px);
}
.input5{
	width: calc(100% - 165px);
}
.input6{
	width: 100px;
}
.error-form {
	border-color: #e9322d !important;
	-webkit-box-shadow: 0 0 6px #f8b9b7 !important;
	-moz-box-shadow: 0 0 6px #f8b9b7 !important;
	box-shadow: 0 0 6px #f8b9b7 !important;
}
.error-msg {
	color: #ff0000;
	margin-top: 10px;
}
@media only screen and (min-width:768px) /*768px以上*/ {
.input1{
	width: 400px;
}

}
/*=====================================
セレクトボックス
======================================*/
.selectbox {
    display: inline-flex;
    align-items: center;
    position: relative;
	margin-bottom: 15px;
}

.selectbox::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #009E96;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}
.selectbox select {
    appearance: none;
    height: 2.6em;
	/*padding: .4em calc(.8em + 30px) .4em .9em;*/
	padding: 5px calc(15px + 30px) 8px 15px;
    border: 1px solid #BFC9D3;
    border-radius: 3px;
    background-color: #fff;
    color: #2E3036;;
    font-size: 1.6rem;
    cursor: pointer;
}
.birthyear{
	width: 200px;
}
.s-space{
	padding-left: 5px;
	padding-right: 10px;
}
.sp-only {
  display: block;
}

@media screen and (min-width: 575px) {
.sp-only {
    display: none;
  }
.birthyear{
	width: 150px;
}
}
@media only screen and (min-width:768px) /*768px以上*/ {
.s-space{
	padding-right: 15px;
}
}
/*==========================================
チェックボックス
===========================================*/

.checkboxItem {
	display: flex;
	align-items: center;
	column-gap: 8px;
	width: fit-content;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.checkboxItem:not(:last-of-type) {
	margin-bottom: 16px;
}

.checkbox {
	appearance: none;
	position: relative;
	width: 20px;
	height: 20px;
	border: 2px solid #BFC9D3;
	border-radius: 2px;
	cursor: pointer;
}

.checkbox:checked::after {
	content: "";
	position: absolute;
	top: -3px;
	left: 3px;
	width: 18px;
	height: 10px;
	border-bottom: 3px solid #009E96;
	border-left: 3px solid #009E96;
	transform: rotate(-45deg);
}
@media only screen and (min-width:900px) /*900px以上*/ {
.checkboxItem {
	font-size: 1.8rem;
	line-height: -1;
}
}
/*==========================================
ラジオボタン
===========================================*/
.radio-item {
	display: flex;
	flex-flow: column;
	padding: 30px 0;
}
.radio-item label{
	display: inline-block;
	font-size: 1.6rem;
	color: #112a51;
	cursor: pointer;
	margin: 0 0 20px -5px;
}
input[type="radio"] {
	appearance: none;
	}
input[type="radio"] {
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #8c9eb5;
	border-radius: 50%;
	top: -3px;
}
input[type="radio"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #009e96;
	content: '';
}
@media only screen and (min-width:768px) /*768px以上*/ {
.radio-item {
	display: flex;
	flex-flow: column;
	padding: 50px 0;
}
.radio-item label{
	display: inline-block;
	font-size: 1.7rem;
	color: #112a51;
	cursor: pointer;
	margin: 0 0 20px -5px;
}
	}
/*==========================================
	ボタン関係
===========================================*/
button.base {
	width: 100%;
	max-width: 280px;
	background-color: #F0A8AA;
	border: 1px solid #F0A8AA;
	color: #fff;
	padding: 10px 0 12px;
	font-size: 1.8rem;
	border-radius: 35px;
    cursor: pointer;
	margin: 10px 5px;
}
button.ok {
	background-color: #F0A8AA;
	color: #fff;
}
button.cancel {
	border: 1px solid #F0A8AA;
	background-color: #fff;
	color: #e88f8f;
}
button {
	transition: filter 0.3s ease;
}
button:hover {
	filter: saturate(110%) brightness(110%);
}

button:disabled {
	border: 1px solid #DFE4E9;
	background-color: #DFE4E9;
	color: #fff;
	filter: saturate(100%) brightness(100%);
	cursor:not-allowed;
}
button.base2 {
	width: 100%;
	max-width: 280px;
	background-color: #fff;
	border: 1px solid #F0A8AA;
    border-radius: 35px;
	color: #e88f8f;
	padding: 10px 0 12px;
	font-size: 1.8rem;
    cursor: pointer;
	margin: 10px 5px;
}
button.base2:hover {
    background-color: #F9DBDC;
}
button.base3 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
    margin: 0 auto;
    padding: 10px 12px;;
    border: 1px solid #e88f8f;
    border-radius: 5px;
    background-color: #fff;
    color: #e88f8f;
    font-size: 1.8rem;
}
button.base3:hover {
    background-color: f1443e;
}
button.base3::after {
    width: 30px;
    height: 28px;
    margin-left: 15px;
    background-image: url("../img/heart.png");
    content: '';
}
.btn-wrapper{
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-top: 60px;
}
.btn-wrapper2{
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-top: 80px;
    margin-bottom: 100px;
}
/*==========================================
エラー
===========================================*/
.error {
	background-color: #ffeaea !important;
}
.error-message {
	color: #ff0000;
	font-size: 1.4rem;
	margin-top: 10px;
}

