
/* philosophy
------------------------------------------------------------*/

.philosophy_ttl_en {
    position: relative; /* 疑似要素の基準位置 */
    display: inline-block; /* これが重要：幅を内容に合わせる */
    overflow: hidden; /* 背景がはみ出さないように */
    font-size: 3em; /* フォントサイズはお好みで */
    color: #fff; /* 文字色 */
    padding: 0 20px; /* テキストと背景の間に少し隙間を作る */
    line-height: 1.2; /* 行の高さ */
    margin: 5px auto; /* 見やすいように余白を追加 */
    text-transform: uppercase;
    font-weight: bold;
}
@media screen and (max-width: 575px) {
.philosophy_ttl_en {
    font-size: 2em;
}
}
/* 背景の疑似要素の初期状態 (アニメーション前) */
.philosophy_ttl_en::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 親要素（.philosophy_ttl_en）の幅に合わせる */
  height: 100%; /* 親要素の高さに合わせる */
  background-color: rgba(202,192,145,1.00); /* 表示される背景色 */
  transform: scaleX(0); /* 初期状態は横方向のスケールが0 */
  transform-origin: left; /* 左から広がるように */
  z-index: -1; /* タイトルテキストの下に表示 */
}

/* ========================================= */
/* 要素が画面内に入ったときにJavaScriptで追加されるクラス */
/* ========================================= */

.philosophy_ttl_en.is-animated::before {
  /* is-animatedクラスが付与されたら背景アニメーションを開始 */
  animation: slideInFromLeft 1s ease-out forwards;
}

/* ========================================= */
/* @keyframes アニメーションの定義 (変更なし) */
/* ========================================= */

/* 背景のアニメーション */
@keyframes slideInFromLeft {
  from {
    transform: scaleX(0); /* アニメーション開始時：幅0 */
  }
  to {
    transform: scaleX(1); /* アニメーション終了時：幅100% */
  }
}
.philosophy_ttl {
    font-size: 30px;
    padding-bottom: 5px;
    margin-bottom: 0px;
    font-weight: bold;
    padding-right: 25px;
    padding-left: 25px;    
    letter-spacing: 0.2em;
	font-feature-settings: "palt";
}
@media screen and (max-width: 575px) {
.philosophy_ttl {
    font-size: 20px;
	padding-right: 5px;
    padding-left: 5px;
}
}
.philosophy_read {
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 0px;
    font-weight: bold;
    padding-right: 25px;
    padding-left: 25px;   
    line-height: 1.6;
}
@media screen and (max-width: 575px) {
.philosophy_read {
    font-size: 14px;
	padding-right: 5px;
    padding-left: 5px;
}
}

.philosophy_tx {
    font-size: 17px;
    line-height: 1.9;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 3%;
}
@media screen and (max-width: 575px) {
.philosophy_tx {
    font-size: 14px;
	padding-right: 5px;
    padding-left: 5px;
}
}
.philosophy_img {    
    margin-top: 20px;
}
.philosophy_list  {    
    margin-left: 50px;
	margin-bottom: 3%;
}
@media screen and (max-width: 575px) {
.philosophy_list {
    margin-left: 30px;
	
}
}
.philosophy_list li  {
    font-size: 17px;
    line-height: 1.9;
    padding-right: 0px;
    padding-left: 0px;
    margin-bottom: 0px;
    list-style-type: disc;
}
@media screen and (max-width: 575px) {
.philosophy_list li {
    font-size: 14px;
	
}
}