@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*inview.cssの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	overflow-x: hidden;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅800px以上」で基準を大きなサイズに変更しています。*/
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #FDF4E3;	/*背景色*/
	color: #333333;	/*全体の文字色*/
	line-height: 2;		/*行間*/
}


/*マージンのリセット*/
figure {margin: 0;}
dd {margin: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*section全般の設定*/
section + section {
	padding-top: 30px;	/*sectionの間に空けるスペース*/
}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}


/*opa1（透明から着色状態に）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #000;	/*文字色*/
}

a:hover {
	color: green;	/*マウスオン時の文字色*/
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	margin: 0 auto;
	max-width: 1400px;	/*最大幅。これ以上幅が広がらないように。*/
	padding: 0 10px;	/*上下、左右へのブロック内の余白*/
}

/*headerブロック（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*トップページの画像ロゴ(webp画像)設定*/
.home header #logo {
	position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);
	width: 300px;				/*ロゴ画像の幅*/
	animation-name: opa1;		/*@keyframesの指定*/
	animation-duration: 3S;		/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}

/*トップページの画像ロゴ(webp画像)を、デフォルトでは非表示にする*/
.home header #logo {
	display: none;
}

/*ロゴアニメーションを使わない場合の設定*/
.home.index2 header #logo {display: block;}
.home.index2 svg {display: none;}

/*トップページ以外のロゴ画像の幅*/
header #logo {
	width: 150px;
}

/* 言語選択ボタン */
.language-button {
	display: block;
	padding: 8px 16px;
	background-color: #eee;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	text-decoration: none;
	margin-right: 10px;
	top: 20px;
    right: 80px;
	position: fixed; 
	z-index: 5;
}
  
.language-button.active {
	background-color: #ccc;
}
  
.language-button:hover {
	background-color: #ddd;
}
  
.language-button:last-child {
	margin-right: 0;
}

/*mainブロックの基本設定
---------------------------------------------------------------------------*/
main h1 {
    margin: 0;             /* デフォルトCSS打ち消し */
    font-size: 28px;       /* 文字サイズ指定 */
}

p {
    margin:  0;             /* デフォルトCSS打ち消し */
    line-height: 2;         /* 行間調整 */
}

/*mainブロックのpタグ*/
main p {
	margin: 0 5px 20px;	/*上、左右、下へ空けるスペース*/
}

/*メインのコンテンツ
---------------------------------------------------------------------------*/

/*index
---------------------------------------------------------------------------*/
/*中央寄せコンテンツタイトル「私たちの想い」*/
.content-title {
	margin: 40px 0 0;
	width: 200px;
	margin-left:auto;
	margin-right:auto;
}

/*「私たちの想い」下線*/
.content-title h1 {
	text-align: center;
	background:linear-gradient(transparent 80%, #e9ba48 0%);
}

/*縦書きコンテンツ*/
.content-tate {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	word-break: break-all;
	height: 50%;
	margin: 100px auto;/*文字を真ん中に寄せる*/
	display: right;/*縦書きを右に寄せる*/
	justify-content: right;
}

.section-title {
	margin: 0px 40px;
}

.topic p {
	line-height: 2.5;
}

/*背景画像*/
.content-haikei {
	background-image: url(https://Kitanoho.solutions/images/BackImg.webp);
    padding:  10px; /* 余白指定 */
	height: 800px;
	background-size: cover;
	position: relative;
	background-color:rgba(255,255,255,0.3);/*色を薄くする*/
    background-blend-mode:lighten;/*画像を明るくする*/
	margin-bottom: 100px;
}

/*背景画像に重ねるコンテンツのタイトル*/
.content-title2 h1 {
	text-align: center;
	background: linear-gradient(transparent 80%,#b2984f 0%);
	width: 200px;
	margin-bottom: 50px;
}

/*画像の上の横書き文章*/
.content-yoko {
	float: right;
	width: 30%;
	height: auto;
	padding: 40px 0 0;
	margin-top: 15%;
	margin-right:20%;
}

.section-title2 {
	margin-left: 40px;
}

/*持続可能な農業への挑戦は続く（右揃え）*/
.section-title3 {
	margin-left: 40px;
	text-align: right;
	margin-bottom: 20px;
}


/*画像(野菜）*/
.gaiyou-img {
	width: 15vw;
	height: auto;
	float: right;
	animation: pikopiko 1s steps(2, start) infinite;
}

/* 揺れるアニメーション*/
@keyframes pikopiko {
	0% {
	  transform: rotate(20deg);
	}
	to {
	  transform: rotate(-10deg);
	}
}

/* 下線付きタイトル（オレンジ）*/
.content-title3 h1 {
	text-align: center;
	background: linear-gradient(transparent 80%,#f68304 0%);
	width: 150px;
	margin-bottom: 50px;
}

/* 下線付きタイトル（黄色）*/
.content-title4 h1 {
	text-align: center;
	background: linear-gradient(transparent 80%,#e9ba48 0%);
	width: 400px;
	margin-bottom: 50px;
}

.greetingimg {
	width: 30%;
	position: relative;
	float: right;
}

/* 中央寄せコンテンツタイトル「お知らせ」*/
.content-title5 {
	margin: 40px 0 0;
	width: 200px;
	margin-left:auto;
	margin-right:auto;
}

/* 下線付きタイトル（黄土色）*/
.content-title5 h1 {
	text-align: center;
	background: linear-gradient(transparent 80%,#b2984f 0%);
	width: 150px;
	margin-bottom: 50px;
}


/*お問い合わせはこちら*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn2,
a.btn2,
button.btn2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  float: right;
  padding: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  margin-bottom:20px;
}

a.btn2--orange {
	color: #fff;
	background-color: #f68304;
	border-radius: 100px;
}
  
a.btn2--green:hover {
	color: #fff;
	background: #ffaf59;
}
  
a.btn2-c {
	font-size: 1rem;
	position: relative;
	padding: 1rem 2rem;
}
  
a.btn2-c i.fa {
	margin-right: 1rem;
}

/*詳細ボタン*/
.btn3,
a.btn3,
button.btn3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  float: right;
  padding: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  margin-bottom:20px;
}

a.btn3--yellow {
	color: #fff;
	background-color: #e9ba48;
	border-radius: 100px;
}
  
a.btn3--green:hover {
	color: #fff;
	background: #e9bb51;
}
  
 a.btn3-c {
	font-size: 1rem;
	position: absolute;
	padding: 1rem 2rem;
}
  
a.btn3-c i.fa {
	margin-right: 1rem;
}
  

/*会社概要
---------------------------------------------------------------------------*/
/*会社概要のテーブルとお問い合わせのテーブルが一緒*/

/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 3px solid rgba(0, 0, 0, 0);	/*上の枠線の幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態。*/
	font-weight: bold;								/*太字に*/
	padding: 10px 5px;								/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: rgba(255,255,255,0.05);				/*背景色。255,255,255は白の事で0.05は色が5%出た状態。*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid rgba(0,0,0,0);	/*テーブルの一番上の線。幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態。*/
	table-layout: fixed;
	width: calc(100% - 10px);	/*テーブルの両サイドに合計10px（左右各5pxずつ）の余白を作った残りを幅にします*/
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
	border-collapse:separate;
    border-spacing: 10px;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid rgba(0,0,0,0);	/*テーブルの下線。幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
	border: none; 
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;				/*幅*/
	text-align: left;		/*左よせにする*/
	font-weight: normal;	/*デフォルトの太字を標準にする*/
	background-color:#E6DDC3;
}

.ta1 td {
	background-color :#fff
}

/*画像と文字を横並び 会社概要のアクセス*/
.flex2 {
	display: flex; /*横並び*/
}

.flex2 .image2 {
	width: 500px; /*画像サイズ指定*/
	margin-bottom: 20px;
}


/*事業紹介
---------------------------------------------------------------------------*/
/* 取り扱い品目横並び */
.flex {
	display: flex; /*横並び*/
}

.flex .image {
	width: 100%; /*画像サイズ指定*/
	height: 100%;
	margin: 20px;  /*画像と画像の隙間*/
	padding: 0;
	overflow: hidden;
	position: relative;
	border-radius: 20px;/* 角を丸くする */
}

.flex .right {
	margin: 0 0 0 20px;
	padding: 0;
}

.flex .title {
	padding: 0;
	font-weight: bold;
	font-size: 18px;
	background: linear-gradient(transparent 80%, #e9ba48 0%);/* ラインを引く */
    width: 800px;/* ラインの横幅 */
}

/*事業紹介ボックス*/
.box2  {
    background-color:#E6DDC3;
	width: 60%;
	height: auto;
	padding: 10px 10px;/*内側余白*/
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
    border-radius: 20px;/*丸みを調整*/
	text-align: center;
}

/*事業紹介ボックス左寄せ*/
.box3  {
    margin: 1em auto;
    padding: 1em;/*内側余白*/
	width: 400px;
    border-radius: 30px;/*丸みを調整*/
    background-color:#E6DDC3;
	text-align: center;
	float: left;/*左に寄せる*/
}

/*リンク
---------------------------------------------------------------------------*/

/* 動画全体の横幅を指定するためのdiv */
.video-wrap {
	max-width: 50%; /* ここに動画の横幅を指定 */
  }
  
  /* 動画を囲うdiv */
  .video {
	position: relative;
	width:100%; /* 横幅は100%で固定 */
	height:0; /* 高さは0にしておく(padding-topで高さを指定するため) */
	padding-top: 56.25%; /* 高さを指定(16:9) */
  }
  
  /* YouTube埋め込み用のiframe */
  .video iframe{
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	margin-bottom: 50px;
  }

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 20px;		/*上からの配置場所*/
	right: 20px;	/*左からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	cursor: pointer;
	background: rgba(0,0,0,0.6) url(../images/icon_menu.webp) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}

/*×印が出ている状態の設定。*/
#menubar_hdr.close {
	background: green url(../images/icon_menu.webp) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*メニューの設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;}

/*ボックス全体の設定*/
#menubar {
	display: none;				/*デフォルトで非表示にしておく*/
	animation-name: opa1;		/*@keyframesの指定*/
	animation-duration: 1S;		/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
	position: fixed;overflow: auto;z-index: 99;	/*fixedはスクロールしても動かない為の指定*/
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 50px;		/*ボックス内の余白*/
	text-align: center;	/*テキストをセンタリング*/
	background: #3D3B37;	/*背景色*/
	font-size: 1.2rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*メニュー１個あたりの設定*/
#menubar li {
	margin-bottom: 20px;	/*下に空けるスペース*/
}

#menubar a {
	display: block;text-decoration: none;
	text-align: center;	/*テキストをセンタリング*/
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	border-radius: 5px;	/*角丸の指定*/
	padding: 5px;	/*余白*/
}

/*メニュー内のspanタグ（小さい日本語部分）*/
#menubar span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}

/*フッターにあるアイコン類
---------------------------------------------------------------------------*/
/*アイコン類を囲むブロック*/
ul.icon {
	list-style: none;
	margin: 0;padding: 0;
	margin-bottom: 30px;	/*下に空けるスペース*/
}

/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*リストタグを横並びにさせる指定*/
}

/*アイコン画像の設定*/
ul.icon img {
	width: 30px;	/*アイコン画像の幅*/
}

/*画像のマウスオン時*/
ul.icon img:hover {
	opacity: 0.8;	/*透明度。0.8は色が80%出た状態の事。*/
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 5px;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	border-bottom: 1px solid rgba(255,255,255,0.2);	/*下線の幅、線種、色。255,255,255,は白の事で0.2は色が20%出た状態の事。*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。*/
}



/*トップページのphotoes横スライドショーコーナー（slickを使用）
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むボックス*/
.pickup {
	position: relative;
	display: flex;			/*flexボックスを使う指定*/
	padding: 100px 0 50px 0;
}

/*１個あたりのボックス*/
.pickup .slick-slide {
	margin: 5px !important;
	width: auto;
}

/*ボックス内の画像*/
.pickup .list img {
	object-fit: cover;	/*トリミングのタイプ*/
	width: 100%;		/*画像の幅*/
	font-family: 'object-fit: cover;';	/*IE対策*/
}

/*事業紹介で写真と文章が横並びになっているところ
---------------------------------------------------------------------------*/
/*写真と解説テキストを囲むブロック*/
.list2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*list2ブロック内のfigureタグ。写真を囲むブロック。*/
.list2 figure {
	width: 90%;				/*幅*/
	text-align: center;		/*テキストをセンタリング*/
}

/*写真*/
.list2 figure img {
	padding: 10px;		/*写真の周りに少し余白を作って、より写真っぽく見せる*/
	background: #fff;	/*上の10pxとの間に出る色*/
	box-shadow: 0px 0px 50px 10px rgba(255,255,255,0.4);	/*ボックスの影。右へ、下へ、ぼかし幅、範囲。255,255,255は白の事で0.4は色が40%出た状態の事。*/
	transform: rotate(-2deg);	/*左に少しだけ回転させる指定。回転させたくなければこの１行と、下の「.list2:nth-of-type(even) img」のブロックを削除。*/
}

/*偶数番目のimg画像*/
.list2:nth-of-type(even) img {
	transform: rotate(2deg);	/*回転を上と逆向きに。*/
}

/*list2内のtextブロック*/
.list2 .text {
	width: 100%;	/*幅*/
}


/*トップページのスライドショー（vegasを使用）
---------------------------------------------------------------------------*/
#mainimg {
    width: 100vw;
    height: 100vh;
}

/*SVGロゴ設定*/
#svg-logo {
	position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
	width: 300px;		/*幅*/
    stroke: #fff;		/*ここはこのままで変更しない（文字色の指定ではありません）*/
    stroke-width: 500;	/*ロゴをなぞった際の線の太さを指定して下さい。*/
}

/*スクロールを促すアイコン*/
.scroll {
	position: absolute;left: 50%;bottom: 20px;transform: translateX(-50%);
	width: 30px;	/*画像の幅*/
	opacity: 0.7;	/*透明度。0.7は色が70%出た状態の事。*/
}



/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

.pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #fff998 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.large {font-size: 2rem;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}


/*---------------------------------------------------------------------------
ここから下は画面幅800px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:800px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 20px;	/*基準となるフォントサイズの上書き*/
}

/*section全般の設定*/
section + section {
	padding-top: 50px;	/*sectionの間に空けるスペース*/
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	padding: 0 50px;	/*上下、左右へのブロック内の余白*/
}


/*menu.htmlの画像配置のコンパクトメニュー部分
---------------------------------------------------------------------------*/
/*１個あたりのボックス*/
.list {
	width: 23%;				/*ボックスの幅*/
	margin-right: 2.66%;	/*ボックス同士の左右間の余白。ボックスを4列並べるので、23%×4個=92%。100%との差の8%分をボックス間にある余白3個分で割った数字がここに入ります。※下の「.list:nth-of-type(2n)」の数字と合わせる。*/
	margin-bottom: 25px;	/*ボックス同士の上下間の余白*/
}

/*2の倍数(偶数番目)のボックスへの追加指定*/
.list:nth-of-type(2n) {
	margin-right: 2.66%;	/*上のlistのmargin-rightと数字を合わせる。小さな端末向けで0になっているのを上書きしています。*/
}

/*4の倍数のボックスへの追加指定*/
.list:nth-of-type(4n) {
	margin-right: 0;	/*右側のスペースをなくす設定*/
}

/*
---------------------------------------------------------------------------*/
/*写真と解説テキストを囲むブロック*/
.list2 {
	flex-direction: row;	/*子要素を横並びにする*/
	margin-bottom: 100px;	/*下に空けるスペース*/
}

/*偶数番目のlist2ブロック*/
.list2:nth-of-type(even) {
	flex-direction: row-reverse;	/*配置を左右逆にする*/
}

/*list2ブロック内のfigureタグ。写真を囲むブロック。*/
.list2 figure {
	width: 48%;	/*幅*/
}

/*list2内のtextブロック*/
.list2 .text {
	width: 48%;	/*幅*/
}

/*
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list3 {
	flex-direction: row;	/*子要素を横並びにする*/
	margin-bottom: 100px;	/*下に空けるスペース*/
}

/*偶数番目のlist3ブロック*/
.list3:nth-of-type(even) {
	flex-direction: row-reverse;	/*配置を左右逆にする*/
}

/*list3ブロック内のfigureタグ。写真を囲むブロック。*/
.list3 figure {
	width: 48%;	/*幅*/
}

/*list3内のtextブロック*/
.list3 .text {
	width: 48%;	/*幅*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}
/*点線かこみスタイル
---------------------------------------------------------------------------*/
ol {
	/*2px 水色 破線を指定*/
	background: rgba(255, 229, 112, 0.87);
	border: 2px rgba(255, 229, 112, 0.87) dashed; 
  }

  ol li {
	/*olの中のliの文字色を変える*/
	color: #000000;
}  

/*その他
---------------------------------------------------------------------------*/
.ws {width: 45%;display: inline-block;}

label {
    display: block;
    font: 1rem 'Fira Sans', sans-serif;
}

input,
label {
    margin: .4rem 0;
}

/*　※注意！　下の閉じカッコ　}　は800px以上の設定に必要なので、うっかり削除しないように。　*/

}

/*---------------------------------------------------------------------------
ここから下は画面幅800px未満の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:799px) {


html, body {/*全体の設定
---------------------------------------------------------------------------*/
	font-size: 14px;	/*基準となるフォントサイズの上書き*/
}

header #logo {
    width: 70px;
}

main h1 {
    margin: 0;             /* デフォルトCSS打ち消し */
    font-size: 20px;       /* 文字サイズ指定 */
	text-align: center;
}

/*インデックスページ（スマホ）
---------------------------------------------------------------------------*/
.section-title {
	margin: 20px 0px;
}

.section-title2 {
	margin: 0px;
}

.content-tate {
	-webkit-writing-mode:horizontal-tb;
	-ms-writing-mode:lr-tb;
	writing-mode:horizontal-tb;
	margin: 20px;
}

.content-haikei {
	background-image: url(https://Kitanoho.solutions/images/BackImg.webp);
	background-size: 50% auto;
	background-position: right center;
	background-repeat: no-repeat;
	padding:  10px; /* 余白指定 */
	height: 500px;
	background-size: cover;
	position: relative;
	background-color:rgba(255,255,255,0.3);/*色を薄くする*/
    background-blend-mode:lighten;/*画像を明るくする*/
	margin-bottom: 100px;
}

.content-yoko {
	margin-right: 0%;
	width: 100%;
	margin-top: 25%;
}

.section-img {
	width: 30vw;
	margin-top: 0;
}

.section-img2 {
	width: 25vw;
	margin: 0 0 10% 60%;
}

.gaiyou-img {
	width: 30vw;
}

.content-title3 h1 {
	margin-top:20px;
	width: 100px;
}

.content-title4 h1 {
	width: 300px;
	margin-bottom: 50px;
}

.list2 {
	margin-bottom: 0px;	
}


/*会社概要（スマホ）
---------------------------------------------------------------------------*/
.flex2 {
	display: block; /*横並びを解除*/
}

.flex2 .image2 {
	width: 100%; /*画像サイズ指定*/
	margin-bottom: 20px;
}

.flex2-text {
	text-align: center;/*テキスト中央ぞろえ*/
}

/*事業紹介（スマホ）
---------------------------------------------------------------------------*/
.flex {
	display: block;
	margin-bottom: 20px;
}
.image {
	width: 100%;
}

.flex .image {
    margin: 0px
}

.flex .right {
    margin: 0px;
}

/*　※注意！　下の閉じカッコ　}　は799px以下の設定に必要なので、うっかり削除しないように。　*/

}



/*追加css集*/

.card-container{
    display:flex;
    max-width: auto;
    height: auto;
    float: left;
}

.card-img img{
    width:auto;
    height:auto;
	padding: 10px;		/*写真の周りに少し余白を作って、より写真っぽく見せる*/
	background: #fff;	/*上の10pxとの間に出る色*/
}

.card-text{
	width:100%;

}

