<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* page CSS Document */
/* 基本ページ CSS */

/* 運営会社 ********************************************************** */
.table-company {
  border-collapse:collapse;
  width: 100%;
}

.table-company th,
.table-company td {
  font-size: 1.5rem;
  padding: 15px 10px;
  border: 1px solid #ddd;
}

.table-company th {
  background-color: #ECEEF1;
  color: #343434;
  width: 20%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .table-company th {
    width: 100px;
  }
}

/* 利用規約 ********************************************************** */
.entry-content {
  font-size: 1.6rem;
  line-height: 1.6;
}

.rteindent1 {
  margin-left: 40px;
}


.entry-content.contact h3 {
  position: relative;
  visibility: hidden; /* 元の文字を非表示 */
  text-align: center; /* 子要素の中央揃え */
}

.entry-content.contact h3::before {
  content: '【お願い】'; /* 新しい文字列 */
  visibility: visible; /* 表示させる */
  position: absolute; /* 絶対配置で調整 */
  top: 0; /* 必要なら調整 */
  left: 50%; /* 水平方向の中央揃え */
  transform: translateX(-50%); /* 中央揃え */
  color: inherit; /* 元のテキスト色を引き継ぐ */
  font-size: inherit; /* 元のフォントサイズを引き継ぐ */
}

@media screen and (max-width: 767px) {
  .rteindent1 {
    margin-left: 0;
  }
}

.page-node-type-page h1.page-title{
  text-align: center;
}
</pre></body></html>