@charset "UTF-8";
/* 各種ページ設定　ヘッダー　フッター　グローバルナビ　インラインフレーム　カラム　テーブル*/
/* ------------------------------------------------------------------------------------------------------- */
/* ページタイトル非表示 */
#top_title_area{
	display: none;
}
/* メニュー下エリア */
#top_title_area{
	background-color: #fff !important;
	border-bottom: #969696 1px solid;
	text-align: center !important;
}
/* h1タイトル下エリア */
.l-content{
	background-color: #fff !important;
}
.p-topArea{
	min-height: 20px !important;
    background-color: #000 !important;
}
/* コンテンツを一番上に持ってくる */
.l-content__body.l-container {
	padding-top: 0;
	margin-top: 0;
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* グローバルナビ設定 */
.c-gnav{
	height: 60px !important;
	padding: 15px;
}
.c-gnav li{
	text-decoration: none;
}
.c-gnav li a {
	font-family: "ヒラギノ角ゴ ProN W3";
    color: #000000;
}
.c-gnav li a:hover {
	border-bottom: #1e90ff 5px solid;
	color: 	#DF7451;
	cursor: pointer;
	text-decoration: none;
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* 投稿 */
/* 背景
.wp-block-latest-posts__list{
	background-color: #ffcccc;
}
*/

/* タイトル */
.wp-block-latest-posts__post-title{
	color: #4169e1 !important;
	font-weight: bold !important;
}
.wp-block-latest-posts__list li{
	background-color: #f8f8f8 !important;
}
/* 本文 */
.wp-block-latest-posts__post-excerpt{
}
/* ------------------------------------------------------------------------------------------------------- */

/* インラインフレーム */
.iframe{
	display: block;
	width: auto;
	height: 300px;
	margin: 20px 10px !important;
	border: 1px #ccc solid;
	overflow: scroll;
	padding: 4px;
	text-align: left;
}
/* インラインフレーム用定義リスト */
dl {
    margin: 10px 5px;
	text-align: left;
	color: #333;
}
dt {
	margin: 5px;
	padding: 5px 10px;
	font-size: 16px;
	border: 1px #dddddd solid;
	background-color: #eee;
}
dd {
	padding: 5px 15px;
	font-size: 16px;
	line-height: 24px;
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* カラム */
.out-column {
	display: flex;
	margin: 20px 0px !important;
	gap: 20px; /* カラム間の隙間 */
}
.in-column {
	flex: 1; /* 均等割り */
	padding: 10px;
	box-sizing: border-box;
}
.in-column-border {
	flex: 1; /* 均等割り */
	padding: 10px;
	box-sizing: border-box;
	border: 1px #cccccc solid !important;
	box-shadow:  5px 5px 10px rgba(0,0,0,0.2)
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* カラム */
img:hover {
  opacity: 0.5; /* 50%透過（0.3〜0.7で調整） */
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* テーブル */
.table {
	width: 100% !important;
	margin: 10px auto !important;
	line-height: 28px;
	table-layout: fixed;
}
.table th {
	font-weight: normal;
	font-size: 16px;
	background-color: #faf0e6;
	text-align:center;
	border: 1px #969696 solid !important;
}
.table td {
    padding-left: 5px;
	font-size: 16px;
	color:#555555;
	text-align: left;
	border: 1px #969696 solid !important;
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* フッター */
#footer {
	margin: 10px 0px;
	border-top: solid 1px #969696;
}
.wp-block-column p{
    font-size: 16px !important;
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* スマホ */
@media screen and (max-width: 768px) {
  .out-column {
    flex-direction: column; /* スマホなど小さい画面は縦並びに */
  }
	/* インラインフレーム */
    .form-frame{
		margin: 0px !important;
	}
	.table {
		border: none !important;
	}
	.table tr {
	    display: block;
		border: none !important;
    }
    .table th {
		width: auto;
	    display: block;
		text-align: center;
		border: none !important;
    }
    .table td {
	    display: block;
		border: none !important;
    }
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* アコーディオン　解約で使用 */
summary {
	width: 100%;
	margin: 10px auto;
    padding: 10px 0px;
	padding-left: 10px;
	text-align: left;
	box-shadow: 2px 2px 5px #969696;
    font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	border-radius: 5px;
	list-style: none; /* 矢印非表示（Firefox用） */
}
summary.bg-red{
	background-image: linear-gradient(180deg, rgba(204, 102, 102, 0.5), rgba(233, 189, 193, 0.5));
	border: 2px #cc6666 solid;
}
summary.bg-blue{
	background-image: linear-gradient(180deg, rgba(118, 188, 207, 0.5), rgba(188, 212, 221, 0.5));
	border: 2px #1e90ff solid;
}
summary::-webkit-details-marker {
	display: none; /* Chrome,Safari用 */
}
summary:before {
	content: "▶ ";
}
details[open] summary:before {
	content: "▼ ";
}
/* 解約の中身 */
.accordion-content{
	width: 100%;
	margin: 10px auto;
	padding: 10px;
	border-radius: 5px;
}
/* 解約のボーダー */
.bg-red{
	border: 2px #cc6666 solid;
}
.bg-blue{
	border: 2px #1e90ff solid;
}
/* ------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------- */
/* FAQ */
.faqs dl {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
.faqs dt {
	width: 96%;
	margin: 10px auto;
    padding: 10px 10px;
	text-align: left;
    border: 1px #8d3927 solid;
	box-shadow: 2px 2px 5px #969696;
    background: #f8f8f8;
    font-size: 16px;
	line-height: 24px;
	border-radius: 5px;
    background-color: #f8dcdc;
}
.faqs dd{
    width: 96%;
	margin: 10px auto;
	padding: 10px 10px;
	border: 1px #8d3927 solid;
	border-radius: 5px;
}
.faqs .hover{
	border: 1px #969696 solid;
	box-shadow:2px 2px 5px #969696;
    background-color: #ffd5d5;
}
.faqs h6 {
	margin: 5px auto;
	padding: 2px 8px;
    font-size: 16px;
	color: #ff5555;
	text-align: left;
}
/* ------------------------------------------------------------------------------------------------------- */