@charset "utf-8";



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


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


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}


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


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}


/*slide1のキーフレーム設定（footer背景に使用）
---------------------------------------------------------------------------*/
@keyframes slide1 {
	0% {background-position: center bottom;}
	50% {background-position: 50px bottom;}
	100% {background-position: center bottom;}
}


/*spin（回転するキーフレーム）
---------------------------------------------------------------------------*/
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

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

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

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

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


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	-webkit-text-size-adjust: none;
	line-height: 2;
	overflow-x: hidden;
}

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

/*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 {
	margin-top: var(--global-space);
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	/*color: inherit;*/
	transition: 0.3s;
}

@media (hover: hover) {
  /*マウスオン時*/
  a:hover {
    text-decoration: none;
    opacity: 0.9;
  }
}


/*コンテナー（サイト全体を囲むブロック）
コンテンツ内容が少なくてもフッターが画面下に配置される為の指示なので変更不要。
---------------------------------------------------------------------------*/
#container {
	height: 100vh;
	display: flex;
	flex-direction: column;
}


/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: 0 var(--global-space);	/*上下、左右へのコンテンツ内の余白。左右の余白についてはcss冒頭のglobal-spaceを読み込みます。*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;					/*ヘッダーの高さ*/
	padding: 0 var(--global-space);
	font-optical-sizing: auto;
	font-weight: 700;
}

/*
  ロゴの仕様
  正方形の場合 .square 付与： （PC）110px x 110px （SP）50px x 50pxのサイズで設置する
  横長の場合 クラス追加なし： （PC）300px x 80px （SP）200px x 50px 以下のサイズで設置する
*/
.h-logo a {display: block;text-decoration: none;}
.h-logo img {
  display: block;
  max-height: 50px;/*縦長ロゴ画像がはみ出さないように*/
}
.h-logo {
	margin: 0;
  padding: 0;
	width: 200px;
}
/*正方形の場合*/
.h-logo.square {
  width: 50px;
  height: 50px;
}
.h-logo.square img {
  max-height: inherit;
}

/*ロゴをテキストで使用する場合*/
.h-logo.no-img {
  font-size: 1.5rem;
  font-weight: 500;
	letter-spacing: 0.1em;
  line-height: 1.5;
}


@media screen and (min-width:900px) {
	/*ヘッダーブロック*/
	header {
		height: 120px;	/*ヘッダーの高さ*/
	}
	/*ロゴ*/
	.h-logo {
		width: 300px;	/*ロゴ画像の幅*/
	}
  .h-logo img {
    max-height: 80px;/*縦長ロゴ画像がはみ出さないように*/
  }
  /*正方形の場合*/
  .h-logo.square {
    width: 110px;
    height: 110px;
  }

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


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*メニューブロック全体の設定*/
	header > nav > ul {
		display: flex;		/*横並びにする*/
		font-size: 0.85rem;	/*文字サイズ。85%。*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;
    text-decoration: none;
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	}/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン（メニュー入れ子の場合なので不使用）
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	padding: 0.3em 1em;
	margin-top: 4px;
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::after {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-left: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}

.ddmenu_parent > ul {
  padding: 20px;
  border-radius: 15px;
}

/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;
	animation: animation1 0.2s both;
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
	margin: 2rem;
}
/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	margin: 1rem 0;
	border-radius: 5px;
}
.small-screen #menubar a {
	padding: 1rem 2rem;
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 5px;
	right: 10px;
	width: 50px;
	height: 50px;
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	border-radius: 50%;
}

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

	/*３本バーを囲むブロック*/
	#menubar_hdr {
		top: 34px;
	}

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


/*マウスオン時に120%にする*/
#menubar_hdr:hover {
	transform: scale(1.2);
}

/*×アイコンになった場合にサイズを大きくする*/
#menubar_hdr.ham {
	width: 80px;	/*幅*/
	height: 80px;	/*高さ*/
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {top: 50%;transform: translateY(-50%);}
#menubar_hdr div span:nth-child(3) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {opacity: 0;}
#menubar_hdr.ham div span:nth-child(3) {top: 50%;transform: translateY(-50%) rotate(-45deg);}

/*サイドの問い合わせボタン
---------------------------------------------------------------------------*/
.top-bt-contact {
}
.top-bt-contact a {
  position: fixed;
  top: 170px;
  right: 7px;
  z-index: 3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 20px 10px;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.top-bt-contact ._text {
  letter-spacing: 0.1em;
  margin-top: 5px;
}

/*スライダー部2カラムに
---------------------------------------------------------------------------*/
.top-2col-container {
  display: flex;
  flex-wrap: wrap;
}
.top-2col-main {
  width: 100%;
}
.top-2col-side {
  display: flex;
  flex-direction: column;
  gap: 15px 3%;
  width: 100%;
}

/*トップのスライド下のバナー*/
ul.slide-btm_banner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2%;
  list-style: none;
  margin: 15px auto;
}
.slide-btm_banner li {
  width: 32%;
}
.slide-btm_banner li img {
  width: 100%;
  height: auto;
}

/*レンタカー事業者検索*/
.business-serch {
  padding: 15px 30px;
  border-radius: 10px;
}
.business-serch ._ttl {
  margin: 0 0 10px;
  font-size: clamp( 16px, calc( 14.536585365853659px + 0.3902439024390244vw ), 20px );
}
.business-serch dl {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.business-serch dl dt {
  font-size: clamp( 14px, calc( 13.268292682926829px + 0.1951219512195122vw ), 16px );
}
.business-serch .business-list dd {
  margin-bottom: 15px;
}

/*事業者ログイン*/
.business-login {
  padding: 15px 30px 20px;
  border-radius: 10px;
}
.business-login ._ttl {
  margin: 0 0 10px;
  font-size: 16px;
}
@media screen and (min-width:900px) {
  .top-2col-container {
    padding: 24px;
    border-radius: 15px;
    gap: 3%;
  }
  .top-2col-side {
    flex-direction: row;
  }
  .top-2col-side .business-serch {
    width: 70%;
  }
  .business-serch dl {
    flex-direction: row;
    gap: 3%;
  }
  .business-serch dl ._set {
    width: 48%;
  }
  .top-2col-side .business-login {
    width: 27%;
  }
}
@media screen and (min-width:1360px) {
  .top-2col-container {
    gap: 3%;
  }
  .top-2col-main {
    width: 70%;
  }
  .top-2col-side {
    flex-direction: column;
    width: 27%;
  }
  .business-serch dl {
    flex-direction: column;
  }
  .business-serch dl ._set {
    width: 100%;
  }
  .top-2col-side .business-serch {
    width: 100%;
  }
  .top-2col-side .business-login {
    width: 100%;
  }
}

/*パンくず
---------------------------------------------------------------------------*/
.breadcrumb {
  margin: 10px 0;
}

/*mainの中にある場合*/
main .breadcrumb {
  margin: 0;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 0 1em;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.2;
  gap: 0 1em;
  margin: 0.5em 0;
}
.breadcrumb li:not(:last-child)::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}

/*main
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	padding: 1vw 0; /* mainの上部余白を小さく調整 */
}


/*Title
---------------------------------------------------------------------------*/
/*h2(見出し)要素*/
main .main-ttl {
	font-size: 1.6rem;
	font-weight: 500;
  margin: 0 0 2rem;
}
/*枠付きh2タイトル*/
main .main-ttl.box1 {
  letter-spacing: 0.1em;
	padding: 0.5rem;
  text-align: center;
	margin-bottom: 2rem;
}

/*.main-ttl内の小文字*/
main .main-ttl .small {
	display: block;
	font-weight: normal;	/*文字の太さを標準に。100〜900の数値での指定も可能です。*/
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}

/*h3(見出し)要素*/
main h3 {
	font-weight: 500;	/*文字の太さ。100〜900で指定ができます。*/
}

.ttl01 {/*記事タイトル*/
  border-bottom: none;
  font-size: 1.5rem;/*24px*/
  }
.ttl02 {/*一覧の記事タイトル*/
  font-size: 1.125rem;/*18px*/
  font-weight: 500;
  line-height: 1.5;
}
.ttl02 a {
  text-decoration: none;
}
.blog-sub-ttl {/*ブログカテゴリータイトル*/
  font-size: 1.25rem;/*20px*/
  font-weight: 500;
  margin-top: 0;
  }
.blog-ttl {/*お知らせ詳細*/
  position: relative;
  font-size: 1.75rem;/*28px*/
  padding-bottom: 1rem;
  margin: 0 0 2rem;
  width: 100%;
}
/*2カラム時のタイトルのみ*/
.main-ttl.w1 {
  margin: 0;
}

@media screen and (min-width:900px) {
  main .main-ttl {
    margin: 0 0 3rem;
  }
}


/*style1（アクセント画像）
---------------------------------------------------------------------------*/
main .style1 {
	position: relative;
	font-weight: normal;	/*文字の太さを標準に。100〜900の数値での指定も可能です。*/
	margin-bottom: 2rem;	/*下に２文字分のスペース*/
}

main .style1::before {
	content: "";
	background: url("../images/bg2.svg") repeat-x left bottom / auto 6px;	/*アクセント用画像を指定。6pxは高さで、下のheightと数字を合わせます。*/
	display: block;
	position: absolute;
	left: 0px;
	top: 2em;		/*上から２文字分の所に表示。ここを0pxにしておくとテキストの上に出ます。*/
	width: 102px;	/*表示させる幅。お好みで変更して下さい。*/
	height: 6px;	/*高さ。上のbackgroundの最後の数字と合わせます。*/
}


/*pointアイコン
---------------------------------------------------------------------------*/
/*pointブロック全体*/
.point {
	order: -1;
	width: 20vw;	/*幅*/
	height: 20vw;	/*高さ*/
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.8rem;		/*文字サイズを80%*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く*/
	line-height: 1.2;		/*行間を狭く*/
	position: relative;
}

/*回転させる場合の指定*/
.point.spin::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	animation: spin 30s linear infinite;	/*30s（30秒）が１回転する速度です。お好みで変更して下さい。*/
}

/*テキストブロック*/
.point span {
	position: relative;
  z-index: 1;
}
/*連番振る*/
.point_num-wrap {
  counter-reset: point_num 0;
}
.point_num-wrap .point span._num {
  position: relative;
  display: block;
  font-size: 2rem;
}
.point_num-wrap .point span._num::before {
  counter-increment: point_num 1;
  content: counter(point_num) ' ';
}


	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*pointブロック*/
	.point {
		width: 10vw;
		height: 10vw;
	}
	
	}/*追加設定ここまで*/


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}



/*list-free（レイアウトフリー用）
---------------------------------------------------------------------------*/
/*.list-free * {margin: 0;padding: 0;}*/

/*list-freeボックス*/
.list-free {
  margin-top: 1rem;
	display: flex;
  flex-direction: column;
	gap: 5vw;
}
.list-free + .list-free {
  margin-top: 10vw;
}

/*bg1,bg2背景の中にある最後のlist-freeの下マージンをなくす
.bg1 .list-free:last-of-type,
.bg2 .list-free:last-of-type {
	margin-bottom: 0;
}*/

/*テキストブロック*/
.list-free .text {
  align-self: flex-start;
	flex: 1;
}

/*h3見出し*/
.list-free .list-free-ttl {
	margin-top: 0;
  margin-bottom: 0;
	letter-spacing: 0.1em;
	font-size: 1.5rem;
  position: relative;	/*カギカッコを絶対配置する為に必要な指定*/
}

/*縦書きスタイル*/
.list-free .vertical-text {margin: auto;}
.list-free .vertical-text::before,
.list-free .vertical-text::after {
	content: "";
	position: absolute;
	width: 20px;	/*カギカッコの幅。お好みで。*/
	height: 50px;	/*カギカッコの高さ。お好みで。*/
}

/*bg1背景上で枠線の色のみ変更*/
.bg1 .list-free .vertical-text::before,
.bg1 .list-free .vertical-text::after {}

.list-free .vertical-text::before {
	top: -15px;
	left: -15px;
	border-right: none;		/*右の線は消す*/
	border-bottom: none;	/*下の線は消す*/
}

.list-free .vertical-text::after {
	bottom: -15px;
	right: -15px;
	border-left: none;	/*左の線は消す*/
	border-top: none;	/*上の線は消す*/
}

/*画像ブロック*/
.list-free .image {
	position: relative;
}
.list-free .image img {
	box-shadow: 0px 10px 40px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかす量。0,0,0は黒のことで0.1は色が10%出た状態。。*/
	margin-bottom: 1rem;	/*画像の下に空けるマージン。２枚以上画像を配置した場合に間のスペースになります。*/
}

/*iframeを使う場合の設定（shop.htmlのGoogleMapに使用）*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/*画像の上にポイントアイコンを置いた場合の設定*/
.list-free .image.order3 .point {
	position: absolute;
	left: -20px;
	top: -20px;
}
.list-free .image.order1 .point {
	position: absolute;
	right: -20px;
	top: -20px;
}

/*画像ブロック内のdivタグ。テキストを囲むブロックです。*/
.list-free .image > div {
	font-size: 0.7rem;
	padding: 1rem 2rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*list-freeボックス*/
	.list-free {
		flex-direction: row;		/*縦並びから横並びにする*/
		align-items: flex-start;	/*中のボックス類を上に寄せる*/
	}
	/*画像ブロック*/
  .list-free .image {
    width: 50%;
  }
    
	.list-free .vertical-text {
		writing-mode: vertical-rl;	/*縦書きの指定。*/
		text-orientation: upright;	/*文字の向き*/
		padding: 1rem 0.5rem;	/*上下、左右へのh3内の余白*/
	}
	
	/*画像ブロックが３番目（右側）になった場合に画面右側いっぱいまで広げる*/
	.list-free .image.order3 {
		margin-right: calc(-1 * var(--global-space));
	}
	.list-free .image.order3 img,
  .list-free .image.order3 video,
  .list-free .image.order3 iframe {
		border-radius: 30px 0px 0px 30px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
	}
	
	/*画像ブロックが１番目（左側）になった場合に画面左側いっぱいまで広げる*/
	.list-free .image.order1 {
		margin-left: calc(-1 * var(--global-space));
	}
	.list-free .image.order1 img,
  .list-free .image.order1 video,
  .list-free .image.order1 iframe {
		border-radius: 0px 30px 30px 0px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
	}

	/*その他（汎用向け）お好みでもっと追加して使ってもOK*/
	.list-free .w1 {width: 30%;}
	.list-free .w2 {width: 50%;}
  .list-free .w3 {width: 100%;}
	.list-free .order1 {order: 1;}
	.list-free .order2 {order: 2;}
	.list-free .order3 {order: 3;}
	.list-free .align-self-start {align-self: flex-start;}
	.list-free .align-self-center {align-self: center;}
	.list-free .align-self-end {align-self: flex-end;}

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

/*1カラムにする場合*/
.list-free.c1 {
  flex-direction: column-reverse;
  gap: 1vw;
}
.list-free.c1 .text,
.list-free.c1 .image {
  width: 100%;
}
.list-free.c1 .image {
  text-align: center;
}
.list-free.c1 .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 100%;
}

@media screen and (min-width:600px) {
  .list-free.c1 {
    flex-direction: column;
  }
  .list-free.c1 .text-wrap {
    flex-direction: row;
    gap: 5vw;
  }
}


/*2・3カラム（main-contents、sub-contents設定）
---------------------------------------------------------------------------*/
/*main-contentsブロック*/
.main-contents {
	margin-bottom: 2vw;	/* footerの上余白を縮小（元：var(--global-space) = 7vw） */
}

/*サイドバー内のh3要素(見出し)*/
.sub-contents h3 {
	display: block;
	margin: 0 0 1rem;
	border-radius: 5px 5px 0px 0px;
	padding: 0.5rem;
  font-size: 1.125rem;
}
.sub-contents > nav + h3 {
  margin: 2rem 0 1rem;
}
/*メニュー１個あたり*/
.submenu a {
	display: block;
  text-decoration: none;
	padding: 0.5rem 1rem;
}

/*メニュー１個あたり（子メニュー以外）*/
.submenu > li {
  font-size: 0.875rem;
}

@media screen and (min-width:900px) {
  main.column {
    display: flex;
    justify-content: space-between;
    gap: 5vw;
  }

  /*main-contentsブロック*/
  .main-contents {
    margin-bottom: 0;
    /*order: 2;*/
    flex: 1;
  }
  /*sub-contentsブロック*/
  .sub-contents {
      width: 240px;
    }
}

/*サイドバーの検索リストタイトルの飾り*/
span._ttl-l-bd {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 10px;
  line-height: 1.4;
  margin: 5px 0;
}
span._ttl-l-bd::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.4em;
  border-radius: 2px;
}
/*サイドバーの検索リストボックス*/
.sub-contents .search-menu {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width:900px) {
  /*サイドメニュー固定*/
  .sub-contents ._fixed {
    position: sticky;
    top: 120px;
  }
}

/*検索結果 事業者一覧
---------------------------------------------------------------------------*/
/*検索結果の項目名タイトル*/
.search-ttl {
  padding: 0.5em 1em;
}
/*事業者一覧*/
.business-serch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2%;
  list-style: none;
  margin: 0;
}
/*事業者カード*/
.business-serch-list .result-item {
  border-radius: 5px;
  padding: 2rem;
  position: relative;
  line-height: 1.4;
  margin: 0;
  width: 100%;/*1列に*/
}
/*詳細ページにリンクする矢印*/
.business-serch-list .result-item a.link-detail {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 5px 0 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.business-serch-list .result-item ._inner {}
.business-serch-list .result-item ._inner p {
  margin: 0
}
.business-serch-list .result-item ._inner ._separate {
  display: flex;
  gap: 1em;
  padding: 1rem 0;
}
.business-serch-list .result-item ._inner ._separate:last-of-type {
  border-bottom: 0;
}
.business-serch-list .result-item ._inner ._separate ._item {
  font-weight: bold;
  width: 20%;
}
.business-serch-list .result-item ._inner ._separate ._detail {
  width: 80%;
}
.business-serch-list .result-item ._inner ._separate .name-txt {/*店名など*/
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
}
/*PR*/
.business-serch-list .result-item ._inner ._separate .pr-txt p {
  font-size: 14px;
}
/*URL*/
.business-serch-list .result-item ._inner ._separate .url-txt {
  overflow-wrap: anywhere;
}

@media screen and (min-width:1200px) {
  /*事業者カード*/
  .business-serch-list .result-item {
    width: 49%;/*2列に*/
  }
}
@media screen and (min-width:1580px) {
  /*事業者カード*/
  .business-serch-list .result-item {
    width: 32%;/*3列に*/
  }
}


/*Button
---------------------------------------------------------------------------*/
.btn1 {
  width: 100%;
  margin: 30px auto 0;
}
.btn1 a {/*メインカラー*/
  border-radius: 4px;
	display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
	padding: 10px 5px;
}
@media screen and (min-width: 900px) {
  .btn1 {
    max-width: 360px;
    margin: 30px auto 0;
  }
}

.btn-login {/*メインカラー*/
  border-radius: 4px;
	display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
	padding: 10px 5px;
  width: 100%;
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	flex: 1;
  margin: 0 auto;
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem;	/*dt内の余白*/
}

/*記事(dd)設定*/
.new dd {
	padding: 0 1rem 1rem;
}
.new dd a {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: 0.3s;
}

/* 有効なリンクには色を付ける */
.new dd a:not([style*="pointer-events: none"]) {
  color: #0066cc;
  padding-right: 40px;
}

/* リンクが無効な場合（記事内容が空の場合）はホバー効果と矢印を表示しない */
.new dd a[style*="pointer-events: none"] {
  /*padding-right: 0;*/
  cursor: default !important;
}

.new dd a[style*="pointer-events: none"]:hover {
  opacity: 1;
  background-color: transparent;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

/* 有効なリンクにのみホバー時の効果を適用 */
.new dd a:not([style*="pointer-events: none"]):hover {
  color: #0099ff;
  text-decoration: underline;
}

/* 有効なリンクにのみ矢印アイコンを追加 */
.new dd a:not([style*="pointer-events: none"])::before {
  border: #ccc 1px solid;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50px;
  transition: 0.3s;
  opacity: 0.6;
}
.new dd a:not([style*="pointer-events: none"])::after {
  content: "";
  display: block;
  position: absolute;
  right: 13px;
  top: 50%;
  border-top: #ccc 2px solid;
  border-right: #ccc 2px solid;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

@media screen and (min-width: 900px) {
  .new dd a:not([style*="pointer-events: none"]) {
    padding-right: 50px;
  }
  .new dd a:not([style*="pointer-events: none"])::before {
    width: 36px;
    height: 36px;
  }
  .new dd a:not([style*="pointer-events: none"])::after {
    right: 16px;
  }
}
@media (hover: hover) {
  .new dd a:not([style*="pointer-events: none"]):hover::before {
    border: var(--col-main) 1px solid;
  }
  .new dd a:not([style*="pointer-events: none"]):hover::after {
    border-top: var(--col-main) 2px solid;
    border-right: var(--col-main) 2px solid;
  }
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 1rem;
}

/*tr（１行分）タグ設定*/
.ta1 tr {}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
  font-weight: 500;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;
	text-align: left;
}

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

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;
		}

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

/*top用営業時間*/
.tbl-top {
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
.tbl-top th,
.tbl-top td {
  text-align: center;
  padding: 12px 6px;
  line-height: 1.4;
}
/*topの表の下のフリーエリア*/
.tbl-top-note {
  margin-top: 1em;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/*layout02
---------------------------------------------------------------------------*/
.list-grid1 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);	/*２列にする。*/
	gap: 1.25rem;
	margin-bottom: var(--global-space);
}

@media screen and (min-width:900px) {
  .list-grid1.c5 {
    grid-template-columns: repeat(3, 1fr);	/*3列にする*/
    gap: 1.875rem;
  }
  .list-grid1.c4 {
    grid-template-columns: repeat(3, 1fr);	/*3列にする*/
    gap: 1.875rem;
  }
}

@media screen and (min-width:1400px) {
  .list-grid1.c5 {
    grid-template-columns: repeat(5, 1fr);	/*4列にする*/
    gap: 1.25rem;
  }
  .list-grid1.c4 {
    grid-template-columns: repeat(4, 1fr);	/*4列にする*/
    gap: 2rem;
  }
  .list-grid1.c3 {
    grid-template-columns: repeat(3, 1fr);	/*3列にする*/
    gap: 2.5rem;
  }
  .list-grid1.c2 {
    grid-template-columns: repeat(2, 1fr);	/*2列にする*/
    gap: 2.5rem;
  }

}

/*layout02　list
---------------------------------------------------------------------------*/
.list-grid1 .list * {
  margin: 0;
  /*padding: 0;*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}

/*ボックス１個あたり*/
.list-grid1 .list {
  display: grid;
  position: relative;
	padding: 1rem;
  grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;
	margin-bottom: 0.5rem;
}

/*NEWアイコン*/
.list .newicon {
	position: absolute;
	left: -5px;
	top: -10px;
	font-size: 0.75rem;
	width: 5em;
	line-height: 5em;
	border-radius: 50%;
	text-align: center;
}
/*カテゴリーアイコン*/
.list-grid1 .list .post-info .news-icon,
.list-grid1 .list .post-info .new-mark {
  padding: 2px 10px;
}

/*layout05 ギャラリー
---------------------------------------------------------------------------*/
.list-grid1 .gallery * {
  margin: 0;
  /*padding: 0;*/
}

/*ボックス１個あたり*/
.list-grid1 .gallery {
  display: grid;
}

/*ボックス内のp要素*/
.list-grid1 .gallery p {
	font-size: 0.85rem;
	line-height: 1.5;
}

/*ボックス１個あたり*/
.list-grid1 .gallery {
	padding: 1rem;
  grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）の高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
  border-radius: 20px 0 0 0;
  overflow: hidden;
}

/*ボックス内のfigure画像*/
.list-grid1 .gallery figure {
	margin: -1rem;
	margin-bottom: 0.5rem;
}
/*写真は4：3で強制的にトリミングされる*/
/* .auto-h　が付与されたimgは除外*/
.list-grid1 .gallery img:not(.auto-h) {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery img {
  width: 100%;/*ここだけ上書き*/
  height: auto;
}

.list-grid1 .gallery img.auto-h {
  margin: 1.5rem 0 !important;
}

/*layout04
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
  counter-reset: faqtitle 0;
	padding: 0 5px;
}
.faq > div {
  margin-bottom: 0.5rem;
}

/*質問*/
.faq dt {
	position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5em;
  min-height: 60px;
  line-height: 1.5;
  padding-right: 1rem;
}

.faq dt ._head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
}
.faq dt ._head ._txt {
  white-space: nowrap;
}
.faq ._head span._num {
	position: relative;
	font-size: 1.125rem;
	display: block;
}
.faq ._head span._num::before {
  counter-increment: faqtitle 1;
  content: counter(faqtitle) '.';
}

/*回答*/
.faq dd {
	padding: 5px 15px;
}

/*opencloseを適用した要素のカーソル*/
.openclose-parts {
	cursor: pointer;
}

.faq dt span {text-indent: 0;}

@media screen and (min-width:900px) {
  .faq {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .faq > div {
    width: 48%;
  }
}

/*layout06 マップ
---------------------------------------------------------------------------*/
.access-info dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  margin-bottom: 5px;
}
.access-info dt::before {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100px;
}
.access-info dd {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.access-info dd ul {
  margin: 0 1.5em;
}
  
/*layout08 プライバシーポリシー
---------------------------------------------------------------------------*/
.privacypolicy-txt {
  margin: 0 auto 80px;
}

/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	padding: 2vw var(--global-space);
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
	padding: 2.5vw var(--global-space);
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*marker（マーカー風スタイル）
---------------------------------------------------------------------------*/
.marker {
	display: inline-block;
	background: linear-gradient(transparent 80%, yellow 80%);
}
h3.marker {
	font-size: 2rem;
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.bg1 .color-check, .bg1 .color-check a {color: yellow !important;}
.bg1 .look .color-check, .bg1 .look .color-check a {color: #ff0000 !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;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.bg1 .look,.bg2 .look {background: #fff;}
.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;}

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


/*Footer
---------------------------------------------------------------------------*/
footer {
	font-size: 0.875rem;
  padding: 2vw var(--global-space);
}
/*footer内をカラム化*/
.footer-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5vw;
}
footer a {text-decoration: none;}
.footermenu {
  display: flex;
  gap: 5vw;
  flex: 1;
  order: 1;
}
.footermenu ul {
  list-style: none;
}
/*メニュー１個あたり*/
.footermenu ul li {
	padding: 0 0.5rem;
}
.footer_info {
  order: 2;
}
.footer_info ._cp_info {
  line-height: 1.8;
}
.footer_info ._cp_info ._name {
  font-size: 1.125rem;
  font-weight: 500;
}
.footer_info ._cp_info ._add { font-size: 0.875rem;}
.footer_info ._cp_info ._tel { font-size: 1rem; font-weight: 500;}

/*sns*/
footer ._sns_icons {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin: 0 0 auto;
  list-style: none;
  padding-left: 0;
  order: 3;
}
footer ._sns_icons li a {
  display: block;
  font-size: 0;
  line-height: 1;
  height: 26px;
  overflow: hidden;
}
footer ._sns_icons li.icon-instagram a {
  width: 26px;
}
footer ._sns_icons li.icon-facebook a {
  width: 26px;
}
footer ._sns_icons li.icon-x a {
  width: 23px;
}
footer ._sns_icons li.icon-youtube a {
  width: 28px;
}
@media screen and (min-width:900px) {
  /*footer内をカラム化*/
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .footermenu {
    order: 2;
  }
  .footer_info {
    width: 30%;
    order: 1;
  }
  .footer_info ._cp_info ._name {
    margin-bottom: 0.5rem;
  }
}

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

/*copyrightと著作部分*/
footer .copy {
  margin-top: 0vw;
}

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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;
	right: 20px;
	bottom: 20px;
	font-size: 1.5rem;
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}


/*404
---------------------------------------------------------------------------*/
.error-container {
  margin: 60px auto;
}
.error-container h3 {
  font-size: 1.375rem;
}

/*ページネーション
---------------------------------------------------------------------------*/
.page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 40px auto;
  list-style: none;
  padding: 0;
}
.page-nav li {
  position: relative;
}
.page-nav li.omit {
  margin: 0 -3px;
}
.page-nav li.prev span {
  padding-left: 2px;
}
.page-nav li.prev span,
.page-nav li.next span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  transition: 0.3s;
}
.page-nav li.next span {
  padding-right: 2px;
}
.page-nav li.prev span::after,
.page-nav li.next span::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  transition: 0.3s;
}
.page-nav li.prev span::after {
  transform: rotate(-135deg);
}
.page-nav li.next span::after {
  transform: rotate(45deg);
}
.page-nav li._on,
.page-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
}
.page-nav li._on span {
  font-size: 1.25rem;
  font-weight: 500;
  margin: auto;
}


/*ブログ詳細
---------------------------------------------------------------------------*/
.post-info + .blog-post-container {
  margin: 20px auto 60px;
}

.blog-post-container {
  margin: 0 auto 60px;
/*  max-width: 1400px;*/
}
.blog-post-container .post-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.blog-post-container .post-info .date {
  font-size: 0.875rem;
}
.blog-post-container .eye-catch-image {
  text-align: center;
}
.blog-post-container .eye-catch-image img {/*アイキャッチ画像*/
  /*16:9で強制的にトリミングする場合
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;*/
}
/*戻るリンク*/
.prev-link {
  padding: 1rem 0;
}
.prev-link a {
  text-decoration: none;
}


/*ブログのカテゴリーアイコン
---------------------------------------------------------------------------*/
.post-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  margin: 10px 0;
  line-height: 1.2;
}
.post-info .news-icon,
.post-info .new-mark {
  border-radius: 3px;
  width: auto;
  padding: 4px 10px;
}
.post-info a {
  text-decoration: none;
}
.list .post-info {
  font-size: 0.812rem;
  margin: 10px 0 0;
}

/*WPのフリーエディターエリア
---------------------------------------------------------------------------*/
.free-edit-container {}
.free-edit-container h1,
.free-edit-container h2,
.free-edit-container h3,
.free-edit-container h4,
.free-edit-container h5,
.free-edit-container h6 {
  display: block;
  text-align: left;
  line-height: 1.3;
  margin: 0 0 1em;
  border: none;
  font-feature-settings: "palt";
}
.free-edit-container h1 {font-size: 1.625em;}
.free-edit-container h2 {font-size: 1.5em;}
.free-edit-container h3 {font-size: 1.375em;}
.free-edit-container h4 {font-size: 1.25em;}
.free-edit-container h5 {font-size: 1.125em;}
.free-edit-container h6 {font-size: 1em;}

.free-edit-container blockquote { position: relative;}
.free-edit-container blockquote p::before {
  content: '“';
  font-size: 1.25em;
  padding-right: 5px;
}
.free-edit-container blockquote p::after {
  content: '”';
  font-size: 1.25em;
  padding-left: 5px;
}

.free-edit-container :where(ul, ol, li) {
  list-style: revert;
  margin: revert;
  padding: revert;
}

/*続きを読む*/
.readmore {
  margin: 1em 0;
  text-align: center;
}
.readmore .bt-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.875rem;
  padding: 0.5em 0;
  position: relative;
  margin: 0 auto;
  width: 130px;
  cursor: pointer;
}
.readmore .bt-readmore ._txt {
  letter-spacing: 0.1em;
}
.readmore .bt-readmore i.fas {}

/*トップページ　背景要素のならび調整*/
.home main {
  padding: 20px 0;
}
.home section + section {
  margin-top: 0;
}
.home section:not(.bg1):not(.bg2) {
  padding-top: 2vw; /* topページセクション上下幅を縮小 */
  padding-bottom: 2vw; /* topページセクション上下幅を縮小 */
}
@media screen and (min-width:900px) {
  .home main {
    padding: 30px 0;
  }
  /*.home section:not(.bg1):not(.bg2) {
    padding-top: 100px;
    padding-bottom: 100px;
  }*/
}
