/* =================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;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}


/* =====コメント====== */

.decoration1 {
  width: 500px;
  height: 500px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: -20px;
  z-index: 0;
}

.decoration2 {
  width: 300px;
  height: 300px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 300px;
  right: 40px;
  z-index: 0;
}

.decoration3 {
  width: 200px;
  height: 200px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  bottom: -80px;
  left: 20px;
  z-index: 0;
}

.contents {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

.voice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.voice img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.voice .voice-title {
  font-size: 20px;
  color: #633418;
}

.voice .voice-p {
  font-size: 16px;
  color: #633418;
}

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

/* 画面幅が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;
  }

  .decoration1 {
  width: 300px;
  height: 300px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 100px;
  left: -20px;
  z-index: 0;
}

.decoration2 {
  width: 200px;
  height: 200px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 500px;
  right: 40px;
  z-index: 0;
}

.decoration3 {
  width: 150px;
  height: 150px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
  left: 50px;
  z-index: 0;
}


  .container {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }


.voice {
  padding: 0 60px;
}

.voice img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

.voice .voice-title {
  font-size: 20px;
}

.voice .voice-p {
  font-size: 14px;
}

}


/* ======================================================================

=====================================================================*/

@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;
}


  .section-title .en{
 display: block;
 font-size:24px;
 line-height:1.1;
 color: #633418;
}

.section-title .jp{
  display:block;
  font-size:12px;
  color: #633418;
}

.voice {
  display: flex;
  flex-direction: column;
}

.voice .voice-title {
  font-size: 18px;
}

.voice .voice-p {
  font-size: 12px;

}

.decoration1 {
  width: 300px;
  height: 300px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 100px;
  left: -20px;
  z-index: 0;
}

.decoration2 {
  width: 200px;
  height: 200px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 800px;
  right: 40px;
  z-index: 0;
}

.decoration3 {
  width: 150px;
  height: 150px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  bottom: 80px;
  left: 50px;
  z-index: 0;
}

}