/*---------------------------------------------------------------------*/
/*　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　     　*/
/*　　　　　　　       Aboutページ用CSS　2025.07.01　 　　　          */
/*　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　     */
/*---------------------------------------------------------------------*/



.greeting-box {
  width: 95%;
  max-width: 1200px;
  overflow: hidden; /* floatの影響を受けないようにする */
  margin: 0 auto 150px;
}

.greeting-image {
  float: right;
  width: 300px;
  margin-left: 50px;
  margin-bottom: 40px;
}

.greeting-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.greeting-text p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #222;
  margin-bottom: 1em;
}


.outline-box {
  width: 85%;
  max-width: 1000px;
  overflow: hidden; /* floatの影響を受けないようにする */
  margin: 100px auto 70px;
}

.outline-box dl{
 margin: 0 auto 3em;
 padding: 0 0 3em 0;
 border-bottom:1px #111 dotted;
}

.outline-box dt{
 font-family: 'Noto Sans JP', sans-serif;
 width: 15em;
 clear: left;
 float: left;
 font-size: 1.15rem;
 line-height: 1.6;
 letter-spacing: 0.1em;
 color:#888;
}

.outline-box dd{
 font-family: 'Noto Sans JP', sans-serif;
 margin-left: 15em;
 font-size: 1.15rem;
 line-height: 1.6;
 letter-spacing: 0.1em;
 color:#111;
}

.outline-box dd span{
 font-size: 1rem;
 font-weight: 300;
}

.outline-box dd a {
 color : #222;
 text-decoration : underline;
}

.outline-box dd a:hover {
 color : #222;
 text-decoration : none;
}

.next-page-button {
  display: flex;
  justify-content: space-between; /* テキストと矢印を左右に分ける */
  align-items: center;
  gap: 10px;
  text-decoration: none; /* 下線を消す */
  padding: 30px 20px;
  border: 3px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.15rem;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.1em;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  font-feature-settings: "palt";
}

.next-page-button:hover {
  background-color: #F4F4F4;
}

.text {
  text-align: center;
  flex: 1; /* テキスト部分を広げて中央に配置可能にする */
}

.text br {
  display: none;
}


.arrow-icon {
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0; /* サイズ固定 */
  margin-left: auto; /* 明示的に右寄せ */
}

/* 矢印（線2本で「くの字」←） */
.arrow-icon::before,
.arrow-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 80%;
  transform-origin: left center;
}

.arrow-icon::before {
  transform: translate(-50%, -50%) rotate(-225deg);
}

.arrow-icon::after {
  transform: translate(-50%, -50%) rotate(225deg);
}




.tr-box {
  width: 95%;
  max-width: 1200px;
  overflow: hidden; /* floatの影響を受けないようにする */
  margin: 0 auto 150px;
}

.tr-image {
  float: left;
  width: 350px;
  margin-right: 50px;
  margin-bottom: 40px;
}

.tr-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}



.tr-text p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #222;
  margin-bottom: 1em;
}

.tl-box {
  width: 95%;
  max-width: 1200px;
  overflow: hidden; /* floatの影響を受けないようにする */
  margin: 0 auto 150px;
}

.tl-image {
  float: right;
  width: 350px;
  margin-left: 50px;
  margin-bottom: 40px;
}

.tl-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}


.tl-text p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #222;
  margin-bottom: 1em;
}




/* スマホ表示時の調整 */
@media (max-width: 767px) {

.greeting-box {
  width: 90%;
  overflow: hidden; /* floatの影響を受けないようにする */
  margin: 0 auto 70px;
}

  .greeting-image {
    float: none;
    width: 70%;
    margin: 0 auto 30px;
  }

  .greeting-image img {
    max-width: 100%;
  }

.greeting-text p {
 font-size: 0.9rem;
  line-height: 1.8;
}

.outline-box {
  width: 90%;
  overflow: hidden; /* floatの影響を受けないようにする */
  margin: 50px auto 50px;
}

.outline-box dl{
 margin: 0 auto 2em;
 padding: 0 0 2em 0;
 border-bottom:1px #111 dotted;
}

.outline-box dt {
  float: none;
  width: 100%;
  margin-bottom: 0.5em;
 font-size: 0.9rem;
}

.outline-box dd {
  margin-left: 0;
  font-size: 0.9rem;
}

.outline-box dd span{
 font-size: 0.85rem;
}

  .next-page-button {
 font-size: 0.95rem;
    padding: 20px 25px;
    gap: 8px;
    max-width: 90%;
  }
  
.next-page-button br {
  display: block;
}


  .arrow-icon {
    width: 16px;
    height: 16px;
  }

  .arrow-icon::before,
  .arrow-icon::after {
    width: 6px;
  }
  

.tr-box {
  width: 90%;
  overflow: hidden; /* floatの影響を受けないようにする */
  margin: 0 auto 70px;
}
  
.tr-image {
  float: none;
  width: 70%;
  margin: 0 auto 30px;
}
  
.tr-image img {
  max-width: 100%;
}
  



  
.tr-text p {
  font-size: 0.9rem;
 line-height: 1.8;
}

.tl-box {
  width: 90%;
  overflow: hidden; /* floatの影響を受けないようにする */
  margin: 0 auto 70px;
}
  
.tl-image {
  float: none;
  width: 70%;
  margin: 0 auto 30px;
}
  
.tl-image img {
  max-width: 100%;
}

  
.tl-text p {
  font-size: 0.9rem;
 line-height: 1.8;
}


}
