<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

html{overflow-x: hidden;}

a{color:unset;}

a:hover{
	opacity: 0.7;
}

body{
	margin:0 auto !important;
}

rt{
	font-size: 12px;
}

.no-links {
    pointer-events: none;
    cursor: default;
}

.u-show_sp {
	display: none;
}

.u-hide-media {
	display: block;
}

.show-pc {
    display: inline-block;
}

.u-show-media {
	display: none;
}

.media_1023 {
	display: none;
}

.featurePage.wfix1{
	width: 100vw;
}

.max900 {
	max-width: 750px;
	margin: 0 auto;
}

.mb30{
	margin-bottom:30px;
}

.featureSp{
	display: none;
}

.featurePage .h2_txt a{
	text-decoration:unset !important;
}

@media (max-width: 1023px){
	.contents_wrapper{
	width:94%;
	margin:0 auto;
	}
}

@media (max-width: 767px){
	.mb30{
		margin-bottom:20px;
	}

	rt{
		font-size: 10px;
	}

	.featureSp {
        display: block;
    }
}


/*-------------------------------------
ここまでbase
------------------------------------- */


/*-------------------------------------
nav
------------------------------------- */

.l-section-nav_col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	font-size: 16px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 60px 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.l-section-nav_col li {
	width: calc(100% / 2);
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
}

/*.l-section-nav_col li:first-child{
	border-left: 1px solid #ffffff;
}*/


.l-section-nav_col li a {
	color: #ffffff;
	background: #bfbfbf;
	position: relative;
	display: block !important;
	text-align: center;
	padding: 21.5px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	letter-spacing: 1px;
	line-height: 1.6;
	height: 100%;
	/* font-family: "HonMinKok-L", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
}


.l-section-nav_col li a:link,
.l-section-nav_col li a:visited {
	color: #ffffff;
}

.l-section-nav_col li a:link:hover,
.l-section-nav_col li a:visited:hover{
	color: #ffffff;
}

.l-section-nav_col li a:hover{
	opacity: 0.7;
}

.l-section-nav_col li a::after{
	position: absolute;
	display: block;
	content: '';
	top: -2px;
	bottom: 0;
	margin: auto;
	right: 8%;
	width: 7px;
	height: 7px;
	border-top: 1px solid;
	border-right: 1px solid;
	border-color: #ffffff;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}

.l-section-nav_col li a span{
	font-size: 16px;
}

@media (max-width: 1023px) {
	
	.l-section-nav_col{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		font-size: 14px;
		margin: 30px 0;
	}

	.l-section-nav_col li{
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		border-bottom: 1px solid #ffffff;
		border-right: none;
		border-top: none;
	}


	.l-section-nav_col li:not(:nth-child(even)){
		border-right: none;
	}

	.l-section-nav_col &gt; li:nth-child(1) &gt; a,
	.l-section-nav_col &gt; li:nth-child(4) &gt; a{
		padding: 31px 0;
	}

	.l-section-nav_col li a {
		padding: 20px 0;
		display: block;
	}

	.l-section-nav_col li a::after{
		bottom: 8px;
		width: 7px;
		height: 7px;
		top: inherit;
		left: 0;
		right: 0;
		margin: auto;
	}

	.l-section-nav_col li a span{
		font-size: 14px;
	}

}

@media (max-width: 769px) {

	.l-section-nav_col {
		font-size: 14px;
		margin: 40px calc(50% - 50vw) 70px;
		width: 100vw;
	}

	/*.l-section-nav_col &gt; li:nth-child(1) &gt; a{
		padding: 4px 0 15px;
	}*/

	.feature_linkBtn.wht a,
	.feature_linkBtn.gray a,
	.feature_linkBtn.blk a{
		font-size: 14px;
	}

}



/*-------------------------------------
l-content
------------------------------------- */

.section_title {
	display: block;
	text-align: center;
	margin: 60px auto 0px;
}

/*------------------------
fadein
------------------------ */


  /*アニメーション要素のスタイル*/
  .animation{
	opacity : 0;
	visibility: hidden;
	transition: 2.5s;
	transform: translateY(30px);
  }
  /*アニメーション要素までスクロールした時のスタイル*/
  .active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
  }

  .fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 2s;
}

.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.fade-in-bottom {
	opacity: 0;
	animation-name: fadein-bottom;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
 }

 @keyframes fadein-bottom {
	0% {
	   opacity: 0;
	   transform: translateY(20px);
	}
	100% {
	   opacity: 1;
	   transform: translateY(0);
	}
 }

/*------------------------
section
------------------------ */

.text_right {
    display: block;
    float: right;
	margin-right: 80px;
}


.bg_gray {
    background: #f3f3f3;
    padding: 10px 0px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}


.main-mv {
	margin-bottom: 40px;
}


.section_txt {
	font-size:16px;
	line-height: 2;
	text-align: left;
	margin: 30px 0;
}



.h2_txt {
    font-family: "HonMinKok-L", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.8;
    font-size: 32px !important;
    text-align: center;
    margin: 40px auto 30px;
    font-weight: normal;
}

.h2_txt span{
	font-size: 32px;
}

.title_bg{
	background: #f3f3f3;
    padding: 10px 1000px;
    margin: 0 -1000px;
    text-align: center !important;
}

.icon_title{
	display: flex;
    align-items: center;
    justify-content: center;
}

.octagon {
    background: #c6b7a2;
    width: 25px;
    display: inline-block;
    height: 25px;
    margin-right: 10px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.h4_txt {
    font-family: "HonMinKok-L", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.8;
    font-size: 30px;
    text-align: center;
    margin: 50px auto -30px;
    font-weight: normal;
}


.h2-shoulder {
    font-size: 26px !important;
}

.h3_txt {
    font-size: 26px;
    text-align: left;
    font-family: "HonMinKok-L","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
    line-height: 1.6;
	padding-top:50px;
    margin:30px auto;
}

.h3_txt_left{
	text-align: left !important;
    margin-bottom: 0px !important;
    font-size: 36px !important;
}

.arrow_box{
	margin: -40px auto 30px;
    display: inline-flex;
    width: 48%;
	text-align: center;

}

.arrow{
	max-width: 85px;
    margin: 0 auto;
    display: block;
}

.text_link{
	color: #a97;
    text-decoration: 1px underline;
    margin: 20px auto 0;
	text-align: center;
}

.text_link a{
	transition: all 0.35s;
}

.text_link a:hover{
	opacity: 0.7;
}



.feature_linkBtn.gry{
	background: #888;
    color: #fff;
    padding: 10px 0;
    max-width: 350px;
}

.feature_linkBtn.gry a{
	transition: all 0.35s;
}

.feature_linkBtn.gry a:hover{
	opacity: 0.7;
}

.flexbox {
    display: flex;
	justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
	gap:30px;
	font-size: 16px;
	margin: 30px auto;
}


.l-colom_tumb {
	order: 1;
	width: 50%;
}

.linkarea {
	order: 2;
	width: 50%;
	padding:0;
}


.l-colom_tumb_invert {
	order: 2;
	width: 50%;
}

.linkarea_invert {
	order: 1;
	width: 50%;
}

.linkarea_title {
	text-align: center;
}






/*-------------------------------------
media
------------------------------------- */

/* 1023 */

@media (max-width: 1023px) {

	.h2-shoulder {
		font-size: 16px;
	}

	.h2_txt {
		font-size: 18px;
	}

	.pagetop {
		bottom: 2%;
		right: 3%;
	}

	.pagetop a {
		width: 35px;
		height: 35px;
	}

	.pagetop a::after {
		bottom: 10px;
		width: 10px;
		height: 10px;
	}

	.linkarea_title {
		padding: 0px 0 20px;
	}

	.linkarea {
		order: 2;
		width: 50%;
	}

	.media_1023 {
		display: block;
	}

	.h3_txt {
		font-size: 19px;
		line-height: 1.4;
	}

	.section_txt {
	    margin: 20px 0;
	}


}

/* 1023 */




/* @media */
@media (max-width: 767px) {

	.linkarea_title .h3_txt{
		margin-bottom:10px;
	}

	.arrow_box {
		margin: -20px auto 20px;
		display: inline-flex;
		width: 100%;
	}

	.heading_txt {
		padding: 30px 0 0px;
	}

	.heading_txt:before {
		position: absolute;
		bottom: -6px;
		left: calc(50% - 40px);
		width: 76px;
		height: 3px;
		content: '';
		border-radius: 3px;
		background: #a0868b;
	}
	
	.media_1023 {
		display: none;
	}

	.u-hide-media {
		display: none;
	}

	.u-show-media {
		display: inline-block;
	}

	.u-show_sp {
		display: block;
	}

	.section_txt {
		font-size: 14px;
		line-height: 2;
		margin: 20px 0;
	}


	.main-mv {
		margin-bottom: 30px;
	}


	.flexbox {
		display: block;
		font-size: 14px;
		margin: 20px auto;
		flex-direction: column;
	}

	.l-colom_tumb , .l-colom_tumb_invert {
    	width: 100%;
    	display: block;
    	padding: 0%;
    	margin: 0 auto;
    	line-height: 0;
	}

	.linkarea , .linkarea_invert {
		order: 2;
		width: 100%;
		padding: 0px;
	}


	.linkarea_title {
		padding: 20px 0 0;
		text-align: left;
		font-size: 14px;
	}


	.h2_txt {
		font-size: 20px !important;
		margin:40px auto 20px !important;
	}


	.h2_txt span{
		font-size: 24px;
	}

	.sp_sub {
		font-size: 19px;
		margin: 30px 0 -30px;
	}

	.h4_txt {
		font-size: 19px;
		margin: 30px 0 -10px;
	}
	.h2-shoulder {
		font-size: 16px !important;
	}

	.h3_txt {
		font-size: 19px !important;
		margin:20px auto;
		line-height: 1.6;
		padding-top:35px;
	}

	.h3_txt_left{
		text-align: left;
		margin-bottom: 0px;
		font-size: 30px !important;
		line-height: 1;
	}

	.wide_width {
		margin: 0 calc(50% - 50vw) 30px;
		width: 100vw;
	}

	.show-pc {
		display: none;
	}

	.text_right {
		display: block;
		float: right;
		margin-right: 50px;
	}

	/* @media */
}


span.underline{
	background-repeat: repeat-x;
	background-size: 1.6em 0.6em, 1.6em 0.2em, 4.1em 0.3em, 3.2em 0.3em;
    background-position: right bottom;

    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(246,89,115,0)), color-stop(0.1, rgba(246,89,115,0.02)), color-stop(0.5, rgba(184, 199, 229,1)), color-stop(0.98, rgba(246,89,115,0)), to(rgba(246,89,115,0)) );
    background-image:
            -webkit-radial-gradient(center center,0.2em 0.1em,rgba(184, 199, 229, 1) 0,rgba(246,89,115,0) 0.1em,rgba(246,89,115,0) 0.2em),
            -webkit-radial-gradient(center center,0.4em 0.1em,rgba(184, 199, 229, 1) 0,rgba(246,89,115,0) 0.3em,rgba(246,89,115,0) 0.4em),
            -webkit-radial-gradient(center center,0.7em 0.1em,rgba(184, 199, 229, 1) 0,rgba(246,89,115,0) 0.6em,rgba(246,89,115,0) 0.7em),
            -webkit-radial-gradient(center center,7.1em 0.1em,rgba(184, 199, 229, 1) 0,rgba(246,89,115,0) 7em,rgba(246,89,115,0) 7.1em);
	background-image: 
	radial-gradient(2.4em 0.3em at center center, rgba(184, 199, 229, 1), rgba(246, 89, 115, 0)), 
	radial-gradient(1.4em 0.1em at center center, rgba(184, 199, 229, 1), rgba(246, 89, 115, 0)), 
	radial-gradient(1.7em 0.4em at center center, rgba(184, 199, 229, 1), rgba(246, 89, 115, 0)), 
	radial-gradient(12.1em 0.1em at center center, rgba(184, 199, 229, 1), rgba(246, 89, 115, 0));
}

.good_txt{
    display: block;
    font-size: 18px;
    margin: 0 0 20px;
}

.good_txt span{
    text-underline-offset: 3px;
    text-decoration-line: underline;
    text-decoration-thickness: 6px;
    text-decoration-color: #e8e082;
}

.center_txt{
	text-align: center;
}

a.link{
	border-bottom: solid 1px #333;
    display: inline;
    transition: all 0.35s;
	color: #333 !important;
}


.series_box{
	margin: 60px 0 60px;
}

/* 1023 */

@media (max-width: 1023px) {

	.series_box{
		margin: 60px 0 60px;
	}
}




/* @media */
@media (max-width: 767px) {

	.good_txt{
		display: block;
		font-size: 16px;
		margin: 0 0 20px;
	}


	.series_box{
		margin: 40px 0 40px;
	}
}





/*add*/

/* anker */
.col_wrapper{
    display: flex;
    margin: 30px auto 60px;
    gap: 30px;
}

.col_wrapper2{
    display: flex;
    margin: 30px auto 60px;
    gap: 30px;
	flex-direction: row-reverse;
}

.col_img2cell{
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;*/
    width: 50%;
}

.col_img_single{
    width: 50%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col_img_box1{
    text-align: center;
	position: relative;
}

.col_img_box1 span{
	font-size: 22px;
}

.col_img_box1 a,
.col_img_single a{
    color:#aa9977;
}

.col_img_box1 .hukidashi1{
	position: absolute;
    max-width: 100px;
    height: auto;
    top: 0px;
    left: 20px;
}

.col_img_box1 .hukidashi2,
.col_img_box1 .hukidashi3,
.col_img_box1 .hukidashi4{
	position: absolute;
    max-width: 100px;
    height: auto;
    top: 0px;
    right: 20px;
}

.col_img_bg{
    background-color: #f0f0f0;
    padding: 20px;
	font-size: 18px;
}

.col_img_bg p{
	position: relative;
	padding-left: 1.2em;
	font-size: 16px;
}

.col_img_bg p:before{
	position: absolute;
    left: 0;
    top: 9px;
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(/Contents/default/img/special/insulation_habit/img/check_icon.png) no-repeat;
    background-size: contain;
}

.col_txt_area{
    width: 50%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin: 20px auto;
    font-size:16px;
    transition: all 0.35s;
}

.col_txt_area a{
    color:#aa9977;
}

.col_txt_area a:hover{
    opacity: 0.7;
}

.col_wrapper3{
	background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
    border: 1px dotted #323333;
}


/* point */
.point_wrapper{
	margin: 0 0 120px;
}

.point_title{
    font-family: "HonMinKok-L", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    width: 100%;
    font-size: 32px;
    padding: 0 10px;
    background: transparent;
    border-left: solid 7px #7db4e6;
    border-bottom: solid 3px #7db4e6;
    line-height: 1.6;
	margin: 0 0 40px;
}

.point_image{
	max-width: 750px;
	margin: 0 auto;
}

.swiper-container{
	max-width: 750px;
}

.staff_comment_box{
    width: 15%;
}

.staff_comment_box p{
	font-size:22px;
}

.staff_comment_box img{
	max-width: 200px;
}

.staff_comment{
	margin: 30px auto 60px;
    display: flex;
    gap: 30px;
    flex-direction: row;
    align-content: space-around;
    align-items: flex-start;
    justify-content: space-between;
    /* max-width: 750px; */
}

.fukidashi_top {
	position: relative;
    width: 85%;
    padding: 15px;
    border: 1px solid #333333;
    border-radius: 30px;
	background-color: #f3f3f3;
  }
  .fukidashi_top::before {
	content: "";
    position: absolute;
    right: -16px;
    top: 20%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: #f3f3f3;
    rotate: -45deg;
    translate: -50%;
  }
  .fukidashi_top::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 20%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    border: 1px solid;
    border-color: #333333 #333333 transparent transparent;
    rotate: 45deg;
    translate: -50%;
  }



.feature_linkBtn.gray a{
	display: block;
    padding: 18px 0;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    border: 1px solid #888888;
    background-color: #888888 !important;
    color: #ffffff !important;
}

.product_link{
	border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 15px;
}

.product_link div{
    margin: 0 auto;
}

.product_link a{
	display: block;
    padding: 18px 20px;
    margin: 0;
    text-align: center;
    font-size: 16px;
    border: 1px solid #333;
    background-color: #fff !important;
    color: #333 !important;
    border-radius: 15px;
}

.pj_icon{
	max-width: 300px;
    margin: 0 auto;
    display: block;
}

.border{
	background-size: 20px 2px;
    background-image: linear-gradient(to right, #4472c4 10px, transparent 5px);
    background-repeat: repeat-x;
    background-position: left bottom;
    padding-bottom: 2px;
    max-width: 600px;
    display: block;
    margin: 60px auto;
}

.col2_link_box{
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 30px auto 60px;
	padding: 20px;
	border: 1px solid #333333;
	border-radius: 20px;
	max-width: 750px;
	text-align: center;
	font-size: 16px;
}

.col2_link_box img{
	max-width: 300px;
}

.col2_link_box_l{
	width: 30%;
}

.col2_link_box_r{
	width: 70%;
}

.col2_link_box div a{
	color:#aa9977;
}

.w750_banner_box{
	max-width: 600px;
    margin: 60px auto;
    text-align: center;
    display: grid;
    gap: 20px;
    font-size: 16px;
}

.col3_items{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	text-align: center;
	margin: 30px auto 60px;
}

.col3_items p{
	font-size: 14px;
    margin: 10px auto;
	line-height: 1.6;
}

.col3_items a{
	color: #aa9977;
    font-size: 14px;
	line-height: 1.6;
}

.col3_items .text1{
	line-height: 3.2;
}

.col2_link{
	padding: 10px 0;
    text-align: center;
    width: 100%;
	font-size:16px;
    background: #888888;
    color: #ffffff;
    line-height: 1.6;
    margin-top: 20px;
}

@media (max-width: 767px){

	.col2_link_box{
		gap: 20px;
		padding: 20px;
		border-radius: 20px;
		margin: 20px auto 40px;
		font-size: 14px;
		flex-direction: column;
	}
	
	.col2_link_box img{
		max-width: 350px;
	}
	
	.col2_link_box_l{
		width: 100%;
	}
	
	.col2_link_box_r{
		width: 100%;
	}

	/* anker */
	.col_wrapper,.col_wrapper2 {
		margin: 20px auto 40px;
		gap: 15px;
        display: flex;
        align-content: center;
        align-items: center;
	}

	.sp_mrg20{
		margin-top:20px;
	}

	.pj_icon{
		max-width: 300px;
	}

	.border{
		margin: 40px auto;
	}

	.col_img2cell {
		width: 35%;
	}

	.col_img_single {
		width: 65%;
		margin: 0 auto;
		order: 1;
		font-size: 14px;
		padding: 0;
		gap: 15px;
	}

	.col_img_single .h3_txt{
		margin: 0 auto;
	}

	.col_img_box1{
		text-align: center;
	}

	.col_img_box1 span{
		font-size: 16px;
	}

	.col_img_bg{
		background-color: #f0f0f0;
		padding: 10px;
		font-size: 16px;
	}
	
	.col_img_bg p{
		position: relative;
		padding-left: 1.2em;
		font-size: 14px;
	}
	
	.col_img_bg p:before{
		position: absolute;
		left: 0;
		top: 9px;
		content: "";
		display: inline-block;
		width: 1em;
		height: 1em;
		background: url(/Contents/default/img/special/insulation_habit/img/check_icon.png) no-repeat;
		background-size: contain;
	}

	.col_txt_area {
		width: 100%;
		padding-left: 0px;
		margin: 20px auto 0;
		font-size: 14px;
		order: 2;
	}

	.coming_soon{
		max-width: 80px !important;
	top: -25px;
	right: -15px;
	}

	.col2_fleximg_bg{
		top: 0;
		width: 90%;
		padding: 5% 20px;
		font-size: 16px;
		background-image: url(/Contents/default/img/special/mix_and_match_style/img/frame_img1_sp.png);
	}

	.col_wrapper3{
		background-color: #f0f0f0;
		padding: 10px;
		text-align: center;
		border: 1px dotted #323333;
		font-size: 14px;
		letter-spacing: -1px;
	}
	

	/* point */
	.point_wrapper{
		margin: 0 0 80px;
	}

	.point_title{
		font-family: "HonMinKok-L", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
		width: 100%;
		font-size: 20px;
		padding: 0 10px;
		background: transparent;
		border-left: solid 7px #7db4e6;
		border-bottom: solid 3px #7db4e6;
		line-height: 1.6;
		margin: 0 0 20px;
	}


	.staff_comment {
		margin: 30px auto 60px;
		display: flex;
		gap: 20px;
		flex-direction: row;
		align-content: space-around;
		align-items: center;
		justify-content: space-between;
	}

	.fukidashi_top {
		position: relative;
		width: 65%;
		padding: 10px;
		border: 1px solid #333333;
		border-radius: 15px;
		font-size: 14px;
		background-color: #f3f3f3;
	}

	.fukidashi_top::before {
		content: "";
		position: absolute;
		right: -16px;
		top: 48%;
		width: 15px;
		height: 15px;
		box-sizing: border-box;
		background-color: #f3f3f3;
		rotate: -45deg;
		translate: -50%;
	}

	.fukidashi_top::after {
		content: "";
		position: absolute;
		right: -16px;
		top: 48%;
		width: 15px;
		height: 15px;
		box-sizing: border-box;
		border: 1px solid;
		border-color: #333333 #333333 transparent transparent;
		rotate: 45deg;
		translate: -50%;
	}

	.staff_comment_box {
		width: 35%;
	}

	.staff_comment_box img {
		max-width: 200px;
	}

	.staff_comment_box p {
		font-size: 18px;
	}

	.product_link{
        border: 1px solid #333;
        border-radius: 15px;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 15px;
	}

	.product_link div {
		margin: 0 auto;
		font-size: 14px;
	}
	
	.product_link a{
        display: block;
        padding: 18px 20px;
        margin: 0 auto;
        text-align: center;
        font-size: 16px;
        border: 1px solid #333;
        background-color: #fff !important;
        color: #333 !important;
        border-radius: 15px;
	}

	.w750_banner_box{
		margin: 40px auto;
		gap: 10px;
		font-size: 14px;
	}

	.col2_link{
		font-size:14px;
	}

	.col3_items {
		gap: 5px;
		margin: 20px auto 60px;
	}

	.col_img_box1 .hukidashi1{
		max-width: 75px;
		top: 0px;
	}
	
	.col_img_box1 .hukidashi2,
	.col_img_box1 .hukidashi3,
	.col_img_box1 .hukidashi4{
		max-width: 75px;
		top: 0px;
	}

	.col3_items p {
		font-size: 10px;
		line-height: 1.6;
		letter-spacing: -1.22px;
	}

	.col3_items .text1{
		line-height: 1.6;
	}

	.col3_items a {
		font-size: 10px;
		line-height: 1.6;
	}

}</pre></body></html>