@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: "Quicksand", 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: "Quicksand", 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%;
}
    
}



/*お問い合わせフォーム
-----------------------------------------------------------*/
.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;
}
    
}

/*送信ボタン
---------------------------*/
.sr_buttons{
    width: 50%;
    display: flex;
    justify-content: space-between;
    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に記述*/






































/* エラーメッセージスタイル（contact.html用） */
.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-field {
    border-color: #ff6b6b !important;
    background-color: #ffe6e6 !important;
}

/* 確認ページスタイル（contact_confirm.php用） */
.confirm-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* ボタンスタイルの修正（contact.html, contact_confirm.php用） */
.sr_buttons {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 25px auto 0 auto;
}

.sr_buttons form {
    width: 100%;
    max-width: 300px;
}

.sr_buttons button {
    width: 100%;
    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;
}

/* 確認ページ用の2ボタンレイアウト */
.sr_buttons.confirm-buttons {
    justify-content: space-between;
}

.sr_buttons.confirm-buttons form {
    width: 47.5%;
    max-width: none;
}

@media screen and (max-width:900px) {
    .sr_buttons {
        width: 75%;
    }
}

@media screen and (max-width:700px) {
    .sr_buttons {
        width: 100%;
    }
}

/* 完了ページスタイル（contact_thanks.php用） */
.thanks-content {
    background: #f0f8ff;
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: center;
    border: 2px solid #e6f3ff;
}

.thanks-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 30px;
}

.error-icon {
    font-size: 80px;
    color: #dc3545;
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #88d8c0;
}

.home-btn {
    background: linear-gradient(135deg, #88d8c0 0%, #5cbdb4 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 20px 10px;
    box-shadow: 0 4px 8px rgba(136, 216, 192, 0.3);
}

.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(136, 216, 192, 0.4);
}

.product-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 20px 10px;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
}

@media screen and (max-width: 768px) {
    .thanks-content {
        padding: 30px 20px;
    }
    
    .thanks-icon, .error-icon {
        font-size: 60px;
    }
    
    .thanks-title {
        font-size: 24px;
    }
    
    .thanks-message {
        font-size: 16px;
    }
    
    .home-btn, .product-btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
}

/* ステップ表示 */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 60px auto;
    max-width: 600px;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    background: #ddd;
    color: #999;
    border: 3px solid #ddd;
}

.step.active .step-number {
    background: #ec6d71;
    color: white;
    border-color: #ec6d71;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.step.completed .step-number::before {
    content: "✓";
    font-size: 20px;
}

.step-title {
    font-size: 14px;
    text-align: center;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

.step.active .step-title {
    color: #ec6d71;
    font-weight: bold;
}

.step.completed .step-title {
    color: #28a745;
    font-weight: bold;
}

.step-connector {
    position: absolute;
    top: 25px;
    left: 50%;
    right: -50%;
    height: 3px;
    background: #ddd;
    z-index: 1;
}

.step:last-child .step-connector {
    display: none;
}

.step.completed .step-connector {
    background: #28a745;
}

.step.active .step-connector {
    background: linear-gradient(to right, #28a745 50%, #ddd 50%);
}

@media screen and (max-width: 768px) {
    .step-indicator {
        margin: 30px auto 40px auto;
        padding: 0 10px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-title {
        font-size: 12px;
    }
    
    .step-connector {
        top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .step-indicator {
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }
    
    .step-number {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .step-title {
        text-align: left;
        flex: 1;
    }
    
    .step-connector {
        display: none;
    }
}

/* メール受信設定の注意書き */
.email-notice {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin: 30px auto;
    max-width: 800px;
}

.email-notice-title {
    color: #495057;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.email-notice-title i {
    margin-right: 6px;
    font-size: 14px;
    color: #6c757d;
}

.email-notice-text {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.email-copy-container {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.email-copy-container:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.email-address {
    font-family: 'Courier New', monospace;
    color: #495057;
    font-size: 13px;
    user-select: none;
    margin-right: 8px;
    white-space: nowrap;
}

.copy-button {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.copy-button:hover {
    background: #5a6268;
}

.copy-button i {
    font-size: 10px;
}

.copy-success {
    color: #28a745;
    font-size: 11px;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-success.show {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .email-notice {
        margin: 20px 15px;
        padding: 12px;
    }
    
    .email-copy-container {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    
    .email-address {
        margin-right: 10px;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}





































