﻿@charset "UTF-8";

/*=============================
		共通
=============================*/
body {
	-webkit-text-size-adjust: 100%;/* スマホレイアウト防止 */
	margin: 0px;
	padding: 0px;
	color:#313131;
	background: #f8f6ef;
	-webkit-font-smoothing: antialiased;
	font-family: "Zen Maru Gothic", serif;
}
img{max-width: 100%;
	height:auto;
	vertical-align:bottom;/* 隙間をなくす */
	}
.center{text-align: center;}
.right{text-align: right;}
li img,dt img,dd img{vertical-align:bottom;}/* 隙間をなくす */


/* box ------------------*/
.box{
	width: 90%;
	max-width:1000px;
	margin:0 auto;
	overflow:hidden;
	box-sizing: border-box;
}
.box2{
	width: 90%;
	max-width:800px;
	margin:0 auto;
	overflow:hidden;
	box-sizing: border-box;
}

/* PC表示・SP表示  ------------------*/
.pc { }
.sp { display:none;}
@media screen and (max-width: 600px) {
.pc{ display:none;}
.sp {display:block; }
}
/* ホバー  ------------------*/
.hover:hover{
	opacity:0.7;
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.hover2{background: #000;}
.hover2 img:hover{
	opacity: 0.9;	/* 小さくするほど暗くなります */
	transition-duration: 0.3s;
	padding:0px;
}

/* 魔法の呪文 ------------------*/
*, *::before, *::after {
    box-sizing: border-box;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


/*=============================
	フェードイン
=============================*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}
/* 1番目の要素（標準：遅延なし） */
.fadein {
  /* 元々設定している transition に、一応遅延0秒を設定（上書き用） */
  transition-delay: 0s !important;
}

/* 2番目の要素：0.3秒遅らせる */
.fadein:nth-of-type(2) {
  transition-delay: 0.3s !important;
}

/* 3番目の要素：0.6秒（0.3秒のさらに倍）遅らせる */
.fadein:nth-of-type(3) {
  transition-delay: 0.6s !important;
}

/* 4番目の要素：0.9秒遅らせる */
.fadein:nth-of-type(4) {
  transition-delay: 0.9s !important;
}


/*=============================
　　文字を一文字筒表示アニメーション
=============================*/
/* タイトル全体の親要素 */
.fade-in-text {
    display: inline-block; 
    text-align: left;
}

/* 1文字ずつの設定（最初は透明で少し下に落ちている） */
.fade-in-text span {
    display: inline-block; 
    opacity: 0;                  /* 最初は透明 */
    transform: translateY(15px);  /* 15px下にずらしておく */
    transition: opacity 0.8s ease, transform 0.8s ease; /* ふわっと動く速度 */
}

/* JSでクラス「is-visible」がついた時の状態（表示される） */
.fade-in-text span.is-visible {
    opacity: 1;
    transform: translateY(0);    /* 元の位置に戻る */
}



/*=============================
		リンク
=============================*/
a{ outline: none;}
a:link,
a:visited {
	color: #ad8a64;
	font-weight: normal;
}
a:hover,
a:active {
	text-decoration: none;
	color: #7C7C7C;
}
a img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

/*=============================
		header
=============================*/
header{
	width: 100%;
	position: fixed;
	top: 30px;
	z-index: 100;
	background-color: rgba(73, 135, 69, 0.6);
	padding: 0px;
	transition: all 0.4s; /* 動きを滑らかにする */
}

/* スクロールした時に付与するクラス */
header.is-fixed {
    top: 0;          /* 上にぴたっとくっつける */
    background-color: rgba(73, 135, 69, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); /* 浮遊感が出るよう影を追加 */
    padding: 5px 0;  /* 少し高さを縮めてスマートにする */
}


.logo_menu{
	width: 90%;
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo{
	width: 30%;
	max-width: 170px;
	padding: 10px;
}
.logo img{display: block;}

.top_menu{
	width: 70%;
	max-width: 900px;
}


@media screen and (max-width: 1000px) {
header{
	top: 0px;
	padding-bottom: 10px;
}
/* スクロール時にヘッダー背景を透明にする */
header.is-fixed {
	background-color: transparent; /* 背景色を消す */
	box-shadow: none;             /* 影も消す */
}
.logo_menu{
	width: 100%;
}
.logo{
	width: 40%;
	max-width: 150px;
	transition: all 0.4s;
	margin: 0px;
}
/* スクロール時にロゴを非表示（透明）にする */
header.is-fixed .logo {
	opacity: 0;
	visibility: hidden;
	pointer-events: none; /* クリックできないようにする */
}
.top_menu{
	width: 10%;
}
}


/*=============================
		スライダーvegas
=============================*/
#vegas_box {
    width: 100%;
    height: 80vh; 
    min-height: 400px;
    overflow: hidden;
    position: relative; /* 子要素の基準にする */
}

.vegas_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1300px;
    width: 90%;
    text-align: center;
    z-index: 10;
    margin: 0;

    /* ★縦並びを確実に制御する設定 */
    display: flex;
    flex-direction: column; /* 要素を縦に積む */
    align-items: center;    /* 子要素を中央に寄せる */
}

.vegas_text h2 {
    font-size: 45px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    color: #FFF;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 20px; /* ★pタグとの間の距離 */
}

.vegas_text p {
    font-size: 20px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    color: #FFF;
    margin: 0; /* デフォルトの余白をリセット */
}

@media screen and (max-width: 1000px) {
    #vegas_box { height: 70vh; }
    .vegas_text h2 { font-size: 35px; }
}

@media screen and (max-width: 600px) {
    #vegas_box { height: 50vh; }
    .vegas_text h2 {
		font-size: 1.8rem;
		line-height: 100%;
		text-align: center;
	}
	.vegas_text p {
		font-size: 1rem;
		text-align: center;
		padding: 0px 30px;
		}
}


/*=============================
		footer
=============================*/
footer{
	width: 100%;
	overflow: hidden;
	padding-bottom:5px;
	padding-top: 50px;
}	

.f_logo{
	text-align:center;
	margin:0 auto 50px;
	max-width: 250px;
}
.f_txt{
	font-size: 14px;
	line-height: 200%;
	text-align: center;
	margin: 0px auto 50px;
}

.f_copy{
	font-size:12px;
	text-align:center;
	padding:20px 0px 0px;
}

@media screen and (max-width: 600px) {
footer{
	width: 100%;
	overflow: hidden;
	padding-bottom:5px;
	padding-top: 50px;
	padding-bottom: 90px;
}
.f_logo{
	width:40%;
	margin:0 auto 10px;
	padding:0px;
}
.f_txt{
	font-size: 12px;
	line-height: 200%;
	text-align: center;
	margin: 0px auto 10px;
}
.f_copy{
	font-size:12px;
	padding:15px 0px 0px;
}
}

/*fooder_menu（もくじ）-----------*/
ul.f_menu{
	margin-top:20px;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
ul.f_menu li{
	text-align:center;
	font-size: 12px;
	line-height:130%;
	padding:0px 10px;
}
ul.f_menu li i{padding-right: 5px;}

ul.f_menu li a:link,
ul.f_menu li a:visited,
ul.f_menu li a:hover,
ul.f_menu li a:active {
	color:#000;
	text-decoration:none;
}
@media screen and (max-width: 700px) {
	ul.f_menu{display:none;}
}



/*fooder_SP-----------*/
.footer_sp{display: none;}
@media screen and (max-width: 800px) {
.footer_sp{
	display: block;
	position: fixed;
	bottom: 0px;
	background: #356834;
	padding: 0px;
	z-index: 1000;
	width: 100%;
	}
ul.footer_sp_menu{
	display: flex;
	align-items: flex-end;
}
ul.footer_sp_menu li{
	width: 25%;
	text-align: center;
	font-size: 12px;
	padding: 15px 0px 5px;
}
ul.footer_sp_menu li i{font-size: 25px;}


	
ul.footer_sp_menu li a:link,
ul.footer_sp_menu li a:visited {
	color: #fff;
	text-decoration: none;
}
ul.footer_sp_menu li a:hover,
ul.footer_sp_menu li a:active{
	color: #727272;
	text-decoration: none;
}
}
/*=============================
		BG
=============================*/
.bg_space{padding: 70px 0px;}
.bg1{
	padding: 150px 0px 150px;
}

@media screen and (max-width: 1000px) {
.bg1{
	padding: 80px 0px 120px;
}
}

@media screen and (max-width: 600px) {
.bg_space{padding: 50px 0px;}
.bg1{
	padding: 50px 0px 80px;
}
}

/*=============================
		文字
=============================*/
.S{
	font-size:15px;
	line-height: 170%;
}
.M{
	font-size:18px;
	line-height: 130%;
	margin-bottom: 5px;
	color:#7b6433
}
.L{
	font-size: 25px;
	line-height: 150%;
	font-weight: 800;
	text-align: center;
	color:#633922;
	margin-bottom: 20px;
}
.red{color:#d5115f;font-weight: bold;}
.pink{color:#ec5d6f;}
.white{color:#FFF;}
.marker{background: linear-gradient(transparent 0%, #ffff66 0%);}
.sen{background: linear-gradient(transparent 60%, #FFFA7E 0%);}

@media screen and (max-width: 600px) {/*PC*/
.S{font-size:13px;line-height: 150%;}
.M{font-size:15px;line-height: 150%;}
.L{font-size:20px;line-height: 150%;}
}



/*=============================
		title
=============================*/
.title1{
	text-align: center;
	margin-bottom: 50px;
}
.title1 h2{
	color: #498745;
	font-size: 60px;
	font-weight: bold;
	font-family: 'Zen Antique', serif;/*google font*/
	margin-bottom: 15px;
	border-bottom:  solid 1px #498745;
	display: inline-block;
	padding: 0px 30px 0px;
}
.title1 p{
	color: #498745;
	font-size: 20px;
	letter-spacing: 2px;
}

@media screen and (max-width: 800px) {
.title1 h2{font-size: 40px;}
.title1 p{font-size: 16px;}
}

/*---------------------------白文字*/
.title2{
	text-align: center;
	margin-bottom: 50px;
	/* 縦並びを強制する設定を追加 */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title2 h2{
	color: #FFFF;
	font-size: 60px;
	font-weight: bold;
	line-height: 150%;
	font-family: 'Zen Antique', serif;/*google font*/
	margin-bottom: 15px;
	border-bottom:  solid 1px #FFFF;
	display: inline-block;
	padding: 0px 30px 10px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.title2 p{
	color: #FFFF;
	font-size: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 600px) {
.title2 h2{font-size: 40px;}
.title2 p{font-size: 16px;}	
}





/*=============================
		PT ページタイトル
=============================*/

.pt{
	background:url("../img/base/bg4.jpeg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 200px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt2{
	background:url("../img/base/bg3.jpeg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 200px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt3{
	background:url("../img/base/bg5.jpeg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 200px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt4{
	background:url("../img/base/bg2.jpeg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 200px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt:before,
.pt2:before,
.pt3:before,
.pt4:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3); /*半透明のフィルターをかける*/
}
.pt-inner {
  text-align: center;
  position: absolute;
  width: 100%;
}
.pt-inner h1{
	color: #bf9456;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	font-size: 45px;
	line-height: 160%;
}
.pt-inner p{
	color: #bf9456;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	font-size: 20px;
	line-height: 160%;
}

@media screen and (max-width: 600px) {
.pt,.pt2,.pt3,.pt4{
	padding: 150px 0px 120px; /*背景画像の高さを確保*/
	background-attachment: scroll;
}
.pt-inner h1{font-size: 30px;}
.pt-inner p{font-size: 18px;}
}

/*=============================
	配置
=============================*/
.m10{margin:10px;}
.m20{margin:20px;}

.mb10{margin-bottom:10px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb50{margin-bottom:50px;}
.mtb20{margin:20px 0px;}
.mt20{margin-top:20px;}


/*=============================
		ページTOPボタン
=============================*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 5%;
  bottom: 5%;
  background: #ce9e47;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
#page_top{
	display: none;
}

}

/*=============================
		ボタン
=============================*/

.btn1{
	background-color:#498745;
	padding: 0.7em 2em;
	display: inline-block;
	text-decoration: none;
	line-height: 130%;
	color:#FFF;
}
.btn1:link,
.btn1:visited {
	color:#FFF;
	background-color: #498745;
	font-weight: normal;
	text-decoration: none;
}
.btn1 a:link,
.btn1 a:visited {
	color:#FFF;
	text-decoration: none;
}
.btn1:hover,
.btn1:active {
	text-decoration: none;
	background-color:#76aa72;
}
.btn1 i{padding-left: 7px;}


/*=============================
		table
=============================*/
table.type01 {
	width:100%;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	background-color:#FFFFFF;
    font-size:15px;
	line-height:140%;
	margin: 0px auto 10px;
	border-top: solid 1px #f1e6d2;
	border-right: solid 1px #f1e6d2;
	border-left: solid 1px #f1e6d2;
}
table.type01 th {
	padding: 10px 10px;
	background: #F9F7F0;
	vertical-align:middle;
	text-align:center;
	border-bottom: solid 1px #f1e6d2;
	color: #000;
}
table.type01 td {
	padding: 5px 10px;
	vertical-align:middle;
	border-bottom: solid 1px #f1e6d2;
}
table.type01 th img{width:100%}
table.type01 td img{width:100%}

.nowrap{white-space: nowrap;}
.table_w80{
	max-width: 800px;
	margin: 0 auto !important;
}
.table_txt{
	font-size: 16px;
	padding: 0px 10px 10px;
}
@media screen and (max-width: 600px) {
table.type01{font-size:11px;}
table.type01 th {padding: 5px;}
table.type01 td {padding: 5px;}
}


/*=============================
		top
=============================*/

/* TOPあいさつ -------------------------*/
.info_top{
	width: 100%;
	padding: 200px 0 0px;
	background: url(../img/base/moringa_r.png)no-repeat;
	background-position: right 0 top 50px;
	background-size: 250px auto;
}
@media screen and (max-width: 1100px) {
	.info_top{
		padding: 150px 0 0px;
		background: url(../img/base/moringa_r.png)no-repeat;
		background-position: right -30px top 30px;
		background-size: 230px auto;
	}
}
@media screen and (max-width: 600px) {
.info_top{
		padding: 100px 0 0px;
		background: url(../img/base/moringa_r.png)no-repeat;
		background-position: right -50px top 10px;
		background-size: 230px auto;
	}
}



/* info画像とテキスト ----------------*/
.info_box{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	margin: 0 auto;
}
.info_l{
	width: 50%;
	background: url(../img/top/img2.jpg)no-repeat center center #ccc;
	background-size: 100% auto;
	aspect-ratio: 16 / 10;/* 画像サイズ比率 */
}
.info_r{width: 50%;}
.info_r_in{
	max-width: 700px;
	width: 90%;
	margin: 0 auto;
}
.info_r h2{
	font-size: 35px;
    line-height: 100%;
    color: #5d3523; /* 茶色系 */
	margin-bottom: 40px;
}
.info_txt{
	font-size: 18px;
	line-height: 150%;
	padding-bottom: 15px;
}
.info_btn{
	text-align: center;
	margin: 30px auto 0px;
	font-size: 18px;
}

@media screen and (max-width: 1000px) {
.info_box{
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: center;
	margin: 0 auto;
}
.info_l{
	width: 85%;
	aspect-ratio: 16 / 8;/* 画像サイズ比率 */
}
.info_r{
	width: 90%;
	margin-bottom: 50px;
}
}

@media screen and (max-width: 800px) {
.info_txt{font-size: 15px;}
.info_r h2{
	font-size: 30px;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}
.info_btn{
	margin: 30px auto 0px;
	font-size: 15px;
}
}
@media screen and (max-width: 600px) {
.info_r h2{font-size: 23px;	}
}


/*スライダー-------------------------------------------*/
.top_slider{
	margin: 150px auto;
}
.infinite-slider {
    overflow: hidden;
    width: 100%;
}
.slider-inner {
    display: flex;
    width: fit-content;
    animation: loop-scroll 40s linear infinite; /* 40sを大きくすると遅くなります */
}
.slider-inner p {
    width: 380px;
    margin: 0;
    flex-shrink: 0;
}
.slider-inner img {
    width: 100%;
    display: block;
    aspect-ratio: 2 / 1.3;
    object-fit: cover;
}

@keyframes loop-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* 半分まで行ったら最初に戻る */
}

@media screen and (max-width: 800px) {
.top_slider{
	margin: 100px auto;
}
.slider-inner p {
    width: 200px;
    margin: 0;
    flex-shrink: 0;
}
}


/* TOP（こだわりとSDGs）---------------------------------------------------------------------------------------*/
.top_vision{
	background: #FFF;
	padding: 150px 0px;
	width: 100%;
}
.vision_title{
	text-align: center;
	margin: 0 auto 50px;
	padding: 0px 40px;
	text-align: center;
}
.vision_title h2{
	font-size: 35px;
	color: #5d3523; /* 茶色系 */
	text-align: center;
}

ul.vision_list{
	width: 95%;
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
}
ul.vision_list li{
	flex: 1;
	text-align: center;
	background: #FFF;
	padding: 20px;
	border-right: solid 2px #73a570;
	box-sizing: border-box;
}
ul.vision_list li:last-child {
    border-right: none;
}
ul.vision_list li img{
	width: 70%;
	max-width: 200px;
	margin-bottom: 20px;
}

ul.vision_list li h2{
	font-size: 25px;
	color: #498745;
}
ul.vision_list li p{
	font-size: 16px;
	line-height: 200%;
}
@media screen and (max-width: 900px) {
.top_vision{
	padding: 100px 0px;
}
ul.vision_list{
	flex-direction: column;
	align-items: center;    /* 中央に寄せる */
}
ul.vision_list li{
	width: 100%;
	border-right: none;     /* 横並び用の右線を消す */
    border-bottom: solid 2px #73a570; /* 代わりに下に線を引く*/
	padding: 40px 10px;
}
ul.vision_list li:last-child {
        border-bottom: none;    /* 一番下の線は消す */
        margin-bottom: 0;
}
}

@media screen and (max-width: 900px) {
.vision_title{
	text-align: center;
	margin: 0 auto 30px;
	padding: 0px 40px;
}
.vision_title h2{
	font-size: 25px;
	color: #5d3523; /* 茶色系 */
}
ul.vision_list li img{width: 50%;}
ul.vision_list li h2{font-size: 20px;margin-bottom: 15px;}
ul.vision_list li p{font-size: 14px;line-height: 160%;}
}


/*TOPの商品紹介----------------------------------------------------*/

.top_item{
	padding: 200px 0px;
}
.top_item1{
	background: url(../img/top/item1.jpg) no-repeat #FFF;
	background-size: auto 100%;
	background-position: right;
	max-width: 1100px;
	width: 90%;
	margin: 0 auto 50px;
	padding: 5%;
	display: flex;
	align-items: center;
}
.top_item2{
	background: url(../img/top/item2.jpg) no-repeat #FFF;
	background-size: auto 100%;
	background-position: left;
	max-width: 1100px;
	width: 90%;
	margin: 0 auto;
	padding: 5%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.top_item_in{
	width: 50%;
	text-align: center;
}
.item_h2{
	color: #336633;
	font-size: 40px;
}
.item_p{
	font-size: 16px;
	padding-bottom: 20px;
}
.top_item_btn{
	font-size: 16px;
}
.top_item_sp{display: none;}

@media screen and (max-width: 1000px) {
.top_item{padding: 150px 0px;}
.item_p{
	font-size: 14px;
	padding-bottom: 20px;
}
}
@media screen and (max-width: 800px) {
.top_item1{
	background: #FFF;
	background-size: 100% auto;
	background-position: top center;
	width: 90%;
	margin: 0 auto 30px;
	padding: 0%;
	justify-content: center;
}
.top_item2{
	background: #FFF;
	background-size: 100% auto;
	background-position: top center;
	width: 90%;
	margin: 0 auto;
	padding: 0%;
	justify-content: flex-end;
}
.top_item_in{
	width: 100%;
	text-align: center;
}
.item_p{
	padding-bottom: 20px;
	padding: 0px 30px 30px;
}
.top_item_btn{
	font-size: 14px;
	margin-bottom: 50px;
}
.top_item_sp{display: block;}
}
@media screen and (max-width: 600px) {
.top_item{padding: 100px 0px;}



}



/*TOPのお問い合わせ----------------------------------------------------*/
.top_contact{
	width:100%;
	padding:100px 0px 130px;
	/* 画像の上に半透明の黒（0.5 = 50%）を重ねる */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url("../vegas/slider1.jpg") no-repeat center center;
	background-size: cover;/* 画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
}
ul.contact_btn{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
ul.contact_btn li{
	background: #FFFFFF;
	text-align: center;
	width: 46%;
	border-radius: 20px;
	box-sizing: border-box;
	padding: 25px 0px 15px;
}
ul.contact_btn li i{
	font-size: 50px;
	padding-bottom: 20px;
	color: #356834;
}
ul.contact_btn li a{
	text-decoration: none;
	color: #356834;
	padding: 0px!important;
}
.contact_txt{font-size: 18px;}
.contact_mail{
	font-size: 40px;
	font-family: 'Zen Antique', serif;/*google font*/
}
.contact_tel{
	font-size: 40px;
	font-family: 'Zen Antique', serif;/*google font*/
}
.contact_tel img{
	width: 90%;
}

@media screen and (max-width: 800px) {
.top_contact{
	padding: 100px 0px 70px;
	background-attachment: scroll; /* 固定を解除して通常表示にする */
}
ul.contact_btn{flex-wrap: wrap;}
ul.contact_btn li{
	width: 85%;
	margin-bottom: 30px;
	padding: 20px 0px 20px;
}
}
@media screen and (max-width: 500px) {
.top_contact{
	padding: 60px 0px 70px;
}
ul.contact_btn li{
	width: 90%;
	border-radius: 15px;
	padding: 15px 0px 10px;
	margin-bottom: 20px;
}
.contact_txt{font-size: 14px;}
ul.contact_btn li i{font-size: 35px;padding-bottom: 10px;}
.contact_mail{font-size: 25px;}	
.contact_tel{font-size: 23px;}	
}



/*会社概要----------------------------*/

.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin:0 auto 50px;
	width: 100%;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/*smoothスライダー-------------------------------------------*/
#smooth {
    width: 100%;
    overflow: hidden; /* float解除用 */
}

#makeMeScrollable { 
    width: 100%;
    position: relative; 
}

#makeMeScrollable p {
    position: relative;
    width: 400px;
    margin: 0;    /* 10pxから0に変更 */
    padding: 0;
    float: left;
    line-height: 0; /* inline要素の隙間対策 */
}

/* セレクタを調整：pの中のimgに対して 
   display: block を入れることで、画像下の謎の隙間が消えます
*/
#makeMeScrollable p img {
    display: block;   /* これが重要：画像の下隙間を消す */
    width: 100%;
    height: auto;     /* aspect-ratioを使う場合はautoでOK */
    aspect-ratio: 2.5 / 1.7;
    object-fit: cover;
}

/* メディアクエリ */
@media screen and (max-width: 800px) {
    #makeMeScrollable p { width: 250px; }
}

@media screen and (max-width: 600px) {
    #makeMeScrollable p { width: 120px; }
}
