@charset "UTF-8";

html {
	font-size: 10px;
	scroll-behavior: smooth;
}
body {
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	color:#333;
}
body.menu-active {
  overflow: hidden;
}

.pc{
  display: block;
}

.sp{
  display: none;
}
br.sp,
span.sp {
  display: none;
}

span.pc,
br.pc {
  display: inline;
}

@media screen and (max-width: 767px) {

	.sp{
    display: block;
	}
  br.sp,
  span.sp {
    display: inline;
  }

  .pc {
    display: none;
  }

  br.pc,
  span.pc {
    display: none;
  }
}

.header {
	width: 100%;
}
.header-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;

	max-width:1400px;
	margin:0 auto;
	
}
.header-logo img{
	max-width: 200px;
}
.header-right {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin-right:40px;
}


@media screen and (max-width:800px) {

	.header-right {
		display:none;

	}

}
.header-hukidasi {
	background-image: url("../images/hukidashi.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 210px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;

	box-sizing: border-box;
	margin-right: 20px;
}

@media screen and (max-width: 1000px) {
.header-hukidasi {
	display: none;
}	
}
.header-hukidasi-text{
	color: #EE001A;
	font-size: 1.8rem;
	font-weight: bold;
	line-height:1;
	margin-bottom:13px;
}
.header-tel {
  	text-align: center;
	margin-right: 20px;

}


.header-tel-text {
  font-size:1.6rem;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
}
.header-tel-number {
  font-size: 3rem;
  font-weight: bold;
  color: #EE001A;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
	display:block;
	text-decoration:none;
	width:fit-content;
	margin:0 auto;
}
.header-tel-number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 20px;
  height: 20px;

  background-image: url("../images/tel.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.header-satei-btn{
	font-size: 1.6rem;
	display: inline-block;
	padding: 18px 20px;

	background-color: #EE001A;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	border-radius: 9999px;
	box-shadow: 3px 3px 0 #000000;
	line-height: 1;
	margin-right:auto;
}
.header-satei-btn::after {
	position: relative;
	top: -2px;
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	margin-left: 8px;
}

.contents-inner{
	max-width:1160px:
	margin:0 auto;
}



.menu-nav{
	border-top: 1px solid #E3E3E3;
	border-bottom: 1px solid #E3E3E3;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.menu-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}


@media screen and (max-width: 1080px) {
	.menu-nav{
		display:none;
	}
}


.sp-menu-nav-wrap{
		display:none;
}
@media screen and (max-width: 1080px) {
	.sp-menu-nav-wrap{
		display:block;
	}
}
.menu-inner{
	width: 100%;
}
.menu-box {
	max-width: 1000px;
	margin: 0 auto; 
	justify-content: space-between;
  display: flex;
  list-style: none;
  padding: 0;
  font-size: 1.6rem;

}

.menu-box li{
  	padding: 20px;
}
.menu-box a {
  	text-decoration: none;
  	color: #000;
}

.sp-menu-nav{
	display:none;
	width:100%;
	position:fixed;
	width:100%;
	height:100%;
	background:#fff;
	z-index:998;
	top:0;
	
}

.sp-menu-nav .header-tel {
	margin-right:0;
	margin-bottom:30px;
}

body.menu-active .sp-menu-nav{
		display:block;
}



.sp-menu-inner{
	padding:20px;
}

.sp-menu-nav{
	text-align:center;
}

.sp-menu-nav .header-logo{
	margin-bottom:40px;
	display:block;
}
.sp-menu-box{
	margin-bottom:30px;
}


.sp-menu-box li{
	margin-bottom:20px;
}
.sp-menu-box a{
	text-decoration:none;
	color:#333;
}
.sp-menu-nav .header-satei-btn{
	width:90%;
}
.header-hamburger-menu {
  width: 30px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
	display:none;
}

@media screen and (max-width: 1080px) {
	.header-hamburger-menu {
		display:block;
		position: fixed;
		top:35px;
		right:20px;
		z-index:1000;
	}
}

.header-hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 999px;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-hamburger-menu span:nth-child(1) {
  top: 0;
}

.header-hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header-hamburger-menu span:nth-child(3) {
  bottom: 0;
}	

/* active時：✕に変形 */
body.menu-active .header-hamburger-menu span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.menu-active .header-hamburger-menu span:nth-child(2) {
  opacity: 0;
}

body.menu-active .header-hamburger-menu span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.footer {
border-top: 1px solid #E3E3E3;
	padding: 40px 20px 40px 20px;

}

.footer-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
@media screen and (max-width: 767px) {

.footer-inner {
	display: block;
	text-align:center;
}
}
.footer-logo img {
	max-width: 200px;
}

.footer-tel {
	text-align: center;
	flex: 1;
}

.footer-tel-text{
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 10px;
	line-height:1.6;
}
@media screen and (max-width: 767px) {
.footer-tel-text{
	font-size:1.6rem;
}
}
.footer-tel-text span{
	color: #EE001A;
}

@media screen and (max-width: 767px) {
.footer-tel-text span{
	display:block;
}
}
.footer-tel-time{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.footer-tel-number {
	display: inline-flex;
	font-size: 3rem;
	font-weight: bold;
	color: #EE001A;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.footer-tel-number::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url("../images/tel.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.footer-address {
	text-align: left;
	font-size: 1.6rem;
	font-weight: bold;
	line-height:1.6;
}

@media screen and (max-width: 767px) {

.footer-address {
	text-align: center;
}
}

.footer-address p{
	padding-bottom: 10px;
}

.footer-address-icon{
	text-align: left;
}

@media screen and (max-width: 767px) {
.footer-address-icon{
	text-align: center;
}


}
.footer-address-icon img{
	width: 38px;
	margin-left: 10px;
}

.float-menu{
	text-align:center;
	position:fixed;
	bottom:20px;
	right:20px;
	width:300px;
	background:#fff;
	border:3px solid #EE001A;
	border-radius:10px;
	padding:15px;
	font-weight:bold;
	z-index:999;
 	opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;


}

.float-menu.float-menu-block{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

}
@media screen and (max-width: 767px) {
	.float-menu{
		right:auto;
		left:50%;
		bottom:10px;
		transform: translateX(-50%) translateY(-10px);
		width:calc(90% - 30px);
	}
	.float-menu.float-menu-block{
	  opacity: 1;
	  visibility: visible;
	  pointer-events: auto;
		right:auto;
		left:50%;
		transform: translateX(-50%) translateY(-10px);

	}


}
.float-menu.scrolling {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

@media screen and (max-width: 767px) {
.float-menu.scrolling {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
	transform: translateX(-50%) translateY(0);
}

}

.float-menu-text{

}
.float-menu-text span{
color:#EE001A;
}
.float-menu-fukidashi {
	background-image: url("../images/hukidashi.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 210px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 auto;
	
}

.float-menu-fukidashi-text {
	color: #EE001A;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 13px;
}

.float-menu-tel{
font-size: 3rem;
  font-weight: bold;
  color: #EE001A;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  width: fit-content;
  margin: 10px auto;
	
}
.float-menu-tel::before{
content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/tel.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.float-menu-btn{
	font-size: 1.6rem;
  display: inline-block;
  padding: 10px 0	;
  background-color: #EE001A;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 3px 3px 0 #000000;
  line-height: 1;

	width:220px;
}
.float-menu-btn-wrap{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:10px;
}
.float-menu-sns{
	display:block;
	width:30px;

}
.float-menu-sns img{
		width:100%;
}




.home-mv{
	margin-bottom:40px;
  height: 600px;
	  background: #EE001A;
}

@media screen and (max-width: 767px) {
	.home-mv{
		margin-bottom:40px;
	  height:auto;

		  background: #EE001A;
	}
}
.home-mv img {
}

.home-mv-picture{
	width:50%;
}
.home-mv-inner {
  display: flex;
  height:100%;

  overflow: hidden;
	align-items:middle;
}
@media screen and (max-width: 767px) {
	.home-mv-inner {
		display:block;
	}


}


.home-mv-picture {
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
	background:#fff;
	
	background-image: url("../images/home-top-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}


@media screen and (max-width: 1080px) {
	.home-mv-picture {
		width:100%;
		height:300px;
   	clip-path: none;
	
	}
}
.home-mv-content {
		width:50%;
  color: #fff;
}

@media screen and (max-width: 1080px) {
.home-mv-content {
		width:100%;
}
}
.home-mv-content-inner {
  width: 540px;
	text-align:center;
	margin-top:40px;
}

@media screen and (max-width: 1080px) {
.home-mv-content-inner {
  width:100%;
	text-align:center;
	margin-top:40px;
}

}

.home-mv-content-title{
	font-size: 3.0rem;
font-size: clamp(2.0rem, 3.33vw, 3.0rem);
	font-weight: bold;
	margin-bottom: 15px;
}
.home-mv-content-img-box{
	margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
	.home-mv-content-img-box{
		width:90%;
		margin:0 auto 15px auto;
	}
	.home-mv-content-img-box img{
		width:100%;

	}
}
.home-mv-content-text{
	font-size: 3.6rem;
font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: bold;
	padding: 20px 0;
	margin-bottom: 15px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	display: inline-block;
	text-align: center;
	line-height:1.4;
}
.home-mv-content-tel-text{
	font-size: 3.0rem;
font-size: clamp(2.4rem, 3.33vw, 3.0rem);
	font-weight: bold;
	margin-bottom: 15px;
}
.home-mv-content-tel {
	display: block;
	font-size: 4.2rem;
	font-size: clamp(3.2rem, 5.56vw, 4.2rem);
	font-weight: bold;
	color: #FBFF10;
	position: relative;
	padding-left: 40px;

	text-decoration:none;
	width:fit-content;
	margin:0 auto 10px auto;
}

@media screen and (max-width: 767px) {
.home-mv-content-tel {
		padding-left: 20px;
}
}
.home-mv-content-tel::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.8vw;
	height:1.8vw;
	background-image: url("../images/top-tell.png");
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
.home-mv-content-tel::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height:25px;
	background-image: url("../images/top-tell.png");
	background-size: contain;
	background-repeat: no-repeat;
}
}

.home-mv-content-link-btn {
	background-color: #fff;
	min-width:360px;
	position: relative;
	display: inline-block;
	text-align: center;
	padding: 20px 0;
	font-size: 2rem;
	border: 1px solid #EE001A;
	font-weight: bold;
	color: #EE001A;
	text-decoration: none;
	border-radius: 9999px;
	line-height: 1;
	box-shadow: 3px 3px 0 #000000;
}

@media screen and (max-width: 767px) {
.home-mv-content-link{
	margin-bottom:20px;
}

.home-mv-content-link-btn {
		font-size: 1.8rem;
	min-width:300px;
}
}
.home-mv-content-link-btn::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 6px;
	border-top: 2px solid #EE001A;
	border-right: 2px solid #EE001A;
}
@media screen and (max-width: 767px) {
.home-mv-content-link-btn::after {
	right: 15px;
}
}



.second-hero{
	min-height:200px;
	width:100%;
	background: #EE001A url("../images/second-image.png") no-repeat center right / contain;
	display:flex;
	align-items:center;
}

@media screen and (max-width:978px) {
.second-hero{
	background: #EE001A url("../images/second-image.png") no-repeat center left 120px / cover;
}
}

.second-hero-title{
	font-size:30px;
	color:#fff;
	font-weight:bold;
	width:90%;
	margin:0 auto;
}
.contents-inner{
	max-width:1160px;
	margin:0 auto;
}

@media screen and (max-width: 767px) {
.contents-inner{
	max-width:90%;
}

}

.link-btn{
	font-size: 2.0rem;
	display: block;
	padding: 20px 40px;
	border: 1px solid #EE001A;
	font-weight: bold;
	color: #EE001A;
	text-decoration: none;
	border-radius: 9999px;
	line-height: 1;
	width:fit-content;
	margin:0 auto;
}
.link-btn::after {
	position: relative;
	top: -2px;
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #EE001A;
	border-right: 2px solid #EE001A;
	transform: rotate(45deg);
	margin-left: 8px;
}
@media screen and (max-width: 767px) {
	.link-btn{
		font-size: 1.6rem;
	}

}
.page-title{
	text-align: center;
	padding-top: 60px;
	margin-bottom: 40px;
}
.page-title-sub{
	font-size: 1.4rem;
	color: #EE001A;
	font-weight: bold;	
	padding-bottom :10px;	
}
@media screen and (max-width: 767px) {


}
.page-title-main{
	font-size: 4.0rem;
	color: #000;
	font-weight: bold;
		
}
@media screen and (max-width: 767px) {
.page-title-main{
	font-size: 2.8rem;
	line-height:1.6;
		
}

}
.page-title-lead{
	font-size: 1.6rem;
	margin-top:20px;
	line-height:1.6;
}
.home-record{
	width: 100%;
	padding-bottom: 80px;
}
.home-record-inner{
	margin: 0 auto;
	width: 1160px;
}
.home-record-title{
	text-align: center;
	margin-bottom: 40px;
}
.home-record-title-sub{
	font-size: 1.4rem;
	color: #EE001A;
	padding-bottom :10px;	
}
.home-record-title-main{
	font-size: 4.0rem;
	font-weight: bold;	
}
.home-record-card-wrapper{
	display: flex;

	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.home-record-card{
    width: calc((100% - 60px) / 4);
	
}

@media screen and (max-width: 767px) {
.home-record-card{
     width: calc((100% - 20px) / 2);
}

}
.home-record-card figure{

}
.home-record-card img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.home-record-link{
	text-align: center;
}
.home-record-link-btn{
	font-size: 2.0rem;
	display: inline-block;
	padding: 20px 40px;
	border: 1px solid #EE001A;
	font-weight: bold;
	color: #EE001A;
	text-decoration: none;
	border-radius: 9999px;
	line-height: 1;	
}
.home-record-link-btn::after {
	position: relative;
	top: -2px;
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #EE001A;
	border-right: 2px solid #EE001A;
	transform: rotate(45deg);
	margin-left: 8px;
}
@media screen and (max-width: 767px) {
	.home-record-link-btn{
		font-size: 1.6rem;
	}

}
.home-record-card-title{
	text-align:left;
	font-size:1.4rem;
	margin-top:10px;
	font-weight:bold;

}
.home-record-card-date{
	margin-top:10px;
	font-size:1.2rem;
	color:#666;

}
.home-feature{
	width: 100%;
	padding-bottom: 80px;
}


.home-feature-title{
	text-align: center;
	margin-bottom: 80px;
}
.home-feature-title-sub{
	font-size: 2.0rem;
	color: #EE001A;
	font-weight: bold;	
	padding-bottom :10px;	
}
.home-feature-title-main{
	font-size: 4.0rem;
	font-weight: bold;	
}

.home-feature-media-wrapper{

}
.home-feature-media {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 80px;
}
@media screen and (max-width: 767px) {

	.home-feature-media {
		display: block;
	}
}
.home-feature-media-img{
  	position: relative;
	width: 560px;
	padding-right: 7.5px;
	padding-bottom: 7.5px;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.home-feature-media-img {
		width: 100%;
	}

}
.home-feature-media-img img{
	width: 100%;
	display: block;
	border-radius: 10px; /* ← メイン画像 */
}
.home-feature-media-img::before {
  content: "";
  position: absolute;
  top: 7.5px;
  left: 7.5px;
  width: 100%;
  height: 100%;
  background-image: url("../images/home-feature-media-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  z-index: -1;
}
.home-feature-media:nth-child(even) {
	flex-direction: row-reverse;
}
.home-feature-media-text{
	flex: 1;
	padding: 80px 0 0 80px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.home-feature-media-text{
		padding: 30px 0 0 30px;
		margin-top:20px;
	}
}

.home-feature-media-text::before {
  z-index: -10;
  content: "";
  position: absolute;
  top: 30px;
  left: 20px;
  width: 200px;
  height: 140px;
  background-size: contain;
  background-repeat: no-repeat;

}

@media screen and (max-width: 767px) {
	.home-feature-media-text::before {
		width: 100px;
	  height: 70px;
	  top: 0px;
	  left: 0px;
	}
}
.feature-media-1::before{
  background-image: url("../images/01.png");
}
.feature-media-2::before{
  background-image: url("../images/02.png");
}
.feature-media-3::before{
  background-image: url("../images/03.png");
}
.home-feature-media-text-title{
	font-size: 4.0rem;
	font-weight: bold;
	line-height: 1.45;
	margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
	.home-feature-media-text-title{
			font-size:2.6rem;
	}
}

.home-feature-media-text-title span{
	color: #EE001A;
}

.home-feature-media-text-comment{
	font-size: 1.6rem;
	line-height: 2;
}


.home-feature-contact-tel {
  	text-align: center;
	margin-right: 30px;
}

@media screen and (max-width: 767px) {

.home-feature-contact-tel {
  	text-align: center;
	margin-right: 0;
}
}
.home-feature-contact-tel-text {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {

.home-feature-contact-tel-text {
  font-size: 1.6rem;
}
}

.home-feature-contact-tel-number {
  font-size: 3.8rem;
  font-weight: bold;
  color: #EE001A;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
	width:fit-content;
	margin:10px auto;
	display:block;
	text-decoration:none;
	
}

@media screen and (max-width: 767px) {
	.home-feature-contact-tel-number {
  	font-size: 3rem;
  padding-left: 25px;
	}
}

.home-feature-contact-tel-number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 20px;
  height: 20px;

  background-image: url("../images/tel.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.home-feature-contact-tel-icon{
	text-align: center;
}

@media screen and (max-width: 767px) {
.home-feature-contact-tel-icon{
	margin-bottom:20px;
}
}


.home-feature-contact-tel-icon img{
	width: 38px;
	margin-left: 10px;
}
.home-feature-contact{
  border-top: 1px solid #EF1D1D;
  border-bottom: 1px solid #EF1D1D;
  padding: 40px;
}
@media screen and (max-width: 767px) {
	.home-feature-contact{
  	padding: 20px 0;
	}

}


.home-feature-contact-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.home-feature-contact-wrapper{
		display: block;
	}

}

.home-feature-contact-text{
	text-align:center;
}
.home-feature-contact-text-main {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 10px;

}

@media screen and (max-width: 767px) {
.home-feature-contact-text-main {
  font-size: 2rem;
}
}
.home-feature-contact-text-sub {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
.home-feature-contact-text-sub {
  font-size: 1.6rem;
	}

}
.home-feature-contact-link{
	text-align:center;
}
.home-feature-contact-link-btn{
	font-size: 1.8rem;
	display: inline-block;
	padding: 20px 40px;
	background-color: #EE001A;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	border-radius: 9999px;
	box-shadow: 3px 3px 0 #000000;
	line-height: 1;

}
.home-feature-contact-link-btn::after {
	position: relative;
	top: -2px;
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	margin-left: 20px;
}

.home-review{
	width: 100%;
	padding-bottom: 80px;
	background-image: 
	linear-gradient(#EF1D1D99, #EF1D1D99),
	url("../images/home-review-bd.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.home-review-inner{
	margin: 0 auto;
	width: 1160px;
}

.home-review-title{
	text-align: center;
	padding-top: 60px;
	margin-bottom: 80px;
}
.home-review-title-sub{
	font-size: 1.4rem;
	color: #fff;
	font-weight: bold;	
	padding-bottom :20px;	
}
.home-review-title-main{
	font-size: 4.0rem;
	color: #fff;
	font-weight: bold;	
}

.home-review-card {
	margin: 0 10px;
	width: auto;
	background: #fff;
	padding: 30px;
	display: flex;
	width:300px;
	min-height:
}
.home-review .slick-track {
  display: flex;
  align-items: stretch;
}

.home-review .slick-slide {
  height: auto;
}

.home-review .slick-slide > div {
  height: 100%;
}

.home-review .slider-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-review-card {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
	.home-review-card {
			max-width:300px;
			width:100%;
	}
}
.home-review-card-text{
 display: flex;
  flex-direction: column;
	width:100%;
}
.home-review-card-text-title{
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
	position: relative;
 
	min-height: 46px;
	display:flex;
	line-height:1.6;
}

.home-review-card-text-title .review-icon{
		width: 50px;
	  height: 50px;
	  object-position: center;
	  border-radius: 50%;
	  display: block;
	  overflow: hidden;
	  flex-shrink: 0;
}
.home-review-card-text-title .review-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.home-review-card-comment {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 2;
	margin-bottom: 20px;
}

.home-review-card-name {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: right;
	margin-top:auto;
}
.slick-dots {
  bottom: -60px;
}
.slick-dots li button:before {
  color: #fff;      /* 白にする */
  font-size: 12px;  /* 大きくする（デフォルトは小さい） */
  opacity: 1;       /* 薄くならないように */
  
}

.faq{
	width: 100%;
	padding-bottom: 80px;
	background-color: #F5F5F5;
}
.faq-inner{
	margin: 0 auto;
	width: 1160px;
}

.faq-title{
	text-align: center;
	padding-top: 60px;
	margin-bottom: 80px;
}
.faq-title-sub{
	font-size: 1.4rem;
	color: #EE001A;
	font-weight: bold;	
	padding-bottom :20px;	
}
.faq-title-main{
	font-size: 4.0rem;
	color: #000;
	font-weight: bold;	
}
.faq-item {
	background-color: #fff;
	padding: 25px;
	margin-bottom: 28px;
	border-radius: 10px;
	line-height:1.6;
}
@media screen and (max-width: 767px) {
.faq-item {
	padding: 10px 15px;
}
}
.faq-question {	
  font-size: 2.4rem;
  font-weight: bold;	
  cursor: pointer;
  position: relative;
  padding: 15px 40px 15px 60px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
.faq-question {	
  font-size: 1.6rem;
  padding: 15px 40px 15px 40px;
}
}
.faq-question::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width:40px;
	height: 40px;
	background-image: url("../images/question-icon.png");
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
	.faq-question::before {
		width: 30px;
		height: 30px;
	}
}
.faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/plus.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.faq-item.active .home-faq-question::after {
  background-image: url("../images/minus.png");
}

.faq-answer {
	
 margin-top:20px;
 display: none;
}

.faq-answer-title {
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding: 15px 40px 15px 60px;
  margin-bottom: 10px;
  font-weight: bold;	
}

@media screen and (max-width: 767px) {
.faq-answer-title {
  font-size: 1.6rem;
  padding: 15px 40px 15px 40px;
}
}

.faq-answer-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-image: url("../images/answer-icon.png");
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
.faq-answer-title::before {
	width: 30px;
	height: 30px;

}

}

.faq-answer-text {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 15px 40px 15px 60px;
}

@media screen and (max-width: 767px) {
.faq-answer-text {
  padding: 0px 20px 15px 30px;
}

}




.home-shop{
	width: 100%;
	padding-bottom: 80px;
}
.home-shop-inner{
	margin: 0 auto;
	width: 1160px;
}

.home-shop-title{
	text-align: center;
	padding-top: 60px;
	margin-bottom: 80px;
}
.home-shop-title-sub{
	font-size: 1.4rem;
	color: #EE001A;
	font-weight: bold;	
	padding-bottom :20px;	
}
.home-shop-title-main{
	font-size: 4.0rem;
	color: #000;
	font-weight: bold;	
}

.home-shop-item-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
.home-shop-item-wrapper {
  display: block;

}

}
.home-shop-item-img {
  width: 560px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
.home-shop-item-img {
  width: 100%;
}
}
.home-shop-item-img img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
}

.home-shop-item-caption{
	font-size: 1.6rem;
}

.home-shop-item-comment {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
  	line-height: 2;
	flex: 1;
}
.home-shop-item-comment-text {
	margin-bottom: 30px;
}
.home-shop-item-link-btn {
	max-width:210px;
  position: relative;
  display: block;
  text-align: center;
  padding: 20px 60px;
  font-size: 2.0rem;
  border: 1px solid #EE001A;
  font-weight: bold;
  color: #EE001A;
  text-decoration: none;
  border-radius: 9999px;
  line-height: 1;
	margin:0 auto;
}

.home-shop-item-link-btn::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #EE001A;
  border-right: 2px solid #EE001A;
}


.flow{
	padding-top:100px;
	padding-bottom:100px;
}
@media screen and (max-width: 767px) {

.flow{
	padding-top:40px;
	padding-bottom:40px;
}
}

.flow-item{
	background:#F5F5F5;
	display:flex;
	padding:50px;
	border-radius:20px;
	position:relative;
	margin-bottom:70px;
	
}
@media screen and (max-width: 767px) {
.flow-item{
	padding:20px;
	display:block;
}
}
.flow-item-pic{
	max-width:467px;
}
@media screen and (max-width: 767px) {
.flow-item-pic{
	max-width:100%;
}
}

.flow-item-pic img{
	width:100%;
	border-radius:20px;
}

.flow-item-textarea{
	padding-right:50px;
	font-size:1.6rem;
	line-height:1.6;
}
@media screen and (max-width: 767px) {

.flow-item-textarea{
	padding-right:0px;
}

}

.flow-item-step{
	color:#EE001A;
	font-weight:bold;
	margin-bottom:20px;
}

.flow-step-title{
	  font-size: 3rem;
}

.flow-step-number{
	  font-size: 4rem;
	margin-left:5px;
}
@media screen and (max-width: 767px) {

	.flow-step-title{
		  font-size: 2rem;
	}

	.flow-step-number{
		  font-size: 3rem;
		margin-left:5px;
	}
}
.flow-item-h3{
	font-size: 4rem;
	font-weight:bold;
	line-height:1.4;
	margin-bottom:20px;
}
@media screen and (max-width: 767px) {
.flow-item-h3{
	font-size: 2rem;
}

}
.flow-item-text{
	  font-size:1.6rem;
	line-height:2;
	margin-bottom:10px;
}

.flow-item::after {
	position:absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  vertical-align: middle;

  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 16px solid #FFE1E1;
	bottom:-45px;
	left:50%;
  transform: translateX(-50%);
}

.flow-item:last-child::after {
	display:none;
}


.company-message{
	display:flex;
	justify-content:space-between;
	border-bottom:1px solid #E1E1E1;
	padding-bottom:40px;
	margin-bottom:20px;
}
@media screen and (max-width: 767px) {
.company-message{
	display:block;
}
}
.company-message-pic{
	width:560px;
}

@media screen and (max-width: 767px) {

.company-message-pic{
	width:100%;
	margin-bottom:20px;
}
}
.company-message-pic img{
	width:100%;
}
.company-message-text{
	line-height:2;
	font-size:1.6rem;
	width:calc(100% - 580px);
}
@media screen and (max-width: 767px) {
	.company-message-text{
		width:100%;
	}
}
.company-message-pic-caption{
		font-size:1.4rem;
	margin-top:10px;
}
.company-table{
	margin-bottom:50px;
	line-height:1.6;
}

.company-table table{
	width:100%;
}


.company-table th{
	background:#F3F3F3;
	width:300px;
}

@media screen and (max-width: 767px) {
.company-table th{
	width:100px;
}
}
.company-table th,
.company-table td{

	text-align:left;
	padding:20px 30px;
	border:1px solid #E1E1E1;
}
.company-map{
	margin-bottom:50px;
}
.company-map iframe{
		width:100%;
	height:600px;
}

.form{
	margin-bottom:80px;
}

.form-message{
	max-width:435px;
	margin:0 auto;
	border:1px solid #333;
	text-align:center;
	padding:20px 0;
	background:#fff;
	position:relative;
	margin-bottom:40px;
}

.form-message::after{
	content:'';
	display:block;
	width:100%;
	height:100%;
	max-width:435px;

	left:10px;
	top:10px;
	position:absolute;
	background:#333;
	z-index:-1;
}

.form-message-text{
	font-size:2rem;
	font-weight:bold;
	margin-bottom:15px;
}

.form-message-tel{
		font-size:3rem;
	color:#EE001A;
	font-weight:bold;
	margin-bottom:15px;
	display:block;
	text-decoration:none;
}

.form-message-name{
	font-size:2rem;
	font-weight:bold;

}
.form-message-sns{
	display:flex;
	gap:10px;
	justify-content:center;

}
.form-message-sns a img{
	width:100%;
}
.form-message-sns a{
	display:block;
	max-width:35px;
	
}


.form-table{
	max-width:720px;
	margin:0 auto;
}

.form-table table{
	width:100%;
	
}
.form-table table th{
	background:#F3F3F3;
	width:180px;
	text-align:left;

}
@media screen and (max-width: 767px) {
.form-table table th{
	width:100%;

}
}


.form-table table td{
	width:calc(100% - 180px);


}
.form-table table td,
.form-table table th{
	border:1px solid #E1E1E1;

	vertical-align: middle;
	padding:15px;
}




@media screen and (max-width: 767px) {
.form-table table{
	border-bottom:1px solid #E1E1E1;
}

.form-table table td,
.form-table table th{
	display:block;
	width:calc(100% - 30px);
	border-bottom:0;
}
}
.form-table table th span{
	font-size:1.2rem;
	background:#EE001A;
	color:#fff;
	padding:5px 10px;
	border-radius:5px;
	line-height:1;
	margin-left:10px;
}

.form-table input[type="tel"],
.form-table input[type="text"],
.form-table input[type="email"]{
	border:1px solid #E1E1E1;
	padding:8px;
	width:calc(100% - 16px);
	max-width:350px;
	font-size:1.6rem;
}


.form-table-file{
	margin-top:5px;
	font-size:1.4rem;
	line-height:1.6;
}

.form-table textarea{
		border:1px solid #E1E1E1;
	height:200px;
	width:100%;
	max-width:350px;
	padding:8px;
}

@media screen and (max-width: 767px) {
.form-table textarea{
	width:calc(100% - 16px);
}
}

.form-table-upload{
  display: inline-block;
  background: #ee001a;
  color: #fff;
  padding: 5px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
	margin-bottom:5px;

box-shadow: 3px 3px 0 #000000;
}
.form-table-upload:hover {
  opacity: 0.8;
}

.form-table-upload input {
  display: none;
}
.form-submit{
	text-align:center;
	margin-top:40px;
	
}
.form-submit-btn{
	width:253px;
	  background: #EE001A;
  color: #fff;
	font-size:1.8rem;
	font-weight:bold;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
	box-shadow: 3px 3px 0 #000000;
	position:relative;
}

@media screen and (max-width: 767px) {
.form-submit-btn{
	width:100%;

}
}
.form-submit-btn::after {
  position: absolute;
  top: -2px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 8px;
}

.form-table .wpcf7-spinner{
	display:block;
  margin: 15px auto 0;
}


.form-table .file-remove {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-left: 10px;
  padding: 6px 12px;

  background:#ee001a;
  color: #fff;

  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;

  border-radius: 999px;
  cursor: pointer;

  min-height: 32px;
  white-space: nowrap;

  -webkit-tap-highlight-color: transparent;
}

.purchases{
	display:flex;
	justify-content: space-between;
	margin-bottom:40px;
}

@media screen and (max-width: 767px) {
.purchases{
	display:block;
	margin-bottom:40px;
}


}
.purchases-title{
	font-size:2.4rem;
	margin:30px 0 10px 0;
	font-weight:bold;
}

.purchases-date{
		font-size:1.2rem;
	color:#666;
	margin-bottom:30px;
}
.purchases-content{
	width:900px;
}
@media screen and (max-width: 767px) {
.purchases-content{
	width:100%;
}

}
.purchases-image{
	display:block;
	margin-bottom:40px;
}
.purchases-image img{
	width:100%;
}
.purchases-side{
	width:240px;
}

@media screen and (max-width: 767px) {
.purchases-side{
	margin-top:40px;
	width:100%;
}

}
.purchases-side img{
	width:100%;
}
.purchases-side a{
	text-decoration:none;
	color:#333;

}

.purchases-side a:hover{
	color:#EE001A;
}

.purchases-side dl{
	display:flex;
	margin-bottom:20px;
	font-size:1.4rem;
	line-height:1.6;
}
.purchases-side dt{
	margin-right:20px;
}
.purchases-side dt figure{
 width:80px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.purchases-side dt img{
	  width: 100%;
  height: 100%;
  object-fit: cover;
}


.purchases-spec table{
	width:100%;
	margin-bottom:20px;
}

.purchases-spec td,
.purchases-spec th{
	border:1px solid #E1E1E1;

	vertical-align: middle;
	padding:15px;
}


.purchases-spec th{
		background:#F3F3F3;
	width:180px;
	text-align:left;
}

.purchases-comment{
	line-height:1.6;
margin-bottom:40px;
}

.purchases-list{
	margin-top:80px;
	margin-bottom:80px;
}
.purchases-list a{
	text-decoration:none;
	color:#333;
}

.purchases-list a:hover{
	color:#EE001A;
}
.purchases-list ul{
	display:flex;
	  flex-wrap: wrap;
	gap:20px;
}

.purchases-list ul li{
	margin-bottom:20px;
}

.purchases-list ul li img{
	width:100%;
}
.purchases-list ul li{
	width:calc((100% - 60px) / 4);
}

@media screen and (max-width: 767px) {
.purchases-list ul li{
	width:calc((100% - 20px) / 2); 
}

}


.purchases-list ul li figure img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.purchases-list-title{
	font-size:1.4rem;
	line-height:1.6;
	margin-top:10px;
	margin-bottom:5px;
font-weight:bold;
}

.purchases-list-date{
	font-size:1.2rem;
	color:#666;
}


.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  font-size: 14px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}

.wp-pagenavi a:hover {
  background:#EE001A;
  border-color: #EE001A;
  color: #fff;
}

.wp-pagenavi .current {
  background: #EE001A;
  border-color: #EE001A;
  color: #fff;
  font-weight: bold;
}

.wp-pagenavi .pages {
  padding: 0 14px;
  background: transparent;
  border-color: transparent;
  color: #666;
}

.wp-pagenavi .extend {
  border-color: transparent;
  background: transparent;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  min-width: auto;
  padding: 0 14px;
}


.page-faq .faq{
	margin-top:80px;
	background:#fff;
}

.page-faq .faq-item {
	border:1px solid #999;
}





.review{
	width: 100%;
	padding-top: 80px;
	padding-bottom: 80px;



}

@media screen and (max-width: 767px) {
.review{

	padding-top: 40px;
	padding-bottom: 40px;



}

}
.review-inner{
	display:flex;
flex-wrap:wrap;
	
}

@media screen and (max-width: 767px) {
.review-inner{
	display:block;

}


}
.review-title{
	text-align: center;
	padding-top: 60px;
	margin-bottom: 80px;
}
.review-title-sub{
	font-size: 1.4rem;
	color: #fff;
	font-weight: bold;	
	padding-bottom :20px;	
}
.review-title-main{
	font-size: 4.0rem;
	color: #fff;
	font-weight: bold;	
}

.review-card {
	margin-right: 30px;
	width: auto;
	background: #fff;
	padding: 30px;
	display: flex;

	width:calc(33% - 90px);
	border:1px solid #666;
	border-radius:10px;
	margin-bottom:40px;
}
@media screen and (max-width: 767px) {
	.review-card {
		width:calc(100% - 60px);

	}
}
.review-card-text{
	width:100%;
}

.review-card-text-title{
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 30px;


	min-height: 46px;
	line-height:1.6;
	display:flex;
	justify-content:space-between;
}
.review-card-text-title .review-icon{
  width: 50px;
  height: 50px;

 	object-position: center;
  border-radius: 50%;
	display:block;
	overflow:hidden;
  flex-shrink: 0;
}

.review-card-text-title .review-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;

}

.review-card-text-title p{
	width:calc(100% - 55px);
}

.review-card-comment {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 2;
	margin-bottom: 20px;
}

.review-card-name {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: right;

}

.page-form .wpcf7 .wpcf7-not-valid-tip{
	margin-top:10px;
}
.page-form .wpcf7 .wpcf7-response-output{
	padding:20px;
	text-align:center;
	line-height:1.6;
}

.page-form .float-menu{
	display:none;
}