@charset "UTF-8";

/* site-main-header */
@media all {
	.site-main-header {
		position: relative;
		overflow: hidden;
		height: var(--site-main-header);
	}
	.site-main-header img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

  /* sp */
  @media only screen and (max-width: 767px) {
		.site-main-header img {
			object-position: 75% center;
		}
	}

  /* pc & tab */
  @media print,
  (min-width: 768px) {
		.breadcrumbs {margin-top: 20rem;}
  }
}

/* lead-section */
@media all {
	.lead-contact-btn {
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		background-color: var(--green);
		color: #fff;
	}
  .lead-contact-tel a {
    position: relative;
    display: inline-flex;
    align-items: center;
		padding-left: 44rem;
		width: 320rem;
		font-size: 40rem;
		font-weight: bold;
    color: #fff;
    line-height: 1;
	}
  .lead-contact-tel a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    background: center left / contain no-repeat url(../img/common/phone-w.svg);
		width: 28rem;
		height: 44rem;
		background-position-y: 52%;
	}
	.lead-contact-tel-notice,
	.lead-contact-tel-notice-item {display: inline-block;}

  /* sp */
  @media only screen and (max-width: 767px) {
		.lead-section {
			margin-top: 40rem;
		}
		.lead-section-ttl {
			text-align: center;
			font-feature-settings: "palt";
		}
		.lead-contact-btn {
			margin: 30rem auto 0;
			padding: 16rem;
			width: 380rem;
			border-radius: 40rem;
		}
		.lead-contact-tel-txt {
			font-weight: 500;
			text-align: center;
		}
		.lead-contact-tel {
			margin: 16rem auto 0;
			width: 320rem;
		}
		.lead-contact-tel-notice {padding-left: 44rem;}
	}

  /* pc & tab */
  @media print,
  (min-width: 768px) {
		.lead-section {
			margin-top: 80rem;
			padding: 0 20rem;
		}
		.lead-section-ttl {text-align: center;}
    .lead-contact-btn {
      margin: 80rem auto 0;
			height: 160rem;
      width: 100%;
			max-width: 800rem;
			border-radius: 80rem;
      font-size: 15rem;
      font-weight: 500;
    }
		.lead-contact-tel-txt {font-size: 18rem;font-weight: bold;}
		.lead-contact-tel {margin-top: 20rem;}
}
}

/* faq-section */
@media all {
	.faq-section {background-color: var(--lightgreen);}
	.faq-section-ttl {text-align: center;}
	.faq-list {
		border: 1px solid var(--green);
		border-left: none;
		border-right: none;
	}
	.faq-item dt, .faq-item dd {
		position: relative;
		padding-left: 5em;
	}
	.faq-item dt::before, .faq-item dd::before {
		content: 'Q';
		position: absolute;
		left: 0;
		top: calc(50% - 1.40625em);
		display: flex;
		justify-content: center;
		align-items: center;
		width: 2.8125em;
		height: 2.8125em;
		border-radius: 50%;
		border: max(2px, 2rem) solid var(--green);
		color: var(--green);
	}
	.faq-item dt::before {
		background-color: #fff;
	}
	.faq-item dd::before {
		content: 'A';
		background-color: var(--green);
		color: #fff;
	}

	.faq-item + .faq-item {border-top: 1px solid var(--green);}

  /* sp */
  @media only screen and (max-width: 767px) {
		.faq-section {
			margin-top: 50rem;
			padding: 50rem 16rem 60rem;
		}
		.faq-section-lead {
			margin-top: 30rem;
			text-align: justify;
		}
		.faq-list {margin-top: 30rem; font-size: 15rem;}
		.faq-item {padding: 30rem 10rem;}
		.faq-item dd {margin-top: 30rem;}
		.faq-item dd::before {top: 5rem;}
	}

  /* pc & tab */
  @media print,
  (min-width: 768px) {
		.faq-section {
			margin-top: 100rem;
			padding: 100rem 0 120rem;
		}
		.faq-section-lead {
			margin: 60rem auto 0;
			width: 610rem;
		}
		.faq-list {
			margin: 80rem auto 0;
			width: 700rem;
		}
		.faq-item {
			padding: 40rem 31rem;
		}
		.faq-item dd {margin-top: 30rem;}
	}
}

/* form-section */
@media all {
	.form-section-ttl {text-align: center;}
	.form-section-lead {line-height: 2;}
	.lead-btn_faq {
		display: inline-block;
		margin-right: .25em;
		padding: .4em .75em calc(.4em + 1px);
		background-color: var(--green);
		border-radius: 2em;
		font-weight: bold;
		color: #fff;
		line-height: 1;
	}
	.form-lead-tel {
		display: inline-block;
		padding-left: .2em;
		font-weight: bold;
		color: var(--green);
	}


  /* sp */
  @media only screen and (max-width: 767px) {
		.form-section {
			margin-top: 50rem;
			padding: 0 15rem 120rem;
		}
		.form-section-lead {
			margin-top: 30rem;
			text-align: center;
		}
	}

  /* pc & tab */
  @media print,
  (min-width: 768px) {
		.form-section {
			margin-top: 100rem;
			padding: 0 20rem 180rem;
		}
		.form-section-lead {
			margin: 60rem auto 0;
			width: 610rem;
		}
		.form-section-lead > span {
			display: flex;
			align-items: center;
			transform: translateY(-16rem);
		}
		.form-lead-tel {
			font-size: 34rem;
		}
	}
}


/* --フォーム-- */
@media all {
	.required::after {
		content: '必須';
		display: inline-block;
		padding: .2em .75em;
		border: 1px solid var(--green);
		border-radius: 1.5em;
		font-weight: normal;
		color: var(--green);
		line-height: 1;
	}

	.form-list {
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto;
	}

	.form-list input,
	.form-list select,
	.form-list textarea,
	.form-list div.privacy {
		box-sizing: border-box;
		padding-left: 1em;
		width: 100%;
		border: 1px solid #aaa;
		background-color: #fff;
		outline: none;
		/* -webkit-border-radius: 0;
		-webkit-appearance: none; */
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}
	.form-list input::placeholder, .form-list textarea::placeholder {
		color: #aaa;
	}
	.form-list div.privacy {overflow-y: auto;}

	.form-list select {
		/* color: rgba(22, 45, 82, .5); */
		padding-left: 2em;
		background: left center / 1.5em .7em no-repeat url(../img/common/form-select-triangle.svg);
	}

	.form-list input[type="checkbox"],
	.form-list input[type="radio"] {
		position: relative;
		margin: 0 .5em 0 0;
		padding: 0;
		width: 18rem;
		height: 18rem;
		background: #fff;
		border: 1px solid #aaa;
		border-radius: 0!important;
		cursor: pointer;
		transform: translateY(-1rem);
	}
	.form-list input[type="checkbox"]::after,
	.form-list input[type="radio"]::after {
		content: '';
		position: absolute;
		top: 1rem;
		left: 1rem;
		display: block;
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		background-color: var(--green);
		opacity: 0;
		transition: opacity .3s;
	}
	.form-list input[type="checkbox"]:checked::after,
	.form-list input[type="radio"]:checked::after {
		opacity: 1;
	}
	
	.form-list input[name="zip"],
	.form-list input[name="tel"] {width: 9em;}
	.form-list label {
		display: inline-block;
	}

	/* chromeのautofill時の対策
	input:-webkit-autofill {
			-webkit-box-shadow: 0 0 0 1000px #373740 inset;
			-webkit-text-fill-color: #162D52;
	}*/
	.form-list textarea,
	.form-list div.privacy {
		padding: .75em 1em;
	}
	.form-list div.privacy {margin-bottom: 1em;}

	input::placeholder,
	textarea::placeholder {
		color: #c8c8c8;
	}

	.form-list .privacy a {
		color: var(--green);
		text-decoration: underline;
		transition: opacity .3s;
	}
	.form-list .privacy a:hover {opacity: .7;}

	.submit-btn,
	.button-form_check,
	.form-accordion-opener {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 3em auto 0;
		background-color: var(--green);
		border-radius: 5em;
		font-weight: 500;
		color: #fff;
		cursor: pointer;
		transition: opacity .3s;
	}
	.submit-btn:hover,
	.button-form_check:hover,
	.form-accordion-opener:hover {opacity: .7;}

	.form-accordion-opener {display: none!important;}


	/* sp */
	@media only screen and (max-width: 767px) {
		.form {
			margin-top: 30rem;
		}
		.form-list {
			flex-direction: column;
			font-size: 15rem;
		}

		.form-list input,
		.form-list select {
			height: 3em;
			border-radius: 3em;
		}
		.form-list textarea {border-radius: 10rem;}

		.form-list textarea,
		.form-list div.privacy {
			height: 8em;
		}
		.form-list div.privacy {
			overflow: auto;
		}

		.form-list dt {
			padding-top: 1em;
			font-weight: 500;
		}

		.required::after {
			margin-left: 8rem;
			padding: 2rem .75em;
			font-size: 12rem;
		}

		.form-list dd {
			margin-top: 8rem;
		}

		.form-list dd+dt {
			margin-top: 1em;
		}
		.form-list dd .notice {
			font-size: 12rem;
		}

		.submit-btn,
		.button-form_check {
			margin-top: 3em;
			width: 12em;
			height: 46rem;
			font-size: 16rem;
		}
		.submit-btn::after {
			right: 1.5em;
		}
	}

	/* tab & pc */
	@media print,
	(min-width: 768px) {
		.form {
			margin: 60rem auto 0;
			max-width: 760rem;
		}


		.form-list dt,
		.form-list dd {
			margin-bottom: 16rem;
			padding-top: 16rem;
		}

		.form-list dt {
			display: flex;
			flex-direction: column;
			width: 150rem;
			font-size: 15rem;
			line-height: 1.5;
		}
		.form-list dt:not(.required) {margin-top: 1em;}
		.required::after {
			margin-top: 4rem;
			padding: .2em 0 .3em;
			width: 3.5em;
			font-size: 12rem;
			text-align: center;
		}

		.form-list dd {
			width: calc(100% - 150rem);
		}

		.form-list input,
		.form-list select,
		.form-list textarea {
			width: 100%;
			height: 45px;
			border-radius: 23rem;
		}

		.form-list textarea {
			height: 300rem;
		}
		.form-list input[type="checkbox"],
		.form-list input[type="radio"] {
			width: 20rem;
			height: 20rem;
		}
		.form-list input[type="checkbox"]::after,
		.form-list input[type="radio"]::after {
			top: 2rem;
			left: 2rem;
			width: 14rem;
			height: 14rem;
		}
		.form-list dd .notice {
			font-size: 14rem;
		}
		.form-list .privacy.required {visibility: hidden;}

		.submit-btn,
		.button-form_check,
		.form-accordion-opener {
			padding: 0 2em;
			min-width: 240rem;
			height: 60rem;
			font-size: 18rem;
		}

	}
}

/* --確認フォーム-- */
@media all {
	#dispmsg {
		display: none;
		margin: 0 auto 30rem;
		padding: 0;
		font-size: 18rem;
		text-align: center;
		line-height: 2;
	}

	#dispmsg.open {
		display: block;
	}

	#dispmsg.error {
		display: block;
		color: #c00;
	}

	#dispmsg span {
		display: inline-block;
	}

	.form-check {
		width: 0;
		height: 0;
		opacity: 0;
		overflow: hidden;
		/* transition: .3s opacity; */
	}

	.checking {
		overflow: hidden;
	}

	.checking .form-check {
		position: fixed;
		top: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0 20rem;
		width: 100%;
		min-width: 320px;
		height: 100vh;
		background: rgba(0, 0, 0, .7);
		opacity: 1;
		overflow-x: scroll;
		z-index: 9999;
	}

	.checking .check-inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		/* margin: 20px 0; */
		padding: 0 20rem;
		width: 90%;
		max-width: 640rem;
		background: #fff;
		border-radius: 10rem;
	}

	.checking .check-inner .notice {
		padding: 20rem 0;
		width: 100%;
		font-size: 16rem;
		font-weight: bold;
		text-align: center;
	}

	.checking .check-inner .notice span {
		display: inline-block;
	}

	.checking .check-list-outer {
		position: relative;
	}

	.checking .check-list-outer::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: calc(100% - 20px);
		height: 32px;
		background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
		z-index: 1;
	}

	.checking .check-list-outer::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: calc(100% - 20px);
		height: 32px;
		background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
	}

	.checking .check-list {
		max-height: 60vh;
		padding-bottom: 32px;
		padding-right: 20px;
		overflow-y: scroll;
	}

	.checking .check-list>dl {
		display: flex;
		flex-wrap: wrap;
		margin: 10rem auto 0;
		padding: 0 10rem;
		max-width: 530rem;
		background: #fff;
	}

	.checking .check-list>dl>dt {
		width: 10em;
		font-weight: 500;
	}

	.checking .check-list>dl>dd {
		width: calc(100% - 10em);
	}

	.checking .check-list>dl>dt,
	.checking .check-list>dl>dd {
		padding: .75em 0 .75em;
		/* border-bottom: 1px solid var(--pink-color); */
	}

	.checking .check-list>dl>dt:last-of-type,
	.checking .check-list>dl>dd:last-of-type {
		border: none;
	}
	
	.checking .dot-li {
		position: relative;
	}
	.checking .dot-li + .dot-li {
		margin-top: .25em;
	}
	.checking .dot-li::before {
		content: '・';
		position: absolute;
		top: 0;
		left: -1em;
	}

	.form-check .submit {
		display: flex;
		align-items: center;
		justify-content: space-around;
		padding: 16rem 1em 24rem;
		max-width: 640rem;
	}

	.form-check .return,
	.button-form_check {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 2.5em;
	}

	.form-check .return {
		width: 100%;
		max-width: 8em;
		border: 1rem solid #aaa;
		font-size: 14rem;
		color: #888;
		text-align: center;
		text-decoration: none;
		cursor: pointer;
	}

	.button-form_check {
		margin: 0;
		max-width: 8em;
	}

	.form-sent {
		position: relative;
		display: none;
		margin: 30rem auto 0;
		text-align: center;
	}

	.form-accordion-opener {
		margin: 0 auto;
		padding: 8rem 0;
		width: 15em;
		font-size: 18rem;
		cursor: pointer;
	}
	.form-accordion-opener::after {content: none;}

	.sending-effect {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10000;
		background: center / 120rem no-repeat #fff url(../img/common/loading.svg);
		width: 100vw;
		height: 100vh;
		visibility: hidden;
		opacity: 0;
	}
	.sending-effect.sending {
		opacity: 1;
		visibility: visible;
	}


/* 確認フォーム-- sp */
@media only screen and (max-width: 767px) {
	#dispmsg {
		margin-top: 12rem;
		width: calc(100% - 4vw);
		font-size: 14rem;
		padding-left: 0;
		padding-right: 0;
		font-feature-settings: "palt";
	}

	.checking .form-check,
	.checking .check-inner {
		padding: 0;
	}

	.checking .check-inner .notice {
		padding: 20rem;
	}

	.checking .check-list>dl {
		flex-direction: column;
		padding: 0 20rem;
	}

	.checking .check-list>dl>dt {
		padding-bottom: 0;
		border-bottom: none;
		font-weight: bold;
	}

	.checking .check-list>dl>dt,
	.checking .check-list>dl>dd {
		width: 100%;
	}
	.checking .check-list>dl>dd {
		padding: .5em 0 0 1em;
	}



	.form-sent {
		width: calc(100% - 4vw);
		font-feature-settings: "palt";
	}

	.form-accordion-opener {
		width: 14em;
		font-size: 13rem;
	}
}

/* 確認フォーム-- tab & pc */
@media only screen and (max-width: 1024px) {}
}




/* template */
@media all {

  /* sp */
  @media only screen and (max-width: 767px) {}

  /* pc & tab */
  @media print,
  (min-width: 768px) {}
}