@charset "utf-8";
/* CSS Document */


.wrap{
	overflow: hidden; /*※パララックスが効かなくなるindex.htmlのみ除外*/
}


/* ---------------------------------------------------------------------------------------------

   Contact-visual-wrap

--------------------------------------------------------------------------------------------- */
.Contact-visual-wrap{
	width: 100%;
	overflow: hidden;
	position: relative;
}

.Contact-visual-wrap .contact1920{
    width: 100%;
    height: 550px;
    background-image: url("../images/contact.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.Contact-visual-wrap .centerBox{
	width: 100%;
	position: absolute;
	top: 45%;/*42.5*/
	left: 0;
	z-index: 10;
}


/*テキストアニメーションTOP（下から出てくる）
-----------------------------------------------------------*/
.Contact-visual-wrap .centerBox .h1-text{
         width: 100%;
         height: 100vh;
        text-align: center;
        margin: 0 auto;
	    filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.6));
}
        @keyframes showTextFromBottom{
      0%{
         transform: translateY( 100% );
      }
      100%{
          transform: translateY( 0px );
      }
    }
    .textanimation-main span{/*----------eg-h1の代替----------*/
     animation: showText 1s backwards;
     display: inline-block;
	font-size: 84px;
	font-family: 'Urbanist', sans-serif;
    line-height: 1.25;
	color: #fff;
	font-weight: normal;
	/*filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.3));*/
        
    }
    .textanimation-main > span{
      overflow: hidden;
    }
    .textanimation-main > span > span{
      animation: showTextFromBottom 0.5s backwards;
    }

@media screen and (max-width:1400px) {
    
.Contact-visual-wrap .contact1920{
    height: 450px;
}
    
.textanimation-main span{
	font-size: 72px;
}
    
}

@media screen and (max-width:1000px) {
    
.Contact-visual-wrap .contact1920{
    height: 350px;
}
    
.Contact-visual-wrap .centerBox{
	top: 40%;
}
    
.textanimation-main span{
	font-size: 60px;
}
    
}

@media screen and (max-width:800px) {
    
.Contact-visual-wrap .contact1920{
    height: 250px;
}
    
.textanimation-main span{
	font-size: 48px;
}
    
}

@media screen and (max-width:500px) {
    
.Contact-visual-wrap .centerBox{
	top: 45%;
}
    
.textanimation-main span{
	font-size: 36px;
}
    
}

@media screen and (max-width:400px) {

.textanimation-main span{
	font-size: 30px;
}
    
}

.jp-h1{
    color: #fff;
    font-weight: normal;
	font-size: clamp(16px, 2vw, 20px);
    line-height: 2;
	filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
}


/*background-image 背景フェードイン
-----------------------------------------------------------*/
.fade-in-background {
  opacity: 0;
  animation: fadeIn 7.5s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



/* ---------------------------------------------------------------------------------------------

   お問い合わせページ

--------------------------------------------------------------------------------------------- */

/*Title 指定一覧
-----------------------------------------------------------*/
.mini-title-wrap .eg-h2{
    width: 80%;
    margin: 0 auto;
	font-size: clamp(24px, 2vw, 36px);
	font-family: 'Urbanist', sans-serif;
    line-height: 1.25;
    border-bottom: 1px solid #ccc;
}

.mini-title-wrap h2{
    width: 80%;
    margin: 0 auto;
    line-height: 2;
    font-weight: normal;
	font-size: clamp(16px, 2vw, 18px);
}

@media screen and (max-width:1000px) {

.mini-title-wrap .eg-h2,.mini-title-wrap h2{
    width: 90%;
}
    
}



/*お問い合わせフォーム
-----------------------------------------------------------*/
#confirm_contact {
    display: none;
}


.contact-detail{
    width: 100%;
    margin-top: 15px;
}

.contact-detail th,.contact-detail td{
    padding: 15px 25px;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
	font-size: 16px;
    line-height: 1.75;
}

.contact-detail th{
    background: #fbfaf5;
    width: 25%;
    font-weight: normal;
    text-align: left;
}
.contact-detail td{
    width: 75%;
}


.required {
    margin-left: 5px;
    background: #ff6666;
    color: #ffffff;
	font-size: 12px;
    padding: .2rem .4rem;
    border-radius: 0.15rem;
}

.contact-detail td input{
	font-size: 16px;
    width: 100%;
    line-height: 38px;
    padding: .2rem 1rem;
}

.contact-detail td textarea {
    width: 100%;
    height: 200px;
    padding: 1rem;
	font-size: 16px;
    line-height: 1.5;
}

.contact-detail .radio_colum {
	font-size: 16px;
}
.contact-detail .radio_colum label {
    display: flex;
    align-items: center;
}
.contact-detail .radio_colum input {
    width: 50px;/*7%*/
    height: 1rem;
}

.contact-detail .check_colum label {/*20250201追加*/
    display: flex;
    align-items: center;
}
.contact-detail .check_colum input {/*20250201追加*/
    width: 50px;/*7%*/
    height: 1rem;
}

@media screen and (max-width:700px) {

.contact-detail th,.contact-detail td{
    display: block;
    width: 100%;
    padding: 15px;
}
    
.contact-detail th{
    border-top: 1px solid #ccc;
    border-bottom: 0;
    text-align: left;
}
    
.contact-detail td{
    border-top: 0;
    border-bottom: 0;
}
    
}

.honeypot {
    display: none;
    position: absolute;
    left: -9999px;
}


.error-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
    display: block;
    line-height: 1.5;
}

/*送信ボタン
---------------------------*/
.sr_buttons{
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 25px auto 0 auto;
}

.sr_buttons button{
    width: 47.5%;
    cursor: pointer;
    color: #fff;
    border: 0;
    border-radius: 7.5px;
	font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    padding: 25px;
    line-height: 1;
}

.sr_buttons .submit{
	background: #ec6d71;
}

.sr_buttons .reset{
	background: #666;
}

@media screen and (max-width:900px) {

.sr_buttons{
    width: 75%;
}

}

@media screen and (max-width:700px) {

.sr_buttons{
    width: 100%;
}

}








@media only screen and (max-width: 1000px) {
   

}

@media only screen and (max-width: 700px) {
    
    
}


/*背景画像ミドルnav指定
-------------------------------------------*/
/*middle-nav.cssに記述*/





































