/*tablet*/
@media screen and (max-width:1200px) and (min-width:751px){
.main_visual{
	width: 100%;
	flex-direction: column;
	margin: 0;
	height: auto;
}
.main_visual .left{
	width: 100%;
	height: 60vh;
	padding: 0;
	position: relative;
	display: block;
	
}
#mainvisual{
	height: 60vh !important; 
    min-height: 380px !important;
    max-height: 600px !important;
}

.main_visual .left .main_text h1{
	letter-spacing: 1px;
}
.main_visual .right{
	width: 100%;
	height: auto;
	/*margin-top: 20px;*/
}
.main_visual .right .carousel {
    width: 100%;
    overflow: hidden;
  }
.main_visual .right .slides{
	display: flex;
	flex-direction: row;
	gap: 16px;
	width: 100%;
}
.main_visual .right .slide {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
  }

.main_visual .right .slide img{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	position: static !important; 
	transform: none !important;
}


/* ================== news_area ================== */
.news_area{
    display:flex;
    flex-direction:column;
}
.news_title{
    display:flex;
    justify-content:space-between;
    align-items: flex-end;
	gap:20px;
    margin: 0 0 30px;
	width: 100%;
}
.news_title .button{
    margin-left: auto;
}
.item_list{
    width:100%;
}

/* ================== .contents_about ================== */
.title_inner{
	width: 90%;
	padding-top: 80px;
}
.title{
	text-align: center;
}
.title::before{
	position: static;
	display: block;
	margin-top: 0.5rem;
	font-size: 0.7rem;
	text-align: center;
}
.about_title{
	font-size: 1.8rem;
	padding-bottom: 2rem;
}
.about_inner{
	width: 100%;
	padding: 0 0 40px 0;
	flex-direction: column;
}
.about_left{
	width: 100%;
	padding: 0;
}
.about_sub{
	font-size: 1.3rem;
}
.about_sub br{
	display: none;
}
.about_sub,
.about_text,
ul.about_points{
	width: 90%;
	margin: 0 auto;
}
.about_right{
	position: static;
	width: 90%;
	margin: 3rem auto 0;
}
.about_images {
    display: flex;
	flex-direction: row-reverse;
    align-items: flex-end;/
    justify-content: space-between;
    position: static;
}
.img_main {
	position: relative;
    width: 75%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 4px;
	z-index: 1;
}
.img_sub {
    position: relative;
    width: 40%; 
    aspect-ratio: 4 / 2;
    object-fit: cover;
	margin-right: -15%;
    margin-bottom: -5%;
	z-index: 2;
    border-radius: 4px;
    bottom: auto;
    left: auto;
}
ul.about_points{
	gap: 1rem;
	width: 90%;
	margin: 0 auto;
}
ul.about_points li{
	height: auto;
	padding: 1.3rem;
	width: 100%;
	min-height: 0;
}
.about_card{
	padding: 3rem 1.5rem 3.5rem;
}
.about_card .back{
	font-size: 1.9rem;
}


/* ================== column ================== */
.column ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}
.column ul li{
    width:100%;
}

}

/*sp*/
@media screen and (max-width: 750px) {
  /* ============== main_visual end =================== */
.main_visual{
	width: 100%;
	flex-direction: column;
	margin: 0;
	height: auto;
}
.main_visual .left{
	width: 100%;
	height: 60vh;
	min-height: 380px;
	max-height: 560px;
	padding: 0;
	position: relative;
	display: block;
	
}
#mainvisual{
	height: 60vh !important; 
    min-height: 380px !important;
    max-height: 560px !important;
}

.main_visual .left .main_text h1{
	letter-spacing: 1px;
}
.main_visual .right{
	width: 100%;
	height: auto;
	margin-top: 20px;
}
.main_visual .right .carousel{
	overflow-x: auto;/* 横スクロール許可 */
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch; /* iOS慣性スクロール対応 */
	scroll-snap-type: x mandatory; 
}
.main_visual .right .slides{
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 12px;
}
.main_visual .right .slide{
	flex: 0 0 70%;
	scroll-snap-align: center; /* 中央でスナップさせる */
	overflow: hidden;
	position: relative;
}
.main_visual .right .slide img{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	position: static !important; /* ← ここ重要！PC用のabsoluteを無効化 */
	transform: none !important;   /* 中央寄せの変換も消す */
}
  
/* ================== news_area ================== */
.news{
	background-position: left bottom;
	background-size: 60%;
}
.news_area{
	width: 90%;
	height: auto;
	flex-direction: column;
	margin: 60px auto 0;
}
.news_title{
	width: 100%;
	margin: 0;
	display: flex;
	justify-content: space-between;
}
.news_area .more_btn{
	width: 140px;
	margin-top: 50px;	
}
.news_area .item_list{
	width: 100%;
}
.news_area .item_list li a{
	padding: 20px 5px;
}
/* ================== .contents_about ================== */
.contents_about{
	padding-bottom: 500px;
}
.title_inner{
	width: 90%;
	padding-top: 80px;
}
.title{
	text-align: center;
}
.title::before{
	position: static;
	display: block;
	margin-top: 0.5rem;
	font-size: 0.7rem;
	text-align: center;
}
.about_title{
	font-size: 1.8rem;
	padding-bottom: 2rem
}
.about_inner{
	width: 100%;
	padding: 0 0 40px 0;
	flex-direction: column;
}
.about_left{
	width: 100%;
	padding: 0;
}
.about_sub{
	font-size: 1.2rem;
}
.about_sub,
.about_text,
ul.about_points{
	width: 90%;
	margin: 0 auto;
}
.about_right{
	position: static;
	width: 100%;
	margin-top: 2rem;
}
.img_sub{
	display: none;
}
 ul.about_points{
	flex-direction: column;
	gap: 1rem;
	width: 90%;
	margin: 0 auto;
}
ul.about_points li{
	height: auto;
	padding: 1.3rem;
	font-size: 1rem;
	width: 100%;
	min-height: 0;
}
.about_links{
	grid-template-columns: 1fr;
	margin-top: 60px;
}
.about_card{
	padding: 3rem 1.5rem 3.5rem;
}
.about_card .back{
	font-size: 2.2rem;
}

/* ================== column ================== */
.column{
	padding: 180px 0 100px;
	background: none;
}
.column_title .title{
	text-align: center;
}
.column ul{
	overflow-x: auto;/* 横スクロール許可 */
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch; /* iOS慣性スクロール対応 */
	scroll-snap-type: x mandatory; /* スクロール時に画像でパチッと止まる */
	gap: 1rem;
	padding-bottom: 1rem;
}
.column ul li{
	min-width: 70%;
}
.column ul li a,
.column ul li .photo_box{
	aspect-ratio: 1 / 1.1;
}
  
/* ================== contact ================== */
.contact{
	background-size: cover;
	background-image: url(../img/back_img02_sp.jpg);
}
.contact .contact_list{
	flex-direction: column;
	width: 85%;
	margin: 0 auto;
}
.contact_list .contact_btn{
	margin: 30px 0;
}
.contact .contact_list .tel_btn{
	width: 100%;
}
.contact .contact_list .contact_btn,
.contact .contact_list .catalog_btn{
	width: 100%;
}
  
  
  
  
  
  
  
  
  
  
  
}