@charset "utf-8";

/* ============全体設定============ */
main{
    margin: 106px auto;
    width: 80%;
    text-align: center;
}
main h1{
    margin: 60px auto;
}
main h2{
    color: #b6854f;
    margin: 48px auto;
    font-size: 48px;
}

/* アクセス */
.about-adress{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.about-map{
    width: 40%;
    aspect-ratio: 3/2;
}
.kannai-map{
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 20px;
    font-family: "Yuji Syuku", serif; 
    color: #b6854f;  
}
.adress-more img{
    width: 250px;
}
.adress-more img:hover{
    scale: 2;
}
.time{
    margin-top: 60px;
}

/* ＝＝＝＝＝＝＝＝よくある質問 ＝＝＝＝＝＝＝＝＝*/


.accordion-004 {
    max-width: 80%;
    margin: 0 auto 7px;
    border: 2px solid #1a5b7a;
    border-radius: 5px;
}

.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #1a5b7a;
    background-color: #f5f5f5;
    font-weight: 600;
    cursor: help;
}

.accordion-004 summary::-webkit-details-marker {
    display: none;
}

.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 16px;
    border-bottom: 3px solid #1a5b7a;
    border-right: 3px solid #1a5b7a;
    content: '';
    transition: transform .3s;
}

.accordion-004[open] summary::after {
    transform: rotate(225deg);
}

.accordion-004 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-004[open] p {
    transform: none;
    opacity: 1;
}

/* ＝＝＝＝＝＝＝＝お問い合わせ ＝＝＝＝＝＝＝＝＝*/
.contact{
    width: 70%;
    margin: 80px auto;
}
.contact h3{
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    text-decoration: underline;
    font-size: 32px;
    color: #c00;
}
.contact p{
    line-height: 1.8;
}
.contact .underline{
    text-decoration: underline;
}
.contact .small{
    font-size: 20px;
}
.form-area{
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;

}
.form-area dt{
    width: 250px;
    padding: 24px 0;
    font-weight: bold;
    text-align: start;
}
.form-area dt .required::after{
    content: '必須';
    font-size: 16px;
    color: #c00;
    margin-left: 10px;
}
.form-area dd{
    width: calc(100% - 250px);
    padding: 24px 0;
}
.input-text{
    width: 70%;
    height: 30px;
    padding: 0 10px;
}
.message{
    width: 70%;
    height: 280px;
    padding: 10px;
    line-height: 1.5;
}
button {
    margin-top: 40px;
    background-color: #b6854f;
    color: #fffef3;
    display: inline-block;
    min-width: fit-content;
    font-size: 24px;
    font-family: "Noto Serif JP", serif;
    border: #b6854f solid 2px;
    border-radius: 5px;
    padding: 8px 60px;
  }
  
  button:hover {
    background-color: #fffef3;
    color: #b6854f;
  }

  /* ==================================================
スマホ・タブレット対応 (768px以下)
================================================== */
@media (max-width: 768px) {
    /* --- 全体設定 --- */
    main {
      margin: 106px auto 60px; 
      width: 90%; 
    }
  
    main h1 {
      margin: 40px auto;
      font-size: 32px;
    }
  
    main h2 {
      margin: 32px auto;
      font-size: 28px;}
  
    /* --- アクセス --- */
    .about-adress {
      flex-direction: column;
      gap: 32px;
    }
  
    .about-map {
      width: 100%; 
      aspect-ratio: 4/3; 
    }
  
    .kannai-map {
      font-size: 20px;
      margin-top: 32px;
    }
  
    .adress-more img {
      width: 100%;
      max-width: 280px; 
    }
  
    .adress-more img:hover {
      scale: 1; 
    }
  
    .time {
      margin-top: 40px;
      font-size: 18px; 
      line-height: 1.6;
    }
  
    /* --- よくある質問  --- */
    .accordion-004 {
      max-width: 100%; 
    }
  
    .accordion-004 summary {
      padding: 1em 1.2em; 
      font-size: 18px;   
    }
  
    .accordion-004 p {
      padding: 0.5em 1.2em 1.2em;
      font-size: 16px;  
      line-height: 1.6;
    }
  
    /* --- お問い合わせ --- */
    .contact {
      width: 100%; 
      margin: 48px auto;
    }
  
    .contact h3 {
      font-size: 24px; 
    }
  
    .contact p {
      font-size: 16px;
    }
  
    .contact .small {
      font-size: 16px;
    }
  
    /* --- フォーム --- */
    .form-area dt {
      width: 100%;   
      padding: 12px 0 4px 0; 
      font-size: 18px;
    }
  
    .form-area dd {
      width: 100%; 
      padding: 0 0 16px 0; 
    }
  
    .input-text {
      width: 100%;   
      height: 44px;    
      font-size: 16px;
    }
  
    .message {
      width: 100%;    
      height: 200px;  
      font-size: 16px;
    }
  
    /* 送信ボタン */
    button {
      margin-top: 24px;
      width: 100%;     
      max-width: 280px;
      font-size: 20px;
      padding: 12px 0; 
    }
  }
  