@charset "utf-8";

/* 追従バナー */
.trigger-container {
    position: fixed;
    top: 30%;
    right: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1000;
    transform: translateX(224px);
    transition: transform 1s ease, opacity 1s ease;
}
.trigger-list {
    width: 224px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    position: relative;
    list-style: none;
    padding: 12px;
    background: #fff;
}

.trigger-container:hover{
    transform: translateX(0);
}

/* 2025/01/07 inose */
.entry-content {
                                font-size: 1.2rem;
}

.box_a,
.box_b {
                                width: 100%;
                                background: #FFFEC3;
                                border-radius: 15px;
                                padding: 0.7rem 0.7rem 2rem 0.7rem;
                                margin: 0 0 1rem 0;
}
.box_b {
                                background: #eafbe4;
}
.half-table table {
                                width: 100%;
}
.half-table table th,
.half-table table td {
                                border-bottom: 2px dashed #D5D5D5;
                                padding: 0.4rem 0.2rem;
}
.half-table table td {
                                width: 20%;
                                text-align: right;
}
.box_a table th {
                                color:#ea8e00;
}
.box_b table th {
                                color:#31ae2e;
}
.box_a p,
.box_a ul,
.box_b p,
.box_b ul {
                                margin: 10px 0;
}
.box_b strong {
                                color:#53bc50;
}

.box_c {
                                width: 100%;
                                background: #fff;
                                border: 2px dashed #4f94e2;
                                border-radius: 15px;
                                padding: 0.7rem 0.7rem 2rem 0.7rem;
                                margin: 0 0 1rem 0;
}
ul.list_point_a li{
	list-style:none;
	font-size: 1.1rem;
}
ul.list_point_a li:before {
	content: "\f14a";
	font-family: "Font Awesome 5 Free";
	color: #ea6c5c;
	font-weight: 900;
	padding: 0 5px 0 0;
	font-size: 1.2rem;
}
.box_center {
                                text-align: center;
}
.table-bordered th {
                                background-color: #FFFEC3;
	font-weight: 900;
}

/* CVブロック */
.post-type-contents .common-contact {
	width: 100vw !important;
	position: relative;
	background: url(/images/default/main-trouble-bg.png) repeat center center;
	transform: translateX(-50%);
	text-align: center;
	left: 50%;
}

.template-type-blog .main-trouble-inner {
	width: 880px;
	margin: auto;
	background: #fff;
	border-radius: 45px;
	padding: 20px 10px 20px 10px;
	margin: 0px 10px 0px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.template-type-blog .main-trouble-title {
	width: 880px;
	margin: 0px 10px 40px 10px;
}


/*==========
CONTENTS WORKS ID:1995
==========*/
table.table_qa{
    margin: 0 0 0.8em 0;
    padding: 0;
    margin-bottom:40px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table.table_qa th{
    padding: 10px;
    width: 5%;
}
table.table_qa td{
    padding: 10px;
}
table.table_qa tr:nth-child(2n-1) td{
                                color: #53bc50;
                                font-weight: 900;
}
table.table_qa tr:nth-child(2n){
                                border-bottom: 2px dashed #D5D5D5;
                                padding: 0.4rem 0.2rem;
}
table.table_qa tr:nth-child(2n) th{
    vertical-align: top;
}
/* Qアイコン */
.q_icon{
	/*font-family: 'Nunito', sans-serif;*/
	/* font-family: "ヒラギノ明朝 Pro","Hiragino Mincho Pro","游明朝", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif; */
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-weight: normal;
	display: inline-block;
	font-size: 26px;
	color: #fff;
	background: #53bc50;
	border-radius: 50%;
	width: 54px;
	height: 54px;
	text-align: center;
	line-height: 54px;
}
/* Aアイコン */
.a_icon{
	/*font-family: 'Nunito', sans-serif;*/
	/* font-family: "ヒラギノ明朝 Pro","Hiragino Mincho Pro","游明朝", "Yu Mincho", YuMincho,  "MS P明朝", "MS PMincho", serif; */
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-weight: normal;
	display: inline-block;
	font-size: 26px;
	color: #fff;
	background: #ec9712;
	border-radius: 50%;
	width: 54px;
	height: 54px;
	text-align: center;
	line-height: 54px;
}

/*==========
CONTENTS WORKS ID:1501
==========*/
/*config*/
:root {
    --timeline-color:#53bc50;  /*タイムラインの色*/
    --timeline-circle-title:22px; /*見出しの文字サイズ*/
    --timeline-circle-size:70px; /*サークルのサイズ*/
    --timeline-circle-font:40px; /*サークルの文字サイズ*/
}
/*css*/
.template-timeline{
    counter-reset: number;
    margin-bottom: 30px;
}
.template-timeline-once{
    position: relative;
    min-height: 100px;
}
.template-timeline-once::before{
    counter-increment: number;
    content:counter(number);
    position: absolute;
    top:0;
    left:0;
    width:var(--timeline-circle-size);
    line-height:var(--timeline-circle-size);
    height:var(--timeline-circle-size);
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background: var(--timeline-color);
    color: #fff;
    font-size: var(--timeline-circle-font);
    z-index:2;
}
.template-timeline-once::after{
    position: absolute;
    content:"";
    top:calc(var(--timeline-circle-size)/2);
    left:calc(var(--timeline-circle-size)/2);
    width:2px;
    height:100%;
    display: inline-block;
    background: var(--timeline-color);
    z-index:1;
}
.template-timeline-once:last-of-type::after{
    display: none;
}
.template-timeline-text{
    margin-left:calc(var(--timeline-circle-size) + 20px);
    flex-wrap: wrap;
}
.template-timeline-title{
    margin:1em 0;
    font-size: var(--timeline-circle-title);
    color:var(--timeline-color);
font-weight: 900;
  font-size: 1.5rem;
}