@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;700&display=swap');

:root {
  --font-size_all: 100;
  --font-size:calc(10 * var(--font-size_all)/100);/* 基準値10px */
  /* width size */
  --vw_1100: 1100;
	--Mcolor: #0061E6;
}
* {
  font-family:'Noto Sans JP',serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
body {
  --minF: 1;/* min-font-size / 10 */
  --maxF: 1.6;/* max-font-size / 10 */
  font-size: clamp(var(--minF) * 1rem, var(--minF) * 1rem + (var(--maxF) - var(--minF))/(var(--vw_1000) - var(--vw_375)) * (100vw - var(--vw_375) * 1px) * var(--font-size), var(--maxF) * 1rem);
	padding-bottom: 50px;
}

/* ===============================
	header
 =============================== */
header picture {
  display: block;
  text-align: center;
}
header div {
  padding-bottom: 9px;
  margin: 0 0 20px;
  border-bottom: 1px solid #eee;
}
header div:last-child {
	border-bottom: none;
}
header h1 {
  font-size: clamp(24px,36 / 1100 * 100vw,36px);
  font-weight: 500;
  line-height: 1.1;
}
header h1 small {
  font-size: 62%;
  color: #777;
  display: block;
}
.intro.disFlex,
.intro ul.disFlex {
	justify-content: flex-start;
}
.intro dt {
	width: 10%;
  display: flex;
  justify-content: space-between;
}
.intro dd {
	width: 90%;
  display: flex;
}
.intro dd::before {
  content: '：';
  padding: 0 1%;
}
.intro ul.disFlex li {
	margin-right: 10px;
}
.intro ul.disFlex li::before {
	content: '●';
}
@media screen and (max-width: 767px) {
  .intro dt {
    width: 20%;
  }
  .intro dd {
    width: 80%;
  }
	/* .intro.disFlex,
	.intro ul.disFlex {
		display: block;
	}
	.intro dt,
	.intro dd {
		width: 100%;
	}
  .intro dt {
    display: block
  }
  .intro dd::before {
    content: '';
  } */
}
/* ===============================
	form
 =============================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
  padding: 6px 12px;
  /*font-size: 14px;*/
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
input[type="text"]:focus ,
input[type="email"]:focus ,
input[type="tel"]:focus ,
input[type="password"]:focus ,
input[type="number"]:focus ,
textarea:focus ,
select:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}
input[type="checkbox"],
input[type="radio"] {
  vertical-align: baseline;
}
label {
  cursor: pointer;
}
::placeholder {
  font-size: 12px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance:textfield;
}

.form-item-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.form-item-wrap dt,
.form-item-wrap dd {
  padding-left: 15px;
  padding-right: 15px;
}
.form-item-wrap dt {
  width: 22%;
  /*text-align: right;*/
  font-weight: 500;
  position: relative;
}
.form-item-wrap dd {
  width: 78%;
}

.form-wrap {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid var(--Mcolor);
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}
.form-body {
  padding: 15px;
}
h2 {
	font-size: clamp(18px,20 / 1100 * 100vw,20px);
  color: #fff !important;
  background-color: var(--Mcolor);
  padding: 10px 15px;
  border-bottom: 1px solid var(--Mcolor);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
h3 {
	font-weight: 700;
	font-size: clamp(16px,24 / 1100 * 100vw,24px);
}
.q-title {
  margin-bottom: 10px;
}
/*.required {
  font-size: 12px;
  color: #a94442;
}*/
.required::after {
  content: '＊';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: #a94442;
}
.notes {
  font-size: 12px;
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
.btn-wrap li:not(:last-child){
  margin-bottom: 5px;
}
.btn {
  display: inline-block;
  padding: 7px 50px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn-next {
  color: #fff;
  background-color: #00B1CE;
  border-color: #00859B;
}
.btn-next:hover {
  background-color: #43E3FF;
  border-color: #00859B;
}
.btn-pref {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-pref:hover {
  background-color: #e6e6e6;
  border-color: #adadad;
}
/*確認ページで非表示*/
.mw_wp_form_confirm .disNone {
	display: none;
}
@media  (max-width: 1480px) and (min-width: 768px) {

}
@media screen and (max-width: 767px) {
  input[type="text"] {
    margin-bottom: 5px;
  }
  .form-item-wrap dt {
    width: auto;
    padding-left: 0;
  }
  .form-item-wrap dd {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}


#questionnaire h3,
#questionnaire h3 + p {
  text-align: center;
}
#questionnaire h3 + p {
  font-size: 12px;
}

/* ===============================
	site utility
 =============================== */

/* 最大width幅 */
.w512,.w900,.w1100 {max-width: 100%;}
.w512 {width: 512px;}
.w900 {width: calc(900px + 3%)}
.w1100 {width: calc(1100px + 3%);}

/* テキストの大きさ */
.font_Xs { font-size: 12px; line-height: 24px; letter-spacing: 1px;}
.font_S { font-size: clamp(13px,14 / 1100 * 100vw,14px); line-height: 32px; letter-spacing: 2px;}
.font_R { font-size: clamp(14px,16 / 1100 * 100vw,16px); line-height: 34px; letter-spacing: 3px;}
.font_M { font-size: clamp(16px,22 / 1100 * 100vw,22px); line-height: 31px; letter-spacing: 4px;}

.fontC_Red {
	/* color: #FF0000; */
  color: #a94442;;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
@media screen and (max-width: 767px) {

}
/* テキストの太さ */
.fontW_R { /* Regular */ font-weight: 400;}
.fontW_M { /* Midium */ font-weight: 500;}
.fontW_Sb { /* Semi-Bold */ font-weight: 600;}

/* ボタン */
.btn_typeA {
  /*width: 288px;*/
	display: inline-block;
  background: var(--Mcolor);
	border: 2px solid var(--Mcolor);
  margin: 30px auto;
  text-align: center;
  border-radius: 50px;
	cursor: pointer;
	transition: 0.5s;
}
.btn_typeA:hover {
	background: #fff;
}
.btn_typeA a {
	color: #fff;
  line-height: 1;
  display: block;
  padding: 15px 20px;
}
.btn_typeA a:hover {
	text-decoration: none;
	color: var(--Mcolor);
}
.field-large {
  width: 100%;
}
.field-middle {
  width: 250px;
}
.field-small {
  width: 100px;
}
.field-ssmall {
  width: 50px;
}
@media screen and (max-width: 767px) {

}

/* リスト装飾の種類 */
.list-style {
  display: flex;
  margin-bottom: 5px;
}
.list-style::before {
  display: block;
  padding-right: 10px;
}
.list-style--square::before {
  content: '・';
}
.list-style--annotation::before {
	content: '※';
}
@media screen and (max-width: 767px) {
  .list-style {
    margin-bottom: 0;
  }
  .list-style::before {
    padding-right: 6px;
  }
}

/* ===============================
	parts
 =============================== */
 @media screen and (max-width: 767px) {
  .mwform-radio-field.horizontal-item {
    display: block;
  }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
  }
}
.endTxt {
  font-size: clamp(16px,22 / 1100 * 100vw,22px);
  color: #a94442;
  font-weight: 600;
}