@charset "UTF-8";
/* CSS Document */

@font-face{
	font-family: "小塚ゴシック R";
	src: url("../fonts/KozGoPr6N-Regular.otf") format("opentype");
}

*{
	/*scroll-behavior: smooth;*/
}
.wrap{
	overflow: hidden;
}




/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　subttl.html　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.subttl{
	width: 95%;
	max-width: 1300px;
	margin: 0 auto;
	font-size: 32px;
	font-weight: 600;
}
.subttl span{
	display: block;
	font-size: 16px;
	line-height: 2;
}

@media screen and (max-width:990px){
	.subttl{
		font-size: clamp(18px, 3.2vw, 22px);
	}
	.subttl span{
		font-size: clamp(10px, 2.0vw, 14px);
	}
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　subttl.html　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/


/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　ボタン　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

/* LINE001 */

.btns{
	display: flex;
}

.button_line001 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
}
.button_line001 a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_line001 a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_line001 a:hover {
    opacity: 0.7;
}
.button_line001 a:hover:after {
    transform: scale(1, 1);
}











/*矢印が右に移動する*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
    /*形状*/
    display: inline-block;
    color: #333;
    text-decoration: none;
    outline: none;
	
	
	font-size: clamp(14px, 3.2vw, 18px);
}

/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
  position: absolute;
    left:0%;
    bottom:-8px;
    /*下線の形状*/    
    width: 155%;
    height: 1px;
  background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}

.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    bottom:-3px;
    left: 142%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
  background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before{
    left:5%;
}

.btnarrow4:hover::after{
    left: 147%;
}


















/* ボタン共通設定 */
.btn06{
    /*矢印の基点とするためrelativeを指定*/
  position: relative;
    /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  color:#fff;
	margin: 30px 15px 0;
	padding: 15px 40px 15px 30px;
  width: 250px;
  border: 1px solid #fff;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
}

.btn06:hover{
  background:#fff;
}

.btn06:hover{
  color:#293f20;
}


/* 矢印が右に移動 */

.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    top:42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    border-top: 2px solid #293f20;
    border-right: 2px solid #293f20;
    right: 11px;
}
@media screen and (max-width:990px){
	.btn06{
		margin: 2px;
  		width: 200px;
	}
}


/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　ボタン　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/








.bunner{
	max-width: 1000px;
	margin: 0 auto;
}
.bunner a{
	display: block;
	max-width: 550px;
	margin: 75px auto;
}
@media only screen and (min-width: 1000px){
.bunner{display: flex;}
.bunner a{width: 450px;margin: 100px auto 150px auto;}}




/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　contents_2clm　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.contents_2clm{
	display: flex;
	margin: 100px auto;
}
.contents_2clm_Vi{
	width: 50%;
	height: 550px;
	background: url("../images/contents_2clm_Vi_bg.jpg") no-repeat center / cover;
}
.about_contents_3-2 .contents_2clm_Vi{
	background: url("../images/about_contents_3-2_img1.png") no-repeat center / cover;
}
.about_contents_3-3 .contents_2clm_Vi{
	background: url("../images/about_contents_3-3_img1.jpg") no-repeat center / cover;
}
.about_contents_3-5 .contents_2clm_Vi{
	background: url("../images/about_contents_3-5_img1.jpg") no-repeat center / cover;
}


.contents_2clm_text{
	width: 45%;
	max-width: 850px;
	margin: 0 0 0 auto;
}
.contents_2clm_text div{
	width: 90%;
	max-width: 550px;
	margin: 0;
}
.contents_2clm_text div img{
	display: block;
	width: 250px;
	margin: 60px auto 30px auto;
}
.contents_2clm_text_ttl{
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: clamp(28px, 4.8vw, 44px);
	font-weight: 600;
	margin: 0 0 1em 0;
}
.contents_2clm_text_p{
	line-height: 2.5;
}
.contents_2clm_text_p span{
	display: block;
	font-size: 0.8em;
	margin-bottom: 80px;
}


@media screen and (max-width:990px){
	.contents_2clm{
		display: block;
	}
	.contents_2clm > div{
		width: 100%;
		text-align: center;
	}
	.contents_2clm_text div img{
		margin: 25px auto 30px auto;
	}
	.contents_2clm_Vi{
		height: 350px;
	}
	.contents_2clm_text{
		max-width: 1000px;
		margin: 0 auto 0 auto;
	}
	.contents_2clm_text div{
		margin: 0 auto 0 auto;
	}
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　contents_2clm　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　文字が無限に流れるやつ　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.bbs{
	align-items: center;
	color: #e5e5e5;
	display: flex;
	height: 250px;
	overflow:hidden;
	width: 100%;
	white-space:nowrap;
	z-index: 1;
	font-size: 180px;
	font-weight: 600;
	line-height: 0;
	letter-spacing: 15px;
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width:990px){
	.bbs{
		font-size: 80px;
		letter-spacing: -2px;
	}
}
	.bbs ul {
		animation: flowing 60s linear infinite;
		transform:translateX(100%);
		margin: 0;
		padding: 0;
	}
.bbs2 ul {
  animation: flowing 50s linear infinite;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
}
.bbs ul li{
  display: inline-block;
  padding-right: 10px;
}
@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}


/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　文字が無限に流れるやつ　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/


/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　recruit_block　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.recruit_block{
	display: grid;
	margin: -100px 0 200px 0;
	grid-template-columns: repeat(2, 1fr);
	background: #293f20;
	color: #fff;
	text-align: center;
	height: 580px;
	z-index: 2;
	transform:translateX(00%);
}
.recruit_block > div{
	width: 100%;
}
.recruit_block > div:nth-child(1){
	background: url("../images/recruit_block_img.jpg") no-repeat center / cover;
}
.recruit_block > div:nth-child(2) p{
	margin: 100px 0 30px 0;
	color: #bce0bc;
	font-size: clamp(14px, 2.8vw, 22px);
	letter-spacing: 5px;
	font-weight: 600;
}
.recruit_block > div:nth-child(2) div:nth-child(2){
	margin: 30px 0 50px 0;
	font-size: clamp(24px, 2.2vw, 48px);
	letter-spacing: 2px;
	font-weight: 600;
	line-height: 1.5;
}
.recruit_block > div:nth-child(2) div:nth-child(3){
	font-size: clamp(16px, 3.2vw, 18px);
	font-weight: 600;
	line-height: 1.9;
}
@media screen and (max-width:990px){
	.recruit_block{
		display: block;
		height: auto;
		margin: -110px 0 200px 0;
		padding: 0 0 80px 0;
	}
	.recruit_block > div:nth-child(1){
		height: 350px;
	}
	.recruit_block > div{
		width: 100%;
	}
	.recruit_block > div:nth-child(2) p{
		margin: 50px 0 25px 0;
	}
	.recruit_block > div:nth-child(2) div:nth-child(2){
		margin: 25px 0 50px 0;
	}
	.recruit_block > div:nth-child(2) div:nth-child(3){
		line-height: 1.5;
		margin: 0 0 50px 0;
	}
}





/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　recruit_block　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/








/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　banner　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.banner_block{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: calc(10px + 2.0vw);
}
.banner_block{
	width: 90%;
	max-width: 1200px;
	margin: 100px auto 100px auto;
}
.banner_block img{
	width: 100%;
}

@media screen and (max-width:990px){
	.banner_block{
		display: block;
	margin: 50px auto 100px auto;
	}
	.banner_block div{
		width: 100%;
		max-width: 500px;
		margin: 35px auto 35px auto;
	}
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　banner　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/









/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/










/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ホバー時明るくするやつ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.logo_top:hover, .kuwashikuwa_btn img:hover, .navPC ul li:hover, .navPC_F ul li:hover, .contact_banner:hover, .facebook:hover, .instagram:hover{
	color: #555555;
	opacity: 0.8;
	transition-duration: 0.3s;
}
.logo_top:hover, 
.facebook:hover, 
.instagram:hover, 
#shop_btn_MIGIUE:hover{
	opacity: 0.6;
	transition-duration: 0.3s;
}


.footer_SP a:hover span{
	opacity: 0.5;
	transition-duration: 0.2s;
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ホバー時明るくするやつ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/


/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ハンバーガーとヘッダーナビの切替↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
@media only screen and (min-width: 991px){
.navSP,.hamburger_menu{display: none;}}
@media only screen and (max-width: 990px){
.navPC{display: none;}}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ハンバーガーとヘッダーナビの切替↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/

.hide1{transform: translateY(0%);}
.hide2{transform: translateX(105%);} /* 右に消えるようにする */
.hide3{transform: translateX(250%);} /* 右に消えるようにする */
@media only screen and (min-width: 991px){
.hide1{transform: translateY(-105%);}}





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



@media screen and (max-width:990px){
.P{display: none!important;}}
@media screen and (min-width:991px){
.S{display: none!important;}}

