@charset "UTF-8";
		
body {
  overflow-wrap: anywhere; 
  word-break: normal;
  line-break: normal; /* 禁則処理を厳格に適用 */
}
@media screen and (max-width: 640px) {
.displaynone{
	display: none;
}
}	
/**/
.bgcolor_wh {
	background: #ffffff;
	font-size: 11pt;
	color: #000000;
	line-height: 150% ; 
}
	
.square_btn {
    display: inline-block;
    padding: 0.3em 0.8em;
    text-decoration: none;
    color: #000 !important;
    border-radius: 3px;
    transition: .4s;
	text-align: center;
	border: solid 1px #000;
}
	
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 640px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

.main_title{
	font-feature-settings: "palt";
	text-align: center;
	font-size: 3.4em;
	line-height: 1.5em;
	font-family: 游明朝, Yu Mincho ,YuMincho, Hiragino Mincho ProN ,HGS明朝E,メイリオ,Meiryo,serif;
}
@media (max-width: 640px) {
.main_title{
	font-size: 1.9em;
}
}
.main_title_sub{
	font-feature-settings: "palt";
	text-align: center;
	font-size: 2.3em;
	line-height: 1.5em;
	font-family: 游明朝, Yu Mincho ,YuMincho, Hiragino Mincho ProN ,HGS明朝E,メイリオ,Meiryo,serif;
}	
@media (max-width: 640px) {	
.main_title_sub{
	margin-top: 5px;
	font-size: 1.5em;
}
}
.haeading{
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
}
@media (max-width: 640px) {	
.haeading{
	font-size: 1.1em;
	line-height: 1.5em;
}
}		
/*カラーチャート レスポンシブ*/
.colors{
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
 	justify-content: space-between;
	padding: 0 10px;
}
@media (max-width: 480px) {
.colors{
	margin-top: 30px;
	padding: 0 10px 0 20px;

}
}
.color{
	width: 250px;
	margin: 0 20px 40px;
}
@media (max-width: 480px) {
.color{
	width: 46%;
	margin: 0 0 40px;
}
}
.colors::after {
display: block;
content:"";
width: 32%;
}
.color_number{
	margin: 5px 0 0;
	font-weight: bold;
}

.color_number2{
	font-size: 1.3em;
	font-weight: bold;
	font-feature-settings: "palt" 1;
	font-family: 'Noto Sans JP', sans-serif;
}
.color_text{
	margin: 0 0 5px;
	font-size: 0.9em;
}
@media (max-width: 480px) {
.color_text{
	line-height: 1.5em;
}
}
/* ボタン */
.open-btn {
	border: none;
	cursor: pointer;
	background: #fff;
	text-decoration: underline;
	color: #2c465a;
}
.open-btn:hover {
	text-decoration: none;
	color: #3d709d;
	font-weight: bold;
}
@media (max-width: 480px) {
.open-btn{
	font-size: 1em;
	margin-top: 2px;
	position: relative;
	left: -5px;
}
}
.close-btn {
	position: absolute;
	top: 7px;
	right: 10px;
	font-size: 1.4rem;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: transform 0.3s ease;
	color: #777;
}
.modal-back {
	border: none;
	cursor: pointer;
	background: #fff;
	color: #777;
	font-size: 1.4rem;
	margin-right: 20px;
}
.modal-next {
	border: none;
	cursor: pointer;
	background: #fff;
	color: #777;
	font-size: 1.4rem;
	margin-left: 20px;
}
.back_next {
	margin-top: 30px !important;
	text-align: center;
	margin: 0 auto;
}

/* モーダル背景 */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(00, 00, 00, 0.5);
	z-index: 100;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
/* モーダル表示状態 */
.modal.active {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
/* モーダルの中身*/
.modal-content {
	background: #fff;
	color: #000;
	padding: 25px;
	width: 80vw;
	max-width: 700px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s ease;
  	overflow-y: scroll;
	max-height: calc(100vh - 100px);
}
@media (max-width: 480px) {
.modal-content {
	padding: 20px 13px 15px 20px;

}
}
/* アニメーション*/
.modal.active .modal-content {
	animation: fadeInScale 0.4s ease forwards;
}
@keyframes fadeInScale {
0% {
	opacity: 0;
	transform: scale(0.8);
}
100% {
	opacity: 1;
	transform: scale(1);
}
}