@charset "utf-8";

.load_on .load_text>div:nth-child(2) {
	animation: load_on1 .5s ease-in-out .5s forwards
}

@keyframes load_on1 {
	0% {
		opacity: 0;
		width: 0
	}

	100% {
		opacity: 1;
		width: 100%
	}
}

.load_on .load_icon {
	animation: load_on2 .5s ease-in-out .5s forwards
}

@keyframes load_on2 {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.load_off .load_text>div:nth-child(2) {
	animation: load_off1 .5s ease-in-out forwards
}

@keyframes load_off1 {
	0% {
		opacity: 1;
		width: 100%
	}

	100% {
		opacity: 0;
		width: 0
	}
}

.load_off .load_icon {
	animation: load_off2 .5s ease-in-out forwards
}

@keyframes load_off2 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.load_off .load {
	animation: load_off3 .5s ease-in-out forwards
}

@keyframes load_off3 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.load_off .back_dark,
.load_off .fix,
.load_off .front,
.load_off .header {
	animation: load_off4 .5s ease-in-out 2.5s forwards
}

@keyframes load_off4 {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.load_off .load_icon p>span:nth-child(1),
.load_on .load_icon p>span:nth-child(1) {
	animation: load_blink1 .5s ease-in-out infinite
}

.load_off .load_icon p>span:nth-child(2),
.load_on .load_icon p>span:nth-child(2) {
	animation: load_blink1 .5s ease-in-out 50ms infinite
}

.load_off .load_icon p>span:nth-child(3),
.load_on .load_icon p>span:nth-child(3) {
	animation: load_blink1 .5s ease-in-out .1s infinite
}

@keyframes load_blink1 {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: 0
	}
}

.load_off .back_dark span,
.load_off.wrap_off .back_light span {
	animation: back_on1 60s linear infinite
}

@keyframes back_on1 {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-20%)
	}
}

.frame_on .machcon_frame {
	animation: frame_on1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes frame_on1 {
	0% {
		opacity: 0;
		transform: translateY(50%)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

.frame_off .machcon_frame {
	animation: frame_off1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes frame_off1 {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	100% {
		opacity: 0;
		transform: translateY(50%)
	}
}

.sheet_on .machcon_sheet {
	animation: sheet_on1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes sheet_on1 {
	0% {
		opacity: 0;
		transform: translateY(50%)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

.sheet_off .machcon_sheet {
	animation: sheet_off1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes sheet_off1 {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	100% {
		opacity: 0;
		transform: translateY(50%)
	}
}

.package_on .machcon_package {
	animation: package_on1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes package_on1 {
	0% {
		opacity: 0;
		transform: translateY(50%)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

.package_off .machcon_package {
	animation: package_off1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes package_off1 {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	100% {
		opacity: 0;
		transform: translateY(50%)
	}
}

.trash_on .machcon_frame {
	animation: trash_on1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes trash_on1 {
	0% {
		opacity: 0;
		transform: translateY(50%) rotate(0)
	}

	100% {
		opacity: 1;
		transform: translateY(0) rotate(-22.5deg)
	}
}

.trash_off .machcon_frame {
	animation: trash_off1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes trash_off1 {
	0% {
		opacity: 1;
		transform: translateY(0) rotate(-22.5deg)
	}

	100% {
		opacity: 0;
		transform: translateY(50%) rotate(0)
	}
}

.hide_on .machcon_frame {
	animation: hide_on1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes hide_on1 {
	0% {
		opacity: 1;
		transform: translateY(0) rotate(-22.5deg)
	}

	100% {
		opacity: 0;
		transform: translateY(50%) rotate(-22.5deg)
	}
}

.hide_off .machcon_frame {
	animation: hide_off1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes hide_off1 {
	0% {
		opacity: 0;
		transform: translateY(50%) rotate(-22.5deg)
	}

	100% {
		opacity: 1;
		transform: translateY(0) rotate(-22.5deg)
	}
}

.icon_on .front_icon {
	animation: icon_on1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes icon_on1 {
	0% {
		opacity: 0;
		transform: scale(.5)
	}

	100% {
		opacity: 1;
		transform: scale(1)
	}
}

.icon_off .front_icon {
	animation: icon_off1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes icon_off1 {
	0% {
		opacity: 1;
		transform: scale(1)
	}

	100% {
		opacity: 0;
		transform: scale(.5)
	}
}

.load_off .fix_icon {
	animation: fix_on1 2s ease-in-out 2.5s infinite
}

@keyframes fix_on1 {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(100%)
	}
}

.load_off .fix_icon div {
	animation: fix_on2 2s ease-in-out 2.5s infinite
}

@keyframes fix_on2 {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-100%)
	}
}

.menu_on .header_button a>div:nth-child(1) {
	animation: menu_on1_1 1s ease-in-out forwards
}

.menu_on .header_button a>div:nth-child(2) {
	animation: menu_on1_2 1s ease-in-out forwards
}

.menu_on .header_button a>div:nth-child(3) {
	animation: menu_on1_3 1s ease-in-out forwards
}

@keyframes menu_on1_1 {
	0% {
		transform: translateY(-8px) rotate(0)
	}

	50% {
		transform: translateY(-1px) rotate(0)
	}

	100% {
		transform: translateY(-1px) rotate(45deg)
	}
}

@keyframes menu_on1_2 {
	0% {
		opacity: 1
	}

	100%,
	50% {
		opacity: 0
	}
}

@keyframes menu_on1_3 {
	0% {
		transform: translateY(6px) rotate(0)
	}

	50% {
		transform: translateY(-1px) rotate(0)
	}

	100% {
		transform: translateY(-1px) rotate(-45deg)
	}
}

.menu_on .header_block>.header_button:nth-last-child(2),
.menu_on .header_list {
	animation: menu_on2 .5s ease-in-out forwards
}

@keyframes menu_on2 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.menu_on .menu {
	animation: menu_on3 .5s ease-in-out forwards
}

@keyframes menu_on3 {
	0% {
		opacity: 0;
		transform: translateX(50%)
	}

	100% {
		opacity: 1;
		transform: translateX(0)
	}
}

.menu_off .header_button a>div:nth-child(1) {
	animation: menu_off1_1 1s ease-in-out forwards
}

.menu_off .header_button a>div:nth-child(2) {
	animation: menu_off1_2 1s ease-in-out forwards
}

.menu_off .header_button a>div:nth-child(3) {
	animation: menu_off1_3 1s ease-in-out forwards
}

@keyframes menu_off1_1 {
	0% {
		transform: translateY(-1px) rotate(45deg)
	}

	50% {
		transform: translateY(-1px) rotate(0)
	}

	100% {
		transform: translateY(-8px) rotate(0)
	}
}

@keyframes menu_off1_2 {

	0%,
	50% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes menu_off1_3 {
	0% {
		transform: translateY(-1px) rotate(-45deg)
	}

	50% {
		transform: translateY(-1px) rotate(0)
	}

	100% {
		transform: translateY(6px) rotate(0)
	}
}

.menu_off .header_block>.header_button:nth-last-child(2),
.menu_off .header_list {
	animation: menu_off2 .5s ease-in-out forwards
}

@keyframes menu_off2 {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.menu_off .menu {
	animation: menu_off3 .5s ease-in-out forwards
}

@keyframes menu_off3 {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	100% {
		opacity: 0;
		transform: translateX(50%)
	}
}

.header_top .header {
	animation: header_top1 .5s ease-in-out forwards
}

@keyframes header_top1 {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.header_on .header {
	animation: header_on1 .5s ease-in-out forwards
}

@keyframes header_on1 {
	0% {
		opacity: 0;
		transform: translateY(-15px)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

.header_off .header {
	animation: header_off1 .5s ease-in-out forwards
}

@keyframes header_off1 {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	100% {
		opacity: 0;
		transform: translateY(-15px)
	}
}

.pulldown_on .pulldown_icon {
	animation: pulldown_on1 .5s ease-in-out forwards
}

@keyframes pulldown_on1 {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(90deg)
	}
}

.pulldown_on .pulldown_icon>div:nth-child(1) {
	animation: pulldown_on2 .5s ease-in-out forwards
}

@keyframes pulldown_on2 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.pulldown_off .pulldown_icon {
	animation: pulldown_off1 .5s ease-in-out forwards
}

@keyframes pulldown_off1 {
	0% {
		transform: rotate(90deg)
	}

	100% {
		transform: rotate(180deg)
	}
}

.pulldown_off .pulldown_icon>div:nth-child(1) {
	animation: pulldown_off2 .5s ease-in-out forwards
}

@keyframes pulldown_off2 {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.scroll_on1 {
	animation: scroll_on1 .5s ease-in-out forwards
}

@keyframes scroll_on1 {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.scroll_off1 {
	animation: scroll_off1 .5s ease-in-out forwards
}

@keyframes scroll_off1 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.scroll_on2 {
	animation: scroll_on2 .5s ease-in-out forwards
}

@keyframes scroll_on2 {
	0% {
		opacity: 0;
		transform: translateY(30px)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

.scroll_off2 {
	animation: scroll_off2 .5s ease-in-out forwards
}

@keyframes scroll_off2 {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	100% {
		opacity: 0;
		transform: translateY(30px)
	}
}

.scroll_on .scroll_icon {
	animation: scroll_icon_on1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes scroll_icon_on1 {
	0% {
		opacity: 0;
		transform: scale(.5)
	}

	100% {
		opacity: 1;
		transform: scale(1)
	}
}

.scroll_off .scroll_icon {
	animation: scroll_icon_off1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes scroll_icon_off1 {
	0% {
		opacity: 1;
		transform: scale(1)
	}

	100% {
		opacity: 0;
		transform: scale(.5)
	}
}

.scroll_on .scroll_img {
	animation: scroll_img_on1 1s ease-in-out forwards
}

@keyframes scroll_img_on1 {
	0% {
		transform: scale(1.1)
	}

	100% {
		transform: scale(1)
	}
}

.scroll_off .scroll_img {
	animation: scroll_img_off1 1s ease-in-out forwards
}

@keyframes scroll_img_off1 {
	0% {
		transform: scale(1)
	}

	100% {
		transform: scale(1.1)
	}
}

.scroll_on .scroll_text {
	animation: scroll_text_on1 .5s ease-in-out forwards
}

@keyframes scroll_text_on1 {
	0% {
		width: 0
	}

	100% {
		width: 100%
	}
}

.scroll_off .scroll_text {
	animation: scroll_text_off1 .5s ease-in-out forwards
}

@keyframes scroll_text_off1 {
	0% {
		width: 100%
	}

	100% {
		width: 0
	}
}

.icon_show {
	animation: icon_show1 1s cubic-bezier(.87, 0, .13, 1) 1s forwards
}

@keyframes icon_show1 {
	0% {
		opacity: 0;
		transform: scale(.5)
	}

	100% {
		opacity: 1;
		transform: scale(1)
	}
}

.icon_hide {
	animation: icon_hide1 1s cubic-bezier(.87, 0, .13, 1) forwards
}

@keyframes icon_hide1 {
	0% {
		opacity: 1;
		transform: scale(1)
	}

	100% {
		opacity: 0;
		transform: scale(.5)
	}
}

.slide_off,
.slide_on {
	animation: slide_on1 1s ease-in-out forwards
}

@keyframes slide_on1 {
	0% {
		opacity: 0;
		transform: scale(1.05)
	}

	100% {
		opacity: 1;
		transform: scale(1)
	}
}

.slide_off span,
.slide_on span {
	animation: slide_on2 10s linear forwards
}

@keyframes slide_on2 {
	0% {
		transform: scale(1.1)
	}

	100% {
		transform: scale(1)
	}
}


.dli-caret-down {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 3em 2em;
  border-top-color: currentColor;
  border-bottom: 0;
  margin: 2%;
}

.worries_A{
  display: flex;
  margin-top: 2%;
  align-items: center;
  justify-content: space-evenly;
}

.worries_Abox {
    width: 28%;
    background-color: #f03;
    color: white;
    padding: 2%;
    font-size: clamp(12px, 1vw, 20px);
    font-weight: bold;
}

.worries_points{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    margin: 2% 0;
	padding: 0;
    flex-wrap: wrap;
}

.worriesanswer{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #eb6134;
  color: white;
  margin: 2%;
  padding: 2%;
}

.answer{
  font-size: clamp(18px, 2vw, 30px);
  margin: 1%;
  font-weight: bold;
}

li.answer1 {
    font-size: clamp(11px, 1.5vw, 30px);
    font-weight: bold;
    margin-top: 1%;
    margin-bottom: 1%;
}

.card{
	background-color: black;
    width: 28%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text-wrapper{
    color: white;
    text-align: center;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: bold;
}

@media screen and (max-width: 1000px){
  .card{
	width: 250px;
	height: 75px;
	margin: 4%;
  }
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
   border-radius: 100vh;
   width: 150px;
   height: 50px;
}


/*--------------------------- お悩み事例 ---------------------------*/
#worries {
	position: relative;
	padding: 1em 0 0;
	overflow: hidden;
}

#worries p {
	width: 65%;
	margin: 0 auto;
}

.worries_flexwrap {
	position: relative;
	max-width: 1200px;
	margin: 0 2em;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	flex-wrap: wrap;
}

.worries_flexleft {
	display: block;
	width: 100%;
	z-index: 1;
}

.worries_midashi {
	display: block;
	font-weight: 600;
	font-size: 2.0em;
	color: #fff;
	margin-top: 4em;
}

.worries_submidashi {
	display: block;
	width: 100%;
	font-weight: 300;
	font-size: 1.0em;
	color: #fff;
}

.worries_circle {
	display: block;
	width: 100%;
	height: auto;
	margin-left: 2%;
	margin-top: 1em;
}

.worries_circle img {
	width: 100%;
	vertical-align: top;
}

.worries_flexright {
	display: block;
	width: 100%;
	z-index: 1;
	margin-top: 1em;
}

.worries_fukidashi_sp {
	display: block;
	width: 50%;
	height: auto;
	margin: 0 0 0 auto;
	margin-top: 0em;
}

.worries_fukidashi_sp img {
	width: 100%;
	vertical-align: top;
}

.worries_jirei {
	display: block;
	width: 100%;
	height: auto;
	margin-left: 0;
	margin-top: 2em;
}

.worries_jirei img {
	width: 100%;
	vertical-align: top;
}

.worries_fukidashi_pc {
	display: none;
}

.worries_fukidashi_pc img {
	width: 100%;
	vertical-align: top;
}



@media print,
screen and (min-width: 1000px) {

	#worries {
		position: relative;
		/*margin-top: -200px;*/
		padding: 10em 0 0;
	}

	.worries_flexwrap {
		position: relative;
		flex-direction: row;
		margin: 0 auto;
	}

	.worries_flexleft {
		display: block;
		width: 40%;
		z-index: 1;
	}

	.worries_midashi {
		display: block;
		font-weight: 600;
		font-size: 3.0em;
		color: #fff;
		margin-top: 4em;
	}

	.worries_submidashi {
		display: block;
		width: 60%;
		font-weight: 300;
		font-size: 1.1em;
		color: #fff;
	}

	.worries_circle {
		display: block;
		width: 110%;
		height: auto;
		margin-left: 2%;
		margin-top: 20%;
	}

	.worries_flexright {
		display: block;
		width: 60%;
		margin-top: 0;
	}

	.worries_fukidashi_sp {
		display: none;
	}

	.worries_jirei {
		display: block;
		width: 120%;
		height: auto;
		margin-left: -20%;
		margin-top: 0em;
	}

	.worries_fukidashi_pc {
		display: block;
		width: 70%;
		height: auto;
		margin-left: 0;
		margin-top: 0;
	}
}



/*--------------------------- 施工事例 ---------------------------*/
#works {
	position: relative;
	padding: 1em 0 3em;
	overflow: hidden;
}

#works p {
	width: 65%;
	margin: 0 auto;
}

.works_wrap {
	position: relative;
	max-width: 1200px;
	margin: 6em 2em;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	flex-wrap: wrap;
	z-index: 9;
}

.works_midashi {
	display: block;
	width: 100%;
	height: auto;
	margin: 1em auto;
	z-index: 9;
}

.works_midashi img {
	width: 100%;
	vertical-align: top;
}

.works_imgtxt {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.0em;
	margin-top: 0;
}

.works_flexwrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	margin-top: 1em;
}

.works_flexitem {
	position: relative;
	width: 42%;
	height: 180px;
	overflow: hidden;
	margin-bottom: 4%;
	border: 8px solid #000;
	cursor: pointer;
}

.works_flexitem img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.works_flexitem figcaption {
	position: absolute;
	left: 0;
	bottom: 0;
	color: #fff;
	background-color: #000;
	padding: 0.2em 0.5em;
	font-size: 0.8em;
	font-weight: 500;
}

.works_flexitem .resolve {
	background-color: #ffd452;
	font-size: 0.8em;
	font-weight: 600;
	color: #000;
}

@media print,
screen and (min-width: 1000px) {

	#works {
		position: relative;
		padding: 1em 0 6em;
		overflow: hidden;
	}

	.works_wrap {
		position: relative;
		max-width: 1200px;
		margin: 8em auto;
	}

	.works_midashi {
		width: 70%;
		margin: 0 auto;
	}

	.works_imgtxt {
		font-size: 1.2em;
		margin-top: 2em;
	}

	.works_flexwrap {
		margin-top: 1em;
	}

	.works_flexwrap::before {
		width: 30%;
	}

	.works_flexwrap::after {
		width: 30%;
	}

	.works_flexitem {
		width: 30%;
		height: 260px;
		font-size: 1.0em;
	}

	.works_flexitem img {
		height: 260px;
	}

	.works_flexitem .resolve {
		background-color: #ffd452;
		font-size: 1.2em;
		font-weight: 600;
		color: #000;
	}

}




/*--------------------------- CTA中1 ---------------------------*/
#ctamid01 {
	position: relative;
	margin-top: -180px;
	padding: 1em 0 1em;
}

#ctamid01 p {
	width: 65%;
	margin: 0 auto;
}

#ctamid01::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000;

	transform: skewY(-5deg) translateY(90px);
	z-index: 1;
}

.ctamid01_midashi {
	position: relative;
	margin-top: -50px;
	padding: 2em 0 3em;
	z-index: 99;
}

.ctamid01_midashi p {
	width: 65%;
	margin: 0 auto;
}

.ctamid01_midashi::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #006666;
	background-size: 20px 20px;
	background-image: repeating-linear-gradient(-45deg, #005B5B 0, #005B5B 2px, #006666 0, #006666 50%);
	clip-path: polygon(85.0% 0%, 80% 70%, 56% 70%, 50% 100%, 48% 70%, 0% 70%, 0 0%);

	transform: skewY(-5deg) translateY(90px);
	z-index: 1;
}

.ctamid01midashi_txt {
	position: absolute;
	width: 100%;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 1.0em;
	font-style: italic;
	line-height: 1.0;
	text-align: left;
	padding-left: 1em;
	transform: rotate(-4.7deg);
	bottom: -58px;
	z-index: 9;
	left: 0px;
}

.ctamid01_flexwrap {
	position: relative;
	max-width: 90%;
	margin: 100px auto 0;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0 0 4em;
	z-index: 9;
	transform: rotate(-4.7deg);
}

.ctamid01_flexleft {
	display: block;
	position: relative;
	width: 48%;
	margin-left: 0;
}

.ctamid01left_txt01 {
	width: 100%;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 1.0em;
	line-height: 1.0;
	text-align: left;
	font-style: italic;
}

.ctamid01left_txt02 {
	width: 100%;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-size: 0.6em;
	letter-spacing: 0em;
	padding-top: 0.5em;
	text-align: left;
	font-style: italic;
}

.ctamid01left_btnwrap {
	width: 100%;
	padding-top: 0.5em;
}

.ctamid01_btn {
	position: relative;
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 6px 5px;
	border-radius: 50px;
	color: #fff;
	z-index: 1;
	transition: .2s;
	background: linear-gradient(to bottom, rgba(255, 9, 27, 1.00), rgba(187, 0, 15, 1.00));
	text-align: center;
	text-decoration: none;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 1.0em;
	font-style: italic;
}

.ctamid01_btn:hover {
	background: linear-gradient(to bottom, rgba(255, 47, 62, 1.00), rgba(221, 3, 20, 1.00));
	color: #fff;
}

.ctamid01_flexright {
	display: flex;
	align-items: center;
	width: 48%;
	margin-top: 0;
	margin-left: 0;
}

.ctamid01_txtwrap {
	display: block;
	width: 100%;
	padding: 10px 20px;
	border: 1px solid #008C69;
}

.ctamid01right_txt01 {
	width: 100%;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 0.6em;
	line-height: 1.0;
	text-align: left;
	font-style: italic;
}

.ctamid01right_txt02 {
	width: 100%;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-size: 0.5em;
	padding-top: 0.5em;
	text-align: left;
	font-style: italic;
}

.ctamid01right_txt03 {
	width: 100%;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-family: 'Teko', sans-serif;
	font-weight: 600;
	font-size: 1.2em;
	line-height: 1.0;
	text-align: left;
	font-style: italic;
}

.ctamid01right_txt03 a {
	color: #fff;
	text-decoration: none;
}

@media print,
screen and (min-width: 1000px) {
	#ctamid01 {
		padding: 1em 0 6em;
	}

	.ctamid01_midashi {
		position: relative;
		margin-top: -60px;
		padding: 4em 0 4em;
		z-index: 99;
	}

	.ctamid01_midashi p {
		width: 65%;
		margin: 0 auto;
	}

	.ctamid01_midashi::before {
		background-image: repeating-linear-gradient(-45deg, #005B5B 0, #005B5B 2px, #006666 0, #006666 50%);
		clip-path: polygon(55.0% 0%, 50% 70%, 26% 70%, 25% 100%, 18% 70%, 0% 70%, 0 0%);
		transform: skewY(-5deg) translateY(90px);
		z-index: 1;
	}

	.ctamid01midashi_txt {
		position: absolute;
		width: 100%;
		color: #fff;
		font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
		font-weight: 600;
		font-size: 1.8em;
		font-style: italic;
		line-height: 1.0;
		text-align: center;
		padding-left: 0;
		transform: rotate(-4.7deg);
		bottom: -58px;
		z-index: 9;
		left: -350px;
	}



	.ctamid01_flexwrap {
		max-width: 1200px;
		margin: 120px auto 0;
		flex-direction: row;
		box-sizing: border-box;
	}

	.ctamid01_flexleft {
		width: 48%;
	}

	.ctamid01left_txt01 {
		font-size: 2.2em;
		line-height: 1.0;
	}

	.ctamid01left_txt02 {
		font-size: 1.2em;
		padding-top: 0.5em;
	}

	.ctamid01left_btnwrap {
		font-size: 1em;
		padding-top: 0.5em;
	}

	.ctamid01_btn {
		padding: 14px 10px;
		border-radius: 50px;
		z-index: 1;
		transition: .2s;
		font-size: 2.0em;
	}

	.ctamid01_flexright {
		display: flex;
		width: 48%;
		margin-top: 0;
	}

	.ctamid01_txtwrap {
		display: block;
		padding: 20px 80px;
	}

	.ctamid01right_txt01 {
		font-weight: 600;
		font-size: 2.0em;
		line-height: 1.0;
	}

	.ctamid01right_txt02 {
		font-size: 1.0em;
		padding-top: 0.5em;
	}

	.ctamid01right_txt03 {
		font-weight: 600;
		font-size: 2.8em;
		line-height: 1.0;
		font-family: 'Teko', sans-serif;
	}
}



/*--------------------------- 選ばれる理由 ---------------------------*/
#reason {
	position: relative;
	margin-top: -140px;
	padding: 1em 0 4em;
	overflow: hidden;
}

#reason p {
	width: 65%;
	margin: 0 auto;
}

.reason_wrap {
	position: relative;
	display: block;
	max-width: 1200px;
	margin: 140px 2em 0;
	z-index: 9;
}

.reason_midashi_wrap {
	display: block;
	margin-top: 2em;
	font-weight: 600;
	text-align: left;
	font-style: italic;
	line-height: 1.4;
}

.reason_midashi {
	font-size: 2.0em;
}

.reason_midashi_s {
	font-size: 1.0em;
}

.reason_quality {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-top: 2em;
}

.reason_quality img {
	width: 100%;
	vertical-align: top;
}

.reason_price {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-top: 2em;
}

.reason_price img {
	width: 100%;
	vertical-align: top;
}

.reason_speed {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-top: 2em;
}

.reason_speed img {
	width: 100%;
	vertical-align: top;
}

.switch_sp {
	display: block;
}

.switch_pc {
	display: none;
}



@media print,
screen and (min-width: 1000px) {

	#reason {
		position: relative;
		margin-top: -200px;
		padding: 10em 0 10em;
	}

	.reason_wrap {
		position: relative;
		margin: 0 auto;
	}

	.reason_midashi_wrap {
		font-weight: 600;
		margin-top: 1em;
		text-align: right;
		font-style: italic;
	}

	.reason_midashi {
		font-size: 4.0em;
	}

	.reason_midashi_s {
		font-size: 3.0em;
	}

	.reason_quality {
		display: block;
		width: 100%;
		height: auto;
		margin-top: 4em;
	}

	.reason_price {
		display: block;
		width: 100%;
		height: auto;
		margin-top: 2em;
	}

	.reason_speed {
		display: block;
		width: 100%;
		height: auto;
		margin-top: 2em;
	}

	.switch_sp {
		display: none;
	}

	.switch_pc {
		display: block;
	}

}





/*--------------------------- 他社との比較 ---------------------------*/
#plan {
	position: relative;
	margin-top: 0;
	padding: 1em 0 16em;
}

#plan::before {
	content: '';
	position: absolute;
	top: -24px;
	bottom: 0;
	left: 0;
	right: 0;
	background: url("../image/wave_pc.png") repeat-x center top;
	z-index: 1;
}

.plan_wrap {
	position: relative;
	display: block;
	max-width: 1200px;
	margin: 0 2em;
	z-index: 9;
}

.plan_midashi_s {
	display: block;
	margin-top: 2em;
	font-weight: 600;
	text-align: center;
	font-size: 1.0em;
}

.plan_midashi {
	display: block;
	margin-top: 0;
	font-weight: 600;
	text-align: center;
	font-size: 2.0em;
}

.plan_hyo {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-top: 2em;
}

.plan_hyo img {
	width: 100%;
	vertical-align: top;
}



@media print,
screen and (min-width: 1000px) {

	#plan {
		position: relative;
		margin-top: 0;
		padding: 4em 0 20em;
	}

	.plan_wrap {
		position: relative;
		margin: 0 auto;
	}

	.plan_midashi_s {
		display: block;
		margin-top: 2em;
		font-weight: 600;
		text-align: center;
		font-size: 2.0em;
	}

	.plan_midashi {
		display: block;
		margin-top: 0;
		font-weight: 600;
		text-align: center;
		font-size: 4.0em;
	}

	.plan_hyo {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 auto;
		margin-top: 4em;
	}

}






/*--------------------------- CTA中2 ---------------------------*/
#ctamid02 {
	position: relative;
	margin-top: -180px;
	padding: 1em 0 1em;
}

#ctamid02 p {
	width: 65%;
	margin: 0 auto;
}

#ctamid02::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: skewY(-5deg) translateY(90px);
	z-index: 1;
}

@media print,
screen and (min-width: 1000px) {
	#ctamid02 {
		padding: 1em 0 6em;
	}

}




/*--------------------------- 改修工事の流れ ---------------------------*/
#flow {
	position: relative;
	margin-top: -140px;
	padding: 1em 0 4em;
	overflow: hidden;
}

#flow p {
	width: 65%;
	margin: 0 auto;
}

#flow::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #F4F4E8;

	transform: skewY(-5deg) translateY(90px);
	z-index: 1;
}

.flow_wrap {
	position: relative;
	display: block;
	max-width: 1200px;
	margin: 160px 2em 0;
	z-index: 9;
}

.flow_midashi {
	display: block;
	margin-top: 2em;
	font-size: 2.0em;
	line-height: 1.4;
	font-weight: 600;
	text-align: left;
	font-style: italic;
}

.flow_midashi_s {
	display: block;
	margin-top: 0em;
	font-size: 0.9em;
	font-weight: 600;
	text-align: left;
	font-style: italic;
}

.flow_flexwrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 1em;
}

.flow_flexwrap::before {
	content: "";
	display: block;
	width: 45%;
	height: 0;
	order: 1;
}

.flow_flexwrap::after {
	content: "";
	display: block;
	width: 45%;
	height: 0;
}

.flow_flexitem {
	position: relative;
	width: 45%;
}

.flow_flexitem img {
	width: 100%;
	object-fit: cover;
}

.flow_flexitemtxt {
	display: block;
	margin-top: 0em;
	font-size: 1.0em;
	font-weight: 500;
	text-align: center;
}

.flow_flexwrap li:nth-of-type(1) {
	position: relative;
	margin-top: 4.5em;
}

.flow_flexwrap li:nth-of-type(1)::after {
	content: '';
	position: absolute;
	top: 4em;
	right: -2em;
	z-index: 999;
	color: #000;
	background-image: url(../image/flowsankaku.png);
	background-size: 20px 35px;
	width: 20px;
	height: 35px;
}

.flow_flexwrap li:nth-of-type(2) {
	margin-top: 3em;
}

.flow_flexwrap li:nth-of-type(2)::after {
	display: none;
	content: '';
	position: absolute;
	top: 4em;
	right: -2em;
	z-index: 999;
	color: #000;
	background-image: url(../image/flowsankaku.png);
	background-size: 20px 35px;
	width: 20px;
	height: 35px;
}

.flow_flexwrap li:nth-of-type(3) {
	margin-top: 1.5em;
}

.flow_flexwrap li:nth-of-type(3)::after {
	content: '';
	position: absolute;
	top: 4em;
	right: -2em;
	z-index: 999;
	color: #000;
	background-image: url(../image/flowsankaku.png);
	background-size: 20px 35px;
	width: 20px;
	height: 35px;
}

.flow_flexwrap li:nth-of-type(4) {
	margin-top: 0em;
}

.flow_flexwrap li:nth-of-type(5) {
	margin-top: 3em;
}

.flow_flexwrap li:nth-of-type(5)::after {
	content: '';
	position: absolute;
	top: 4em;
	right: -2em;
	z-index: 999;
	color: #000;
	background-image: url(../image/flowsankaku.png);
	background-size: 20px 35px;
	width: 20px;
	height: 35px;
}

.flow_flexwrap li:nth-of-type(6) {
	margin-top: 1.5em;
}

.flow_flexwrap li:nth-of-type(6)::after {
	display: none;
	content: '';
	position: absolute;
	top: 4em;
	right: -2em;
	z-index: 999;
	color: #000;
	background-image: url(../image/flowsankaku.png);
	background-size: 20px 35px;
	width: 20px;
	height: 35px;
}

.flow_flexwrap li:nth-of-type(7) {
	margin-top: 1.5em;
}

.flow_flexwrap li:nth-of-type(8) {
	margin-top: 0em;
}


@media print,
screen and (min-width: 1000px) {

	#flow {
		position: relative;
		margin-top: -200px;
		padding: 10em 0 6em;
	}

	.flow_wrap {
		position: relative;
		margin: 0 auto;
	}

	.flow_midashi {
		display: block;
		margin-top: 1em;
		font-size: 4.0em;
		font-weight: 600;
		text-align: left;
		font-style: italic;
	}

	.flow_midashi_s {
		display: block;
		margin-top: 0em;
		font-size: 1.4em;
		font-weight: 600;
		text-align: left;
		font-style: italic;
	}

	.flow_flexwrap {
		margin-top: 1em;
	}

	.flow_flexwrap::before {
		width: 22%;
	}

	.flow_flexwrap::after {
		width: 22%;
	}

	.flow_flexitem {
		width: 22%;
		font-size: 1.0em;
	}

	.flow_flexitem img {
		width: 100%;
	}


	.flow_flexwrap li:nth-of-type(1) {
		margin-top: 9em;
	}

	.flow_flexwrap li:nth-of-type(1)::after {
		top: 8em;
	}

	.flow_flexwrap li:nth-of-type(2) {
		margin-top: 6em;
	}

	.flow_flexwrap li:nth-of-type(2)::after {
		display: block;
		content: '';
		position: absolute;
		top: 8em;
		right: -2em;
		z-index: 999;
		color: #000;
		background-image: url(../image/flowsankaku.png);
		background-size: 20px 35px;
		width: 20px;
		height: 35px;
	}

	.flow_flexwrap li:nth-of-type(3) {
		margin-top: 3em;
	}

	.flow_flexwrap li:nth-of-type(3)::after {
		top: 8em;
	}

	.flow_flexwrap li:nth-of-type(5) {
		margin-top: 6em;
	}

	.flow_flexwrap li:nth-of-type(5)::after {
		top: 8em;
	}

	.flow_flexwrap li:nth-of-type(6) {
		margin-top: 3em;
	}

	.flow_flexwrap li:nth-of-type(6)::after {
		display: block;
		content: '';
		position: absolute;
		top: 8em;
		right: -2em;
		z-index: 999;
		color: #000;
		background-image: url(../image/flowsankaku.png);
		background-size: 20px 35px;
		width: 20px;
		height: 35px;
	}

	.flow_flexwrap li:nth-of-type(7) {
		margin-top: 0em;
	}

	.flow_flexwrap li:nth-of-type(8) {
		margin-top: -3.0em;
	}



}



/*--------------------------- CTA下 ---------------------------*/
#ctadown {
	position: relative;
	background-color: #000;
	width: 100%;
	margin-top: 0;
}

#ctadown::after {
	content: '';
	position: absolute;
	background-image: url("../image/form_bgblack.png");
	background-size: 600px 65px;
	width: 600px;
	height: 65px;
	bottom: -64px;
	left: 50%;
	margin-left: -300px;
	z-index: 9;
}

.ctadown_wrap {
	max-width: 100%;
	margin: 0 auto;
	display: block;
	padding: 2em 0 0;
	position: relative;
}

.ctadown_txt01 {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 100%;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 1.6em;
	font-style: italic;
	line-height: 1.0;
	text-align: center;
	top: 0.2em;
}

.free_icon {
	display: block;
	position: absolute;
	width: 80px;
	height: auto;
	z-index: 999;
	left: 10px;
	top: -60px;
}

.free_icon img {
	width: 100%;
	vertical-align: top;
}

.ctadown_txt02 {
	position: relative;
	width: 100%;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 0.8em;
	font-style: italic;
	text-decoration: underline;
	letter-spacing: 0em;
	padding-top: 0.4em;
	text-align: center;
	top: 1em;
}

.ctadown_txt03 {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 170px;
	color: #fff;
	font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 1.2em;
	letter-spacing: 0em;
	padding-top: 0.2em;
	text-align: center;
	bottom: -1.2em;
	z-index: 99;
}

.ctadown_txt03::before {
	content: '';
	position: absolute;
	bottom: 0.26em;
	left: -1.4em;
	z-index: 999;
	background-image: url("../image/form_arrow.png");
	background-size: 29px 29px;
	width: 29px;
	height: 29px;
}

.ctadown_txt03img {
	width: 100%;
}

.ctadown_txt03img img {
	width: 100%;
}




@media print,
screen and (min-width: 1000px) {
	#ctadown {
		position: relative;
	}

	.ctadown_wrap {
		max-width: 1200px;
		margin: 0 auto;
		flex-direction: row;
		box-sizing: border-box;
	}

	.ctadown_txt01 {
		position: relative;
		width: 340px;
		font-size: 2.8em;
		line-height: 1.0;
		text-align: center;
	}

	.free_icon {
		display: block;
		position: absolute;
		width: 124px;
		height: auto;
		z-index: 999;
		left: -120px;
		top: -80px;
	}

	.ctadown_txt02 {
		width: 100%;
		color: #fff;
		font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
		font-size: 1.2em;
		padding-top: 0.2em;
		text-align: center;
	}

	.ctadown_txt03 {
		position: relative;
		display: block;
		margin: 0 auto;
		width: 170px;
		color: #fff;
		font-family: "游ゴシック", 'Noto Sans JP', sans-serif;
		font-size: 1.4em;
		padding-top: 0.5em;
		text-align: center;
	}

	.ctadown_txt03img {
		width: 29px;
		height: 29px;
	}

	.ctadown_txt03img img {
		width: 100%;
	}
}


/***********************************

実績・レビュー

***********************************/



.jisseki_flex1 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: center;
}

.jisseki_flex2 {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.jisseki_img {
    width: 30%;
    margin: 1%;
    max-width: 400px;
}

h2.jisseki_text {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: bold;
    text-align: center;
    margin: 2%;
}

span.jisseki_place{
    font-size: 15px;
    font-weight: bold;
}
@media screen and (max-width: 1000px){
	span.jisseki_place{
		font-size: 11px;
		font-weight: 500;
	}
}

@media screen and (max-width: 1000px){
  .jisseki_flex1 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
  .jisseki_flex2 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
  }
  .jisseki_img {
    width: 70%;
    margin: 1%;
    min-width: 140px;
  }
}

.review_box{
    width: 500px;
    height: 200px;
    margin: 1%;
    background-color: #ede4ff;
    padding: 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviewer {
    font-size: 14px;
    font-weight: bold;
}

.review_youto{
    font-size: 12px;
    font-weight: bold;
    margin: 5px 0;
}

.review_text {
    font-size: 12px;
}
.review_inyou {
    font-size: 10px;
}
.review_score{
	color:#ff9836;
}

@media screen and (max-width: 1000px){
	.review_box{
    width: 300px;
    height: 200px;
    margin: 1%;
    background-color: #ffe8e4;
    padding: 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
}



/***********************************

ショッピング

***********************************/
h2.shopping_text {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: bold;
    text-align: center;
    margin: 2%;
}

.shopping1 {
    display: flex;
    flex-direction: column;
}

.shopping2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1%;
}

@media screen and (max-width: 1000px){
  .shopping2{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1%;
    flex-direction: column;
  }

  .nisugata_text {
    width: 80%;
    margin: 2%;
  }

  .nisugata {
    width: 80%;
    margin: 2%;
}
}
.shopping2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.shopping_btnlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shopping_btn {
  margin-bottom: 25px;
}

.shopping_btn a {
  display: block;
  background-color: #ff6600; /* ボタン色 */
  color: #fff;
  text-align: center;
  padding: 12px 0;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  height: 50px;
  font-size: medium;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.shopping_btn a:hover {
  background-color: #e65c00; /* 少し濃いオレンジなど */
  cursor: pointer;
}

.nisugata_text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nisugata {
  width: 50%;
  filter: brightness(1.06);
}

.nisugata_text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width:559px) {
	.nisugata {
		width: 100%;
	}
	.nisugata_text {
		width: 100%;
	}
	.shopping_btn {
		margin-bottom: 27px;
	}
}

.shopping_btn a::before {
  content: '';
  display: inline-block;
  width: 20px;	
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;

  /* mask の省略記法でまとめる */
  -webkit-mask: url('https://www.yabuhara-ind.co.jp/lp/machcon/img/cart.svg') no-repeat center/contain;
  mask:         url('https://www.yabuhara-ind.co.jp/lp/machcon/img/cart.svg') no-repeat center/contain;

  /* デフォルト色（上書きされるので何色でもOK） */
  background-color: #fff;

  transition: background-color 0.3s ease;
}

/* ② ボタンごとのアイコン色（必ず共通定義の“あと”に書く） */
.shopping_btn:nth-child(1) a::before { background-color: #ff9900; }
.shopping_btn:nth-child(2) a::before { background-color: #e10b0b; }
.shopping_btn:nth-child(3) a::before { background-color: #bf0000; }
.shopping_btn:nth-child(4) a::before { background-color: #6400d1; }

/* ③ ホバー時のアイコン色 */
.shopping_btn:nth-child(1) a:hover::before { background-color: #cc7a00; }
.shopping_btn:nth-child(2) a:hover::before { background-color: #ba0d0d; }
.shopping_btn:nth-child(3) a:hover::before { background-color: #8f0000; }
.shopping_btn:nth-child(4) a:hover::before { background-color: #4d009d; }

.change_visual .shopping_btn a {
	background-color: #9e026d;
	border-color: #9e026d
}

.change_image .shopping_btn a {
	background-color: #9e026d;
	border-color: #9e026d
}

.change_intro .shopping_btn a {
	background-color: rgba(255, 255, 255, 1);
	border-color: rgba(255, 255, 255, 1)
}

.change_outro .shopping_btn a {
	background-color: #9e026d;
	border-color: #9e026d
}

.change_footer .shopping_btn a {
	background-color: #9e026d;
	border-color: #9e026d
}

.change_white .shopping_btn a {
	background-color: #9e026d;
	border-color: #9e026d
}

.change_orange .shopping_btn a {
	background-color: rgba(255, 255, 255, 1);
	border-color: rgba(255, 255, 255, 1)
}

.change_beige .shopping_btn a {
	background-color: #9e026d;
	border-color: #9e026d
}

.change_visual .shopping_btn a p {
	color: rgba(255, 255, 255, 1);
	font-weight:800;
}

.change_image .shopping_btn a p {
	color: rgba(255, 255, 255, 1);
	font-weight:800;
}

.change_intro .shopping_btn a p {
	color: #9e026d;
	font-weight:800;
}

.change_outro .shopping_btn a p {
	color: rgba(255, 255, 255, 1);
	font-weight:800;
}

.change_footer .shopping_btn a p {
	color: rgba(255, 255, 255, 1);
	font-weight:800;
}

.change_white .shopping_btn a p {
	color: rgba(255, 255, 255, 1);
	font-weight:800;
}

.change_orange .shopping_btn a p {
	color: #9e026d;
	font-weight:800;
}

.change_beige .shopping_btn a p {
	color: rgba(255, 255, 255, 1);
	font-weight:800;
}

.change_visual .shopping_btn a div span span {
	background-color: rgba(255, 255, 255, 1)
}

.change_image .shopping_btn a div span span {
	background-color: rgba(255, 255, 255, 1)
}

.change_intro .shopping_btn a div span span {
	background-color: #9e026d
}

.change_outro .shopping_btn a div span span {
	background-color: rgba(255, 255, 255, 1)
}

.change_footer .shopping_btn a div span span {
	background-color: rgba(255, 255, 255, 1)
}

.change_white .shopping_btn a div span span {
	background-color: rgba(255, 255, 255, 1)
}

.change_orange .shopping_btn a div span span {
	background-color: #9e026d
}

.change_beige .shopping_btn a div span span {
	background-color: rgba(255, 255, 255, 1)
}

.pc.change_visual .shopping_btn a:hover {
	background-color: rgba(232, 71, 38, 0)
}

.pc.change_image .shopping_btn a:hover {
	background-color: rgba(255, 255, 255, 1)
}

.pc.change_intro .shopping_btn a:hover {
	background-color: #9e026d
}

.pc.change_outro .shopping_btn a:hover {
	background-color: rgba(255, 255, 255, 1)
}

.pc.change_footer .shopping_btn a:hover {
	background-color: rgba(255, 255, 255, 1)
}

.pc.change_white .shopping_btn a:hover {
	background-color: rgba(255, 255, 255, 1)
}

.pc.change_orange .shopping_btn a:hover {
	background-color: #9e026d
}

.pc.change_beige .shopping_btn a:hover {
	background-color: rgba(255, 232, 228, 1)
}
/***********************

loading

***********************/
#loading-screen {
  background-color: #ffffff;
  color:  #9e026d;
  line-height: 1.4;
  letter-spacing: 0.1em;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-text {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 900;
  font-style: normal;
  background-color: #ffffff;
  color:  #9e026d;
  font-size: clamp(1.5rem, 5.5vw, 5rem);
  line-height: 3;
  letter-spacing: 0.1em;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* text1: フェードイン */
#text1 {
  animation: fadeIn 0.8s ease-in-out 0s forwards;
}

/* text2: 遅れてフェードイン */
#text2 {
  animation: fadeIn 0.8s ease-in-out 0.8s forwards;
}

#loading-screen.fadeout {
  opacity: 0;
  pointer-events: none;
}

/* テキストのフェードアウトを明示的に指定（JS制御） */
.fadeout .loading-text {
  animation: fadeOut 0.5s ease-in-out forwards !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}


.sd {
    flex-wrap: nowrap;
    max-width: 100%;
    pointer-events: all;
    z-index: 0;
    -webkit-overflow-scrolling: touch;
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    position: relative;
}

/****************************
    points
****************************/
.points{
    display: flex;
    justify-content: center;
    margin: 5% auto;
	max-width: 1500px;
}

.point1 {
    margin: 2%;
}

.point2 {
    margin: 2%;
}

.point3 {
    margin: 2%;
}

@media screen and (max-width: 1000px){
	.points{
		flex-wrap: wrap;
	}
	.point1 {
		width: 40%;
	}
	.point2 {
		width: 40%;
	}
	.point3 {
		width: 40%;
	}
}

/*フェードイン用*/
/* 初期状態 */
.point1, .point2, .point3 {
  opacity: 0;
  transform: translateY(30px);
}

/* アニメーション付与 */
.point1.fade-in {
  animation: fadeUp 0.6s ease-out 0s forwards;
}
.point2.fade-in {
  animation: fadeUp 0.6s ease-out 0.2s forwards;
}
.point3.fade-in {
  animation: fadeUp 0.6s ease-out 0.4s forwards;
}
/*フェードイン用 おわり*/

.postday{
	text-align: right;
	transform: translateY(-24px);
}

/* キーフレーム定義 */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}