@charset "utf-8";


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


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


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


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #F8F6F3;			/*テンプレートの土台カラー*/
	--primary-inverse-color: #725A4C;	/*上のprimary-colorの対となる色*/
	
	--secondary-color: #544538;			/*テンプレートのサブまたはアクセントカラー*/
	--secondary-inverse-color: #fff;	/*上のsecondary-colorの対となる色*/
	
	--accent-color: #abdbe3;			/*アクセントカラー*/
	--accent-inverse-color: #fff;		/*アクセントカラーの対となる色*/
	
	--global-space: 20px;				/*主に余白の一括管理用*/
}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.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;
}


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

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

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

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

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


body {
	margin: 0;padding: 0;
	font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	line-height: 2.5;		/*行間*/
	background: #463f39;	/*背景色*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	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;}


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

/*マウスオン時*/
a:hover {
	text-decoration: none;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
header::before {
	background: url("../images/pet-taxi-bg2.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のcontents*/
header .contents {
	color: #fff;	/*文字色*/
	padding: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	background: url("../images/1.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

header .contents a {color: inherit;}

/*ロゴ、謳い文句、ロゴ上の装飾画像を囲むボックス*/
header #logo-container {
	flex: 1;
	background: rgba(66,42,22,0.8);	/*背景色。66,42,22はRGB値での色指定で0.8は色が80%出た状態。写真そのまま出したいならこの１行を削除。*/
	padding: 5px 10px 5px;		/*上、左右、下への余白*/
	position: relative;
	text-align: center;
}

/*ロゴ画像*/
header .logo img {
	display: block;
	margin: 0 auto;
	width: 250px;		/*ロゴ画像の幅。お好みで。*/
}

/*謳い文句*/
header p {
	display: block;
	font-size: 0.8rem;	/*文字サイズ80%*/
}

/*ロゴ上の装飾画像（New Open）*/
header .kazari {
	position: absolute;
	left: 5%;		/*ロゴが入ったボックスに対して左からの配置指定*/
	top: -10px;		/*ロゴが入ったボックスに対して上からの配置指定。マイナスがつくので、ボックスから飛び出る形になります。*/
	width: 140px;	/*画像の幅*/
}


/*ヘッダー下部のSCROLLアニメーション
---------------------------------------------------------------------------*/



@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down{
  position:absolute;
  bottom:50px;
  right:50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a{
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #d7157e;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #d7157e;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #d7157e;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}









/*ヘッダーメニュー（大きな画面で見た場合に左側に固定表示されるメニュー）
---------------------------------------------------------------------------*/
/*1000px未満は非表示*/
#header-menu {
	display: none;
}

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

	#header-menu {
		display: block;	/*表示させる*/
		position: fixed;z-index: 1;
		left: 0px;
		top: 100px;	/*上からの配置場所*/
	}
	
	/*メニュー１個あたり*/
	#header-menu li a {
		text-decoration: none;display: block;
		background: var(--secondary-color);		/*背景色。冒頭のsecondary-colorを読み込む。*/
		color: var(--secondary-inverse-color);	/*文字色。冒頭のsecondary-inverse-colorを読み込む。*/
		margin-bottom: 30px;					/*下に空けるスペース。メニュー同士の上下間の隙間。*/
		border-radius: 0px 100px 100px 0px;		/*角丸の指定。左上、右上、右下、左下への順。100pxの所はとりあえず大きな数字にしておけばOK。*/
		padding: 10px 30px 10px 20px;	/*ボタン内の余白。上、右、下、左への順番。*/
		font-size: 1.2rem;	/*文字サイズを120%に。*/
	}
	
	/*現在表示中のメニューの背景色と、マウスオン時共通*/
	#header-menu li.active a,
	#header-menu li a:hover {
		background: var(--accent-color);	/*css冒頭のaccent-colorを読み込む*/
	}

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


/*背景画像共通（大きな画面で見た場合に両サイドに見える画像）
---------------------------------------------------------------------------*/
.section::before {
	opacity: 0;
	transition: opacity 1s; /* 1秒かけてフェードイン/フェードアウト */
	content: '';
	position: fixed;z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.section.active::before {
	opacity: 1;
}
.section.inactive::before {
	opacity: 0;
}


/*contents（各セクションブロック直下にあるボックス）
---------------------------------------------------------------------------*/
.contents {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込む。*/
	padding: var(--global-space);			/*ボックス内の余白。冒頭のglobal-spaceを読み込む。*/
	position: relative;
	overflow-x: hidden;
}

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

	.contents,
	#gallery .gallery-box {
		max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;		/*画面の左右中央に配置*/
		overflow-x: visible;
	}

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


/*h2見出し共通*/
.contents h2 {
	margin: 0;
	line-height: 1.8;	/*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
	padding: 20px 0;	/*上下、左右への余白*/
	font-size: 1.8rem;	/*文字サイズ180%*/
	text-align: center;	/*テキストをセンタリング*/
}

/*h2内の小文字*/
.contents h2 span.hosoku {
	display: block;
	font-size: 1rem;		/*文字サイズを70%に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	padding-bottom: 0.5rem;	/*下の見出しとの間の余白。0.5文字分。*/
}


/*オープニング特別メニュー（specialブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#special::before {
	background: url('../images/pet-taxi-bg4.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のcontents*/
#special .contents {
	background: var(--accent-color) /*背景色。冒頭のaccent-colorを読み込む。*/
	url("../images/pet-kazari.png") no-repeat center top / 100%;	/*背景画像の読み込み。見出しの上にある装飾画像です。*/
	color: var(--accent-inverse-color);	/*文字色。冒頭のaccent-inverse-colorを読み込む。*/
	font-size: 1.2em;
}


/*横スライドインタイプのスライドショー（１枚目の画像のアスペクト比が反映されるタイプ）
---------------------------------------------------------------------------*/
/*3枚の画像を囲むブロック*/
.slide5 {
	position: relative;
	overflow: hidden;
}

/*３枚の画像の共通設定*/
.slide5 .slide {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	transform: translateX(100%);
	transition: transform 0.7s ease;	/*0.7sはスライドにかける時間（0.7秒）。0.7を変更する場合、main.jsのスライドショー用のコードの最後の「700」も変更する。*/
}

/*アクティブ時*/
.slide5 .slide.active {
	transform: translateX(0);
}

/*左に移動*/
.slide5 .slide.left {
	transform: translateX(-100%);
}

/*非表示*/
.slide5 .slide.hidden {
	opacity: 0;
}

/*初期表示用*/
.slide5 .slide.initial {
	transform: translateX(0);
	transition: none;
}

/*１枚目画像（変更不要）*/
.slide5 .img1 {
	position: relative;width: 100%;height: auto;
}

/*画像のクリップ*/
.slide5 .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/*現在表示されているスライドのみをクリック可能にする設定（変更不要）*/
.slide5 .slide {
	pointer-events: none;
}
.slide5 .slide.active {
	pointer-events: auto;
}

/*現在表示中のボタンブロック*/
.slide5 .slide-indicators {
    text-align: center;
	position: absolute;
	width: 100%;
	bottom: 80px;	/*ボタンの配置場所。スライドショーの画面下からの距離。*/
	left: 0px;
}

/*ボタン１個あたり*/
.slide5 .indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ccc;	/*未アクティブ時のボタン色*/
	border: 4px solid #fff;	/*枠線の幅、線種、色。*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

/*アクティブ時のボタン色*/
.slide5 .indicator.active {
    background: var(--accent-color);	/*冒頭のaccent-colorを読み込む*/
}


/*私たちのこだわり（kodawariブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#kodawari::before {
	background: url('../images/pet-taxi-bg1.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のh2見出し*/
#kodawari h2 {
	position: relative;
	padding-left: 40px;		/*左に空けるスペース。文字と画像が重ならないように適当な余白を確保。*/
	padding-right: 40px;	/*右に空けるスペース。同上。*/
}

/*見出し左右の画像の共通設定*/
#kodawari h2::before,
#kodawari h2::after {
	content: "";
	position: absolute;
	width: 80px;	/*画像の幅*/
	height: 140px;	/*画像の高さ*/
	top: -30px;		/*上からの距離*/
	background: /*画像の読み込み*/
}

/*左側の画像の追加設定*/
#kodawari h2::before {
	left: -40px;	/*左からの配置場所*/
}

/*右側の画像の追加設定*/
#kodawari h2::after {
	right: -40px;	/*右からの配置場所*/
	transform: scale(-1, 1);	/*画像を左右反転させる*/
}

/*こだわりテキストが入った背景色（bg1）*/
#kodawari .bg1 {
	background: #F0ECE5;	/*背景色*/
	padding: 20px 60px;		/*上下、左右への余白*/
	margin: 0 calc(-1 * var(--global-space));	/*両サイドの余白を相殺して幅一杯に使う*/
}

/*このボックス内のイメージ写真*/
#kodawari aside {
	margin: 0 calc(-1 * var(--global-space));	/*両サイドの余白を相殺して幅一杯に使う*/
	border-radius: 100px 100px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。普通に表示させたいならこの１行を削除。*/
	overflow: hidden;
}

/*このボックス内の余白。段落１文字目にインデント（１文字さがる）をとる。*/
#kodawari .bg1 p {
	text-indent: 1em;
}


/*お品書きメニュー（menuブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#goriyou::before {
	background: url('../images/pet-taxi-bg6.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のh2見出し*/
#goriyou h2 {
	background: var(--secondary-color);		/*背景色。冒頭のsecondary-colorを読み込む。*/
	color: var(--secondary-inverse-color);	/*文字色。secondary-inverse-colorを読み込む。*/
	padding: 20px 0;	/*上下、左右への余白*/
	margin-bottom: var(--global-space);		/*見出しの下に空ける隙間。冒頭のglobal-spaceを読み込む。*/
	border-radius: 20px 20px 20px 20px;		/*角を丸くする指定。左上、右上、右下、左下への順番*/
}

/*メニューブロック１個あたり*/
.goriyou img {display: block;}
.goriyou {
	position: relative;
	margin-bottom: var(--global-space);	/*下に空けるスペース。冒頭のglobal-spaceを読み込む。*/
}

/*メニューの下にあるテキストブロック（※スライドショーと共通）*/
.slide5 .slide .text,
.goriyou .text {
	margin: 0;
	padding: 5px;	/*ボックス内の余白*/
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	text-align: center;
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%出た状態。*/
	color: #fff;	/*文字色*/
	border-radius: 10px;
}

/*メニューの下にある吹き出し系のアイコン（※スライドショーと共通）*/
.slide5 .slide .icon-menu-point,
.goriyou .icon-menu-point {
	text-align: center;
	width: 79px;	/*幅*/
	height: 75px;	/*高さ*/
	line-height: 1.2;
	color: #fff;	/*文字色*/
	font-size: 0.8rem;	/*文字サイズ80%*/
	padding-top: 24px;	/*上に空ける余白。上下のバランスをとって下さい。*/
	position: absolute;z-index: 1;
	left: 20px;		/*左からの配備場所*/
	bottom: 40px;	/*下からの配備場所*/
	background: url("../images/f42.webp") no-repeat center center;	/*アイコン画像の読み込み*/
	transform: rotate(-20deg);	/*左に20度回転*/
}



/*ギャラリー
---------------------------------------------------------------------------*/
:root {
	--gallery-space: 120px;	/*上と下の波打った画像の高さ。お好みで調整してもらってもOKですし、下で数箇所使っている所を直接数字入力に変更されてもOKです。*/
}

/*大きな画面で見た場合に両サイドに見える画像*/
#gallery::before {
	background: url("../images/pet-taxi-bg3.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*大きな画面で見た場合に両サイドに見える画像*/
#ryoukin::before {
	background: url("../images/pet-taxi-bg3.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*大きな画面で見た場合に両サイドに見える画像*/
#contact::before {
	background: url("../images/pet-taxi-bg1.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*大きな画面で見た場合に両サイドに見える画像*/
#shop::before {
	background: url("../images/pet-taxi-bg2.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}

#kiyaku::before {
	background: url("../images/pet-taxi-bg1.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*ギャラリーブロックの上部にある固定表示されている飾り用の写真たち*/
#gallery aside {
	position: absolute;
	left: 0px;
	top: calc(-1 * var(--gallery-space));	/*本来の場所ではなく上にずらす*/
}

/*このブロック内のcontents*/
#gallery .contents {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
}

#gallery .gallery-box {
	position: relative;
	overflow: visible;
	background: var(--accent-color);		/*背景色。冒頭のaccent-colorを読み込む。*/
	color: var(--accent-inverse-color);		/*文字色。冒頭のaccent-inverse-colorを読み込む。*/
	margin: var(--gallery-space) calc(-1 * var(--global-space));
}

/*上と下の波打った画像の読み込みに関する共通設定*/
#gallery .gallery-box::before,
#gallery .gallery-box::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--gallery-space);	/*画像の高さ。上のgallery-spaceを読み込む。*/
    background-repeat: no-repeat;
    background-size: 100% 100%;
}



/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 5px;	/*画像の余白*/
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .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);}
}



/*テーブル↓
---------------------------------------------------------------------------*/

.table-01 {
    margin: 1em 0;
    position: relative;
    z-index: 2;
}
.table-01 table {
    width: 100%;
}
.table-01 table td {
    text-align: center;
    font-size: 120%;
    padding: .75em 0;
    vertical-align: middle;
    width: 50%;
}
.table-01 table .bgt-1 {
    background: #d3bd9f;
    color: #FFF;
}
.table-01 table .bgt-2 {
    background: #f4d6da;
    color: #785b5d;
}
.table-01 table .bgt-2 span {
    font-size: 80%;
}
.table-01 table .bgt-0 {
    background: #f6fbf6;
    color: #785b5d;
}
.table-01 table .bdb {
    border-bottom: 2px solid #a0a0a0;
}
.table-plus span{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    color: #785b5d;
}

.table-plus span2{
    text-align: center;
    font-size: 16px;
    line-height: 1;
    color: #785b5d;
}


.img-btm {
    margin-top: -2.5em;
    position: relative;
}


/*BOX
---------------------------------------------------------------------------*/

.box10 {
    padding: 1em 1em;
    margin: 0 auto;
    width: auot;
    background: #81cac4 ;/*背景色*/
    border: 1px solid #eeeeee;/*枠線*/
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
    font-size: 1.0em;
    color:#fff;/*文字色*/
}
.box10 p {
    margin: 0; 
    padding: 0;
}


/*BOX
---------------------------------------------------------------------------*/

.box11 {
    padding: 1em 1em;
    margin: 0 auto;
    width: auot;
    background: #fae0cf ;/*背景色*/
    border: 1px solid #eeeeee;/*枠線*/
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
    font-size: 1.2em;
    color:#7b5f56;/*文字色*/
}
.box10 p {
    margin: 0; 
    padding: 0;
}


.box16 {
    padding: 0.2em 0.5em;
    margin: 20px auto;
    width:100%;
    color: #565656;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
}
.box16 p {
    margin: 0; 
    padding: 0;
    font-weight: bold;
    color: #5c4138;
    font-size: 14px;
    text-align: ;
}
.box16 span {
    margin: 0; 
    padding: 0;
    font-weight: bold;
    color: #5c4138;
    font-size: 18px;
}




.box11{
    padding: 0.5em 1em;
    margin: 100px auto;
    width:100%;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box11 p {
    margin: 0; 
    padding: 0;
    color: #333;
    
}

.box11 h2{
    margin: 0; 
    padding: 0;
    font-size: 20px;
    color: #fff;
    text-align: center ;
    background: #1a395d;
}

.box11 h3{
    margin: 0 auto; 
    width:80%;
    font-size: 18px;
    color: #fff;
    text-align: center ;
    background: #557592;
}


@media screen and (max-width:700px) {

.box11 {
 width: 100%; /* ボックス幅 */}
}


a.btn_23 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: auto;
	margin: auto;
	padding: 5px 30px;
	font-size: 1.2em;
	font-weight: bold;
	white-space: nowrap;
	border-radius: 15px;
	border: 2px solid #005e7e;
	color: #333;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
}
a.btn_23::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0,94,126);
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}
a.btn_23:hover::before {
	transform: translateX(0);
}
a.btn_23:hover {
	color: #fff;
}


.box-design6 {
  margin: 20px auto;
  padding: 20px;
  border: 2px solid #4c9ac0;
  position: relative;
  border-radius:10px;
}
.box-design6 p {
  background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 95%, #4c9ac0 100%);
    background-size: 8px 100%, 100% 2.5em;
    line-height: 2.5;
    font-size: 14px;
    text-align: left;
    margin: 0;
}

@media screen and (max-width:600px) {

 .box-design6 p {
        font-size: 0.8em;
  }
 }

/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	color: #e58882;			/*アイコンの色*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	text-align: left;
	border: 1px solid #e4e2d7;		/*枠線の幅、線種、色*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #d7157e;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
	color: #333;			/*テキスト*/
	    background-image: url(../images/faq_a.png);
        background-repeat : no-repeat;
	text-align: left;
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

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

/*計算機*/

 .custom-calculator {
        margin : 20px ;
        background: rgba(0, 0, 0, 0.1);
        border: solid 1px #dcdcdca4;
      border-right: solid 4px #dcdcdca4;
      border-bottom: solid 4px #dcdcdca4;
      border-radius: 10px;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 300px;
    }
    .custom-calculator-display {
        width: 100%;
        height: 50px;
        font-size: 3em;
        text-align: right;
        margin-bottom: 10px;
    }
    .custom-calculator-buttons {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .custom-calculator-button {
        width: 60px;
        height: 50px;
        font-size: 1.2em;
        font-weight: bold;
        background-color: #e4c6c8;
        cursor: pointer;
        border-color: rgba(247,246,235, 0.3);
         border-radius: 20px;
        transition: background-color 0.2s;
    }
    .custom-calculator-operator {
        background-color: #c7e6e2;
        font-size: 1.5em;
        color: black;
        font-weight: bold;
    }
    .custom-calculator-operator:active {
        background-color: #fff;
    }
    .custom-calculator-clear {
        background-color: #de82a7;
        color: white;
        font-weight: bold;
    }
    .custom-calculator-clear:active {
        background-color: #fff;
        color: #de82a7; 
    }
    .custom-calculator-equal {
        background-color: #00aebd;
        color: white;
        font-weight: bold;
    }
    .custom-calculator-equal:active {
        background-color: #fff;
    }
    .custom-calculator-button:active {
        background-color: #fff;
    }

/*tableっぽいdl（「お知らせ」「店舗情報」「メニュー（menu.html）」）
---------------------------------------------------------------------------*/
dl.table {
	display: grid;
	grid-template-columns: 100px auto;	/*dtとddを横並びにし、dtの幅を100pxに、残りは自動。*/
	margin-bottom: 50px;
	line-height: 2;
}
dl.table dt,
dl.table dd {
	padding: 1rem;
}

/*menu.htmlのテキストのみのお品書きに使用*/
dl.table.reverse {
	grid-template-columns: auto 100px;	/*dtとddを横並びにし、dtの幅を自動に、残りは10px。*/
}
dl.table.reverse dd {
	text-align: right;
}

/*menuブロックのみ、奇数番目のメニューの行に薄く背景色をつける*/
#menu dl.table dt:nth-of-type(odd),
#menu dl.table dd:nth-of-type(odd) {
	background: rgba(0,0,0,0.04);
}






/* 🔹 追加: モーダル全体のスタイル */
#confirmModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    width: 300px;
    text-align: center;
}

/* 🔹 追加: ボタンのスタイル */
#modalContent button {
    margin: 10px;
}










/*店舗情報
---------------------------------------------------------------------------*/

/*「店舗情報」「マップ」「SNSアイコン」を囲むブロック*/
#shop .shop-data {
	border-radius: 30px 30px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。500pxの数字は適当に大きければOK。*/
	background: url('../images/ppp.png') no-repeat center center / cover;	/*背景画像の読み込み*/
	color: #fff;	/*文字色*/
	padding: 100px 50px 50px;	/*上、左右、下へのボックス内余白*/
}

/*「所在地」などが記載されているtableっぽいブロック（基本設定はこの上の「tableっぽいdl（「お知らせ」「店舗情報」共通）」で行っています。）*/
#shop .shop-data dl.table {
	border-top: 1px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、255,255,255は白のことで0.3は色が30%出た状態。下と揃えておく。*/
}
#shop .shop-data dl.table dt,
#shop .shop-data dl.table dd {
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、255,255,255は白のことで0.3は色が30%出た状態。上と揃えておく。*/
}

/*Follow Usの画像*/
#shop h3 img {
	display: block;
	width: 150px;	/*画像の幅*/
	margin: 0 auto;
}

/*Google Map*/
#shop iframe {
	width: 100%;
	height: 500px;	/*高さ*/
}

/*ソーシャルメディアのアイコン*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	justify-content: center;
	gap: 10px;	/*アイコン同士のマージン的な要素*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.8rem;		/*文字サイズ80%*/
	text-align: center;		/*内容をセンタリング*/
}

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


/*dddd*/
.dddd a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.7);
	text-align: center;
	padding: 0.5rem 1rem;
	color: #ccc;
}
.dddd a::before {
	font-family: "Font Awesome 6 Free";
	content: "";
	font-weight: bold;
	margin-right: 0.5em;
}


/*ボタン
---------------------------------------------------------------------------*/

a.btn_27 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width:80%;
	margin: auto;
	padding: 5px 30px;
	font-size: 1.2em;
	font-weight: bold;
	white-space: nowrap;
	background-color: rgb(244, 214, 218);
	border: 2px solid #de82a7;
	border-radius: 15px 15px 15px 15px;
	color: #fff;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
}
a.btn_27::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(244, 214, 218);
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}

a.btn_27:hover::before {
	background-color: #fff;
	transform: translateX(0);
}
a.btn_27:hover {
	color: #666;
}



/*ボタン36
---------------------------------------------------------------------------*/

a.btn_36 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width:60%;
	margin: auto;
	padding: 2px 5px;
	font-size: 1.2em;
	font-weight: bold;
	white-space: nowrap;
	background-color: rgb(129, 202, 196);
	border: 2px solid #5dc1cf;
	border-radius: 15px 15px 15px 15px;
	color: #fff;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
}
a.btn_36::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(244, 214, 218);
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}

a.btn_36:hover::before {
	background-color: #fff;
	transform: translateX(0);
}
a.btn_36:hover {
	color: #666;
}





/*btn1（お品書きメニューブロックの一番下で使っているシンプルボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;text-decoration: none;
	text-align: center;
	border: 1px solid #333;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボタン内の余白*/
	font-size: 1.2rem;		/*文字サイズ120%*/
	border-radius: 3px;		/*角を少しだけ丸く*/
}

/*右側の矢印アイコン設定*/
.btn1 a::after {
	transition: 0.3s;
	font-family: "Font Awesome 6 Free";
	content: "\f054";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-left: 10px;		/*アイコンとテキストとの間に空けるスペース*/
}	

/*マウスオン時に矢印の左側のスペースを広くする*/
.btn1 a:hover::after {
	margin-left: 15px;
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#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;}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;				/*ブロック内の余白。上、左右、下への順番。*/
	background: var(--secondary-color);		/*背景色。css冒頭のsecondary-colorを読み込みます。*/
	color: var(--secondary-inverse-color);	/*文字色。css冒頭のsecondary-inverse-colorを読み込みます。*/
	animation: opa1 1s both;				/*opa1を実行する。1sは1秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid var(--secondary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭のsecondary-inverse-colorを読み込みます。*/
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	/*メニュー内の余白。上下、左右へ。*/
}

/*マウスオン時*/
.small-screen #menubar a:hover {
	color: var(--secondary-color);				/*文字色。css冒頭のsecondary-colorを読み込みます。*/
	background: var(--secondary-inverse-color);	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
}

/*電話リンク設定
---------------------------------------------------------------------------*/
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;				/*右からの配置場所指定*/
	top: 0px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	transform: scale(2);	/*デフォルトで準備したサイズの２倍。お好みで。*/
	transform-origin: right top;
	mix-blend-mode: exclusion;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: #ff0000;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}

/*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;		/*下からの配置場所指定*/
}





/*マニュアルページ用
---------------------------------------------------------------------------*/
.manual {
	background: #fff;
	color: #333;
	padding: 5vw;
}
.manual pre.look {display: block;}
.manual .look {background: #eee;}
.manual h3 {
	line-height: 2;
	display: inline-block;
	background: linear-gradient(transparent 60%, yellow);
}
.manual h3 + p {margin-top: -0.5rem;}
.manual.margin-left {padding-left: 300px;}

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

	.manual.margin-left {padding-left: 4vw;}

	}/*画面幅900px以上の追加指定ここまで*/

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.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: #000;border: 1px solid #fff;border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.color-check, .color-check a {color: var(--accent-color);}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

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

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}/*画面幅900px以上の追加指定ここまで*/
	
/*電話メールリンク
---------------------------------------------------------------------------*/

@media only screen and (min-width: 641px){
.footarea-sp{display: none;}
}
@media only screen and (max-width: 640px){
#container {padding-bottom: calc( 104 * 100vw / 465 );}
.page-top{display: none;}
.footarea-sp{
position: fixed;
width: 100%;
left: 0;
bottom: 0;
z-index: 10;
padding-top: calc( 8 * 100vw / 465 );
padding-left: calc( 5 * 100% / 465 );
padding-right: calc( 5 * 100% / 465 );
border:solid calc( 1 * 100vw / 465 ) #cdcdcd;
height: calc( 104 * 100vw / 465 );
box-sizing: border-box;
background-color: rgba( 12,0,25 , 0.5 );
}
.footarea-sp p{
text-align: center;
font-size: calc( 13 * 100vw / 465 );
color:#d8d17e;
text-shadow: 1px 1px 1px rgba( 0 , 0 , 0 , .95 );
line-height: 1;
}
.footarea-sp ul{
display: flex;
justify-content: space-between;
margin-top: calc( 6 * 100vw / 465 );

}
.footarea-sp li{
width: 100%;
border-radius: calc( 4 * 100vw / 465 );
height: calc( 70 * 100vw / 465 );
list-style: none;
box-sizing: border-box;

}
.footarea-sp a span{
display: block;
line-height: 1;}
.footarea-sp a span:nth-of-type(1){
font-size: calc( 13 * 100vw / 465 );
color: #dfd87f;
text-shadow: 1px 1px 1px rgba( 0 , 0 , 0 , .95 );}
.footarea-sp a span:nth-of-type(2){
font-size: calc( 16 * 100vw / 465 );
color: #fff;
margin-top: calc( 8 * 100vw / 465 );}
.footarea-sp li:nth-child(1){
.footarea-sp li:nth-child(1) a{
background:url(
background:url(' auto no-repeat;
padding-left: calc( 56 * 100% / 222 );}
.footarea-sp li:nth-child(2){
border:solid 1px #fff;
background-color: #fff;}
.footarea-sp li:nth-child(2) a{
background:url(
background:url(' auto no-repeat;
padding-left: calc( 54 * 100% / 222 );}
}

	
	
	
	
	
	
	
	
	
	
