@charset "utf-8";

@media screen and (max-width:767px) {

}

@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* inputのスタイル　※幅は個別にclassで指定
=============================================================================== */
::placeholder {
  color: #C6C6C6;
}
input[type="text"], textarea, input[type="submit"], input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="date"], input[type="serch"], input[type="url"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  box-shadow: 0 0 0 1px #ccc inset;
  font-size: 1.6rem;
  height: 45px;
}
input[type="text"]:focus, textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="tel"]:focus {
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
  outline: 0;
}
@media screen and (max-width:767px) {
input[type="text"], textarea, input[type="submit"], input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="date"], input[type="serch"], input[type="url"] {
  height: 55px;
  width: 100%;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* textareaのスタイル指定　※高さは個別にclassで指定
=============================================================================== */
textarea {
  border: none;
	border-radius: 4px;
  box-shadow: 0 0 0 1px #ccc inset;
  display: block;
	padding: 10px 15px;
	resize: none;
	width: 100%;
}
textarea:focus {
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
  outline: 0;
}

/* radioのスタイル指定
　　<label>
        <input type="radio" name="radio" value="1" />
        <span>
            <span class="radio-text">ラジオボタン1</span>
        </span>
    </label>
=============================================================================== */
input[type="radio"] {
  border: 0;
	clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
input[type="radio"] + span {
  align-items: center;
	cursor: pointer;
  display: inline-flex;
  color: #666;
}
input[type="radio"] + span::before {
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 1em;
  margin-right: 4px;
  width: 1em;
}
input[type="radio"]:checked + span::before {
	border: 0.3em solid rgb(33, 150, 243);
}
input[type="radio"]:checked + span {
	color: rgb(33, 150, 243);
}
input[type="radio"]:focus + span {
	color: rgb(33, 150, 243);
}
input[type="radio"]:focus + span {
	color: rgb(33, 150, 243);
}
input[type="radio"].focus-visible + span .radio-text {
	background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}

/* checkboxのスタイル指定
　　<label>
        <input type="checkbox" name="checkbox" value="checkform-item1" />
        <span>
            <span class="checkbox-text">チェックボックス1</span>
        </span>
    </label>
=============================================================================== */
input[type="checkbox"] {
	border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
input[type="checkbox"] + span {
  align-items: center;
  color: #666;
  cursor: pointer;
  display: inline-flex;
  position: relative;
}
input[type="checkbox"] + span::before {
  border: 1px solid #ccc;
  border-radius: 3px;
	content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 1em;
  margin-right: 6px;
  width: 1em;
}
input[type="checkbox"]:checked + span::before {
	background-color: rgb(33, 150, 243);
  border: 1px solid rgb(33, 150, 243);
}
input[type="checkbox"]:checked + span::after {
  bottom: 0;
	border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  height: 0.6em;
  left: 0.3em;
  margin: auto;
  position: absolute;
  top: 0;
  transform: translateY(-2px) rotate(45deg);
  width: 0.4em;
}
input[type="checkbox"]:checked + span {
  color: rgb(33, 150, 243);
}
input[type="checkbox"]:focus-visible + span .checkbox-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}
input[type="checkbox"].focus-visible + span .checkbox-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}

/* selectのスタイル指定　※幅は個別にclassで指定
<div class="form-select-wrap">
    <select>
        <option value="select1">セレクト1</option>
        <option value="select2">セレクト2</option>
    </select>
</div>
=============================================================================== */
.form-select-wrap {
  position: relative;
}
/*
.form-select-wrap::before {
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  bottom: 0;
  content: "";
  height: 8px;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 0;
  transform: rotate(135deg);
  width: 8px;
  z-index: 1;
}
*/
.form-select-wrap::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 1;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #ccc inset;
  cursor: pointer;
  height: 45px;
  padding: 10px 15px;
  width: 100%;
}
select::-ms-expand {
	display: none;
}
select:focus {
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
  outline: 0;
}
@media screen and (max-width:767px) {
select {
  height: 55px;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* ボタンのスタイル指定　※幅や高さは個別にclassで指定
=============================================================================== */
input[type="submit"], input[type="reset"], input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 0 0 #ccc inset;
  cursor: pointer;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: bold;
  height: 70px;
  transition: all  0.3s ease;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
/*  background-color: #F30003;*/
}
input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  outline: 0;
}
.submit-btn-wrap {
 text-align: center;
 width: 100%;
 max-width: 400px;
 margin: 0 auto;
}
.submit-btn-wrap-2button {
 text-align: center;
 width: 100%;
 max-width: 700px;
 margin: 50px auto;
 display: flex;
 justify-content: space-between;
}
.wpcf7 input.wpcf7-submit, .wpcf7 .wpcf7-previous {
  transition: all 0.3s ease;
}
.wpcf7-previous, .wpcf7-submit {
  height: 70px !important;
}
.submit-btn-wrap .wpcf7-previous {
  width: 100% !important;
}
.submit-btn-wrap .wpcf7-submit {
  width: 100% !important;
}
.submit-btn-wrap-2button p {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.wpcf7-spinner {
  display: none !important;
}
.submit-btn-wrap-2button .wpcf7-previous {
  width: 46% !important;
  max-width: 330px !important;
}
.submit-btn-wrap-2button .wpcf7-submit {
  width: 46% !important;
  max-width: 330px !important;
}
.wpcf7-previous-btn-color1 {
  background-color: #A3A3A3 !important;
  color: #333;
}
.wpcf7-previous-btn-color1:hover {
  background-color: #BCBCBC !important;
  color: #333 !important;
}
.wpcf7-submit-btn-color1 {
  background-color: #CE0003 !important;
  color: #FFF !important;
}
.wpcf7-submit-btn-color1:hover {
  background-color: #F80003 !important;
}
@media screen and (max-width:767px) {
.submit-btn-wrap {
 text-align: center;
 max-width: 85%;
 margin: 0 auto 50px;
 padding: 0;
}
.submit-btn-wrap-2button {
 text-align: center;
 max-width: 100%;
 margin: 0 0 50px;
 padding: 0;
}
.wpcf7-previous, .wpcf7-submit {
  height: 60px !important;
}
.submit-btn-wrap .wpcf7-previous {
  width: 100%;
}
.submit-btn-wrap .wpcf7-submit {
  width: 100%;
}
}

/* Contactform7　dl
=============================================================================== */
/*共通*/
/*
.form-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #F4F3EE;
  padding: 80px;
}
.form-wrap h2 {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 150px;
}
.form-wrap h2 span {
  font-size: 1.3rem;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.form-wrap h2::before {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 5rem;
}
*/
.itme-name {
  font-size: 1.3rem;
  display: inline-block;
  width: 125px;
}
.itme-name::before {
  content: "\f152";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 7px;
}
.must {
	display: block;
	background-color: #C00;
	font-size: 1rem;
	color: #FFF;
	border-radius: 1px;
	padding: 5px;
	margin: 0 0 0 0;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	line-height: 1em;
}
.any {
	display: block;
	background-color: #F3F3F3;
	font-size: 1rem;
	color: #333;
	border-radius: 1px;
	padding: 5px;
	margin: 0 0 0 0;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	line-height: 1em;
}

/*デザイン1*/
.form-block dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.form-block dt {
  width: 35%;
  padding: 15px;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  color: #FFF;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  font-size: 1.5rem;
}
.form-block dd {
  width: 65%;
  padding: 15px;
  margin: 0 0 10px 0;
  background-color: #FFF;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  font-size: 1.5rem;
}
.form-block dd ul li:not(:first-of-type) {
  margin-top: 10px;
}
.form-block dd div:not(:first-of-type){
  margin-top: 10px;
}
.form-block dd ul li:not(:first-of-type) {
  margin-top: 10px;
}

@media screen and (max-width:767px) {
.form-wrap {
  width: 100%;
  padding: 30px 10px;
}
.form-wrap h2 {
  font-size: 2rem;
  margin-bottom: 100px;
}
.form-wrap h2::before {
  top: 70px;
  font-size: 3rem;
}
.form-block dl {
  display: block;
}
.form-block dt {
  width: 100%;
  padding: 10px;
  margin-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 0;
}
.form-block dd {
  width: 100%;
  padding: 25px 10px;
  margin: 0 0 20px 0;
  border-bottom: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
}

/*デザイン2*/
.form-block2 dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.form-block2 dt {
  width: 35%;
  padding: 15px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #DDDDDD;
  color: #333;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #FFF;
}
.form-block2 dt:first-of-type {
  border-top-left-radius: 3px;
}
.form-block2 dt:last-of-type {
  border-bottom: 1px solid #DDDDDD;
  border-bottom-left-radius: 3px;
}
.form-block2 dd {
  width: 65%;
  padding: 15px;
  background-color: #FFF;
  color: #333;
  border-top: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
}
.form-block2 dd:first-of-type {
  border-top-right-radius: 3px;
}
.form-block2 dd:last-of-type {
  border-bottom: 1px solid #DDDDDD;
  border-bottom-right-radius: 3px;
}
.form-block2 dd ul li:not(:first-of-type) {
  margin-top: 10px;
}

@media screen and (max-width:767px) {
.form-wrap2 {
  width: 100%;
  padding: 0 10px;
}
.form-block2 dl {
  display: block;
}
.form-block2 dt {
  width: 100%;
  padding: 10px;
  margin-bottom: 0;
  border-top: none;
  border-bottom: none;
  border-right: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
}
.form-block2 dt:first-of-type {
  border-top-right-radius: 3px;
}
.form-block2 dt:last-of-type {
  border-bottom-left-radius: 0;
}
.form-block2 dd {
  width: 100%;
  padding: 25px 10px;
  margin: 0;
  border-bottom: none;
  border-top: none;
  border-right: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
}
.form-block2 dd:first-of-type {
  border-top-right-radius: 0;
}
.form-block2 dd:last-of-type {
  border-bottom-left-radius: 3px;
}
}

.input-style100par {
  width: 100%;
}
.input-style80par {
  width: 80%;
}
.input-style50par {
  width: 50%;
}
.input-style20par {
  width: 20%;
}
.input-style10par {
  width: 10%;
}
.textarea-heright100 {
  height: 100px;
}
.textarea-heright200 {
  height: 200px;
}
.textarea-heright300 {
  height: 300px;
}

/* フォーム画面上部
================================================== */
.contact-wrap {
  
}
.contact-wrap__top-text-box {
  margin-bottom: 50px;
  border: 3px solid #CCC;
  padding: 50px;
}
.contact-wrap__top-text-box p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2em;
  text-align: center;
}
.contact-wrap__tel-box {
  background-color: #96B533;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  margin-bottom: 100px;
}
.contact-wrap__tel-box h2 {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 150px;
}
.contact-wrap__tel-box h2 span {
  font-size: 1.3rem;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.contact-wrap__tel-box h2::before {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 5rem;
}
.contact-wrap__tel-box p:first-of-type {
  width: 100%;
  max-width: 300px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 2px solid #FFF;
  line-height: 60px;
}
.contact-tel-pc {
}
.contact-tel-sp a {
  width: 100%;
  display: block;
  color: #FFF !important;
}

@media screen and (max-width:767px) {
.contact-wrap {
  
}
.contact-wrap__top-text-box {
  margin-bottom: 50px;
  border: 3px solid #CCC;
  padding: 30px;
}
.contact-wrap__top-text-box p {
  font-size: 1.8rem;
  text-align: left;
}
.contact-wrap__tel-box {
  background-color: #96B533;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  margin-bottom: 50px;
}
.contact-wrap__tel-box h2 {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 110px;
}
.contact-wrap__tel-box h2 span {
  font-size: 1.3rem;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.contact-wrap__tel-box h2::before {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 5rem;
}
.contact-wrap__tel-box p:first-of-type {
  border: 2px solid #FFF;
  line-height: 60px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}


/* 送信完了画面
================================================== */
.contact-complet-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0 auto;
  color: #333;
}
.contact-complet-wrap-top {
  border: 3px solid #CCC;
  padding: 40px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.8em;
  margin-bottom: 50px;
  text-align: center;
  background-color: #f7f7f7;
}
.contact-complet-wrap-bottom p:first-of-type {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
.contact-complet-wrap-bottom p:nth-child(2) {
  margin-bottom: 100px;
}
.btn-contact-comp {
	display: block;
	text-align: center;
	line-height: 70px;
	font-size: 1.4rem;
	width: 400px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	transition: all 0.3s ease-in-out;
	background-color: #A90002;
	color: #FFF !important;
  border-radius: 4px;
}
.btn-contact-comp:hover {
  background-color: #D60002;
}
@media screen and (max-width:767px) {
.contact-complet-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #333;
  padding-left: 10px;
  padding-right: 10px;
}
.contact-complet-wrap-top {
  padding: 20px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6em;
}
.contact-complet-wrap-bottom p:first-of-type {
  font-size: 1.5rem;
}
.contact-complet-wrap-bottom p:nth-child(2) {
  margin-bottom: 50px;
}
.btn-contact-comp {
	line-height: 70px;
	font-size: 1.4rem;
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	background-color: #A90002;
	color: #FFF !important;
  border-radius: 4px;
}
.btn-contact-comp:hover {
  background-color: #D60002;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* ページ下部のエラー表示
================================================== */
.wpcf7 form .wpcf7-response-output {
    margin: 30px 0;
    padding: 1.5rem;
    border: none;
    text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
    background-color: #FFF;
    color: #A90002;
    border: 1px solid #A90002;
    border-radius: 5px;
}
.wpcf7 form.sent .wpcf7-response-output {
    background-color: #FFF;
    color: #519E68;
    border: 1px solid #519E68;
    border-radius: 5px;
}
span.wpcf7-not-valid-tip {
	margin: 0.5rem 0;
}

/* ===============================================================================
   フォーム下部プライバシーポリシー
=============================================================================== */
.privacy-frame {
  width: 100%;
  max-width: 1200px;
  height: 200px;
  margin: 0 auto 50px;
  overflow: hidden scroll;
  padding: 20px;
  border: 1px solid #CCC;
  background-color: rgba(255,255,255,1);
  border-radius: 3px;
}
.privacy-frame dl {
  display: block;
}
.privacy-frame dl dt, .privacy-frame dl dd {
  all: initial;
}
.privacy-frame h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  background-color: transparent;
  color: #333;
}
.privacy-frame h2 span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.privacy-frame dl dt {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #999;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.privacy-frame dl dd {
  font-size: 14px;
  display: block;
}
.privacy-frame dl dd p {
  line-height: 2 !important;
}
.privacy-frame dl dd:not(:last-of-type) {
  margin-bottom: 50px;
}
.privacy-frame dl dd ul li {
  margin: 1.2em 0;
  list-style: none !important;
}
.privacy-btn {
  text-align: center;
  margin-bottom: 50px;
  line-height: 0.5;
}
@media screen and (max-width:767px) {
.privacy-frame {
  padding: 10px;
  width: 100%;
  height: 150px;
}
.privacy-frame h2 {
  font-size: 14px !important;
  margin-bottom: 20px;
}
.privacy-frame h2 span {
  font-size: 11px !important;
}
.privacy-frame dl dt {
  font-size: 12px !important;
}
.privacy-frame dl dd {
  font-size: 11px !important;
}
}





