/*
Theme Name: Landing Static
Theme URI: https://example.com/
Author: Your Name
Version: 1.0
Text Domain: landing-static
*/

/* プライバシーポリシー専用スタイル */
#fks-embed {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #111;
	
}

#fks-embed .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

#fks-embed h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
	
	background: #edf4f7;
	padding: 5px 15px;
}

#fks-embed h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 16px;
	border-bottom: 1px dotted #ccc;
}

#fks-embed h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
}

#fks-embed p {
  margin: 0 0 16px;
}

#fks-embed ul {
  margin: 0 0 16px 0;
}

#fks-embed .btn-wrapper {
  text-align: center;
  margin-top: 32px;
}

#fks-embed .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: opacity .2s;
}

#fks-embed .btn:hover {
  opacity: 0.9;
}

#fks-embed .fks_table {
	width: 100%;
	border: 1px solid #eee;
	padding: 10px;
	margin-bottom: 20px;
}

#fks-embed .fks_table th {
	text-align: left;
	width: 20%;
	padding: 15px;
	background: #f4f7f9;
}

#fks-embed .fks_table td {
	width: 80%;
	padding: 15px 20px;
}

.button_blue {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
	text-decoration: none;
	transition: 0.3s;
}

.button_blue::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.button_blue:hover {
    background-color: #1579c0;
}

