
/*=======================================================
スタートアニメーション 
=======================================================*/

.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
	text-align: center;
}
.start .start_title_a h1{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	font-family: "Raleway", sans-serif; 
	font-size: 60px;
	color: #000;
	font-weight: 800; 
	letter-spacing: 4px;
	line-height: 1; 
}

.start .start_title_a span {
	display: block;
	font-size: 90%;
	font-family: "Raleway", sans-serif;
	font-weight: 200;
}

.start>span {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
}

.start p.skip {
	position: fixed;
	top: 3%;
	right: 1%;
	color: #333;
	font-size: 80%;
	z-index: 9999;
	display: none;
	text-decoration: underline;
	transform: translate(-50%, -50%);
}
.start p.skip:hover {
	cursor: pointer;
}

@media screen and (max-width: 430px) {
	.start {
		width: 100vw;
		height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.start p.skip {
		width: 100%;
		padding: 1em;
		box-sizing: border-box;
		top: 0;
		left: 0;
		transform: unset;
		text-align: right;
		position: absolute;
	}
	
	.start>span {
		width: 100%;
		transform: unset;
		top: 0;
		left: 0;
		position: relative;
	}
	
	.start .start_title_a {
		position: absolute;
	}
	
	.start .start_title_a h1 {
		font-size: 4em;
		width: 100%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		letter-spacing: 0;
	}
	
	.start .start_title_a span {
		display: block;
		font-size: 90%;
		font-family: "Raleway", sans-serif;
		font-weight: 200;
	}
}

/*=======================================================
TOP画像
=======================================================*/
.top_image {
	background-color: #ccc;
 }

.top_image .img  {
	width: 100%;
	padding-top: 35%;
	background-image: url(/html/img/catanddogflooring/catanddogflooring_01.jpg);
	background-size: cover;
	background-position: center 25%;
	background-repeat: no-repeat;
	text-indent: -9999%;
 }

/*=======================================================
TOP ロゴ
=======================================================*/

.sec-wrap{
	width: 100%;
	height: 100%;
}

.sec-wrap p,
.sec-wrap dt,
.sec-wrap dd {
	width: 100%;
	height: 100%;
	font-family: 'Noto Sans JP', sans-serif; 
}

.sec-wrap .title_sec{
	width: 950px;
	margin: 0 auto; 
	text-align: center;
	margin: 150px 0; 
	font-family: "Raleway", sans-serif;
	font-weight: 400;
}

.sec-wrap .title_sec .main_title {
	margin:100px auto;
}

.sec-wrap .title_sec .title_a h1{
	color: #000;
	font-family: "Raleway", sans-serif; 
	font-size: 80px;
	font-weight: 800; 
	letter-spacing: 4px;
	line-height: 1; 
}

.sec-wrap .title_sec .title_a span {
	color: #000;
	font-family: "Raleway", sans-serif; 
	font-size: 60px;
	font-weight: 600;
	letter-spacing: 4px;
	vertical-align: baseline;
}

.sec-wrap .title_sec .title_b h1{
	color: #000;
	font-family: "Raleway", sans-serif; 
	font-size: 50px;
	font-weight: 200; 
	letter-spacing: 4px;
}




/*=======================================================
コピー
=======================================================*/

.sec-wrap .catch_sec{
	width: 950px;
	height: auto;
	margin: 0 auto 100px auto; 
	text-align: center;
}

.sec-wrap .catch_sec .main_text {
	margin-bottom: 100px; 
}
.sec-wrap .catch_sec .main_text p{
	color: #000;
	font-size: 30px;
	font-weight: 700; 
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.sec-wrap .catch_sec .sub_text p {
	max-width: 700px;
	margin: 0 auto 150px;
	color: #000;
	text-align: left;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 3; 
}

/*=======================================================
アイコン1
=======================================================*/

.sec-wrap .contents_icon {
    position: relative;
	width: 100%;
	height: 66px;
	text-align: center;
}

.sec-wrap .cat_icon {
    position: absolute;
    top: 0px;
    /* アニメーションに必要な部分 */
    visibility: hidden;
    opacity: 0;
	width: 66px;
	height: 66px;
	left: 50%;
	margin: 0 0 0 -33px;
	transition: 1s; 
}

.sec-wrap .cat_icon.is-show {
    visibility: visible;
    opacity: 1;
}

.icon_img {
	background-image: url(/html/img/catanddogflooring/catanddogflooring_02.jpg);
	background-size: contain; background-repeat: no-repeat; 
}

.cat_icon {
	-webkit-animation-duration: 10s; animation-duration: 10s;
	-webkit-animation-fill-mode: both; animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite; animation-iteration-count: infinite;
}
@-webkit-keyframes kururi {
	from {
		-webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg);
	} to {
		-webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg);
	} 10% {
		-webkit-animation-timing-function: ease-in; -webkit-transform: rotate(0deg);
	} 10.5% {
		-webkit-animation-timing-function: linear; -webkit-transform: rotate(6deg);
	} 11.5% {
		-webkit-animation-timing-function: linear; -webkit-transform: rotate(-6deg);
	} 12% {
		-webkit-animation-timing-function: ease-out; -webkit-transform: rotate(0deg);
	} 
}
@keyframes kururi {
	from {
		animation-timing-function: linear; transform: rotate(0deg);
	} to {
		animation-timing-function: linear; transform: rotate(0deg);
	} 10% {
		animation-timing-function: ease-in; transform: rotate(0deg);
	} 10.5% {
		animation-timing-function: linear; transform: rotate(6deg);
	} 11.5% {
		animation-timing-function: linear; transform: rotate(-6deg);
	} 12% {
		animation-timing-function: ease-out; transform: rotate(0deg);
	} 
}
.cat_icon {
	-webkit-animation-name: kururi; animation-name: kururi;
	-webkit-transform-origin: center center; transform-origin: center center;
}

.sec-wrap .contents_icon2 {
    position: relative;
	width: 100%;
	height: 36px;
	text-align: center;
}

.sec-wrap .hone_icon {
    position: absolute;
    top: 0px;
    /* アニメーションに必要な部分 */
    visibility: hidden;
    opacity: 0;
	width: 100px;
	height: 38px;
	left: 50%;
	margin: 0 0 0 -47px;
	transition: opacity 10s; 
}
.sec-wrap .hone_icon.is-show {
    visibility: visible;
    opacity: 1;
}

.icon_img1 {
	background-image: url(/html/img/catanddogflooring/hone_icon.jpg);
	background-size: contain; background-repeat: no-repeat; 
}


.hone_icon {
	-webkit-animation-duration: 10s; animation-duration: 10s;
	-webkit-animation-fill-mode: both; animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite; animation-iteration-count: infinite;
}
@-webkit-keyframes gururi {
	from {
		-webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg);
	} to {
		-webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg);
	} 90% {
		-webkit-animation-timing-function: ease-in; -webkit-transform: rotate(0deg);
	} 99.5% {
		-webkit-animation-timing-function: ease-in; -webkit-transform: rotate(180deg);
	} 100% {
		-webkit-animation-timing-function: ease-in; -webkit-transform: rotate(180deg);
	} 
}
@keyframes gururi {
	from {
		animation-timing-function: linear; -webkit-transform: rotate(0deg);
	} to {
		animation-timing-function: linear; -webkit-transform: rotate(0deg);
	} 90% {
		animation-timing-function: ease-in; -webkit-transform: rotate(0deg);
	} 99.5% {
		animation-timing-function: ease-in; -webkit-transform: rotate(180deg);
	} 100% {
		animation-timing-function: ease-in; -webkit-transform: rotate(180deg);
	} 
}
.hone_icon {
	-webkit-animation-name: kururi; animation-name: kururi;
	-webkit-transform-origin: center center; transform-origin: center center;
}


/*=======================================================
特徴
=======================================================*/
.sec-wrap .tokucho_sec{
	width: 850px;
	margin: 0 auto 200px; 
	text-align: center;
}

.sec-wrap .tokucho_sec h2.tokucho_title{
	margin: 1em 0 1.5em 0;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;;
	font-size: 28px;
	line-height: 1.6; 
	font-weight: 700; 
}

.sec-wrap .tokucho_sec .tokucho_title img{
	width: 100px;
	height: 99px;
	margin-bottom: 20px;
}

.sec-wrap .tokucho_sec .tokucho_list_1{
	margin: 100px 0 40px 0;
}	

.sec-wrap .tokucho_sec .tokucho_list_1 img{
}	

.sec-wrap .tokucho_sec .tokucho_list_1 .list_title dt{
	color: #000;
	font-size: 35px;
	letter-spacing: 4px;
}	

.sec-wrap .tokucho_sec .tokucho_list_1 .list_title dt:first-letter {
	font-size: 2em;
	color: #000;
}

.sec-wrap .tokucho_sec .tokucho_list_1 .list_title img{
	width: 150px;
	height: 150px;
}	


/* list_text */
.sec-wrap .tokucho_sec .tokucho_list_1 .list_text dd{
	color: #000;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 50px;
	line-height: 3;
	visibility: hidden;
	transition: 2000ms;
	opacity: 0;
}
/* list_text class切り替え*/
.sec-wrap .tokucho_sec .tokucho_list_1 .isAnimate2 dd{
	visibility: visible;
	opacity: 1;
}



.sec-wrap .tokucho_sec .tokucho_list_1 .list_image img{
	width: 600px;
	height: 400px;
	margin-top: 20px;
	margin-bottom: 40px;
}	


.sec-wrap .tokucho_sec .tokucho_list_1 .list_hyou{
	width: 600px;
	box-sizing: border-box;
	margin: 0 auto;/*位置調整*/
	text-align: center;
	margin-bottom: 30px;
}

.sec-wrap .tokucho_sec .tokucho_list_1 .list_hyou h3{
	text-align: left;
	color: #000;
	font-size: 16px;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.sec-wrap .tokucho_sec .tokucho_list_1 .list_hyou img{
	width: 600px;
}	

.sec-wrap .tokucho_sec .tokucho_list_1 .list_hyou .caption p{
	color: #333;
	font-size: 12px;
	margin-top: 10px;
}	

.sec-wrap .tokucho_sec .tokucho_list_1 .caution {
	width: 600px;
	margin: 0 auto;/*位置調整*/
	border: solid 1px #000;
	text-align: center;
}	
.sec-wrap .tokucho_sec .tokucho_list_1 .caution p{
	color: #000;
	font-size: 14px;
	padding: 10px;
	letter-spacing: 2px;
}	

.sec-wrap .tokucho_sec .tokucho_list_2{
	margin: 9rem 0 3rem 0;
}	

.sec-wrap .tokucho_sec .tokucho_list_2 .list_title dt{
	color: #000;
	font-size: 35px;
	letter-spacing: 4px;
	margin-bottom: 30px;
}	

.sec-wrap .tokucho_sec .tokucho_list_2 .list_title dt:first-letter{
	font-size: 2em;
	color: #000;
}

/* list_text */
.sec-wrap .tokucho_sec .tokucho_list_2 .list_text dd{
	color: #000;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 50px;
	line-height: 3;
	visibility: hidden;
	transition: opacity 2000ms;
	opacity: 0;
}
/* list_text class切り替え*/
.sec-wrap .tokucho_sec .tokucho_list_2 .isAnimate2 dd{
	visibility: visible;
	opacity: 1;
}

.sec-wrap .tokucho_sec .tokucho_list_2 .list_image img{
	width: 600px;
	height: 400px;
	margin-top: 20px;
}	


/*=======================================================
線引く
=======================================================*/

.line {
	width:0%; /* 開始時の状態 */
	margin: 3.5rem auto;
	height: 1px; 
	background-color: #ccc;
	transform-origin: center;  
	transition: width 1s ease-in-out;
  }
  .isAnimate {
	width:100%; 
  }
  .fmb50{
	  margin-bottom: -50px;
  }
/*=======================================================
ラインナップ  
=======================================================*/
.sec-wrap .lineup_sec{
	width: 950px;
	margin: 0 auto; 
	text-align: center;
	margin: 30px 0 40px 0;
}

.sec-wrap .lineup_sec .lineup_title {
	color: #000;
	font-family: "Futura", sans-serif;;
	font-size: 28px;
}
.sec-wrap .lineup_sec .lineup_title img{
	width: 100px;
	height: 99px;
}

.sec-wrap .lineup_sec .lineup_item {
	margin: 100px 0 20px 0;
}
.sec-wrap .lineup_sec .lineup_item .item_text dd{
	color: #000;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 3; 
	margin: 50px auto;
	/* font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
}
.sec-wrap .lineup_sec .lineup_item .item_text dd span {
	display: block;
	font-size:135%;
	margin-bottom: 1em;
}
.sec-wrap .lineup_sec .lineup_item .item_image img {
	width: 100%;
	height: auto;
}



/*=======================================================
ラインナップ  あづみの松
=======================================================*/

.sec-wrap .lineup_sec .lineup_matsu img {
	width: 150px;
	height: auto;
}

/* .sec-wrap .lineup_sec .lineup_matsu{
	margin: 100px 0 20px 0;
}
.sec-wrap .lineup_sec .lineup_matsu .item_text dd{
	color: #000;
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 3; 
	margin: 50px auto;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.sec-wrap .lineup_sec .lineup_matsu .item_text dd span {
	display: block;
	font-size: 125%;
	margin-bottom: 1em;
}
.sec-wrap .lineup_sec .lineup_matsu .item_image img{
	width: 100%;
	height: 100%; 
} */


/*=======================================================
ラインナップ  マツスマイル
=======================================================*/

.sec-wrap .lineup_sec .lineup_matsusmile img {
	width: 170px;
	height: auto;
}

/* .sec-wrap .lineup_sec .lineup_matsusmile{
	margin: 100px 0 20px 0;
}
.sec-wrap .lineup_sec .lineup_matsusmile .item_text dd{
	color: #000;
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 3; 
	margin: 50px auto;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.sec-wrap .lineup_sec .lineup_matsusmile .item_text dd span {
	display: block;
	font-size:125%;
	margin-bottom: 1em;
}
.sec-wrap .lineup_sec .lineup_matsusmile .item_image img {
	width: 100%;
} */

/*=======================================================
ラインナップ  あづみの桧
=======================================================*/

.sec-wrap .lineup_sec .lineup_hinoki img {
	width: 150px;
	height: auto;
}

/* .sec-wrap .lineup_sec .lineup_hinoki{
	margin: 100px 0 20px 0;
}
.sec-wrap .lineup_sec .lineup_hinoki .item_text dd{
	color: #000;
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 3; 
	margin: 50px auto;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.sec-wrap .lineup_sec .lineup_hinoki .item_text dd span {
	display: block;
	font-size: 125%;
	margin-bottom: 1em;
}
.sec-wrap .lineup_sec .lineup_hinoki .item_image img{
	width: 100%;
} */

/*=======================================================
ラインナップ  ドナオーク
=======================================================*/

.sec-wrap .lineup_sec .lineup_donaoak img {
	width: 250px;
	height: auto;
}

/* .sec-wrap .lineup_sec .lineup_donaoak{
	margin: 100px 0 20px 0;
}
.sec-wrap .lineup_sec .lineup_donaoak .item_text dd{
	color: #000;
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 3; 
	margin: 50px auto;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.sec-wrap .lineup_sec .lineup_donaoak .item_text dd span {
	display: block;
	font-size: 125%;
	margin-bottom: 1em;
}
.sec-wrap .lineup_sec .lineup_donaoak .item_image img{
	width: 100%;
} */

/*=======================================================
ラインナップ  オーク複合
=======================================================*/

.sec-wrap .lineup_sec .lineup_oakfukugou img {
	width: 200px;
	height: auto;
}

/* .sec-wrap .lineup_sec .lineup_oakfukugou{
	margin: 100px 0 20px 0;
}
.sec-wrap .lineup_sec .lineup_oakfukugou .item_text dd{
	color: #000;
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 3; 
	margin: 50px auto;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.sec-wrap .lineup_sec .lineup_oakfukugou .item_text dd span {
	display: block;
	font-size: 125%;
	margin-bottom: 1em;
}
.sec-wrap .lineup_sec .lineup_oakfukugou .item_image img{
	width: 100%;
} */


/*=======================================================
商品情報
=======================================================*/

.sec-wrap .lineup_sec .item_lineup_wrap {
	width: 100%;
	margin-top: 20px;
	text-align: left;
}
.sec-wrap .lineup_sec .item_lineup_wrap h3 {
	width: 100%;
	padding-left: 20px;
	font-size: 12px;
	line-height: 2;
	background-color: #b38e53;
	box-sizing: border-box;
	color: #fff;
}

.sec-wrap .lineup_sec .item_lineup_wrap ul {
    display: flex;
    flex-wrap: wrap;
	width: 100%;
	padding: 20px;
	background-color: #efefef;
	box-sizing: border-box;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li {
	width: 140px;
    height: auto;
	float: left;
	background-color: #fff;
	position: relative;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li+li {
	margin-left: 14px;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .image {
	display: block;
	width: 140px;
	height: 140px;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .image img {
	width: 100%;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title {
	color: #3f3f3f;
	display: table-cell;
	width: 120px;
    height: auto;
	padding: 10px;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	vertical-align: middle;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title .productDetailSubtitle {
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 10px;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title .productDetailStockNumber {
	display: block;
	background: #ccc;
	color: #fff;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title .price {
	display: block;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	padding-top: 5px;
	color: #3f3f3f;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title .tax {
	display: block;
	font-size: 10px;
	text-align: center;
	color: #3f3f3f;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title .icon {
	width: 40px;
	position: absolute;
	top: 7px;
	left: 7px;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title .icon .tag {
	min-width: 40px;
	text-align: center;
	color: #fff;
	float: left;
	display: block;
	height: 18px;
	line-height: 18px;
	padding: 0 10px;
	font-size: 10px;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title .icon .tag.new {
	background: #cc2419;
	margin-bottom: 5px;
}
.sec-wrap .lineup_sec .item_lineup_wrap ul li a .title .icon .tag.in_mark {
	background: #017455;
}

.sec-wrap .cta_sec {
	margin: 50px 2em 50px;
}

.sec-wrap .cta_sec a {
	display: block;
	filter: brightness(1);
	transform: scale(1);
	transition: all 0.5s;
}


@media all and (min-width:431px){
	.sec-wrap .cta_sec {
		margin: 100px 0 100px;
	}
	.sec-wrap .cta_sec a:hover {
		filter: brightness(1.1);
		transform: scale(102%);
		transform-origin: center;
	}
}

@media all and (max-width: 430px){
	.top_image .img {
		padding-top: 75%;
		background-position: center right 30% !important;
	}

	.sec-wrap .title_sec {
		margin: 0;
	}
	.sec-wrap .title_sec .main_title {
		margin: 6em 0 4em;
		text-align: center;
	}

	.sec-wrap .title_sec .title_a h1 {
		font-size: 48px;
	}
	.sec-wrap .title_sec .title_a span {
		font-size: 42px;
	}
	.sec-wrap .title_sec .title_b h1 {
		font-size: 42px;
	}
	.line {
		margin: 1rem auto;
	}
	.list_text {
		padding: 0 1.8em;
	}
	.list_image, .list_hyou {
		padding: 0 1em;
	}
	
	.sec-wrap .contents_icon {
		height: 42px;
	}
	.sec-wrap .cat_icon {
		width: 42px;
		height: 42px;
		margin-left: -21px;
	}
	.sec-wrap .contents_icon2 {
		height: 25px;
	}
	.sec-wrap .hone_icon {
		width: 70px;
		height: 25px;
		margin-left: -35px;
	}

	.sec-wrap .catch_sec {
		margin: 0 !important;
		width: 100% !important;
		padding: 0 1.8em;
		box-sizing: border-box;
		text-align: justify;
	}
	.sec-wrap .catch_sec .main_text p {
		font-size: 24px;
		text-align: center;
		letter-spacing: 2px;
	}
	.sec-wrap .catch_sec .sub_text p {
		line-height: 2.2 !important;
		text-align: justify !important;
		letter-spacing: 2px;
		margin-bottom: 8em;
	}
	
	.sec-wrap .tokucho_sec {
		width: 100%;
		margin-bottom: 8em;
	}
	.sec-wrap .tokucho_sec .tokucho_list_1 .list_title dt,
	.sec-wrap .tokucho_sec .tokucho_list_2 .list_title dt {
		font-size: 22px;
	}

	.sec-wrap .tokucho_sec .tokucho_list_1 .list_title dt:first-letter,
	.sec-wrap .tokucho_sec .tokucho_list_2 .list_title dt:first-letter {
		font-size: 1.6em;
	}
	
	.sec-wrap .tokucho_sec .tokucho_list_1 .list_text dd,
	.sec-wrap .tokucho_sec .tokucho_list_2 .list_text dd {
		font-size: 14px;
		line-height: 2;
	}
	.sec-wrap .tokucho_sec .tokucho_list_1 .isAnimate2 dd,
	.sec-wrap .tokucho_sec .tokucho_list_2 .isAnimate2 dd {
		text-align: justify;
	}
	.sec-wrap .tokucho_sec .tokucho_list_1 .isAnimate2 dd br,
	.sec-wrap .tokucho_sec .tokucho_list_2 .isAnimate2 dd br {
		display: none;
	}
	.sec-wrap .tokucho_sec .tokucho_list_1 .list_image img,
	.sec-wrap .tokucho_sec .tokucho_list_2 .list_image img {
		width: 100%;
		height: auto;
		margin-top: 0;
	}
	.sec-wrap .tokucho_sec .tokucho_list_1 .caution {
		padding: 0 1em;
		width: 100%;
		box-sizing: border-box;
		border: none;
	}
	.sec-wrap .tokucho_sec .tokucho_list_1 .caution p {
		width: 100%;
		box-sizing: border-box;
		border: solid 1px #ccc;
		padding: 1em;
		font-size: 12px;
		text-align: justify;
	}
	.sec-wrap .tokucho_sec .tokucho_list_1 .caution p br {
		display: none;
	}

	.sec-wrap .lineup_sec .item_lineup_wrap ul {
		row-gap: 1em;
		column-gap: 1em;
		padding: 1em !important;
	}
	.sec-wrap .lineup_sec .item_lineup_wrap ul li {
		width: calc(50% - 0.5em) !important;
		margin-bottom: 0 !important;
	}

	.sec-wrap .lineup_sec .lineup_item .item_text dd {
		font-size: 14px;
		line-height: 2;
		text-align: justify;
	}
	.sec-wrap .lineup_sec .lineup_item .item_text dd br {
		display: none;
	}
	.sec-wrap .lineup_sec .lineup_item .item_text dd span {
		text-align: center;
		font-weight: 400;
	}

	.sec-wrap .lineup_sec .lineup_matsu img {
		width: 120px;
	}
	.sec-wrap .lineup_sec .lineup_matsusmile img {
		width: 140px;
	}
	.sec-wrap .lineup_sec .lineup_item.lineup_matsusmile .item_text dd br {
		display: block;
	}
	.sec-wrap .lineup_sec .lineup_hinoki img {
		width: 120px;
	}
	.sec-wrap .lineup_sec .lineup_donaoak img {
		width: 200px;
	}
	.sec-wrap .lineup_sec .lineup_oakfukugou img {
		width: 180px;
	}

}

.item_text_btn {
	display: inline-block;
}
.item_text_btn a {
	color: #fff;
    margin: 0em auto 4em;
    padding: 0.8em 2.6em;
    display: inline-block;
    background-color: #333;
    border-radius: 2em;
    text-decoration: none;
	transition: all 0.2s;
}
.item_text_btn a:hover {
	color: #333;
    background-color: #eee;
}