@charset "utf-8";

body {
    color: #555555;
    font-size: 12px;
    font-family: 'KozGoStd-Regular',
                 'Hiragino Kaku Gothic Pro',
                 'ヒラギノ角ゴ Pro W3',
                 'Meiryo',
                 'メイリオ',
                 'Geneva',
                 'Arial',
                 'Verdana',
                 'sans-serif';
    background-color: #ffffff;
    #background-image: url(../images/back.gif);
    background-repeat: repeat;
    margin: 0px;
    padding: 0px;
    background-position: center top;
    }

A:link {
    color: #26A24D;
    text-decoration: none;
    font-weight: bold;
    }

A:visited {
    color: #26A24D;
    text-decoration: none;
    font-weight: bold;
    }

A:active {
    color: #26A24D;
    font-weight: bold;
    }

A:hover {
    color: #26A24D;
    font-weight: bold;
    }

#header {
    padding-top: 14px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    }

#header h1 {
    font-size:14px;
    font-weight:normal;
    vertical-align: top;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    margin: 0;
    }

.title {
    font-size: 16px;
    line-height: 160%
    }

.big {
    font-size: 14px;
    line-height: 160%
    }

.txt {
    font-size: 12px;
    line-height: 160%
    }

.small {
    font-size: 11px;
    line-height: 160%
    }

.kaku {
    font-size: 140%;
}
.domain-autocomplete {
    font-size: 140%;
}
.tel {
    font-size: 140%;
}
.a1 {
	font-size: 140%;
    color: #417451;
    font-weight: bold;
	border: 3px solid #417451;
	background: #c4d3c9;
	padding: 5px 0px 5px 10px;
}
.a2 {
	font-size: 140%;
    color: #a76398;
    font-weight: bold;
	border: 3px solid #a76398;
	background: #e5c2db;
	padding: 5px 0px 5px 10px;
}
input[type="radio"],
input[type="chexkbox"] {
	-webkit-transform: scale(3.0);
	transform: scale(3.0);
}

/*続きを読む処理*/
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;
}
.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.cp_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
	line-height: 2.5rem;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	width: 16rem;
	font-family: FontAwesome;
	content: '続きをよむ';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 20px;
	background-color: rgba(27, 37, 56, 1);
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	overflow: hidden;
	height: 400px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.cp_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
	font-family: FontAwesome;
	content: '閉じる';
}
.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}
