﻿@charset "utf-8";


/*slide.cssの読み込み*/
@import url(slide.css);

/*アニメーションのキーフレーム設定。透明(0%)から色を100%出す指定。*/
@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;	/*フォント種類*/
	font-size: 17px;	/*文字サイズ*/
	line-height: 1.9;		/*行間*/
	background: #fff url(../images/bg.png);	/*背景色*/
	-webkit-text-size-adjust: none;
	font-weight: 500;	/*フォントの太さ（やや太め）*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;}
h1 {font-size: 200%; font-weight: 700;}
h2 {font-size: 180%; font-weight: 700;}
h3 {font-size: 140%; font-weight: 600;}
h4 {font-size: 120%; font-weight: 600;}
h5 {font-size: 110%; font-weight: 600;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #009603;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*サイトの最大幅の設定
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅。これ以上大きくならない。*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: #fff linear-gradient(#d5ffd9, rgba(255,255,255,0) 50%);/*背景色、背景グラデーション*/
}
header .inner {
	position: relative;overflow: hidden;
	margin: 0 auto;
	min-height: 180px;	/*ヘッダーの最小高さ（全てのボタンが収まるように調整）*/
	height: auto;
	background: linear-gradient(#d5ffd9, rgba(255,255,255,0) 50%), #fff;/*背景グラデーション、背景画像の読み込み*/
}
/*ロゴ画像*/
header #logo {
	width: 400px;		/*ロゴ画像の幅（大きめに）*/
	max-width: 50%;		/*画面幅の50%まで*/
	position: absolute;
	left: 2%;		/*headerのinnerに対しての左からの配置指定*/
	right: auto;
	top: 15px;		/*上部に配置（一般的な位置）*/
	bottom: auto;
}
header #logo img {
	width: 100%;		/*親要素に合わせる*/
	height: auto;		/*アスペクト比を維持*/
	display: block;		/*余白を削除*/
}

/*ヘッダー内メニュー（お問い合わせボタン - 最も目立たせる）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 2%;	/*headerのinnerに対しての右からの配置指定*/
	top: 50px;	/*文字サイズボタンの下に配置*/
}
/*メニュー１個あたり*/
#headermenu li {
	float: left;		/*左に回り込み*/
	margin-left: 10px;	/*左側にスペースを空ける*/
}
#headermenu li a {
	text-decoration: none;display: block;
	background: #ff8a00;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#ffa600, #ff8a00);	/*背景グラデーション*/
	color: #FFF;		/*文字色*/
	padding: 16px 40px;	/*上下、左右へのボックス内の余白（大きく目立つように）*/
	border-radius: 25px;	/*丸みのある角丸*/
	border: none;	/*枠線なし*/
	font-weight: 700;	/*太字*/
	font-size: 18px;	/*文字サイズ*/
	box-shadow: 0 3px 8px rgba(255, 138, 0, 0.3);	/*影をつけて立体的に*/
	transition: all 0.3s ease;
}
/*マウスオン時*/
#headermenu li a:hover {
	background: #ff9d1a;	/*明るいオレンジ*/
	transform: translateY(-2px);	/*浮き上がる*/
	box-shadow: 0 5px 12px rgba(255, 138, 0, 0.4);	/*影を強く*/
}

/*ヘッダー内SNSリンク（アカウント名表示・わかりやすいデザイン）
---------------------------------------------------------------------------*/
#header-sns {
	position: absolute;
	right: 2%;		/*右側に配置*/
	top: 105px;		/*お問い合わせボタンの下に十分なスペースを確保*/
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 100;
	background: rgba(255, 255, 255, 0.95);
	padding: 8px 12px;
	border-radius: 20px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/*タブレット・スマホでは非表示（フッターのSNSを利用）*/
@media screen and (max-width:1100px){
	header .inner {
		height: auto;
		min-height: 180px;
		padding: 20px 10px 30px;
	}
	header #logo {
		position: static;
		left: auto;
		right: auto;
		bottom: auto;
		margin: 0 auto 15px;	/*中央寄せ*/
		width: 500px;		/*サイズを最大限に拡大*/
		max-width: 100%;	/*画面幅いっぱいまで*/
	}
	#header-sns {
		display: none !important;
	}
	#headermenu {
		position: static;
		margin: 50px auto 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 8px;
	}
	#headermenu li {
		float: none;
		margin: 0;
	}
	#fsize {
		position: static;
		margin: 10px auto 0;
		justify-content: center;
	}
}
#header-sns .sns-label-text {
	font-size: 11px;
	color: #666;
	font-weight: 600;
	margin-right: 4px;
}
#header-sns .sns-icons {
	display: flex;
	gap: 8px;
	align-items: center;
}
#header-sns .sns-icons a {
	display: flex;
	align-items: center;
	gap: 6px;		/*アイコンとテキストの間隔*/
	text-decoration: none;
	padding: 6px 10px;
	border-radius: 15px;
	background: #fff;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
#header-sns .sns-icons a:hover {
	transform: translateY(-2px);
	box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
#header-sns .sns-icons a i {
	font-size: 16px;
	transition: transform 0.3s ease;
}
#header-sns .sns-icons a:hover i {
	transform: scale(1.1);
}
#header-sns .sns-icons a span {
	display: block;		/*テキストを表示*/
	font-size: 10px;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
	line-height: 1.2;
}
/*Instagramのブランドカラー*/
#header-sns .sns-instagram-honsha i,
#header-sns .sns-instagram-tsukushi i {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
/*Facebookのブランドカラー*/
#header-sns .sns-facebook i {
	color: #1877f2;
}

@media screen and (min-width:1101px){
	header .inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-rows: auto auto auto;
		column-gap: 24px;
		row-gap: 8px;
		align-items: center;
		padding: 10px 2% 20px;
	}
	header #logo {
		position: static;
		grid-column: 1;
		grid-row: 1 / 4;
		align-self: end;
		margin: 0;
		max-width: 70%;
	}
	#fsize {
		position: static;
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		margin: 0;
	}
	#headermenu {
		position: static;
		grid-column: 2;
		grid-row: 2;
		justify-self: end;
		margin: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 8px;
	}
	#headermenu li {
		float: none;
		margin: 0;
	}
	#header-sns {
		position: static;
		grid-column: 2;
		grid-row: 3;
		justify-self: end;
		margin: 0;
	}
}

/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体 - 右上の独立した位置に配置*/
#fsize {
	position: absolute;
	right: 2%;		/*右側に配置*/
	top: 8px;		/*ヘッダー上部に配置*/
	width: auto;	/*内容に応じて幅を調整*/
	background: rgba(255, 255, 255, 0.95);	/*少し透明な白背景*/
	box-shadow: 0px 1px 4px rgba(0,0,0,0.1);	/*控えめな影*/
	border-radius: 15px;	/*丸みのある角丸*/
	line-height: 1;
	padding: 4px 10px;	/*コンパクトな余白*/
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 101;	/*最前面に配置*/
}
/*「文字サイズ」のテキスト*/
#fsize p {
	margin: 0;
	font-size: 11px;	/*文字サイズ*/
	padding: 0;
	font-weight: 600;
	color: #666;
}
/*文字サイズボタン全体*/
#fsize ul {
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
}
/*文字サイズボタン１個あたり*/
#fsize ul li {
	list-style: none;
}
#fsize ul a {
	display: block;
	text-decoration: none;
	text-align: center;
	color: #fff;	/*文字色*/
}
/*「小」ボタン設定*/
#fsize ul li#small a::before {
	display: block;
	content: "小";		/*「小」の文字を出力*/
	font-size: 13px;	/*文字サイズ*/
	background: #009603;	/*背景色*/
	width: 32px;		/*幅*/
	line-height: 32px;	/*高さ*/
	border-radius: 16px;	/*完全な円形*/
	transition: all 0.3s ease;
}
/*「小」ボタンマウスオン時*/
#fsize ul li#small a:hover::before {
	background: #007a02;
	transform: scale(1.1);
}
/*「大」ボタン設定*/
#fsize ul li#large a::before {
	display: block;
	content: "大";		/*「大」の文字を出力*/
	font-size: 16px;	/*文字サイズ*/
	background: #ccc;	/*背景色*/
	width: 36px;		/*幅*/
	line-height: 36px;	/*高さ*/
	border-radius: 18px;	/*完全な円形*/
	transition: all 0.3s ease;
}
/*マウスオン時の「大」ボタン設定*/
#fsize ul li#large a:hover::before {
	background: #009603;	/*背景色*/
	transform: scale(1.1);
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	overflow: hidden;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff 30%, #eee);	/*背景グラデーション*/
	border-bottom: 1px solid #cfcfcf;	/*下線の幅、線種、色*/
	margin-bottom: 40px;	/*下のコンテンツとの間に空けるスペース*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.66%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	text-decoration: none;display: block;text-align: center;
	padding: 10px 0;	/*上下、左右へのメニュー内の余白*/
	margin: 10px 5px;	/*上下、左右へのメニューの外への余白*/
	border-radius: 5px;	/*角丸のサイズ*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #009603;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（mainとsubブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	box-sizing: border-box;
	padding: 2%;	/*ボックス内の余白*/
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1は10%色がついた状態の事。*/
	margin-bottom: 40px;	/*下のフッターブロックとの間に空けるスペース*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: left;	/*右に回り込み*/
	width: 75%;		/*ボックス幅*/
	padding-bottom: 40px;
}
/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: auto;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 120%;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	background: #009603;	/*背景色*/
	border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	font-size: 110%;	/*文字サイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter {
	border-left: 3px solid #009603;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	padding-top: 30px;
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list {
	overflow: hidden;position: relative;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 20px;	/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックス同士に空けるスペース*/
}
#main .list a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -20px;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 20px;	/*ボックス内の余白*/
}
/*マウスオン時の設定*/
#main .list a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*画像*/
#main .list figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}
/*h4（見出し）タグの設定*/
#main .list h4 {
	color: #009603;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
}
/*p（段落）タグの設定*/
#main .list p {
	padding: 0;
}
/*リンクを設定した場合にボックス右下にでる「→」マーク*/
#main .list a::before {
	display: block;text-align: center;
	content: "→";	/*このテキストを出力します。変更しても構いませんが機種依存文字は使わないように。*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	position: absolute;
	right: 20px;	/*ブロックに対して、右からの配置場所指定*/
	bottom: 20px;	/*ブロックに対して、下からの配置場所指定*/
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*マウスオン時*/
#main .list a:hover::before {
	background: #009603;	/*背景色*/
}
/*ボックス全体でなく、テキストなど部分的にリンクを貼る場合の設定*/
#main .list.link a {
	margin: 0;padding: 0;
	display: inline;
	text-decoration: underline;
}
#main .list.link a::before {
	display: none;
}

/*詳細ページのサムネイル画像（CMS用）
---------------------------------------------------------------------------*/
.thumb {
	width: 70px;	/*画像の幅*/
	height: 70px;	/*画像の高さ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}
/*マウスオン時*/
.thumb:hover {
	border: 1px solid #999;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*左に回り込み*/
	width: 22%;		/*ブロックの幅*/
	padding-bottom: 40px;
}
/*１カラム字のサブコンテンツ*/
.c1 #sub {display: none;}
/*h2見出しタグ設定*/
#sub h2 {
	margin-bottom: 10px;
	font-size: 110%;	/*文字サイズ*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #009603;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}
/*段落タグ（p）設定*/
#sub p {
	line-height: 1.6;	/*行間を少し狭く*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li {
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub .submenu li a {
	text-decoration: none;display: block;
	padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: #f5f5f5;	/*背景色*/
	border: solid 1px #dbdbdb;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
}
/*box1内のメニューの設定*/
#sub .box1 .submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ内のbox2（「アドニスライフとは？」と「スタッフ募集中」のバナー）
---------------------------------------------------------------------------*/
#sub .box2 {
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	font-size: 120%;	/*文字サイズ*/
	box-shadow: 0px 0px 2px 5px #fff inset;	/*影の設定。右・下・ぼかし幅・距離・色の設定。insetは内側に向かっての影。*/
	background: #edf5fa;	/*背景色*/
}
#sub .box2 a {
	text-decoration: none;
	display: block;
	padding: 40px 15px;			/*上下、左右へのボックス内の余白*/
	border: solid 3px #e4e4e4;	/*枠線の線種、幅、色*/
}
/*マウスオン時*/
#sub .box2 a:hover {
	border: solid 3px #33a035;	/*枠線の線種、幅、色*/
}
/*「アドニスライフとは？」の背景設定*/
#sub .box2.about {
	background: #edf5fa url(../images/logo_mark.png) no-repeat right center / 100px;	/*背景色、背景画像の読み込み。高さ100px。*/
}
/*「スタッフ募集中」の背景設定*/
#sub .box2.recruit {
	background: #edf5fa url(../images/recruit_img.png) no-repeat right 20px top 10px/ 30px;		/*背景色、背景画像の読み込み。高さ110px。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footerボックス*/
footer {
	clear: both;overflow: hidden;
	background: #f7f7f7;	/*背景色*/
	color: #333;		/*文字色*/
	border-top: 1px solid #e3e3e3;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	clear: both;overflow: hidden;
	font-size: 13px;	/*文字サイズ*/
	padding: 12px 0;	/*上下の余白を抑える*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}
/*１列分の設定*/
#footermenu ul {
	float: none;
	width: auto;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 12px 20px;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0;	/*余白を抑える*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	color: #333;	/*文字色*/
	opacity: 0.8;	/*透明度。色を80%出した状態。*/
}
/*マウスオン時のリンクテキスト*/
#footermenu a:hover {
	opacity: 1;	/*透明度。色を100%出した状態。*/
}

/*フッター会社情報
---------------------------------------------------------------------------*/
#footer-company-info {
	clear: both;
	padding: 24px 0 20px;
	border-top: 1px solid #e3e3e3;
	background: #f7f7f7;
}
#footer-company-info .company-name {
	color: #333;
	font-size: 1.2em;
	font-weight: 700;
	text-align: left;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
}
#footer-company-info .info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 32px;
	max-width: 960px;
	margin: 0;
}
#footer-company-info .info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	text-align: left;
	padding: 6px 0;
	border-bottom: 1px dotted #d9d9d9;
}
#footer-company-info .info-item i {
	display: none;
}
#footer-company-info .info-label {
	color: #555;
	font-size: 0.95em;
	font-weight: 600;
	margin: 0;
	letter-spacing: 0.02em;
	width: 8em;
	flex: 0 0 8em;
}
#footer-company-info .info-content {
	color: #333;
	font-size: 1.05em;
	line-height: 1.6;
	font-weight: 400;
	margin: 0;
}
#footer-company-info .info-content .phone-number {
	font-size: 1.15em;
	font-weight: 700;
	letter-spacing: 0.02em;
	display: block;
	margin-bottom: 4px;
}
#footer-company-info .info-content .business-hours {
	font-size: 0.95em;
	color: #555;
	display: block;
}
#footer-company-info .info-content a {
	color: #0066cc;
	text-decoration: underline;
}
#footer-company-info .info-item:last-child {
	border-bottom: none;
	grid-column: 1 / -1;
}
@media screen and (max-width: 900px) {
	#footer-company-info .info-grid {
		grid-template-columns: 1fr;
	}
	#footer-company-info .info-label {
		width: 6.5em;
		flex-basis: 6.5em;
	}
}

/*フッターSNSリンク（一般的な企業サイト風）
---------------------------------------------------------------------------*/
#footer-sns {
	text-align: center;
	padding: 18px 0 14px;
	border-top: 1px solid #e3e3e3;
	margin-top: 12px;
}
#footer-sns .sns-title {
	color: #333;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
}
#footer-sns .sns-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
#footer-sns .sns-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
	padding: 6px 10px;
	border-radius: 6px;
	background: #fff;
	border: 1px solid #e3e3e3;
}
#footer-sns .sns-links a:hover {
	background: #f0f0f0;
	border-color: #d0d0d0;
	transform: translateY(-2px);
}
#footer-sns .sns-links a i {
	font-size: 24px;
	transition: transform 0.3s ease;
}
#footer-sns .sns-links a span {
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}
#footer-sns .sns-links a:hover i {
	transform: scale(1.1);
}
#footer-sns .sns-instagram-honsha i,
#footer-sns .sns-instagram-tsukushi i {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
#footer-sns .sns-facebook i {
	color: #4a9eff;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;text-align: center;
	background: #333;	/*背景色*/
	padding: 10px;		/*余白*/
}
#copyright a {text-decoration: none;color: #fff;}
#copyright .pr {display: block;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*記事内リンク設定*/
#new dd a {
	display: block;
	text-decoration: none;
	color: #333;
	transition: background-color 0.3s;
}
/*記事内リンク マウスオン時*/
#new dd a:hover {
	background-color: #f0f0f0;
	color: #009603;
}
/*一覧を見るボタン*/
#new .news-link {
	text-align: center;
	margin-top: 20px;
}
#new .news-link a {
	display: inline-block;
	text-decoration: none;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	padding: 8px 30px;	/*上下、左右へのボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 2px solid #009603;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
#new .news-link a:hover {
	color: #fff;	/*文字色*/
	background: #009603;	/*背景色*/
	border-color: #009603;	/*枠線の色*/
}

/*お知らせ詳細 戻るボタン
---------------------------------------------------------------------------*/
.news-detail-back {
	text-align: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #ccc;
}
.news-detail-back a {
	display: inline-block;
	text-decoration: none;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	padding: 10px 40px;	/*上下、左右への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 2px solid #009603;	/*枠線の幅、線種、色*/
	transition: all 0.3s;
}
.news-detail-back a:hover {
	color: #fff;	/*文字色*/
	background: #009603;	/*背景色*/
	border-color: #009603;	/*枠線の色*/
}

/*よく頂く質問
---------------------------------------------------------------------------*/
/*外側ブロック*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.faq dt {
	color: #009603;		/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	padding-left: 35px;	/*背景アイコンに重ならないよう左に余白を作る*/
	background: url(../images/faq_q.png) no-repeat left top / 34px;	/*「Q」アイコン*/
}
/*回答*/
.faq dd {
	padding-left: 35px;		/*背景アイコンに重ならないよう左に余白を作る*/
	margin-bottom: 20px;	/*ボックスの下側（外側）に空けるスペース*/
	padding-bottom: 20px;	/*ボックス内の下側に空けるスペース*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	background: url(../images/faq_a.png) no-repeat left top / 34px;	/*「A」アイコン*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi,
.ta2 th.tamidashi {
	width: auto;
}
/*ta1,ta2共通設定*/
.ta1,
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi,
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f0f0f0;	/*背景色*/
}
/*ta2の左側ボックス*/
.ta2 th {
	background: #fffeba;	/*背景色*/
}
/*ta2の右側ボックス*/
.ta2 td {
	text-align: center;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta1.price td {
	text-align: right;
}
.ta1.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta1.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}

/*btn（inputタグ用）
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
	border-radius: 3px;
}
p.check a {color: #fff;}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	bottom: 40px;		/*下から40pxの場所に配置*/
	right: 1%;			/*右から1%の場所に配置*/
	background: #009603;	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*円形にする*/
	animation-name: opa1;	/*冒頭のkeyframesの名前*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {list-style: disc;padding: 0 20px 20px 45px;}
ol {padding: 0 20px 20px 45px;}

/*「NEW」アイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1 {color: #009603 !important;}
.color2 {color: #ff0000 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fr {float: right;margin-left: 2%;margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}
.big1 {font-size: 200%;letter-spacing: 0.2em;}
.mini1 {font-size: 80%;}
.sh {display: none;}



/*画面幅1000px以下の設定（ヘッダーSNSボタンを非表示）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){

/*ヘッダー内SNSリンク（画面が狭い場合は非表示、フッターのSNSを利用）
---------------------------------------------------------------------------*/
#header-sns {
	display: none !important;
}

/*ロゴサイズの調整（画面幅に応じて）
---------------------------------------------------------------------------*/
header #logo {
	width: 450px;		/*ロゴ幅を大きく*/
	max-width: 90%;		/*画面幅の90%まで*/
	left: 2%;
	right: auto;
}

}


/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*ヘッダー内SNSリンク（スマホ対応）
---------------------------------------------------------------------------*/
#header-sns {
	display: none !important;	/*スマホでは確実に非表示*/
}

/*ヘッダーロゴ（スマホ対応）
---------------------------------------------------------------------------*/
header #logo {
	position: static;
	width: 400px;		/*スマホでのロゴ幅を大きく*/
	max-width: 90%;		/*画面幅の90%までに拡大*/
	left: auto;
	transform: none;
	bottom: auto;
	margin: 0 auto 8px;
}

/*文字サイズ変更ボタン（スマホ対応）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 75px;	/*ハンバーガーメニューの下に配置*/
	right: 2%;
	padding: 5px 10px;
	font-size: 11px;
	z-index: 100;
	background: rgba(255,255,255,0.9);
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#fsize p {
	margin-bottom: 5px;
	font-weight: bold;
	color: #333;
}
#fsize ul {
	display: flex;
	gap: 10px;
	align-items: center;
}
#fsize ul li#small a::before,
#fsize ul li#large a::before {
	width: 42px;
	height: 42px;
	line-height: 42px;
	font-size: 16px;
	border-radius: 21px;
}
#fsize ul li#large a::before {
	width: 42px;
	height: 42px;
	line-height: 42px;
	font-size: 20px;
	border-radius: 21px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	animation-name: opa1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px;	/*メニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #009603;	/*背景色*/
	font-size: 18px;		/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	font-size: 12px;	/*文字サイズ*/
	margin-left: 20px
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*フッターメニュー（スマホでは自然に折り返す）*/
#footermenu {
	font-size: 12px;
	padding: 10px 0;
	gap: 16px;
}
#footermenu ul {
	flex-wrap: wrap;
	gap: 8px 16px;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: absolute;z-index: 2;
	top: 15px;	/*上からの配置場所指定*/
	right: 2%;	/*右からの配置場所指定*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	cursor: pointer;
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;		/*幅*/
	height: 50px;		/*高さ*/
	border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
	cursor: pointer;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #009603 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #333 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
}

/*main,sub
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*フッター会社情報（スマホ対応）
---------------------------------------------------------------------------*/
#footer-company-info .company-name {
	font-size: 18px;
	margin-bottom: 15px;
}
#footer-company-info .info-grid {
	grid-template-columns: 1fr;
	gap: 20px;
	padding: 0 20px;
}
#footer-company-info .info-item i {
	font-size: 24px;
}
#footer-company-info .info-content .phone-number {
	font-size: 20px;
}

/*フッターSNSリンク（スマホ対応）
---------------------------------------------------------------------------*/
#footer-sns {
	padding: 25px 15px 15px;
}
#footer-sns .sns-title {
	font-size: 14px;
	margin-bottom: 15px;
}
#footer-sns .sns-links {
	flex-direction: column;
	gap: 12px;
}
#footer-sns .sns-links a {
	padding: 10px 20px;
	width: 80%;
	max-width: 280px;
	justify-content: center;
}
#footer-sns .sns-links a i {
	font-size: 22px;
}
#footer-sns .sns-links a span {
	font-size: 13px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side {display: none;}
.big1 {font-size: 150%;letter-spacing: normal;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header .inner {
	position: relative;	/*メニューボタンとの位置関係のためrelativeに変更*/
	height: auto;
	min-height: 100px;	/*最小の高さを確保*/
	padding: 15px 10px;
	background-position: right center;	/*背景画像の配置場所の変更。右側に寄せる。*/
}
/*ロゴ画像*/
header #logo {
	position: static;
	width: 350px;		/*ロゴ幅を大きく*/
	max-width: calc(100% - 70px);	/*メニューボタンとの重なりを防ぐ*/
	margin: 0 auto;
	transform: none;	/*中央寄せをリセット*/
	left: auto;
}

/*ヘッダー内SNSリンク（念のため確実に非表示）
---------------------------------------------------------------------------*/
#header-sns {
	display: none !important;
}

/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: static;
	margin: 50px auto 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
/*メニュー１個あたり*/
#headermenu li {
	float: none;
	max-width: 300px;	/*最大幅*/
	margin: 10px auto;
	text-align: center;
}
#headermenu li a {
	font-size: 19px;
	padding: 18px 42px;
	min-width: 240px;
}

}



@media screen and (min-width:1101px){
	header .inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-rows: auto auto auto;
		column-gap: 24px;
		row-gap: 8px;
		align-items: center;
		padding: 10px 2% 20px;
	}
	header #logo {
		position: static;
		grid-column: 1;
		grid-row: 1 / 4;
		align-self: end;
		margin: 0;
		max-width: 70%;
	}
	#fsize {
		position: static;
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		margin: 0;
	}
	#headermenu {
		position: static;
		grid-column: 2;
		grid-row: 2;
		justify-self: end;
		margin: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 8px;
	}
	#headermenu li {
		float: none;
		margin: 0;
	}
	#header-sns {
		position: static;
		grid-column: 2;
		grid-row: 3;
		justify-self: end;
		margin: 0;
	}
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*文字サイズ指定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 280px;		/*スマホでもロゴを大きく*/
	max-width: calc(100% - 65px);	/*メニューボタンと重ならないように*/
	padding: 5px 0;
}

/*ヘッダー内SNSリンク（小画面では確実に非表示）
---------------------------------------------------------------------------*/
#header-sns {
	display: none !important;
}

/*文字サイズ変更ボタン（小画面対応）
---------------------------------------------------------------------------*/
#fsize {
	top: 70px;
	right: 2%;
	padding: 4px 8px;
}
#fsize p {
	font-size: 10px;
	margin-bottom: 3px;
}
#fsize ul {
	gap: 8px;
}
#fsize ul li#small a::before,
#fsize ul li#large a::before {
	width: 38px;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	border-radius: 19px;
}
#fsize ul li#large a::before {
	width: 38px;
	height: 38px;
	line-height: 38px;
	font-size: 18px;
	border-radius: 19px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1,ta2共通設定*/
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}

}

