@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400&display=swap');

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--base-color: #fff;					
	--base-inverse-color: #0e211f;		

	--primary-color: #338d39;			
	--primary-inverse-color: #fff;		

	--content-space: 2rem;				/*余白の一括管理用。2rem＝2文字分。*/
	
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	:root {

		--content-space: 4rem;			/*余白の一括管理用。4rem＝4文字分。*/

	}

	}/*追加指定ここまで*/


/*animation11のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*jump1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes jump1 {
  0%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  90% {
    transform: translateX(-50%) translateY(-10px);
  }
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 15px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", sans-serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		/*背景色。css冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。css冒頭のbase-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

.serif { 
    font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'MS P明朝', 'Hiragino Mincho ProN', serif;
    font-weight: 500;
}

@media screen and (min-width:769px) {
.serif { 
    font-size:2em;
    }
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

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

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

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

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

/*他*/
input {font-size: 1rem;}

/*section*/
section {
	padding: var(--content-space) 0;	/*section内の余白。上下にcss冒頭のcontent-spaceを読み込み、左右は0（ゼロ）*/
}

.nowrap{
    white-space: nowrap
}

.pcon{
    display: none;
}
.nobr{
    white-space: nowrap;
}
a {
  text-underline-offset: 3px; 
}

h1 {
    font-size:1.8em;
    }

h4{
    padding: 0;
    margin-bottom: -1em;
}
.grecaptcha-badge{
    margin-bottom: 80px;
}


@media screen and (max-width:768px) {
.pcon{
    display: block;
    margin: auto;
    width: 100%;
}
.spoff{
    display: none;
}
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 1s 0.4s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 0 var(--content-space);	/*コンテナー内の余白。上下は0（ゼロ）、左右はcss冒頭のcontent-spaceを読み込む。*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: var(--content-space) 0;	/*ヘッダー内の余白。上下にcss冒頭のcontent-spaceを読み込み、左右は0（ゼロ）*/
}

	/*画面幅400px以下の追加指定*/
	@media screen and (max-width:400px) {

	/*ヘッダーブロック*/
	header {
		padding-top: calc(var(--content-space) + 70px);	/*右上ボタンとロゴが重ならないようヘッダー上部の余白に70px上乗せ*/
	}
	
	}/*追加指定ここまで*/


/*ロゴ*/
#logo {margin: 0;padding: 0;}
#logo img {
	display: inline-block;
	width: 280px;	/*ロゴの幅*/
    max-width: 50%;
}


/*ヘッダー右側
---------------------------------------------------------------------------*/
#header-box * {margin: 0;padding: 0;}

/*ボックス全体*/
#header-box {
	list-style: none;
	position: fixed;	/*スクロールしても常に同じ場所に配置*/
	z-index: 101;
	right: 70px;		/*右側からの配置場所。ハンバーガーアイコンの幅と合わせておくときれいに並びます。*/
	top: 0px;			/*上からの配置場所。*/
	height: 70px;		/*高さ。ハンバーガーアイコンの高さと合わせておくときれいに並びます。*/
	display: flex;		/*メニューが増えた場合に横並びにする*/
}

/*メニュー１個あたり*/
#header-box a {
	display: flex;text-decoration: none;
	height: 100%;
	align-items: center;
	background: linear-gradient(to right, #c8d31f, var(--primary-color));
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding: 0 1.5rem;	/*上下、左右へのボタン内の余白*/
}


.livecam{
    transition: .5s;
    top:0;
}

@media screen and (max-width:768px) {
h1 {
    font-size:1.6em;
    }
.livecam.btnoff{
    position: relative;
    top:-10em;
}
}


/*mainimg（4枚構成の横スライドショー）
---------------------------------------------------------------------------*/
/*h2見出し*/
#mainimg-box h2 {
	font-size: 5vw;	/*文字サイズ*/
	line-height: 1.6;	/*行間を少し狭く*/
	font-weight: 200;	/*文字の太さ。細く。*/
	position: relative;	/*カギカッコを絶対配置する為に必要な指定*/
	display: inline-block;
	padding: 1rem 3rem;	/*上下、左右への見出し内の余白。カギカッコとテキストの間のバランスを調整します。*/
}

/*h2内の色がついた部分（span）*/
#mainimg-box h2 span {
	color: var(--primary-color);	/*css冒頭のprimary-colorを読み込みます。*/
}

/*h2見出しのカギカッコ装飾（共通設定）*/
#mainimg-box h2::before,
#mainimg-box h2::after {
	content: "";
	position: absolute;
	width: 20px;	/*カギカッコの幅。お好みで。*/
	height: 50px;	/*カギカッコの高さ。お好みで。*/
	border: 1px solid var(--base-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているvase-inverse-colorを読み込みます*/

}
/*h2見出しの最初（左上）のカギカッコの設定*/
#mainimg-box h2::before {
	top: 0px;
	left: 0px;
	border-right: none;		/*右の線は消す*/
	border-bottom: none;	/*下の線は消す*/
}

/*h2見出しの最後（右下）のカギカッコの設定*/
#mainimg-box h2::after {
	bottom: 0px;
	right: 0px;
	border-left: none;	/*左の線は消す*/
	border-top: none;	/*上の線は消す*/
}

/*スライドショー全体を囲むブロック*/
#mainimg {
	overflow-x: hidden;
	position: relative;
	background: linear-gradient(transparent 20%, rgba(200, 210, 30, 1) 80%, rgba(50, 140, 56, 1) 100%);
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}
/*画像たちを囲むブロック*/
#mainimg .img {
	display: flex;

}
#mainimg .img div{
    padding: 0 1vw;
}

/*画像*/
#mainimg .img img {
    border-radius: 2em;
}

/*スライド下の英語表記のテキスト*/
#mainimg .img + p.c {
	padding: 2rem;		/*テキスト内の余白。2文字分。*/
	font-size: 1.4rem;	/*文字サイズ140%*/
}

/*スライド下の英語テキストに使うフォント。css冒頭のGoogle Fonts（Caveat）用のスタイル*/
.caveat {
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}

/*右から左へ、左から右へ、のアニメーション*/
#mainimg .rtl, #mainimg .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

#mainimg .rtl {animation-name: slide-rtl;}
#mainimg .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}


/*main
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	font-weight: 500;
	font-size: 1.8rem;
}


/*スライドショー下のテキストメッセージブロック
---------------------------------------------------------------------------*/
/*p要素に使っています*/
.message {
	line-height: 3;		/*行間を広くする*/
    text-align: center;	/*中身をセンタリング*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	.message {
        font-size:1.1em;
	}

	}/*追加指定ここまで*/


/*btn（ボタン）
---------------------------------------------------------------------------*/
.btn5-container {
	position: relative;
	margin-top: 40px;	/*ふきだしを使う場合に上の要素に食い込んでしまうので、それを回避する*/
}
a.btn5 {
	text-decoration: none;display: inline-block;
	background: linear-gradient(#c8d31f, var(--primary-color));/*背景グラデーション。#f24137からcss冒頭のprimary-colorへかけて色が変化。*/
	color: #fff;		/*文字色*/
	padding: 1rem 3rem;	/*ボタン内の余白。上下、左右へ。*/
	font-size: 1.3rem;	/*文字サイズを130%*/
	border-radius: 5px;	/*角を少しだけ丸くする*/
}

/*マウスオン時に少しだけ大きく*/
a.btn5:hover {
	transform: scale(1.02);
}

/*ふきだし*/
.btn5-container .fukidasi {
	background: #fff;	/*背景色*/
	border: 2px solid var(--primary-color);	/*枠線の幅、線種、色*/
	padding: 0.2rem 2rem;	/*ふきだし内の余白。上下、左右へ。*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当でOK。*/
	position: absolute;
	top: -30px;	/*ふきだしの位置の設定*/
    left: 50%;
    transform: translateX(-50%);
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);	/*ふきだしの影。右へ、下へ、ぼかす量、0,0,0は黒色のことで0.2は色が20%出た状態*/
	animation: jump1 2s infinite;	/*ぴょこんと上に移動するアニメーション。動きが不要ならこの１行を削除。*/
}

/*ふきだしの下の三角形の設定*/
.btn5-container .fukidasi::before {
    content: "";
    position: absolute;
    bottom: -8px;	/*配置場所*/
    left: 50%;
    transform: translateX(-50%) rotate(315deg);
    width: 10px;	/*三角形の幅*/
    height: 10px;	/*三角形の高さ*/
    background: #fff;	/*三角形の色*/
    border-left: 2px solid var(--primary-color);	/*枠線の幅、線種、色についてはcss冒頭のprimary-colorを読み込みます。*/
    border-bottom: 2px solid var(--primary-color);	/*枠線の幅、線種、色についてはcss冒頭のprimary-colorを読み込みます。*/
}

/*角をまんまるにする*/
.btn5.border-radius {
	border-radius: 100px;
}


/*２カラムレイアウト用
---------------------------------------------------------------------------*/
.news-c2 * {margin: 0;padding: 0;}

/*左側のタイトルブロック*/
.news-c2 .title {
	margin-bottom: 2rem;	/*下に2文字分のスペースを空ける*/
	text-align: center;		/*テキストをセンタリング*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.news-c2 {
		display: flex;
		gap: 2rem;
	}

	/*左側のタイトルブロック*/
	.news-c2 .title {
		margin-bottom: 0;	/*マージンのリセット*/
		text-align: left;	/*テキストを左寄せ*/
		width: 30%;			/*ブロックの幅*/
	}

	/*右側のテキストブロック*/
	.news-c2 .text {
		flex: 1;
	}
        
    aside{
        margin-top: 5px;
    }
        
    .topimg{
		width: 40%;
		float: left;
        margin-top: 1em;
        margin-bottom: 1em;
        border-radius: 1em;
        vertical-align: middle;
    }
    .live{
        text-align: center;
        margin: 2em auto;
        display: block;
        width: 500px;
        max-width: 100%;
        background: linear-gradient(#c8d31f, var(--primary-color));/*背景グラデーション。#f24137からcss冒頭のprimary-colorへかけて色が変化。*/
        color: #fff;		/*文字色*/
        padding: 1rem 3rem;	/*ボタン内の余白。上下、左右へ。*/
        font-size: 1.3rem;	/*文字サイズを130%*/
        border-radius: 1em;	/*角を少しだけ丸くする*/    
     }
        
@media screen and (min-width:1700px ) {
    .topimg{
        width: 38%;
        margin-left: 5%;
        margin-bottom: 5em;
    }
}
       
        
	}/*追加指定ここまで*/


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.news dd {
	padding-bottom: 1rem;
}

.news dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	padding: 0 1rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。約8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

.news dd a{
    text-decoration: underline;
    text-decoration-color: #999;

}

.news dt span a{
    text-decoration: none;
}

.news .icon-bg1 {
	border-color: transparent;	/*上で設定している線を透明に*/
	background: #cd0000;	/*背景色*/
	color: #fff;			/*文字色*/
}

.news .icon-bg2 {
	border-color: transparent;	/*上で設定している線を透明に*/
	background: #006acd;	/*背景色*/
	color: #fff;			/*文字色*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.news {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

/* 点滅させたい要素にこのクラスを付与する */
.new-badge {
  color: #ff6000; 
  padding: 4px 8px; 
  font-weight: bold;   
  animation: blink 2s ease-in-out infinite;
}

/* アニメーションのキーフレームを定義 */
@keyframes blink {
  0% {
    opacity: 1; /* 開始時は不透明 */
  }
  50% {
    opacity: 0; /* 50%の時点で完全に透明 */
  }
  100% {
    opacity: 1; /* 終了時は不透明に戻る */
  }
}
        
	}/*追加指定ここまで*/


/*list-c2（お問い合わせ）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-c2 .list {
    
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	padding: 1.5rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
        padding: 6rem 2rem;
	}
	.list-c2 > a .list {
		height: 100%;
	}

	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("../images/shop.webp") no-repeat center center / cover;
}

/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("../images/office.webp") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	font-weight: 400;	/*細字にする*/
	line-height: 1.2;	/*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3em;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: .25em;	/*下に空ける余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

	}/*追加指定ここまで*/


/*h4見出し内のサブテキスト（sub-text）*/
.list-c2 h4 .sub-text {
	position: relative;
	padding: 0 5rem;	/*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}
/*h4見出し内のサブテキストの左右のライン*/
.sub-text::before {left: 0;}
.sub-text::after {right: 0;}
.list-c2 h4 .sub-text::before,.list-c2 h4 .sub-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;	/*線の長さ*/
	border-top: 1px solid #fff;	/*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 1em;	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,.5);	
	transition: .5s;	
}
.list-c2 .list:hover::before {
	background: rgba(50,140,56,.9);	
}


/*フッター
---------------------------------------------------------------------------*/
footer * {margin: 0;padding: 0;}
footer ul {list-style: none;}

/*ブロック全体*/
footer {
    background:  url("../images/fbg.webp") no-repeat center top / cover;
    background-attachment: fixed;
    background-color: dimgrey;
	color: #eee;
	padding: var(--content-space);	/*フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
    position: relative;
}

@media screen and (max-width:768px) {
footer {
    background:  url("../images/fbg_sp.webp") no-repeat center top / cover;
}
}

footer::before{
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,.75);	
	transition: .5s;
    z-index: 0;
}

.footer1,.footer2{
    position: relative;
    z-index: 1;
}

/*フッター内のロゴ画像*/
footer .logo {
	width: 300px;	/*幅*/
}

/*ロゴやSNSアイコンが入ったブロック*/
footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;	/*このブロック内のボックス同士の間に空ける余白。１文字分。*/
}

/*マップが入ったブロック*/
footer div.footer2 {
    flex: 1;
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	footer {
		display: flex;
		gap: 2rem;		/*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
	}

	/*ロゴやSNSアイコンが入ったブロック*/
	footer div.footer1 {
		text-align: left;
		width: 40%;	/*幅。40%。*/
	}

	/*マップが入ったブロック*/
	footer div.footer2 {
		/*margin-bottom: 0;	下の余白をなくす*/
	}

	}/*追加指定ここまで*/


/*SNSアイコン
---------------------------------------------------------------------------*/
.sns1 {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;		/*アイコン同士のマージン的な要素。１文字分。*/
}

.sns1 i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*Google Map用
---------------------------------------------------------------------------*/
.iframe-box1 {
	width: 100%;
	height: 0;
	padding-top: 50%;
	position: relative;
	overflow: hidden;
}
.iframe-box1 iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
    padding-bottom: 10px;
    box-sizing: border-box;
}
@media screen and (max-width:768px) {
.iframe-box1 {
    padding-top: 100% !important;
}
    .iframe-box1 iframe {
    padding-bottom: 6em;
}
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.85rem;	/*文字サイズ85%*/
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: inherit;
	opacity: 0.6;	/*透明度。色を60%出す。*/
}

/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;	/*透明度。色を100%出す。*/
}

/*ulタグ（メニューの１列あたり）*/
#footermenu ul {
	margin: 0;list-style: none;
	padding: 0 2px;
	flex: 1;
}

/*メニューの見出し(title)*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}
#footermenu li + .title {
	margin-top: 1.5rem;	/*１行の中に2つ目以降の見出しがある場合に、上に少し余白を空ける*/
}


/*ハンバーガーアイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;		/*右からの配置場所*/
	top: 0px;		/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
	background: #0e211f;	/*ボタン色*/
	transform-origin: right top;
	transform: scale(1);	/*アイコンのサイズ。100%。このテンプレの場合はOnline Shopボタンと揃えてるので、基本、変更しない方がいいです。*/
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #c8d31f;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: #fff;	/*線の色*/
	transition: 0.3s;	/*線が切り替わる場合にかける時間。0.3秒。*/
}

/*以下は基本的に変更しない*/
#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*小さな画面での設定*/
.small-screen #menubar_hdr {
	display: flex;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 400px;		/*ブロックの幅。お好みで。*/
	height: 100%;
	padding: 100px var(--content-space) 50px;		/*ブロック内の余白。上に100px、左右についてはcss冒頭のcontent-spaceを読み込む、下に50px。*/
	background: linear-gradient(#c8d31f, var(--primary-color));
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}

.small-screen #menubar {display: none;}

/*メニュー１個あたり*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
	padding: 1.5vh 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
}

@media screen and (max-width:768px) {
.small-screen #menubar a {
	font-size:1.1em;
}
}

/*子メニュー（ドロップダウンメニュー）*/
.small-screen #menubar ul ul a {
	border: none;
	padding: 0;
    margin-left: 3.8rem;	/*左に空けるスペース*/
}

/*ドロップダウンのアイコン*/
a.ddmenu::before {
	font-weight: bold;
	content: "\f078";		/*このアイコンを使う*/
	margin-right: 0.3em;	/*アイコンとメニューテキストとの間に空けるスペース。0.5文字分。*/
	transform: scale(0.7);	/*アイコンを70%のサイズに*/
	display: inline-block;
}
a.ddmenu {cursor: default;}

.icons{
    height: 1.8em;
    margin-right: .8em;
    position: relative;
    top:-1px;
}

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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: linear-gradient(#c8d31f, var(--primary-color));
	color: var(--primary-inverse-color);
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*bg1背景色（「お客様の声」ブロックで使用）
---------------------------------------------------------------------------*/
.bg1 {
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}


/*sectionの両サイドの余白を相殺するスタイル
---------------------------------------------------------------------------*/
.margin-lr0 {
	margin: 0 calc(-1 * var(--content-space));
}

.newstext{
    margin: 2em 0;
    font-size:1.1em;
    line-height: 2em;
    
}

.prev{
    float:left;
}

.next{
    float:right;
}


/*プライバシーポリシー
---------------------------------------------------------------------------*/

.contentbox{
    text-align: justify;
    margin: auto;
    margin-bottom: 3em;
    display: block;
    max-width: 100%;
    padding: 1em 2em;
    box-sizing: border-box;
    border:1px solid #999;
    border-radius: 0.25em;
    background-color: #fefef9
}

.line{
    background: linear-gradient(to right, #c8d31f, var(--primary-color)) no-repeat bottom / 100% 10%;
}

.contentbox h1{
    line-height: 1.4em;
    padding-bottom: .75em;
}

.contentbox h3{
    font-size:1.2em;
    background: linear-gradient(to right, #c8d31f, var(--primary-color)) no-repeat bottom / 100% 10%;
}

.contentbox dl {
  display: grid;
  grid-template-columns: 150px 1fr; /* 1列目を150px、2列目を残りの幅で */
  width: 100%;
}

.contentbox dt {
  padding: 8px;
  border-bottom: 1px solid #ccc;
  background-color: #f0f0f0;
  font-weight: bold;
}

.contentbox dd {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
.contentbox dl {
    display: block; /* Gridレイアウトを解除してブロック要素に */
  }

.contentbox dt,.contentbox dd {
    display: block; /* dtとddを縦並びにする */
    width: 100%;
    box-sizing: border-box; /* paddingとborderを幅に含める */
  }
  
.contentbox dt {
    border-bottom: none; /* 縦並びなので下線は不要に */
    padding: 2px 8px;
  }
  
.contentbox dd {
    border-bottom: 1px solid #ccc; /* 項目ごとに下線を引く */
  }
}

/*お問い合わせフォーム
---------------------------------------------------------------------------*/

#contactform{
    margin: auto;
    margin-bottom: 3em;
    display: block;
    width: 1000px;
    max-width: 100%;
    padding: 1em 2em;
    box-sizing: border-box;
    border:1px solid #999;
    border-radius: 0.25em;
    background-color: #fefef9;
}
#contactform input {
    border:1px solid #999;
    border-radius: 0.25em;
    max-width: 76%;
    font-size: 1.1em;
    box-sizing: border-box;
}
#contactform input[type="text"],input[type="tel"],input[type="email"],input[type="date"]  {
    width: 30em;
	height:1.5em;
    padding:1em .5em;
    -webkit-appearance: none;
}
#contactform input[type="date"]  {
	width:10em;
}
#contactform textarea {
    font-size: 1.1em;
	padding:.25em .5em;
	width:100%;
    max-width:100%;
    height:20em;
	line-height:1.8em;
    -webkit-appearance: none;
    border:1px solid #999;
    border-radius: 0.25em;
    box-sizing: border-box;
	}
#contactform input[type="submit"] {
	-webkit-appearance: none;
    color:#fff;
    padding: .4em .8em;
    background: linear-gradient(#c8d31f, var(--primary-color));
    transition: .6s;
    border: none;
	}
#contactform input[type="submit"]:hover {
    opacity:.6;
	}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #c8d31f !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
        
}/*追加指定ここまで*/

@media screen and (max-width:1200px ) {
    .topimg{
        display: none !important;
    }
}        
	
