@charset "utf-8";
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&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; /*上のbase-colorの対となる色（主にテキストカラー）*/
  --primary-color: #1C1C1C; /*テンプレートのメインまたはアクセントカラー*/
  --primary-inverse-color: #fff; /*上のprimary-colorの対となる色*/
  --content-space: 2rem; /*余白の一括管理用。2rem＝2文字分。*/
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  :root {
    --content-space: 1rem; /*余白の一括管理用。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 Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; /*フォント種類（ゴシック）*/
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-text-size-adjust: none;
  background: var(--base-color) url("../images/kazari2.png") no-repeat right 50px / 40%; /*背景色はcss冒頭のbase-colorを読み込み。背景画像の読み込み。右側、上から50pxの場所に幅40%で配置。*/
  color: var(--base-inverse-color); /*文字色。css冒頭のbase-inverse-colorを読み込みます。*/
  line-height: 2; /*行間*/
  overflow-x: hidden;
}
body#content {
  background: none;
  padding: 0;
  /*height: 0vh;
  background: url(../images/2.jpg) no-repeat center center / cover;*/
}
#mainimg-box h1 {
  margin: 0;
}
@media (max-width:575px) {
  #mainimg-box h1 {
    margin: 62px 0;
  }
}
/*見出し*/
h1 {
  font-size: 3em;
  font-weight: 900;
  color: #FFFFFF;
}
@media screen and (max-width:600px) {
h1 {
  font-size: 2em;
}
}
h3 {
  font-size: 2em;
}
h4 {
  font-size: 1.5em;
}
h5 {
  font-size: 1.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（ゼロ）*/
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
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を読み込む。*/
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto
}
@media (min-width:576px) {
  .container, .container-sm {
    max-width: 540px
  }
}
@media (min-width:768px) {
  .container, .container-md, .container-sm {
    max-width: 720px
  }
}
@media (min-width:992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px
  }
}
@media (min-width:1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px
  }
}
@media (min-width:1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px
  }
}
/*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) + 0px); /*右上ボタンとロゴが重ならないようヘッダー上部の余白に70px上乗せ*/
  }
} /*追加指定ここまで*/
/*ロゴ*/
#logo {
  margin: 0;
  padding: 0;
}
#logo img {
  display: inline-block;
  width: 350px; /*ロゴの幅*/
}
@media screen and (max-width:600px) {
  #logo img {
    width: 140px; /*ロゴの幅*/
  }
}
/*ヘッダー右側の「Online Shop」のボックス
---------------------------------------------------------------------------*/
#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: var(--primary-color); /*背景色。css冒頭のprimary-colorを読み込みます。*/
  color: var(--primary-inverse-color); /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
  padding: 0 2rem; /*上下、左右へのボタン内の余白*/
}
/*mainimg（4枚構成の横スライドショー）
---------------------------------------------------------------------------*/
/*h2見出し*/
#mainimg-box h2 {
  font-size: 4vw; /*文字サイズ*/
  line-height: 1.6; /*行間を少し狭く*/
  font-weight: 200; /*文字の太さ。細く。*/
  position: relative; /*カギカッコを絶対配置する為に必要な指定*/
  display: inline-block;
  padding: 1rem 3rem; /*上下、左右への見出し内の余白。カギカッコとテキストの間のバランスを調整します。*/
}
@media (max-width:575px) {
#mainimg-box h2 {
  padding: 5rem 3rem; /*上下、左右への見出し内の余白。カギカッコとテキストの間のバランスを調整します。*/
}
}
#mainimg-box p {
  margin-top: 0;
  font-size: 2vw; /*文字サイズ*/
  line-height: 1.6; /*行間を少し狭く*/
  font-weight: 200; /*文字の太さ。細く。*/
  position: relative; /*カギカッコを絶対配置する為に必要な指定*/
  display: inline-block;
  padding: 0rem 3rem 1rem; /*上下、左右への見出し内の余白。カギカッコとテキストの間のバランスを調整します。*/
  font-style: italic;
}
/*h2内の色がついた部分（span）*/
#mainimg-box h2 span {
  color: #745399; /*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%, var(--primary-color) 20%); /*背景グラデーション。上から20%までは透明で、それ以外はcss冒頭のprimary-colorを読み込みます。最後にも20%とする事で境界がくっきりします。これがないとなめらかグラデーションに。*/
  color: var(--primary-inverse-color); /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}
/*画像たちを囲むブロック*/
#mainimg .img {
  display: flex;
}
/*画像*/
#mainimg .img img {
  padding: 0 1vw; /*上下の余白はなし、左右への余白は画面の1%*/
}
/*スライド下の英語表記のテキスト*/
#mainimg .img + p.c {
  padding: 2rem; /*テキスト内の余白。2文字分。*/
  font-size: 1.4rem; /*文字サイズ140%*/
}
.main-bg {
  background-image: url(../images/ttl.jpg);
  margin: 0 -4rem;
  padding: 0 4rem;
  height: 55vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-bg2 {
  background-image: url(../images/ttl2.jpg);
  margin: 0 -4rem;
  padding: 0 4rem;
  height: 55vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-bg3 {
  background-image: url(../images/ttl3.jpg);
  margin: 0 -4rem;
  padding: 0 4rem;
  height: 55vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-bg4 {
  background-image: url(../images/ttl4.jpg);
  margin: 0 -4rem;
  padding: 0 4rem;
  height: 55vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-bg5 {
  background-image: url(../images/ttl5.jpg);
  margin: 0 -4rem;
  padding: 0 4rem;
  height: 55vh;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:600px) {
.main-bg2 {
    background-position-x: -260px;
}
}
@media (max-width:575px) {
  .main-bg, .main-bg2, .main-bg3, .main-bg4 {
    height: 40vh;
    margin: 0 -2rem;
    padding: 0 2rem;
  }
 .main-bg5 {
    height: 40vh;
    margin: 0 -2.5rem;
    padding: 0 2rem;
  }
}
/*スライド下の英語テキストに使うフォント。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: 900; /*太さ。200$301C900まで指定可能。大きいほど太くなります。*/
  font-size: 1.5rem; /*文字サイズ180%。*/
}
/*スライドショー下のテキストメッセージブロック（「素敵なキッチンアイテムや暮らしを彩る雑貨が揃うお店」）
---------------------------------------------------------------------------*/
/*p要素に使っています*/
.message {
  line-height: 3; /*行間を広くする*/
  margin-bottom: 3em;
}
/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {
  .message {
    text-align: center; /*中身をセンタリング*/
  }
} /*追加指定ここまで*/
/*btn5（「今だけ10%OFF　オンラインショップはこちら」ボタン）
---------------------------------------------------------------------------*/
.btn5-container {
  position: relative;
  margin-top: 40px; /*ふきだしを使う場合に上の要素に食い込んでしまうので、それを回避する*/
}
a.btn5 {
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(#505050, var(--primary-color)); /*背景グラデーション。#4ed139から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;
}
/*「商品ラインナップ」ブロック
---------------------------------------------------------------------------*/
.list-grid .list * {
  margin: 0;
  padding: 0;
}
/*ブロック全体を囲むブロック*/
.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /*2列にする指定。3列にしたければrepeat(3, 1fr)とする。*/
  gap: 1rem; /*ブロックの間に1文字分のスペースを空ける*/
}
/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {
  /*ブロック全体を囲むブロック*/
  .list-grid {
    grid-template-columns: repeat(4, 1fr); /*4列にする指定。2列にしたければrepeat(2, 1fr)とする。*/
    gap: 2rem; /*ブロックの間に2文字分のスペースを空ける*/
  }
} /*追加指定ここまで*/
/*ボックス１個あたり*/
.list-grid .list {
  display: grid;
  position: relative;
  grid-template-rows: auto 1fr; /*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
  overflow: hidden;
}
/*ボックス内のp要素*/
.list-grid .list p {
  font-size: 0.85rem; /*文字サイズを85%に*/
  line-height: 1.5; /*行間を少し狭く*/
}
/*「商品ラインナップ」ブロックで使っているアイコン（「NEW」や「UP」）
---------------------------------------------------------------------------*/
/*共通*/
.list-grid .icon-bg1, .list-grid .icon-bg2 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  overflow: hidden;
  position: absolute;
  left: 0px; /*左からの配置場所*/
  top: 0px; /*上からの配置場所*/
  font-size: 0.85rem; /*文字サイズ。85%*/
  width: 10rem; /*幅。10文字分*/
  padding-top: 2rem; /*テキストの上にとる余白。2文字分。*/
  text-align: center; /*テキストをセンタリング*/
  transform: rotate(-45deg) translate(-2.4rem, -3rem); /*反時計回りに45度回転、X軸に-2.4文字分、Y軸に-3文字分移動。*/
  box-shadow: 0px 5px #fff; /*ボックスの影。アイコンと写真の間の境界線として使っています。*/
}
/*icon-bg1（サンプルだと「NEW」）*/
.list-grid .icon-bg1 {
  background: #ff3535; /*背景色*/
  color: #fff; /*文字色*/
}
/*icon-bg2（サンプルだと「UP」）*/
.list-grid .icon-bg2 {
  background: #1c31ff; /*背景色*/
  color: #fff; /*文字色*/
}
/*スライドアップの装飾画像
---------------------------------------------------------------------------*/
/*画像ボックス*/
/*.bg-slideup {
    background-image: url("../images/6.jpg");	
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
	height: 50vh;	
	border-radius: 0px 15vw 0px 15vw;	
}*/
.bg-slideup {
  position: relative;
  width: 100%;
  height: 50vh; /* 高さはそのまま */
  border-radius: 0px 15vw 0px 15vw; /* 角丸指定 */
  overflow: hidden; /* 角丸を効かせるため必須 */
}
.bg-slideup video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* 全体を埋める */
}
/*「お客様の声」ブロック
---------------------------------------------------------------------------*/
.list-yoko-scroll * {
  margin: 0;
  padding: 0;
}
/*横スクロールブロック全体*/
.list-yoko-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox用 */
  scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
}
.list-yoko-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge用 */
}
/*ブロック内の１個あたり*/
.list-yoko-scroll .list {
  width: 60%; /*ブロック１個の幅。お好みで変更して下さい。*/
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 0 2rem; /*ブロック内の余白。上下は0（ゼロ）、左右に2文字分。*/
  position: relative;
  display: flex;
  flex-direction: column;
}
/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {
  /*ブロック内の１個あたり*/
  .list-yoko-scroll .list {
    width: 28%; /*ブロック１個の幅。お好みで変更して下さい。*/
  }
} /*追加指定ここまで*/
/*画像*/
.list-yoko-scroll figure {
  width: 80px; /*幅。お好みで。*/
  border-radius: 50%; /*円形にする*/
  overflow: hidden;
  margin: 0 auto 1rem;
}
/*h4見出し*/
.list-yoko-scroll h4 {
  text-align: center; /*中央に配置*/
}
/*テキストブロック*/
.list-yoko-scroll .text {
  flex: 1;
  font-size: 0.85rem; /*文字サイズ85%*/
  line-height: 1.5; /*行間*/
}
/*２カラムレイアウト用（下のお知らせブロック用で使っています）
---------------------------------------------------------------------------*/
.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;
  }
} /*追加指定ここまで*/
/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.news dd {
  padding-bottom: 1rem;
}
/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.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; /*枠線の幅、線種、色*/
}
/*icon-bg1。サンプルテンプレートでは「重要」と書いてあるマーク*/
.news .icon-bg1 {
  border-color: transparent; /*上で設定している線を透明に*/
  background: #cd0000; /*背景色*/
  color: #fff; /*文字色*/
}
/*icon-bg2。サンプルテンプレートでは「サービス」と書いてあるマーク*/
.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; /*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
  }
} /*追加指定ここまで*/
/*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: 5rem 2rem; /*上下、左右へのボックス内の余白*/
  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;
  }
  .list-c2 > a .list {
    height: 100%;
  }
} /*追加指定ここまで*/
/*左側ボックスの背景*/
.list-c2 .list.image1 {
  background: url("../images/2.jpg") no-repeat center center / cover;
}
/*右側ボックスの背景*/
.list-c2 .list.image2 {
  background: url("../images/1.jpg") no-repeat center center / cover;
}
/*h4見出し*/
.list-c2 h4 {
  font-weight: 200; /*細字にする*/
  line-height: 1.2; /*行間を狭く*/
}
/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
  display: block;
  font-size: 3rem; /*文字サイズ。3倍。*/
  padding-top: 1.5rem; /*上に空ける余白*/
  padding-bottom: 3rem; /*下に空ける余白*/
}
/*画面幅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: 0.85rem; /*文字サイズ85%*/
}
/*マウスオン用のアニメーション*/
.list-c2 .list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
  transition: transform 0.3s 0.1s; /*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c2 .list:hover::before {
  transform: translateY(100%); /*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}
/*フッター
---------------------------------------------------------------------------*/
footer * {
  margin: 0;
  padding: 0;
}
footer ul {
  list-style: none;
}
/*ブロック全体*/
footer {
  background: #222; /*背景色*/
  color: #ccc; /*文字色*/
  padding: var(--content-space); /*フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
}
@media screen and (max-width:500px) {
 footer {
    background: #222;
    color: #ccc;
    padding: 2rem 2rem 6rem;
}
}
/*フッター内のロゴ画像*/
footer .logo {
  width: 250px; /*幅*/
}
/*ロゴや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: 56.25% !important; /*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
  position: relative;
  overflow: hidden;
}
.iframe-box1 iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
/*フッターメニュー設定（※お取り寄せグルメテーマにて使用）
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#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つ目以降の見出しがある場合に、上に少し余白を空ける*/
}
/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr * {
  margin: 0;
  padding: 0;
}
.pr a {
  text-decoration: none;
  display: block;
  background: #555;
  color: #ccc;
  text-align: right;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}
.pr a::before {
  font-family: "Font Awesome 6 Free";
  content: "\e2ca";
  font-weight: bold;
  margin-right: 0.5em;
}
/* ポップアップ共通（最初は非表示） */
#popup, #popup2-overlay {
  display: none;
}
/* ポップアップ内の要素リセット */
#popup * {
  margin: 0;
  padding: 0;
}
/* ポップアップウィンドウ */
#popup {
  font-size: 0.9rem;
  padding: 1rem 2rem;
  position: fixed;
  z-index: 1001;
  right: 30px;
  bottom: 130px;
  width: 300px;
  background: #fff;
  color: #555;
  border: 3px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
/* ポップアップ内のリンク */
#popup a {
  color: #1c1c1c;
  text-decoration: none;
  display: block;
  text-align: center;
}
#popup a:hover {
  color: #ff0000;
}
/* 閉じるボタン */
#popup .close-btn {
  display: block;
  width: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #ff0000;
  color: #fff;
  cursor: pointer;
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
  display: none; /* デフォルトは非表示 */
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 0px; /*右からの配置場所*/
  top: 0px; /*上からの配置場所*/
  width: 70px; /*ボタンの幅*/
  height: 70px; /*ボタンの高さ*/
  background: #2b2b2b; /*ボタン色*/
  transform-origin: right top;
  transform: scale(1); /*アイコンのサイズ。100%。このテンプレの場合はOnline Shopボタンと揃えてるので、基本、変更しない方がいいです。*/
}
/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
  background: #745399;
}
/*ハンバーガーアイコンの線*/
#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: 70%; /*ブロックの幅。お好みで。*/
  height: 100%;
  padding: 100px var(--content-space) 50px; /*ブロック内の余白。上に100px、左右についてはcss冒頭のcontent-spaceを読み込む、下に50px。*/
  background: var(--primary-color); /*背景色。css冒頭の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: 1rem 2rem; /*メニュー内の余白。上下に１文字分、左右に２文字分。*/
}
#menubar a.line {
    border: none;
    
    padding: 0;
}
/*子メニュー（ドロップダウンメニュー）*/
.small-screen #menubar ul ul a {
  border: none;
  padding: 0;
  margin-left: 3.8rem; /*左に空けるスペース*/
}
/*ドロップダウンのアイコン*/
a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  content: "\f078"; /*このアイコンを使う*/
  margin-right: 0.3em; /*アイコンとメニューテキストとの間に空けるスペース。0.5文字分。*/
  transform: scale(0.7); /*アイコンを70%のサイズに*/
  display: inline-block;
}
a.ddmenu {
  cursor: default;
}
/*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: 50px; /*下からの配置場所指定*/
  font-size: 1.5rem; /*文字サイズ*/
  background: var(--primary-color); /*背景色。css冒頭のprimary-colorを読み込みます。*/
  color: var(--primary-inverse-color);
  width: 60px; /*幅*/
  line-height: 60px; /*高さ*/
  border-radius: 50%; /*円形にする*/
}
@media screen and (max-width:500px) {
.pagetop a {
  right: 20px; /*右からの配置場所指定*/
  bottom: 100px; /*下からの配置場所指定*/
}
}
/*svgアニメーション（大きな背景ラインアニメーション）
このcssの他、htmlの一番下の「SVGアニメーション」というブロックで指定があります。
---------------------------------------------------------------------------*/
#kazari1 {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke: #fff; /*これは線の色ではありません。線色はsvg画像を直接編集して下さい。*/
  stroke-width: 30; /*svgをなぞった際の線幅をここで設定*/
  width: 100%;
}
/*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));
}
/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual {
  background-image: none;
}
.manual {
  padding: 5vw;
}
.manual h2, .manual h3 {
  margin-top: 3rem;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.color-check, .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;
}
/*----------------------------
spacer
-----------------------------*/
/* padding */
.pt0 {
  padding-top: 0px !important;
}
.pt5 {
  padding-top: 5px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt15 {
  padding-top: 15px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt25 {
  padding-top: 25px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pt40 {
  padding-top: 40px !important;
}
.pt50 {
  padding-top: 50px !important;
}
.pt60 {
  padding-top: 60px !important;
}
.pt70 {
  padding-top: 70px !important;
}
.pt80 {
  padding-top: 80px !important;
}
.pt90 {
  padding-top: 90px !important;
}
.pt100 {
  padding-top: 100px !important;
}
.pb0 {
  padding-bottom: 0px !important;
}
.pb5 {
  padding-bottom: 5px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb25 {
  padding-bottom: 25px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pb60 {
  padding-bottom: 60px !important;
}
.pb70 {
  padding-bottom: 70px !important;
}
.pb80 {
  padding-bottom: 80px !important;
}
.pb90 {
  padding-bottom: 90px !important;
}
.pb100 {
  padding-bottom: 100px !important;
}
.pl0 {
  padding-left: 0px !important;
}
.pl5 {
  padding-left: 5px !important;
}
.pl10 {
  padding-left: 10px !important;
}
.pl15 {
  padding-left: 15px !important;
}
.pl20 {
  padding-left: 20px !important;
}
.pl25 {
  padding-left: 25px !important;
}
.pl30 {
  padding-left: 30px !important;
}
.pl40 {
  padding-left: 40px !important;
}
.pl50 {
  padding-left: 50px !important;
}
.pl80 {
  padding-left: 80px !important;
}
.pr0 {
  padding-right: 0px !important;
}
.pr5 {
  padding-right: 5px !important;
}
.pr10 {
  padding-right: 10px !important;
}
.pr15 {
  padding-right: 15px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pr25 {
  padding-right: 25px !important;
}
.pr30 {
  padding-right: 30px !important;
}
.pr40 {
  padding-right: 40px !important;
}
.pr50 {
  padding-right: 50px !important;
}
/* margin */
.mt0 {
  margin-top: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.ml0 {
  margin-left: 0px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.mr50 {
  margin-right: 50px !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;
}
.text-center {
  text-align: center;
}
/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none;
  }
  .pc {
    display: block;
  }
} /*追加指定ここまで*/
/* 縦中央寄せ */
/*.shell {
  display: flex;
  align-items: center;   
}*/
.shell {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.shell.reverse {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.shell.nowrap-x {
  flex-wrap: nowrap;
}
.shell.left {
  justify-content: flex-start;
}
.shell.center, .shell.x-center {
  justify-content: center;
}
.shell.right {
  justify-content: flex-end;
}
.shell.fill, .shell.fill-x, .shell.split {
  justify-content: space-between;
}
.shell.equalize {
  justify-content: space-around;
}
.shell.top {
  align-items: flex-start;
}
.shell.middle, .shell.y-center {
  align-items: center;
}
.shell.baseline {
  align-items: baseline;
}
.shell.bottom {
  align-items: flex-end;
}
.shell > .grow-x {
  flex-grow: 1;
}
.stretch, .grow-y {
  align-self: stretch;
}
.solo, .full {
  width: 100%;
}
.duo, .half {
  width: 50%;
}
.trio, .one-third {
  width: calc(100% / 3);
}
.two-thirds {
  width: calc(100% / 3 * 2);
}
.quad, .quarter {
  width: 25%;
}
.three-quarters {
  width: 75%;
}
.penta, .twenty {
  width: 20%;
}
.thirty {
  width: 30%;
}
.forty {
  width: 40%;
}
.sixty {
  width: 60%;
}
.seventy {
  width: 70%;
}
.eighty {
  width: 80%;
}
.solo.gutter, .full.gutter {
  width: 98%;
  margin: 1em 1%;
}
.duo.gutter, .half.gutter {
  width: 48%;
  margin: 1em 1%;
}
.trio.gutter, .one-third.gutter {
  width: calc(94% / 3);
  margin: 1em 1%;
}
.two-thirds.gutter {
  width: calc(97% / 3 * 2);
  margin: 1em 1%;
}
.quad.gutter, .quarter.gutter {
  width: 23%;
  margin: 1em 1%;
}
.three-quarters.gutter {
  width: 73%;
  margin: 1em 1%;
}
.penta.gutter, .twenty.gutter {
  width: 18%;
  margin: 1em 1%;
}
.thirty.gutter {
  width: 28%;
  margin: 1em 1%;
}
.forty.gutter {
  width: 38%;
  margin: 1em 1%;
}
.sixty.gutter {
  width: 58%;
  margin: 1em 1%;
}
.seventy.gutter {
  width: 68%;
  margin: 1em 1%;
}
.eighty.gutter {
  width: 78%;
  margin: 1em 1%;
}
.centering {
  text-align: center;
}
.centering > * {
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Universal Padding Class --- as you like */
.pd-around {
  padding: 1.5em 1.5em;
}
.pd-side {
  padding: 0 1.5em;
}
.pd-top-bottom {
  padding: 1.5em 0;
}
.pd-right {
  padding-right: 1.5em;
}
.pd-left {
  padding-left: 1.5em;
}
/* clearfix --- for use together with legacy float layout */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
/*** Media Query ***/
@media only screen and (max-width: 899px) {
  .shell.break900:not(.step) {
    flex-direction: column;
  }
  .shell.break900 > .solo, .shell.break900 > .full, .shell.break900 > .duo, .shell.break900 > .half, .shell.break900 > .trio, .shell.break900 > .one-third, .shell.break900 > .two-thirds, .shell.break900 > .quad, .shell.break900 > .quarter, .shell.break900 > .three-quarters, .shell.break900 > .penta, .shell.break900 > .twenty, .shell.break900 > .thirty, .shell.break900 > .forty, .shell.break900 > .sixty, .shell.break900 > .seventy, .shell.break900 > .eighty {
    width: 100%;
  }
  .shell.break900 > .solo.gutter, .shell.break900 > .full.gutter, .shell.break900 > .duo.gutter, .shell.break900 > .half.gutter, .shell.break900 > .trio.gutter, .shell.break900 > .one-third.gutter, .shell.break900 > .two-thirds.gutter, .shell.break900 > .quad.gutter, .shell.break900 > .quarter.gutter, .shell.break900 > .three-quarters.gutter, .shell.break900 > .penta.gutter, .shell.break900 > .twenty.gutter, .shell.break900 > .thirty.gutter, .shell.break900 > .forty.gutter, .shell.break900 > .sixty.gutter, .shell.break900 > .seventy.gutter, .shell.break900 > .eighty.gutter {
    width: 98%;
    margin: 1em 1%;
  }
  .shell.step {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .shell.step > .duo, .shell.step > .half, .shell.step > .trio, .shell.step > .one-third, .shell.step > .two-thirds, .shell.step > .quad, .shell.step > .quarter, .shell.step > .three-quarters, .shell.step > .penta, .shell.step > .twenty, .shell.step > .thirty, .shell.step > .forty, .shell.step > .sixty, .shell.step > .seventy, .shell.step > .eighty {
    width: 50%;
  }
  .shell.step > .duo.gutter, .shell.step > .half.gutter, .shell.step > .trio.gutter, .shell.step > .one-third.gutter, .shell.step > .two-thirds.gutter, .shell.step > .quad.gutter, .shell.step > .quarter.gutter, .shell.step > .three-quarters.gutter, .shell.step > .penta.gutter, .shell.step > .twenty.gutter, .shell.step > .thirty.gutter, .shell.step > .forty.gutter, .shell.step > .sixty.gutter, .shell.step > .seventy.gutter, .shell.step > .eighty.gutter {
    width: 48%;
    margin: 1em 1%;
  }
}
/* Mobile Single Column ( like 7-10 inch Tablet ) */
@media only screen and (max-width: 768px) {
  .container, .wide-container {
    padding: 0 0.3em;
  } /* as you like */
  .shell.break768:not(.step) {
    flex-direction: column;
  }
  .shell.break768 > .solo, .shell.break768 > .full, .shell.break768 > .duo, .shell.break768 > .half, .shell.break768 > .trio, .shell.break768 > .one-third, .shell.break768 > .two-thirds, .shell.break768 > .quad, .shell.break768 > .quarter, .shell.break768 > .three-quarters, .shell.break768 > .penta, .shell.break768 > .twenty, .shell.break768 > .thirty, .shell.break768 > .forty, .shell.break768 > .sixty, .shell.break768 > .seventy, .shell.break768 > .eighty {
    width: 100%;
  }
  .shell.break768 > .solo.gutter, .shell.break768 > .full.gutter, .shell.break768 > .duo.gutter, .shell.break768 > .half.gutter, .shell.break768 > .trio.gutter, .shell.break768 > .one-third.gutter, .shell.break768 > .two-thirds.gutter, .shell.break768 > .quad.gutter, .shell.break768 > .quarter.gutter, .shell.break768 > .three-quarters.gutter, .shell.break768 > .penta.gutter, .shell.break768 > .twenty.gutter, .shell.break768 > .thirty.gutter, .shell.break768 > .forty.gutter, .shell.break768 > .sixty.gutter, .shell.break768 > .seventy.gutter, .shell.break768 > .eighty.gutter {
    width: 98%;
    margin: 1em 1%;
  }
  .shell:not(.keep) > .solo, .shell:not(.keep) > .full, .shell:not(.keep) > .duo, .shell:not(.keep) > .half, .shell:not(.keep) > .trio, .shell:not(.keep) > .one-third, .shell:not(.keep) > .two-thirds, .shell:not(.keep) > .quad, .shell:not(.keep) > .quarter, .shell:not(.keep) > .three-quarters, .shell:not(.keep) > .penta, .shell:not(.keep) > .twenty, .shell:not(.keep) > .thirty, .shell:not(.keep) > .forty, .shell:not(.keep) > .sixty, .shell:not(.keep) > .seventy, .shell:not(.keep) > .eighty {
    width: 100%;
    margin: 0;
  }
  .shell:not(.keep) > .solo.gutter, .shell:not(.keep) > .full.gutter, .shell:not(.keep) > .duo.gutter, .shell:not(.keep) > .half.gutter, .shell:not(.keep) > .trio.gutter, .shell:not(.keep) > .one-third.gutter, .shell:not(.keep) > .two-thirds.gutter, .shell:not(.keep) > .quad.gutter, .shell:not(.keep) > .quarter.gutter, .shell:not(.keep) > .three-quarters.gutter, .shell:not(.keep) > .penta.gutter, .shell:not(.keep) > .twenty.gutter, .shell:not(.keep) > .thirty.gutter, .shell:not(.keep) > .forty.gutter, .shell:not(.keep) > .sixty.gutter, .shell:not(.keep) > .seventy.gutter, .shell:not(.keep) > .eighty.gutter {
    width: 98%;
    margin: 1em 1%;
  }
  .shell.step {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .shell.step > .duo, .shell.step > .half, .shell.step > .trio, .shell.step > .one-third, .shell.step > .two-thirds, .shell.step > .quad, .shell.step > .quarter, .shell.step > .three-quarters, .shell.step > .penta, .shell.step > .twenty, .shell.step > .thirty, .shell.step > .forty, .shell.step > .sixty, .shell.step > .seventy, .shell.step > .eighty {
    width: 50%;
  }
  .shell.step > .duo.gutter, .shell.step > .half.gutter, .shell.step > .trio.gutter, .shell.step > .one-third.gutter, .shell.step > .two-thirds.gutter, .shell.step > .quad.gutter, .shell.step > .quarter.gutter, .shell.step > .three-quarters.gutter, .shell.step > .penta.gutter, .shell.step > .twenty.gutter, .shell.step > .thirty.gutter, .shell.step > .forty.gutter, .shell.step > .sixty.gutter, .shell.step > .seventy.gutter, .shell.step > .eighty.gutter {
    width: 48%;
    margin: 1em 1%;
  }
  .shell.keep-half:not(.keep), .shell.keep-half:not(.keep) {
    flex-direction: row;
  }
  .shell.keep-half:not(.keep) > .solo, .shell.keep-half:not(.keep) > .full, .shell.keep-half:not(.keep) > .duo, .shell.keep-half:not(.keep) > .half, .shell.keep-half:not(.keep) > .trio, .shell.keep-half:not(.keep) > .one-third, .shell.keep-half:not(.keep) > .two-thirds, .shell.keep-half:not(.keep) > .quad, .shell.keep-half:not(.keep) > .quarter, .shell.keep-half:not(.keep) > .three-quarters, .shell.keep-half:not(.keep) > .penta, .shell.keep-half:not(.keep) > .twenty, .shell.keep-half:not(.keep) > .thirty, .shell.keep-half:not(.keep) > .forty, .shell.keep-half:not(.keep) > .sixty, .shell.keep-half:not(.keep) > .seventy, .shell.keep-half:not(.keep) > .eighty {
    width: 50%;
  }
  .shell.keep-half:not(.keep) > .solo.gutter, .shell.keep-half:not(.keep) > .full.gutter, .shell.keep-half:not(.keep) > .duo.gutter, .shell.keep-half:not(.keep) > .half.gutter, .shell.keep-half:not(.keep) > .trio.gutter, .shell.keep-half:not(.keep) > .one-third.gutter, .shell.keep-half:not(.keep) > .two-thirds.gutter, .shell.keep-half:not(.keep) > .quad.gutter, .shell.keep-half:not(.keep) > .quarter.gutter, .shell.keep-half:not(.keep) > .three-quarters.gutter, .shell.keep-half:not(.keep) > .penta.gutter, .shell.keep-half:not(.keep) > .twenty.gutter, .shell.keep-half:not(.keep) > .thirty.gutter, .shell.keep-half:not(.keep) > .forty.gutter, .shell.keep-half:not(.keep) > .sixty.gutter, .shell.keep-half:not(.keep) > .seventy.gutter, .shell.keep-half:not(.keep) > .eighty.gutter {
    width: 48%;
    margin: 1em 1%;
  }
  /* Universal padding class --- as you like */
  .pd-around {
    padding: 1.5em 1.5em;
  }
  .pd-side {
    padding: 0 1.5em;
  }
  .ttal {
    text-align: left !important;
  }
  .ttal:not(.pd-side) {
    padding: 0 1.5em;
  }
  .pd-around .ttal:not(.pd-side), .pd-side .ttal:not(.pd-side) {
    padding: 0;
  }
}
/* Traditional SmartPhone Portrait Size */
@media only screen and (max-width: 479px) {
  .shell:not(.keep), .shell.step:not(.keep) {
    flex-direction: column;
  }
  .shell.step:not(.keep) > .solo, .shell.step:not(.keep) > .full, .shell.step:not(.keep) > .duo, .shell.step:not(.keep) > .half, .shell.step:not(.keep) > .trio, .shell.step:not(.keep) > .one-third, .shell.step:not(.keep) > .two-thirds, .shell.step:not(.keep) > .quad, .shell.step:not(.keep) > .quarter, .shell.step:not(.keep) > .three-quarters, .shell.step:not(.keep) > .penta, .shell.step:not(.keep) > .twenty, .shell.step:not(.keep) > .thirty, .shell.step:not(.keep) > .forty, .shell.step:not(.keep) > .sixty, .shell.step:not(.keep) > .seventy, .shell.step:not(.keep) > .eighty {
    width: 100%;
    margin: margin:0;
  }
  .shell.step:not(.keep) > .solo.gutter, .shell.step:not(.keep) > .full.gutter, .shell.step:not(.keep) > .duo.gutter, .shell.step:not(.keep) > .half.gutter, .shell.step:not(.keep) > .trio.gutter, .shell.step:not(.keep) > .one-third.gutter, .shell.step:not(.keep) > .two-thirds.gutter, .shell.step:not(.keep) > .quad.gutter, .shell.step:not(.keep) > .quarter.gutter, .shell.step:not(.keep) > .three-quarters.gutter, .shell.step:not(.keep) > .penta.gutter, .shell.step:not(.keep) > .twenty.gutter, .shell.step:not(.keep) > .thirty.gutter, .shell.step:not(.keep) > .forty.gutter, .shell.step:not(.keep) > .sixty.gutter, .shell.step:not(.keep) > .seventy.gutter, .shell.step:not(.keep) > .eighty.gutter {
    width: 98%;
    margin: 1em 1%;
  }
  /* Single Column --- Universal margin-bottom class */
  .shell.automa > , .shell.automa > .gutter {
    margin-bottom: 1.5em !important;
  }
  /* Universal padding class --- as you like */
  .pd-around {
    padding: 6% 3%;
  }
  .pd-side, .pd-right, .pd-left {
    padding: 0 3%;
  }
  .stal {
    text-align: left !important;
  }
  .stal:not(.pd-side) {
    padding: 0 3%;
  }
  .pd-around .stal:not(.pd-side), .pd-side .stal:not(.pd-side) {
    padding: 0;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
}
table tr {
  border-bottom: solid 2px white;
}
table tr:last-child {
  border-bottom: none;
}
table th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #505050;
  color: white;
  text-align: center;
  padding: 10px 0;
  vertical-align: middle;
}
table th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #505050;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
table td {
  text-align: left;
  width: 70%;
  /* text-align: center; */
  background-color: #eee;
  padding: 10px 20px;
  color: #333333;
}
/* color */
.red {
  color: #EC5F5F;
}
.green {
  color: #358861;
}
.brown {
  color: #a67435;
}
.blue {
  color: #325f99;
}
.inquiry .forml {
  width: 90%;
}
.inquiry .formm {
  width: 50%;
}
.inquiry .formBtn {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.inquiry .btnSend {
  background-color: #000;
  color: #FFF;
  padding: 5px 0;
  margin: 0 5px 0 5px;
  border: 0;
  width: 160px;
  box-sizing: border-box;
  border-radius: 2px;
}
@media only screen and (max-width: 768px) {
  .inquiry .forml {
    width: 100%;
  }
  .inquiry .formm {
    width: 100%;
  }
  .inquiry .btnSend {
    width: 100px;
  }
  .inquiry .btnReset {
    width: 100px;
  }
}
/* 文字の上に点 */
.dots {
  background-image: radial-gradient(circle at center, #745399 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .4em; /* 縦方向の位置調整 */
}
.column-wrapper {
  width: 100%;
  display: flex;
}
.column-wrapper:nth-of-type(even) {
  flex-direction: row-reverse;
}
.column1, .column2 {
  width: 50%;
 display: flex;
  align-items: center;
	justify-content: center;   /* 横方向中央 */
}
.column1 {
  /*background: #fce88d;*/
  padding: 60px;
  box-sizing: border-box;
}
.column-wrapper:nth-of-type(2n) .column1:nth-of-type(1) {
  /*background: #b5ffb6;*/
}
.column1title {
  font-size: 25px;
}
.column1txt {
  font-size: 15px;
}
.column1txtboxL {
  padding: 2rem;
  border: 1px solid #CCCCCC;
  position: relative;
  right: -20%;
  background-color: #FFFFFF;
}
.column1txtboxR {
  padding: 2rem;
  border: 1px solid #CCCCCC;
  position: relative;
  left: -20%;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .column1txtboxL {
    right: -30%;
  }
  .column1txtboxR {
    left: -30%;
  }
}
@media only screen and (max-width: 500px) {
  .column1txtboxL {
    right: 0;
  }
  .column1txtboxR {
    left: 0;
  }
}
.column2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width:500px) {
 /*.column-wrapper {
    flex-direction: column;
  }*/
.column-wrapper:nth-of-type(even),.column-wrapper:nth-of-type(odd) {
    flex-direction: column;
}
  .column1, .column2 {
    width: 100%;
  }
  .column1 {
    padding: 25px;
  }
}
.bg-color {
  background-color: #E8E7E6;
}
.bg-white {
  background-color: #fff;
}
.floating-banner {
  position: fixed;
  display: inline-flex; /* テキストと矢印を横並び */
  align-items: center;
  gap: 0.5rem;
  /*padding: 1rem 2rem;*/
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px 0 0 6px; /* PC時の角丸 */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;

  /* 初期は非表示 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;

  right: 0;
  bottom: 10%;
  transform: translateY(-50%);
}

/* 表示状態 */
.floating-banner.show {
  opacity: 1;
  visibility: visible;
}

/* 「⇒」を追加 */
/*.floating-banner::after {
  content: "⇒";
  color: #745399;
  font-size: 1.4rem;
  display: inline-block;
  animation: arrowMove 1s infinite;
}*/

/* 矢印のアニメーション（右にスライドして戻る） */
@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* スマホ時 */
@media (max-width: 600px) {
  .floating-banner {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-radius: 6px 6px 0 0; /* 上側だけ角丸 */
    width: 100%;
    font-size: 1rem;
    /*padding: 0.8rem 1rem;*/
    justify-content: center;
  }
	  .floating-banner img {
    width: 25%;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
