@charset "utf-8";

/*==================================================

BASE

==================================================*/
html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	color: #000;
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0;
	overflow-x: hidden;
}
body.menu-open{
	overflow: hidden;
}
html.menu-open{
	overflow: hidden;
}

/*========= font family関数指定 ==========*/
:root {
	--font-sans-serif: "Noto Sans JP", sans-serif;
	--font-poppins: "Poppins", sans-serif;
}
body {
	font-family: var(--font-sans-serif);
}
/*===================*/

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: #000;
	text-decoration: underline;
	cursor: pointer;
}

/*==================================================

全ページ共通

==================================================*/
/* PC */
@media print, screen and (min-width: 768px) {
	html {
		font-size: 10px;
	}
	.sp {
		display: none!important;
	}
	a:hover {
		text-decoration: none;
	}
  a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  }
}

/* SP */
@media screen and (max-width: 767px) {
	html {
		font-size: 2.67vw;
	}
	.pc {
		display: none!important;
	}
}

/*==================================================

ヘッダー

==================================================*/

/* レイアウト 
--------------------------------------------------*/
.l-header a{
	text-decoration: none;
	display: block;
}
.l-header{
  position:relative;
  z-index: 100;
}
.l-header{
	width: 100%;
	position:fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #fff;
}

/* PC */
@media print,only screen and (min-width: 1023px){ 
	.l-header{
		height:min(10rem,6.7vw);
	}
	.l-header__inner{
		height:min(10rem,6.7vw);
    display: flex;
    justify-content: space-between;
    gap:0 min(2rem,1.34vw);
    margin: 0 min(2rem,1.34vw) 0 min(6rem,4vw);
	}
	.l-header__logo{
		width: min(39.4rem,26.3vw);
    display: flex;
    align-items: center;
	}
}

/* SP */
@media screen and (max-width: 1022px){	
	.l-header{
		width: 100%;
		height: 5rem;
	}
	.l-header__logo{
    position:absolute;
		width: 21rem;
		top:1.2rem;
		left:1.4rem;
	}
	.l-header__telsp{
		width: 4.2rem;
    position: absolute;
		top:0.4rem;
    right: 5.8rem;
    opacity: 1;
    transition: all .3s ease;
    display: block!important;
	}
	.menu-open .l-header__telsp{
    opacity: 0;
	}
}

/* 電話番号 
--------------------------------------------------*/
.l-header__tel{
  font-family: var(--font-poppins);
  font-weight: bold;
  color: #3DB8D7;
}
.l-header__tel:before{
  content: "";
  background: url("../images/shared/icon-tel.svg") left center no-repeat;
  background-size: 100% auto;
  display: inline-block;
  position: relative;
}
.l-header__time{
  color: #333;
  font-weight: 500;
}
.l-header__tel a{
  color: #3DB8D7;
}

/* PC */
@media print,only screen and (min-width: 1023px){ 
  .l-header__teltimenavi{
    width: min(34.2rem,23vw);
    min-width: 27rem;
    order: 2;
    position: relative;
  }
  .l-header__teltime{
    height: min(3.2rem,2.13vw);
  }
  .l-header__teltime a{
    height: min(3.2rem,2.13vw);
    border: 1px #3DB8D7 solid;
    border-top: none;
    border-radius: 0 0 0.6rem 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 min(1.6rem,0.85vw) 0 min(1.6rem,0.85vw);
  }
  .l-header__tel{
    font-size: min(2.5rem,1.67vw);
    line-height: 1;
    white-space: nowrap;
  }
  .l-header__tel span{
    font-size: min(2rem,1.34vw);
  }
  .l-header__tel:before{
    width: min(2rem,1.33vw);
    height: min(2rem,1.33vw);
    margin-right: min(0.1rem,0.1vw);
    top: min(0.3rem,0.2vw);
  }
  .l-header__time{
    font-size: min(1.4rem,9.2vw);
    white-space: nowrap;
  }
}

/* SP */
@media screen and (max-width: 1022px){	
  .l-header__bottom{
    background: linear-gradient(180deg, #D51314 0%, #A60B05 97.5%);
    padding-bottom: 3.2rem;
  }
  .l-header__teltime{
    background-color: #fff;
    border: 2px #3DB8D7 solid;
    border-radius: 0.6rem;
    text-align: center;
    padding: 1rem 0 0.9rem 0;
    margin: 0 1.6rem 0.8rem 1.6rem;
  }
  .l-header__tel{
    background-size: 3rem auto;
    font-size: 3.2rem;
    line-height: 1;
  }
  .l-header__tel:before{
    width: 3rem;
    height: 2.9rem;
    margin-right: 0.4rem;
    top: 0.4rem;
  }
  .l-header__time{
    font-size: 1.4rem;
  }
}

/* グローバルナビ
--------------------------------------------------*/
 
/* PC */
@media print,only screen and (min-width: 1023px){ 
  .l-header__menus{
    display: flex!important;
    justify-content: space-between;
    gap:0 min(2rem,1.33vw);
    flex: 1;
  }
  .l-header__bottom{
    order: 1;
    flex: 1;
  }
	.nav-global{
    height: min(10rem,6.7vw);
		display: flex;
		justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap:0 min(3rem,2vw);
	}
	.nav-global>li{
    height: min(10rem,6.7vw);
    white-space: nowrap;
		display: flex;
    position: relative;
	}
	.nav-global>li>a{
    height: min(10rem,6.7vw);
		font-size: min(1.8rem,1.3vw);
    font-weight: bold;
		display: flex;
    align-items: center;
    position: relative;
    opacity: 1;
    transition: all .3s ease;
	 }
	.nav-global>li>a:hover{
    opacity: 0.7;
	 }
	.nav-global>li>a:before{
    content: "";
    background-color: #a01b11;
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .3s ease;
	 }
	.nav-global>li>a:hover:before{
    opacity: 1;
	 }
  .nav-global__in{
    max-width: 106.4rem;
    display: none;
    position: absolute;
    top: min(11rem,7.33vw);
    left: min(-19.6rem,13.07vw);
  }  
  .nav-global__inin{
    width: 100%;
    background-color: #fff;
    padding: min(4rem,2.5vw) min(5rem,3.3vw);
    border-radius: 0.6rem;
    display: flex;
    gap:0 min(4rem,2vw);
  }  
  .nav-sab01{
    display: flex;
    gap:0 min(2rem,1.3vw);
  }
  .nav-sab01 li{
    width: min(22rem,17.5vw);
    transition: all .3s ease;
  }
  .nav-sab01 li:hover{
    transform: translate(0.1rem,0.1rem);
  }
  .nav-sab02 li:first-child{
    margin-bottom: min(0.4rem,0.26vw);
  }
  .nav-sab02 li a{
    background: url("../images/shared/arrow.svg") left center no-repeat;
    background-size: min(1.3rem,0.87vw) auto;
    font-size: min(1.6rem,1.4vw);
    font-weight: 500;
    padding:min(0.6rem,0.4vw) 0 min(0.9rem,0.6vw) min(1.8rem,1.5vw);
    opacity: 1;
    transition: all .3s ease;
  }
  .nav-sab02 li a:hover{
    opacity: 0.7;
  }
}

/* SP */
@media screen and (max-width: 1022px){	
	.nav-global{
    margin: 0 2.5rem;
	}
	.nav-global>li{
    border-bottom: 1px rgba(255,255,255,0.3) solid;
	}
	.nav-global>li>a{
    background: url("../images/shared/arrow-gnav.svg") right center no-repeat;
    background-size: 2.1rem auto;
		color: #fff;
		font-size: 2rem;
    font-weight: bold;
		padding: 2.8rem 3rem 2.8rem 0;
	}
	.nav-global>li:first-child>a{
    padding-bottom: 2rem;
	}
	.nav-global>li:last-child>a{
    padding-bottom: 1rem;
	}
  .nav-global__inner{
    width: 28rem;
    margin-left: auto;
  }
  .nav-sab01 li{
    max-width: 40rem;
    width: 100%;
    margin:0 auto 1.2rem auto;
  }
  .nav-sab02 li a{
    background: url("../images/shared/arrow-gnav.svg") right center no-repeat;
    background-size: 2.1rem auto;
		color: #fff;
		font-size: 1.6rem;
    font-weight: 500;    
		padding: 0.5rem 3rem 0.8rem 0;
  }
  .nav-sab02 li:last-child a{
    padding-bottom: 2.5rem;
  }
  .l-header__privacy{
    text-align: center;
    margin: 3.2rem 0 2rem 0;
    display: block!important;
  }
  .l-header__privacy a{
    color: #fff;
    font-size: 1.4rem;
  }
  .l-header__social{
    display: flex!important;
    justify-content: center;
    gap:0 2rem;
  }
  .l-header__social li{
    width: 4.3rem;
  }
}

/* ヘッダーナビ
--------------------------------------------------*/
.nav-header li{
  display: flex;
}
.nav-header li a{
  color: #fff;
  font-weight: bold;
  border-radius: 0.6rem;
}
.nav-header li:last-child a{
  background-color: #2EAB28;
  display: block;
}
.nav-header li:first-child a{
  background: radial-gradient(55.52% 88.89% at 45% 0%, #D51314 0%, #A60B05 97.5%); 
}
.nav-header li:last-child a{
  background-color: #2EAB28;
  display: block;
}
.nav-header li a:before{
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: inline-block;
  vertical-align: middle;
}
.nav-header li:first-child a:before{
  background-image: url("../images/shared/icon-contact-white.svg");
}
.nav-header li:last-child a:before{
  background-image: url("../images/shared/icon-line-white.svg");
}

/* PC */
@media print,only screen and (min-width: 1023px){ 
	.nav-header{
    width: 100%;
		display: flex;
		justify-content: space-between;
    position: absolute;
    bottom: min(1rem,0.66vw);
	}
	.nav-header li{
    display: flex;
    height: min(4.8rem,3.2vw);
	}
	.nav-header li a{
    width: 100%;
    height: min(4.8rem,3.2vw);
		font-size: min(1.6rem,1.25vw);
    border-radius: 0.6rem;
		display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all .3s ease;
	}
	.nav-header li a:hover{
    opacity: 0.8;
	}
	.nav-header li:first-child{
    width: 53%;
	}
	.nav-header li:last-child{
    width: 44%;
	}
	.nav-header li:last-child a{
    padding: min(1rem,0.67vw) min(1rem,0.67vw) min(1rem,0.67vw) min(1rem,0.67vw);
	}
  .nav-header li:first-child a:before{
    width: min(2rem,14.7vw);
    height: min(1.7rem,1.13vw);
    margin-right: min(0.6rem,0.4vw);
  }
  .nav-header li:last-child a:before{
    width: min(3.1rem,1.9vw);
    height: min(2.9rem,1.93vw);
    margin-right: min(0.9rem,0.5vw);
  }
}

/* SP */
@media screen and (max-width: 1022px){	
	.nav-header{
    margin: 0 1.6rem 2rem 1.6rem;
	}
	.nav-header li{
    margin-bottom: 0.8rem;
	}
	.nav-header li a{
    width: 100%;
    height: 6rem;
    font-size: 1.8rem;
    text-align: center;
    padding-top: 1.6rem;
	}
  .nav-header li:first-child a:before{
    width: 2.4rem;
    height: 1.9rem;
  }
  .nav-header li:first-child a:before{
    width: 2.2rem;
    height: 1.7rem;
    margin-right: 0.6rem;
  }
  .nav-header li:last-child a:before{
    width: 3.1rem;
    height: 2.9rem;
    margin-right: 0.9rem;
  }
}

/* ハンバーガー
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 1023px){ 
	.m-hamburger{
	  display:none;
	}	
}

/* SP */
@media screen and (max-width: 1022px){	
	.l-header__menus{
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		height: calc( 100vh - 5rem );
    background-color: #f5e8e7;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 2rem;
    display: none;
	}
	.m-hamburger{
		width: 5rem;
		height: 5rem;
    background-color: #222;
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
		z-index: 100;
    display: block!important;
	}
	.m-hamburger__lines{
		height: 70%;
		width:62%;
		margin: 0 auto;
		position: relative;
	}
	.m-hamburger__lines>div{
		background-color: #fff;
		width:100%;
		height:0.2rem;
		transition: transform .3s ease, opacity .3s ease;
		position: absolute;
		left:0;
		top:50%;
	}
	.m-hamburger__lines>div:first-child{
		transform: translateY(-380%);
	}
	.m-hamburger__lines>div:last-child{
		transform: translateY(380%);
	}
	.menu-open .m-hamburger__lines>div:first-child{
		transform: rotate(210deg);
	}
	.menu-open .m-hamburger__lines>div:nth-child(2){
		transform: translateX(-50%);
		opacity: 0;
	}
	.menu-open .m-hamburger__lines>div:last-child{
		transform: rotate(-210deg);
	}
	.m-hamburger__text{
		height: 5%;
		width:100%;
		margin:-0.5rem auto 0 auto;
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 1.2rem;
    text-align: center;
	}
	.m-hamburger__text:before{
		content: "MENU";
	}
	.menu-open .m-hamburger__text:before{
		content: "CLOSE";
	}
}

/*==================================================

ページ下部お問い合わせ

==================================================*/
.l-footer__contact{
  background: linear-gradient(180deg, #D51314 0%, #A60B05 97.5%);
}
.l-footer__contact01 a,
.l-footer__contact02 a,
.l-footer__contact03 a{
  width: 100%;
  background-color: #fff;
  text-decoration: none;
  border-radius: 0.6rem;
}
.l-footer__contactTitle{
  font-weight: bold;
}
.l-footer__contactTitle:before{
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  display: inline-block;
  vertical-align: middle;
}
.l-footer__contact01 .l-footer__contactTitle:before{
  background-image: url("../images/shared/icon-tel.svg");
}
.l-footer__contact02 .l-footer__contactTitle:before{
  background-image: url("../images/shared/icon-contact.svg");
}
.l-footer__contact03 .l-footer__contactTitle:before{
  background-image: url("../images/shared/icon-line.svg");
  position: relative;
}
.l-footer__contactTel{
  font-family: var(--font-poppins);
  color: #3DB8D7;
  font-weight: 700;
}
.l-footer__contactText{
  color: #222;
  font-weight: 500;
  letter-spacing: .05em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-footer__contact{
    padding: min(4rem,2.66vw);
  }
  .l-footer__contactInner{
    max-width: 142rem;
    position: relative;
    display: flex;
    align-items: stretch;
    gap:0 min(2rem,133vw);
    padding-left: min(19rem,12.66vw);
    margin: 0 auto;
  }
  .l-footer__contactPicture{
    width: min(17.4rem,11.6vw);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: min(-2rem,-1.33vw);
  }
  .l-footer__contact01,
  .l-footer__contact02,
  .l-footer__contact03{
    max-width: 39rem;
    display: flex;
    text-align: center;
  }
  .l-footer__contact01{
    max-width: 41rem;
  }
  .l-footer__contact01 a,
  .l-footer__contact02 a,
  .l-footer__contact03 a{
    width: 100%;
    padding: min(3.4rem,2.26vw) min(2rem,1.33vw) min(2.4rem,1.6vw) min(2rem,1.33vw);
    display: block;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    opacity: 1;
    transition: all .3s ease;
  }
  .l-footer__contact02 a:hover,
  .l-footer__contact03 a:hover{
    opacity: 0.9;
  }
  .l-footer__contactTitle{
    font-size: min(2.4rem,1.7vw);
    line-height: 1;
    padding: min(0.5rem,0.33vw) 0;
  }
  .l-footer__contactTitle:before{
    margin-right: min(1.4rem,9vw);
  }
  .l-footer__contact01 .l-footer__contactTitle:before{
    width: min(4.2rem,2.5vw);
    height: min(4rem,2.6vw);
  }
  .l-footer__contact02 .l-footer__contactTitle:before{
    width: min(4.7rem,2.9vw);
    height: min(3.6rem,2.3vw);
  }
  .l-footer__contact03 .l-footer__contactTitle:before{
    width: min(4.5rem,3vw);
    height: min(4.1rem,2.74vw);
    top: -0.2rem;
  }
  .l-footer__contactTel{
    font-size: min(4.4rem,2.94vw);
    line-height: 1.1;
    margin-top: min(1.3rem,0.89vw);
  }
  .l-footer__contactText{
    font-size: min(1.6rem,1.25vw);
    line-height: 1.6;
    margin-top: min(1.2rem,0.8vw);
  }
}

/* SP */
@media screen and (max-width: 767px){
  .l-footer__contact{
    padding: 2rem 2rem 4rem 6.5rem;
    background: linear-gradient(180deg, #D51314 0%, #A60B05 97.5%);
    position: relative;
    overflow: hidden;
  }
  .l-footer__contactPicture{
    width: 13.2rem;
    position: absolute;
    bottom: -3rem;
    left: -2.7rem;
  }
  .l-footer__contact01,
  .l-footer__contact02,
  .l-footer__contact03{
    text-align: center;
    margin-bottom: 1.2rem;
  }
  .l-footer__contact01 a,
  .l-footer__contact02 a,
  .l-footer__contact03 a{
    width: 100%;
    height: 10rem;
    padding-top: 1.3rem;
    display: block;
    box-sizing: border-box;
  }
  .l-footer__contactTitle{
    font-size: 1.8rem;
    padding: 0.2rem 0;
  }
  .l-footer__contactTitle:before{
    margin-right: 1rem;
  }
  .l-footer__contact01 .l-footer__contactTitle:before{
    width: 2.6rem;
    height: 2.5rem;
  }
  .l-footer__contact02 .l-footer__contactTitle:before{
    width: 2.9rem;
    height: 2.3rem;
    position: relative;
    top: -0.2rem;
  }
  .l-footer__contact03 .l-footer__contactTitle:before{
    width: 3.5rem;
    height: 3.2rem;
  }
  .l-footer__contactTel{
    font-size: 3rem;
  }
  .l-footer__contactText{
    font-size: 1.4rem;
    line-height: 1.4;
  }
}


/*==================================================

フッター

==================================================*/

/* ページトップ
--------------------------------------------------*/
.l-pagetop{
  position: fixed;
  z-index: 90;
}	
.l-pagetop a{
  background: url("../images/shared/pagetop.jpg") 0 0 no-repeat;
  background-size: 100% auto;
  display: block;
  color: #fff;
  font-family: var(--font-poppins);
  text-align: center;
  text-decoration: none;
}	

/* PC */
@media print,only screen and (min-width: 768px){ 	
  .l-pagetop{
    width: 12rem;
    height: 12rem;
    right: 2rem;
    bottom: 2rem;
    transition: all .2s ease;
  }	
  .l-pagetop a{
    width: 12rem;
    height: 12rem;
    font-size: 1.6rem;
    padding-top: 1rem;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.35);
    border-radius: 0.6rem;
    opacity: 1;
    transition: all .3s ease;
  }	
  .l-pagetop a:hover{
    opacity: 0.85;
  }	
  .l-pagetop:active{
    right: 1.8rem;
    bottom: 1.8rem;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.05);
  }	
}

/* SP */
@media screen and (max-width: 767px){
  .l-pagetop{
    width: 7rem;
    height: 7rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }	
  .l-pagetop a{
    width: 7rem;
    height: 7rem;
    background-size: 100% auto;
    font-size: 1.2rem;
    padding-top: 0.7rem;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0.6rem;
  }	
}

/* フッター
--------------------------------------------------*/
.l-footer a{
	text-decoration: none;
	display: block;
  color: #fff;
  opacity: 1;
  transition: all .3s ease;
}
.l-footer{
  background-color: #222;
  color: #fff;
}	

/* PC */
@media print,only screen and (min-width: 768px){ 	
  .l-footer{
    padding: 0 6rem;
  }	
  .l-footer__top,
  .l-footer__bottom{
    max-width: 136.6rem;
    margin: 0 auto;
  }	
  .l-footer__top{
    display: flex;
    justify-content: space-between;
    gap:0 5rem;
    padding: 8rem 0 6rem 0;
    position: relative;
  }	
  .l-footer__left{
    width: 53.2rem;
    order: 1;
  }	
  .l-footer__right{
    width: 68.5rem;
    order: 2;
  }	
  .l-footer__copy{
    order: 1;
  }	
  .l-footer__privacy{
    order: 2;
  }	
  .l-footer a:hover{
    opacity: 0.8;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .l-footer{
    padding: 4rem 3rem 4rem 3rem;
  }	
  .l-footer__top,
  .l-footer__bottom{
  }	
  .l-footer__top{
    padding: 0 0 3rem 0;
  }	
}

/* フッターロゴ　テキストなど--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 	
  .l-footer__logo{
    width: 44.7rem;
    margin-bottom: 5rem;
  }
  .l-footer__picturestexts{
    display: flex;
    gap:0 4rem;
  }
  .l-footer__pictures{
    width: 14.5rem;
    order: 1;
  }
  .l-footer__logo02{
    margin-bottom: 3.5rem;
  }
  .l-footer__texts{
    width: calc( 100% - 18.2rem );
    font-size: 1.6rem;
    line-height: 1.8;
    order: 2;
    margin-top: -0.2rem;
  }
  .l-footer__texts a{
    text-decoration: underline;
    display: inline-block;
  }
  .l-footer__social{
    display: flex;
    gap:0 2rem;
  }
  .l-footer__social li{
    width: 4.3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .l-footer__logo{
    width: 29.9rem;
    margin-bottom: 1.5rem;
  }
  .l-footer__picturestexts{
  }
  .l-footer__pictures{
    position: relative;
  }
  .l-footer__logo02{
    width: 14.4rem;
    margin-bottom: 4rem;
  }
  .l-footer__texts{
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 3rem;
  }
  .l-footer__texts a{
    text-decoration: underline;
    display: inline-block;
  }
  .l-footer__social{
    display: flex;
    gap:0 2rem;
    position: absolute;
    right: 0;
    top: 0.3rem;
  }
  .l-footer__social li{
    width: 4.1rem;
  }
}

/* フッターナビ
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 
	.nav-footers{
    display: flex;
    justify-content: flex-end;
    gap:0 6.5rem;
    padding-bottom: 5em;
	}
  .nav-footersIn{
    display: flex;
    justify-content: flex-end;
    gap:0 6.5rem;
	}
	.nav-footer>li{
    margin-bottom: 2.6rem;
	}
	.nav-footer>li>a{
		font-size: 2rem;
    font-weight: bold;
	}
	.nav-footer__inner{
    display: flex;
    gap:0 3rem;
    margin-top: 1.2rem;
	}
	.nav-footer__inner li{
    margin-bottom: 1.2rem;
	}
	.nav-footer__inner a{
    position: relative;
    font-size: 1.6rem;
    padding-left: 1.7rem;
	}
	.nav-footer__inner a:before{
    content: "";
    width: 1rem;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
	}
	.l-footer__banner{
    max-width: 67rem;
    width: 50%;
    display: flex;
    justify-content: flex-end;
    gap:0 2rem;
    position: absolute;
    bottom: 6rem;
    right:0;
	}
	.l-footer__banner li{
    max-width: 21rem;
    width: 30%;
	}
}

/* SP */
@media screen and (max-width: 767px){
	.nav-footers{
    position: relative;
    margin-bottom: 1rem;
	}
  .nav-footersIn{
    display: flex;
    gap:0 7rem;
	}
	.nav-footer>li{
    margin-bottom: 3rem;
	}
	.nav-footer>li>a{
		font-size: 1.8rem;
    font-weight: bold;
	}
	.nav-footer__inner{
    display: flex;
    gap:0 2.5rem;
    margin-top: 1.5rem;
	}
	.nav-footer__inner li{
    margin-bottom: 2.2rem;
	}
	.nav-footer__inner li:last-child{
    margin-bottom: 0;
	}
	.nav-footer__inner a{
    position: relative;
    font-size: 1.4rem;
    padding-left: 1.8rem;
	}
	.nav-footer__inner a:before{
    content: "";
    width: 1rem;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
	}
	.l-footer__banner{
    width: 20rem;
    margin: 0 auto;
	}
	.l-footer__banner li{
    margin-bottom: 2rem;
	}
	.l-footer__banner li:last-child{
    margin-bottom: 0;
	}
}

/* フッター下部
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-footer__bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px #666 solid;
    padding: 3rem 0 4rem 0;
  }	
  .l-footer__copy{
    font-size: 1.2rem;
    letter-spacing: .02em;
    order: 1;
  }	
  .l-footer__privacy{
    font-size: 1.6rem;
    order: 2;
  }	
}

/* SP */
@media screen and (max-width: 767px){	
  .l-footer__bottom{
    border-top: 1px #666 solid;
    padding-top: 3rem;
  }	
  .l-footer__copy{
    font-size: 1.2rem;
    letter-spacing: .02em;
  }	
  .l-footer__privacy{
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }	
}

/*==================================================

メイン

==================================================*/
.home-cover{
  position: relative;
  overflow: hidden;
}
.home-cover:before{
  content: "";
  background-color: #fff;
  display: block;
  position: absolute;
  z-index: 10;
}
.home-cover__texts{
  background: radial-gradient(286.33% 179.61% at 6.1% 151.2%, #D51314 0%, #BB140D 51.5%, #A60B05 97.5%);
  box-sizing: border-box;
  position: relative;
}
.home-cover__texts:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/shared/block.png") 0 0 repeat;
  mix-blend-mode: multiply;
}
.home-cover__textsInner{
  position: relative;
}
.home-cover__text01{
  width: 26%;
}
.home-cover__text02{
  width: 103%;
}
.home-cover__text03{
  width: 100%;
}
.home-cover__logo{
  width: 100%;
}
.home-cover__icons{
  display: flex;
}
.home-cover__picture{
  position: absolute;
}
.home-cover__slideItem{
  width: 100%;
  position: relative;
}
.home-cover__slideItem img{
  width: 100%;
  object-fit: cover;
}
.home-cover .slick-dots{
  width: 100%;
  height: auto;
  position: absolute;
  left:50%;
  transform:translateX(-50%);
  display: block;
  text-align: center;
}
.home-cover .slick-dots li{
  background-color:#fff;
  display: inline-block;
  border-radius: 50%;
  text-indent: -9999px;
  vertical-align: middle;
  cursor: pointer;
}
.home-cover .slick-dots li.slick-active{
  background-color:#BB140D;
}
.home-cover .slick-prev,
.home-cover .slick-next{
  background-color:#333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
}
.slick-prev,
.slick-next{
  transition: all .3s ease;
}
.home-cover .slick-prev{
  left: 0;
}
.home-cover .slick-next{
  right: 0;
}
.home-cover .slick-prev:before,
.home-cover .slick-next:before{
  content: none;
}
.slick-prev,
.slick-next{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
	.home-cover{
		height: 58.2rem;
    display: flex;
    justify-content: space-between;
		position: relative;
    align-items: stretch;
    margin-top: min(10rem,6.7vw);
    overflow: hidden;
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% 100%,0 100%);
	}
	.home-cover__texts{
		width: 61%;
    padding: 0 calc( 50vw - 58rem ) 0 2%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
	}
	.home-cover__texts:before{
    background-size: 63.4rem auto;
	}
	.home-cover__textsInner{
    top: -1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 2rem;
	}
	.home-cover__text01{
    margin: 0 auto 0.86rem auto;
	}
	.home-cover__text02{
    margin:0 0 1.8rem -1.5rem;
	}
	.home-cover__text03{
    margin-bottom: 3.2rem;
	}
	.home-cover__logo{
    margin-bottom: 5.1rem;
	}
	.home-cover__icons{
    gap:0 3%;
    margin-left: 0.7rem;
	}
	.home-cover__icons li{
    max-width: 15rem;
    width: 24%;
	}
	.home-cover__picture{
    width: 55%;
    right: -22.6%;
    bottom: -11.3rem;
	}
	.home-cover__slide{
		width: 39%;
	}
	.home-cover__slideItem{
		height: 58.2rem;
	}
	.home-cover__slideItem img{
		height: 58.2rem;
	}
	.home-cover .slick-dots{
		bottom: 2.7rem;
	}
	.home-cover .slick-dots li{
		width: 1.2rem;
		height: 1.2rem;
		opacity: 1;
		border-radius: 50%;
		margin: 0 0.6rem;
		text-indent: -9999px;
	}
	.home-cover .slick-prev,
  .home-cover .slick-next{
    width: 5.8rem;
    height: 6rem;
	}
	.home-cover .slick-prev{
    background-position: 2rem center;
    left: 0;
    border-radius: 0 0.6rem 0.6rem 0;
	}
	.home-cover .slick-next{
    background-position: right 2rem center;
    right: 0;
    border-radius: 0.6rem 0 0 0.6rem;
	}  
  .move-arrow {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5.8rem;
    height: 6rem;
    margin: auto 0;
    line-height: 1;
  }
  .move-arrow:before,
  .move-arrow:after {
    width: 1.5rem;
    height: 2.6rem;
    content: "";
    position: absolute;
    left:0;
    bottom: 0;
    top: 0;
    right: 0;
    margin:auto;
    animation-fill-mode: forwards;
    animation-duration: 0.6s;
  }
  .m-case .slick-prev .move-arrow{
    left: -1rem;
  }
  .m-case .slick-next .move-arrow{
    right: -1rem;
  }
  .slick-prev .move-arrow:before,
  .slick-prev .move-arrow:after {
    background: url("../images/shared/arrow-prev.svg") 0 0 no-repeat;
  }
  .slick-next .move-arrow:before,
  .slick-next .move-arrow:after {
    background: url("../images/shared/arrow-next.svg") 0 0 no-repeat;
  }
  .slick-prev .move-arrow:after {
    transform: translateX(300%);
  }
  .slick-next .move-arrow:after {
    transform: translateX(-300%);
  }
  .slick-prev:hover .move-arrow:before {
    animation-name: animatePrevBefore;
    animation-delay: 0s;
  }
  .slick-prev:hover .move-arrow:after {
    animation-name: animatePrevAfter;
    animation-delay: 0.2s;
  }
  .slick-next:hover .move-arrow:before {
    animation-name: animateNextBefore;
    animation-delay: 0s;
  }
  .slick-next:hover .move-arrow:after {
    animation-name: animateNextAfter;
    animation-delay: 0.2s;
  }
}
@keyframes animateNextAfter {
  0% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes animateNextBefore {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300%);
  }
}
@keyframes animatePrevAfter {
  0% {
    transform: translateX(300%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes animatePrevBefore {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300%);
  }
}

/* SP */
@media screen and (max-width: 767px){	
	.home-cover{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% 100%,0 100%);
    margin-top: 5rem;
	}
	.home-cover__texts{
    padding: 1.1rem 1.5rem 2.3rem 1.5rem;
	}
	.home-cover__texts:before{
    background-size: 25.8rem auto;
	}
	.home-cover__textsInner{
	}
	.home-cover__text01{
    width: 11.2rem;
    margin: 0 auto 0.5rem auto;
	}
	.home-cover__text02{
    width: 100%;
    margin:0 0 0.8rem -0.4rem;
	}
	.home-cover__text03{
    margin-bottom: 1.2rem;
	}
	.home-cover__logo{
    margin-bottom: 2.1rem;
	}
	.home-cover__icons{
    gap:0 0.8rem;
	}
	.home-cover__icons li{
    width: 7.6rem;
	}
	.home-cover__picture{
    width: 14.7rem;
    right: -3rem;
    bottom: -3.5rem;
	}
	.home-cover__slide{
	}
	.home-cover__slideItem{
		height: 25.8rem;
	}
	.home-cover__slideItem img{
		height: 25.8rem;
	}
	.home-cover .slick-dots{
		bottom: 1.6rem;
	}
	.home-cover .slick-dots li{
		width: 0.8rem;
		height: 0.8rem;
		opacity: 1;
		border-radius: 50%;
		margin: 0 0.4rem;
	}
  .move-arrow:before,
  .move-arrow:after {
    width: 3.7rem;
    height: 3.9rem;
  }
  .home-cover .slick-prev{
    background:#333 url("../images/shared/arrow-prev.svg") center center no-repeat;
  }
  .home-cover .slick-next{
    background:#333 url("../images/shared/arrow-next.svg") center center no-repeat;
  }
	.home-cover .slick-prev,
  .home-cover .slick-next{
    background-size: 1rem auto;
    width: 3.7rem;
    height: 3.9rem;
	}
	.home-cover .slick-prev{
    background-position: 1.2rem center;
    border-radius: 0 0.4rem 0.4rem 0;
	}
	.home-cover .slick-next{
    background-position: right 1.2rem center;
    border-radius: 0.4rem 0 0 0.4rem;
	}
}

/*==================================================

セカンド共通

==================================================*/

/* レイアウト
--------------------------------------------------*/
.l-content{
	line-height: 1.7;
}

/* PC */
@media print,only screen and (min-width: 768px){	
	.l-content{
		max-width: 100rem;
		font-size: 1.6rem;
		padding: 0 3rem;
		margin: 0 auto 9rem auto;		
    box-sizing: content-box;
	}
	.l-container{
		max-width: 100rem;
		font-size: 1.6rem;
		display: flex;
		justify-content: space-between;
		padding: 0 3rem;	
		margin: 0 auto 9rem auto;		
    box-sizing: content-box;
	}
	.l-container .l-sidebar{
		width: 27rem;		
	}
	.l-container .l-main{
		width: 78rem;
	}	
}

/* SP */
@media screen and (max-width: 767px){
	.l-content{
		font-size: 1.6rem;
	}
	.l-container{
		font-size: 1.6rem;
	}
}

/* ページタイトル
--------------------------------------------------*/
.m-pageTitle{  
  background: radial-gradient(318.94% 88.03% at 49.13% 8.45%, #D51314 0%, #A60B05 97.5%);
  position: relative;
  color: #fff;
	font-weight: bold;
  overflow: hidden;
  z-index: 5;
}
.m-pageTitle__inner{  
  position: relative;
  color: #fff;
  z-index: 7;
}
.m-pageTitle.-orange{  
  background: none;
  background-color:#EC9014;
}
.m-pageTitle.-green{ 
  background: radial-gradient(318.94% 88.03% at 49.13% 8.45%, #42BD74 0%, #42BD74 97.5%);
}
.m-pageTitle.-blue{ 
  background: none;
  background-color:#2AB1E6;
}
.m-pageTitle:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/shared/block.png") 0 0 repeat;
  background-size: 63.4rem auto;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.m-pageTitle__text01{  
  display: block;
}
.m-pageTitle__text02{  
  display: block;
}
.m-pageTitle__text02.-poppins{  
  font-family: var(--font-poppins);
  font-weight: 500;
}
.m-pageTitle__picture{  
  position: absolute;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-pageTitle{  
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 0 3rem;
    margin-top: min(10rem,6.7vw);
  }
  .m-pageTitle__inner{  
    max-width: 112rem;
    padding: 5rem 0 4.8rem 0;
    margin: 0 auto;
  }
  .m-pageTitle h1{  
    margin-right: 20rem;
  }
  .m-pageTitle__text01{  
    font-size: min(4rem,3.8vw);
    margin-bottom: 1rem;
  }
  .m-pageTitle__text02{  
    font-size: min(2rem,2vw);
  }
  .m-pageTitle__picture{  
    width: 20rem;
    right: 16.2rem;
    bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1022px) {
  .m-pageTitle{  
    margin-top: 5rem;
  }
}
/* SP */
@media screen and (max-width: 767px){	
  .m-pageTitle{  
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 1.2rem 1.8rem 1.3rem 1.8rem;
    margin-top: 5rem;
  }
  .m-pageTitle__text01{  
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }
  .m-pageTitle__text02{  
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: normal;
  }
  .m-pageTitle__picture{  
  }
}

/* 見出し1
--------------------------------------------------*/
.m-title{
  font-weight: bold;
  text-align: center;
  position: relative;
}
.m-title__japanese,
.m-title__english{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  line-height: 1.2;
}
.m-title__english{
  color: #FFF4F3;
  font-family: var(--font-poppins);
}
.m-title__small{
  color: #666;
  display: block;
}
.m-title__large{
  font-family: var(--font-poppins);
}
.m-title__red{
  color: #BB140D;
  font-weight: bold;
}
.m-title__red span{
  font-family: var(--font-poppins);
}
.m-title__number{  
  font-family: var(--font-poppins);
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-title{
    min-height: 13rem;
  }
  .m-title__japanese{
    font-size: 4rem;
  }
  .m-title__english{
    font-size: min(12rem,10vw);
  }
  .m-title__small{
    font-size: 2.2rem;
    line-height: 1.1;
  }
  .m-title__large{
    font-size: 8rem;
    line-height: 1;
  }
  .m-title__red{
    font-size: 2.2rem;
  }
  .m-title__red span{
    font-size: 3rem;
  }
  .m-title__number{  
    font-size: 4.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-title{
    min-height: 8rem;
  }
  .m-title__japanese{
    font-size: 2.6rem;
    line-height: 1.4;
  }
  .m-title__english{
    font-size: 4.8rem;
  }
  .m-title__small{
    font-size: 1.6rem;
    line-height: 1.1;
  }
  .m-title__large{
    font-size: 3.8rem;
    line-height: 1;
  }
  .m-title__red{
  }
  .m-title__red span{
    font-size: 2.6rem;
  }
  .m-title__number{  
    font-size: 3rem;
  }
}

/* ぱんくず
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){	
  .-marginbottom100{
    margin-bottom: 10rem;
	}
  .-margintop-polygon{
    margin-top: -10rem;
  }
  .-marginbottom-polygon{
    padding-bottom: 10rem;
    margin-bottom: -10rem;
  }
  .m-cta.-marginbottom-polygon{
    padding-bottom: 0;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .-marginbottom100{
    margin-bottom: 6rem;
	}
  .-margintop-polygon,
  .-margintop-polygonsp{
    margin-top: -5rem;
  }
  .-marginbottom-polygon{
    margin-bottom: -5rem;
  }
}

/* ぱんくず
--------------------------------------------------*/
.m-bread{
  background-color: #F3F3F3;
}
.m-bread__inner{
	display: flex;
	justify-content: flex-start;
  flex-wrap: wrap;
  color: #757575;
  font-weight: 500;
}
.m-bread a{
  color: #333;
  display: block;
	background: url("../images/shared/arrow-bread.svg") right 0.4em no-repeat;
  text-decoration: none;
}

/* PC */
@media print,only screen and (min-width: 768px){	
	.m-bread{
	  padding: 1.1rem 3rem;
	}
  .m-bread__inner{
    max-width: 136rem;
    margin: 0 auto;
    gap:0 0.9rem;
  }
	.m-bread li{
		font-size: 1.2rem;
	}
	.m-bread a{
		background-size: 0.8rem auto;
    padding-right: 1.9rem;
	}
  .m-bread a:hover{
    text-decoration: underline;
  }
}

/* SP */
@media screen and (max-width: 767px){	
	.m-bread{
	  padding: 0.8rem 2rem;
	}
  .m-bread__inner{
    gap:0 0.7rem;
  }
	.m-bread li{
		font-size: 1.1rem;
	}
	.m-bread a{
		background-size: 0.6rem auto;
    padding-right: 1.4rem;
	}
}

/*==================================================

トップページ

==================================================*/
/* ニュース--------------------------------------------------*/
.home-topnews{
  background-color: #333;
}
.home-topnews a{
  background:url("../images/shared/arrow-news.svg") right 0.5rem center no-repeat;
  color: #fff;
  font-family: var(--font-poppins);
  text-decoration: none;
  display: inline-block;
}
.home-topnews__time{
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-topnews{
    padding: 0 3rem;
    text-align: center;
  }
  .home-topnews a{
    background-size: 3.5rem auto;
    font-size: 1.6rem;
    padding: 1.2rem 4.8rem 1.1rem 0;
    text-align: left;
    transition: all .2s ease;
  }
  .home-topnews a:hover{
    background-position: right 0 center;
  }
  .home-topnews__time{
    margin-right: 0.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-topnews{
    line-height: 1.3;
  }
  .home-topnews a{
    background-position: right 1.5rem bottom 1.2rem;
    background-size: 2.9rem auto;
    font-size: 1.4rem;
    padding: 0.8rem 5rem 0.8rem 1.5rem;
  }
  .home-topnews__time{
    display: block;
  }
}

/* バナー
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-banner{
    max-width: 100.4rem;
    padding: 0 3rem;	
    margin: 2rem auto 3rem auto;	
    box-sizing: content-box;
    display: flex;
    justify-content: space-between;
  }
  .home-banner li:first-child{
    max-width: 55.8rem;
    width: 56%;
  }
  .home-banner li:last-child{
    max-width: 41.8rem;
    width: 43%;
  }
  .home-banner li:first-child a{
    transition: all .2s ease;
    display: block;
  }
  .home-banner li:first-child a:hover{
    transform: translate(0.1rem,0.1rem);
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-banner{
    padding: 1.5rem;	
  }
  .home-banner li{
    margin: 0 auto;
  }
  .home-banner li:first-child{
    width: 30rem;
    margin-bottom: 1rem;
  }
  .home-banner li:last-child{
    width: 32.5rem;
  }
}

/* イントロ
--------------------------------------------------*/
.home-intro{
  background-color: #FAE9E8;
  position: relative;
  overflow: hidden;
}
.home-intro:before,
.home-intro:after{
  content: "";
  background-color: #fff;
  display: block;
  position: absolute;
  z-index: 10;
}
.home-intro__text01{
  font-weight: bold;
}
.home-intro__text02{
  color: #333;
  font-weight: 500;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-intro{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 13.6rem 3rem 12.7rem 3rem;	
  }
  .home-intro__inner{
    max-width: 112rem;
    margin: 0 auto;	
    position: relative;
  }
  .home-intro__texts{
    width: 51rem;
    position: relative;
    z-index: 2;
  }
  .home-intro__text01{
    font-size: 3.4rem;
    margin-bottom: 1.7rem;
  }
  .home-intro__text02{
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .home-intro__image{
    width: 71.8rem;
    position: absolute;
    left: calc( 50% - 8rem );
    bottom: -6.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1195px) {
  .home-intro{
    padding-top: 11.5rem;
    padding-bottom: 1rem;
  }
  .home-intro__texts{
    width: 100%;
  }
  .home-intro__texts br{
    display: none;
  }
  .home-intro__image{
    width: 50rem;
    position: static;
    left: auto;
    bottom: auto;
    margin:0 5rem 0 auto;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-intro{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 5rem 1.5rem 2rem 1.5rem;	
  }
  .home-intro__texts{
    margin-bottom: 1.2rem;
  }
  .home-intro__text01{
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1.4rem;
  }
  .home-intro__text02 span{
    display: block;
    margin-bottom: 1rem;
  }
  .home-intro__text02{
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .home-intro__image{
    width: 35rem;
    margin-left: -2rem;
  }
}
	
/* パーテーション職人の3つのサービス
--------------------------------------------------*/
.home-service__text{
  color: #333;
  font-weight: bold;
  text-align: center;
}
.m-partitionbanner{
  border-radius: 1rem;
  filter: drop-shadow(4px 4px 30px rgba(101, 1, 1, 0.12));
  position: relative;
}
.m-partitionbanner:first-child{
  background-color: #EC9014;
}
.m-partitionbanner:nth-child(2){
  background-color: #42BD74;
}
.m-partitionbanner:last-child{
  background-color: #2AB1E6;
}
.m-partitionbanner__title{
  position: absolute;
}
.m-partitionbanner__texts{
  background-color: #fff;
  border-radius: 0.6rem;
  position: relative;
  z-index: 2;
}
.m-partitionbanner__text{
  width: 100%;
}
.m-partitionbanner__button{
  text-align: center;
  width: 100%;
  background: url("../images/shared/arrow-news.svg") right 3rem center no-repeat;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  box-sizing: border-box;
  border-radius: 4rem;
  display: block;
  text-decoration: none;
}
.m-partitionbanner a{
  text-decoration: none;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-service{
    max-width: 112rem;
    padding: 7.5rem 3rem 12rem 3rem;	
    margin: 0 auto;	
    box-sizing: content-box;
  }
  .home-service__text{
    font-size: 2rem;
    margin: 2.7rem 0 4.8rem 0;
  }
  .m-partitionbanners__wrapper{
    max-width: 112rem;
    padding: 10rem 3rem;	
    margin: 0 auto;	
    box-sizing: content-box;
  }
  .m-partitionbanners{
    display: flex;
    justify-content: space-between;
    gap:0 2.6rem;
  }
  .m-partitionbanner{
    width: calc( ( 100% / 3 ) - 1.73rem );
    padding: 0.5rem 0.7rem 0.7rem 0.7rem;
    padding-top: 16.5%;
    transition: all .3s ease;
  }
  .m-partitionbanner:hover{
    transform: translate(0.1rem,0.1rem);
  }
  .m-partitionbanner:hover .m-partitionbanner__button{
    background-position: right 2.5rem center;
  }
  .m-partitionbanner__title{
    width: 97%;
    top: 0.5rem;
    right: 0;
  } 
  .m-partitionbanner__texts{
    padding: 1.2rem 1.3rem 2rem 1.3rem;
  }
  .m-partitionbanner__button{
    max-width: 24.3rem;
    margin:1.5rem auto 0 auto;
    background-size: min(3.5rem,2.3vw) auto;
    font-size: min(1.8rem,1.8vw);
    padding: min(2rem,1.5vw) min(7.3rem,4.9vw) min(2rem,1.5vw) min(4.5rem,3vw);
    transition: all .3s ease;
  }
  .m-partitionbanner__text{
    height: min(26.2rem,22vw);
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-service{
    padding: 6rem 1.5rem 5rem 1.5rem;	
  }
  .home-service__text{
    margin: 1rem 0 2rem 0;
  }
  .home-service .m-title{
    font-size: 2.6rem;
  }
  .home-service .m-title{
    font-size: 2rem;
  }
  .m-title__smallsp{
    font-size: 2rem;
    display: block;
  }
  .m-partitionbanners__wrapper{
    padding: 6rem 1.5rem;	
  }
  .m-partitionbanner{
    padding: 8.5rem 0.7rem 0.7rem 0.7rem;
    margin-bottom: 2rem;
  }
  .m-partitionbanner:last-child{
    margin-bottom: 0;
  }
  .m-partitionbanner__title{
    width: 33.5rem;
    top: -2rem;
    right: 0.2rem;
  }
  .m-partitionbanner__texts{
    padding: 1.2rem 1.8rem 1.6rem 1.8rem;
  }
  .m-partitionbanner__text{
    margin-bottom: 2rem;
  }
  .m-partitionbanner__button{
    width: 20.9rem;
    margin:1.8rem auto 0 auto;
    background-position: right 2.2rem center;
    background-size: 2.5rem auto;
    font-size: 1.4rem;
    padding: 1.4rem 6.3rem 1.4rem 5.2rem;
  }
}
	
/* cta
--------------------------------------------------*/
.m-cta{
  background: radial-gradient(54.53% 88.89% at 50.09% 0%, #1A34B8 0%, #122681 97.5%);
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.m-cta:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/shared/block.png") 0 0 repeat;
  background-size: 63.4rem auto;
  mix-blend-mode: multiply;
  overflow: hidden;
}
.m-cta__inner{
  position: relative;
}
.m-cta__picture01,
.m-cta__picture02,
.m-cta__picture{
  position: absolute;
}
.m-cta__text{
  color: #fff;
  font-weight: bold;
  text-align: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-cta{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
  }
  .-polygontopnone{
    clip-path: none;
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
  }
  .-polygontop{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% 100%,0 100%);
  }
  .m-cta__inner{
    padding: 4.8rem 3rem 6.4rem 3rem;
  }
  .m-cta__content{
    max-width: 112rem;
    margin: 0 auto;	
  }
  .m-cta__picture01{
    width: 48rem;
    right: calc( 50% + 37.3rem );
    bottom: 3.3rem;
  }
  .m-cta__picture02{
    width: 54.5rem;
    left: calc( 50% + 35.2rem );
    top: -13.5rem;
  }
  .m-cta__text{
    font-size: 3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }
  .m-cta__text span{
    font-size: 3.8rem;
  }
  .m-cta__logo{
    max-width: 65.5rem;
    margin: 0 auto 3.7rem auto;
  }
  .m-cta__banner{
    transition: all .1s ease;
  }
  .m-cta__banner:first-child:hover{
    transform: translate(0.1rem,0.1rem);
  }
  .m-cta__banner:first-child{
    max-width: 56.2rem;
    width: 50%;
    margin: 0 auto 1rem auto;
  }
  .m-cta__banner:nth-child(2){
    max-width: 62.2rem;
    width: 55.5%;
    margin: 0 auto;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-cta{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
  }
  .-polygontopnone{
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
  }
  .-polygontop{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% 100%,0 100%);
  }
  .m-cta__inner{
    padding: 4.7rem 1.5rem 22.3rem 1.5rem;
  }
  .m-cta__picture{
    width: 100%;
    left: 0;
    bottom: 1rem;
  }
  .m-cta__text{
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
    white-space: nowrap;
  }
  .m-cta__text span{
    font-size: 1.9rem;
  }
  .m-cta__logo{
    max-width: 34.5rem;
    margin: 0 auto 2.7rem auto;
  }
  .m-cta__banners{
    position: relative;
    z-index: 2;
  }
  .m-cta__banner:first-child{
    width: 31.3rem;
    margin: 0 auto 1.6rem auto;
  }
  .m-cta__banner:nth-child(2){
    width: 32.5rem;
    margin: 0 auto;
  }
}

/* 導入実績
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-achievement{
    padding: 5rem 3rem 12rem 3rem;
  }
  .home-achievement__banners{
    margin: 0 -3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-achievement{
    padding: 6rem 0;
  }
}

/* 5つの理由
--------------------------------------------------*/
.home-reason{
  background: radial-gradient(179.07% 49.43% at 50% 5.4%, #D51314 0%, #A60B05 97.5%);
  position: relative;
  overflow: hidden;
}
.home-reason .m-title__japanese,
.home-reason .m-title__small{
  color: #fff;
}
.home-reason .m-title__english{
  color: rgba(255,255,255,0.15);
}
.home-reason__text01{
  color: #fff;
  font-weight: bold;
}
.home-reason__item{
  background-color: #fff;
}
.home-reason__number{
  color: #f5e7e7;
  font-family: var(--font-poppins);
  font-weight: bold; 
  position: absolute;
  left: 0;
}
.home-reason__title{
  font-weight: bold; 
}
.home-reason__text02{
  color: #333;
  font-weight: 500;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-reason{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% 100%,0 100%);
    padding: 9rem 3rem 11.5rem 3rem;
  }
  .home-reason__inner{
    max-width: 112rem;
    margin: 0 auto;
    position: relative;
  }
  .home-reason__text01{
    font-size: 2rem;
    line-height: 1.6;
    margin:2.5rem 0 4.4rem 22.7%;
  }
  .home-reason__picture{
    width: 20rem;
    position: absolute;
    top: 3.2rem;
    left: 4.4rem;
  }
  .home-reason__item{
    height: 20rem;
    border-radius: 0.6rem;
    padding: 3rem 3rem 3rem 13.7rem;
    margin:0 10.7% 2.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:0 2rem;
  }
  .home-reason__item:nth-child(even){
    margin-left: 10.7%;
    margin-right: 0;
  }
  .home-reason__number{
    font-size: 9rem;
  line-height: 1;
    top: -0.8rem;
  }
  .home-reason__texts{
    max-width: 64rem;
    width: 80%;
  }
  .home-reason__title{
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 1.9rem;
  }
  .home-reason__text02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .home-reason__image{
    max-width: 22.2rem;
    display: flex;
    justify-content: center;
  }
  .home-reason__item:first-child .home-reason__image img{
    max-width: 12.8rem;
    margin-right: 2.5rem;
  }
  .home-reason__item:nth-child(2) .home-reason__image img{
    max-width: 9.5rem;
    margin-right: 3.5rem;
  }
  .home-reason__item:nth-child(3) .home-reason__image img{
    max-width: 16.7rem;
  }
  .home-reason__item:nth-child(4) .home-reason__image img{
    max-width: 14.5rem;
    margin-right: 1.5rem;
  }
  .home-reason__item:nth-child(5) .home-reason__image img{
    max-width: 12.5rem;
    margin-right: 2.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-reason{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 5rem 1.5rem;
  }
  .home-reason__text01{
    font-size: 1.6rem;
    line-height: 1.6;
    margin:0.5rem 0 1.4rem 0;
  }
  .home-reason__item{
    border-radius: 0.6rem;
    padding: 7rem 2rem 2rem 2rem;
    margin-bottom: 0.5rem;
    position: relative;
  }
  .home-reason__number{
    font-size: 6rem;
    top: -2rem;
  }
  .home-reason__title{
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  .home-reason__text02{
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .home-reason__image{
    position: absolute;
  }
  .home-reason__item:first-child .home-reason__image{
    width: 8.2rem;
    top: 2.6rem;
    right: 2.4rem;
  }
  .home-reason__item:nth-child(2) .home-reason__image{
    width: 5.9rem;
    top: 2.4rem;
    right: 3.3rem;
  }
  .home-reason__item:nth-child(3) .home-reason__image{
    width: 11rem;
    top: 3rem;
    right: 1.4rem;
  }
  .home-reason__item:nth-child(4) .home-reason__image{
    width: 6.7rem;
    top: 1.7rem;
    right: 2.6rem;
  }
  .home-reason__item:nth-child(5) .home-reason__image{
    width: 7rem;
    top: 1.8rem;
    right: 2.3rem;
  }
}

/* 施工事例
--------------------------------------------------*/
.m-case{
  position: relative; 
  background-color: #FAE9E8; 
  overflow: hidden;
}
.m-case__items{
}
.m-case__item{
  background-color: #fff;
  border-radius: 1rem;
}
.m-case__item a{
  text-decoration: none;
}
.m-case__texts{
  position: relative;
}
.m-case__image img{
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
.m-case__number{
  color: #BB140D;
  font-family: var(--font-poppins);
  font-weight: bold;
  line-height: 1;
  position: absolute;
  right: 0;
}
.m-case__timecategory{
  color: #fff;
  font-weight: bold;
}
.m-case__time{
  color: #BB140D;
}
.m-case__category{ 
  font-weight: bold;
}
.m-case__category.-blue{
  background-color: #2AB1E6;  
}
.m-case__category.-orange{
  background-color: #EC9014;    
}
.m-case__category.-green{
  background-color: #42BD74;   
}
.m-case__category.-white{
  color: #BBB;
  border: 1px #BBB solid;
}
.m-case__text01{
  font-weight: bold;
}
.m-case__name{
  color: #666;
  font-weight: 500;
}
.m-case__text02{
  color: #444;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 500;
}
.m-case__controls{
  width: 100%;
  position: absolute;
  z-index: 10;
}
.m-case .slick-prev,
.m-case .slick-next{
  background: none;
  background-color:#333;
  position: absolute;
  z-index: 10;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  border-radius: 0.6rem;
  background-position: center center;
  border: 10px #333 solid;
}
.m-case .slick-prev{
  left: 0;
}
.m-case .slick-next{
  right: 0;
}
.m-case .slick-prev:before,
.m-case .slick-next:before{
  content: none;
}
.m-case .slick-track{
    display: flex !important;
}
.m-case .slick-slide{
    height: inherit !important;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-case{
    padding: 12rem 0 9.5rem 0;
  }
  .home .m-case{
    padding: 12rem 0 19.5rem 0;
  }
  .m-case__items .slick-list{
    overflow: visible;
  }
  .m-case__inner{
    max-width: 112rem;
    margin: 0 auto;  
  }
  .m-case__items{
    margin: 3.7rem calc( 50% - 50vw ) 0 0;
  }
  .m-case__item{
    width: 36rem!important;
    margin-right: 2.4rem;
  }
  .m-case__texts{
    padding: 1.4rem 2.6rem 2.8rem 2.6rem;
  }
  .m-case__image img{
    aspect-ratio: 9 / 5;
  }
  .m-case__number{
    font-size: 2rem; 
    top: -0.3rem;
    right: 0;
  }
  .m-case__number span{
    font-size: 3rem;  
  }
  .m-case__timecategory{
    font-size: 1.2rem;
  }
  .m-case__time{
    font-size: 1.2rem;  
  }
  .m-case__category{
    font-size: 1.2rem;  
    padding: 0 1rem 0.1rem 1rem;
    margin-left: 1rem;
  }
  .m-case__text01{
    font-size: 2rem;
    line-height: 1.4;
    margin: 1rem 0;
  }
  .m-case__name{
    font-size: 1.4rem;  
    margin-bottom: 1rem;
  }
  .m-case__text02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .m-case .m-button{
    margin-top: 6.6rem;
  }
  .m-case .slick-prev,
  .m-case .slick-next{
    top: 8.4rem;
  }
	.m-case .slick-prev,
  .m-case .slick-next{
    width: 5.8rem;
    height: 6rem;
	}
  .m-case__controls{
    top: 35%;
  }
	.m-case .slick-prev{
    left: 3rem;
	}
	.m-case .slick-next{
    right: 3rem;
	}
}

/* SP */
@media screen and (max-width: 767px){	
  .m-case{
    padding: 11rem 0 5rem 0;
  }
  .home .m-case{
    padding: 11rem 0 10rem 0;
  }
  .m-case__items{
    margin-top: 2rem;
  }
  .m-case__item{
    width: 29.5rem!important;
    margin:0 1.2rem;
  }
  .m-case__texts{
    padding: 1.2rem 1.6rem 2rem 1.6rem;
  }
  .m-case__image img{
    aspect-ratio: 295 / 164;
  }
  .m-case__number{
    top: 0;
    font-size: 1.4rem;
  }
  .m-case__number span{
    font-size: 2rem;  
  }
  .m-case__timecategory{
    font-size: 1.2rem;
  }
  .m-case__time{
    font-size: 1.2rem;  
  }
  .m-case__category{
    font-size: 1.2rem;  
    padding: 0 1rem 0.1rem 1rem;
    margin-left: 0.8rem;
  }
  .m-case__text01{
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0.4rem 0;
  }
  .m-case__name{
    font-size: 1.2rem;  
    margin-bottom: 0.4rem;
  }
  .m-case__text02{
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .m-case .m-button{
    margin-top: 4rem;
  }
  .m-case__controls{
    top: 35.5rem;
  }
	.m-case .slick-prev,
  .m-case .slick-next{
    width: 5.8rem;
    height: 6rem;
	}
  .m-case .slick-prev{
    background:#333 url("../images/shared/arrow-prev.svg") center center no-repeat;
  }
  .m-case .slick-next{
    background:#333 url("../images/shared/arrow-next.svg") center center no-repeat;
  }
	.m-case .slick-prev,
  .m-case .slick-next{
    background-size: 1rem auto;
    width: 3.7rem;
    height: 3.9rem;
    border-radius: 0.4rem;
	}
	.home-cover .slick-prev{
    left: 0;
	}
}

/* ボタン
--------------------------------------------------*/
.m-button{
  text-align: center;
  margin: 0 auto;
}
.m-button a{
  background: url("../images/shared/arrow-news.svg") right 3rem center no-repeat;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  border-radius: 4rem;
  text-decoration: none;
  display: inline-block;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-button a{
    background-size: 3.5rem auto;
    font-size: 1.8rem;
    padding: 2.8rem 9.3rem 2.8rem 6rem;
    transition: all .2s ease;
  }
  .m-button a:hover{
    background-position: right 2.5rem center;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-button a{
    background-position: right 1.75rem center;
    background-size: 2.5rem auto;
    font-weight: 1.4rem;
    padding: 1.4rem 5.7rem 1.4rem 4rem;
  }
}

/* パーテーション工事について
--------------------------------------------------*/
.home-about .m-title{
  position: relative;
}
.home-about__bg{
  position: absolute;
}
.home-block{
  background-color: #fff;
  border-radius: 1rem;
  position: relative;
}
.home-about__title{
  color: #BB140D;
  font-weight: bold;
  text-align: center;
}
.home-about__title span{
  background-color: #fff;
}
.home-about__text{
  color: #333;
  font-weight: bold;
  text-align: center;
}
.home-kinds__item{
  background-color: #BB140D;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.home-kinds__item:before{
  content: "";
  background-color: #FAE9E8;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.home-kinds__image{
  position: relative;
}
.home-kinds__image img{
  border-radius: 0.6rem;
}
.home-kinds__text01{
  font-weight: bold;
}
.home-kinds__text03{
  font-family: var(--font-poppins);
  line-height: 1;
  font-weight: bold;
}
.home-kinds__tax{
  display: block;
  font-weight: normal;
}
.home-kinds__taxnumber{
  font-weight: 500;
}
.home-kinds__text02{
  font-weight: 500;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-about{
    padding: 8rem 3rem 10rem 8rem;
  }
  .home-about .m-title{
    max-width: 140rem;
    padding: 0 3rem;
    margin: 0 auto;
    box-sizing: content-box;
  }
  .home-about__bg{
    width: min(20.1rem,17vw);
    bottom: min(-11.2rem,7.5vw);
    right: min(20rem,11.3vw);
  }
  .home-block{
    max-width: 140rem;
    border: 2px #BB140D solid;
    border-radius: 1rem;
    padding: 0 min(14.2rem,9.466vw) 8rem min(14.2rem,9.466vw);
    margin:7rem auto 0 auto;
  }
  .home-about__title{
    font-size: 3.2rem;
    margin: -2.5rem 0 3.6rem 0;
  }
  .home-about__title span{
    padding: 0 2.5rem;
  }
  .home-about .m-button{
    margin: 5rem 0 -12rem 0;
  }
  .home-about__text{
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 5.2rem;
  }
  .home-kinds{
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.9rem;
  }
  .home-kinds__texts{
    margin: 0 -3rem;
  }
  .home-kinds__item{
    width: calc( 50% - min(1.9rem,1.4vw) );
    padding: min(4rem,2.6vw) min(5.5rem,3.6vw) min(3.5rem,2.3vw) min(5.5rem,3.6vw);
  }
  .home-kinds__item:before{
    height: min(20.4rem,13.6vw);
  }
  .home-kinds__image{
    margin-bottom: min(3rem,2vw);
  }
  .home-kinds__text01{
    font-size: min(3rem,2vw);
    margin-bottom: min(1.1rem,0.73vw);
  }
  .home-kinds__text02{
    font-size: min(1.8rem,1.2vw);
    line-height: 1.6;
    margin-bottom: min(3.5rem,2.3vw);
  }
  .home-kinds__text03{
    font-size: min(7rem,4.66vw);
  }
  .home-kinds__unit{
    font-size: min(3rem,1.33vw);
  }
  .home-kinds__tax{
    font-size: min(2rem,1.33vw);
  }
  .home-kinds__taxunit{
    font-size: min(1.6rem,1.066vw);
  }
}

@media (min-width: 768px) and (max-width: 1300px) {
  .home-about__bg{
    right: 0;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-about{
    padding: 6rem 1.5rem;
  }
  .home-about__bg{
    display: none;
  }
  .home-about .m-button{
    margin-top: 2rem;
  }
  .home-block{
    border-radius: 0;
    border-top: 1px #BB140D solid;
    margin-top: 5rem;
  }
  .home-about__title{
    font-size: 2.2rem;
    line-height: 1.45;
    margin: -1.7rem 0 2.4rem 0;
  }
  .home-about__title span{
    padding: 0 1.2rem;
  }
  .home-about__text{
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 2rem;
  }
  .home-kinds{
    margin-bottom: 2rem;
  }
  .home-kinds__item{
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    margin-bottom: 3rem;
  }
  .home-kinds__item:last-child{
    margin-bottom: 0;
  }
  .home-kinds__item:before{
    height: 13.8rem;
  }
  .home-kinds__image{
    margin-bottom: 1.2rem;
  }
  .home-kinds__text01{
    font-size: 2.2rem;
    margin-bottom: 1.1rem;
  }
  .home-kinds__text02{
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 1.2rem;
  }
  .home-kinds__text03{
    font-size: 5.6rem;
    line-height: 1.1;
  }
  .home-kinds__unit{
    font-size: 2rem;
  }
  .home-kinds__tax{
    font-size: 1.6rem;
  }
}

/*--- おすすめ ---*/
.home-recommend{
  background-color: #ECF7E7;
  border: 1px #34890E solid;
  border-radius: 1rem;
  position: relative;
}
.home-recommend__icon{
  background: url("../images/home/about-icon.svg") center center no-repeat;
  background-size: 100% auto;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-recommend__text01{
  color: #17462F;
  font-weight: bold;
}
.home-recommend__text02{
  color: #34890E;
  font-weight: 900;
}
.home-recommend__text03{
  color: #444;
  font-weight: 500;
}
.home-recommend__item{
  background-color: #fff;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.home-recommend__item:before{
  content: "";
  background-color: #06611E;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.home-recommend__itemIn{
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
}
.home-recommend__image{
}
.home-recommend__image img{
  border-radius: 0.6rem;
}
.home-recommend__itemTexts{
  color: #fff;
}
.home-recommend__itemText01{
  color: #34890E;
  font-weight: 900;
}
.home-recommend__texts{
  color: #fff;
}
.home-recommend__number01{
  font-family: var(--font-poppins);
  font-weight: bold;
  line-height: 1;
}
.home-recommend__unit{
  font-weight: bold;
}
.home-recommend__tax{
  display: block;
  text-align: center;
  line-height: 1.1;
}
.home-recommend__number02{
  font-family: var(--font-poppins);  
  font-weight: 500;  
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-recommend{
    padding: 4.9rem 2.8rem 3rem 2.8rem;
  }
  .home-recommend__icon{
    width: min(12.8rem,11.5vw);
    height: min(12.8rem,11.5vw);
    font-size: min(2.2rem,1.8vw);
    left: 1.8rem;
    top: 1.7rem;
  }
  .home-recommend__text01{
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.3rem;
  }
  .home-recommend__text02{
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2.3rem;
  }
  .home-recommend__text03{
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2.4rem;
  }
  .home-recommend__items{
    display: flex;
    justify-content: space-between;
  }
  .home-recommend__item{
    width: calc( 50% - 1rem );
    padding: min(2rem,1.1vw);
  }
  .home-recommend__item:before{
    top: min(8rem,6vw);
  }
  .home-recommend__itemIn{
    gap:0 1.5rem;
  }
  .home-recommend__image{
    width: min(16rem,11vw);
  }
  .home-recommend__itemTexts{
    width: min(29rem,25vw);
  }
  .home-recommend__itemText01{
    font-size: min( 2.4rem,1.65vw);
    margin:1rem 0 3.4rem 0;
  }
  .home-recommend__number01{
    font-size: min( 6rem,4.42vw);
  }
  .home-recommend__unit{
    font-size: min( 2.6rem,1.72vw);
  }
  .home-recommend__tax{
    font-size: 1.6rem;
  }
  .home-recommend__number02{
    font-size: 2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-recommend{
    padding: 3rem 2rem 2rem 2rem;
  }
  .home-recommend__icon{
    width: 9.6rem;
    height: 9.6rem;
    font-size: 1.6rem;
    right: -0.7rem;
    top: -3rem;
  }
  .home-recommend__text01{
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .home-recommend__text02{
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
  .home-recommend__text03{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
  }
  .home-recommend__item{
    padding: 1.3rem 0 1.3rem 1.3rem;
  }
  .home-recommend__item:before{
    top: 5.3rem;
  }
  .home-recommend__itemIn{
    gap:0 1rem;
  }
  .home-recommend__image{
    width: 10rem;
  }
  .home-recommend__itemTexts{
    width: calc( 100% - 11rem );
  }
  .home-recommend__itemText01{
    font-size: 1.5rem;
    margin:0.5rem 0 2rem 0;
  }
  .home-recommend__number01{
    font-size: 3.8rem;
  }
  .home-recommend__unit{
    font-size: 1.6rem;
  }
  .home-recommend__tax{
    font-size: 1rem;
  }
  .home-recommend__number02{
    font-size: 1.4rem;
  }
}

/*--- パーテーション職人のPRS バナー ---*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-about__banner:hover{
    transform: translate(0.1rem,0.1rem);
  }
  .m-prsbanner{
    max-width: 112rem;
    margin: 8rem auto;
    padding: 3rem;
    box-sizing: content-box;
  }
  .m-prsbanner a{
    width: 100%;
    background: url("../images/home/partiton-banner.png") center center no-repeat;
    background-size: 100% auto;
    aspect-ratio: 112 / 21.1;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: all .1s ease;
    text-align: center;
    padding-top: min(2.4rem,1.6vw);
    box-sizing: border-box;
    position: relative;
  }
  .m-prsbanner__text01{
    font-size: min(4.4rem,2.933vw);
    font-weight: 900;
    margin-bottom: 0.3rem;
  }
  .m-prsbanner__text01 span{
    font-family: var(--font-poppins);
    font-style: italic;
    font-weight: 700;
  }
  .m-prsbanner__text02{
    font-family: var(--font-poppins);
    font-size: min(2.4rem,1.6vw);
    font-weight: 600;
    font-style: italic;
    letter-spacing: .5em;
    margin-bottom: min(4rem,2.66vw);
  }
  .m-prsbanner__text03{
    font-size: min(2.4rem,1.7vw);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: min(1.9rem,1.266vw);
    padding-right: min(5.5rem,3.66vw);
  }
  .m-prsbanner__text03:after{
    content: "";
    width: min(3.7rem,2.46vw);
    height: min(1.8rem,1.2vw);
    background:url("../images/home/arrow-prs.svg") right center no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.5rem;
    display: inline-block;
    transition: all .2s ease;
  }
  a:hover .m-prsbanner__text03:after{
    right: 0;
  }
  .m-prsbanner__text{
    font-size: min(2.2rem,1.466vw);
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .m-prsbanner a{
    border-radius: 1rem;
    overflow: hidden;
    display: block;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-about .m-prsbanner{
    margin-left: 0;
  }
  .m-prsbanner a{
    width: 100%;
    background: url("../images/home/partiton-banner-sp.png") center center no-repeat;
    background-size: 100% auto;
    width: 34.5rem;
    height: 18.5rem;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: all .1s ease;
    text-align: center;
    padding-top: min(2.4rem,1.6vw);
    box-sizing: border-box;
    position: relative;
    padding: 1.3rem 2.8rem;
  }
  .m-prsbanner{
    margin: 6rem 1.5rem;
  }
  .m-prsbanner__text01{
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    text-align: right;
  }
  .m-prsbanner__text01 span{
    font-family: var(--font-poppins);
    font-size: 3rem;
    font-weight: 700;
  }
  .m-prsbanner__text02{
    font-family: var(--font-poppins);
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .5em;
    margin-bottom: min(4rem,2.66vw);
    text-align: right;
  }
  .m-prsbanner__text03{
    font-size: 1.6;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    right: 2.7rem;
    bottom: 1.4rem;
    padding-right: 3.5rem;
  }
  .m-prsbanner__text03:after{
    content: "";
    width: 2.7rem;
    height: 1.3rem;
    background:url("../images/home/arrow-prs.svg") right center no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.5rem;
    display: inline-block;
    transition: all .3s ease;
  }
  .m-prsbanner__text{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  .m-prsbanner a{
    border-radius: 0.6rem;
    overflow: hidden;
    display: block;
  }
}

/*--- 付随工事 ---*/
.home-work__item{
  background-color: #FAE9E8;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 2rem;
}
.home-work__category{
  background-color: #BB140D;
  color: #fff;
  display: inline-block;
  position: relative;
  font-weight: bold;
  border-radius: 0 0.6rem 0.6rem 0;
}
.home-work__button{
  text-align: center;
  margin:auto auto 0 auto;
}
.home-work__button a{
  background: url("../images/shared/arrow-red.svg") right 1.7rem center no-repeat;
  background-size: 2rem auto;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  border-radius: 4rem;
  display: inline-block;
  text-decoration: none;
}
.home-work__text{
  color: #444;
  font-weight: 500;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-work{
    display: flex;
    flex-wrap: wrap;
    gap:3.4rem 3.4rem;
  }
  .home-work .m-button{
    margin-top: -15rem;
  }
  .home-work__item{
    width: calc( ( 100% / 3 ) - 2.3rem );
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home-work__category{
    top: -2.6rem;
    padding: 0.8rem 2.4rem;
    font-size: 2rem;
  }
  .home-work__text{
    font-size: 1.6rem;
    line-height: 1.6;
    margin: -1.5rem 2.4rem 0.8rem 2.4rem;
  }
  .home-work__button a{
    font-size: 1.4rem;
    padding: 1.2rem 5.2rem 1.2rem 4rem;
    transition: all .2s ease;
  }
  .home-work__button a:hover{
    background-position: right 1.2rem center;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-work__item{
    margin-bottom: 2rem;
  }
  .home-work__category{
    top: -1.6rem;
    padding: 0.2rem 2.4rem 0.3rem 2.4rem;
    font-size: 1.6rem;
  }
  .home-work__text{
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0 2.4rem 0.8rem 2.4rem;
  }
  .home-work__button a{
    font-size: 1.4rem;
    padding: 1.2rem 5.2rem 1.2rem 4rem;
  }
}

/* 対応エリア
--------------------------------------------------*/
.m-area__text02{
  color: #333;
}
.m-area__text02:last-child{
  margin-bottom: 0;
}
.m-area__inner{
  border-radius: 1rem;
  overflow: hidden;
}
.m-area__text01{
  color: #BB140D;
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-area{
    padding: 0 3rem;
  }
  .m-area__inner{
    background:#F3F3F3 url("../images/shared/map.png") right top no-repeat;
    background-size: auto 100%;
    max-width: 112rem;
    padding: 6rem 8rem;
    margin: 0 auto;
  }
  .m-area__text01{
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
  }
  .m-area__text02{
    font-size: 2.2rem;  
    font-weight: 500;
    margin-bottom: 4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-area__inner{
    background:#F3F3F3 url("../images/shared/map-sp.png") right bottom no-repeat;
    background-size: 100% auto;
    padding: 3rem 3rem 13rem 3rem;
    margin:0 1.5rem 0 1.5rem;
  }
  .m-area__text01{
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  .m-area__text02{
    font-size: 1.8rem;  
    font-weight: 500;
    margin-bottom: 3rem;
  }
}

/* お知らせ
--------------------------------------------------*/
.home-news__list li{
  border-bottom: 1px #D5D5D5 solid;
}
.home-news__list a{
  text-decoration: none;
}
.home-news__time{
  color: #BB140D;
  font-weight: bold;
}
.home-news__text{
  width: calc( 100% - 8rem );
  color: #444;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-news{
    max-width: 90rem;
    padding: 10rem 3rem 8rem 3rem;
    margin: 0 auto;
  }
  .home-news .m-title__japanese{
    font-size: 3rem;
  }
  .home-news .m-button a{
    padding: 2rem 9.3rem 2rem 6rem;
  }
  .home-news__list{
    margin: 0 0 2rem 0;
  }
  .home-news__list a,
  .home-news__list > li > span{
    display: flex;
    align-items: center;
    padding: 2.4rem 6.9rem 2.4rem 2.4rem;
    transition: all .3s ease;
  }
  .home-news__list a{
    background: url("../images/shared/arrow-red.svg") right 2.4rem bottom 3.2rem no-repeat;
    background-size: 2.1rem auto;
  }
  .home-news__list a:hover{
    background-position: right 1.9rem bottom 3.2rem;
  }
  .home-news__time{
    width: 9rem;
    font-size: 1.4rem;
  }
  .home-news__text{
    width: calc( 100% - 8rem );
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-news{
    padding: 3rem 1.5rem 2rem 1.5rem;
  }
  .home-news .m-title__japanese{
    font-size: 2.6rem;
  }
  .home-news .m-button a{
/*    padding: 2rem 9.3rem 2rem 6rem;*/
  }
  .home-news__list{
    margin: 0 0 2rem 0;
  }
  .home-news__list a{
    background: url("../images/shared/arrow-red.svg") right 1.5rem bottom 1.6rem no-repeat;
    background-size: 2.1rem auto;
    padding: 1.8rem 3.5rem 1.8rem 1.5rem;
    display: block;
  }
  .home-news__time{
    font-size: 1.2rem;
    display: block;
  }
  .home-news__text{
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* オフィスサスティナブルバナー
--------------------------------------------------*/
.m-officeBanner__inner{
  text-decoration: none;
  border: 2px #090925 solid;
  overflow: hidden;
}
.m-officeBanner__text{
  color: #fff;
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-officeBanner{
    padding: 0 3rem;
    margin-bottom: 10rem;
    transition: all .1s ease;
  }
  .m-officeBanner:hover{
    transform: translate(0.1rem,0.1rem);
  }
  .m-officeBanner__inner{
    max-width: 112rem;
    margin: 0 auto;
    box-sizing: content-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
  }
  .m-officeBanner__logo{
    width: 26%;
    order: 2;
    text-align: center;
  }
  .m-officeBanner__logo img{
    width: 74.6%;
  }
  .m-officeBanner__text{
    width:74%;
    background: url("../images/home/office-bg.jpg") left top no-repeat;
    order: 1;
    font-size: min(2rem,1.8vw);
    line-height: 1.8;
    padding: min(3.4rem,2.26vw);
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-officeBanner{
    margin: 0 1.5rem 6rem 1.5rem;
    display: block;
  }
  .m-officeBanner__inner{
    border-radius: 0.6rem;
    display: block;
  }
  .m-officeBanner__logo{
    background: url("../images/home/office-bg-sp.jpg") center top no-repeat;
    background-size: 100% auto;
    text-align: center;
  }
  .m-officeBanner__logo img{
    width: 17.1rem;
    margin: 1.5rem auto;
  }
  .m-officeBanner__text{
    background: url("../images/shared/icon-blank.svg") right 1.5rem bottom 1.5rem no-repeat;
    background-size: 1.8rem auto;
    color: #000;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: normal;
    padding: 1.2rem 2rem;
  }
}

/* ご依頼の流れ
--------------------------------------------------*/
.home-flow{
  background-color: #FAE9E8;
  position: relative;
  overflow: hidden;
}
.home-flow__text{
  color: #333;
  font-weight: bold;
}
.home-flowItem{
  background-color: #fff;
  position: relative;
}
.home-flowItem:after{
  content: "";
  position: absolute;
}
.home-flowItem:last-child:after{
  content: none;
}
.home-flowItem__title{
  font-weight: bold;
}
.home-flowItem__text{
  color: #444;
  font-weight: 500;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-flow{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% 100%,0 100%);
    padding: 6.7rem 3rem 11.5rem 3rem;
  }
  .home-flow__inner{
    max-width: 112rem;
    margin: 0 auto;
  }
  .home-flow__text{
    font-size: 2rem;
    text-align: center;
    margin:3rem 0 5.8rem 0;
  }
  .home-flowItems{
    display: flex;
    justify-content: space-between;
  }
  .home-flowItem{
    width: calc( 25% - 1.995rem );
    padding: 4rem 2.4rem 3rem 2.4rem;
    position: relative;
    border-radius: 1rem;
  }
  .home-flowItem:after{
    background: url("../images/shared/arrow-flow.svg") center center no-repeat;
    background-size: 100% auto;
    width: 1.8rem;
    height: 3.9rem;
    top: 50%;
    transform: translateY(-50%);
    right: -2.5rem;
  }
  .home-flowItem__icon{
    width: 7.7rem;
    margin: 0 auto 1.6rem auto;
  }
  .home-flowItem__title{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.9rem;
  }
  .home-flowItem__text{
    font-size: 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-flow{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% 100%,0 100%);
    padding: 5rem 1.5rem;
  }
  .home-flow__text{
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
  }
  .home-flowItem{
    padding: 1.6rem 2rem;
    position: relative;
    border-radius: 0.6rem;
    margin-bottom: 3.1rem;
  }
  .home-flowItem:last-child{
    margin-bottom: 0;
  }
  .home-flowItem:after{
    background: url("../images/shared/arrow-flow-sp.svg") center center no-repeat;
    background-size: 100% auto;
    width: 2.9rem;
    height: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.2rem;
  }
  .home-flowItem__icon{
    width: 3.9rem;
    position: absolute;
    top: 1.6rem;
    left: 2rem;
  }
  .home-flowItem__title{
    font-size: 1.8rem;
    font-weight: bold;
    margin:0.5rem 0 0.5rem 4.5rem;
  }
  .home-flowItem__text{
    font-size: 1.4rem;
    line-height: 1.8;
  }
}


/*==================================================

パーテーションについて

==================================================*/

/* 6つのメリット
--------------------------------------------------*/
.partition-merit{
  background-color: #FAE9E8;
  position: relative;
  overflow: hidden;
}
.partition-merit__item{
  background-color: #fff;
}
.partition-merit__number{
  color: #BB140D;
  font-family: var(--font-poppins);
  font-weight: bold;
}
.partition-merit__text01{
  font-weight: bold;
}
.partition-merit__text02{
  color: #333;
  font-weight: 500;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .partition-merit{
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 17rem 3rem 12.5rem 3rem;
  }
  .partition-merit__inner{
    max-width: 105rem;
    margin: 0 auto;
  }
  .partition-merit__items{
    display: flex;
    flex-wrap: wrap;
    gap:3rem 3rem;
    margin-top: 4rem;
  }
  .partition-merit__item{
    width: calc( ( 100% / 3 ) - 2rem );
    border-radius: 1rem;
    padding: 3rem;
    position: relative;
  }
  .partition-merit__number{
    font-size: 4rem;
    text-align: center;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .partition-merit__icon{
    max-width: 20.4rem;
    margin: 0 auto 1.4rem auto;
  }
  .partition-merit__text01{
    font-size: min(2.4rem,2.6vw);
    text-align: center;
    margin-bottom: 1rem;
  }
  .partition-merit__text02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .partition-merit__items{
    gap:3rem 2rem;
    margin-top: 4rem;
  }
  .partition-merit__item{
    padding: 2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .partition-merit{
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 10rem 1.5rem 5rem 1.5rem;
  }
  .partition-merit__items{
    margin-top: 1.4rem;
  }
  .partition-merit__item{
    border-radius: 0.6rem;
    padding: 1.6rem 2rem;
    margin-bottom: 1.2rem;
  }
  .partition-merit__number{
    font-size: 2.1rem;
    margin-right: 1rem;
  }
  .partition-merit__icon{
    max-width: 14.9rem;
    margin: 0 auto 0.6rem auto;
  }
  .partition-merit__text01{
    font-size:1.8rem;
    margin-bottom: 0.4rem;
  }
  .partition-merit__text02{
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/* 材質について
--------------------------------------------------*/
.partition-material .m-title__english{
  color:#FAE9E8;
}
.partition-material__heading{
  color:#BB140D;
  font-weight: bold;
  text-align: center;
}
.partition-text{
  color: #333;
  font-weight: bold;
}
.partition-material__images{
  display: flex;
  justify-content: space-between;
}
.partition-material__image{
  display: flex;
  flex-direction: column;
}
.partition-material__imageTitle{
  background-color: #BB140D;
  color: #fff;
  font-weight: bold;
  text-align: center;
  flex: 1;
}
.partition-material__title{
  background-color: #fff;
  border: 3px #BB140D solid;
  color: #BB140D;
  font-weight: bold;
}
.partition-material__texts{
  display: flex;
  justify-content: space-between; 
}
.partition-material__text{
  background-color: #fff;
  color: #444;
  box-sizing: border-box;
}
.partition-material__text li{
  position: relative;
  font-weight: 500;
  padding-left: 1em;
}
.partition-material__text li:before{
  content:"■";
  position: absolute;
  left: 0;
}
.partition-material__text01,
.partition-material__text02{
  text-align: center;
}
.partition-material__price01,
.partition-material__price02{
  font-family: var(--font-poppins);
  font-weight: bold;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .partition-material{  
    max-width: 112rem;
    margin: 0 auto;
    padding: 10rem 3rem 8rem 3rem;
    box-sizing: content-box;
  }
  .partition-material .m-title{  
    margin-bottom: 2rem;
  }
  .partition-material__block{  
    background-color: #FFF4F3;
    border-radius: 1rem;
    padding: 4rem 5rem;
    margin-bottom: 6rem;
  }
  .partition-material__heading{
    font-size: 3rem;
    border-bottom: 1px #BB140D solid;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
  .partition-text{
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
    margin: -1.2rem 0 3.2rem 0;
  }
  .partition-material__image{
    width: calc( 50% - 2rem );
  }
  .partition-material__imageTitle{
    font-size: 3rem;
    border-radius: 1rem 1rem 0 0;
    padding: 1.7rem 0.5rem;
  }
  .partition-material__wrapper{
    position: relative;
  }
  .partition-material__title{
    width: 14rem;
    height: 7rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 3px #BB140D solid;
    border-radius: 1.5rem;
    font-size: 2rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 0.5rem;
    box-sizing: border-box;
  }
  .partition-material__title span{
    font-size: 1.6rem;
    display: block;
  }
  .partition-material__texts{
    margin-bottom: 1rem;
  }
  .partition-material__text{
    width: calc( 50% - 2rem );
    padding: 3rem 8.9rem 2.5rem 3.7rem;
  }
  .partition-material__text:last-child{
    padding: 3rem 3rem 2.5rem 9.5rem;
  }
  .partition-material__text li{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .partition-material__text li:before{
    top: 1.3em;
    font-size: 0.7rem;
  }
  .partition-material__text01{
    font-size: 1.6rem;
  }
  .partition-material__text02{
    font-size: 1.4rem;
  }
  .partition-material__price01{
    font-size: 2.4rem;
  }
  .partition-material__price02{
    font-size: 1.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .partition-material{  
    background-color: #FFF4F3;
    padding: 11rem 1.5rem;
  }
  .partition-material .m-title{  
    margin-bottom: 3rem;
  }
  .partition-material__block{ 
    margin-bottom: 6rem;
  }
  .partition-material__block:last-child{ 
    margin-bottom: 0;
  }
  .partition-material__heading{
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
  }
  .partition-material__headingTop{
    width: 100%;
    display: inline-block;
  }
  .partition-material__headingTop>span{
    background-color: #FFF4F3;
    padding: 0 1.2rem;
    position: relative;
    display: inline-block;
    z-index: 3;
  }
  .partition-material__headingTop:before{
    content: "";
    height: 1px;
    background-color: #BB140D;
    position: absolute;
    top: 1.4rem;
    left: 0;
    right: 0;
    display: block;
  }
  .partition-material__headingBottom{
    font-size: 1.6rem;
    display: block;
  }
  .partition-text{
    font-size: 1.6rem;
    line-height: 1.8;
    margin: -1.5rem 0 2rem 0;
  }
  .partition-material__image{
    width: 16.5rem;
  }
  .partition-material__imageTitle{
    font-size: 1.4rem;
    border-radius: 0.6rem 0.6rem 0 0;
    padding: 1rem 0;
  }
   .-accordion .partition-material__textswrapper{
    display: none;
  }
  .partition-material__title{
    border: 2px #BB140D solid;
    font-size: 1.4rem;
    padding: 0.9rem 1.3rem;
    box-sizing: border-box;
    position: relative;
  }
  .-accordion .partition-material__title{
    margin-bottom: 0.1rem;
  }
  .-accordion .partition-material__title:after{
    content: "";
    width: 1.5rem;
    height: 4rem;
    background: url("../images/partition/arrow.svg") center center no-repeat;
    background-size: 1.5rem auto;
    display: block;
    transition: all .3s ease;
    position: absolute;
    top: 0;
    right: 1.9rem;
  }
  .-accordion.-open .partition-material__title:after{
    transform: rotate(180deg);
  }
  .partition-material__text{
    width: 16.5rem;
    padding: 0.8rem 1rem 2rem 1rem;
  }
  .-accordion.-open .partition-material__text{
    margin-top: -0.1rem;
  }
  .partition-material__text li{
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  .partition-material__text li:before{
    top: 1em;
    font-size: 0.5rem;
  }
  .partition-material__text01{
    font-size: 1.2rem;
  }
  .partition-material__text02{
    font-size: 1rem;
  }
  .partition-material__price01{
    font-size: 2rem;
  }
  .partition-material__price02{
    font-size: 1.4rem;
  }
}

/*==================================================

パーテーション 建てたい

==================================================*/

/* モーダル
--------------------------------------------------*/

img.slbImage{
  max-height: none!important;
  border-radius: 0.8rem;
  border: 1rem #fff solid;
  padding: 0!important;
}
.modal-rank .slbImage{
  border: none;
}
.slbCloseBtn{
  background: url("../images/partition/build/close.svg") 0 0 no-repeat!important;
  background-size: 100% auto!important;
  top: -8rem!important;
  text-indent: -9999px;
}
.slbArrow:before{
  content: none!important;
}
.slbArrow.prev{
  background:#333 url("../images/shared/arrow-prev.svg") center no-repeat!important;
  border-radius: 0 0.6rem 0.6rem 0;
}
.slbArrow.next{
  background:#333 url("../images/shared/arrow-next.svg") center no-repeat!important;
  border-radius: 0.6rem 0 0 0.6rem;
}
.slbArrow{
  opacity: 1!important;
  cursor: pointer;
}

.slbCloseBtn2{
  display:none;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .slbCloseBtn{
    width: 5.8rem!important;
    height: 6rem!important;
    right: 2rem!important;
  }
  .slbArrow:hover{
    opacity: 0.7!important;
  }
  .slbArrow{
    width: 5.8rem!important;
    height: 6rem!important;
    transition: all .3s ease;
  }
  .slbImage{
    width: 100%!important;
    max-width: 88rem!important;
  }
  .modal-rank .slbImage{
    max-width: 112rem!important;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .slbContentOuter{
    padding: 2rem!important;
  }
  .slbCloseBtn{
    width: 3.6rem!important;
    height: 3.6rem!important;
    top: -4.6rem!important;
    right: 2rem!important;
  }
  .slbArrow{
    width: 3.7rem!important;
    height: 3.9rem!important;
    margin-top: -1.5em!important;
  }
  .slbArrow.prev,
  .slbArrow.next{
    background-size: 0.8rem auto!important;
  }
  .modal-rank-sp .slbContentOuter
  {
    margin: 6rem 0 0 0;
  }

  .modal-rank-sp .slbCloseBtn.slbCloseBtn2{
    display:block;
    position:absolute;
    top:auto!important;
    left:0!important;
    bottom:0!important;
    width:100%!important;
    height:10rem!important;
    opacity:0;
  }
}

/* 共通
--------------------------------------------------*/
.partition-banner{
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.partition-banner li{
  filter: drop-shadow(4px 4px 30px rgba(101, 1, 1, 0.12));
}
.build-intro{
  background-color: #FFF4E7;
}
.relocate-intro{
  background-color: #E9F7EE;
}
.remove-intro{
  background-color: #E4F6FD;
}
.build-intro .partition-intro__title{
  color: #EC9014;
}
.relocate-intro .partition-intro__title{
  color: #0C9756;
}
.remove-intro .partition-intro__title{
  color: #109BD2;
}
.partition-intro__title{
  font-weight: 900;
  text-align: center;
}
section:first-child .partition-intro__title{
  margin-top: 0;
}
.partition-intro__title span{
  color: #666;
  font-weight: bold;
  display: block;
}
.partition-intro__text01{
  color: #333;
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .build-comparison .partition-intro__title,
  .relocate-comparison .partition-intro__title,
  .remove-comparison .partition-intro__title{
    margin-bottom: 4rem;
  }
  .partition-banner{
    max-width: 112rem;
    margin: 5rem auto;
    padding: 0 3rem;
    gap:0 2.6rem;
  }
  .partition-banner li{
    width: calc( ( 100% / 3 ) - 1.73rem );
  }
  .partition-banner li a{
    transition: all .1s ease;
    display: block;
  }
  .partition-banner li a:hover{
    transform: translate(0.1rem,0.1rem);
  }
  .build-intro,
  .relocate-intro,
  .remove-intro{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 8.5rem 3rem 12rem 2rem;
  }
  .build-intro__inner,
  .relocate-intro__inner,
  .remove-intro__inner{
    max-width: 112rem;
    margin: 0 auto;
  }
  .partition-intro__title{
    font-size: 4rem;
    margin:10rem 0 2rem 0;
  }
  .partition-intro__title span{
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;  
  }
  .partition-intro__text01{
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 6rem;
    text-align: center;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .build-comparison .partition-intro__title,
  .relocate-comparison .partition-intro__title,
  .remove-comparison .partition-intro__title{
    margin-bottom: 3rem;
  }
  .partition-banner{
    padding: 1.5rem 2rem;
    gap:0 0.75rem;
  }
  .partition-banner li{
    width: calc( ( 100% / 3 ) - 0.5rem );
  }
  .build-intro,
  .relocate-intro,
  .remove-intro{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 7rem 1.5rem;
  }
  .build-intro__inner,
  .relocate-intro__inner,
  .remove-intro__inner{
  }
  .partition-intro__title{
    font-size: 2.6rem;
    line-height: 1.2;
    margin:6rem 0 1.6rem 0;
  }
  .partition-intro__title span{
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;  
  }
  .partition-intro__text01{
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
  }
}

/* 共通
--------------------------------------------------*/
.build-price__price01,
.build-price__price02,
.relocate-price__price01,
.relocate-price__price02,
.remove-price__price01,
.remove-price__price02{
  font-family: var(--font-poppins);
  line-height: 1.15;
  font-weight: bold;
}
.build-price__tax,
.relocate-price__tax,
.remove-price__tax{
  display: block;
  font-weight: 600;
}
.partition-note{
  color: #444;
  font-weight: 500;
}
.partition-note__link{
}
.partition-note__link a:before{
  content: "";
  background: url("../images/partition/arrow-red.svg") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.partition-note__link a{
  position: relative;
  text-decoration: none;
  display: block;
  font-weight: bold;
}
.build-price__content,
.build-comparison__content,
.relocate-price__content,
.relocate-comparison__content,
.remove-price__content,
.remove-comparison__content{
  display: grid;  
  justify-content: space-between;
  grid-template-columns:1fr 1fr;
  grid-auto-rows: auto auto;
}
.build-price__content,
.build-comparison__content{
  grid-template-columns:1fr 1fr 1fr 1fr;
}
.remove-price__content{
  position: relative;
  grid-template-columns:1fr;
}
.remove-price__content{
  grid-template-columns:1fr;
}
.partition-arrow{
  position: absolute;
}
.relocate-price__content{
  grid-template-columns:1fr 1fr;
}
.relocate-comparison__content{
  grid-template-columns:1fr 1fr 1fr;
}
.remove-comparison__content{
  grid-template-columns:1fr 1fr 1fr 1fr;
}
.partition-border{
  height: 1px;
  background-color: #000;
	grid-column: 1 / -1;
}
.build-price__texts,
.build-comparison__texts,
.relocate-price__texts,
.relocate-comparison__texts,
.remove-price__texts,
.remove-comparison__texts{
  color: #444;
  display: contents;
}
.build-price__title,
.build-comparison__title,
.relocate-price__title,
.relocate-comparison__title,
.remove-price__title,
.remove-comparison__title{
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.build-price__title,
.build-comparison__title{
  background-color: #EC8F14;
}
.relocate-price__title,
.relocate-comparison__title{
  background-color: #42BD74;
}
.remove-price__title,
.remove-comparison__title{
  background-color: #2AB1E6;
}
.build-price__title span,
.relocate-price__title span,
.remove-price__title span,
.build-comparison__title span,
.relocate-comparison__title span,
.remove-comparison__title span{
  display: block;
}
.build-price__text,
.build-comparison__text,
.relocate-price__text,
.relocate-comparison__text,
.remove-price__text,
.remove-comparison__text{
  background-color: #fff;
  font-weight: 500;
}
.build-price__text,
.relocate-price__text,
.remove-price__text{
  text-align: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .build-comparison__content{
    grid-template-columns:20rem 28.5% 1fr 1fr;
  }
  .build-comparison__text,
  .relocate-comparison__text,
  .remove-comparison__text{
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 1.6rem 1.6rem 1.6rem 7.8rem;
    padding: min(1.6rem,1.7vw) min(1.6rem,1.7vw) min(1.6rem,1.7vw) min(7.8rem,5.5vw);
    display: flex;
    align-items: center;
  }
  .build-comparison__text:before,
  .relocate-comparison__text:before,
  .remove-comparison__text:before{
    width: 5.2rem;
    height: 5.2rem;
    left: 1.6rem;
    width: min(5.2rem,3.7vw);
    height: min(5.2rem,3.7vw);
    left: min(1.6rem,1.7vw);
    top: 50%;
    transform: translateY(-50%);
  }
  .build-price__content,
  .build-comparison__content,
  .relocate-price__content,
  .relocate-comparison__content,
  .remove-price__content,
  .remove-comparison__content{
    grid-gap:0.8rem 0.8rem;
  }
  .build-price__title,
  .build-comparison__title,
  .relocate-price__title,
  .relocate-comparison__title,
  .remove-price__title,
  .remove-comparison__title{
    border-radius: 0.6rem 0.6rem 0 0;
    font-size: 2rem;
    line-height: 1.2;
    padding: 1.2rem 0rem;
  }
  .build-price__title span,
  .relocate-price__title span,
  .remove-price__title span,
  .build-comparison__title span,
  .relocate-comparison__title span,
  .remove-comparison__title span{
    font-size: 1.4rem;
  }
  .remove-price__title span{
    font-size: 2rem;
    display: inline;
  }
  .build-price__text,
  .relocate-price__text,
  .remove-price__text{
    font-size: 2.2rem;
    padding: 1.3rem 1.6rem;
  }
  .partition-note{
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap:1rem 1rem;
  }
  .partition-note__text{
    max-width: 108rem;
  }
  .partition-note__link{
    max-width: 37rem;
  }
  .partition-note__link a{
    max-width: 37rem;
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
    box-sizing: border-box;
    padding-right: 5.5rem;
  }
  .partition-note__link a:before{
    width: 3.3rem;
    height: 1.6rem;
    transition: all .2s ease;
  }
  .partition-note__link a:hover:before{
    right: -0.3rem;
  }
  .partition-arrow{
    width: 17.6rem;
    top: -7.5rem;
    right: 1rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .build-comparison__content{
    grid-template-columns:12rem 20rem 1fr 1fr;
  }
  .partition-wrapper{
    display: block;
    overflow-x: scroll;
  }
  .build-comparison .partition-wrapper,
  .relocate-comparison .partition-wrapper,
  .remove-comparison .partition-wrapper{
    margin:0 -2rem;
    padding:0 2rem;
  }
  .build-price__content,
  .relocate-price__content,
  .remove-price__content{
    width: 100%;
  }
  .relocate-comparison__content {
    width: 58rem;
  }
  .build-price__content,
  .build-comparison__content,
  .relocate-price__content,
  .relocate-comparison__content,
  .remove-price__content,
  .remove-comparison__content{
    grid-gap:0.6rem 0.6rem;
  }
  .build-price__title,
  .build-comparison__title,
  .relocate-price__title,
  .relocate-comparison__title,
  .remove-price__title,
  .remove-comparison__title{
    border-radius: 0.5rem 0.5rem 0 0;
    font-size: 1.2rem;
    line-height: 1.2;
    padding: 0.9rem 0.7rem;
  }
  .build-price__text,
  .build-comparison__text,
  .relocate-price__text,
  .relocate-comparison__text,
  .remove-price__text,
  .remove-comparison__text{
    font-size: 1.2rem;
    padding: 1rem;
  }
  .build-comparison__text,
  .relocate-comparison__text,
  .remove-comparison__text{
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 5.4rem 1.2rem 1.2rem 1.2rem;
  }
  .build-comparison__text:before,
  .relocate-comparison__text:before,
  .remove-comparison__text:before{
    width: 3.8rem;
    height: 3.8rem;
    left: 50%;
    top: 1.2rem;
    transform: translateX(-50%);
  }
  .relocate-price__price01{
    font-size: 2.6rem;
  }
  .relocate-price__price02{
    font-size: 1.2rem;
  }
  .relocate-price__tax{
    font-size: 1rem;
  }
  .partition-note{
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.8rem;
  }
  .partition-note__link a{
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    padding-right: 4.1rem;
    text-align: right;
    margin-top: 1.7rem;
  }
  .partition-note__link a:before{
    width: 2.6rem;
    height: 1.3rem;
  }
  .partition-arrow{
    width: 6rem;
    top: -1rem;
    left: -5.4rem;
  }
}
/* オフィスに最適な空間ソリューションを提供
--------------------------------------------------*/
.build-price__sheets,
.build-price__textsWrapper{
  display: contents;
}
.build-price__sheetsTitle{
  color: #EC9014;
  font-weight: bold;
}
.build-price__sheet{
  background-color: #EC8F14;
  border-radius: 0.6rem 0.6rem 0 0;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position:sticky;
  left:2rem;
  z-index:2;
}
.build-price__sheet span{
  vertical-align: middle;
}
.build-price__number{
  font-family: var(--font-poppins);
}
.build-price__category{
  background: linear-gradient(321.87deg, #BBBBBB 4.98%, #D5D5D5 46.11%, #BBBBBB 86.83%);
  border-radius: 0.6rem 0 0 0.6rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.build-price__subtitle{
  background-color: #fff;
  line-height: 1.1;
  font-weight: bold;
}
.build-price__text{  
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.build-price__tax{
  font-weight: 500;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .build-price__contentWrapper,
  .build-comparison__contentWrapper,
  .remove-price__contentWrapper{
    display: block;
  }
  .build-price__content,
  .remove-price__content{
    overflow-x: auto;
    margin: 0 -3rem;
    padding: 0 3rem;
  }
  .build-price__content02{
    margin-top: 6rem;
  }
  .build-price__sheetsTitle{
    font-size: 2.2rem;
    display: flex;
    align-items: flex-end;
  }
  .build-price__sheet{
    width: 25.5rem;
    font-size: 1.4rem;
    padding: 0.3rem 0.5rem 0 0.5rem;
  }
  .build-price__numbers:first-child{
    margin-right: 1rem;
  }
  .build-price__number{
    font-size: 3.6rem;
    margin-right: 0.2rem;
  }
  .build-price__unit{
    font-size: 2rem;
  }
  .build-price__category{
    width: 10rem;
    padding: 0.5rem;
    font-size: 2rem;
  }
  .build-price__subtitle{
    width: 78.2rem;
    font-size: 1.8rem;
    padding: 1rem 1rem 0 1rem;
  }
  .build-price__text{  
    width: 100%;
    font-size: 1.6rem;
  }
  .build-price__price01{
    font-size: 3rem;
  }
  .build-price__price02{
    font-size: 1.8rem;
  }
  .build-price__tax{
    font-weight: 500;
    font-size: 1.4rem;
  }
  .build-price__sheetsTitle{
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .build-price__sheet{
    grid-row: 1 / 2;
  }
  .build-price__sheet01,
  .build-price__sheet04{
    grid-column: 3 / 4;
  }
  .build-price__sheet02{
    grid-column: 5 / 6;
  }
  .build-price__sheet05{
    grid-column: 4 / 5;
  }
  .build-price__sheet03{
    grid-column: 4 / 5;
  }
  .build-price__sheet06{
    grid-column: 5 / 6;
  }
  .build-price__category{
    grid-column: 1 / 2;
  }
  .build-price__category01{
    grid-row: 3 / 9;
  }
  .build-price__category02{
    grid-row: 10 / 17;
  }
  .build-price__image{
    width: 22rem;
    grid-column: 2 / 3;
  }
  .build-price__subtitle{
    grid-column: 3 / 6;
  }
  .build-price__image01{
    grid-row: 3 / 5;
  }
  .build-price__subtitle01{
    grid-row: 3 / 4;
  }
  .build-price__text01,
  .build-price__text04,
  .build-price__text07,
  .build-price__text10,
  .build-price__text13,
  .build-price__text16,
  .build-price__text19,
  .build-price__text22{
    grid-column: 3 / 4;
  }
  .build-price__text02,
  .build-price__text05,
  .build-price__text08,
  .build-price__text11,
  .build-price__text14,
  .build-price__text17,
  .build-price__text20,
  .build-price__text23{
    grid-column: 4 / 5;
  }
  .build-price__text03,
  .build-price__text06,
  .build-price__text09,
  .build-price__text12,
  .build-price__text15,
  .build-price__text18,
  .build-price__text21,
  .build-price__text24{
    grid-column: 5 / 6;
  }
  .build-price__text01,
  .build-price__text02,
  .build-price__text03{
    grid-row: 4 / 5;
  }
  .build-price__image02{
    grid-row: 5 / 7;
  }
  .build-price__subtitle02{
    grid-row: 5 / 6;
  }
  .build-price__text04,
  .build-price__text05,
  .build-price__text06{
    grid-row: 6 / 7;
  }
  .build-price__image03{
    grid-row: 7 / 9;
  }
  .build-price__subtitle03{
    grid-row: 7 / 8;
  }
  .build-price__text07,
  .build-price__text08,
  .build-price__text09{
    grid-row: 8 / 9;
  }
  .build-price__image04{
    grid-row: 10 / 12;
  }
  .build-price__subtitle04{
    grid-row: 10 / 11;
  }
  .build-price__text10,
  .build-price__text11,
  .build-price__text12{
    grid-row: 11 / 12;
  }
  .build-price__image05{
    grid-row: 12 / 14;
  }
  .build-price__subtitle05{
    grid-row: 12 / 13;
  }
  .build-price__text13,
  .build-price__text14,
  .build-price__text15{
    grid-row: 13 / 14;
  }
  .build-price__image06{
    grid-row: 15 / 17;
  }
  .build-price__subtitle06{
    grid-row: 15 / 16;
  }
  .build-price__text16,
  .build-price__text17,
  .build-price__text18{
    grid-row: 16 / 17;
  }
  .build-price__category03{
    grid-row: 3 / 4;
  }
  .build-price__category04{
    grid-row: 5 / 6;
  }
  .build-price__subtitle07{
    grid-row: 3 / 4;
  }
  .build-price__subtitle08{
    grid-row: 5 / 6;
  }
  .build-price__text19{
    grid-row: 3 / 4;
  }
  .build-price__text20{
    grid-row: 3 / 4;
  }
  .build-price__text21{
    grid-row: 3 / 4;
  }
  .build-price__text22{
    grid-row: 5 / 6;
  }
  .build-price__text23{
    grid-row: 5 / 6;
  }
  .build-price__text24{
    grid-row: 5 / 6;
  }
  .build-price .partition-border{
    grid-column: 1 / 6;
  }
  .build-price .partition-border.-border01{
    grid-row: 2 / 3;
  }
  .build-price .partition-border.-border02{
    grid-row: 9 / 10;
  }
  .build-price .partition-border.-border03{
    grid-row: 17 / 18;
  }
  .build-price .partition-border.-border04{
    grid-row: 2 / 3;
  }
  .build-price .partition-border.-border05{
    grid-row: 4 / 5;
  }
  .build-price .partition-border.-border06{
    grid-row: 6 / 7;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .build-price .partition-wrapper{
    margin: 0 -2rem;
    position: relative;
  }
  .build-price__content{
    width: 100rem;
    box-sizing: border-box;
    margin: 0 5rem 0 2rem;
  }
  .build-price__content02{
    width: 36.8rem;
  }
  .build-price__sheetsTitle{
    font-size: 2rem;
    position: relative;
    text-align: center;
    margin-bottom: 0.8rem;
    margin-top: 3rem;
  }
  .build-price__sheetsTitle:before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #EC9014;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: block;
  }
  .build-price__sheetsTitle span{
    padding: 0 1.2rem;
    background-color: #FFF4E7;
    position: relative;
    display: inline-block;
  }
  .build-price__sheet{
    width: 8rem;
    font-size: 1rem;
    line-height: 1.2;
    padding: 0.9rem 0;
    flex-direction: column;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .build-price__number{
    font-size: 2.2rem;
    margin: 0 0.2rem;
  }
  .build-price__unit{
    font-size: 1.4rem;
  }
  .build-price__category{
    padding: 0.5rem;
    font-size: 1.2rem;
    flex-direction: column;
    border-radius: 0.6rem 0.6rem 0 0;
  }
  .build-price__subtitle{
    font-size: 1.2rem;
    line-height: 1.42;
    text-align: center;
    padding: 0.4rem 1rem 0.4rem 1rem;
  }
  .build-price__text{  
    font-size: 1.2rem;
  }
  .build-price__price01{
    font-size: 2.2rem;
  }
  .build-price__price02{
    font-size: 1.3rem;
  }
  .build-price__tax{
    font-size: 1rem;
  }
  .build-price__sheetsTitle{
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .build-price__sheet{
    grid-column: 1 / 2;
  }
  .build-price__sheet01{
    grid-row: 4 / 5;
  }
  .build-price__sheet02{
    grid-row: 5 / 6;
  }
  .build-price__sheet03{
    grid-row: 6 / 7;
  }
  .build-price__sheet04{
    grid-row: 3 / 4;
  }
  .build-price__sheet05{
    grid-row: 4 / 5;
  }
  .build-price__sheet06{
    grid-row: 5 / 6;
  }
  .build-price__category{
    grid-row: 1 / 2;
  }
  .build-price__category01{
    grid-column: 3 / 6;
  }
  .build-price__category02{
    grid-column: 7 / 10;
  }
  .build-price__image{
    width: 15rem;
    grid-row: 2 / 3;
  }
  .build-price__subtitle{
    grid-row: 3 / 4;
  }
  .build-price__image01{
    grid-column: 3 / 4;
  }
  .build-price__subtitle01{
    grid-column: 3 / 4;
  }
  .build-price__text01,
  .build-price__text04,
  .build-price__text07,
  .build-price__text10,
  .build-price__text13,
  .build-price__text16,
  .build-price__text19,
  .build-price__text22{
    grid-row: 4 / 5;
  }
  .build-price__text02,
  .build-price__text05,
  .build-price__text08,
  .build-price__text11,
  .build-price__text14,
  .build-price__text17,
  .build-price__text20,
  .build-price__text23{
    grid-row: 5 / 6;
  }
  .build-price__text03,
  .build-price__text06,
  .build-price__text09,
  .build-price__text12,
  .build-price__text15,
  .build-price__text18,
  .build-price__text21,
  .build-price__text24{
    grid-row: 6 / 7;
  }
  .build-price__text01,
  .build-price__text02,
  .build-price__text03{
    grid-column: 3 / 4;
  }
  .build-price__image02{
    grid-column: 4 / 5;
  }
  .build-price__subtitle02{
    grid-column: 4 / 5;
  }
  .build-price__text04,
  .build-price__text05,
  .build-price__text06{
    grid-column: 4 / 5;
  }
  .build-price__image03{
    grid-column: 5 / 6;
  }
  .build-price__subtitle03{
    grid-column: 5 / 6;
  }
  .build-price__text07,
  .build-price__text08,
  .build-price__text09{
    grid-column: 5 / 6;
  }
  .build-price__image04{
    grid-column: 7 / 8;
  }
  .build-price__subtitle04{
    grid-column: 7 / 8;
  }
  .build-price__text10,
  .build-price__text11,
  .build-price__text12{
    grid-column: 7 / 8;
  }
  .build-price__image05{
    grid-column: 8 / 9;
  }
  .build-price__subtitle05{
    grid-column: 8 / 9;
  }
  .build-price__text13,
  .build-price__text14,
  .build-price__text15{
    grid-column: 8 / 9;
  }
  .build-price__image06{
    grid-column: 9 / 10;
  }
  .build-price__subtitle06{
    grid-column: 9 / 10;
  }
  .build-price__text16,
  .build-price__text17,
  .build-price__text18{
    grid-column: 9 / 10;
  }
  .build-price__category03{
    grid-column: 3 / 4;
  }
  .build-price__category04{
    grid-column: 4 / 5;
  }
  .build-price__subtitle07{
    grid-row: 3 / 4;
  }
  .build-price__subtitle08{
    grid-row: 5 / 6;
  }
  .build-price__image07{
    grid-column: 3 / 4;
  }
  .build-price__image08{
    grid-column: 4 / 5;
  }
  .build-price__text19,
  .build-price__text20,
  .build-price__text21{
    grid-column: 3 / 4;
  }
  .build-price__text19{
    grid-row: 3 / 4;
  }
  .build-price__text20{
    grid-row: 4 / 5;
  }
  .build-price__text21{
    grid-row: 5 / 6;
  }
  .build-price__text22,
  .build-price__text23,
  .build-price__text24{
    grid-column: 4 / 5;
  }
  .build-price__text22{
    grid-row: 3 / 4;
  }
  .build-price__text23{
    grid-row: 4 / 5;
  }
  .build-price__text24{
    grid-row: 5 / 6;
  }
  .build-price .partition-border{
    height: 100%;
    width: 1px;
    grid-row: 1 / 7;
  }
  .build-price .partition-border.-border01,
  .build-price .partition-border.-border04{
    grid-column: 2 / 3;
    border-right:#000 1px solid;
    background-color:#FFF4E7;
    /* background-color:#f00; */
    width:10.7rem;
    margin-left:calc(-10.9rem + 1px);
    grid-row: 1 / 7;
    position:sticky;
    left:0;
  }
  .build-price .partition-border.-border02{
    grid-column: 6 / 7;
  }
  .build-price .partition-border.-border03{
    grid-column: 10 / 11;
  }
  .build-price .partition-border.-border04{
    grid-column: 2 / 3;
  }
  .build-price .partition-border.-border05{
    grid-column: 2 / 3;
  }
  .build-price .partition-border.-border06{
    grid-column: 5 / 6;
  }
}

/* パーテーション業界の比較
--------------------------------------------------*/
.buid-comparison__heading{
  display: contents;
}
.build-comparison__category{
  color: #444;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1 / 2;
  text-align: center;
  flex-direction: column;
}
.build-comparison__category span{
  display: block;
}
.buid-comparison__headign>div{
  grid-column: 1 / 2;
  grid-row: 1 / 2;    
}
.buid-comparison__headign{
  grid-row: 1 / 2;    
}
.buid-comparison__title:first-child{
  grid-column: 2 / 3; 
}
.buid-comparison__title:nth-child(2){
  grid-column: 3 / 4; 
}
.buid-comparison__title:nth-child(3){
  grid-column: 4 / 5;   
}
.build-comparison__category01{
  grid-row: 3 / 4;     
}
.build-comparison__category02{
  grid-row: 5 / 6;     
}
.build-comparison__category03{
  grid-row: 7 / 8;     
}
.build-comparison__text01,
.build-comparison__text02,
.build-comparison__text03{
  grid-row: 3 / 4;      
}
.build-comparison__text04,
.build-comparison__text05,
.build-comparison__text06{
  grid-row: 5 / 6;       
}
.build-comparison__text07,
.build-comparison__text08,
.build-comparison__text09{
  grid-row: 7 / 8;      
}
.build-comparison__text01{
  grid-column: 2 / 3;   
}
.build-comparison__text02{
  grid-column: 3 / 4;   
}
.build-comparison__text03{
  grid-column: 4 / 5;  
}
.build-comparison__text04{
  grid-column: 2 / 3;
}
.build-comparison__text05{
  grid-column: 3 / 4;
}
.build-comparison__text06{
  grid-column: 4 / 5; 
}
.build-comparison__text07{
  grid-column: 2 / 3; 
}
.build-comparison__text08{
  grid-column: 3 / 4;
}
.build-comparison__text09{
  grid-column: 4 / 5;
}
.build-comparison .partition-border.-border01{
  grid-row: 2 / 3;
}
.build-comparison .partition-border.-border02{
  grid-row: 4 / 5;
}
.build-comparison .partition-border.-border03{
  grid-row: 6 / 7;
}
.build-comparison .partition-border.-border04{
  grid-row: 8 / 9;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .build-comparison__category{
    font-size: 2rem;
    line-height: 1.6;
  } 
}

/* SP */
@media screen and (max-width: 767px){	
  .build-comparison__content{
    width: 70rem;
  }
  .build-comparison__category{
    font-size: 1.4rem;
    line-height: 1.6;
  } 
  .build-comparison__category span{
    font-size: 1.2rem;
  } 
}

/* 豊富なカラーとパネルの種類
--------------------------------------------------*/
.build-variation{
  background-color: #F3F3F3;
}
.build-variation .m-title__english,
.build-flow .m-title__english{
  color: #fff;
}
.build-title{
  color: #BB140D;
  text-align: center;
  font-weight: bold;
}
.build-variation__text01{
  color: #333;
  font-weight: bold;
  text-align: center;
}
.build-variation__text02{
  color: #333;
  text-align: center;
}
.build-colors{
  display: flex;
  flex-wrap: wrap;
}
.build-color__image{
  margin: 0 auto;
  border-radius: 50%;
  border: 1px #D5D5D5 solid;
}
.build-color__text{
  line-height: 1.6;
  text-align: center;
}
.build-color__image.-off{
  background-color: #EDEDEB;
}
.build-color__image.-gray{
  background-color: #C5C6CB;
}
.build-color__image.-black{
  background-color: #110B0D;
}
.build-color__image.-blue{
  background-color: #163061;
}
.build-color__image.-red{
  background-color: #9A1624;
}
.build-color__image.-yellow{
  background-color: #F2BC01;
}
.build-color__image.-green{
  background-color: #00743F;
}
.build-color__image.-orange{
  background-color: #F08300;
}
.build-color__image.-white{
  background-color: #FDFDFD;
}
.build-color__image.-green02{
  background-color: #C1D536;
}
.build-color__image.-blue02{
  background-color: #9DD5F0;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .build-variation{
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 18.3rem 3rem 12rem 3rem;
  }
  .build-variation__inner{
    max-width: 112rem;
    margin: 0 auto;
  }
  .build-title{
    border-bottom: 1px #BB140D solid;
    font-size: 3rem;
    padding-bottom: 2rem;
    margin:4.5rem 0 3rem 0;
  }
  .build-variation__text01{
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
  }
  .build-variation__text02{
    font-size: 1.6rem;
    line-height: 1.6;
    margin:-2.2rem 0 3rem 0;
  }
  .build-colors{
    gap:1rem 1.1rem;
    margin-bottom: 8rem;
  }
  .build-color{
    width: 13rem;
  }
  .build-color__image{
    width: 12rem;
    height: 12rem;
  }
  .build-color__text{
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .build-variation{
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 11rem 1.5rem 6rem 1.5rem;
  }
  .build-title{
    font-size: 2rem;
    font-weight: bold;
    margin:3rem 0 1.2rem 0;
    position: relative;
  }
  .build-title:before{
    content: "";
    height: 1px;
    background-color:#BB140D;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .build-title span{
    background-color: #F3F3F3;
    padding: 0 2rem;
    position: relative;
  }
  .build-title.-white span{
    background-color: #fff;
  }
  .build-variation__text01{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 500;
  }
  .build-variation__text02{
    font-size: 1.2rem;
    line-height: 1.6;
    margin:-1.5rem 0 2rem 0;
    text-align: left;
  }
  .build-colors{
    gap:1rem 0.8rem;
    margin-bottom: 6rem;
  }
  .build-color{
    width: 8rem;
  }
  .build-color__image{
    width: 8rem;
    height: 8rem;
  }
  .build-color__text{
    font-size: 1rem;
    margin-top: 0.4rem;
  }
}

/* パネルの種類
--------------------------------------------------*/
.build-punels__wrapper{
  position: relative;
}
.build-panels{
  display: flex;
  flex-wrap: wrap;
}
.build-panel{
  text-align: center;
}
.build-panel__image img{
  width: auto;
  height: 100%;
}
.build-panelS{
  position: absolute;
  right: 0;
}
.build-panelS li{
  display: flex;
  align-items: center;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .build-panels{
    gap:3rem 0;
    margin-bottom: 8.5rem;
  }
  .build-panel{
    width: calc( 100% / 6 );
  }
  .build-panel__image{
    height: min(19.4rem,20vw);
  }
  .build-panel__text{
    font-size: min(1.4rem,1.39vw);
    line-height: 1.2;
    margin-top: 0.4rem;
  }
  .build-panelS{
    bottom: 0;
  }
  .build-panelS li{
    gap:0 1.3rem;
    margin-bottom: 1.8rem;
  }
  .build-panelS__image{
    width: min(8.9rem,8vw);
  }
  .build-panelS__text{
    font-size: min(1.4rem,1.39vw);
    line-height: 1.2;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .build-panels{
    gap:3rem 0;
    margin-bottom: 6rem;
  }
  .build-panel{
    width: calc( 100% / 3 );
  }
  .build-panel__image{
    height:13.8rem;
  }
  .build-panel__text{
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.4rem;
  }
  .build-panelS{
    bottom: 1.3rem;
  }
  .build-panelS li{
    gap:0 0.8rem;
    margin-bottom: 0.8rem;
  }
  .build-panelS__image{
    width: 6.6rem;
  }
  .build-panelS__text{
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* PICK UP PRODUCTS
--------------------------------------------------*/
.build-pickup{
  background-color: #fff;
  border: 5px #BB140D solid;
}
.build-pickup__heading{
  color: #BB140D;
  font-weight: bold;
  text-align: center;
}
.build-pickup__item,
.build-pickup__image{
  position: relative;
}
.build-pickup__image{
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.build-pickup__icon{
  position: absolute;
}
.build-pickup__title{
  font-weight: bold;
  text-align: center;
}
.build-pickup__text{
  color: #444;
  font-weight: 500;
}
.build-recommend{
  background: url("../images/home/about-icon.svg") center center no-repeat;
  background-size: 100% auto;
  color: #fff;
  position: absolute;
  text-align: center;
  box-sizing: border-box;
}
.build-recommend__text01{
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}
.build-recommend__text02{
  font-weight: 500;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .build-pickup{
    padding: 2.4rem 3.5rem 3.5rem 3.5rem;
  }
  .build-pickup__heading{
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .build-pickup__items{
    display: flex;
    gap:0 4rem;
  }
  .build-pickup__item{
    width: calc( ( 100% / 3 ) - 2.66rem );
  }
  .build-pickup__image{
    margin-bottom: 1.6rem;
  }
  .build-pickup__icon{
    width: 5rem;
    bottom:0.8rem;
    right: 0.8rem;
  }
  .build-pickup__title{
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  .build-pickup__text{
    font-size: 1.6rem;
    line-height: 1.43;
  }
  .build-recommend{
    width: 15.3rem;
    height: 15.3rem;
    top: -3.9rem;
    right: -3.5rem;
    padding-top: 3.2rem;
  }
  .build-recommend__text01{
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
  }
  .build-recommend__text02{
    font-size: 1.6rem;
    line-height: 1.2;  
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .build-pickup{
    padding: 1.6rem 2rem 1rem 2rem;
  }
  .build-pickup__heading{
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
  }
  .build-pickup__item{
    margin-bottom: 2.8rem;
  }
  .build-pickup__image{
    margin-bottom: 1.2rem;
  }
  .build-pickup__icon{
    width: 5rem;
    bottom:0.6rem;
    right: 0.3rem;
  }
  .build-pickup__title{
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  .build-pickup__text{
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .build-recommend{
    width: 11.7rem;
    height: 11.7rem;
    top: -2.4rem;
    right: -3.9rem;
    padding-top: 2.4rem;
  }
  .build-recommend__text01{
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
  .build-recommend__text02{
    font-size: 1.2rem;
    line-height: 1.4;  
  }
}

/* パーテーションの組み合わせモデル
--------------------------------------------------*/
.build-combination__text{
  color: #333;
  font-weight: bold;
}
.build-combination__item{
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.16);
  border-radius: 1rem;
  overflow: hidden;
  box-sizing: border-box;
}
.build-combination__image{
  position: relative;
}
.build-combination__category{
  background-color: #2AB1E6;
  border-radius: 0.2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: absolute;
}
.build-combination__text01{
  font-weight: bold;
}
.build-combination__text02{
  color: #333;
  font-weight: 500;
}
.build-combination__text03{
  color: #666;
  font-weight: 500;
}
.build-combination__text04{
  color: #444;
  font-weight: bold;
  text-align: center;
}
.build-combination__price01,
.build-combination__price02{
  font-family: var(--font-poppins);
  line-height: 1.1;
  font-weight: bold;
}
.build-combination__tax{
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .build-combination{
    max-width: 112rem;
    padding: 6rem 3rem 10rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;
  }
  .build-combination__text{
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .build-combination__items{
    display: flex;
    flex-wrap: wrap;
    gap:3rem 2.6rem;
    margin-bottom: 8rem;
  }
  .build-combination__item{
    width: calc( ( 100% / 3 ) - 1.733rem );
    padding: 0 1.6rem 2.2rem 1.6rem;
    display: flex;
    flex-direction: column;
  }
  .build-combination__image{
    margin: 0 -1.6rem 1rem -1.6rem;
  }
  .build-combination__category{
    width: 8.4rem;
    font-size: 1.2rem;
    right: 0.5rem;
    bottom: 0.6rem;
  }
  .build-combination__text01{
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  .build-combination__text02{
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
  .build-combination__text03{
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.3rem;
  }
  .build-combination__text04{
    font-size: 1.6rem;
    margin-top: auto;
  }
  .build-combination__price01,
  .build-combination__price02{
    line-height: 1.1;
  }
  .build-combination__price01{
    font-size: 3rem;
  }
  .build-combination__price02{
    font-size: 1.8rem;
  }
  .build-combination__tax{
    font-size: 1.4rem;
    display: block;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .build-combination{
    padding: 6rem 1.5rem;
  }
  .build-combination__text{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  .build-combination__items{
    margin: 0 1rem;
  }
  .build-combination__item{
    padding: 0 1.6rem 1.6rem 1.6rem;
    margin-bottom: 1.2rem;
  }
  .build-combination__image{
    margin: 0 -1.6rem 1.2rem -1.6rem;
  }
  .build-combination__category{
    width: 6.4rem;
    font-size: 1rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }
  .build-combination__text01{
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }
  .build-combination__text02{
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }
  .build-combination__text03{
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .build-combination__text04{
    font-size: 1.4rem;
  }
  .build-combination__price01,
  .build-combination__price02{
  }
  .build-combination__price01{
    font-size: 2.6rem;
  }
  .build-combination__price02{
    font-size: 1.4rem;
  }
  .build-combination__tax{
    font-size: 1rem;
  }
}

/* パーテーションを建てるまでの流れ
--------------------------------------------------*/
.build-flow{
  background-color: #F3F3F3;
}
.build-flow__text01{
  font-weight: bold;
}
.build-flow__text02{
  color: #444;
}
.build-flow__number{
  color: #BB140D;
  font-family: var(--font-poppins);
  font-weight: bold;
  position: absolute;
}
.build-flow__item{
  background-color: #fff;
}
.build-flow__item:before{
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .build-flow{
    padding: 18rem 3rem 12rem 3rem;
    margin-bottom: 10rem;
  }
  .build-flow__inner{
    max-width: 112rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .build-flow__icons{
    width: min(13rem,8.66vw);
    margin: 0 auto;
  }
  .build-flow__icons li{
    width: min(13rem,8.66vw);
    height: min(13rem,8.66vw);
    background-color: #fff;
    border-radius: 50%;
    border: 2px #444 solid;
    margin-bottom: min(13rem,0.8vw);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .build-flow__icons img{
    width: min(6.5rem,4.33vw);
  }
  .build-flow__icons li:nth-child(5) img{
    width: min(5.5rem,3.66vw);
  }
  .build-flow__icons li:nth-child(6) img,
  .build-flow__items.-remove .build-flow__icons li:nth-child(5) img{
    width: min(9.3rem,6.2vw);
    position: relative;
    top: min(-0.5rem,-0.33vw);
    left: min(0.5rem,0.33vw);
  }
  .build-flow__icon{
    display: none;
  }
  .build-flow__text01{
    font-size: min(2rem,1.5vw);
    margin-bottom: min(1.6rem,1.056vw);
  }
  .build-flow__text02{
    font-size: min(1.6rem,1.3vw);
    line-height: 1.8;
  }
  .build-flow__number{
    font-size: min(2.6rem,1.8vw);
    top: min(2.7rem,1.8vw);
    left: min(2.4rem,1.6vw);
  }
  .build-flow__items{
    position: relative;
    margin-top: min(3rem,2vw);
  }
  .build-flow__item{
    width: min(44rem,29.4vw);
    width: min(44rem,37vw);
    height: min(19.2rem,12.8vw);
    border-radius: min(1rem,0.66vw);
    padding: min(3.2rem,1.8vw) min(3.3rem,2.2vw) min(3rem,2vw) min(7.3rem,4.86vw);
    position: absolute;
  }
  .build-flow__item:nth-child(odd){
    left: 0;
  }
  .build-flow__item:nth-child(even){
    right: 0;
  }
  .build-flow__item:first-child{
    top: 0;
  }
  .build-flow__item:nth-child(2){
    height: min(25rem,16.6vw);
    top: min(7.9rem,5.26vw);
  }
  .build-flow__item:nth-child(3){
    top: min(22.1rem,14.7vw);
  }
  .build-flow__item:nth-child(4){
    height: min(25rem,16.6vw);
    top: min(36rem,24vw);
  }
  .build-flow__item:nth-child(5){
    height: min(22.1rem,14.7vw);
    top: min(44.4rem,29.6vw);
  }
  
  .build-flow__items.-remove .build-flow__item:first-child{
    height: auto;
  }
  .build-flow__items.-remove .build-flow__item:nth-child(2){
    height: auto;
    top: min(15.4rem,10.27vw);
  }
  .build-flow__items.-remove .build-flow__item:nth-child(3){
    height: auto;
    top: min(25.5rem,17vw);
  }
  .build-flow__items.-remove .build-flow__item:nth-child(4){
    height: auto;
  }
  .build-flow__items.-remove .build-flow__item:nth-child(5){
    height: auto;
    top: min(50.7rem,33.8vw);
  }
  
  .build-flow__item:nth-child(6){
    bottom: 0;
  }
  .build-flow__item:nth-child(odd):before{
    background-image: url("../images/partition/arrow01.svg");
    right: min(-2.6rem,-1vw);
  }
  .build-flow__item:nth-child(even):before{
    background-image: url("../images/partition/arrow02.svg");
    left: min(-2.6rem,-1vw);
  }
  .build-flow__item:before{
    width: min(2.6rem,2.6vw);
    height: min(3rem,3vw);
  }
  .build-flow__item:first-child:before{
    top:min(5rem,3.3vw);
  }
  .build-flow__item:nth-child(2):before{
    top:min(11.2rem,7.46vw);
  }
  .build-flow__item:nth-child(3):before{
    top:min(11.2rem,7.466vw);
  }
  .build-flow__item:nth-child(4):before{
    top:min(11.4rem,7.6vw);
  }
  .build-flow__item:nth-child(5):before{
    bottom: min(2rem,1.33vw);
  }
  .build-flow__item:nth-child(6):before{
    bottom: min(4.8rem,3.2vw);
  }
  .build-flow__items.-remove .build-flow__item:nth-child(2):before{
    top:min(3.7rem,2.47vw);
  }
  .build-flow__items.-remove .build-flow__item:nth-child(3):before{
    top:min(8rem,5.33vw);
  }
  .build-flow__items.-remove .build-flow__item:nth-child(4):before{
  }
  .build-flow__items.-remove .build-flow__item:nth-child(5):before{
    bottom: min(2.2rem,1.47vw);
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .build-flow{
    padding: 5rem 1.5rem;
    margin: 11rem 0 6rem 0;
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
  }
  .build-flow__icons{
    display: none;
  }
  .build-flow__icon{
    width: 3.9rem;
    position: absolute;
    top: 1.6rem;
    left: 2rem;
  }
  .build-flow__text01{
    font-size: 1.8;
    padding-left: 4.5rem;
    margin-bottom: 2rem;
  }
  .build-flow__text02{
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .build-flow__number{
    color: #f5e7e7;
    font-size: 5rem;
    line-height: 1;
    top: -0.6rem;
    right: -0.1rem;
  }
  .build-flow__items{
    margin-top: 1rem;
  }
  .build-flow__item{
    border-radius: 0.6rem;
    padding: 2.2rem 2rem 1.6rem 2rem;
    position: relative;
    margin-bottom: 3.1rem;
  }
  .build-flow__item:nth-child(6){
    margin-bottom: 0;
  }
  .build-flow__item:before{
    width: 4.3rem;
    height: 2.7rem;
    background-image: url("../images/partition/arrow-sp.svg");
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.7rem;
  }
  .build-flow__item:nth-child(6):before,
  .build-flow__items.-remove .build-flow__item:nth-child(5):before{
    content: none;
  }
}

/*==================================================

パーテーション 移設したい

==================================================*/

/* オフィスレイアウト
--------------------------------------------------*/
.relocate-text{
  color: #333;
  font-weight: bold;
}
.relocate-detail{
  position: relative;
}
.relocate-detail__text{
  color: #444;
  font-weight: 500;
}
.relocate-detail__icon{
  position: absolute;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .relocate-layout{
    max-width: 112rem;
    padding: 0 3rem;
    margin: -3rem auto 10rem auto;
    box-sizing: content-box;
  }
  .relocate-text{
    font-size: 2rem;
    text-align: center;
    margin: 2.5rem 0 2rem 0;
  }
  .relocate-detail{
    display: flex;
    justify-content: space-between;
    border: 5px #BB140D solid;
    padding: 5rem;
  }
  .relocate-detail__text{
    width: 35%;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .relocate-detail__image{
    width: 61.5%;
  }
  .relocate-detail__icon{
    width: 23.5%;
    right: -5rem;
    bottom: 0;
  }
}

/* SP */
@media screen and (max-width: 767px){	 
  .relocate-layout{
    overflow: hidden;
    margin: 6rem 1.5rem;
  }
  .relocate-text{
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 2.5rem 0 2rem 0;
  }
  .relocate-detail{
    padding: 2.4rem;
    border: 3px #BB140D solid;
  }
  .relocate-detail__text{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .relocate-detail__image{
    margin: 2rem 0.5rem 0 0.5rem;
  }
  .relocate-detail__icon{
    width: 13.6rem;
    right: -2rem;
    bottom: 0;
  }
}

/* 料金
--------------------------------------------------*/
.relocate-price__texts:first-child .relocate-price__title{
	grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.relocate-price__texts:nth-child(2) .relocate-price__title{
	grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.relocate-price__texts:first-child .relocate-price__text{
	grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.relocate-price__texts:nth-child(2) .relocate-price__text{
	grid-column: 2 / 3;
  grid-row: 3 / 4;
}
.relocate-price .partition-border.-border01{
  grid-row: 2 / 3;
}
.relocate-price .partition-border.-border02{
  grid-row: 4 / 5;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .relocate-price__price01{
    font-size: 4rem;
  }
  .relocate-price__price02{
    font-size: 2rem;
  }
  .relocate-price__tax{
    font-size: 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .relocate-price__price01{
    font-size: 2.6rem;
  }
  .relocate-price__price02{
    font-size: 1.2rem;
  }
  .relocate-price__tax{
    font-size: 1rem;
  }
}

/* 比較
--------------------------------------------------*/
.build-comparison__text,
.relocate-comparison__text,
.remove-comparison__text{
  background-color: #fff;
  color: #444;
  position: relative;
}
.build-comparison__text:before,
.relocate-comparison__text:before,
.remove-comparison__text:before{
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
}
.build-comparison__text.-double:before,
.relocate-comparison__text.-double:before,
.remove-comparison__text.-double:before{
  background-image: url("../images/partition/double.svg");
}
.build-comparison__text.-triangle:before,
.relocate-comparison__text.-triangle:before,
.remove-comparison__text.-triangle:before{
  background-image: url("../images/partition/tri.svg");
}
.build-comparison__text.-close:before,
.relocate-comparison__text.-close:before,
.remove-comparison__text.-close:before{
  background-image: url("../images/partition/close.svg");
}
.relocate-comparison__texts:first-child .relocate-comparison__title{
	grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.relocate-comparison__texts:nth-child(2) .relocate-comparison__title{
	grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.relocate-comparison__texts:nth-child(3) .relocate-comparison__title{
	grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.relocate-comparison__texts:first-child .relocate-comparison__text{
	grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.relocate-comparison__texts:nth-child(2) .relocate-comparison__text{
	grid-column: 2 / 3;
  grid-row: 3 / 4;
}
.relocate-comparison__texts:nth-child(3) .relocate-comparison__text{
	grid-column: 3 / 4;
  grid-row: 3 / 4;
}
.relocate-comparison .partition-border.-border01{
  grid-row: 2 / 3;
}
.relocate-comparison .partition-border.-border02{
  grid-row: 4 / 5;
}

/*==================================================

パーテーション 撤去したい

==================================================*/
/* 不要になったパーテーションの撤去・買取もお任せ
--------------------------------------------------*/
.remove-price__title02{
  font-weight: bold;
  text-align: left;
}
.remove-calculation__box{
  background-color: #E5E5E5;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.remove-calculation__price{
  line-height: 1.15;
  font-weight: bold;
}
.remove-calculation__price01,
.remove-calculation__price02,
.remove-result__price01,
.remove-result__price02{
  font-family: var(--font-poppins);
}
.remove-calculation__tax{
  display: block;
  font-weight: bold;
}
.remove-result{
  line-height: 1.15;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.remove-result__price{
  font-weight: bold;
}
.remove-result__price01{
  font-weight: bold;
}
.remove-result__tax{
  display: block;
  font-weight: 600;
}
.remove-calculation__price.-red{
  color: #BB140D;
}
.remove-calculation__price.-tri{
  color: #444;
}
.remove-calculation__tri,
.remove-calculation__tax{
  color: #444;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .remove-price__texts:first-child .remove-price__title{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .remove-price__texts:first-child .remove-price__text{
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .remove-price__texts:nth-child(2) .remove-price__text{
    grid-column: 1 / 2;
    grid-row: 5 / 6;
  }
  .remove-price .partition-border.-border01{
    grid-row: 2 / 3;
  }
  .remove-price .partition-border.-border02{
    grid-row: 4 / 5;
  }
  .remove-price .partition-border.-border03{
    grid-row: 6 / 7;
  }
  .partition-wrapper:last-child{
    margin-top: 6rem;
  }
  .remove-price__text{
    padding: 1.2rem 2rem 2rem 2rem;
  }
  .remove-price__title02{
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  .remove-calculations{
    display: flex;
    gap:0 1.2rem;
  }
  .remove-calculation__box{
    width: 18rem;
    border-radius: 0.6rem;
    padding: 0.9rem 0.5rem;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .remove-calculation__box:first-child{
    width: 14rem;
  }
  .remove-calculation__icon{
    width: 2.6rem;
    display: flex;
    align-items: center;
  }
  .remove-calculation__boxTitle{
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.1rem;
  }
  .remove-calculation__price{
    font-size: 1.4rem;
    line-height: 1.15;
  }
  .remove-calculation__price01{
    font-size: 2.2rem;
  }
  .remove-calculation__price02{
    font-size: 1.4rem;
  }
  .remove-calculation__tax{
    font-size: 1rem;
  }
  .remove-result{
    width: auto;
    padding-top: 1rem;
  }
  .remove-result>span{
    white-space: nowrap;
  }
  .remove-result__price{
    font-size: 2.2rem;
  }
  .remove-result__price01{
    font-size: 4rem;
  }
  .remove-result__price02{
    font-size: 1.8rem;
  }
  .remove-result__tax{
    font-size: 1.4rem;
  }
/*
  .remove-price .partition-wrapper{
    display: block;
    overflow-x: scroll;
  }
  .remove-price__content{
    width: 112rem;
  }
*/
}

/* SP */
@media screen and (max-width: 767px){	
  .remove-price__texts:first-child .remove-price__title{
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .remove-price__texts:first-child .remove-price__text{
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .remove-price__texts:nth-child(2) .remove-price__text{
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  .remove-price .partition-border.-border01{
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
  .remove-price .partition-border.-border02{
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
  .partition-wrapper:last-child{
    margin-top: 3rem;
  }
  .remove-price__text{
    width: 16.9rem;
    box-sizing: border-box;
    padding: 1rem 2rem 1rem 2rem;
  }
  .remove-price__title span{
    font-size: 1rem;
    display: block;
  }
  .remove-price__title02{
    height: 3.7rem;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .remove-price__title02>span{
    font-size: 1rem;
    display: block;
  }
  .remove-calculation__box{
    height: 6.4rem;
    border-radius: 0.5rem;
    padding: 0.5rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .remove-calculation__icon{
    width: auto;
    height: 1.3rem;
    vertical-align: top;
    margin: 0.4rem auto;
    font-size: 0;
    line-height: 0;
  }
  .remove-calculation__icon img{
    width: auto;
    height: 100%;
  }
  .remove-calculation__boxTitle{
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
  }
  .remove-calculation__price{
    font-size: 1.3rem;
  }
  .remove-calculation__price01{
    font-size: 2rem;
  }
  .remove-calculation__price02{
    font-size: 1.1rem;
  }
  .remove-calculation__tax{
    font-size: 0.8rem;
  }
  .remove-result__price{
    font-size: 1.4rem;
  }
  .remove-result__price01{
    font-size: 2.2rem;
  }
  .remove-result__price02{
    font-size: 1.2rem;
  }
  .remove-result__tax{
    font-size: 1rem;
  }
}

/* パーテーション業界の比較
--------------------------------------------------*/
.remove-comparison__texts:first-child .remove-comparison__title{
	grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.remove-comparison__texts:nth-child(2) .remove-comparison__title{
	grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.remove-comparison__texts:nth-child(3) .remove-comparison__title{
	grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.remove-comparison__texts:nth-child(4) .remove-comparison__title{
	grid-column: 4 / 5;
  grid-row: 1 / 2;
}
.remove-comparison__texts:first-child .remove-comparison__text{
	grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.remove-comparison__texts:nth-child(2) .remove-comparison__text{
	grid-column: 2 / 3;
  grid-row: 3 / 4;
}
.remove-comparison__texts:nth-child(3) .remove-comparison__text{
	grid-column: 3 / 4;
  grid-row: 3 / 4;
}
.remove-comparison__texts:nth-child(4) .remove-comparison__text{
	grid-column: 4 / 5;
  grid-row: 3 / 4;
}
.remove-comparison .partition-border.-border01{
  grid-row: 2 / 3;
}
.remove-comparison .partition-border.-border02{
  ggrid-row: 2 / 3;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){	
  .remove-comparison__content {
    width: 79rem;
  }
}

/* 
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){	
}

/*==================================================

付随工事

==================================================*/

/* ページナビ
--------------------------------------------------*/
.work-pagenav{
  display: flex;
  justify-content: space-between;
}
.work-pagenav li{
  background-color: #fff;
  overflow: hidden;  
  filter: drop-shadow(4px 4px 30px rgba(101, 1, 1, 0.12));
  border: 1px #d5d5d5 solid;
}
.work-pagenav li a{
  background: url("../images/shared/arrow-down-red.svg") center bottom 0.8rem no-repeat;
  text-align: center;
  display: block;
  text-decoration: none;
}
.work-pagenav__text{
  font-weight: bold;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .work-pagenav{
    max-width: 112rem;
    gap:0 2rem;
    padding: 0 3rem;
    margin: 5rem auto;
    box-sizing: content-box;
  }
  .work-pagenav li{
    width: calc( ( 100% / 6 ) - 0.3rem );
    border-radius: 1rem;
  }
  .work-pagenav li a{
    background-size: 2rem auto;
    padding-bottom: 2.3rem;
    transition: all .2s ease;
  }
  .work-pagenav li a:hover{
    background-position: center bottom 0.6rem;
  }
  .work-pagenav__text{
    font-size: min(1.5rem,1.5vw);
    margin-top: 0.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .work-pagenav{
    flex-wrap: wrap;
    gap:1rem 1rem;
    padding: 2rem 1.5rem;
  }
  .work-pagenav li{
    width: calc( ( 100% / 3 ) - 0.67rem );
    border-radius: 0.6rem;
  }
  .work-pagenav li a{
    background-position: center bottom 0.5rem;
    background-size: 1.8rem auto;
    padding-bottom: 1.7rem;
  }
  .work-pagenav__text{
    font-size: 1.2rem;
    margin-top: 0.3rem;
  }
}

/* サイン工事
--------------------------------------------------*/
.work-sign{
  background-color: #FAE9E8;
}
.work-title{
  color: #BB140D;
  font-weight: bold;
  text-align: center;
}
.work-text01{
  color: #333;
  font-weight: bold;
}
.work-text02{
  color: #333;
}
.work-sign__image{
  box-shadow: 4px 4px 30px rgba(101, 1, 1, 0.12);
  overflow: hidden;
}
.work-sign__text01{
  font-weight: bold;
}
.work-sign__text02{
  color: #444;
  font-weight: 500;
}
#sign,
#tile,
#lock,
#drr,
#furniture,
#moving{
  position: relative;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  #sign{
    top: -18rem;
  }
  .work-sign{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 8rem 3rem 7rem 3rem;
  }
  .work-sign__inner{
    max-width: 112rem;
    margin: 0 auto;
  }
  .work-title{
    font-size: 3rem;
    border-bottom: 1px #BB140D solid;
    padding-bottom: 1.9rem;
    margin-bottom: 2.8rem;
  }
  .work-text01{
    font-size: 2rem;
    text-align: center;
    margin: 2rem 0 5.7rem 0;
  }
  .work-text02{
    font-size: 2rem;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3.2rem;
  }
  .work-sign__detail{  
    background-color: #fff;
    border-radius: 1rem;
    margin-bottom: 5rem;
    padding: 3.9rem 5rem 4.6rem 5rem;
  }
  .work-sign__items{
    display: flex;
    justify-content: space-between;
    gap:0 3rem;  
  }
  .work-sign__item{
    width: calc( ( 100% / 3 ) - 2rem );
  }
  .work-sign__detail02 .work-sign__image{  
    border-radius: 1rem;
  }
  .work-sign__text01{
    font-size: 2rem;
    margin: 2rem 0 0.9rem 0;
  }
  .work-sign__text02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* SP */
@media screen and (max-width: 767px){	
    #sign{
      top: -8rem;
    }
  .work-sign{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding:3rem 1.5rem 1rem 1.5rem;
  }
  .work-title{
    font-size: 2rem;
    line-height: 1.45;
    margin-bottom: 1.2rem;
    position: relative;
  }
  .work-title span{
    background-color: #FAE9E8;
    padding: 0 1.2rem;
    position: relative;
    z-index: 3;
    display: inline-block;
  }
  .work-title.-white span{
    background-color: #fff;
  }
  .work-title:after{
    content: "";
    height: 1px;
    background-color: #BB140D;
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
  }
  .work-text01{
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: bold;
    margin: -1rem 0 4rem 0;
  }
  .work-text02{
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  .work-sign__detail{  
    margin-bottom: 4rem;
  }
  .work-sign__detail01 .work-sign__items{
    display: flex;
    justify-content: space-between;
    gap:0 0.75rem;  
  }
  .work-sign__detail01 .work-sign__item{
    width: calc( ( 100% / 3 ) - 0.5rem );
  }
  .work-sign__detail02 .work-sign__item{  
    background-color: #fff;
    border-radius: 0 0 1rem 1rem;
    padding: 0 1.6rem 1.6rem 1.6rem;
    margin:0 1.75rem 2.4rem 1.75rem;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.16);
  }
  .work-sign__detail02 .work-sign__item:last-child{  
    margin-bottom: 0;
  }
  .work-sign__detail02 .work-sign__image{  
    margin: 0 -1.6rem 0 -1.6rem;
  }
  .work-sign__text01{
    font-size: 1.8rem;
    margin: 2.4rem 0 0.4rem 0;
  }
  .work-sign__text02{
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* タイルカーペット
--------------------------------------------------*/
.work-tile__images{
  display: flex;
  justify-content: space-between;
}
.work-tile__texts{
  color: #444;
}
.work-tile__text01{
  font-weight: 700;
}
.work-tile__text02{
  line-height: 1.1;
  font-weight: bold;
}
.work-tile__price01{
  font-family: var(--font-poppins);
  vertical-align: middle;
  position: relative;
  top: -0.2rem;
  display: inline-block;
}
.work-tile__price02{
  font-family: var(--font-poppins);
  font-weight: 600;
}
.work-tile__tax{
  font-weight: 500;
}
.work-tile__list{
  display: flex;
  flex-wrap: wrap;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #tile{
    top: -18rem;
  }
  .work-tile{
    max-width: 112rem;
    margin: 0 auto;
    padding: 8rem 3rem 12rem 3rem;
    box-sizing: content-box;
  }
  .work-tile__images{
    gap:0 0.47rem;
    margin:-2.8rem 0 6rem 0;
  }
  .work-tile__detail{
    background-color: #F1F1F1;
    padding: 4rem 5rem 6rem 5rem;
  }
  .work-tile__texts{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:4rem 0 4.9rem 0;
  }
  .work-tile__text01{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .work-tile__text02{
    font-size: 2rem;
  }
  .work-tile__price01{
    font-size: 3rem;
    margin-left: 0.8rem;
  }
  .work-tile__price02{
    font-size: 1.4rem;
  }
  .work-tile__tax{
    font-size: 1rem;
    display: block;
    text-align: right;
    margin-right: 3rem;
  }
  .work-tile__list{
    gap:0.8rem 0.8rem;
  }
  .work-tile__list li{
    width: calc( ( 100% / 11 ) - 0.78rem );
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #tile{
    top: -11rem;
  }
  .work-tile{
    padding: 4rem 1.5rem 6rem 1.5rem;
  }
  .work-tile__images{
    flex-wrap: wrap;
    gap:0.5rem 0;
    margin-bottom: 4rem;
  }
  .work-tile__images li:first-child,
  .work-tile__images li:nth-child(4){
    width: 12.85rem;
  }
  .work-tile__images li:nth-child(2),
  .work-tile__images li:nth-child(3){
    width: 21.18rem;
  }
  .work-tile__detailsp{
    background-color: #F1F1F1;
    padding: 1.6rem 2.2rem 2rem 2.2rem;
  }
  .work-tile__texts{
    margin-bottom: 0.8rem;
  }
  .work-tile__text01{
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .work-tile__text02{
    font-size: 1.6rem;
  }
  .work-tile__price01{
    font-size: 2.6rem;
    margin-left: 0.4rem
  }
  .work-tile__price02{
    font-size: 1.4rem;
  }
  .work-tile__tax{
    font-size: 1rem;
    display: block;
    text-align: right;
    margin-right: 2.5rem;
  }
  .work-tile__list{
    gap:0.8rem 0.8rem;
  }
  .work-tile__list li{
    width: calc( ( 100% / 6 ) - 0.67rem );
  }
}

/* スマートロック
--------------------------------------------------*/
.work-lock{
  background-color: #F3F3F3;
}
.work-lock .m-title__english{
  color: #fff;
}
.work-lock__button{
  text-align: center;
}
.work-lock__button a{
  background-color: #fff;
  color: #444;
  font-weight: bold;
  border: 2px #444 solid;
  border-radius: 4rem;
  text-decoration: none;
}
.work-lock__button a:after{
/*
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("../images/additional-work/icon-blank.svg") center center no-repeat;
  background-size: 100% auto;
  margin-left: 0.4rem;
  display: inline-block;
*/
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #lock{
    top: -18.2rem;
  }
  .work-lock{
    margin: -10rem 0;
    padding: 18.2rem 3rem 22rem 3rem;
  }
  .work-lock__inner{
    max-width: 112rem;
    margin: 0 auto;
  }
  .work-lock__detail{
    background-color: #fff;
    border-radius: 1rem;
    padding: 4rem 5rem 5.6rem 4rem;
  }
  .work-lock__image{
    margin: 0 3rem 5rem 3rem;
  }
  .work-lock__button a{
    font-size: 1.6rem;
    padding: 1rem 4rem 1rem 4rem;
    transition: all .3s ease;
    opacity: 1;
  }
  .work-lock__button a:hover{
    opacity: 0.7;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #lock{
    top: -7.8rem;
  }
  .work-lock{
    margin: -5rem 0;
    padding:8rem 1.5rem 10rem 1.5rem;
  }
  .work-lock__detail{
  }
  .work-lock__image{
    margin-bottom: 4rem;
  }
  .work-lock__button a{
    font-size: 1.4rem;
    padding: 1rem 4rem 1rem 4rem;
  }
  .work-lock .work-title span{
    background-color: #F3F3F3;
  }
}

/* 防災設備
--------------------------------------------------*/
.work-drr{
  background-color: #FAE9E8;
}
.work-drr__table{ 
  border-top: 1px #B3B3B3 solid;
}
.work-drr__table th,
.work-drr__table td{
  vertical-align: middle;
  box-sizing: border-box;
}
.work-drr__table th{
  background-color: #444;
  color: #fff;
  font-weight: bold;
  border-left: 1px #D5D5D5 solid;
}
.work-drr__table th:first-child{
  border-left: none;
}
.work-drr__table td{
  color: #444;
  border-left: 1px #B3B3B3 solid; 
  border-right: 1px #B3B3B3 solid;
  border-bottom: 1px #B3B3B3 solid;
  font-weight: 500;
}
.work-drr__table td:first-child{
  color: #333;
  font-weight: bold;
}
.work-drr__table td:first-child img{
  vertical-align: middle;
}
.work-drr__table td:nth-child(2){
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}
.work-drr__price01{
  font-family: var(--font-poppins);
  font-weight: bold;
}
.work-drr__price02{
  font-family: var(--font-poppins);
}
.work-drr__tax{
  display: block;
  font-weight: 600;
}
.work-drr__text01{
  font-weight: bold;
}
.work-drr__text02{
  font-weight: bold;
}
.work-drr__text03{
  color: #333;
  font-weight: 500;
}
.work-drr__text04{
  color: #333;
}
.work-drr__box{
  border: 2px #444 solid;
}
.work-drr__boxText01{
  color: #444;
  font-weight: bold;
}
.work-drr__boxText02{
  color: #444;
}
.work-drr__read{
  position: relative;
  overflow: hidden;
}
.work-drr__read:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  mix-blend-mode:lighten;
  background: linear-gradient(0deg, #FFFFFF 30%, #444444 100%);
}
.work-drr__read.open:after{
  opacity:0;
  pointer-events:none;
}
.work-drr__readTitle{
  color: #444;
  font-weight: bold;
}
.work-drr__readButton{
  background-color: #fff;
  color: #444;
  font-weight: bold;
  border: 2px #444 solid;
  border-radius: 4rem;
  padding: 1rem;
  cursor: pointer;
  text-align: center;
  position: absolute;
  z-index: 3;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
}
.wrok-drr__Buttonicon{
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wrok-drr__Buttonicon:after,
.wrok-drr__Buttonicon:before{
  content: "";
  width: 1.2rem;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.wrok-drr__Buttonicon:before{
  transform: translate(-50%,-50%) rotate(-90deg);
}
.work-drr__attention{
  border: 2px #BB140D solid;
}
.work-drr__attentionText01{
  color: #BB140D;
  font-weight: bold;
}
.work-drr__attentionText02{
  color: #444;
  font-weight: 500;
}
ol.work-drr__list01{
  counter-reset: number 0;
}
ol.work-drr__list01>li:before{
  counter-increment: number 1;
  content: counter(number) ". ";
  margin-left: -1em;
}    
ol.work-drr__list01>li{
  padding-left: 1em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #drr{
    top: -18.3rem;
  }
  .work-drr{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% 100%,0 100%);
    padding: 8.3rem 3rem 22rem 3rem;
    margin-bottom: -10rem;
  }
  .work-drr__inner{
    max-width: 112rem;
    margin: 0 auto;
  }
  .work-drr__detail{
    background-color: #fff;
    border-radius: 1rem;
    margin-bottom: 5rem;
    padding: 4rem 5rem 4.6rem 4rem;
  }
  .work-drr__table{
    width: 100%;
  }
  .work-drr__table th{
    font-size: 1.6rem;
    padding: 0.9rem 1.2rem;
  }
  .work-drr__table th:first-child{
    width: min(24rem,23vw);
  }
  .work-drr__table th:nth-child(2){
    width: 16rem;
  }
  .work-drr__table th:nth-child(3){
    max-width: 18.6rem;
    width: 18%;
  }
  .work-drr__table td{
    padding: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .work-drr__table td:first-child{
    font-weight: 1.6rem;
  }
  .work-drr__table td:first-child img{
    width: min(8rem,5.4vw);
    margin-right: min(1.2rem,0.8vw);
  }
  .work-drr__price01{
    font-size: 2.2rem;
  }
  .work-drr__price02{
    font-size: 1.4rem;
  }
  .work-drr__tax{
    font-size: 1rem;
  }
  .work-drr__text01{
    font-size: 2rem;
    margin-top: 4.1rem;
    text-align: center;
  }
  .work-drr__text02{
    font-size: 2.6rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .work-drr__text03{
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
  }
  .work-drr__text04{
    font-size: 1.4rem;
    margin: 0.6rem 0 4.5rem 0;
    text-align: center;
  }
  .work-drr__box{
    padding: 3rem 4rem;
    margin: 3rem 0 6rem 0;
    text-align: center;
  }
  .work-drr__boxText01{
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .work-drr__boxText02{
    font-size: 1.6rem;
  }
  .work-drr__read{
    height: 17rem;
    margin-bottom: 3.2rem;
  }
  .work-drr__read:after{
    height: 13.8rem;
  }
  .work-drr__readTitle{
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
    text-align: center;
  }
  .work-drr__readText{
    font-size: 1.4rem;
    line-height: 1.6;
    padding-bottom: 6rem;
  }
  .work-drr__readButton{
    width: 20.2rem;
    font-size: 1.6rem;
    border-radius: 4rem;
    padding: 1rem;
  }
  .wrok-drr__Buttonicon{
    right: 1.5rem;
  }
  .work-drr__attention{
    background: url("../images/additional-work/icon-attention.svg") 5.1rem 4.1rem no-repeat;
    background-size: 6.3rem auto;
    padding: 3.7rem 5rem 4rem 13.9rem;
    margin-top: 5.7rem;
  }
  .work-drr__attentionText01{
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .work-drr__attentionText02{
    font-size: 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #drr{
    top: -8rem;
  }
  .work-drr{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 3rem 1.5rem 10rem 1.5rem;
    margin-bottom: -5rem;
  }
  .work-drr .m-title__english{
    font-size: 4.3rem;
  }
  .work-drr__detailsp{
    background-color: #fff;
    border-radius: 0.6rem;
    padding: 2rem;
    margin-top: 2rem;
  }
  .work-drr__tableWrapper{
    display: block;
    overflow-x: scroll;
    padding:0 1.5rem 0 0;
    margin:0 -1.5rem 5rem 0;
  }
  .work-drr__table tbody {
    width: 80rem;
    display:table;
  }
  .work-drr__table{
    background-color: #fff;
    width: 100%;
    border-left: none;
  }
  .work-drr__table th{
    font-size: 1.2rem;
    padding: 0.2rem 1.2rem;
  }
  .work-drr__table th:nth-child(2){
    width: 12rem;
  }
  .work-drr__table th:nth-child(3){
    width: 13.7rem;
  }
  .work-drr__table td{
    padding: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .work-drr__table td:first-child{
    background-color: #fff;
    text-align: center;
    position: sticky;
    left: 0;
  }
  .work-drr__table th:first-child{
    width: 12rem;
    position: sticky;
    left: 0;
  }
  .work-drr__table td:first-child:before,
  .work-drr__table th:first-child:before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc( 100% + 2px );
    height: calc( 100% + 2px );
    border-bottom: 1px solid #B3B3B3;
    border-right: 1px solid #B3B3B3;
    border-left: 1px #b3b3b3 solid;
  }
  .work-drr__table td:first-child img{
    width: 6rem;
    margin: 0 auto 0.6rem auto;
    display: block;
  }
  .work-drr__price01{
    font-size: 2rem;
  }
  .work-drr__price02{
    font-size: 1.2rem;
  }
  .work-drr__tax{
    font-size: 0.9rem;
  }
  .work-drr__text01{
    font-size: 1.6rem;
  }
  .work-drr__text02{
    font-size: 2rem;
    line-height: 1.45;
    margin-bottom: 1.2rem;
  }
  .work-drr__text03{
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .work-drr__text04{
    font-size: 1.4rem;
    margin: 0.4rem 0 4rem 0;
  }
  .work-drr__box{
    padding: 2rem;
    margin: 1.2rem 0 3rem 0;
  }
  .-center{
    text-align: center;
  }
  .work-drr__boxText01{
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }
  .work-drr__boxText02{
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .work-drr__read{
    height: 20.6rem;
    margin-bottom: 3.2rem;
  }
  .work-drr__read:after{
    height: 13.8rem;
  }
  .work-drr__readTitle{
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }
  .work-drr__readText{
    font-size: 1.4rem;
    line-height: 1.6;
    padding-bottom: 3rem;
  }
  .work-drr__readButton{
    width: 18.8rem;
    font-size: 1.4rem;
    border-radius: 4rem;
    padding: 0.8rem;
  }
  .wrok-drr__Buttonicon{
    right: 1.5rem;
  }
  .work-drr__attention{
    background: url("../images/additional-work/icon-attention.svg") center 2rem no-repeat;
    background-size: 6.5rem auto;
    padding: 9.3rem 2.4rem 2rem 2.4rem;
    margin-top: 4rem;
  }
  .work-drr__attentionText01{
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .work-drr__attentionText02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* オフィス家具
--------------------------------------------------*/
.work-furniture__item{
  position: relative;
}
.work-furniture__item:after{
  content: "";
  position: absolute;
  display: block;
}
.work-furniture__item:last-child:after{
  content: none;
}
.work-furniture__image{
  box-shadow: 4px 4px 30px rgba(101, 1, 1, 0.12);
  overflow: hidden;
}
.work-furniture__text{
  font-weight: bold;
}
.work-furniture__boxText{
  color: #BB140D;
  font-weight: bold;
  text-align: center;
}
.work-furniture__recycle{
  border: 5px #34890E solid;
}
.work-furniture__recycleText01{
  color: #17462F;
  font-weight: bold;
}
.work-furniture__recycleText02{
  color: #444;
  font-weight: 500;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  #furniture{
    top: -17.8rem;
  }
  .work-furniture{
    max-width: 112rem;
    margin: 0 auto;
    padding: 8rem 3rem 12rem 3rem;
  }
  .work-furniture__box{
    background-color: #F1F1F1;
    border-radius: 1rem;
    padding: 4.2rem 5rem 4rem 5rem;
    margin-bottom: 4rem;
  }
  .work-furniture__items{
    display: flex;
    justify-content: space-between;
    gap:0 min(7.5rem,5vw);
  }
  .work-furniture__item{
    width: calc( 50% - 3.75rem );
  }
  .work-furniture__item:after{
    width: min(3.7rem,2.47vw);
    height: min(7.61rem,5.1vw);
    background: url("../images/additional-work/arrow02.svg") center center no-repeat;
    background-size: 100% auto;
    right: -17.5%;
    top: min(7rem,4.7vw);
  }
  .work-furniture__image{
    border-radius: 1rem;
  }
  .work-furniture__text{
    font-size: 2rem;
    margin-top: 2rem;
    text-align: center;
  }
  .work-furniture__boxText{
    font-size: 3rem;
    margin-top: 3rem;
  }
  .work-furniture__recycle{
    background: url("../images/additional-work/mark-recycle.svg") 4.8rem center no-repeat;
    background-size: 13.5rem auto;
    padding: 3.7rem 5rem 4rem 21.5rem;
  }
  .work-furniture__recycleText01{
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .work-furniture__recycleText02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #furniture{
    top: -10.8rem;
  }
  .work-furniture{
    padding: 6rem 1.5rem;
  }
  .work-furniture .work-title span{
    background-color: #fff;
  }
  .work-furniture__box{
  }
  .work-furniture__items{
    margin:1.5rem 0 2rem 0;
  }
  .work-furniture__item{
    display: flex;
    align-items: center;
    gap:0 1.6rem;
    margin-bottom: 4.3rem;
  }
  .work-furniture__item:last-child{
    margin-bottom: 0;
  }
  .work-furniture__item:after{
    width: 5.2rem;
    height: 2.3rem;
    background: url("../images/additional-work/arrow01.svg") center center no-repeat;
    background-size: 100% auto;
    left: 6.6rem;
    bottom: -3.5rem;
  }
  .work-furniture__image{
    width: 19.1rem;
    border-radius: 0.6rem;
  }
  .work-furniture__text{
    font-size: 1.6rem;
  }
  .work-furniture__boxText{
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .work-furniture__recycle{
    background: url("../images/additional-work/mark-recycle.svg") 2.4rem 2rem no-repeat;
    background-size: 8.3rem auto;
    padding: 3.5rem 2rem 2rem 2rem;
  }
  .work-furniture__recycleText01{
    font-size: 1.8rem;
    line-height: 1.6;
    padding-left: 9.9rem;
    margin-bottom: 2.3rem;
  }
  .work-furniture__recycleText02{
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* オフィス移転
--------------------------------------------------*/
.work-moving{
  background-color: #FAE9E8;
}
.work-text02 span{
  color: #BB140D;
}
.work-moving__items{
  position: relative;
}
.work-moving__item{
  position: relative;
}
.work-moving__items01:before{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.work-moving__items02:before{
  content:"";
  background: url("../images/additional-work/close.svg") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
}
.work-moving__attention{
  background: url("../images/additional-work/moving-ballon.svg") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  color: #BB140D;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-moving__image{
  overflow: hidden;
  box-shadow: 4px 4px 30px rgba(101, 1, 1, 0.12);
}
.work-moving__text{
  font-weight: bold;
  text-align: center;
}
.work-moving__text.-red{
  color: #BB140D;
}
.work-moving__table{
  width: 100%;
  border-right: 1px #D5D5D5 solid;
  border-bottom: 1px #D5D5D5 solid;
}
.work-moving__table th,
.work-moving__table td{
  border-left: 1px #D5D5D5 solid;
  border-top: 1px #D5D5D5 solid;
  vertical-align: top;
}
.work-moving__table th{
  background-color: #F6F6F6;
  width: 50%;
  color: #333;
  font-weight: bold;
}
.work-moving__table td{
  color: #444;
  font-weight: 500;
  background-color: #fff;
}
.work-moving__table span{
  font-family: var(--font-poppins);
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #moving{
    top: -18.5rem;
  }
  .work-moving{
    padding: 8.5rem 3rem 17rem 3rem;
    margin-bottom: -10rem;
  }
  .work-moving__inner{
    max-width: 112rem;
    margin: 0 auto;
  }
  .work-moving__detail{
    background-color: #fff;
    border-radius: 1rem;
    margin-bottom: 5rem;
    padding: 4rem 5rem 4.6rem 5rem;
  }
  .work-moving__items{
    display: flex;
    justify-content: space-between;
    gap:0 min(14rem,9.33vw);
    margin-top: 4rem;
  }
  .work-moving__item{
    width: calc( 50% - min(7rem,4.67vw) );
  }
  .work-moving__items01:before{
    background: url("../images/additional-work/moving-arrow.svg") center center no-repeat;
    background-size: 100% auto;
    width: min(7rem,4.67vw);
    height: min(8.6rem,5.73vw);
    top: 9.7rem;
  }
  .work-moving__items02:before{
    width: min(8.3rem,5.53vw);
    height: min(8.3rem,5.53vw);
    top: min(9.2rem,6.14vw);
    left: 50%;
    transform: translateX(-50%);
  }
  .work-moving__attention{
    width: 19.1rem;
    height: 12.2rem;
    right: -4rem;
    bottom: -1.3rem;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .work-moving__image{
    border-radius: 1rem;
  }
  .work-moving__items02 .work-moving__image{
    border-radius: 1rem;
  }
  .work-moving__text{
    font-size: 2rem;
  }
  .work-moving__items01 .work-moving__text{
    margin-bottom: 0.8rem;
  }
  .work-moving__items02 .work-moving__text{
    margin-top: 1.6rem;
  }
  .work-moving__table th,
  .work-moving__table td{
    font-size: 1.6rem;
  }
  .work-moving__table th{
    padding: 0.4rem 1.2rem;
  }
  .work-moving__table td{
    line-height: 1.7;
    padding: 1rem 1.6rem 2.5rem 1.6rem;
  }
  .work-moving__table span{
    margin-right: 1.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #moving{
    top: -9rem;
  }
  .work-moving{
    padding: 4rem 1.5rem 10rem 1.5rem;
    margin-bottom: -5rem;
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% 100%,0 100%);
    overflow: hidden;
  }
  .work-moving__items01:before{
    background: url("../images/additional-work/moving-arrow-sp.svg") center center no-repeat;
    background-size: 100% auto;
    width: 5rem;
    height: 4.5rem;
    top: 25.5rem;
  }
  .work-moving__items02:before{
    width: 3.3rem;
    height: 3.3rem;
    top: 11.5rem;
    left: 8rem;
  }
  .work-moving__attention{
    width: 16.5rem;
    height: 11rem;
    right: -3rem;
    bottom: -1.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .work-moving__items01 .work-moving__item{
    margin-bottom: 5.7rem;
  }
  .work-moving__items02 .work-moving__item{
    display: flex;
    align-items: center;
    gap:0 1.6rem;
  }
  .work-moving__items02 .work-moving__item:first-child{
    margin-bottom: 5.3rem;
  }
  .work-moving__items02 .work-moving__image{
    width: 19.1rem;
    border-radius: 0.6rem;
  }
  .work-moving__text{
    font-size: 1.6rem;
    text-align: left;
  }
  .work-moving__items01 .work-moving__text{
    margin-bottom: 0.8rem;
  }
  .work-moving__items02 .work-moving__text{
    margin-top: 1.6rem;
  }
  .work-moving__table th,
  .work-moving__table td{
    font-size: 1.4rem;
  }
  .work-moving__table th{
    padding: 0.2rem 1.2rem;
  }
  .work-moving__table td{
    line-height: 1.85;
    padding: 0.9rem 1.2rem 1.8rem 1.2rem;
  }
  .work-moving__table span{
    margin-right: 0.2rem;
  }
}

/*==================================================

施工事例

==================================================*/

/* レイアウト
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .case-container{
    max-width: 112rem;
    margin: 0 auto;
    padding: 10rem 3rem 12rem 3rem;
    box-sizing: content-box;
    display: grid;
    gap:0 min(7rem,4.6vw);
    grid-template-columns:auto auto;
    grid-auto-rows: auto 1fr;
  }
  .case-search{
    width: 30rem;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    margin-bottom: 8rem;
  }
  .case-new{
    width: 30rem;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
  .case-list{
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
  .case-container .m-pagenavi{
    grid-row: 3 / 4;
    grid-column: 1 / 3;
  }
}

/* SP */
@media screen and (max-width: 767px){	
}

/* サイド
--------------------------------------------------*/
.case-search__building{
  border: 1px #EC9014 solid;
  color: #EC9014;
  text-align: center;
}
.l-sidenav__buildingTitle{
  font-weight: bold;  
}
.case-search__nav01 li a{
  color: #EC9014;
  font-weight: bold;
  border: 1px #EC9014 solid;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.case-search__nav01 li.current a{
  background-color: #EC9014;
  color: #fff;
}
.case-search__nav02 li a{
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.case-search__nav02 li:first-child a{
  color: #42BD74;
  border: 1px #42BD74 solid;
}
.case-search__nav02 li:last-child a{
  color: #2AB1E6;
  border: 1px #2AB1E6 solid;
}
.case-search__nav02 li:first-child.current a{
  background-color: #42BD74;
  color: #fff;
}
.case-search__nav02 li:last-child.current a{
  background-color: #2AB1E6;
  color: #fff;
}
.case-search__clear{
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
.case-new__item a{
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
.case-new__image img{
  object-fit: cover;
}
.case-new__time{
  color: #BB140D;
  font-family: var(--font-poppins);
  font-weight: 500;
}
.case-new__text{
  font-weight: bold;
}
.case-new__image img{
  object-fit: cover;
  aspect-ratio: 5 / 4;
}
.m-pagenavi{
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.m-pagenavi a,
.m-pagenavi span{
  font-family: var(--font-poppins);
  font-weight: 400;
  border: 1px #CCC solid;
  border-radius: 0.4rem;
	display: inline-flex;
  justify-content: center;
  align-items: center;
	text-decoration: none;
  margin: 0 0.4rem;
}
.m-pagenavi .current,
.m-pagenavi a:hover{
	content: "";
  border: 1px #333 solid;
	background-color: #333;
  color: #fff;
}
.m-pagenavi a.prev,
.m-pagenavi a.next{
	position: absolute;
  text-indent: -9999px;
}
.m-pagenavi a.prev{
  background: url("../images/shared/arrow-prev-red.svg") center center no-repeat;
	left: 0;
}
.m-pagenavi a.next{
  background: url("../images/shared/arrow-next-red.svg") center center no-repeat;
	right: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .case-side__title{
    background-color: #FAE9E8;
    border-left: 6px #BB140D solid;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 0.6rem 1.4rem 0.6rem 1.4rem;
    margin-bottom: 2.4rem;
  }
  .case-search__building{
    border-radius: 1rem;
    padding: 1rem 1.2rem 2rem 1.2rem;
    margin-bottom: 0.9rem;
  }
  .l-sidenav__buildingTitle{
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .case-search__nav01 li a{
    font-size: 1.4rem;
    border-radius: 1rem;
    padding: 1rem 1.2rem 1.1rem 1rem;
    margin-bottom: 0.8rem;
  }
  .case-search__nav01 li:last-child a{
    margin-bottom: 0;
  }
  .case-search__nav02 li a{
    font-size: 1.6rem;
    border-radius: 1rem;
    padding: 1.1rem 1.2rem 1.1rem 1.2rem;
    margin-bottom: 1rem;
  }
  .case-search__nav01 li a:hover{
    background-color: #EC9014;
    color: #fff;
  }
  .case-search__nav02 li:first-child a:hover{
    background-color: #42BD74;
    color: #fff;
  }
  .case-search__nav02 li:last-child a:hover{
    background-color: #2AB1E6;
    color: #fff;
  }
  .case-search__clear{
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .case-new__item a{
    gap:0 1.2rem;
    margin-bottom: 2.4rem;
  }
  .case-new__image{
    width: 10rem;
  }
  .case-new__image img{
    object-fit: cover;
    aspect-ratio: 5 / 4;
  }
  .case-new__texts{
    width: calc( 100% - 11rem );
  }
  .case-new__time{
    font-size: 1.2rem;
  }
  .case-new__text{
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: 0.3rem;
  }
  .m-pagenavi{
    padding: 0 7rem;
    margin-top: 8rem;
  }
  .m-pagenavi a,
  .m-pagenavi span{
    width: 4rem;
    height: 4rem;
    font-size: 1.4rem;
  }
  .m-pagenavi .current,
  .m-pagenavi a{
    transition: all .2s ease;
  }
  .m-pagenavi a.prev,
  .m-pagenavi a.next{
    width: 5rem!important;
    transition: all .3s ease;
  }
  .m-pagenavi a.prev:hover,
  .m-pagenavi a.next:hover{
    background-color: #fff!important;
    border: 1px #CCC solid!important;
  }
  .m-pagenavi a.prev:hover{
    background-position: 1rem center;
  }
  .m-pagenavi a.next:hover{
    background-position:right 1rem center;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .case-new .case-side__title{
    background-color: #FAE9E8;
    border-left: 6px #BB140D solid;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 0.6rem 2rem 0.7rem 2rem;
    margin-bottom: 1.6rem;
  }
  .case-search .case-side__title{
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.2rem;
  }
  .case-search{
    background-color: #F3F3F3;
    border-radius: 0.6rem;
    padding: 1.5rem;
    margin: 4rem 1.5rem;
  }
  .case-search__building{
    background-color: #fff;
    border-radius: 0.6rem;
    padding: 0.6rem 1rem 1rem 1rem;
    margin-bottom: 1.2rem;
  }
  .l-sidenav__buildingTitle{
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  .case-search__nav01,
  .case-search__nav02{
    display: flex;
    justify-content: space-between;
  }
  .case-search__nav01 li{
    width: calc( ( 100% / 3 ) - 0.4rem );
  }
  .case-search__nav01 li a{
    font-size: 1.2rem;
    border-radius: 0.6rem;
    padding: 0.8rem 0.3rem;
    margin-bottom: 0.8rem;
  }
  .case-search__nav01 span{
    font-size: 1.1rem;
    display: block;
  }
  .case-search__nav02 li{
    width: calc( 50% - 0.5rem );
  }
  .case-search__nav02 li a{
    background-color: #fff;
    font-size: 1.6rem;
    border-radius: 1rem;
    padding: 1.1rem 1rem 1.1rem 1rem;
  }
  .case-search__clear{
    font-size: 1.4rem;
    margin-top: 1.2rem;
  }
  .case-new{
    margin: 6rem 1.5rem;
  }
  .case-new__item a{
    gap:0 1.2rem;
    margin-bottom: 1.2rem;
  }
  .case-new__image{
    width: 7.5rem;
  }
  .case-new__image img{
    object-fit: cover;
    aspect-ratio: 15 / 12;
  }
  .case-new__texts{
    width: calc( 100% - 8.7rem );
  }
  .case-new__time{
    font-size: 1.2rem;
  }
  .case-new__text{
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 0.8rem;
  }
  .m-pagenavi{
    padding: 0 4.5rem;
  }
  .m-pagenavi a,
  .m-pagenavi span{
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.4rem;
  }
  .m-pagenavi .current,
  .m-pagenavi a{
    transition: all .3s ease;
  }
}

/* リスト
--------------------------------------------------*/
.case-list__item{
  background-color: #fff;
  border-radius: 1rem;
  box-sizing: border-box;
  box-shadow: 4px 4px 30px rgba(101, 1, 1, 0.12);
  font-weight: 500;
}
.case-list__item a{
  text-decoration: none;
}
.case-list__texts{
  position: relative;
}
.case-list__image img{
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
.case-list__number{
  color: #BB140D;
  font-family: var(--font-poppins);
  font-weight: bold;
  line-height: 1;
  position: absolute;
  right: 0;
}
.case-list__timecategory{
  color: #fff;
  font-weight: bold;
}
.case-list__time{
  color: #BB140D;
}
.case-list__category,
.case-new__category,
.case-title__category{ 
  color: #fff;
  font-weight: bold;
}
.case-list__category.-blue,
.case-new__category.-blue,
.case-title__category.-blue{
  background-color: #2AB1E6;  
}
.case-list__category.-orange,
.case-new__category.-orange,
.case-title__category.-orange{
  background-color: #EC9014;    
}
.case-list__category.-green,
.case-new__category.-green,
.case-title__category.-green{
  background-color: #42BD74;   
}
.case-list__category.-white,
.case-new__category.-white,
.case-title__category.-white{
  color: #BBB;
  border: 1px #BBB solid;
}
.case-list__text01{
  font-weight: bold;
}
.case-list__name{
  color: #666;
}
.case-list__text02{
  color: #444;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .case-list__items{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap:3rem 3rem;
  }
  .case-list__item{
    width: calc( 50% - 1.5rem );
  }
  .case-list__image img{
    aspect-ratio: 9 / 5;
  }
  .case-list__texts{
    padding: min(1.4rem,9.5vw) min(2.6rem,1.75vw) min(2.8rem,1.88vw) min(2.6rem,1.75vw);
  }
  .case-list__number{
    font-size: min(2rem,1.6vw); 
    top: -0.3rem;
    right: 0;
  }
  .case-list__number span{
    font-size: min(3rem,2.3vw); 
  }
  .case-list__timecategory{
    font-size: 1.2rem;
  }
  .case-list__time{
    font-size: 1.2rem;  
  }
  .case-list__category,
  .case-new__category{
    font-size: 1.2rem;  
    padding: 0 1rem 0.1rem 1rem;
    margin-left: 1rem;
  }
  .case-new__category{
    margin-left: 0.5rem;
  }
  .case-list__category.-white,
  .case-new__category.-white{
    padding: 0 0.4rem 0.1rem 0.4rem;
  }
  .case-list__text01{
    font-size: 2rem;
    line-height: 1.4;
    margin: 1rem 0;
  }
  .case-list__name{
    font-size: 1.4rem;  
    margin-bottom: 1rem;
  }
  .case-list__text02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .case-list{
    margin: 3rem 4rem 0 4rem;
  }
  .case-list__items{
    margin-bottom: 3rem;
  }
  .case-list__item{
    margin-bottom: 1.2rem;
  }
  .case-list__item:last-child{
    margin-bottom: 0;
  }
  .case-list__image img{
    aspect-ratio: 295 / 164;
  }
  .case-list__texts{
    padding: 1.2rem 1.6rem 2rem 1.6rem;
  }
  .case-list__number{
    top: 0;
    font-size: 1.4rem;
  }
  .case-list__number span{
    font-size: 2rem;  
  }
  .case-list__timecategory{
    font-size: 1.2rem;
  }
  .case-list__time{
    font-size: 1.2rem;  
  }
  .case-list__category,
  .case-new__category{
    font-size: 1rem;  
    padding: 0 0.8rem 0.1rem 0.8rem;
    margin-left: 0.4rem;
  }
  .case-list__text01{
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 0.4rem 0;
  }
  .case-list__name{
    font-size: 1.2rem;  
    margin-bottom: 0.4rem;
  }
  .case-list__text02{
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

/*==================================================

施工事例詳細

==================================================*/
.case-title__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.case-title__categories{  
  display: flex;
  align-items: center;
}
.case-title__time{ 
  font-family: var(--font-poppins);
  color: #BB140D;
  font-weight: 500;
}
.case-title__category.-white{ 
  color: #666;
}
.case-title__number{ 
  color: #BB140D;
  font-family: var(--font-poppins);
  font-weight: bold;
  position: relative;
}
.case-detail__title{
  font-weight: bold;
}
.case-largeimage,
.case-smallimage{
  background-color: #D5D5D5;
  overflow: hidden;
}
.case-largeimage img,
.case-smallimage img{
  object-fit: contain;
}
.case-smallimage{  
  cursor: pointer;
}
.case-images .slick-prev,
.case-images .slick-next{
  background-color: transparent;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}
.case-images .slick-prev{
  background: url("../images/case/arrow-up.svg") center center no-repeat;
  background-color: #D5D5D5;
}
.case-images .slick-next{
  background: url("../images/case/arrow-down.svg") center center no-repeat;
  background-color: #D5D5D5;
}
.case-detail__text01{
  background-position: 0 0;
  background-repeat: no-repeat;
  font-weight: bold;
}
.case-detail__texts:first-child .case-detail__text01{
  background-image: url("../images/case/icon01.svg");
}
.case-detail__texts:nth-child(2) .case-detail__text01{
  background-image: url("../images/case/icon02.svg");
}
.case-detail__texts:last-child .case-detail__text01{
  background-image: url("../images/case/icon03.svg");
}
.case-detail__text02{
  color: #444;
  border-bottom: 1px #D5D5D5 solid;
}
.case-detail__information{ 
  border: 6px #FAE9E8 solid;
  box-sizing: border-box;
}
.case-detail__informationTitle{ 
  font-weight: bold;
  text-align: center;
}
.case-detail__informationTitle:before{ 
  content: "";
  background: url("../images/case/icon04.svg") center center no-repeat;
  background-size: 100% auto;
  display: inline-block;
  vertical-align: middle;
}
.case-detail__table{ 
  width: 100%;
}
.case-detail__table th,
.case-detail__table td{ 
  border-bottom: 1px #D5D5D5 solid;
}
.case-detail__table th{ 
  font-weight: bold;
}
.case-detail__table td{ 
  color: #444;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .case-content{
    max-width: 112rem;
    margin: 0 auto;
    padding: 10.5rem 3rem 12rem 3rem;
    box-sizing: content-box;
  }
  .case-title{
    margin-bottom: 4rem;
  }
  .case-title__categories{  
    gap:0 1rem;
    margin-bottom: 2.9rem;
  }
  .case-title__time{ 
    font-size: 1.6rem;
  }
  .case-title__category{ 
    font-size: 1.4rem;
    border-radius: 0.3rem;
    padding: 0.1rem 1.4rem 0.1rem 1.4rem;
  }
  .case-title__category.-white{ 
    padding: 0.1rem 0.6rem 0.1rem 0.6rem;
  }
  .case-title__number{ 
    font-size: 2rem;
    top: -1rem;
  }
  .case-title__number span{ 
    font-size: 3rem;
  }
  .case-detail__title{
    font-size: 3.4rem;
    line-height: 1.4;
  }
  .case-images{
    display: flex;
    justify-content: space-between;
    margin-bottom: 7.9rem;
  }
  .case-largeimages{
    width: calc( 100% - min(22rem,14.66vw) );
    order: 2;
  }
  .case-largeimage img{
    aspect-ratio: 450 / 337;
  }
  .case-smallimages{  
    width: min(17rem,11.333vw);
    order: 1;
  }
  .case-largeimage{ 
    border-radius: 1rem; 
  }
  .case-smallimage{ 
    border-radius: 1rem; 
    opacity: 1;
    transition: all .3s ease;
  }
  .case-smallimage:hover{ 
    opacity: 0.8;
  }
  .case-smallimage.slick-slide{
    margin: min(0.8rem,0.533vw) 0;
  }
  .case-smallimage{  
    width: min(17rem,11.333vw)!important;
    border-radius: 0.6rem;
  }
  .case-smallimage img{
    aspect-ratio: 85 / 64;
  }
  .case-smallimage.slick-current{
    border: 5px #BB140D solid;
    border-radius: 0.6rem;
  }
  .case-images .slick-prev,
  .case-images .slick-next{
    width: min(17rem,11.333vw);
    height: min(4rem,2.666vw);
    border-radius: 0.6rem;
    transition: all .3s ease;
  }
  .case-images .slick-prev:hover,
  .case-images .slick-next:hover{
    background-color: #333;
  }
  .case-images .slick-prev{
    margin-bottom: min(0.8rem,0.533vw);
  }
  .case-images .slick-next{
    margin-top: min(0.8rem,0.533vw);
  }
  .case-detail{ 
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .case-detail__left{ 
    width: calc( 100% - 36rem );
  }
  .case-detail__text01{
    background-size: 3.6rem auto;
    font-size: 2.4rem;
    padding: 0 0 0 5.2rem;
  }
  .case-detail__text02{
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 2rem 0 2.4rem 5.2rem;
    margin-bottom: 3rem;
  }
  .case-detail__information{ 
    width: 29.6rem;
    padding: 1.8rem 2.6rem 3rem 2.6rem;
  }
  .case-detail__informationTitle{ 
    font-size: 2.4rem;
    margin-bottom: 0.9rem;
  }
  .case-detail__informationTitle:before{ 
    content: "";
    width: 4rem;
    height: 4rem;
    margin-right: 0.4rem;
  }
  .case-detail__table th,
  .case-detail__table td{ 
    padding: 1.7rem 0;
    vertical-align: top;
  }
  .case-detail__table th{ 
    width: 6.2em;
    font-size: 1.8rem;
  }
  .case-detail__table td{ 
    font-size: 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .case-content{
    padding: 4rem 1.5rem 5rem 1.5rem;
  }
  .case-title{
    margin-bottom: 3rem;
  }
  .case-title__categories{  
    gap:0 0.4rem;
    margin-bottom: 1.2rem;
  }
  .case-title__time{ 
    font-size: 1.4rem;
  }
  .case-title__category{ 
    font-size: 1rem;
    border-radius: 0.3rem;
    padding: 0.1rem 0.8rem 0.1rem 0.8rem;
  }
  .case-title__category.-white{ 
    padding: 0.1rem 0.4rem 0.1rem 0.4rem;
  }
  .case-title__number{ 
    font-size: 1.4rem;
    top: -0.5rem;
  }
  .case-title__number span{ 
    font-size: 2rem;
  }
  .case-detail__title{
    font-size: 2.4rem;
    line-height: 1.45;
  }
  .case-largeimage img{
    aspect-ratio: 345 / 259;
  }
  .case-largeimage{ 
    border-radius: 1rem; 
    margin-bottom: 1.5rem;
  }
  .case-smallimages{
    margin: 0 -0.3rem;
  }
  .case-smallimage.slick-slide{
    width: 6.2rem!important;
    margin: 0 0.4rem 0.8rem 0.4rem;
  }
  .case-smallimage.slick-current{
    border: 2px #BB140D solid;
    border-radius: 0.2rem;
  }
  .case-smallimage{  
    border-radius: 0.3rem;
  }
  .case-smallimage img{
    aspect-ratio: 62 / 47;
  }
  .case-detail__left{ 
    margin:4rem 0 3.6rem 0;
  }
  .case-detail__text01{
    background-size: 3rem auto;
    font-size: 1.8rem;
    padding: 0 0 0 3.8rem;
  }
  .case-detail__text02{
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 0.8rem 0 2.4rem 3.8rem;
    margin-bottom: 1.8rem;
  }
  .case-detail__information{ 
    padding: 2.1rem 2.8rem 1.9rem 2.8rem;
  }
  .case-detail__informationTitle{ 
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .case-detail__informationTitle:before{ 
    content: "";
    width: 3rem;
    height: 3rem;
    margin-right: 0.4rem;
  }
  .case-detail__table th,
  .case-detail__table td{ 
    padding: 1.5rem 0;
    font-size: 1.4rem;
  }
  .case-detail__table th{ 
    width: 7em;
  }
  .case-detail__table td{ 
  }
}

/*==================================================

会社情報

==================================================*/

/* ページナビ
--------------------------------------------------*/
.company-pagenav{
  display: flex;
  justify-content: space-between;
}
.company-pagenav li{
  overflow: hidden;  
  filter: drop-shadow(4px 4px 30px rgba(101, 1, 1, 0.12));
  border: 1px #D5D5D5 solid;
}
.company-pagenav li a{
  color: #444;
  font-weight: bold;
  text-align: center;
  display: block;
  text-decoration: none;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .company-pagenav{
    max-width: 112rem;
    margin: 0 auto;
    padding: 5rem 2rem;
    box-sizing: content-box;
  }
  .company-pagenav li{
    width: calc( 25% - min(1.5rem,1vw) );
    border-radius: 1rem;
  }
  .company-pagenav li a{
    background:#fff url("../images/shared/arrow-down-red.svg") center bottom 0.6rem no-repeat;
    background-size: 2rem auto;
    font-size: min(1.4rem,8.5vw);
    padding: 1rem 0 2.7rem 0;
    transition: all .2s ease;
  }
  .company-pagenav li a:hover{
    background-position: center bottom 0.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .company-pagenav{
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
    gap:0.7rem 0.7rem;
  }
  .company-pagenav li{
    width: calc( 50% - 0.35rem );
    border-radius: 0.6rem;
  }
  .company-pagenav li a{
    background:#fff url("../images/shared/arrow-down-red.svg") center bottom 0.4rem no-repeat;
    background-size: 1.8rem auto;
    font-size: 1.2rem;
    padding: 0.8rem 0.3rem 2rem 0.3rem;
  }	
}

/* パーテーション職人の考え
--------------------------------------------------*/
.company-message{
  background-color: #FAE9E8;
  clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
}
.company-message__inner{
  color: #333;
  position: relative;
}
.company-message__text{
  font-weight: bold;
}
.company-message__name{
  font-weight: bold;
  text-align: right;
}
.company-message__picture{
  position: absolute;
}
#message,
#outline,
#access,
#recruit{
  position: relative;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #message{
    top: -18.5rem;
  }
  .company-message{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 8.5rem 3rem 3rem 3rem;
  }
  .company-message__inner{
    max-width: 112rem;
    margin: 0 auto;
  }
  .company-message__text{
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
    margin:4.5rem 0 6.6rem 0;
  }
  .company-message__name{
    font-size: 1.6rem;
    margin-right: 15rem;
  }
  .company-message__picture{
    width: 15.2rem;
    right: 0;
    bottom: -2.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #message{
    top: -9.5rem;
  } 
  .company-message{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 4.5rem 2rem 5rem 2rem;
  }
  .company-message__inner{
  }
  .company-message__text{
    font-size: 1.4rem;
    line-height: 1.6;
    margin:1rem 0 5rem 0;
  }
  .company-message__name{
    font-size: 1.3rem;
    margin-right: 8rem;
  }
  .company-message__picture{
    width: 9rem;
    right: 0;
    bottom: -3.5rem;
  }
}

/* 会社概要
--------------------------------------------------*/
.company-outline__table{
  width: 100%;
}
.company-outline__table th,
.company-outline__table td{
  color: #444;
  border-bottom: 1px #D5D5D5 solid;
  vertical-align: top;
}
.company-outline__table th{
  font-weight: bold;
}
.company-outline__table a{
  color: #444;
  text-decoration: underline;
}
.company-outline__table a:after{
  content: "";
  background: url("../images/company/icon-blank.svg") right center no-repeat;
  background-size: 100% auto;
  display: inline-block;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #outline{
    top: -17.8rem;
  }
  .company-outline{
    max-width: 112rem;
    margin: 0 auto;
    padding: 8rem 3rem 12rem 3rem;
    box-sizing: content-box;
  }
  .company-outline__table{
    margin-top: 5rem;
  }
  .company-outline__table th,
  .company-outline__table td{
    padding: 2.4rem 1rem;
  }
  .company-outline__table th{
    max-width: 24rem;
    font-size: 1.8rem;
  }
  .company-outline__table td{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .company-outline__table a:after{
    width: 1.4rem;
    height: 1.4rem;
    margin-left: 0.4rem;
  }
  .company-outline__table a:hover{
    text-decoration: none;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #outline{
    top: -9rem;
  }
  .company-outline{
    padding: 4rem 2rem;
  }
  .company-outline__table{
    margin-top: 1rem;
  }
  .company-outline__table th,
  .company-outline__table td{
    padding: 1.3rem 0;
  }
  .company-outline__table th{
    width: 7.5em;
    font-size: 1.4rem;
  }
  .company-outline__table td{
    font-size: 1.4rem;
  }
  .company-outline__table a:after{
    width: 1.1rem;
    height: 1.1rem;
    margin-left: 0.4rem;
  }
}

/* アクセス
--------------------------------------------------*/
.company-access{
  background-color: #F3F3F3;
}
.company-access .m-title__english{
  color: #fff;
}
.company-access__inner{
  color: #444;
}
.company-access__mainText01 span{
  color: #333;
  font-weight: bold;
  display: block;
}
.company-access__text01{
  color: #333;
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #access{
    top: -18.5rem;
  }
  .company-access{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 8.5rem 3rem 12rem 3rem;
  }
  .company-access__inner{
    max-width: 90rem;
    margin: 0 auto;
  }
  .company-access__mainMap{
    margin: 6rem 0 5.3rem 0;
  }
  .company-access__detail{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 2rem;
  }
  .company-access__mainText01{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .company-access__mainText01 span{
    font-size: 2rem;
  }
  .company-access__mainText02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .company-access__maps{
    display: flex;
    justify-content: space-between;
  }
  .company-access__map{
    width: calc( 50% - 2.9rem );
  }
  .company-access__text01{
    font-size: 2rem;
    margin-top: 0.8rem;
  }
  .company-access__text02{
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .company-access__mapL iframe{
    height: 38rem;
  }
  .company-access__mapS iframe{
    height: 27rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  #access{
    top: -8rem;
  }	
  .company-access{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 3rem 2rem 3rem 2rem;
  }
  .company-access__mainMap{
    margin: 1rem 0 2rem 0;
  }
  .company-access__detail{
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 0.5rem;
  }
  .company-access__mainText01 span{
    font-size: 1.6rem;
  }
  .company-access__mainText02{
    font-size: 1.5rem;
    margin-top: 0.8rem;
  }
  .company-access__text01{
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
  .company-access__text02{
    font-size: 1.5rem;
  }
  .company-access__map{
    margin-bottom: 2rem;
  }
  .company-access__mapL iframe{
    height: 20rem;
  }
  .company-access__mapS iframe{
    height: 20rem;
  }
}

/* 採用情報
--------------------------------------------------*/
.company-recruit__text01{
  font-weight: bold;
  text-align: center;
}
.company-recruit__text02{
  color: #333;
  font-weight: 500;
}
.company-recruit__button{
  margin: 0 auto;
}
.company-recruit__button a{
  max-width: 56.1rem;
  background: radial-gradient(55.52% 88.89% at 45% 0%, #666666 0%, #222222 97.5%);
  color: #fff;
  font-weight: bold;
  display: block;
  text-decoration: none;
  position: relative;
}
.company-recruit__button a:before{
  content: "";
  background: url("../images/shared/icon-contact-white.svg") center center no-repeat;
  background-size: 100% auto;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.company-recruit__button span{
  font-family: var(--font-poppins);
  display: block;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  #recruit{
    top: -18rem;
  }
  .company-recruit{
    max-width: 112rem;
    padding: 8rem 3rem 12rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;
  }
  .company-recruit__text01{
    font-size: 2.4rem;
    margin: 5.3rem 0 2rem 0;
  }
  .company-recruit__text02{
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
  }
  .company-recruit__image{
    max-width: 75rem;
    width: 67%;
    margin:0 auto 3rem auto;
  }
  .company-recruit__button{
    max-width: 56.1rem;
  }
  .company-recruit__button a{
    max-width: 56.1rem;
    font-size: 1.8rem;
    border-radius: 10rem;
    padding: 1.8rem 1rem 1.4rem 12.9rem;
    opacity: 1;
    transition: all .3s ease;
  }
  .company-recruit__button a:before{
    width: 5.1rem;
    height: 5.1rem;
    left: 6rem;
  }
  .company-recruit__button a:hover{
    opacity: 0.8;
  }
  .company-recruit__button span{
    font-size: 2.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #recruit{
    top: -10rem;
  }
  .company-recruit{
    padding: 5rem 3rem 5rem 3rem;
  }
  .company-recruit__text01{
    font-size: 1.8rem;
    margin: 1rem 0 1rem 0;
  }
  .company-recruit__text02{
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .company-recruit__image{
    max-width: 55rem;
    margin:0 auto 2rem auto;
  }
  .company-recruit__button{
    width: 100%;
  }
  .company-recruit__button a{
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.3;
    border-radius: 10rem;
    padding: 1.6rem 1rem 1.6rem 6.5rem;
  }
  .company-recruit__button a:before{
    width: 3rem;
    height: 3rem;
    left: 2.5rem;
  }
  .company-recruit__button span{
    font-size: 1.7rem;
  }
}

/*==================================================

お知らせ

==================================================*/
.news-list li{
  border-bottom: 1px #D5D5D5 solid;
}
.news-list a{
  text-decoration: none;
}
.news-list__time{
  color: #BB140D;
  font-weight: 600;
}
.news-list__text{
  width: calc( 100% - 8rem );
  color: #444;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .news-content{
    max-width: 90rem;
    padding: 8rem 3rem 15rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;
  }
  .news-list{
    margin: 0 0 8rem 0;
  }
  .news-list > li > a,
  .news-list > li > span{
    display: flex;
    align-items: center;
    padding: 2.4rem 6.9rem 2.4rem 2.4rem;
    transition: all .3s ease;
  }
  .news-list > li > a{
    background: url("../images/shared/arrow-red.svg") right 2.4rem bottom 3.2rem no-repeat;
    background-size: 2.1rem auto;
  }
  .news-list a:hover{
    background-position: right 1.9rem bottom 3.2rem;
  }

  .home-news__list a[target="_blank"],
  .news-list a[target="_blank"]{
    background: url("../images/company/icon-blank.svg") right 2.4rem bottom 3.2rem no-repeat;
    background-size: 1.4rem auto;
  }
  /* .home-news__list a[target="_blank"] .home-news__text:after,
  .news-list a[target="_blank"] .news-list__text:after{
    width: 1.4rem;
    height: 1.4rem;
    content: "";
    background: url("../images/company/icon-blank.svg") center center no-repeat;
    background-size: 100% auto;
    margin-left: 0.4rem;
    display: inline-block;
  } */

  .news-list__time{
    width: 9rem;
    font-size: 1.4rem;
  }
  .news-list__text{
    width: calc( 100% - 8rem );
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .news-content{
    padding:3rem 2rem 5rem 2rem;
  }
  .news-list{
    margin: 0 0 2rem 0;
  }
  .news-list a{
    background: url("../images/shared/arrow-red.svg") right 1.5rem bottom 1.6rem no-repeat;
    background-size: 2.1rem auto;
    padding: 1.8rem 3.5rem 1.8rem 1.5rem;
    display: block;
  }
/*
  .home-news__list a[target="_blank"],
  .news-list a[target="_blank"]{
    background: url("../images/company/icon-blank.svg") right 2.4rem bottom 3.2rem no-repeat;
    background-size: 1.1rem auto;
  }
  .home-news__list a[target="_blank"] .home-news__text:after,
  .news-list a[target="_blank"] .news-list__text:after{
    width: 1.1rem;
    height: 1.1rem;
    content: "";
    background: url("../images/company/icon-blank.svg") center center no-repeat;
    background-size: 100% auto;
    margin-left: 0.4rem;
    display: inline-block;
  }
*/
  .news-list__time{
    font-size: 1.2rem;
    display: block;
  }
  .news-list__text{
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* 詳細
--------------------------------------------------*/
.news-detail.-nonephoto .news-image{
  display: none;  
}
.news-detail{
  position: relative;
}
.news-heading{
  position: relative;
}
.news-heading:before{
  content: "";
  background-color: #FAE9E8;
  position: absolute;
  top: 0;
  bottom: 0;
}
.news-body{
  position: relative;
  z-index: 5;
}
.news-time{
  font-family: var(--font-poppins);
  color: #BB140D;
  font-weight: 500;
  display: block;
  position: relative;
}
.news-image{
  position: relative;
}
.news-title01{
  position: relative;
  font-weight: bold;
}
.news-title02{
  font-weight: bold;
  position: relative;
}
.news-title02:before{
  content: "";
  width: 0.5rem;
  background-color: #BB140D;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.news-title03{
  font-weight: bold;
  border-bottom: 1px #D5D5D5 solid;
}
.news-title04{
  font-weight: bold;
}
.news-title05{
  font-weight: bold;
}
.news-text{
  color: #444;
}
.news-table{
  width: 100%;
  border-bottom: 1px #d4d4d4 solid; 
  border-right: 1px #d4d4d4 solid;
}
.news-table th,
.news-table td{
  border-top: 1px #d4d4d4 solid; 
  border-left: 1px #d4d4d4 solid;
}
.news-table th{
  background-color: #f6f6f6;
  color: #333;
  font-weight: bold;
}
.news-table td{
  color: #444;
}
.news-body a{
  color: #444;
  text-decoration: underline;
}
.news-body a[target="_blank"]{
  background: url("../images/company/icon-blank.svg") right 1.2rem center no-repeat;
}
.news-button a{
  background: url("../images/shared/arrow-next-red.svg") right 1.3rem center no-repeat;
  color: #333;
  font-weight: bold;
  border: 1px #D5D5D5 solid;
  text-decoration: none;
  display: inline-block;
}
.news-social{
  background-color: #F6F6F6;
}
.news-social__text{
  color: #333;
  font-weight: bold;
}
.news-social__link{
  display: flex;
}
.m-nextprev{
	position: relative;
}
.m-nextprev__prev,
.m-nextprev__next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
  color: #333;
  font-weight: bold;
  border-bottom: 1px #D5D5D5 solid;
}
.m-nextprev__prev{
  background: url("../images/shared/arrow-prev-red.svg") 1.2rem center no-repeat;
	left: 0;
}
.m-nextprev__next{
  background: url("../images/shared/arrow-next-red.svg") right 1.2rem center no-repeat;
	right: 0;
	text-align: right;
}
.m-nextprev a{
  text-decoration: none;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .news-detail{
    padding: 0 3rem 15rem 3rem;
  }
  .news-heading:before{
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    left:calc( 50% - 50vw );
    right:calc( 50% - 50vw );
  }
  .news-body{
    max-width: 90rem;
    margin: 10rem auto 0 auto;
  }
  .news-heading{
    padding: 8rem 0 20rem 0;
    margin:0 0 5rem 0;
  }
  .news-detail.-nonephoto .news-heading{
    padding: 8rem 0 8rem 0;
    margin-bottom: 9rem;
  }
  .news-detail.-nonephoto:after{
    height: 38.5rem;
  }
  .news-time{
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  .news-image{
    margin:-19.7rem 0 8rem 0;
  }
  .news-title01{
    font-size: 3.4rem;
    line-height: 1.4;
  }
  .news-title02{
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
    padding-left: 2rem;
  }
  .news-title03{
    font-size: 2.4rem;
    padding-bottom: 1.2rem;
    margin-bottom: 3rem;
  }
  .news-title04{
    font-size: 2.4rem;
    margin-bottom: 2.2rem;
  }
  .news-title05{
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .news-text{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 8rem;
  }
  .news-table{
    width: 100%;
    margin-bottom: 8.5rem;
  }
  .news-table th,
  .news-table td{
    padding: 1.1rem 1.2rem;
  }
  .news-table th{
    font-size: 1.5rem;
  }
  .news-table td{
    font-size: 1.6rem;
  }
  .news-body a{
    font-size: 1.6rem;
  }
  .news-body a:hover{
    text-decoration: none;
  }
  .news-body a[target="_blank"]{
    background-size: 1.5rem auto;
    padding-right: 3.2rem;
  }
  .news-button a{
    background-size: 2.2rem auto;
    font-size: 1.4rem;
    border-radius: 4rem;
    padding: 1.2rem 5.2rem 1.2rem 4rem;
    transition: all .3s ease;
  }
  .news-button a:hover{
    background-position: right 1rem center;
  }
  .news-social{
    border-radius: 1rem;
    max-width: 48.8rem;
    padding: 2.5rem 8.7rem 2.5rem 8rem;
    margin: 0 auto;
    box-sizing: content-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }
  .news-social__text{
    font-size: 1.6rem;
  }
  .news-social__link{
    justify-content: flex-end;
    gap:0 2rem;
  }
  .news-social__link li{
    width: 4.4rem;
  }
  .news-social__link a{
    transition: all .3s ease;
    opacity: 1;
  }
  .news-social__link a:hover{
    opacity: 0.8;
  }
  .m-nextprev{
    max-width: 90rem;
    height: 4.6rem;
    padding: 0 3rem;
    margin: 8rem auto;
  }
  .m-nextprev__prev,
  .m-nextprev__next{
    font-size: 1.6rem;
    transition: all .3s ease;
  }
  .m-nextprev__prev{
    padding: 1.2rem 3rem 1.2rem 5.2rem;
  }
  .m-nextprev__next{
    background-size: 2.2rem auto;
    padding: 1.2rem 5.2rem 1.2rem 3rem;
  }
  .m-nextprev__prev:hover{
    background-position: 1rem center;
  }
  .m-nextprev__next:hover{
    background-position: right 1rem center;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .news-detail{
    padding: 0 2rem 5rem 2rem;
  }
  .news-heading:before{
    clip-path: polygon(0 0,100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    left: -2rem;
    right: -2rem;
  }
  .news-heading{
    padding: 8rem 0 10rem 0;
    margin:0 0 5rem 0;
  }
  .news-detail.-nonephoto .news-heading{
    padding: 8rem 0 4rem 0;
  }  
  .news-body{
    max-width: 90rem;
    margin: 0 auto;
  }
  .news-time{
    font-size: 1.4rem;
  }
  .news-image{
    margin:-12rem 0 3rem 0;
  }
  .news-title01{
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .news-title02{
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }
  .news-title03{
    font-size: 1.8rem;
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
  }
  .news-title04{
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .news-title05{
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  .news-text{
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
  }
  .news-table{
    width: 100%;
    margin-bottom: 4rem;
  }
  .news-table th,
  .news-table td{
    padding: 0.7rem 0.5rem;
  }
  .news-table th{
    font-size: 1.4rem;
  }
  .news-table td{
    font-size: 1.4rem;
  }
  .news-body a{
    font-size: 1.4rem;
  }
  .news-body a[target="_blank"]{
    background-size: 1.2rem auto;
    padding-right: 3rem;
  }
  .news-button a{
    background-size: 2rem auto;
    font-size: 1.3rem;
    border-radius: 4rem;
    padding: 1rem 4.8rem 1rem 3.5rem;
    opacity: 1;
    transition: all .3s ease;
  }
  .news-social{
    width: 80%;
    border-radius: 1rem;
    padding: 2.2rem 2rem;
    margin: 0 auto;
  }
  .news-social__text{
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .news-social__link{
    justify-content: flex-end;
    justify-content: center;
    gap:0 1.5rem;
  }
  .news-social__link li{
    width: 3.4rem;
  }
  .m-nextprev{
    height: 4.6rem;
    padding: 0 3rem;
    margin: 4rem auto;
  }
  .m-nextprev__prev,
  .m-nextprev__next{
    background-size: 1.6rem auto;
    font-size: 1.4rem;
  }
  .m-nextprev__prev{
    padding: 1rem 1rem 1rem 3.7rem;
  }
  .m-nextprev__next{
    padding: 1rem 3.7rem 1rem 1rem;
  }
}

/*==================================================

お問い合わせ・よくあるご質問

==================================================*/

/* お問い合わせ
--------------------------------------------------*/
.contact-forfaq__text{
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.contact-forfaq__button{
  text-align: center;
  margin: 0 auto;
}
.contact-forfaq__button a{
  background:#333 url("../images/shared/arrow-down-white.svg") right 4rem top 1.6em no-repeat;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 4rem;
  padding: 2rem 8.5rem 2rem 6rem;
  display: inline-block;
  text-decoration: none;
}
.contact-content{
  background-color: #FAE9E8; 
}
.contact-text{
  color: #3C3C3C;
  text-align: center;
  font-weight: bold;
}
.contact-form{
  width: 100%;
}
.contact-form th,
.contact-form td{
  color: #3C3C3C;  
  vertical-align: middle;
  border-bottom: 1px #ccc solid;
  box-sizing: border-box;
}
.contact-form th{ 
  font-weight: bold;
}
.must{
  background-color: #BB140D;
  color: #fff;
  font-weight: bold;
}
input,
button,
select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input,
select{
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #D5D5D5;
}
select{
  background:#fff url("../images/shared/arrow-down-red.svg") right 1.7rem center no-repeat;
}
.contact-agree input[type="checkbox"] {
  display: none;
}
/*
.contact-agree input[type="checkbox"]{
  background:#fff url("../images/shared/check.svg") center center no-repeat;
  vertical-align: middle;
  position: relative;
  border: 1px solid #D5D5D5;
  border-radius: 0.5rem;
  display: inline-block;
  transition: all .3s ease;
}
input[type="checkbox"]:checked + input[type="checkbox"] {
  background-color: #333;
  border-color: #333;
}
*/


.contact-agree .wpcf7-list-item-label {
    position: relative;
    height: 20px;
    line-height: 20px;
    padding-left: 25px;
    display: inline-block;
}
.contact-agree .wpcf7-list-item-label::before {
  content: "";
  display: block;
  border: 1px solid #D5D5D5;
  background:#fff url("../images/shared/check.svg") center center no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  transition: all .3s ease;
  border-radius: 0.3rem;
}
.contact-agree input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  background:#333 url("../images/shared/check.svg") center center no-repeat;
  border-color: #333;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.3rem;
}
.contact-form .text01{
  font-weight: bold;
  display: block;
}
.contact-form .text02{
  color: #444;
  display: block;
}
.contact-privacy{
  color: #444;
  text-align: center;
}
.contact-agree{
  text-align: center;
}
.contact-agree__text{
  color: #444;
}
.contact-agree .must{
  position: inherit;
  left: auto;
  top: auto;
}
input[type=file]::file-selector-button {
  color: #fff;
  font-weight: bold;
  background-color: #333;
  border-radius: 0.5rem;
  cursor: pointer;
}
.wpcf7-file{
  border: none;
  background-color: transparent;
  padding: 0;
}
.wpcf7-file{
  width: 100%;
}
.contact-button{
  background: radial-gradient(55.52% 88.89% at 45% 0%, #D51314 0%, #A60B05 97.5%);
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  display: flex!important;
  justify-content: center!important;
  align-items: center!important;
  position: relative;
  cursor: pointer;
  border-radius: 10rem;
  display: inline-block;
}
.contact-button:after{
  content: "";
  background: url("../images/shared/arrow-news.svg") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}
.contact-button .send{
  color: #fff;
  padding: 0;
  background-color: transparent;
  border: none;
  margin: 0 auto;
  cursor: pointer;
}
#faq{
  position: relative;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  color: #dc3232;
  border: none;
  text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output{
  color: #dc3232;
  border: none;
  text-align: center;  
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .contact-forfaq{
    max-width: 112rem;
    padding: 5rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;
  }
  .contact-forfaq__text{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .contact-forfaq__button a{
    font-size: 1.8rem;
    border-radius: 4rem;
    padding: 2rem 8.5rem 2rem 6rem;
    background-size: 1.8rem auto;
    transition: all .2s ease;
  }
  .contact-forfaq a:hover{
    background-position: right 4rem top 1.75em;
  }
  .contact-content{
    clip-path: polygon(0 10rem, 18rem 0, 100% 0,100% calc( 100% - 10rem ),calc( 100% - 18rem ) 100%, 100% 100%,0 100%);
    padding: 8rem 3rem 11.4rem 3rem;  
  }
  .contact-content__inner{
    max-width: 90rem;
    margin: 0 auto;  
  }
  .contact-text{
    font-size: 2rem;
    margin:1.8rem 0 3.6rem 0;
  }
  .contact-form th,
  .contact-form td{
    padding: 2rem 0 2.5rem;
    position: relative;
  }
  .contact-form th{ 
    width: 30rem;
    font-size: 1.8rem;
    padding-left: 6.5rem;
  }
  .must{
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0 1.4rem;
    position: absolute;
    top: 3.7rem;
    left: 0;
  }
  input,
  select{
    border-radius: 0.5rem;
    padding: 1.3rem 1.7rem;
    font-size: 1.6rem;
  }
  select{
    background-size: 0.9rem auto;
    width: 90%;
    max-width: 37.6rem;
    padding-right: 3rem;
  }
  .contact-agree .wpcf7-list-item-label::before {
    width: 2rem;
    height: 2rem;
    background-size: 1.2rem auto;
  }  
  .contact-agree input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
      width: 2rem;
      height: 2rem;
  }
  .contact-form .mdl{
    width: calc( 50% - 2.2rem );
    max-width: 21.5rem;
  }
  .contact-form .mdl.sei{
    margin-right: 2rem;
  }
  .contact-form .long{
    width: 100%;
    max-width: 51rem;
  }
  .contact-form .text01{
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .contact-form .text02{
    font-size: 1.4rem;
  }
  .contact-privacy{
    font-size: 1.6rem;
    margin:4.2rem 0 2.4rem 0;
  }
  .contact-agree{
    margin-bottom: 2.6rem;
  }
  .contact-agree__text{
    font-size: 1.6rem;
    margin: 0 1.2rem 0 0.8rem;
  }
  .contact-agree .must{
    padding: 0.1rem 1.4rem;
  }
  input[type=file]::file-selector-button {
    font-size: 1.6rem;
    padding: 1.3rem 2.4rem;
    margin: 0.4rem 1.3rem 0.8rem 0;
  }
  .contact-button{
    width: 40rem;
    height: 8.5rem;
  }
  .contact-button .send{
    width: 40rem;
    height: 8.5rem;
    font-size: 1.8rem;
    padding: 0 7rem 0 3rem;
    margin-top: 2.8rem;
  }
  .contact-button:after{
    width: 3.5rem;
    height: 1.7rem;
    right: 13.5rem;
    transition: all .2s ease;
  }
  .contact-button:hover:after{
    right: 13rem;
  }
  #faq{
    top: -17rem;
  }
  .wpcf7-not-valid-tip{
    position: absolute;
    bottom: -3.7rem;
    left: 0;
  }
  .contact-agree .wpcf7-not-valid-tip{
    bottom: -2.4rem;
    left: 2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .contact-forfaq{
    padding: 3rem 2rem 3.5rem 2rem;
  }
  .contact-forfaq__text{
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .contact-forfaq__button a{
    background-position: right 4rem center;
    background-size: 1.6rem auto;
    font-size: 1.4rem;
    border-radius: 4rem;
    padding: 2rem 8rem 2rem 5.5rem;
    transition: all .2s ease;
  }
  .contact-content{
    clip-path: polygon(0 5rem, 5rem 0, 100% 0,100% calc( 100% - 5rem ),calc( 100% - 5rem ) 100%, 100% 100%,0 100%);
    padding: 5rem 2rem;  
  }
  .contact-text{
    font-size: 1.6rem;
    margin:1rem 0 3rem 0;
  }
  .contact-form th,
  .contact-form td{
    display: block;
  }
  .contact-form th{ 
    font-size: 1.4rem;
    border-bottom: none;
    padding-top: 1.5rem;
  }
  .contact-form td{ 
    padding: 0.8rem 0 1.5rem 0;
  }
  .must{
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0 1.4rem;
    top: 3.7rem;
    left: 0;
    margin-right: 0.8rem;
  }
  input,
  select{
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 1.6rem;
  }
  select{
    background-size: 0.9rem auto;
    width: 100%;
    padding-right: 3rem;
  }
  .contact-agree .wpcf7-list-item-label::before {
    width: 1.9rem;
    height: 1.9rem;
    background-size: 1.1rem auto;
    top: -0.1rem;
  }
  .contact-agree input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    width: 1.9rem;
    height: 1.9rem;
  }
  .contact-form .mdl{
    width: calc( 50% - 0.5rem );
  }
  .contact-form .mdl.sei{
    margin-right: 1rem;
  }
  .contact-form .long{
    width: 100%;
  }
  .contact-form .text01{
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .contact-form .text02{
    font-size: 1.3rem;
  }
  .contact-privacy{
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: left;
    margin:2.5rem 0 1rem 0;
  }
  .wpcf7-list-item-label{
    font-size: 1.4rem;
  }
  .contact-agree{
    margin-bottom: 2rem;
  }
  .contact-agree__text{
    font-size: 1.4rem;
    margin: 0 0.8rem 0 0.5rem;
  }
  .contact-agree .must{
    padding: 0.1rem 1.4rem;
  }
  input[type=file]::file-selector-button {
    font-size: 1.3rem;
    padding: 1rem 2rem;
    margin: 0.4rem 1rem 0.8rem 0;
  }
  .wpcf7-file{
    font-size: 1.2rem;
  }
  .contact-button{
    width: 20rem;
    height: 5rem;
  }
  .contact-button .send{
    width: 20rem;
    height: 5rem;
    font-size: 1.6rem;
    padding: 0 3rem 0 2rem;
    margin-top: 2.4rem;
  }
  .contact-button:after{
    width: 2.5rem;
    height: 1.3rem;
    right: 3rem;
  }
  #faq{
    top: -9.8rem;
  }
  .wpcf7-not-valid-tip{
    font-size: 1.2rem!important;
  }
}

/* よくあるご質問
--------------------------------------------------*/
.faq-title{
  font-weight: bold;
  text-align: center;
  position: relative;
}
.faq-title:after{
  content: "";
  background-color: #BB140D;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.faq-qa{
  background-color: #F9F9F9;
  position: relative;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}
.faq-icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.faq-icon:before,
.faq-icon:after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all .3s ease;
}
.faq-icon:after{
  transform: translateY(-50%) rotate(90deg);
}
.-open .faq-icon:after{
  transform: translateY(-50%) rotate(0);
}
.faq-q,
.faq-a{
  position: relative;
}
.faq-q{
  color: #333;
  font-weight: bold;
  cursor: pointer;
}
.faq-a{
  color: #444;
  display: none;
}
.faq-q:before,
.faq-a:before{
  font-family: var(--font-poppins);
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.faq-q:before{
  content: "Q";
  background-color: #333;
}
.faq-a:before{
  content: "A";
  background-color: #BB140D;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .faq-content{
    max-width: 90rem;
    padding: 8rem 3rem 10rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;
  }
  .faq-content .m-title{
    margin-bottom: 5.7rem;
  }
  .faq-title{
    font-size: 2.8rem;
    margin-bottom: 5.8rem;
  }
  .faq-title:after{
    width: 6rem;
    height: 0.4rem;
    bottom:-2.4rem;
  }
  .faq-detail{
    margin-bottom: 8rem;
  }
  .faq-detail:last-child{
    margin-bottom: 0;
  }
  .faq-qa{
    border-radius: 1rem;
    border-radius: 1rem;
    margin-bottom: 1.6rem;
  }
  .faq-icon{
    width: 2rem;
    height: 2rem;
    right: 2.4rem;
  }
  .faq-q{
    font-size: 1.6rem;
    padding-right: 3rem;
    padding: 1.9rem 2.4rem 2rem 7.2rem;
  }
  .faq-a{
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 0 2.4rem 2rem 7.2rem;
  }
  .faq-q:before,
  .faq-a:before{
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.8rem;
    left: 2.4rem;
  }
  .faq-q:before{
    top: 0.9em;
  }
  .faq-a:before{
    top: 0;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .faq-content{
    padding: 5rem 2rem 1rem 2rem;
  }
  .faq-title{
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .faq-title:after{
    width: 5rem;
    height: 0.4rem;
    bottom:-1.4rem;
  }
  .faq-detail{
    margin-bottom: 6rem;
  }
  .faq-qa{
    border-radius: 0.5rem;
    margin-bottom: 1.4rem;
  }
  .faq-icon{
    width: 1.6rem;
    height: 1.6rem;
    right: 1.4rem;
  }
  .faq-q{
    font-size: 1.4rem;
    padding-right: 3rem;
    padding: 1.2rem 4rem 1.3rem 5rem;
  }
  .faq-a{
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 0 2.4rem 2rem 5rem;
  }
  .faq-q:before,
  .faq-a:before{
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    left: 1.4rem;
  }
  .faq-q:before{
    top: 0.7em;
  }
  .faq-a:before{
    top: 0;
  }
}

/* お問い合わせありがとうございました
--------------------------------------------------*/
.contact-finish__text01{
  font-weight: bold;
  text-align: center;
}
.contact-finish__text02{
  color: #444;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .contact-finish{
    max-width: 112rem;
    padding: 8.5rem 3rem 15rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;  
  }
  .contact-finish__text01{
    font-size: 3rem;
    margin-bottom: 4.7rem;
  }
  .contact-finish__text02{
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .contact-finish{
    padding: 5rem 2rem; 
  }
  .contact-finish__text01{
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .contact-finish__text02{
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}

/*==================================================

プライバシーポリシー

==================================================*/
.privacy-text01{
  color: #333;
  font-weight: bold;
}
.privacy-title{
  color: #333;
  font-weight: bold;
}
.privacy-text02{
  color: #444;
}
.privacy-contact{
  color: #444;
  border: 1px #ccc solid;
  text-align: center;
}
.privacy-contact__text01{
  color: #333;
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .privacy-content{
    max-width: 90rem;
    padding: 8rem 3rem 15rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;   
  }
  .privacy-text01{
    font-size: 1.8rem;
    text-align: center;
    line-height: 2;
    margin-bottom: 6.2rem;
  }
  .privacy-title{
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  .privacy-text02{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 4.1rem;
  }
  .privacy-contact{
    padding: 2.4rem 2rem 2rem 2rem;
    margin-top: 5.8rem;
  }
  .privacy-contact__text01{
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .privacy-contact__text02{
    font-size: 1.8rem;
    line-height: 2.2;
  }
  .privacy-contact__text03{
    font-size: 1.6rem;
    line-height: 2.2;
  } 
}

/* SP */
@media screen and (max-width: 767px){	
  .privacy-content{
    padding: 5rem 2rem;
  }
  .privacy-text01{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  .privacy-title{
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  .privacy-text02{
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  .privacy-contact{
    padding: 2rem 1.5rem 2.5rem 1.5rem;
  }
  .privacy-contact__text01{
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .privacy-contact__text02{
    font-size: 1.5rem;
    text-align: left;
  }
  .privacy-contact__text03{
    font-size: 1.4rem;
    margin-top: 2.5rem;
    text-align: left;
  } 
}

/*==================================================

404

==================================================*/
.notfound-content{
  text-align: center; 
}
.notfound-title{
  color: #BB140D;
  font-family: var(--font-poppins);
  font-weight: bold;
  position: relative;
}
.notfound-title01,
.notfound-title02{
  position: relative;
  z-index: 3;
  line-height: 1;
}
.notfound-title02{
  font-weight: 500;
  display: block;
}
.notfound-title03{
  width: 100%;
  color: #F6F6F6;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.notfound-text{
  color: #333;
  font-weight: bold;
}
/* 
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .notfound-content{
    max-width: 112rem;
    padding: 27.5rem 3rem 15rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;   
  }
  .notfound-title{
    margin-bottom: 7.5rem;
  }
  .notfound-title01{
    font-size: 15rem;
  }
  .notfound-title02{
    font-size: 3rem;
    margin-top: -0.6rem;
  }
  .notfound-title03{
    font-size: 12rem;
    top: -7.5rem;
  }
  .notfound-text{
    font-size: 2rem;
    margin-bottom: 8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .notfound-content{
    padding: 13rem 2rem 5rem 2rem;   
  }
  .notfound-title{
    margin-bottom: 2rem;
  }
  .notfound-title01{
    font-size: 8.8rem;
  }
  .notfound-title02{
    font-size: 1.8rem;
    margin-top: -0.3rem;
  }
  .notfound-title03{
    font-size: 5rem;
    top: -3rem;
  }
  .notfound-text{
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}

.wp-old-content h3 {
  margin-bottom: 30px;
  padding: 4px 6px;
  border-bottom: solid 3px #BB140D;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight:bold;
}


.wp-old-content h4 {
  margin-bottom: 30px;
  padding: 4px 6px;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight:bold;
}

/*==================================================

prs

==================================================*/
.preparation-content{
  text-align: center; 
}
.preparation-title{
  color: #BB140D;
  font-family: var(--font-poppins);
  font-weight: bold;
  position: relative;
}
.preparation-title01{
  position: relative;
  z-index: 3;
  line-height: 1;
}
.preparation-title02{
  width: 100%;
  color: #F6F6F6;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* 
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .preparation-content{
    max-width: 112rem;
    padding: 27.5rem 3rem 15rem 3rem;
    margin: 0 auto;
    box-sizing: content-box;   
  }
  .preparation-title{
    margin-bottom: 14.5rem;
  }
  .preparation-title01{
    font-size: 4.8rem;
  }
  .preparation-title02{
    font-size: 6.4rem;
    top: -4.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .preparation-content{
    padding: 13rem 2rem 5rem 2rem;   
  }
  .preparation-title{
    margin-bottom: 6rem;
  }
  .preparation-title01{
    font-size: 2.8rem;
  }
  .preparation-title02{
    font-size: 4rem;
    top: -3rem;
  }
}

/* reCAPTCHA
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .grecaptcha-badge { bottom: 160px!important; }
}

/* SP */
@media screen and (max-width: 767px){	
  .grecaptcha-badge { bottom: 160px!important; }
}

body:not(.page-template-template-contact) .grecaptcha-badge {
  display: none;
}