@charset "utf-8";
/* CSS Document */
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	box-sizing: border-box;
}
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
}
body {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75em;
	letter-spacing: 0.05em;
	color: #111;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", "Yu Gothic", sans-serif; /*ゴシック体*/
	word-break: break-all; /* 常に行末で改行 */
	word-wrap: break-word; /* 英数半角の改行 */
	text-align: justify;/*テキストを両端揃え*/
	text-justify: inter-ideograph;/*テキストを両端揃えIE用*/
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
	vertical-align: top;
	font-size: 0;
	line-height: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
nav ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	text-decoration: none;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
/*リストマーカー無
-----------------------------------------*/
ol, ul {
	list-style: none;
}
/*フォント関連半角英数字折り返しする
-----------------------------------------*/
html {
	overflow-y: scroll; /*スクロールバーを常に表示*/
	font-size: 62.5%;
}
/*===================*/
/*▼▼▼▼▼▼*/
/*デザインボックス*/
.main_box {
	border: 1px solid #999;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.second_box01 {
	padding: 30px 20px;
	border: 1px solid orange;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.second_box01 h2 {
	text-align: left;
}
/*----- BOX */
.tti_box01 {
	position: relative;
	display: inline-block;
	margin: 1rem 0 1rem -10px;
	padding: 1rem 3rem;
	color: #fff;
	/*ボックスを丸くしたい時は↓をつける
  border-radius: 0 100vh 100vh 0; */
	background: #cc0000;
	-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.tti_box01:before {
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	content: '';
	border-top: 10px solid #990000;
	border-left: 10px solid transparent;
}
/*----- Title */
.tti_01 {
	background: rgb(238,238,238);
	background: linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(187,187,187,1) 50%, rgba(238,238,238,1) 100%);
	letter-spacing: 0.2em;
	font-weight: 500;
	padding: 5px 10px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.tti_01:first-letter {
	color: #cc0000;
	font-size: 1.5em;
	padding-right: 5px;
}
.tti_02_P {
	background-color: #ff6666; /* 背景色 */
	color: #fff; /* 文字色 */
	overflow: hidden;
	padding: 15px 10px;  /* 余白 */
	position: relative;
}
.tti_02_P:before {
	background-color: #fff; /* 切り替わる色1 */
	content: '';
	display: block;
	opacity: 0.3; /* 不透明度 */
	transform: rotate(-50deg);
	position: absolute;
	bottom: -10px;
	right: -330px;
	width: 500px;
	height: 500px;
}
.tti_02_P:after {
	background-color: #fff; /* 切り替わる色2 */
	content: '';
	display: block;
	opacity: 0.3; /* 不透明度 */
	transform: rotate(-70deg);
	position: absolute;
	bottom: -100px;
	right: -500px;
	width: 500px;
	height: 500px;
}
.tti_02_R {
	background-color: #bf272d; /* 背景色 */
	color: #fff; /* 文字色 */
	overflow: hidden;
	padding: 15px 10px;  /* 余白 */
	position: relative;
}
.tti_02_R:before {
	background-color: #fff; /* 切り替わる色1 */
	content: '';
	display: block;
	opacity: 0.3; /* 不透明度 */
	transform: rotate(-50deg);
	position: absolute;
	bottom: -10px;
	right: -330px;
	width: 500px;
	height: 500px;
}
.tti_02_R:after {
	background-color: #fff; /* 切り替わる色2 */
	content: '';
	display: block;
	opacity: 0.3; /* 不透明度 */
	transform: rotate(-70deg);
	position: absolute;
	bottom: -100px;
	right: -500px;
	width: 500px;
	height: 500px;
}
/*----- Line */
.img_line01 {
	border: 1px solid #fe7171;
}
/*----- font */
.color_blue {
	color: #0033cc;
	font-weight: 600;
}
.color_orange {
	color: #ff9900;
	font-weight: 600;
}
.color_red {
	color: #ff0000;
	font-weight: 600;
}
.list_mark {
	list-style-type: square;
	padding-left: 20px;
}

@media (min-width: 560px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}