@charset "UTF-8";

/* ----------------------------------

	変数定義

---------------------------------- */
:root {
	--color-primary: #5F36B2;
	--color-secondary: #FAF7FF;
	--color-border: #DEDEDE;
	--color-txt: #1D2F52;
}

/* ----------------------------------

base css

 ---------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: inherit;
	font-size: inherit;
	line-height: 1;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: var(--color-txt);
	overflow-x: hidden;
	width: 100%;
}
ol, ul {
	list-style: none;
	letter-spacing: -1rem;
	font-size: 0;
}
li{
	letter-spacing: 1px;
	font-size: 16px;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img{
	max-width: 100%;
	vertical-align: top;
}
p{
	font-size: 16px;
}
small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}
a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
	cursor: pointer;
	transition: all .4s;
	color: var(--color-primary);
	text-decoration: none;
}
a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}
a:hover {
	opacity: 0.4;
}
@media print, screen and (min-width: 960px){
	a[href^="tel:"] {
			pointer-events: none;
	}
}

/*英字フォント===============================*/
	.fntPoppins{
		font-family: 'Poppins', sans-serif;
		font-weight: 700;
	}

/*改行===============================*/
	.br320{
		display: none;
	}
	.brPad{
		display: none;
	}
	.brPc{
		display: none;
	}
	@media print, screen and (max-width: 320px){
		.br320{
			display: block;
		}
		.br375{
			display: none;
		}
	}
	@media print, screen and (min-width: 768px){
		.br375{
			display: none;
		}
		.brPad{
			display: block;
		}
	}
	@media print, screen and (min-width: 960px) {
		.brPad{
			display: none;
		}
		.brPc{
			display: inline;
		}
	}

/*文章===============================*/
.txt{
	line-height: 1.5;
	letter-spacing: 0.5px;
}

/*ボタン===============================*/
.btn{
	display: block;
	border-radius: 100px;
	line-height: 50px;
	text-align: center;
	font-weight: 700;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-image: url(/cfms/_assets/common/img/arrow-left-short.svg);
	background-size: 15px;
	border: 1px solid var(--color-primary);
	margin: 0 auto;
	width: 300px;
}
@media print, screen and (min-width: 960px) {
	.btn{
		width: 346px;
		line-height: 63px;
		background-position: right 30px center;
	}
}
