/* Contact Page Specific Styles */

/* Introduction Section */
.intro-section {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-image: url(../images/intro_bg.jpg);
    mix-blend-mode: multiply;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    background-size: 100% auto;
	margin: 0 0 100px 0;
	
}

.intro-container {
    max-width: 1170px;
    width: 100%;
    padding: 0 30px;
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
	
}
.intro-container p {
   margin-bottom: 1em;
	
}
/* Phone Contact Section */
.phone-contact-section {
    width: 100%;
    margin: 0 0 100px;
   
}

.phone-contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
	max-width: 1170px;
	 padding: 0 30px;
	margin: 0 auto;
}

.contact-image {
  width: 187px;
  mix-blend-mode: multiply;
}

.phone-contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.phone-contact-content h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-brown);
    line-height: 1.4;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.phone-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-contact .phone-icon {
    width: 51px;
    height: 51px;
}

.phone-contact .phone-number {
    font-family: 'Alata', sans-serif;
    font-size: 60px;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1;
}

/* Form Section */
.form-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
	margin: 0 0 100px;
}

.form-container-wrapper {
    max-width: 1170px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.form-container-wrapper h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-brown);
    line-height: 1.4;
}

.form-container {
    max-width: 916px;
    width: 100%;
    background: white;
    border: 1px solid var(--accent-orange);
    border-radius: 20px;
    padding: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.form-row-textarea {
    align-items: flex-start;
}

.form-label-container {
    flex: 1;
    max-width: 240px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.form-label-container label {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.form-input-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.radio-group {
    display: flex;
    gap: 9px;
    align-items: center;
	flex-flow: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.radio-option label {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    cursor: pointer;
}

.form-divider {
    height: 1px;
    background: var(--border-light);
    width: 100%;
}

.submit-button {
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 5px 40px;
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    line-height: 1.8;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #e67d36;
}

/* Access Section */
.access-section {
    width: 100%;
	margin: 0 0 100px;
    
}

.access-container {
    display: flex;
    gap: 30px;
	max-width: 1170px;
	 padding: 0 30px;
	margin: 0 auto;
}

.access-content {
    width: 406px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-content h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-brown);
    line-height: 1.4;
}

.address-info p {
    font-family: 'Zen Old Mincho', serif;

    color: var(--text-color);
    line-height: 1.8;
}

.parking-info {
    padding-top: 30px;
    border-top: 1px solid #9a9a9a;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.parking-info h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.parking-info p {
    font-family: 'Zen Old Mincho', serif;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.parking-note {
    font-size: 16px !important;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transport-info h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.transport-info ul {
    list-style: disc;
    padding-left: 27px;
}

.transport-info li {
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
}

.access-map {
    flex: 1;
}
.map {
  position: relative;
  width: 100%;
  height: 100%;
  /* padding-top: 75%; 比率を4:3に固定 */
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* FAQ Section */
.faq-section {
    width: 100%;
	
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
	max-width: 1170px;
	 padding: 0 30px;
	margin: 0 auto;
}

.faq-container h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-brown);
    line-height: 1.4;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
	border-bottom: 1px solid #D9D9D9;
}

.faq-question-label span {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    color: black;
    line-height: 1.8;
}

.faq-answer-label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 30px;
	margin-bottom: 20px;
}

.faq-answer-label p {
    flex: 1;
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    color: black;
    line-height: 1.8;
    margin: 0;
}

/* Final Message Section */
.final-message-section {
    padding: 100px 0 200px 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-image: url(../images/contact_bg.jpg);
    mix-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-message-container {
    max-width: 1170px;
    display: flex;
    justify-content: flex-end;
    padding: 0 30px;
    width: 100%;
}

.final-message-container p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.8;
    text-align: right;
}
.contact-section{
	display: none;
}


/* Contact Page Responsive Design */
@media (max-width: 1200px) {
    .final-message-section {
        padding: 0 30px;
    }
    
 
  
    

    
   
}

@media (max-width: 768px) {
  
    
    .contact-image,
    .contact-image-right {
        width: 20%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .phone-contact .phone-number {
        font-size: 48px;
    }
    
    
    .form-label-container {
        max-width: 200px;
        width: 100%;
    }
    
   
    
    .faq-question-label span {
        font-size: 1rem;
    }
    
    .faq-answer-label {
        padding-left: 15px;
        gap: 15px;
    }
    .final-message-container {
  max-width: 1170px;
  display: flex;
  justify-content: flex-end;
  padding: 60px 30px 24vw;
  width: 100%;
}
    .final-message-container p {
        font-size: 20px;
    }
	.phone-contact-content h2,.form-container-wrapper h2,.faq-container h2 {
  font-size: 3.2vw;
}
	.phone-icon {
  width: 25px;
  height: 25px;
}
	 .access-content {
    width: 100%;
    max-width: none;
  }
	.access-container {
        flex-direction: column;
        gap: 30px;
    }
	.map {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 75%; 
}
	 .access-map {
    width: 100%;
    max-width: none;
    height: auto;
  }
	 .faq-question-label span {
    width: calc(100% - 40px);
  }
}

@media (max-width: 480px) {
	  .phone-icon {
    width: 7vw !important;
    height: 7vw !important;
  }
	  .contact-image,
    .contact-image-right {
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
    }
	.intro-section,.phone-contact-section,.access-section {
  margin: 0 0 60px 0;
}
	.page-header-content,.intro-container,.phone-contact-container,.access-container,.faq-container {
  padding: 0 20px;
}
	.form-section {
  padding: 0 20px;
  margin: 0 0 60px;
}
	.form-container-wrapper {
  gap: 20px;
}
    .phone-contact-content h2,
    .form-container-wrapper h2,
    .access-content h2,
    .faq-container h2 {
        font-size: 6vw;
    }
      .phone-contact-container {
        flex-direction: column;
        gap: 30px;
    }
    .phone-contact .phone-number {
        font-size: 36px;
    }
        .form-row {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
	 .radio-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .parking-info h3,
    .transport-info h3 {
        font-size: 5vw;
    }
        
    .final-message-container p {
        font-size: 1rem;
		 text-align: center;
		 width: 100%;
    }
	  .final-message-container {
    padding: 60px 0px 45vw;
    width: 100%;
		 
  }
	.form-container {
  border-radius: 10px;
  padding: 20px;
}
	.intro-container {
  text-align: left;
  font-size: 1rem;
}
}
@media (min-width: 769px) {
	.lg-br{
		display: none;
	}
	}
@media (min-width: 481px) {
	.md-br{
		display: none;
	}
	}
@media (max-width: 480px) {
	.sm-br{
		display: none;
	}
	}