@charset "UTF-8";
/****************************************
	common.cssにあったもの
*****************************************/



/****************************************
	html内にあったもの
*****************************************/

a:link,
a:visited {
	color: unset;
}

img {
	vertical-align: top;
	width: auto;
}

img.auto {
	width: 100%;
	height: auto;
}

.mb3 {
	margin-bottom: 3rem;
}


.center {
	margin: 0 auto;
}

.column {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

table.carbonsheet {
	border-collapse: collapse;
	font-size: 11px;
	margin-bottom: 20px;
	width: 100%;
	table-layout: fixed;
	word-break: break-word;
	/*追加する*/
}

table.carbonsheet th {
	font-weight: bold;
	color: #fff;
	background: #717071;
	text-align: center;
	border: #fff solid 1px;
	font-size: 1.25em;
	padding: 0.5em;
	vertical-align: middle;
	line-height: 1.2;
}

table.carbonsheet td {
	text-align: left;
	padding: 0.5em;
	vertical-align: middle;
}
table.carbonsheet td:nth-of-type(n + 3){
	text-align: center;
}

table.carbonsheet td.item {
	font-weight: bold;
	width: 190px;
}
table.carbonsheet td.item a:hover {/*追記*/
	color: #f00;
    text-decoration: none;
}

table.carbonsheet td {
	border-right: #000 solid 1px;
	border-bottom: #000 solid 1px;
}

table.carbonsheet th:first-of-type {
	text-align: left;
	width: 30%;
	font-size: 1.25em;
	line-height: 1.5em;
}

table.carbonsheet th:nth-of-type(2) {
	text-align: left;
	width: 30%;
}

table.carbonsheet th:nth-of-type(n+3) {
	text-align: center;
	width: 8%;
	font-size: 20px;
}

@media screen and (max-width: 600px) {
	table.carbonsheet th:first-of-type {
		width: 25%;
		font-size: 1em;
		line-height: 1.25em;
	}

	table.carbonsheet th:nth-of-type(2) {
		width: 25%;
	}

	table.carbonsheet th:nth-of-type(n+3) {
		width: 10%;
	}
	table.carbonsheet img{
		width: 100%;
		max-width: fit-content;
	}
}


table.carbonsheet td:last-child {
	border-right: none;
}


table.carbonsheet tr:nth-child(2n) {
	background: #e6e6e6;
}

table.carbonsheet tr:nth-child(2n+1) {
	background: #cccccc;
}

.carbon {
	margin-bottom: 4rem;
	position: relative;
}

.carbon h1.sheetname {
	margin: 0;
	/* デフォルトCSS打ち消し */
	position: relative;
	/* 位置調整 */
	font-weight: normal;
	/* 文字の太さ調整 */
	font-size: 18px;
	/* 文字サイズ指定 */
	background-image: url(https://gigaplus.makeshop.jp/hasepro/img/bg.jpg);
	/* 背景色指定 */
	background-size: 70% auto;
	color: #fff;
	/* 文字色指定 */
	padding: 6px 0 6px 20px;
	/* 余白指定 */
	margin-bottom: 10px;
	/* 周りの余白指定 */
}

h1.sheetname:before {
	content: '';
	/* 空の要素を作る */
	height: 110%;
	/* 高さ指定 */
	width: 3px;
	/* 幅指定 */
	display: block;
	/* ブロック要素にする */
	position: absolute;
	/* 位置調整 */
	left: 14px;
	/* 位置調整 */
	top: -3px;
	/* 位置調整 */
	margin: auto;
	/* 位置調整 */
	background-color: #fff;
	/* 背景色指定 */
	transform: rotate(3deg);
	/* 回転 */
}

.flexitem {
	width: 100%;
	/*  margin-bottom: 3em; */
	flex-wrap: wrap;
}

.carbon h3 {
	margin-left: 28px;
	font-size: 20px;
	font-weight: bold;
	color: #720406;
}

.carbon .left {
	margin-left: 1em;
	line-height: 2.1em;
	width: 75%;
	font-size: 1em;
}

.carbon div.right {
	text-align: center;
	width: 22%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
	margin-bottom: 1rem;
}

.carbon div.right div{
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

/* .carbon div.right div:nth-child(2) {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 50px auto 0 auto;
} */

@media screen and (max-width: 880px) {
	.flexitem {
		flex-direction: column;
	}

	.carbon .left {
		width: 100%;
		margin-bottom: 3em;
	}

	.carbon div.right {
		width: 100%;
		justify-content: space-between;
	}

	.carbon div.right div {
		flex-direction: row;
		margin: 0 auto;
		justify-content: space-around;
	   /* width: 65%; */
		align-items: center;
	}
}

@media screen and (max-width: 600px) {
	.carbon div.right div:nth-child(1) {
		flex-direction: column;
	}
}


.carbon div.right img {
	width: 100%;
	max-width: fit-content;
	height: auto;
	margin: 0 auto 10px auto;
}

.carbon .sheetphoto {
	display: flex;
	justify-content: flex-start;
	font-size: 0.8em;
}

.carbon .sheetphoto li {
	width: 32%;
	margin: 1rem 1%;
}

.carbon .sheetphoto li a {
	display: block;
}

.carbon .sheetphoto li a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 880px) {
	.carbon .sheetphoto li {
		height: auto;
	}
}

@media screen and (max-width: 600px) {
	.carbon .sheetphoto {
		flex-wrap: wrap;
	}

	.carbon .sheetphoto li {
		width: 48%;
		height: auto;
	}
}

@media screen and (max-width: 480px) {

	.carbon .sheetphoto li {
		width: 90%;
		margin-bottom: 1em;
		line-height: 1.8em;
	}
}



a.btn_i,
a.btn_m {
	width: 90px;
	height: 90px;
	background: #ebebeb;
	border: 1px solid #FFF;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	box-shadow: 0px 0px 2px rgba(000, 000, 000, 0.3), inset 0px 0px 5px rgba(000, 000, 000, 1);
	b-moz-box-shadow: 0px 0px 2px rgba(000, 000, 000, 0.3), inset 0px 0px 5px rgba(000, 000, 000, 1);
	-webkit-box-shadow: 0px 0px 2px rgba(000, 000, 000, 0.3), inset 0px 0px 5px rgba(000, 000, 000, 1);
	transition: background-color 0.5s ease-in;
	-webkit-transition: background-color 0.5s ease-in;
}

a.btn_i {
	color: #2a82a3;

}

a.btn_m {
	color: #8b0000;
}

a.btn_i:hover,
a.btn_m:hover {
	background: #8b0000;
	color: #FFF;
}

a.RSm01 {
	margin: 0 auto;
}

a.RSm02 {
	margin: 1em auto 0 0;
}

@media screen and (max-width: 880px) {
	a.RSm02 {
		margin: 0 auto 0 0;
	}

}

.sdouga {
	width: 100%;
	height: fit-content;
}

.sdouga iframe {
	width: 100%;
	height: 100%;
	margin-bottom: 1rem;
	aspect-ratio: 16 / 9;
}

.sdouga a {
	display: block;
	width: 70%;
	text-align: center;
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	font-weight: bold;
	text-decoration: none;
	color: #008fe7;
	border: solid 2px #008fe7;
	border-radius: 3px;
	transition: .4s;
	border-radius: 25px;
	margin: 0 auto 1rem auto;
}

.sdouga a:hover {
	background: #008fe7;
	color: white;
}




/* i {
	padding-right: 0.5rem;
} */

@media screen and (max-width: 480px) {
	.sdouga a {
		width: 100%;
	}
}

.cp_h1title {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 17%;
	text-align: center;
	color: #000;
	font-size: 1.5rem;
	margin: 1rem auto;
}

.cp_h1title::before,
.cp_h1title::after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 15%;
	height: 3px;
	border-top: 3px solid #000;
}

.cp_h1title::before {
	left: 0;
}

.cp_h1title::after {
	right: 0;
}

/* 追加 */
div.sample p {
	margin: 0.35em 0px;
}

.inline {
	padding: 1px;
	/*←画像の左右に5pxの余白を入れる場合*/
	width: calc(100%/5);
	/*←画像を横に4つ並べる場合*/
	text-align: center;
}

.box {
	padding: 0px 0 50px 0;
	margin-bottom: 4em;
}


/* 追加 */

/* 追加 */
.pageWrap .pageFav a {
	border: none;
	background-color: #666;
	color: #fff;
	cursor: pointer;
	padding: 12px 16px;
	border-radius: 16px;
	margin: 0 15px 30px;
	text-align: center;
	font-size: 12px;
	transition: background-color 0.5s;
	box-shadow: 1px 1px 16px -8px rgba(0, 0, 0, 0.9);
}
	/* 追加 */


	/* 追加 */
	/* fix side menu */
	ul.fixSideMenu {
		position: fixed;
		top: 30%;
		right: 20px;
		padding: 0px;
		z-index: 100;
	}

	ul.fixSideMenu li {
		padding: 0;
		background-color: rgba(255, 255, 255, 0.8);
		height: 72px;
		/* heightとwidth四角形のサイズ */
		width: 72px;
		margin-bottom: 10px;
		/* margin-bottom四角形同士のサイズ */
	}

	ul.fixSideMenu li a {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		height: 100%;
		font-size: 12px;
		letter-spacing: 1px;
		color: #FFF;
		font-weight: 900;
		background-color: #ff0000;
	}

	ul.fixSideMenu li.positionActive {
		background-color: rgba(212, 9, 87, 0.8);
		color: #fff;
		box-shadow: 0 0 8px 0px rgba(212, 9, 87, 0.9);
		transition: all 0.7s;
		animation: yokoyoko 2s infinite alternate linear;
	}

	ul.fixSideMenu li.positionActive a {
		color: #fff;
	}

	@media screen and (max-width: 599px) {
		ul.fixSideMenu {
			position: fixed;
			top: 88px;
			right: -8px;
		}

		ul.fixSideMenu li {
			height: 62px;
			/* heightとwidth四角形のサイズ */
			width: 62px;
			margin-bottom: 15px;
			/* margin-bottom四角形同士のサイズ */
		}


		ul.fixSideMenu li {
			width: 50px;
			height: 50px;
			background-color: rgba(255, 0, 0, 0.5);
		}

		ul.fixSideMenu li a {
			font-size: 10px;
			letter-spacing: -1px !important;
			background-color: rgba(255, 0, 0, 0.5);
			opacity: 0.7;
		}
	}