@charset "UTF-8";
/* CSS Document */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  font-size: 62.5%;
}
* {
  box-sizing: border-box;
}

body {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  line-height: 1;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img{
  max-width: 100%;
}
.tel-popup {
  display: none;
}

.btn-h {
  width: 230px;
  margin: 0 auto;
  font-weight: bold;
}

.btn-h a.btn_01 {
  display: block;
  color: #fff;
  font-size: 1.5em;
  padding: 1.5rem 0.5rem;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  border-radius: 25px;
  background: url("../images/mail_FILL0.svg") 20px center no-repeat #f18d42;
  background-size: 10%;
  height: 50px;
}
.btn-h a.btn_01:hover {
  background: url("../images/mail_FILL0.svg") 20px center no-repeat #fbed8e;
  background-size: 10%;
}
.btn-h a.btn_01 span {
  position: relative;
  padding-left: 35px;
}

/*フッタボタン*/
.btn-f {
  width: 300px;
  font-weight: bold;
  margin-left: 60%;
  position: relative;
}

.btn-f a.btn_01 {
  display: block;
  color: #fff;
  font-size: 2em;
  padding: 2rem 0.5rem;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  border-radius: 30px;
  background: url("../images/mail_FILL0.svg") 35px center no-repeat #f18d42;
  background-size: 10%;
  height: 65px;
}
.btn-f a.btn_01:hover {
  background: url("../images/mail_FILL0.svg") 35px center no-repeat #fbed8e;
  background-size: 10%;
}
.btn-f a.btn_01 span {
  position: relative;
  padding-left: 35px;
}

/* ヘッダボタン設定*/
#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 70px;
  z-index: 2;
  width: 100%;
  margin: 0px auto;
  top: 0;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  background: #ffffff;
  display: block;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

#header #header-inner {
  max-width: 700px;
  margin: 0px auto;
  display: block;
}

#logo {
  position: relative;
  width: 230px;
  right: 0px;
  top: 0px;
}

#header-tel {
  display: none;
}

#header-tel .tel {
  width: 200px;
  margin-right: 15px;
  padding-top: 5px;
}
#header-tel li {
  float: left;
}
/***ヘッダー***/

.inner {
  max-width: 700px;
  display: block;
  margin: 0 auto;
  position: relative;
  padding-top: 100px;
}
.title1 {
  width: 650px;
  display: block;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.title1 img {
  width: 100%;
}
/*バナーエリア*/
.bnr_area{
  max-width: 650px;
  margin: 30px auto;
}

/*ストライプ見出し*/
h2 {
  position: relative;
  padding: 0.7rem 0;
  margin: 0.2rem auto;
  background-image: repeating-linear-gradient(-45deg, #bfe3b3 0 2px, transparent 2px 4px);
  background-repeat: no-repeat;
  background-size: 100% 15px;
  background-position: left 0 bottom 0px;
  color: #54b431;
  font-weight: bold;
  font-size: 3em;
  width: 650px;
  text-align: center;
  line-height: 1.2;
}
h2 span{
  font-size: .7em;
}
/*ステップバー*/
.stepbar {
  display: flex;
  width: 650px;
  margin: 30px auto;
  padding: 0;
  list-style: none;
}

.stepbar__item {
  box-sizing: border-box;
  position: relative;
  width: calc((100% - 30px) / 3);
  height: 50px;
  margin: 0 5px;
  padding: 1px;
  background: #54b431;
}

/* 重なり順を設定 */
.stepbar__item:nth-child(1) {
  z-index: 4;
}

.stepbar__item:nth-child(2) {
  z-index: 3;
}

.stepbar__item:nth-child(3) {
  z-index: 2;
}

.stepbar__item:first-child {
  margin-left: 0;
}

.stepbar__item:last-child {
  margin-right: 0;
}

.stepbar__item:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 0;
  left: 1px;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-right: 0;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #54b431;
}

.stepbar__item:not(:first-child)::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-right: 0;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #fff;
}

.stepbar__item-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #d7e7d1;
  font-size: 1.5rem;
  font-weight: bold;
  color: #54b431;
  text-align: center;
}

.stepbar__item-inner--current {
  background: transparent;
  color: #fbfc87;
}

.stepbar__item:not(:last-child) .stepbar__item-inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-right: 0;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #54b431;
}

.stepbar__item:not(:last-child) .stepbar__item-inner::after {
  position: absolute;
  content: "";
  top: 0;
  left: calc(100% - 1px);
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-right: 0;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #d7e7d1;
}

.stepbar__item:not(:last-child) .stepbar__item-inner--current::after {
  display: none;
}

/*アンケート*/
.enquete {
  width: 650px;
  display: block;
  margin: 30px auto;
  border: solid #54b431;
  border-radius: 15px;
  padding-bottom: 10px;
}

.enquete h3 {
  background: #54b431;
  width: 100%;
  font-size: 2em;
  color: #fff;
  margin: 0;
  text-align: center;
  border-radius: 13px 13px 0 0;
  padding: .5em 0;
}

.enquete h4 {
  color: #54b431;
  padding: 10px;
  border-radius: 20px;
  width: 65%;
  font-size: 1em;
  margin: 10px auto;
  text-align: center;
}
.enquete h4.en-title{
  font-size: 1.7em;
}
/*ラジオぼたん*/
label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

label::before,
label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
label.soudanLabel::before {
  background: none;
  border: none;
}
label.soudanLabel::before {
  background: none;
  border: none;
}

label::after {
  background-color: #54b431;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 7px;
}

input:checked + label::after {
  opacity: 1;
}

/*日付*/
.date {
  font-weight: bold;
  color: #646464;
  font-size: 1.1em;
  padding: 0;
  margin: 0;
}
.bg-y {
  background: #f5f7fa;
  border: 1px solid #cccccc;
  font-size: 1em;
  margin: 0;
  border-radius: 10px;
  font-weight: bold;
  color: #646464;
}

#name-wrapper {
  width: 90%;
  display: block;
  text-align: center;
  padding: 0;
  margin: 20px auto 20px auto;
}
#post-wrapper {
  width: 90%;
  text-align: left;
  padding: 0;
  margin: 20px 0 20px 50px;
  flex-wrap: wrap;
}
#add-wrapper {
  width: 90%;
  text-align: left;
  padding: 0;
  margin: 20px 0 20px 50px;
}
#build-wrapper {
  width: 90%;
  text-align: left;
  padding: 0;
  margin: 20px 0 20px 50px;
}
#build-wrapper .name-sytle {
  width: 68px;
}
.name-width {
  width: 125px;
  margin: 0 10px;
}
.attention {
  font-size: 0.7em;
}
.ta-center {
  text-align: center;
}
.ta-left {
  text-align: left;
}
.name-sytle {
  font-weight: bold;
  color: #646464;
  position: relative;
  line-height: normal;
}
.pb-30{
  padding-bottom: 30px;
}
.text-note{
  font-size: 15px;
  line-height: normal;
  color: #d74d4d;
  font-weight: bold;
  text-align: center;
}
.w-25 {
  width: 25px;
  margin: 0 10px;
}
.w-50 {
  width: 50px;
  margin: 0 10px;
  font-weight: bold;
  color: #646464;
  padding-left: 7px;
}
.w-75 {
  width: 75px;
  margin: 0 10px;
}
.w-80 {
  width: 80px;
  margin: 0 10px;
  font-weight: bold;
  color: #646464;
  padding-left: 7px;
}
.w-100 {
  width: 100px;
  margin: 0 10px;
}
.w-120 {
  width: 120px;
  margin: 0 10px;
}
.w-125 {
  width: 125px;
  margin: 0 10px;
}
.w-150 {
  width: 150px;
  margin: 0 10px;
}
.w-170 {
  width: 170px;
  margin: 0 10px;
  font-size: 0.9em;
  height: 40px;
  border-radius: 12px;
  padding-left: 10px;
}
.w-210 {
  width: 210px;
  margin: 0 6px;
  font-size: 0.9em;
  height: 40px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  color: #646464;
}
.w-250 {
  width: 250px;
  margin: 0 10px;
}
.w-280 {
  width: 250px;
  margin: 0 10px;
}
.w-min {
  width: 84%;
  min-width: 84%;
  margin: 0 10px;
}
.w-max {
  width: 84%;
  max-width: 84%;
  margin: 0 10px;
}
.w-auto {
  width: auto;
  margin: 0 10px;
}
.display-b {
  display: inline;
}
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.gender-area {
  width: 100%;
  border-top: 1px solid #54b431;
  display: block;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #646464;
  font-size: 1.7em;
}

.gender-radio {
  font-weight: bold;
  color: #646464;
  margin: 5px;
  padding: 0 40px;
}

.en-check {
  width: 100%;
  margin: 0 auto;
  list-style: none;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(2,4fr);
  column-gap: 2%;
}

.t-page1 {
  padding: 10px;
  color: #646464;
  font-size: 1.4em;
}
.ta-c {
  text-align: center;
  font-weight: bold;
  line-height: 150%;
}
/*相談内容を選択*/
.en-check p {
  color: #646464;
  font-size: 1.5em;
  margin: 0;
  font-weight: 600;
}
.boxstyle {
  transform: scale(1.3);
  margin: 0 8px 0 0;
}

.ECM_CheckboxInput {
  padding: 12px 0;
  display: flex;
  cursor: pointer;
}
.ECM_CheckboxInput3 {
  padding: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  align-items: center;
}
.boxstyle {
  margin: 0;
  width: 0;
  opacity: 0;
}
.ECM_CheckboxInput:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}
.ECM_CheckboxInput3:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}
.boxstyleECM_CheckboxInput-Input:focus + span .ECM_CheckboxInput-DummyInput {
  border: dashed 2px #555555;
}
.boxstyleECM_CheckboxInput-Input:focus + .ECM_CheckboxInput-DummyInput3 {
  border: dashed 2px #555555;
}
.boxstyle:checked + span .ECM_CheckboxInput-DummyInput {
  background: #555555;
}
.boxstyle:checked + .ECM_CheckboxInput-DummyInput3 {
  background: #555555;
}
.boxstyle:checked + span .ECM_CheckboxInput-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 51%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #ffffff;
}
.boxstyle:checked + .ECM_CheckboxInput-DummyInput3::before {
  content: "";
  display: block;
  position: absolute;
  top: 44%;
  left: 50%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #ffffff;
}
.boxstyle:checked + span .ECM_CheckboxInput-DummyInput::after {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 56%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #ffffff;
}
.boxstyle:checked + .ECM_CheckboxInput-DummyInput3::after {
  content: "";
  display: block;
  position: absolute;
  top: 38%;
  left: 56%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #ffffff;
}
.ECM_CheckboxInput-DummyInput {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: solid 2px transparent;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-right: 10px;
}
.ECM_CheckboxInput-DummyInput3 {
  position: relative;
  top: -73px;
  left: -58px;
  display: block;
  width: 28px;
  height: 28px;
  border: solid 2px transparent;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.ECM_CheckboxInput-LabelText {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  color: #646464;
}
.ECM_CheckboxInput-LabelText span{
  display: inline-block;
  font-size: .8em;
}
.en-check li img {
  width: 100%;
  border-color: #c8c8c8;
}
.en-check li:last-child img {
  height: 116px;
}

/*相談場所を選択*/
.consul-check p {
  color: #646464;
  font-size: 1em;
  text-align: center;
  margin: 0;
  font-weight: 600;
}
.consul-check li {
  width: 30%;
  float: left;
  margin-right: 2%;
  display: block;
  margin-bottom: 20px;
  margin-top: 20px;
}

.consul-check li img {
  height: 55px;
  border-color: #c8c8c8;
}

.must {
  color: #d74d4d;
  font-size: 0.8em;
  font-weight: bold;
  position: absolute;
  margin: 4px 0 0 5px;
}
.must_box{
  display: inline-block;
  color: #fff;
  background: #d74d4d;
  border-radius: 2px;
  padding: 2px 4px;
  font-size: .8em;
  margin-right: 10px;
}
.any-icon {
  color: #646464;
  font-size: 0.8em;
  font-weight: bold;
  margin: 5px;
  position: absolute;
}
.any_box{
  display: inline-block;
  color: #fff;
  background: #989898;
  border-radius: 2px;
  padding: 2px 4px;
  font-size: .8em;
  margin-right: 10px;
}
.name-sytle .must,
.name-sytle .any-icon {
  position: relative;
}

.pagetop-sp {
  display: none;
}
.pagetop {
  display: flex;
  justify-content: flex-end;
  margin: 60px 30px 20px auto;
}
.pagetop img {
  width: 120px;
}
.message-area{
  padding-bottom: 40px;
}
.message {
  display: block;
  width: 90%;
  margin: 0 5%;
  background: #f5f7fa;
  display: block;
  font-size: 16px;
  padding: 0.3em 0.7em;
  border: 1px solid #cccccc;
  border-radius: 10px;
  line-height: 1.4;
}
.message-tit {
  color: #646464;
  font-size: 1.3em;
  margin: 0;
  padding: 10px 5%;
  font-weight: 700;
}
.item-num{
  text-align: center;
  font-size: 16px;
  width: 650px;
  margin-inline: auto;
  font-weight: bold;
  color: #646464;
}
.btn-c {
  width: 650px;
  margin-right: auto;
  margin-left: auto;
  font-weight: bold;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.btn_01 {
  display: flex;
  width: 44%;
  color: #fff;
  font-size: 1.8em;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  border-radius: 35px;
  background: url(../images/arr_hoso.svg) 90% 45% no-repeat #f18d42;
  background-size: 10%;
  height: 50px;
  letter-spacing: normal;
  font-weight: 900;
  border: none;
  align-items: center;
  justify-content: center;
  padding-right: 1em;
}
.btn_01.btn_text{
  font-size: 14px;
  line-height: 1.4;
}
.btn_01.btn_text_send{
  font-size: 16px;
  padding-right: 2em;
}
.btn-c a {
  text-decoration: none;
}
.btn-c a.btn_01:hover {
  border: 1.5px solid #f18d42;
  background-color: #fff;
  color: #f18d42;
  background-size: 10%;
}
.btn_01:hover {
  background: url("../images/arr_hoso.svg") 95% 45% no-repeat #f18d42;
  background-size: 10%;
  opacity: .6;
}
.btn-c a.btn_01 span {
  position: relative;
}
.btn-c a {
  display: block;
  width: 44%;
}
.btn-c a span {
}
.btn-c a .btn_02 {
  display: block;
  width: 100%;
  color: #666666;
  font-size: 1.8em;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  border-radius: 35px;
  height: 50px;
  letter-spacing: normal;
  font-weight: 900;
  border: none;
  background: url(../images/arr_hoso_2_gy.svg) 25% 45% no-repeat #dcdcdc;
  background-size: 10%;
  padding: 1.4rem 0 1.4rem 1.5rem;

}
.btn-c a .btn_02 :nth-child(3n) {
  margin-right: 4%;
}
.btn-c a .btn_02:hover {
  background: url("../images/arr_hoso_2_gy.svg") 20% 45% no-repeat #dcdcdc;
  background-size: 10%;
  opacity: .6;
}
.btn-c a .btn-c a.btn_02 span {
  position: relative;
  padding-right: 45px;
}

h3 {
  color: #54b431;
  font-size: 2em;
  text-align: center;
}

/***フッタのメニュー***/

footer {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #ffffff;
  color: #646464;
  display: block;
  text-align: center;
  font-size: 0.9em;
  line-height: 200%;
}

footer .footer-wrapper {
  margin: 0 auto;
  padding: 0;
  display: block;
  border-top: #d5efcb 3px solid;
  height: auto;
}
footer .small {
  margin: 30px auto;
  display: inline-block;
}
footer .footer-menu {
  font-size: 1.2em;
  margin: 20px auto;
}
footer .footer-menu a {
  color: #646464;
}

.footer-wrapper ul {
  list-style: none;
  padding: 0;
  max-width: 770px;
  margin: 10px auto;
}
.footer-wrapper ul .logo {
  width: 28%;
  display: block;
  float: left;
  padding-top: 15px;
}
.footer-wrapper ul .logo img {
  width: 100%;
}
.footer-wrapper ul .add {
  width: 31%;
  display: block;
  float: right;
  padding-top: 15px;
}
.footer-wrapper ul .add img {
  width: 100%;
}

.footer-inquiry {
  width: 800px;
  display: block;
  margin: 0px auto;
  list-style: none;
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-inquiry .freedial {
  width: 300px;
  display: block;
  float: left;
}
.footer-inquiry .freedial img {
  width: 100%;
}
.form_footerbtn{
  display: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}
p.error {
  color: red;
  font-size: 1.5rem;
  text-align: center;
  margin: 10px auto 12px;
  font-weight: bold;
}
input {
  padding: 0.3em 0.7em;
  border-radius: 10px;
}
.confirm-text {
  text-align: center;
  font-weight: bold;
  line-height: 150%;
}
.contact-title{
  color: #54b431;
  font-size: 2em;
  text-align: center;
}
.contact-message {
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  padding: 10px;
  color: #646464;
  font-size: 1.4em;
}
.contact {
  padding: 10px;
  color: #646464;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 290%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
  position: relative;
}
.contact .d-flex {
  align-items: flex-start;
}
.contact-key {
  display: inline-block;
  text-align: right;
  width: 220px;
  padding: 0;
  vertical-align: top;
}
.contact-val {
  margin-left: 70px;
  width: calc(100% - 150px - 70px);
}
ul.contact-val {
  list-style: none;
  padding: 0;
  margin: 0 0 0 70px;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
#otherCheckArea .d-flex {
  justify-content: flex-start;
  padding: 0 0 0 5%;
}
#otherCheckArea .ECM_CheckboxInput {
  padding: 5px 0;
  width: 120px;
  flex-direction: row;
}
.serviceAgree {
  margin: 20px 0 0;
  padding: 0 30px;
}
.serviceAgree p {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  font-weight: bold;
}
.checkAgree label {
  font-size: 16px;
  padding-left: 5px;
  display: inline-block;
}
.checkAgree .ECM_CheckboxInput-DummyInput {
  margin-right: 15px;
}
.checkAgree a {
  font-size: 16px;
}
.checkAgree input:checked + label::after {
  content: unset;
}

.address-area .d-flex {
  justify-content: flex-start;
}

.mendan-area {
  width: 100%;
  border-top: 1px solid #54b431;
  display: block;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #646464;
}
.mendan-area__comment {
  font-size: 13px;
  line-height: normal;
  margin-bottom: 20px;
}
.mendan-area > div {
  margin-bottom: 10px;
}
.mendan-area .name-sytle {
  font-size: 16px;
  margin-right: 20px;
}
.mendan-area h4 {
  font-size: 1.7em;
}
.mendan-area input[type="text"],
.mendan-area input[type="date"] {
  font-size: 16px;
}
.mendan-area select {
  font-size: 16px;
}
.ui-datepicker {
  width: 250px;
  padding: .2em .2em 0;
  display: none;
  font-size: 18px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  font-size: 18px;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}
.sp {
  display: none;
}
.consul-check {
  margin: 0;
}