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

/* ---------------------------------------------------------------------------------------------

　   全体

--------------------------------------------------------------------------------------------- */

html {
	margin:			0!important;
	padding:		0!important;
	font-size:		16px;
	overflow-y: auto;
	-webkit-overflow-scrolling:touch;
	-moz-text-size-adjust:		none;
	-webkit-text-size-adjust:	100%;
	}
	
body{
	color: var(--themecolor-base);
	font-family: "Source Sans 3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, Helvetica, sans-serif;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	line-height:	1.8;
	width:			100%;
	padding:		0;
	margin:			0;
	}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		html {
			font-size:		15px;
			}
		}
	@media only screen and (max-width: 540px) {
		html {
			font-size:		14px;
			}
		}
	@media only screen and (max-width: 480px) {
		html {
			font-size:		13px;
			}
		}
	@media only screen and (max-width: 360px) {}



/* ---------------------------------------------------------------------------------------------

　   読み込み 一式

--------------------------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------------------------------

　   ページ読み込み　ふわっと表示

--------------------------------------------------------------------------------------------- */

  body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    -o-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}
	@-webkit-keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}


/* ---------------------------------------------------------------------------------------------

　   共通パーツ

--------------------------------------------------------------------------------------------- */

/*----------

　テーマカラー

----------*/

:root {
	/*ベース*/
	--themecolor-base: #4d4d4d;
	/*キャベツ色*/
	--themecolor-green: #92c800;
	/*にんじん色*/
	--themecolor-orange: #f39701;
	/*うす橙色*/
	--themecolor-daidai: #fcf8e9;
	}

.color_green {color: var(--themecolor-green);}
.color_orange {color: var(--themecolor-orange);}


/*----------

　フォントファミリー

----------*/

:root {
	--ft-sansjp: "Source Sans 3", sans-serif;
	}

.noto-sans-jp,
.en{
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	}


/*----------

　フォントサイズ

----------*/

:root {
	--ft88: 5.5rem;
	--ft80: 5.0rem;
	--ft72: 4.5rem;
	--ft64: 4.0rem;
	--ft56: 3.5rem;
	--ft48: 3.0rem;
	--ft40: 2.5rem;
	--ft36: 2.25rem;
	--ft32: 2.0rem;
	--ft28: 1.75rem;
	--ft24: 1.5rem;
	--ft20: 1.25rem;
	--ft18: 1.125rem;
	--ft16: 1.0rem;
	--ft14: 0.875rem;
	--ft12: 0.75rem;
	--ft10: 0.625rem;
	}
.ft88 {font-size: var(--ft88)!important;}
.ft80 {font-size: var(--ft80)!important;}
.ft72 {font-size: var(--ft72)!important;}
.ft64 {font-size: var(--ft64)!important;}
.ft56 {font-size: var(--ft56)!important;}
.ft48 {font-size: var(--ft48)!important;}
.ft40 {font-size: var(--ft40)!important;}
.ft36 {font-size: var(--ft36)!important;}
.ft32 {font-size: var(--ft32)!important;}
.ft28 {font-size: var(--ft28)!important;}
.ft24 {font-size: var(--ft24)!important;}
.ft20 {font-size: var(--ft20)!important;}
.ft18 {font-size: var(--ft18)!important;}
.ft16 {font-size: var(--ft16)!important;}
.ft14 {font-size: var(--ft14)!important;}
.ft12 {font-size: var(--ft12)!important;}
.ft10 {font-size: var(--ft10)!important;}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}








/*----------

　罫線

----------*/

hr.line_solid{
	border: none;
	border-bottom: solid 1px #ddd;
	margin: 2rem auto;
	}


/*----------

　回りこみ解除

----------*/

.clear{
	clear:both;
	float: none;
	}
.clear::after {
	content: " "; 
	display: block;
	clear: both;
	}


/*----------

　画像

----------*/

img {
	border:			0;
	vertical-align:	middle;/*画像 縦配置時の隙間なくす*/
	}
a img {
	text-align:center;
    border-style:none;
	}


/*----------

　デバイスで表示切り替え

----------*/

/*　PCで非表示、スマホで表示　*/
.pc_hidden{
	display: none;
	}
	@media only screen and (max-width: 900px) {
		.pc_hidden{
			display:block !important;
			}
		}
/*　スマホで非表示、PCで表示　*/
.sp_hidden{
	display: block;
	}
	@media only screen and (max-width: 900px) {
		.sp_hidden{
			display:none!important;
			}
		}

/*----------

　PCでのtel:無効

----------*/

[href^="tel"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
	}
@media screen and (max-width: 767px) {
    [href^="tel"] {
        pointer-events: auto;
    	}
	}

/*----------

　リンク

----------*/

/* リンク 装飾なし　*/
a{
	text-decoration: none;
	transition: .2s;
	}
/*a:hover{
    opacity: .7;
	}*/



/*----------

　ボタン

----------*/


/*-----丸がボタンに変形する-----*/
.btntransform{
	position: relative;
    display: inline-block;
	padding:0 0 0 50px ;
	margin-top: 1.5rem;
	line-height: 50px;
    text-decoration: none!important;
    outline: none;
	z-index: 1;
	}
.btntransform span{
	position: inherit;
	left:0;
	color: var(--themecolor-green);
	font-size: var(--ft14);
	font-weight: bold;
	margin-left: 0.5rem;
	z-index: 10;
	transition:.3s ease-out;
	}
.btntransform:hover span{
	color: #fff!important;
	left:-15px;
	}

/*矢印 設定*/
.btntransform .arrow::before{
	content:'\f105';
	color: var(--themecolor-green);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 22px;
	z-index: 1;
	transition:.3s ease-out;
	}
.btntransform:hover .arrow::before{
	color: #fff!important;
	left: 26px;
	}

/* 丸が動く */
.btntransform::before{
	content:'';
	position:absolute;
	left:0;
	z-index: 0;
	width:50px;
	height:50px;
	border: solid 1px var(--themecolor-green);
	border-radius:25px;
    transition:.3s ease-out;
	padding-right: 0;
	}
/*hoverした際の丸の形状*/
.btntransform:hover::before{
	width:calc(100% + 10px);
	background-color: var(--themecolor-green);
	left:0;
	}


/*-----オレンジ色ver-----*/
.btntransform.orange span{
	color: var(--themecolor-orange);
	}
.btntransform.orange .arrow::before{
	color: var(--themecolor-orange);
	}
.btntransform.orange::before{
	border: solid 1px var(--themecolor-orange);
	}
.btntransform.orange:hover::before{
	background-color: var(--themecolor-orange);
	}


	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.btntransform{
			padding:0 0 0 40px ;
			line-height: 40px
			}
		.btntransform span{
			margin-left: 0.5rem;
			}
		/*矢印 設定*/
		.btntransform .arrow::before{
			left: 18px;
			}
		.btntransform:hover .arrow{
			left: 16px;
			}
		/* 丸が動く */
		.btntransform::before{
			width:40px;
			height:40px;
			border-radius:20px;
			}
		/*hoverした際の丸の形状*/
		.btntransform:hover::before{
			width:calc(100% + 15px);
			}
		.btntransform:hover span{
			left:-6px;
			}
		}
	@media only screen and (max-width: 600px) {
		.btntransform{
			padding:0 0 0 36px ;
			line-height: 36px
			}
		/* 丸が動く */
		.btntransform::before{
			width:36px;
			height:36px;
			border-radius:18px;
			}
		/*矢印 設定*/
		.btntransform .arrow::before{
			left: 16px;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





/* ボタン共通設定 */
.btn{
    position: relative;
	overflow: hidden;
	text-decoration: none!important;
	display: inline-block;
	background:#fff;
   	border: 1px solid #fff;
    padding: 0.6rem 2rem 0.4rem 2rem;
    text-align: center;
    outline: none;  
    transition: ease .2s;
	width:auto;
	margin: 1rem auto 0 auto;
	border-radius: 2rem;
	}
.btn span {
	position: relative;
	z-index: 3;
	color:#000;
	font-size: var(--ft14);
	font-weight: bold;
	}
.btn:hover span{
	color:#fff!important;
	}

/*-- 背景が流れる（左から右） --*/
.bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#fff;
 	width: 100%;
	height: 100%;
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
    }
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
    }


	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {
		.btn{
			padding: 0.75rem 3rem 0.5rem 3rem;
			width: inherit;
			min-width: inherit!important;
			max-width: 75%;
			}
		}
	@media only screen and (max-width: 767px) {
		.btn{
			max-width: 90%;
			padding: 0.6rem 1rem 0.5rem 1rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}







/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.hover_slidebar a{
	position: relative;
	}

.hover_slidebar.current a,
.hover_slidebar a:hover{}

.hover_slidebar a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background:#ddd;
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.hover_slidebar.current a::after,
.hover_slidebar a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
	}



/*hover時 左から文字色が変わる*/

/*基本*/
.hover_textgrade {
	font-weight: bold;
	color: transparent;
	background: linear-gradient(to right, #aaa 50%, #4d4d4d 50%) 100%;
	background-clip: text;
	background-size: 200% 100%;
	transition: background-position 0.3s;
	}
/*gray → green*/
.hover_textgrade.green {
	background: linear-gradient(to right, var(--themecolor-green) 50%, #4d4d4d 50%) 100%;
	background-clip: text;
	background-size: 200% 100%;
	}
/*gray → orange*/
.hover_textgrade.orange {
	background: linear-gradient(to right, var(--themecolor-orange) 50%, #4d4d4d 50%) 100%;
	background-clip: text;
	background-size: 200% 100%;
	}
/*orange → gray*/
.hover_textgrade.gray-orange {
	background: linear-gradient(to right, #4d4d4d 50%, var(--themecolor-orange) 50%) 100%;
	background-clip: text;
	background-size: 200% 100%;
	}

.hover_textgrade:hover {
	background-position: 0 100%;
	}




/*----------

　アニメーション

----------*/

/*ぴょんぴょん*/
@keyframes shakeAnimation {
	0% {
		transform: translateY(0);
		}
	30% {
		transform: translateY(0);
		}
	32% {
		transform: translateY(3px);
		}
	34% {
		transform: translateY(-3px);
		}
	36% {
		transform: translateY(3px);
		}
	38% {
		transform: translateY(-3px);
		}
	40% {
		transform: translateY(0);
		}
	100% {
		transform: translateY(0);
		}
	}

/*ふわふわ*/
@keyframes scaleAnimation {
	0% {
		transform: translateY(0);
		}
	50% {
		transform: translateY(-12px);
		}
	100% {
		transform: translateY(0);
		}
	}


/*ぽよぽよ*/
.poyopoyo {
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
	}

@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
		transform: scale(1.0);
		}
	50%, 70% {
		transform: scale(0.95);
		}
	}



/* ---------------------------------------------------------------------------------------------

　   ページ全体

--------------------------------------------------------------------------------------------- */

.wrapper{
	overflow: hidden;
	}







/* ---------------------------------------------------------------------------------------------

　   header

--------------------------------------------------------------------------------------------- */

header#header{} 


/*-- サイトタイトル--*/
.site_ttl{
    position:absolute;
    top: 1.5rem;
    left: 4%;
	z-index: 999;
	width: 100%;
	max-width: 135px;
	height: auto;
	max-height: 74px;
	}
.site_ttl a{
	display: block;
	width:100%;
	height:auto;
	}
.site_ttl:hover a{
	transform: scale(1.1, 1.1);
	}
.site_ttl img{
	width: 100%;
	height: auto;
	}
	@media only screen and ( max-width : 767px ) {
		.site_ttl{
			top: 1rem;
			width: 30%!important;
			height: auto;
			}
		}
	@media only screen and ( max-width : 600px ) {}
    @media only screen and (max-width: 480px) {
		.site_ttl{
			width: 25%!important;
			}
		}
    @media only screen and (max-width: 320px) {
        }




/*-- スクロール後.fixed付与 --*/
.site_ttl.fixed{
	position:fixed;
	top: 1.2rem;
	}

/*表示切り替え*/
.site_ttl.fixed .site_ttl___current{
	display: none;
	}

.site_ttl .site_ttl___fix{
	display: none;
	}
.site_ttl.fixed .site_ttl___fix{
	display: block;
	width: auto;
	max-width: 240px;
	height: auto;
	max-height: inherit;
	}

	@media only screen and ( max-width : 767px ) {
		/*-- スクロール後.fixed付与 --*/
		.site_ttl.fixed{
			top: 1.4rem;
			}
		.site_ttl.fixed .site_ttl___fix{
			max-width: 220px;
			}
		}
	@media only screen and ( max-width : 600px ) {
		/*-- スクロール後.fixed付与 --*/
		.site_ttl.fixed{
			top: 1.5rem;
			}
		}
    @media only screen and (max-width: 480px) {
		/*-- スクロール後.fixed付与 --*/
		.site_ttl.fixed{
			top: 1.6rem;
			}
		}
    @media only screen and (max-width: 360px) {
		.site_ttl.fixed .site_ttl___fix{
			max-width: 200px;
			}
		}









/* ---------------------------------------------------------------------------------------------

　   main

--------------------------------------------------------------------------------------------- */

main#main{}


/*----------

共通

----------*/

section{
	padding: 60px 0;
	}

.container{
    max-width: 1080px;
    width: 92%;
    margin: 0 auto;
	}
.container2{
    max-width: 900px;
    width: 92%;
    margin: 0 auto;
	}

/*背景色 オレンジ*/
.bg___orange{
	background-color: var(--themecolor-daidai);
	}

/* 幅を強制的に全画面*/
.fullwidth{
	width: 100vw!important;
	}

/*改行位置調整*/
.br_span{
	display: inline-block;
	}
	@media only screen and (max-width: 900px) {
		section{
			padding: 40px 0;
			}
		}
	@media only screen and (max-width: 767px) {
		section{
			padding: 30px 0;
			}
		}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {
		section{
			padding: 24px 0;
			}
		}
	@media only screen and (max-width: 260px) {}

/*テキストセンター揃え*/
.txalign_center{
	text-align: center;
	}




/*----------

　セクションレイアウト共通

----------*/

/*セクションwrap*/
.sec___wrap{
	display: flex;
	column-gap: 5%;
	}

/*見出し囲み*/
.sec_heading{
	padding: 0;
	flex: 1;
	}

/*（左）見出し*/
.sec_heading .ttl{
	position: relative;
	}
/*緑のホカホカ*/
.sec_heading.green .ttl::before{
	position: absolute;
	top: -4rem;
	left: -2rem;
	content: "";
    display: inline-block;
    width: 101px;
    height: 61px;
    background-image: url('../img/fluffy01.svg');
    background-position: center;
    background-size: contain;
	background-repeat: no-repeat;
	animation: scaleAnimation 4s infinite ease-in-out;
	}
/*オレンジのホカホカ*/
.sec_heading.orange .ttl::before{
	position: absolute;
	top: -3rem;
	right: 1rem;
	content: "";
    display: inline-block;
    width: 55px;
    height: 81.5px;
    background-image: url('../img/fluffy02.svg');
    background-position: center;
    background-size: contain;
	background-repeat: no-repeat;
	animation: scaleAnimation 4s infinite ease-in-out;
	}

/*英字*/
.sec_heading .en{
	font-size: var(--ft48);
	font-family: var(--ft-sansjp);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.1rem;
	}
/*日本語*/
.sec_heading .jp{
	line-height: 1.1;
	font-size: var(--ft16);
	font-weight: bold;
	}

/*内容*/
.sec_cont{
	flex: 4;
	}

	@media only screen and (max-width: 1100px) {
		/*オレンジのホカホカ*/
		.sec_heading.orange .ttl::before{
			right: -1rem;
			}
		}
	@media only screen and (max-width: 900px) {
		/*flex*/
		.sec___wrap{
			display: block;
			column-gap:normal;
			}
		/*見出し*/
		.sec_heading{
			flex: 1;
			display: flex;
			justify-content:flex-start;
			margin-bottom: 1.5rem;
			}
		.sec_heading a{
			position: relative;
			top: -1.2rem;
			left: 2rem;
			}
		/*内容*/
		.sec_cont{
			flex: 1;
			}
		/*オレンジのホカホカ*/
		.sec_heading.orange .ttl::before{
			top: -4rem;
			right: -2rem;
			}
		}
	@media only screen and (max-width: 767px) {
		/*見出し*/
		.sec_heading{
			margin-bottom: 1rem;
			}
		/*（左）見出し*/
		.sec_heading .ttl{
			margin-right: 0;
			}
		.sec_heading a{
			margin-bottom: 0;
			}
		/*緑のホカホカ*/
		.sec_heading.green .ttl::before{
			top: -3rem;
			left: -1rem;
			width: 80px;
			height: 48px;
			}
		/*オレンジのホカホカ*/
		.sec_heading.orange .ttl::before{
			top: -3rem;
			right: -1.5rem;
			width: 40px;
			height: 60px;
			}
		}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 540px) {
		/*英字*/
		.sec_heading .en{
			font-size: var(--ft40);
			}
		/*緑のホカホカ*/
		.sec_heading.green .ttl::before{
			top: -2.5rem;
			width: 60px;
			height: 36px;
			}
		
		/*見出し*/
		.sec_heading{
			flex:none;
			display:inherit;
			margin-bottom: 1.5rem;
			}
		.sec_heading a{
			/*display: block;*/
			/*position:inherit;*/
			top: 0.25rem;
			left: inherit;
			margin-top: 0.5rem;
			}
		
		/*オレンジのホカホカ*/
		.sec_heading.orange .ttl::before{
			top: -3rem;
			right: inherit;
			left: 7rem;
			width: 40px;
			height: 60px;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








/*--------------------

　トピックス

--------------------*/


/*全体*/
.sec_topics{
	position: relative;
	}


.sec_topics .illust{}

.sec_topics .illust img{}


/*　右上イラスト　*/
/*人参*/
.sec_topics .illust01-1{
	position: absolute;
	right: 4rem;
	top: -6rem;
	width: 204px;
	height: 164px;
	z-index: 3;
	}
/*キャベツ*/
.sec_topics .illust01-2{
	position: absolute;
	right: 8rem;
	top: -10rem;
	width: 271px;
	height: 181px;
	z-index: 2;
	}
	@media only screen and (max-width: 900px) {
		/*人参*/
		.sec_topics .illust01-1{
			right: 1rem;
			top: 2rem;
			width: 150px;
			height: 120px;
			}
		/*キャベツ*/
		.sec_topics .illust01-2{
			right: 6rem;
			top: -1rem;
			width: 200px;
			height: 133px;
			}
		}
	@media only screen and (max-width: 767px) {
		/*人参*/
		.sec_topics .illust01-1{
			right: 1rem;
			top: 1rem;
			width: 100px;
			height: 90px;
			}
		/*キャベツ*/
		.sec_topics .illust01-2{
			right: 3rem;
			top: -1rem;
			width: 132px;
			height: 88px;
			}
		}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 540px) {
		/*人参*/
		.sec_topics .illust01-1{
			right: 1rem;
			top: 2rem;
			}
		/*キャベツ*/
		.sec_topics .illust01-2{
			right: 3rem;
			top: -1rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {
		/*人参*/
		.sec_topics .illust01-1{
			width: 75px;
			height: 60px;
			}
		/*キャベツ*/
		.sec_topics .illust01-2{
			width: 100px;
			height: 66.5px;
			top: 1rem;
			}
		}
	@media only screen and (max-width: 260px) {}



/*上段 新着2件*/
.sec_topics___upper{
	margin-bottom: 3rem;
	}

/*見出し*/
.sec_heading .en{
	color: var(--themecolor-green);
	}

.sec_topics___upper .post_wrap{
	display: flex;
	column-gap: 5%;
	}

.sec_topics___upper .post{
	position: relative;
	flex: 1;
	}

/*NEWSバッヂ*/
.sec_topics___upper .badge{
	position: absolute;
	top: -1rem;
	left: -1rem;
	display: inline-block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--themecolor-green);
	text-align:center;
	line-height: 70px;
	z-index: 1;
	animation: shakeAnimation 8s ease-out infinite;
	}
.sec_topics___upper .badge span{
	color: #fff;
	font-size:  var(--ft16);
	font-family: var(--ft-sansjp);
	font-weight: 700;
	}


/*写真*/
.sec_topics___upper .ph{
	border-radius: 10px;
	height: 260px;
	overflow: hidden;
	}
.sec_topics___upper .ph img{
	width: 100%;
	height: auto;
	}

/*概要*/
.sec_topics___upper .tx,
.sec_topics___lower .tx{
	margin-top: 0.5rem;
	}

.sec_topics___upper .date,
.sec_topics___lower .date{
	color: var(--themecolor-green);
	font-size:  var(--ft16);
	font-family: var(--ft-sansjp);
	font-weight: 700;
	}

.sec_topics___upper .ttl,
.sec_topics___lower .ttl{
	font-size:  var(--ft16);
	line-height: 1.5;
	margin-bottom: 0.25rem;
	font-weight: bold;
	}

.sec_topics___upper .tag,
.sec_topics___lower .tag{
	line-height: 1.3;
	}

.sec_topics___upper .tag span,
.sec_topics___lower .tag span{
	display: inline-block;
	font-size: var(--ft12);
	margin: 0 0.75rem 0 0;
	}


/*下段*/
.sec_topics___lower{}
.sec_topics___lower .slider_topics{}
.sec_topics___lower .post{
	margin: 0 1%;
	}

/*写真*/
.sec_topics___lower .ph{
	border-radius: 10px;
	height: 180px;
	overflow: hidden;
	}
.sec_topics___lower .ph img{
	width: 100%;
	height: auto;
	}

	@media only screen and (max-width: 1100px) {
		/*写真*/
		.sec_topics___upper .ph{
			height: 240px;
			}
		.sec_topics___lower .ph{
			height: 150px;
			}
		}
	@media only screen and (max-width: 1000px) {
		/*写真*/
		.sec_topics___upper .ph{
			height: 220px;
			}
		.sec_topics___lower .ph{
			height: 160px;
			}
		}
	@media only screen and (max-width: 900px) {
		.sec_topics___lower .post_wrap{
			display: flex;
			column-gap: 5%;
			width: 95%;
			margin: 0 auto;
			}
		.sec_topics___lower .post{
			flex: 1;
			}
		.sec_topics___lower .post:nth-child(n+3){
			display:  none;
			}
		.sec_topics___lower .ph{
			height: 220px;
			}
		}
	@media only screen and (max-width: 767px) {
		/*NEWSバッヂ*/
		.sec_topics___upper .badge{
			width: 60px;
			height: 60px;
			line-height: 60px;
			}
		.sec_topics___upper .badge span{
			font-size:  var(--ft14);
			}
		/*写真*/
		.sec_topics___upper .ph,
		.sec_topics___lower .ph{
			height: 180px;
			}
		}
	@media only screen and (max-width: 600px) {
		/*上段 新着2件*/
		.sec_topics___upper{
			margin-bottom: 1.5rem;
			}
		/*NEWSバッヂ*/
		.sec_topics___upper .badge{
			top: -0.5rem;
			left: -1.2rem;
			width: 50px;
			height: 50px;
			line-height: 50px;
			}
		.sec_topics___upper .badge span{
			font-size:  var(--ft12);
			}
		/*写真*/
		.sec_topics___upper .ph,
		.sec_topics___lower .ph{
			height: 160px;
			}
		}
	@media only screen and (max-width: 540px) {
		/*NEWSバッヂ*/
		.sec_topics___upper .badge{
			top: -0.5rem;
			left: -0.5rem;
			width: 45px;
			height: 45px;
			line-height: 44px;
			}
		.sec_topics___upper .badge span{
			font-size:  var(--ft12);
			}
		/*写真*/
		.sec_topics___upper .ph,
		.sec_topics___lower .ph{
			border-radius: 5px;
			height: 120px;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 380px) {
		/*写真*/
		.sec_topics___upper .ph,
		.sec_topics___lower .ph{
			height: 110px;
			}
		}
	@media only screen and (max-width: 260px) {}







/*--------------------

　運営店舗

--------------------*/

.sec_shop{}

.sec_shop .sec___wrap{
	background-color: var(--themecolor-daidai);
	border-radius: 24px;
	padding: 60px 5%;
	}

.sec_shop .sec_heading{}
.sec_shop .sec_heading .en{
	color: var(--themecolor-orange);
	}

/*　イラスト　*/
.sec_shop .illust{
	position: relative;
	}
.sec_shop .illust img{}
/*（手前）らーめん*/
.sec_shop .illust02-1{
	position: absolute;
	width: 230px;
	height: 202px;
	left: 1rem;
	top: 21rem;
	z-index: 3;
	}
/*（奥）野菜*/
.sec_shop .illust02-2{
	position: absolute;
	left: -6rem;
	top: 13rem;
	width: 273px;
	height: 236px;
	z-index: 2;
	}




.shop_wrap{
	position: relative;
	margin-bottom: 60px;
	}
.shop_wrap:last-child{
	margin-bottom: 0;
	}
.shop_wrap a{}


/*外観写真*/
.shop_wrap .outer{
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 340px;
	z-index: 0;
	}
.shop_wrap .outer a{}
.shop_wrap .outer img{
	position: absolute;
	top: 0;
	bottom: 0;
	margin:auto;
	width: 100%;
	height: auto;
	}

/*ドライブスルー併設店の表記*/
.shop_wrap .outer .tag{
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background-color: var(--themecolor-green);
	border-radius: 2px;
	color: #fff;
	font-size: var(--ft12);
	font-weight: bold;
	line-height: 1;
	padding: 0.4rem 0.5rem 0.3rem 0.5rem;
	}


/*店舗情報*/
.shop_wrap .inner{
	position: absolute;
	bottom: -1.5rem;
	left: -3rem;
	background-color: rgb(from var(--themecolor-daidai) r g b / 0.95);
	border-radius: 0 20px 0 0;
	padding: 0.75rem 1.5rem 0 1.5rem;
	min-width: 48%;
	z-index: 1;
	}

/*店名囲い*/
.shop_wrap .name{
	margin-bottom: 1rem;
	transition: .3s;
	}
.shop_wrap .name a{}
.shop_wrap .name a:hover{
	opacity: .5;
	}
/*8番らーめんロゴ*/
.shop_wrap .logo{
	display: inline-block;
	width: 50%;
	}
.shop_wrap .logo img{
	width: 100%;
	max-width: 165px;
	height: auto;
	max-height: 40px;
	}
/*店名*/
.shop_wrap .jp{
	position: relative;
	top: 0.3rem;
	font-size: var(--ft28);
	margin-left: 0.2rem;
	}


/*住所*/
.shop_wrap .add{
	font-size:  var(--ft16);
	line-height: 1.5;
	}
/*電話番号*/
.shop_wrap .phone{
	font-size:  var(--ft16);
	line-height: 1.5;
	}

/*sns・map*/
.shop_wrap .mark{
	display: flex;
	justify-content: flex-start;
	line-height: 1;
	}

.shop_wrap .item{
	margin-right: 1rem;
	}

.shop_wrap .label{
	font-size: var(--ft12);
	font-family: var(--ft-sansjp);
	letter-spacing: 1px;
	font-weight: 700;
	}

.shop_wrap .icon{
	position: relative;
	top: 0.4rem;
	left: -0.25rem;
	font-size: var(--ft28);
	}

.shop_wrap .icon a{
	color: var(--themecolor-orange);
	}
.shop_wrap .icon a i{}
.shop_wrap .icon a:hover i{}

	@media only screen and (max-width: 1100px) {	
		/*（手前）らーめん*/
		.sec_shop .illust02-1{
			width: 180px;
			height: 158px;
			left: 1rem;
			top: 20rem;
			}
		/*（奥）野菜*/
		.sec_shop .illust02-2{
			width: 200px;
			height: 173px;
			left: -1rem;
			top: 14rem;
			}
		}
	@media only screen and (max-width: 900px) {	
		.shop_wrap .outer{
			height: 300px;
			width: 85%;
			margin-right: 0;
			margin-left: auto;
			}
		/*ドライブスルー併設店の表記*/
		.shop_wrap .outer .tag{
			top: 0.75rem;
			right: 0.75rem;
			padding: 0.4rem 0.5rem 0.3rem 0.5rem;
			}
		.shop_wrap .inner{
			bottom: inherit;
			top: 160px;
			left: 0;
			border-radius: 0 10px 0 0;
			padding: 0.75rem 1rem 0 0;
			min-width: 48%;
			}
		/*（手前）らーめん*/
		.sec_shop .illust02-1{
			left: inherit;
			right: 10%;
			top: -1rem;
			}
		/*（奥）野菜*/
		.sec_shop .illust02-2{
			left: inherit;
			right: -2%;
			top: -3rem;
			}
		}
	@media only screen and (max-width: 767px) {
		.shop_wrap .outer{
			height: 270px;
			}
		.sec_shop .sec___wrap{
			border-radius: 10px;
			padding: 30px 5% 110px 5%;
			}
		.shop_wrap{
			margin-bottom: 100px;
			}
		/*（手前）らーめん*/
		.sec_shop .illust02-1{
			width: 118px;
			height: 104px;
			left: inherit;
			right: 12%;
			top: 1rem;
			}
		/*（奥）野菜*/
		.sec_shop .illust02-2{
			width: 132px;
			height: 115px;
			left: inherit;
			right: 2%;
			top: -1rem;
			}
		}
	@media only screen and (max-width: 680px) {
		.shop_wrap .outer{
			height: 240px;
			width: 90%;
			}
		}
	@media only screen and (max-width: 600px) {
		.shop_wrap .outer{
			width: 100%;
			}
		}
	@media only screen and (max-width: 540px) {
		.shop_wrap .outer{
			height: 240px;
			}
		.shop_wrap .outer img{
			width: 120%;
			}
		/*店舗情報*/
		.shop_wrap .inner{
			padding: 0.75rem 0.5rem 0 0;
			min-width: inherit;
			top: 190px;
			}
		/*8番らーめんロゴ*/
		.shop_wrap .logo{
			width: 40%;
			}
		/*店名囲い*/
		.shop_wrap .name{
			margin-bottom: 0.25rem;
			}
		/*（手前）らーめん*/
		.sec_shop .illust02-1{
			right: 12%;
			top: 2rem;
			}
		/*（奥）野菜*/
		.sec_shop .illust02-2{
			right: 2%;
			top: -3rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_shop .sec___wrap{
			padding: 30px 5% 130px 5%;
			}
		.shop_wrap{
			margin-bottom: 130px;
			}
		.shop_wrap .outer{
			height: 210px;
			}
		}
	@media only screen and (max-width: 360px) {
		.shop_wrap .outer{
			height: 160px;
			}
		/*店舗情報*/
		.shop_wrap .inner{
			padding: 0.5rem 0.5rem 0 0;
			top: 140px;
			}
		/*店名*/
		.shop_wrap .jp{
			top: 0.3rem;
			font-size: var(--ft24);
			margin-left: 0.2rem;
			}
		/*（手前）らーめん*/
		.sec_shop .illust02-1{
			width: 90px;
			height: 79px;
			}
		/*（奥）野菜*/
		.sec_shop .illust02-2{
			width: 100px;
			height: 86px;
			}
		}
	@media only screen and (max-width: 260px) {}










/*--------------------

　バナー

--------------------*/

.sec_bnr{}
.sec_bnr___wrap{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 2%;
	}

.sec_bnr .item{
	flex: 1;
	text-align: center;
	border-radius: 3px;
	}

.sec_bnr .item a img{
	width: 100%;
	height: auto;
	transition: .3s;
	}
.sec_bnr .item > a:hover img{
	opacity: .6;
	}



/*　8番らーめん公式アプリ　バナー　*/
.sec_bnr .item.app{
	background-color: #e83c3c;
	}
.sec_bnr .item.app a{}
.sec_bnr .item.app .btn{
	margin: 0.9rem auto 0.2rem auto;
	}
.sec_bnr .item.app .btn span {
	color:#e83c3c;
	}
.sec_bnr .item.app .bgleft:before {
 	background:#e83c3c;
    }

/*applestore、googleplayへのリンクボタン*/
.app_link{
	display: flex;
	column-gap: 2%;
	background: #bc2121;
	padding: 1rem;
	}
.app_link .item{
	flex: 1;
	}
.app_link .item a{
	display: block;
	height: 40px;
	}
.app_link .item a img{
	height: 100%;
	width: auto;
	}


/*　テイクアウト　バナー　*/
.sec_bnr .item.takeout{
	background-color: var(--themecolor-orange);
	}
.sec_bnr .item.takeout a{}
.sec_bnr .item.takeout .btn{
	margin: 1.75rem auto 1.5rem auto;
	}

.sec_bnr .item.takeout .btn span {
	color:var(--themecolor-orange);
	}
.sec_bnr .item.takeout .bgleft:before {
 	background:var(--themecolor-orange);
    }

/*　ドライブスルー　*/
.sec_bnr .item.drivethru{
	background-color: var(--themecolor-green);
	}
.sec_bnr .item.drivethru a{}
.sec_bnr .item.drivethru .btn{
	margin:  1.75rem auto 1.5rem auto;
	}

.sec_bnr .item.drivethru .btn span {
	color:var(--themecolor-green);
	}
.sec_bnr .item.drivethru .bgleft:before {
 	background:var(--themecolor-green);
    }

	@media only screen and (max-width: 1000px) {
		.sec_bnr .item .bgleft{
			margin-top: 3.2rem!important;
			}
		}
	@media only screen and (max-width: 950px) {
		.sec_bnr___wrap{
			column-gap: 2%;
			}
		.sec_bnr .item{
			width: 49%;
			flex: inherit;
			margin-bottom: 1rem;
			}
		.sec_bnr .item .item{
			margin-bottom: 0rem;
			}
		.sec_bnr .item .bgleft{
			margin-top: 1.5rem!important;
			width: 80%;
			}
		}
	@media only screen and (max-width: 767px) {
		/*applestore、googleplayへのリンクボタン*/
		.app_link{
			padding: 0.5rem 0.25rem;
			}
		.app_link .item a{
			height: 35px;
			}
		}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 540px) {
		.sec_bnr{
			padding-top: 0;
			}
		.sec_bnr___wrap{
			display: block;
			column-gap: 0;
			}
		.sec_bnr .item{
			width: 70%;
			margin: 0 auto 1rem auto;
			padding-bottom: 1rem;
			}
		.sec_bnr .item.app{
			padding-bottom: 0;
			}
		.sec_bnr .item .bgleft{
			display: none;
			}
		/*applestore、googleplayへのリンクボタン*/
		.app_link{
			padding: 1.5rem 0.25rem 0.5rem 0.25rem;
			margin-top: 1rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_bnr .item{
			width: 80%;
			}
		}
	@media only screen and (max-width: 360px) {
		.app_link .item a{
			height: 32px;
			}
		}
	@media only screen and (max-width: 260px) {}









/*--------------------

　お知らせ

--------------------*/

.sec_news{}

.sec_news .sec_cont{}

.sec_news .post{}

.sec_news .post{
	border-bottom: dashed 1px #ccc;
	padding: 1.5rem 0;
	}
.sec_news .post a{}

.sec_news .post:first-of-type{
	border-top: solid 1px #ccc;
	}
.sec_news .post:last-of-type{
	border-bottom: solid 1px #ccc;
	}

.sec_news .post .date{
	color: var(--themecolor-green);
	font-size: var(--ft16);
	font-weight: 600;
	}
.sec_news .post .ttl{
	margin-left: 1rem;
	font-size: var(--ft16);
	}

	@media only screen and (max-width: 767px) {
		.sec_news{
			margin-top: 0.5rem;
			margin-bottom: 1.5rem;
			}
		.sec_news .post{
			padding: 1.2rem 0;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_news .post{
			padding: 1rem 0;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








/*--------------------

　採用情報

--------------------*/

.sec_recruit{
	margin-bottom: 60px;
	}
.sec_recruit .container2{
	position: relative;
	}

/*　（左上）吹き出し　*/
.sec_recruit .sec_recruit___wrap::before{
	position: absolute;
	top: -2rem;
	left: 2rem;
	content: "";
    display: inline-block;
    width: auto;
	min-width: 162px;
	height: auto;
    min-height: 70px;
    background-image: url('../img/top_recruit___copy.png');
    background-position: center;
    background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
	animation: shakeAnimation 8s ease-out infinite;
	}

/*　背景　*/
.sec_recruit___wrap{
	position: relative;
	}
.sec_recruit___wrap a{
	display: block;
	border-radius: 15px;
	height: 320px;
	background: url("../img/top_recruit___bg.jpg") no-repeat center center;
	background-size: cover;
	transition: .3s;
	}
.sec_recruit___wrap a:hover{
	opacity: .7;
	}

/*　見出し　囲み　*/
.sec_recruit .ttl{
	position: absolute;
	bottom: -4rem;
	left: 5%;
	}
/*　英字　*/
.sec_recruit .ttl .en{
	color: var(--themecolor-orange);
	font-size: var(--ft88);
	font-family: var(--ft-sansjp);
	font-weight: 700;
	letter-spacing: 0.2rem;
	line-height: 1;
	}
/*　日本語　*/
.sec_recruit .ttl .jp{
	line-height: 1;
	}
.sec_recruit .ttl .jp .primary{
	color: var(--themecolor-orange);
	font-size: var(--ft20);
	font-weight: 700;
	}
.sec_recruit .ttl .jp .secondary{
	font-size: var(--ft14);
	}


/*キャッチ 囲み*/
.sec_recruit .catch{
	position: absolute;
	top: 4.5rem;
	left: 45%;
	}

/*　キャッチ大（お客様の笑顔をつくる…）　*/
.sec_recruit .catch .lead{}
.sec_recruit .catch .lead p{
	display: block;
	line-height: 1;
	margin-bottom:1.5rem;
	}
.sec_recruit .catch .lead p span{
	background-color: #fff;
	border-radius: 2px;
	padding: 0.1rem 0.6rem 0.1rem 0.6rem;
	color: var(--themecolor-orange);
	font-size:  var(--ft32);
	font-weight: 700;
	line-height: 1;
	transform: skewX(-7deg);
	}
.sec_recruit .catch .lead.sp{
	display: none;
	}

/*　キャッチ小（「お客様の笑顔をみたい…」）　*/
.sec_recruit .catch .tx{
	font-size:  var(--ft16);
	margin-top: 0.5rem;
	font-weight: bold;
	text-shadow: 0 0 3px rgba(249, 244, 240, 1),0 0 3px rgba(249, 244, 240, 1),0 0 3px rgba(249, 244, 240, 1),0 0 5px rgba(249, 244, 240, 1),0 0 5px rgba(249, 244, 240, 1),0 0 5px rgba(249, 244, 240, 1),0 0 10px rgba(249, 244, 240, 1),0 0 10px rgba(249, 244, 240, 1),0 0 10px rgba(249, 244, 240, 1);
	}

	@media only screen and (max-width: 900px) {
		/*キャッチ 囲み*/
		.sec_recruit .catch{
			top: 4rem;
			left: 40%;
			}
		}
	@media only screen and (max-width: 767px) {
		.sec_recruit{
			margin-bottom: 100px;
			}
		/*　見出し　囲み　*/
		.sec_recruit .ttl{
			bottom: -6.75rem;
			left: 0;
			}
		/*　背景　*/
		.sec_recruit___wrap a{
			height: 300px;
			}
		/*キャッチ 囲み*/
		.sec_recruit .catch{
			left: 35%;
			}
		}
	@media only screen and (max-width: 700px) {
		.sec_recruit{
			margin-bottom: 100px;
			}
		/*　背景　*/
		.sec_recruit___wrap a{
			height: 280px;
			}
		.sec_recruit .ttl{
			bottom: -6rem;
			}
		/*　英字　*/
		.sec_recruit .ttl .en{
			font-size: var(--ft72);
			}
		/*キャッチ 囲み*/
		.sec_recruit .catch{
			top: 3.5rem;
			left: 32%;
			}
		.sec_recruit .catch .lead p span{
			font-size:  var(--ft28);
			}
		.sec_recruit .catch .tx{
			margin-right: 2rem;
			}
		.sec_recruit .catch .tx br{
			display: none;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_recruit{
			margin-bottom: 80px;
			}
		/*　（左上）吹き出し　*/
		.sec_recruit .sec_recruit___wrap::before{
			top: -2.5rem;
			left: 0rem;
			min-width: 130px;
			min-height: 56px;
			}
		/*　背景　*/
		.sec_recruit___wrap a{
			border-radius: 10px;
			height: 400px;
			background: url("../img/top_recruit___bg.jpg") no-repeat 24% center;
			background-size: cover;
			}
		.sec_recruit .ttl{
			bottom: -5rem;
			}
		.sec_recruit .ttl .jp .primary{
			font-size: var(--ft16);
			}
		.sec_recruit .ttl .jp .secondary{
			font-size: var(--ft12);
			}
		/*　英字　*/
		.sec_recruit .ttl .en{
			font-size: var(--ft56);
			}
		/*キャッチ 囲み*/
		.sec_recruit .catch{
			top: 10rem!important;
			left: 42%;
			}
		
		.sec_recruit .catch .lead.pc{
			display: none;
			}
		.sec_recruit .catch .lead.sp{
			display: block;
			}
		
		.sec_recruit .catch .lead p{
			margin-bottom:1rem;
			}
		.sec_recruit .catch .lead p{
			padding: 0.4rem 0.3rem 0 0.3rem;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_recruit .catch .lead p span{
			font-size:  var(--ft24);
			}
		}
	@media only screen and (max-width: 480px) {
		/*　背景　*/
		.sec_recruit___wrap a{
			background: url("../img/top_recruit___bg.jpg") no-repeat 10% center;
			background-size: cover;
			}
		/*キャッチ 囲み*/
		.sec_recruit .catch{
			top: 18rem!important;
			left: 5%;
			}
		.sec_recruit .catch .lead.pc{
			display: block;
			}
		.sec_recruit .catch .lead.sp{
			display: none;
			}
		}
	@media only screen and (max-width: 360px) {
		/*　（左上）吹き出し　*/
		.sec_recruit .sec_recruit___wrap::before{
			top: -2.5rem;
			left: 0rem;
			}
		/*　キャッチ小（「お客様の笑顔をみたい…」）　*/
		.sec_recruit .catch .tx{
			font-size:  var(--ft14);
			}
		}
	@media only screen and (max-width: 260px) {}




/*--------------------

　SNS

--------------------*/

/*全体*/
.sec_sns{
	position: relative;
	background-color: var(--themecolor-daidai);
	}

/*見出し*/
.sec_sns .heading{
	color: var(--themecolor-orange);
	font-family: var(--ft-sansjp);
	font-size:  var(--ft36);
	font-weight: 700;
	letter-spacing: 0.1rem;
	text-align: center;
	margin-bottom: 40px;
	}

/*　3店舗 囲い　*/
.sec_sns___wrap{
	display: flex;
	column-gap: 4%;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	}
/*　各店舗　*/
.sec_sns .item{
	flex: 1;
	text-align: center;
	z-index: 1;
	}
.sec_sns .item a{
	display: block;
	background-color: #fff;
	border-radius: 7px;
	box-shadow: 0px 0px 10px -5px rgba(226, 213, 166, 1);
	}

/*写真*/
.sec_sns .ph{
	position: relative;
	overflow: hidden;
	border-radius: 7px 7px 0 0;
	height: 130px;
	}
.sec_sns .ph img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	width: 100%;
	height: auto;
	}

/*文字*/
.sec_sns .tx{
	padding: 1.6rem 0.5rem;
	}
.sec_sns .tx .ttl{
	font-size:  var(--ft16);
	line-height: 1.6;
	}
.sec_sns .tx .ttl span{
	display: inline;
	}
.sec_sns .tx .note{
	font-size:  var(--ft14);
	line-height: 1.6;
	}

/*　右上 イラスト　*/
.sec_sns .illust{
	position: absolute;
	top: -4rem;
	right: 3rem;
	width: 100%;
	max-width: 278px;
	height: auto;
	max-height: 255px;
	}
.sec_sns .illust img{
	position: absolute;
	width: 100%;
	height: auto;
	}

	@media only screen and (max-width: 900px) {
		/*見出し*/
		.sec_sns .heading{
			margin-bottom: 24px;
			}
		/*　右上 イラスト　*/
		.sec_sns .illust{
			top: -3rem;
			right: 1rem;
			max-width: 200px;
			max-height: 184px;
			}
		}
	@media only screen and (max-width: 768px) {
		/*写真*/
		.sec_sns .ph{
			height: 110px;
			}
		.sec_sns .tx{
			padding: 1rem 0.5rem 1.6rem 0.5rem;
			}
		}
	@media only screen and (max-width: 700px) {
		/*写真*/
		.sec_sns .ph{
			height: 100px;
			}
		.sec_sns .tx{
			padding: 1rem 0.5rem 1.6rem 0.5rem;
			}
		/*　右上 イラスト　*/
		.sec_sns .illust{
			top: -2rem;
			right: 2rem;
			max-width: 150px;
			max-height: 134px;
			}
		}
	@media only screen and (max-width: 620px) {
		/*見出し*/
		.sec_sns .heading{
			font-size:  var(--ft32);
			margin-bottom: 20px;
			}
		/*写真*/
		.sec_sns .ph{
			height: 90px;
			}
		.sec_sns .ph img{
			width: 120%;
			}
		.sec_sns .tx{
			padding: 1rem 0.5rem 1.6rem 0.5rem;
			}
		}
	@media only screen and (max-width: 540px) {
		/*　3店舗 囲い　*/
		.sec_sns___wrap{
			column-gap: 2%;
			}
		/*写真*/
		.sec_sns .ph{
			height: 80px;
			}
		.sec_sns .ph img{
			width: 150%;
			}
		.sec_sns .tx{
			padding: 1rem 0.25rem 1rem 0.25rem;
			}
		.sec_sns .tx .ttl,
		.sec_sns .tx .note{
			line-height: 1.2;
			font-weight: normal;
			}
		/*　右上 イラスト　*/
		.sec_sns .illust{
			top: -2rem;
			right: 0rem;
			max-width: 139px;
			max-height: 128px;
			}
		}
	@media only screen and (max-width: 480px) {
		/*　右上 イラスト　*/
		.sec_sns .illust{
			top: -1rem;
			right: 2rem;
			max-width: 100px;
			max-height: 92px;
			}
		}
	@media only screen and (max-width: 380px) {
		/*　右上 イラスト　*/
		.sec_sns .illust{
			top: -1rem;
			right: 0rem;
			}
		}
	@media only screen and (max-width: 260px) {}








/*--------------------

　セクション

--------------------*/

/*----------

　スタイル

----------*/


	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








/* ---------------------------------------------------------------------------------------------

　   footer

--------------------------------------------------------------------------------------------- */

footer#footer{}

	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





/*----------

　footer 上段

----------*/

.footer_upper{
	padding: 2.5rem 0 1rem 0;
	}

/*社名*/
.footer_logo{
	margin: 0 auto;
	width: 30%;
	max-width: 189px;
	height: auto;
	max-height: 145px;
	margin-bottom: 2rem;
	}
.footer_logo a{
	display: block;
	transition: .3s;
	}
.footer_logo a:hover{
	opacity: .5;
	}
.footer_logo a img{
	width: 100%;
	height: auto;
	}

/*メニュー*/
.footer_menu{}
.footer_menu > ul{
	display: flex;
	justify-content: center;
	column-gap: 2.5%;
	}
.footer_menu > ul > li{
	font-size:  var(--ft16);
	}
.footer_menu > ul > li a{}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		/*メニュー*/
		.footer_menu{
			display: none;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}




/*----------

　footer 中央

----------*/

.footer_middle{}
.footer_middle___wrap{
	display: flex;
	justify-content: space-between;
	border-top: solid 1px #eee;
	padding: 1.5rem 2rem;
	}

/*　左側　お問合せ・個人情報保護方針　*/
.footer_middle___left{
	display: flex;
	align-items: center;
	}
.footer_middle___left > li{}
.footer_middle___left > li::after{
	content: '｜';
	margin-left: 0.75rem;
	margin-right: 0.75rem;
	}
.footer_middle___left > li:last-child::after{
	content: none;
	}
.footer_middle___left > li a{
	font-size: var(--ft12);
	}

/*　右側　sns　*/
.footer_middle___right{}
.footer_middle___right > li{}
.footer_middle___right > li a{}
.footer_middle___right > li a i{
	font-size: var(--ft24);
	}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		.footer_middle___wrap{
			justify-content: center;
			}
		.footer_middle___right{
			display: none;
			}
		.footer_middle___left > li a{
			font-size: var(--ft14);
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}




/*----------

　footer 下段

----------*/

.footer_lower{
	background: var(--themecolor-green);
	text-align: center;
	padding: 1.2rem;
	}


/*----------

　コピーライト

----------*/

.cpright{}

.cpright small{
	color: #fff;
	font-size: var(--ft12);
	font-family: var(--ft-sansjp);
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 100%;
	}

	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}









/*----------

　画像hover時zoomするアニメーション

----------*/

.zoomIn{
	overflow: hidden;
	}
.zoomIn > *{
	transition:0.4s all;
	}
.zoomIn > *:hover{
	transform:scale(1.1,1.1);
	}



/*----------

　左側から表示されるアニメーション

----------*/

.anime_wrap.curtain{
    position: relative;
    overflow: hidden;
	}

.curtain::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 2;
    transition: .5s;
	color:#0D1F62;
	}
.curtain.show::before{
    transform: translateX(100%);
	}
.curtain img{
    opacity: 0;
    transition: .5s;
	}
.curtain.show img{
    opacity: 1;
	}







/*----------

　1文字ずつ表示されるアニメーション

----------*/

@keyframes showTextFromBottom{
	  0%{
		transform: translateY( 100% );
		}
	  50%{
		transform: translateY( -20% );
		}
	  100%{
		transform: translateY( 0px );
		}
	}

.anime-up.displayed span{
	animation: showText 1s backwards;
	display: inline-block;
	}
.anime-up.displayed > span{
	overflow: hidden;
	}
.anime-up.displayed > span > span{
	animation: showTextFromBottom 0.5s backwards;
	}










