/* =================FV==================== */
.page-main {
  width: 100%;
  min-height:100vh;
  position: relative;
}

.page-main img {
   width:100%;
   min-height:100vh;
   object-fit:cover;
   position: relative;
   z-index: 1;
}

.page-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%; /* 上から50%の位置 */
  left: 50%; /* 左から50%の位置 */
  transform: translate(-50%, -50%); /* 中央寄せの調整 */
  color: #633418;; /* 文字色 */
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  z-index: 2;
}

.page-title .page-en {
 font-size:56px;
 line-height:1.1;
}

.page-title .page-jp {
  font-size:20px;
}

.container {
  position: relative;
}



/* =====セクションタイトル====== */
h3 {
  text-align: center;
  font-size:24px;
  color: #633418;
}


.caption {
  text-align: center;
  font-size: 20px;
  color: #633418;
}


/* =====アコーディオン全体===== */
.accordion {
  margin: 80px 0;
}

.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: auto;
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/* =====アコーディオンタイトル===== */
.title {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}

/* =====アイコンの+と×===== */
.title::before,
.title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 50%;
  left: 15px;
}


.title::before {
  transform: translateY(-50%);
}

.title::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform .3s;
}


.title.close::after {
  transform: translateY(-50%) rotate(0deg);
}

/* =====アコーディオンで現れるエリア===== */
.box {
  display: none;
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}


/* ===============================================================================
　　　　　　　　　　　　　　　　　　　　　　　　　スマホ用のスタイル 
====================================================================================*/

/* 画面幅が767px以下のとき */
@media screen and (max-width: 767px) {

  /* ===========メインビジュアル========= */
  .page-main,
  .page-main img {
    max-width: 100%;
    min-height: auto;
  }

  .page-title .page-en {
    font-size: 42px;
  }

  .page-title .page-jp {
    font-size: 18px;
  }

  h3 {
  text-align: center;
  font-size:20px;
  color: #633418;
}


.caption {
  text-align: center;
  font-size: 18px;
  color: #633418;
}

}



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

  /* 洋装 */
  .page-title .page-en {
    font-size: 28px;
  }

  .page-title .page-jp {
    font-size: 14px;
  }


  /* =====セクションタイトル====== */
  .section-title {
  text-align: center;
  margin-top: 50px;
  }

  h3 {
    text-align: center;
    font-size:20px;
    color: #633418;
  }


  .caption {
    text-align: center;
    font-size: 14px;
    color: #633418;
  }

  .accordion-area {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 0;
  }


  .title {
    font-size: 0.7rem;
    padding: 12px 12px 12px 35px;
  }

  .title::before,
  .title::after {
    left: 10px;
  }

}












