@charset "UTF-8";
/*
 * diy.css
 *
 *  version --- 1.0
 *  updated --- 2025/07/18
 */


/* animation */
.fadeIn,
.fadeUp,
.fadeDown,
.fadeLeft,
.fadeRight {
  opacity: 0;
}

.fadeIn.on {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeUp.on {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.fadeDown.on {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeLeft.on {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.blur {
  opacity: 0;
}

.blur.on {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

 /* base */
div,p,h1,h2,h3,h4 {
	color: #5D5D5D;
	font-size: 1.2rem;
	line-height: 1.9;
}

h1,h2,h3,h4 {
	color: hsl(0, 0%, 46%);
}

.button a.greenBtn {
	background: #E9F4F5 url(../img_2021/common/ico_link02.svg) right 26px center no-repeat;
	background-size: 4px 11px;
	border: none;
}

.greenTxt {
	color: #45868B;
}

.topLayout {
	margin: 0px auto;
	max-width: 840px;
}

.topLayout .topLayout_imgLeft {
	margin-bottom: 45px;
}

.topLayout .topLayout_img {
	margin-bottom: 22px;
}

.topLayout .topLayout_box {
	padding-left: 0;
}

.topLayout.blueBgbox{
	position: relative;
}
.topLayout.blueBgbox::before {
	content: "";
    width: 85%;
    height: 75%;
    position: absolute;
    top: 10%;
    left: 0;
    background: #ECF4F5;
    border-radius: 0px 0px 36px 0px;
    z-index: -1;
}

.topLayout.blueBgbox.blueBgboxLeft::before {
	left: auto;
	right: 0;
	border-radius: 0px 0px 0px 36px;
}

.topLayout.blueBgbox.blueBgboxLeft .topLayout_box {
	margin-left: auto;
    margin-right: 0;
}

.hdL { line-height: 1;}
.hdL img{
	width: auto;
	height: 20px;
}

.hdM {
	color: #45868B;
	font-size: 1.6rem;
	margin-bottom: 13px;
}

.hdM img {
	height: 20px;
}


.blueBgTxt {
	background: #ECF4F5;
}


 /* colBox */
.colBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.colBox .colCell:nth-of-type(1) {
	width: 54.76%;
}
.colBox .colCell:nth-of-type(2) {
	width: 38.8%;
}


/* .colBox.colBoxR {
	flex-direction: row-reverse;
} */

/* diy-pointList */
ol.diy-pointList {
	display: inline-block;

}
ol.diy-pointList li {
	min-height: 24px;
	margin-bottom: 15px;
	font-size: 1.5rem;
	line-height: 1.4;
	text-align: left;
	position: relative;
    padding-left: 30px;
}
ol.diy-pointList li::before {
	content: "";
	display: block;
	width: 16px;
	height: 24px;
	position: absolute;
    top: calc(50% - 12px);
    left: 0;
}
ol.diy-pointList li:nth-of-type(1)::before{
	background: url("../img_2021/diy/diy_metal-mr/flowIcon01.png") left center no-repeat; 
	background-size: 16px 24px;
}

ol.diy-pointList li:nth-of-type(2)::before{
	background: url("../img_2021/diy/diy_metal-mr/flowIcon02.png") left center no-repeat; 
	background-size: 16px 24px;
}

ol.diy-pointList li:nth-of-type(3)::before{
	background: url("../img_2021/diy/diy_metal-mr/flowIcon03.png") left center no-repeat; 
	background-size: 16px 24px;
}

ol.diy-pointList .blueBgTxt {
	border-bottom: 2px dashed #45868B;
	display: inline-block;
	padding: 5px 0;
	line-height: 1.5;
}

/* buttonCaption */
.buttonCaption {
	display: inline-block;
	position: relative;
	font-size: 1.4rem;
}

.buttonCaption::before,
.buttonCaption::after {
content: "";
position: absolute;
top: 2px;
display: block;
width: 1.5px ;
height: 80%;
background: #5D5D5D;
}

.buttonCaption::before { left: -15px; transform: rotate( -30deg ) }
.buttonCaption::after { right: -15px; transform: rotate( 30deg ) }



@media only screen and (min-width: 960px) {
	/* base */
	div, p, h1, h2, h3, h4 {
		font-size: 1.4rem;
		line-height: 2.25;
	}

	.hdL img {
		height: 32px;
	}

	.hdM {
		font-size: 2.0rem;
		margin-bottom: 30px;
	}

	.hdM img {
		height: 24px;
	}

	.button {
		margin-top: 30px;
	}

	.topLayout {
		max-width: 1040px;
	}

	.topLayout .topLayout_imgLeft {
		justify-content: space-between;
	}

	.topLayout .topLayout_imgRight .topLayout_box {
		padding-left: 0;
		margin-left: 0;
		margin-right: auto;
	}

	.topLayout .topLayout_img,
	.topLayout .topLayout_box {
		width: 47.11%;
	}

	.topLayout.blueBgbox::before {
		width: 47.11%;
		height: 100%;
		top: 30px;
		left: 30px;
		border-radius: 0px 36px 36px 36px;
	}

	.topLayout.blueBgbox.blueBgboxLeft::before {
		width: 47.11%;
		height: 100%;
		top: 30px;
		right: -30px;
		border-radius: 0px 36px 36px 36px;
	}


	ol.diy-pointList li {
		font-size: 2.4rem;
		margin-bottom: 30px;
		padding-left: 40px;
	}
	ol.diy-pointList li::before {
		width: 26px;
		height: 40px;
		top: calc(50% - 20px);
	}

	ol.diy-pointList li:nth-of-type(1)::before {
		background: url("../img_2021/diy/diy_metal-mr/flowIcon01.png") left center no-repeat; 
		background-size: 26px 40px;
	}

	ol.diy-pointList li:nth-of-type(2)::before {
		background: url("../img_2021/diy/diy_metal-mr/flowIcon02.png") left center no-repeat; 
		background-size: 26px 40px;
	}

	ol.diy-pointList li:nth-of-type(3)::before {
		background: url("../img_2021/diy/diy_metal-mr/flowIcon03.png") left center no-repeat; 
		background-size: 26px 40px;
	}
	
	/* colBox */
	.colBox {
		flex-direction: row-reverse;
	}

	.colBox .colCell:nth-of-type(1) {
		width: 165px;
	}

	.colBox .colCell:nth-of-type(2) {
		width: calc(100% - 185px);
	}

	/* buttonCaption */
	.buttonCaption {
		font-size: 2.0rem;
	}

}

/***** TOPページ *****/
.ndiy.ndiyTop .topLayout {
	padding: 0 8%;
}

.ndiy.ndiyTop .topLayout .topLayout_box {
	width: 82.53%;
}
/* kv */

.animeTxt {
	position: absolute;
    top: 24%;
    left: 50%;
    writing-mode: vertical-rl;
    font-size: 6vw;
    margin-left: -10vw;
	z-index: 0;
	letter-spacing: 0.3em;
}
.animeTxt span {
	position: relative;
    display: inline-block;
    line-height: 1.4;
    margin: 10px 0 -1px;
    padding-top: 6px;
    top: -14px;
}

.animeTxt span::before {
	position: absolute;
	top: -2px;
	left: 0;
	padding: 3px;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	padding: 3px 0;
	background: #ffffff;
	z-index: -1;
}

.delay3 {
	animation-delay: 0.3s;
}

.delay5 {
	animation-delay: 0.5s;
}


.ring {
	position: absolute;
    width: 52.6%;
    left: 23.7%;
    z-index: 10;
    top: -3%;
}

.desk {
	position: absolute;
    width: 52.6%;
    left: 23.7%;
    z-index: 10;
    bottom: -10%;
}

.ndiy.ndiyTop .kv {
	position: relative;
	padding: 0 8%;
}

.ndiy.ndiyTop .kv .txt {
	font-size: 1.4rem;
}

.ndiy.ndiyTop .kv .kvImage {
	width: 100%;
	position: relative;
	padding-bottom: 0;
}

.ndiy.ndiyTop .kv .kvImage::before {
	content: "";
	display: block;
	padding-top: 143%;
	margin-bottom: 20%;
	background-color: rgba(225,238,239,0.64);
	border-radius: 64px;
	text-align: center;
}


.ndiy.ndiyTop .kv .kvImage .ring img {
	position: absolute;
	width: 28vw;
	left: 23.7%;
	z-index: 10;
	top: -3%;
}

.ndiy.ndiyTop .kv .kvImage .bottom img {
	position: absolute;
	width: 40vw;
	left: 23.7%;
	z-index: 10;
	top: -3%;
}

.ndiy.ndiyTop .kv .kvInner {
	font-size: 1.4rem;
	text-align: center;
	line-height: 2.17;
}

.ndiy.ndiyTop .kvTitle p.txt{
	line-height: 2.5;
}

.ndiy.ndiyTop .kvTitle .icon_decoLine {
	width: 40%;
	height: auto;
	margin: 0 auto;
}

.ndiy.ndiyTop .kvBtm {
	width: 74.66%;
	margin: 0 auto;
}

/* quality */
.ndiy.ndiyTop .quality .hdL img {
	height: 60px;
}
.ndiy.ndiyTop .quality .pointContents {
	width: 84%;
	margin: 0 auto;
	text-align: center;
}

.ndiy.ndiyTop .quality .pointContents .hdM img {
	height: 48px;
}

.ndiy.ndiyTop .quality .pointContents .txt:last-child {
	font-size: 1.4rem;
	line-height: 2.5;
}

/* preCourse */
.ndiy.ndiyTop .preCourse img {
	display: block;
	width: auto;
	height: 60px;
	margin: 0 auto;
}

/* arrange */
.ndiy.ndiyTop .arrange .hdL img {
	height: 60px;
}

/* afterservice */
.ndiy.ndiyTop .afterservice .hdL img {
	height: 60px;
}

.ndiy.ndiyTop .afterservice .txt {
	font-size: 16px;
}

.ndiy.ndiyTop .afterservice .topLayout .topLayout_box {
	width: 100%;
}

/* shop */
.ndiy.ndiyTop .shop .hdL img {
	width: auto;
	height: 60px;
}

.ndiy.ndiyTop .shop .topLayout .topLayout_box {
	width: 100%;
}

@media only screen and (min-width: 960px) {

	.ndiy.ndiyTop .layoutRole_main {
		padding-top: 40px;
	}
	
	/* kv */

	.desk {
		width: auto;
		max-width: 342px;
		left: calc(37% - 170px);
		bottom: -92px;
	}
	.ndiy.ndiyTop .kv {
		width: 100%;
		padding: 0;
		position: relative;
        z-index: 10;
	}

	.ndiy.ndiyTop .kv .kvImage::before {
		width: calc(50% + 160px);
		height: 640px;
		padding-top: 0;
		border-radius: 0px 64px 64px 0px;
	}

	.animeTxt {
		font-size: 30px;
		width: 296px;
		left: calc(50% - 250px);
		top: 90px;
	}
	.ndiy.ndiyTop .kv .kvInner .kvIcon {
		width: 242px;
        position: absolute;
        top: 260px;
        left: calc(50% + 100px);
	}

	.ndiy.ndiyTop .kv .kvInner .kvTitle {
		width: 360px;
		position: absolute;
		top: 512px;
		left: calc(50% + 50px);
	}

	.ndiy.ndiyTop .kvTitle p.txt {
		font-size: 1.9rem;
	}

	.ndiy.ndiyTop .kvTitle .icon_decoLine {
		width: 260px;
	}

	.ndiy.ndiyTop .kvBtm {
		width: 920px;
	}

	.ndiy.ndiyTop .topLayout {
		padding: 0;
	}

	.ndiy.ndiyTop .topLayout .topLayout_img {
		margin-bottom: 0;
	}

	.ndiy.ndiyTop .topLayout .topLayout_box {
		position: relative;
		top: 20px;
		width: 47.11%;
	}
	
	/* quality */
	.ndiy.ndiyTop .quality .hdL img,
	.ndiy.ndiyTop .quality .pointContents .hdM img {
		height: 86px;
	}

	.ndiy.ndiyTop .quality .pointContents picture {
		max-width: 1040px;
		display: block;
		margin: 0 auto;
	}

	.ndiy.ndiyTop .quality .pointContents .txt:last-child {
		font-size: 1.9rem;
	}


	/* preCourse  */
	.ndiy.ndiyTop .preCourse img {
		height: 98px;
	}

	/* arrange */
	.ndiy.ndiyTop .arrange .hdL img {
		height: 86px;
	}

	/* afterservice */
	.ndiy.ndiyTop .afterservice .hdL img {
		height: 86px;
	}

	.ndiy.ndiyTop .afterservice .topLayout .topLayout_img,
	.ndiy.ndiyTop .afterservice .topLayout .topLayout_box {
		width: 50%;
	}

	/* shop */
	.ndiy.ndiyTop .shop .hdL img {
		height: 86px;
	}

	.ndiy.ndiyTop .shop .topLayout .topLayout_imgRight {
		justify-content: center;
	}
	.ndiy.ndiyTop .shop .topLayout .topLayout_img,
	.ndiy.ndiyTop .shop .topLayout .topLayout_box {
		width: 50%;
		padding: 0;
	}

	.ndiy.ndiyTop .shop .topLayout .topLayout_img {
		margin-bottom: 0 !important;
	}

	.ndiy.ndiyTop .shop .topLayout .topLayout_img .hdL {
		position: relative;
		top: 40px;
		margin-bottom: 0;
		text-align: left;
	}



}

/***** コース一覧ページ *****/

.ndiy.ndiy-planTop .courseBg {
	background: #F4F4ED;
	position: relative;
	margin-top: 90px;
	text-align: center;
}

.ndiy.ndiy-planTop .courseBg::before {
	content: "";
	display: inline-block;
	width: 170px;
	height: 120px;
	background: url("../img_2021/diy/diy_top/icon_top-desk.svg") center center no-repeat;
	background-size: contain;
	position: relative;
	top: -60px;
}


.ndiy.ndiy-planTop .courseWrap{
	padding: 0px 8% 65px 8%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ndiy.ndiy-planTop .courseBox {
	width: 100%;
	background: #ffffff;
	border-radius: 36px;
	padding: 3rem;
	margin-bottom: 35px;
}
.ndiy.ndiy-planTop .courseBox .txt {
	width: 86.66%;
	margin: 30px auto 0px;
}

.ndiy.ndiy-planTop .courseBg + p.txt {
	font-size: 1.4rem;
	line-height: 2.5;
}


@media only screen and (min-width: 960px) {
	.ndiy.ndiy-planTop .hdM {
		min-height: 50px;
        margin-bottom: 15px;
        display: flex;
		flex-wrap: wrap;
        justify-content: center;
        align-items: end;
		position: relative;
	}

	.ndiy.ndiy-planTop .hdM span {
		color: #5D5D5D;
		position: absolute;
        top: 0;
        left: calc(50% - 2em);
	}

	.ndiy.ndiy-planTop .courseBox {
		width: 30%;
		display: flex;
        flex-direction: column;
        justify-content: space-between;
	}

	.ndiy.ndiy-planTop .courseBox .txt {
		padding-bottom: 10px;
	}

	.ndiy.ndiy-planTop .courseBox .button {
		margin-top: auto;
	}

	.ndiy.ndiy-planTop .courseBg::before {
		width: 240px;
        height: 180px;
	}

	.ndiy.ndiy-planTop .courseBg + p.txt {
		font-size: 1.9rem;
	}

}


/***** コース詳細ページ *****/
 /* kv */
.ndiy.ndiy-plan .kv picture {
	padding-left: 8%;
}

.ndiy.ndiy-plan .kv picture img {
	width: 92%;
}

.ndiy.ndiy-plan .kv .kvInner {
	position: relative;
	padding-left: 8%;
}

.ndiy.ndiy-plan .kv .kvInner::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: -10px;
	width: 62.66%;
	height: 40px;
	border-radius: 0px 20px 20px 0px;
	background: rgba(234,244,244,0.85);
	max-width: 410px;
}

.ndiy.ndiy-plan .kv .kvInner .kvIcon {
	width: 42%;
	max-width: 240px;
	right: 0;
	margin-right: 24px;
	position: absolute;
	top: -60px;
}
.ndiy.ndiy-plan .kv .kvInner .kvTitle {
	width: 46.66%;
	margin-top: 25px;
	position: relative;
}

.ndiy.ndiy-plan .kv .kvInner .kvTitle h1 {
	font-size: 1.4rem;
}
.ndiy.ndiy-plan .kv .kvInner .kvTitle h1 img {
	width: auto;
	height: 21px;
	display: block;
	margin-top: 3px;
	margin-bottom: 10px;
}

.coursemenu .topLayout:nth-of-type(2) .topLayout_imgLeft {
	margin-bottom: 20px;
}

 /* arrangeSample */

.arrangeSample .colBox.colBox_imgRight {
	flex-direction: row-reverse;
}
.arrangeSample .colBox .colCel:nth-of-type(1) {
	width: 59.36%;
}
.arrangeSample .colBox .colCel:nth-of-type(2) {
	width: 34.9%;
}

 /* tool */
.toolIcon {
	display: flex;
	justify-content: space-around;
	max-width: 290px;
    margin: 0 auto;
}
.toolIcon li {
	display: flex;
	width: 130px;
	height: 130px;
	padding: 30px;
	line-height: 130px;
	background-color:#EFF5F5;
	border-radius: 50%;
	text-align: center;
}

.toolIcon li img {
	flex-basis: content;
    align-items: center;
	margin: 0 auto;
}

 /* reserveBox */

.reserveBox {
	padding: 30px 25px;
}
.reserveBox .hdL img{
	width: auto;
	height: 60px;
}
.reserveBox {
	width: 84%;
	margin: 0 auto;
	border:1px solid #707070;
	padding: 30px;
	box-shadow: 4px 5px 0px 0px #F2F2F2;
	border-radius: 0px;
}

 /* flowparts */

.flowparts {
	background: #F4F8F8;
	border-radius: 35px;
	padding: 40px 30px;
	margin: 0 8%;
}

.flowparts li {
	padding-top: 10px;
	padding-left: 45px;
	padding-bottom: 30px;
	position: relative;
}

.flowparts li::before {
	content: "";
    width: 2.5px;
    height: calc(100% - 75px);
    background: #D9D2D2;
    position: absolute;
    top: 69px;
    left: 15px;
}

.flowparts li:last-of-type::before {
	display: none;
}

.flowparts li .hdS {
	position: relative;
	display:  inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone; /* Safari, Chrome */
	border-bottom: 2px dashed #45868B;
	padding-bottom: 5px; /* 線の太さに合わせて調整 */
	padding-top: 5px;
	line-height: 2.2;
}

.flowparts li .hdS::before{
	position: absolute;
	top: 0;
	left: -45px;
	display: block;
	content: "";
	width: 32px;
	height: 50px;
	background: url("../img_2021/diy/diy_metal-mr/flowIcon01.png") left center no-repeat; 
	background-size: 32px 50px;
}

.flowparts .flow li img {
	margin: 20px 0px;
	display: block;
}

.flowparts .flow li:last-of-type img {
	margin-left: -15px;
}

.flowparts li:nth-of-type(1) .hdS::before{
	background: url("../img_2021/diy/diy_metal-mr/flowIcon01.png") left center no-repeat; 
	background-size: 32px 50px;
}

.flowparts li:nth-of-type(2) .hdS::before{
	background: url("../img_2021/diy/diy_metal-mr/flowIcon02.png") left center no-repeat; 
	background-size: 32px 50px;
}

.flowparts li:nth-of-type(3) .hdS::before{
	background: url("../img_2021/diy/diy_metal-mr/flowIcon03.png") left center no-repeat; 
	background-size: 32px 50px;
}

 /* jss */

.jssInfo {
	width: 84%;
	max-width: 840px;
	margin: 0 auto;
}
.jssInfo .hdL img{
	width: auto;
	height: 60px;
}

.jssInfo .jssInfoTxt img {
	width: 74.9%;
	max-width: 580px;
}

 /* arrange */
.variation {
	width: 84%;
	margin: 0 auto;
}

.arrange-image {
	max-width: 815px;
	margin: 0 auto;
}
.varBox {
	background: #F5F4F2;	
	padding: 30px 0px;
}

.varBox .varBoxInner{
	width: 84%;
	margin: 0 auto;
}

.varBox .varBoxInner p.price {
	text-align: right;
	margin-top: 5px;
}

.varBox .hdM img {
	width: auto;
	height: 18px;
}

.varBox .varBoxInner ul {
	max-width: 840px;
	margin: 0 auto;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}

.varBox .varBoxInner ul li {
	width: 48.41%;
	margin-bottom: 30px;
}

.varBox .varBoxInner .hdS {
	margin-top: 18px;
	margin-bottom: 10px;
	font-size: 1.2rem;
	color: #45868B;
	text-align: center;
}

.varBox .varBoxInner#varBox_stone .hdS {
	text-align: left;
}

.varBox .varBoxInner#varBox_stone ul li {
	width: 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.varBox .varBoxInner#varBox_stone ul li img {
	width: 29.88%;
	height: auto;
}

.varBox .varBoxInner#varBox_stone ul li div {
	width: calc(70.12% - 5px);
	letter-spacing: normal;
}

.varBox .varBoxInner#varBox_stone ul li .hdS {
	margin-top: 0;
	margin-bottom: 3px;
	font-size: 1.0rem;
}

.varBox .varBoxInner#varBox_stone ul li .hdS + p {
	font-size: 1.0rem;
}

.varBox .varBoxInner#varBox_engraved .swiper-slide {
	width: 50%;
	padding: 0px 10px;
}

.varBox .varBoxInner#varBox_engraved .swiper-container {
	overflow: hidden;
	padding: 10px 0px 60px;
	margin: 0px -10px;
}

.varBox .varBoxInner#varBox_engraved .swiper-horizontal>.swiper-scrollbar {
	bottom: 30px;
}

@media only screen and (min-width: 960px) {

	/* kv */
	.ndiy.ndiy-plan .kv {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		max-width: 1280px;
		margin: 0 auto;
		padding-left: 0;
	}
	
	.ndiy.ndiy-plan .kv picture{
		width: 51.32%;
		max-width: 657px;
		padding-right: 30px;
		padding-left: 0;
	}

	.ndiy.ndiy-plan .kv .kvInner {
		width: 43.75%;
		display: flex;
		padding-left: 30px;
		padding-right: 20px;
	}

	.ndiy.ndiy-plan .kv .kvInner::before {
		bottom: 15px;
	}

	.ndiy.ndiy-plan .kv .kvInner .kvIcon {
		width: 200px;
		position: relative;
	}
	.ndiy.ndiy-plan .kv .kvInner .kvTitle {
		margin-top: 0;
	}
	.ndiy.ndiy-plan .kv .kvInner .kvTitle h1 {
		font-size: 22px;
	}
	.ndiy.ndiy-plan .kv .kvInner .kvTitle h1 img {
		height: 34px;
	}

	/* courseMenu */
	.ringsize-image {
		max-width: 385px;
		margin: 0 auto;
	}

	.coursePrice {
		font-size: 2.8rem;
		line-height: 1.1;
	}

	.columnBox {
		max-width: 800px;
		margin: 0 auto;
		padding: 30px 50px;
		background: #F7F7F7;
	}

	/* tool */
	.toolIcon {
		max-width: 440px;
	}

	.toolIcon li {
		width: 200px;
		height: 200px;
		padding: 50px;
	}

	/* reserveBox */
	.reserveBox {
		max-width: 940px;
		padding: 60px;f
	}

	.reserveBox .hdL img {
		max-width: 568px;
		height: auto;
	}


	/* flowparts */
	.flowparts {
		max-width: 1280px;
		margin: 0 auto;
		padding: 60px 120px;
	}

	.flowparts .flow {
		display: flex;
	}

	.flowparts .flow li {
		width: calc((100% - 20px) / 3);
		margin-right: 10px;
	}

	.flowparts .flow li:last-of-type {
		margin-right: 0;
	}
	.flowparts .flow li img {
		width: 100%;
		max-width: 270px;
	}

	.flowparts li::before {
		display: none;
	}

	.flowparts li .hdS {
		padding-top: 0;
		font-size: 1.8rem;
	}
	
	.flowparts .flow + p {
		max-width: 840px;
		margin: 0 auto;
	}

	/* jss */
	.jssInfo .hdL img {
		height: 86px;
	}

	/* arrange */
	.varBox { padding: 80px 0px;}

	.varBox .varBoxInner ul {
		max-width: 1040px;
		justify-content: center;
	}

	.varBox .varBoxInner ul li {
		width: 23%;
		margin-right: 20px;
	}
	.varBox .varBoxInner ul li:nth-of-type(4n),
	.varBox .varBoxInner ul li:last-of-type {
		margin-right: 0;
	}

	.varBox .hdM {
		margin-bottom: 50px;
	}

	.varBox .hdM img {
		height: 32px;
	}

	.varBox .varBoxInner .hdS {
		font-size: 1.3rem;
	}

	.varBox .varBoxInner .hdS + p,
	.varBox .varBoxInner p.price {
		font-size: 1.2rem;
	}

	.varBox .varBoxInner#varBox_stone ul li {
		width: calc((100% - 60px)/4);
	}
	.varBox .varBoxInner#varBox_stone ul li:nth-of-type(4n),
	.varBox .varBoxInner#varBox_stone ul li:last-of-type {
		margin-right: 0;
	}

	.varBox .varBoxInner#varBox_stone ul li .hdS,
	.varBox .varBoxInner#varBox_stone ul li .hdS + p {
		font-size: 1.5rem;
	}

	.varBox .varBoxInner#varBox_engraved .swiper-container {
		overflow: visible;
	}

	.varBox .varBoxInner#varBox_engraved .swiper-slide {
		width: 244px;
	}


}


