@charset "UTF-8";

img {
  max-width: 100%;
}
a:hover {
  opacity: 0.7;
}

/*----------------------------------------------------
	HEADER STYLE
----------------------------------------------------*/
body {
  background-color: #ECFDE2;
}
/*----------------------------------------------------
	MV STYLE
----------------------------------------------------*/
.mv {
  vertical-align: bottom;
  padding-top: 65px;
}
.mv_head {
  width: 428px;
  max-width: 100%;
  height: 65px;
  padding: 0 0 0 1rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  overflow: visible;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
              rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.left {
  display: flex;
  align-items: center;
}

.header_logo:first-child {
  width: 30%;
}

.header_logo:nth-child(2) {
  width: 30%;
}

.header_logo img {
  width: 100%;
  display: block;
}

.hamburger {
  width: 75px;
  height: 65px;
  position: relative;
  z-index: 1002;
  border: none;
  background: transparent linear-gradient(154deg, #A3CB47 0%, #0F7126 100%) 0% 0% no-repeat padding-box;;
  cursor: pointer;
}
.hamburger span {
  left: 50%;
  position: absolute;
  width: 50%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
  transform: translateX(-50%);
}
/* 初期：2本線 */
.hamburger span:first-child {
  top: calc(50% - 5px);
}
.hamburger span:last-child {
  top: calc(50% + 5px);
}
/* 開いた時：バツ */
.hamburger.active span:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.active span:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_nav {
  position: absolute;
  top: 50px;
  right: 0;
  width: 82%;
  height: calc(100vh - 50px);
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem 1rem 2rem;
  z-index: 1001;
  transform: translateX(0%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.sp_nav.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sp_nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sp_nav li {
  border-bottom: 1px solid #aaa;
}
.sp_nav a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 0;
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
.sp_nav li img {
  width: 24px;
  flex-shrink: 0;
}
.nav_btn {
  width: 100%;
  margin: 1.5rem auto 0;
}
@media only screen and (max-width: 768px) {
  .mainvi .mv_pc {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .mainvi .mv_sp {
    display: none;
  }
}

.page-template-page-confirm .mainvi,
.page-template-page-complete .mainvi {
  display: none;
}

/*----------------------------------------------------
	SECTION STYLE
----------------------------------------------------*/
section {
  padding: 2rem 2rem;
}
.line {
  width: 10px;
  margin-top: -9rem;
  margin-bottom: 1rem;
}
/*----------------------------------------------------
	MAIN STYLE
----------------------------------------------------*/
.mv {
}
.mv_btn {
  margin-top: -8.5rem;
}
.floating_btn {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 120%);
  width: 50%;
  max-width: 428px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, visibility .4s ease;
  background: rgba(255, 255, 255, 0.92);
}
.floating_btn.is-show {
  width: 100%;
  padding-top: 0.8rem;
  text-align: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);

}

/* ご相談例 */
.section_01 {
 padding-bottom: 12rem;
}
.section_01 .title {
  padding: 2rem 0;
}
.section_01 .content {
  padding-bottom: 3rem;
}
.chara2{
  margin-top: -2rem;
}
.chara3 {
  margin-top: -1rem;
}
.section_01 .font_09.font_w_700 {
  padding-bottom: 1rem;
}
/* ------------------------- */

/* 5つのサポート内容 */
.section_02 {
  background-image: url(../img/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: -5.5rem;
  position: relative;
}
.img_list {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
}
.support {
  width: 45%;
  margin-top: 1rem;
}
/* ------------------------- */

/* ご利用の流れ */
.section_03 {
 padding-top: 8rem;
 margin-top: -6rem;
 padding-bottom: 12rem;
}
.section_03 .font_09.font_w_700 {
  padding: 0.5rem 0 2.5rem;
}
/* ------------------------- */

/* 利用者の声*/
.section_04 {
  background-image: url(../img/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: -6rem;
  padding-bottom: 5rem;
}
.icon {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}
.icon img {
  width: 4rem;
  height: 4rem;
}
.voice .bg_orange {
  padding: 0.2rem 0.5rem;
  margin-top: 1rem;
  border-radius: 7px 7px 0 0;
}
.voice .bg_main {
  border-radius: 0 25px 25px 25px;
  padding: 1.5rem 1rem;
}
/* ------------------------- */

/* Q&A*/
.question {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0 15px 0 15px;
  margin-top: 1.5rem;
}

.question img {
  width: 1.5rem;
  flex-shrink: 0;
}

.answer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem 0;
}

.answer img {
  width: 1.2rem;
  flex-shrink: 0;
}

.qa_item:nth-child(n+4){
    display:none;
}

.qa_more_btn {
  display: block;
  width: 100%;
  margin: 2rem auto 0;
  padding: 0.9rem 1rem;
  border: 2px solid #2c9b68;
  border-radius: 10px;
  background: #fff;
  color: #2c9b68;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}

.qa_more_btn:hover {
  background: #2c9b68;
  color: #fff;
  border-color: #2c9b68;
}
/* ------------------------- */

/* CTA*/
.section_06{
  background: #fff;
}


/* お問い合わせフォーム */
.section_06 > .cta_ttl img {
  vertical-align: bottom;
}
.mw-wp-form-wrap {
  padding: 3rem 1.1rem;
  background-color: #FDFAE2;
}

form > p {
  margin-bottom: 1.5rem;
}

.form-group > label {
  display: block;
  width: 100%;
  margin-bottom: 1.3rem;
  padding: 0.4rem 0.7rem;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 1.7px;
  background-color: #FFB400;
}
.form-group > label span {
  background: #f00;
  font-size: .7rem;
  font-weight: bold;
  padding: .1rem .5rem .2rem .5rem;
  border-radius: 999px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.7rem 2rem 0.7rem 0.7rem;
  border: 1px solid #707070;
  background: #fff;
  font-size: 1.1rem;
}

.input-wrap,
.select-wrap {
  margin-bottom: 1.5rem;
}

.check-wrap {
  margin-bottom: 1rem;
}

.select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 11px solid #666;
  pointer-events: none;
}

.select-group {
  display: flex;
  gap: 0.5rem;
}

.select-group > .select-wrap:nth-child(1) {
  flex: 1;
}
.select-group > .select-wrap:nth-child(2) {
  width: 24%;
}
.select-group > .select-wrap:nth-child(3) {
  width: 24%;
}

.check-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.check-wrap > span {
  display: block;
  margin: 0 !important;
  margin-bottom: 0.4rem;
}

.check-wrap > span > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-wrap > span > label input {
  width: fit-content;
  appearance: none;
  -webkit-appearance: none;
  width: 21px;
  height: 21px;
  padding: 0;
  border: 1px solid #333;
  border-radius: 0;
  position: relative;
  cursor: pointer;
}

.check-wrap > span > label input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}

.input-group {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.input-group > .input-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.input-group > .input-wrap input {
  margin: 0;
}

/* .input-group::before,
.input-group::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 13px;
  height: 1px;
  background-color: #707070;
} */

/* .input-group::before {
  left: calc(((100% - 4rem) / 3) + ((2rem - 13px) / 2));
}

.input-group::after {
  right: calc(((100% - 4rem) / 3) + ((2rem - 13px) / 2));
} */

.contact-info {
  margin-bottom: 1.5rem;
  padding: 1rem;
  color: #0F7126;
  text-align: center;
  border: 2px solid #0F7126;
  border-radius: 1.5rem;
  background-color: #fff;
  font-size: 1.1rem;
}

.contact-info p {
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.contact-info p:nth-child(2) {
  font-size: 0.9rem;
}
.contact-info p:nth-child(3) {
  margin-bottom: 0;
  font-size: 0.7rem;
}

.privacy-agree div {
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
  background-color: #AFA59B;
}

.privacy-agree p {
  font-size: 0.75rem;
}

.mw-wp-form-wrap input[type="submit"] {
  cursor: pointer;
  display: block;
  width: 100%;
  margin: 1.6rem auto;
  padding: 1.2rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  border-radius: 999px;
  background-color: #F98320;
}

.select-wrap > .error {
  display: none;
}

.mw_wp_form_confirm .input-group,
.mw_wp_form_confirm .select-group {
  gap: 0;
}

.mw_wp_form_confirm .select-group .select-wrap {
  width: fit-content;
  flex: none;
}

.mw_wp_form_confirm .input-group::before,
.mw_wp_form_confirm .input-group::after {
  display: none;
}

.mw_wp_form_confirm .contact-info,
.mw_wp_form_confirm .privacy-agree,
.mw_wp_form_confirm .select-wrap::after,
.mw_wp_form_confirm form > p {
  display: none;
}

.page-template-page-complete .cta_ttl {
  display: none;
}

.page-template-page-complete .complete-msg {
  text-align: center;
  margin-bottom: 1rem;
}
.confirm_txt {
    font-size: 1.1rem;
    text-align: center;
    margin: 0 0 1.5rem 0;
}
.b_back{
  text-align: center;
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.1rem;
}
.b_back a{
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: underline;
}

.caution_ff{
  margin-bottom: 1.5rem;
}
/* ------------------------- */


/*---------------------------------------------------
	FOOTER STYLE
----------------------------------------------------*/
footer{
  padding: 3rem 2rem 3rem;
}
hr {
  border: 1px solid white;
  margin: 1rem 0;
}
@media only screen and (max-width: 768px) {
  #footer{display: block;}

}
.copyrights {
  padding: 1rem;
}
