@charset "UTF-8";
/*==========================================
矢印 >
===========================================*/
/*==========================================
矢印 ▶
===========================================*/
/*==========================================
背景ストライプ   ($deg=0 平行)($deg=45deg 斜め)
===========================================*/
/*==========================================
Flexbox
===========================================*/
/*==========================================
上下左右中央揃え
===========================================*/
/*==========================================
上下中央揃え
===========================================*/
/*==========================================
before,after
===========================================*/
/*==========================================
最後の行のmargin-bottomを0にする
===========================================*/
/*==========================================
メインビジュアル(スライダー)
===========================================*/
/*==========================================
タイトル左右のボーダー
===========================================*/
/*==========================================
hover時に中央から外側に向けてのボーダー
===========================================*/
/*==========================================
カーテン
===========================================*/
/*==========================================
グラデーション
===========================================*/
/*-----------------------------
→方向
-----------------------------*/
/*-----------------------------
↓方向
-----------------------------*/
/*-----------------------------
斜め方向
-----------------------------*/
/*==========================================
iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
===========================================*/
/*==========================================
画面幅3分割レイアウト
===========================================*/
@import url(../fonts/Noto/load.css);
/*==========================================
PC共通
===========================================*/
body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #574634;
  line-height: 1.7;
  text-align: center;
  letter-spacing: .08em;
  font-size: 15px;
  word-break: break-all;
  background: url(../img/common/body_bg.png);
}

#wrapper {
  min-width: 1200px;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
a[href^="tel:"] {
  pointer-events: none;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  width: 1080px;
  margin: 0 auto;
}

.com-pd {
  padding: 85px 0;
}

.com-pt {
  padding-top: 85px;
}

.com-pb {
  padding-bottom: 85px;
}

.com-mb {
  margin-bottom: 85px;
}

/*==========================================
PC非表示
===========================================*/
.pc-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 10px;
  text-align: left;
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  left: 0;
  top: 10px;
}
div .bread li {
  display: inline-block;
  color: #baa259;
}
div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #999;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: #999;
}

/*==========================================
float
===========================================*/
.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

/*==========================================
Flexbox
===========================================*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し
-----------------------*/
.flx-wrp {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.flex-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flex-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*==========================================
header
===========================================*/
#header {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  z-index: 1001;
  padding: 0 15px;
}
#header .hd-right {
  width: 235px;
}
#header .shop {
  width: 180px;
  display: block;
}

/*==========================================
グローバルナビ
===========================================*/
#nav-toggle {
  position: fixed;
  top: 35px;
  right: 15px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 1006;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nav-toggle > div {
  position: relative;
  width: 28px;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #574634;
  position: absolute;
  -webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out, top .5s ease;
  transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: -9px;
}
#nav-toggle span:nth-child(2) {
  top: 0;
}
#nav-toggle span:nth-child(3) {
  top: 9px;
}

.open #nav-toggle span {
  background: #574634;
}
.open #nav-toggle span:nth-child(1) {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#container {
  z-index: 1005;
}

#global-nav {
  width: 360px;
  max-height: 600px;
  min-height: 560px;
  margin-left: auto;
  background: url(../img/common/navi_bg.png) center no-repeat;
  background-size: cover;
  border-radius: 20px;
  color: #fff;
  position: fixed;
  top: 10vh;
  right: 40px;
  bottom: 0;
  z-index: 1005;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity .6s ease, visibility .6s ease;
  transition: opacity .6s ease, visibility .6s ease;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: .1em;
}
#global-nav #nav-inner {
  width: 80%;
}
#global-nav .sp-nav {
  list-style: none;
  margin-bottom: 10px;
}
#global-nav .sp-nav > li {
  letter-spacing: 2px;
  opacity: 0;
  text-align: left;
  border-bottom: 1px dashed #fff;
}
#global-nav .sp-nav > li:last-child {
  border-bottom: none;
}
#global-nav .sp-nav > li > a {
  display: block;
  color: #fff;
  text-decoration: none;
}
#global-nav .sp-nav > li span {
  display: block;
  padding: 12px 5px 12px 20px;
  background: url(../img/common/nav_arr.png) left center no-repeat;
}
#global-nav .child-nav {
  position: relative;
  font-size: 14px;
}
#global-nav .child-nav li {
  margin-bottom: 5px;
}
#global-nav .child-nav li:last-child {
  margin-bottom: 0;
}
#global-nav .child-nav li a {
  padding: 0;
  color: #fff;
  display: block;
}
#global-nav .child-nav li a span {
  padding: 0 5px 0 15px;
}
#global-nav .child-nav li a span {
  position: relative;
}
#global-nav .child-nav li a span:before {
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  content: '';
  left: 0;
  right: auto;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #c6b686;
}
#global-nav dl dt {
  margin-bottom: 10px;
}
#global-nav dl dt img {
  max-width: 100%;
}
#global-nav dl dd .tel {
  color: #fff;
}
#global-nav dl dd .mail {
  width: 240px;
  margin: 10px auto 0 auto;
  display: block;
  border-radius: 6px;
  padding: 15px 5px 15px 20px;
  line-height: 1;
  background: url(../img/common/mail_icon.png) left 45px center no-repeat, #fff;
}

/* open */
.open #global-nav {
  visibility: visible;
  opacity: 1;
}
.open #global-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  padding-top: 100px;
  width: 97.91%;
  max-width: 1880px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/common/mv_bg.png) left top no-repeat;
}
#mv h2 {
  width: 37.44%;
  position: absolute;
  left: 3%;
  bottom: 16.11%;
  z-index: 100;
}
#mv h2 img {
  max-width: 100%;
}
#mv .mv-frame {
  width: 62.5%;
  max-width: 1200px;
  margin-left: auto;
  height: 34vw;
  max-height: 640px;
  background: url(../img/top/mv/mv_img.jpg) center no-repeat;
  background-size: cover;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 25px;
  line-height: 1.8;
}
.txt-blc p:last-child {
  margin-bottom: 0;
}

.tel {
  font-size: 24px;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-weight: 600;
  padding-left: 20px;
  background: url(../img/common/tel_icon.png) left center no-repeat;
}
.tel span {
  font-size: 16px;
}

.border-radi20 {
  border-radius: 20px;
}

.more-btn {
  display: block;
  padding: 15px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  background: #574634;
}
.more-btn span {
  padding-left: 25px;
  background: url(../img/common/nav_arr.png) left center no-repeat;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  padding: 20px 0;
  border-bottom: 1px solid #e2e2e2;
}
.com-dl > dl:last-child {
  border-bottom: none;
}
.com-dl > dl > dt, .com-dl > dl > dd {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.com-dl > dl > dt {
  padding: 0 10px;
  width: 180px;
  vertical-align: top;
}
.com-dl > dl > dt span {
  border-left: 4px solid #b47866;
  padding-left: 10px;
  display: block;
}
.com-dl > dl > dd {
  padding: 0 20px;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
トップページ
===========================================*/
#top-shiawase-cake {
  padding: 120px 0 20px 0;
  background: url(../img/top/sec01_bg_right.png) right top 2.343% no-repeat, url(../img/top/sec01_bg_left.png) left bottom no-repeat;
  background-size: 28.69% , 23.69%;
  margin-bottom: 80px;
}
#top-shiawase-cake .txt-blc {
  width: 500px;
  position: relative;
  z-index: 1;
}
#top-shiawase-cake .txt-blc:before {
  position: absolute;
  content: '';
  background: url('../img/top/sec01_txt-right-illust.png?1649757813');
  width: 216px;
  height: 295px;
  top: auto;
  right: -100px;
  bottom: -55px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#top-shiawase-cake .txt-blc h3 {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
#top-shiawase-cake .txt-blc h3:before {
  position: absolute;
  content: '';
  background: url('../img/top/sec01_ttl-left-illust.png?1649757813');
  width: 179px;
  height: 126px;
  top: auto;
  right: auto;
  bottom: -10px;
  left: -85px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
}
#top-shiawase-cake .txt-blc h3:after {
  position: absolute;
  content: '';
  background: url('../img/top/sec01_ttl-right-illust.png?1649757813');
  width: 225px;
  height: 215px;
  top: -120px;
  right: -80px;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
}
#top-shiawase-cake .txt-blc p {
  text-align: center;
}
#top-shiawase-cake .img-blc {
  width: 575px;
  margin-right: -70px;
}
#top-shiawase-cake .img-blc img:first-child {
  margin: auto 70px 10px auto;
}

#top-order-cake {
  padding: 15px 0 115px 0;
  background: url(../img/top/sec02_bg.png) right bottom no-repeat;
  background-size: 48.95%;
  position: relative;
  margin-bottom: 40px;
}
#top-order-cake .txt-blc {
  width: 585px;
  margin-left: auto;
}
#top-order-cake .txt-blc h3 {
  margin-bottom: 30px;
}
#top-order-cake .txt-blc .more-btn {
  width: 540px;
  margin-top: 50px;
}
#top-order-cake .img-blc {
  width: 43.75%;
  position: absolute;
  left: 0;
  top: 0;
}
#top-order-cake .img-blc img {
  max-width: 100%;
  border-radius: 0 40px 40px 0;
}

#top-product {
  padding: 30px 0 60px 0;
  background: url(../img/top/sec03_bg.png) center;
}
#top-product .inbox {
  width: 96%;
  max-width: 1870px;
  min-width: 1080px;
  position: relative;
}
#top-product .ttl-wrap {
  width: 22.4%;
  padding: 75px 0 65px 0;
  background: url(../img/top/sec03_txt_bg.png) top center no-repeat;
  background-size: contain;
}
#top-product .ttl-wrap h3 {
  width: 74.047%;
  margin: 0 auto 20px auto;
}
#top-product .ttl-wrap h3 img {
  max-width: 100%;
}
#top-product .swiper-all-wrap {
  width: 73.73%;
  max-width: 1375px;
  position: relative;
}
#top-product .swiper-slide {
  overflow: hidden;
  border-radius: 20px;
}
#top-product a {
  display: block;
  border-radius: 20px;
}
#top-product figure {
  position: relative;
}
#top-product figure figcaption {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 5px;
  text-align: left;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  z-index: 100;
}
#top-product figure .com-img {
  width: 100%;
  height: 22vw;
  max-height: 420px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  border-radius: 20px;
}
#top-product figure:hover .com-img {
  border-radius: 20px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#top-product figure:hover .com-img img {
  border-radius: 20px;
}
#top-product .more-btn {
  width: 17.11%;
  max-width: 320px;
  position: absolute;
  left: 2%;
  bottom: 0;
}

#top-news {
  padding: 75px 0 100px 0;
  background: url(../img/top/sec04_bg.png) center no-repeat;
  background-size: cover;
}
#top-news h3 {
  margin-bottom: 35px;
}
#top-news .inbox {
  position: relative;
}
#top-news .news-lists {
  background: url(../img/top/sec04_news-wrap-bg.png) center no-repeat;
  background-size: cover;
  padding: 25px;
}
#top-news .news-lists > li {
  border-bottom: 1px dashed #fff;
}
#top-news .news-lists > li:last-child {
  border-bottom: none;
}
#top-news .news-lists > li a {
  padding: 20px 0;
}
#top-news .news-lists > li .com-img {
  width: 120px;
  height: 80px;
}
#top-news .news-lists > li .txt-blc {
  width: 860px;
}
#top-news .news-lists > li time,
#top-news .news-lists > li .category-label,
#top-news .news-lists > li .category-label li {
  display: inline-block;
  vertical-align: baseline;
  font-size: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#top-news .news-lists > li time {
  width: 100px;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  padding: 2px 3px;
  font-weight: 700;
}
#top-news .news-lists > li time span {
  padding-left: 10px;
}
#top-news .news-lists > li time span {
  position: relative;
}
#top-news .news-lists > li time span:before {
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  content: '';
  left: 0;
  right: auto;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #b47866;
}
#top-news .news-lists > li .category-label li {
  border-radius: 6px;
  background: rgba(180, 120, 102, 0.8);
  text-align: center;
  padding: 2px 5px;
  color: #fff;
  margin-left: 5px;
}
#top-news .news-lists > li h4 {
  margin-top: 10px;
  font-weight: 700;
}
#top-news .btn {
  width: 105px;
  position: absolute;
  right: 0;
  top: 40px;
  padding-bottom: 10px;
  background: url(../img/top/more_btn-bg.png) bottom center no-repeat;
}
#top-news .btn span {
  position: relative;
}
#top-news .btn span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15px;
  right: auto;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid #574634;
  border-right: 1px solid #574634;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#top-information {
  height: 480px;
}
#top-information .box {
  /* width: 50%; */
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  position: relative;
}
#top-information .box:before, #top-information .box:after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
}
#top-information .box:after {
  opacity: .8;
}
#top-information .box:hover {
  opacity: 1;
}
#top-information .box:hover img {
  -webkit-filter: drop-shadow(5px 5px 10px rgba(186, 162, 89, 0.5));
  -moz-filter: drop-shadow(5px 5px 10px rgba(186, 162, 89, 0.5));
  -ms-filter: drop-shadow(5px 5px 10px rgba(186, 162, 89, 0.5));
  filter: drop-shadow(5px 5px 10px rgba(186, 162, 89, 0.5));
}
#top-information .box:hover:after {
  opacity: .95;
}
#top-information .box:nth-child(1):before {
  background: url(../img/top/sec05_bg01.jpg) center no-repeat;
  background-size: cover;
}
#top-information .box:nth-child(1):after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c9b168+0,f7c0c2+100 */
  background: #c9b168;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#c9b168), to(#f7c0c2));
  background: linear-gradient(to right, #c9b168 0%, #f7c0c2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9b168', endColorstr='#f7c0c2',GradientType=1 );
  /* IE6-9 */
}
#top-information .box:nth-child(2):before {
  background: url(../img/top/sec05_bg02.jpg) center no-repeat;
  background-size: cover;
}
#top-information .box:nth-child(2):after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fbf9bc+0,ffffff+100 */
  background: #fbf9bc;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#fbf9bc), to(#ffffff));
  background: linear-gradient(to right, #fbf9bc 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbf9bc', endColorstr='#fff',GradientType=1 );
  /* IE6-9 */
}

/*==========================================
下層共通
===========================================*/
#sv {
  padding-top: 100px;
  width: 97.91%;
  max-width: 1880px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/lower/lower_v-plant.png) left top 45% no-repeat, url(../img/common/mv_bg.png) left top no-repeat;
}
#sv h2 {
  width: 30.15%;
  position: absolute;
  left: 3%;
  bottom: 16.11%;
  z-index: 100;
}
#sv h2 img {
  max-width: 100%;
}
#sv .mv-frame {
  width: 62.5%;
  max-width: 1200px;
  margin-left: auto;
  height: 420px;
  background: url(../img/lower/lower_v.png) center no-repeat;
  background-size: cover;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 20px;
  margin-bottom: 45px;
  background: url(../img/lower/ttl01-bg.png);
  padding: 5px 10px;
  text-align: left;
}
.ttl01 span {
  display: block;
  border-bottom: 1px dashed #fff;
  padding: 10px 0;
}

.ttl02 {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px dashed;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.ttl02 span {
  border-left: 4px solid #b47866;
  padding-left: 10px;
  display: block;
}

/*==========================================
こだわり
===========================================*/
.commitment-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/commitment-en.png?1649757805');
  width: 573px;
  height: 207px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

#commitment-smile {
  background: url(../img/commitment/sec01_bg_left.png) left top no-repeat, url(../img/commitment/sec01_bg_right.png) right bottom no-repeat;
}
#commitment-smile .txt-blc {
  width: 640px;
  padding-bottom: 130px;
  background: url(../img/commitment/sec01_illust.png) bottom center no-repeat;
}
#commitment-smile .txt-blc h3 {
  margin-bottom: 45px;
}
#commitment-smile .txt-blc p {
  text-align: center;
}
#commitment-smile .img-blc {
  width: 580px;
  margin-right: -100px;
}
#commitment-smile .img-blc img {
  margin-bottom: 10px;
}
#commitment-smile .img-blc img:last-child {
  margin-bottom: 0;
  margin-right: 100px;
}

#commitment h3 {
  margin-bottom: 85px;
}
#commitment .wrap {
  margin-bottom: 90px;
}
#commitment .wrap:last-child {
  margin-bottom: 0;
}
#commitment .txt-blc {
  width: 565px;
}
#commitment .txt-blc h4 {
  font-size: 25px;
  border-bottom: 1px dashed;
  margin-bottom: 20px;
  padding: 5px 5px 10px 65px;
}
#commitment .txt-blc h4 span {
  display: block;
  font-size: 20px;
}
#commitment .wrap:nth-of-type(1) h4 {
  background: url(../img/commitment/num01.png) left center no-repeat;
}
#commitment .wrap:nth-of-type(2) h4 {
  background: url(../img/commitment/num02.png) left center no-repeat;
}
#commitment .wrap:nth-of-type(3) h4 {
  background: url(../img/commitment/num03.png) left center no-repeat;
}
#commitment .wrap:nth-of-type(4) h4 {
  background: url(../img/commitment/num04.png) left center no-repeat;
}

/*==========================================
オーダーケーキについて
===========================================*/
.order-cake-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/order-cake-en.png?1649757808');
  width: 622px;
  height: 232px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

#how-to-make {
  background: url(../img/order-cake/sec01_illust-bg.png) right top 280px no-repeat;
}
#how-to-make .ttl01 {
  text-align: center;
}
#how-to-make ol > li {
  margin-bottom: 80px;
}
#how-to-make ol > li:first-child {
  padding-bottom: 145px;
  position: relative;
}
#how-to-make ol > li:first-child:before {
  position: absolute;
  content: '';
  background: url('../img/order-cake/sec01_illust.png?1649757810');
  width: 254px;
  height: 187px;
  top: auto;
  right: auto;
  bottom: 0;
  left: -165px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#how-to-make ol > li:last-child {
  margin-bottom: 0;
}
#how-to-make ol > li .txt-blc {
  width: 530px;
}
#how-to-make ol > li h5 {
  margin-bottom: 10px;
}
#how-to-make ol > li dl {
  font-weight: 700;
  margin-bottom: 5px;
}
#how-to-make ol > li dl:last-child {
  margin-bottom: 0;
}
#how-to-make ol > li dl dt {
  min-width: 170px;
  background: #b47866;
  color: #fff;
  border-radius: 6px;
  margin-right: 15px;
  text-align: center;
  padding: 3px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#how-to-make ol > li dl dd {
  min-width: 60px;
  font-size: 18px;
}
#how-to-make ol > li .caution {
  margin-top: 40px;
  text-align: center;
}
#how-to-make ol > li:last-child h5 {
  font-size: 24px;
  border-bottom: 1px dashed;
  padding-bottom: 5px;
}
#how-to-make ol > li:last-child .menu-box-wrap {
  width: 1040px;
  margin: 0 auto;
}
#how-to-make ol > li:last-child .menu-box-wrap li {
  width: 500px;
  position: relative;
  background: rgba(180, 120, 102, 0.15);
  margin-bottom: 45px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#how-to-make ol > li:last-child .menu-box-wrap li:before {
  position: absolute;
  content: '';
  background: url('../img/order-cake/frame-left-bottom.png?1649757809');
  width: 29px;
  height: 26px;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 10;
}
#how-to-make ol > li:last-child .menu-box-wrap li:after {
  position: absolute;
  content: '';
  background: url('../img/order-cake/frame-right-bottom.png?1649757810');
  width: 29px;
  height: 26px;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 10;
}
#how-to-make ol > li:last-child .menu-box-wrap li .inner {
  border: 1px solid #fff;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  position: relative;
}
#how-to-make ol > li:last-child .menu-box-wrap li .inner:before {
  position: absolute;
  content: '';
  background: url('../img/order-cake/frame-left-top.png?1649757809');
  width: 29px;
  height: 26px;
  top: -6px;
  right: auto;
  bottom: auto;
  left: -6px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#how-to-make ol > li:last-child .menu-box-wrap li .inner:after {
  position: absolute;
  content: '';
  background: url('../img/order-cake/frame-right-top.png?1649757810');
  width: 29px;
  height: 26px;
  top: -6px;
  right: -6px;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#how-to-make ol > li:last-child .menu-box-wrap li:last-child {
  width: 100%;
  margin-bottom: 0;
}
#how-to-make ol > li:last-child .menu-box-wrap li:last-child .box {
  width: 215px;
}
#how-to-make ol > li:last-child .menu-box-wrap li:last-child .box dt {
  min-width: auto;
}
#how-to-make ol > li:last-child .menu-box-wrap li:last-child .etc {
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  color: #b47866;
  margin-top: 15px;
}

#flow h3 {
  margin-bottom: 90px;
}
#flow li {
  padding-bottom: 80px;
  margin-bottom: 80px;
  background: url(../img/order-cake/flow_arr.png) bottom center no-repeat;
}
#flow li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  background: none;
}
#flow li .txt-blc {
  width: 715px;
}
#flow li h4 {
  font-size: 25px;
  border-bottom: 1px dashed;
  padding-bottom: 5px;
  margin-bottom: 15px;
  position: relative;
}
#flow li:nth-child(1) h4:before {
  position: absolute;
  content: '';
  background: url('../img/order-cake/step01.png?1649757810');
  width: 128px;
  height: 40px;
  top: -45px;
  right: auto;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#flow li:nth-child(2) h4:before {
  position: absolute;
  content: '';
  background: url('../img/order-cake/step02.png?1649757811');
  width: 128px;
  height: 40px;
  top: -45px;
  right: auto;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#flow li:nth-child(3) h4:before {
  position: absolute;
  content: '';
  background: url('../img/order-cake/step03.png?1649757811');
  width: 128px;
  height: 40px;
  top: -45px;
  right: auto;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#flow li:nth-child(4) h4:before {
  position: absolute;
  content: '';
  background: url('../img/order-cake/step04.png?1649757811');
  width: 128px;
  height: 40px;
  top: -45px;
  right: auto;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*==========================================
お菓子教室
===========================================*/
.sweets-class-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/sweets-class-en.png?1649757808');
  width: 573px;
  height: 172px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

#kids-class {
  background: url(../img/sweets-class/sec01_bg_left.png) left bottom no-repeat, url(../img/sweets-class/sec01_bg_right.png) right bottom 115px no-repeat;
}
#kids-class h3 {
  margin-bottom: 95px;
}
#kids-class .wrap {
  padding-bottom: 115px;
  background: url(../img/sweets-class/sec01_left-illust.png) left bottom 55px no-repeat, url(../img/sweets-class/sec01_right-illust.png) right bottom no-repeat;
}
#kids-class .txt-blc {
  width: 585px;
}
#kids-class .txt-blc h4 {
  margin-bottom: 15px;
}
#kids-class .txt-blc h4 img {
  max-width: 100%;
}
#kids-class .txt-blc p {
  text-align: center;
}

#holding h3 {
  margin-bottom: 90px;
}
#holding .box {
  background: rgba(180, 120, 102, 0.1);
  border-radius: 20px;
  margin-bottom: 70px;
}
#holding .box:last-child {
  margin-bottom: 0;
}
#holding .box .ttl01 {
  margin-bottom: 0;
}
#holding .box .inner {
  text-align: left;
  padding: 25px 35px;
}
#holding .box .inner span {
  font-weight: 700;
  font-size: 17px;
  display: block;
}

/*==========================================
商品一覧
===========================================*/
.product-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/product-en.png?1649757808');
  width: 754px;
  height: 217px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

#product h3 {
  margin-bottom: 20px;
}
#product .category-wrap {
  width: 240px;
}
#product .category-wrap li {
  text-align: left;
  font-size: 16px;
  border-bottom: 1px dashed;
}
#product .category-wrap li:last-child {
  border-bottom: none;
}
#product .category-wrap li a {
  padding: 10px 0;
  display: block;
}
#product .category-wrap .current {
  font-weight: 700;
}
#product .category-wrap .current a span {
  padding-left: 15px;
  display: block;
}
#product .category-wrap .current a span {
  position: relative;
}
#product .category-wrap .current a span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid #baa259;
  border-right: 1px solid #baa259;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#product .gallery-lists {
  width: 800px;
}
#product .post-blank{
  width: 600px;
  text-align: left;
}
#product .gallery-lists > li {
  width: 240px;
  margin-right: 40px;
  margin-bottom: 50px;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
}
#product .gallery-lists > li:nth-child(3n+1):nth-last-child(-n+3), #product .gallery-lists > li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#product .gallery-lists > li:nth-child(3n), #product .gallery-lists > li:last-child {
  margin-right: 0;
}
#product .gallery-lists > li .thumb {
  width: 100%;
  height: 340px;
  border-radius: 20px;
}
#product .gallery-lists > li a {
  display: block;
  border-radius: 20px;
}
#product .gallery-lists figure {
  position: relative;
}
#product .gallery-lists figcaption {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 5px;
  text-align: left;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  z-index: 100;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#product .gallery-lists figcaption .category-label li {
  background: rgba(180, 120, 102, 0.8);
  font-weight: 700;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  margin-right: 5px;
  padding: 2px 5px;
  margin-bottom: 5px;
}
#product .gallery-lists figcaption .category-label li:last-child {
  margin-right: 0;
}
#product .img-eff {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}
#product .img-eff:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  opacity: 0;
}
#product .img-eff:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#product .img-eff:hover:before {
  opacity: 1;
}
#product .gallery-img {
  width: 560px;
}
#product .gallery-img .main-img {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 20px;
}
#product .gallery-img .main-img img {
  max-width: 100%;
  height: auto;
}
#product .gallery-img .gallery-img-lists li {
  width: 180px;
  height: 130px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#product .gallery-img .gallery-img-lists li:nth-child(3n+1):nth-last-child(-n+3), #product .gallery-img .gallery-img-lists li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#product .gallery-img .gallery-img-lists li:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#product .gallery-img .gallery-img-lists li:nth-child(3n), #product .gallery-img .gallery-img-lists li:last-child {
  margin-right: 0;
}
#product .gallery-img .gallery-img-lists li img {
  -o-object-position: center;
     object-position: center;
}
#product .comment {
  width: 465px;
  text-align: left;
}
#product .comment h3 {
  font-size: 25px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px dashed;
}
#product .comment .category-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#product .comment .category-label li {
  font-weight: 700;
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 5px;
}
#product .comment .category-label li:last-child {
  margin-right: 0;
}
#product .comment .category-label li a {
  background: rgba(180, 120, 102, 0.8);
  border-radius: 6px;
  padding: 2px 5px;
  color: #fff;
}

/*==========================================
お菓子の国ふ～ゆ/まほうの時間
===========================================*/
.feuille-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/feuille-en.png?1649761543');
  width: 683px;
  height: 191px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

.mahounojikan-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/mahounojikan-en.png?1649757806');
  width: 573px;
  height: 198px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

#greetings {
  background: url(../img/feuille/sec01_bg_left.png) left top no-repeat;
}
#greetings .txt-blc {
  width: 590px;
}
#greetings .txt-blc h3 {
  margin-bottom: 35px;
  text-align: center;
}
#greetings figure {
  width: 420px;
  position: relative;
}
#greetings figure figcaption {
  width: 250px;
  height: 105px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  right: -40px;
  bottom: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#shop-information {
  position: relative;
  z-index: 1;
}
#shop-information:before {
  position: absolute;
  content: '';
  background: url('../img/feuille/sec01_bg_right.png?1649757805');
  width: 362px;
  height: 372px;
  top: -240px;
  right: 0;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#shop-information h3 {
  margin-bottom: 50px;
}
#shop-information .com-dl {
  margin-bottom: 50px;
}
#shop-information .img-blc {
  margin-bottom: 120px;
}
#shop-information h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
#shop-information h4 span {
  padding-left: 20px;
  background: url(../img/feuille/pin.png) left center no-repeat;
}
#shop-information .map {
  height: 400px;
}

/*==========================================
footer
===========================================*/
#footer {
  background: url(../img/common/ft_line.png) top 10px center repeat-x, url(../img/common/ft_bg.png) center no-repeat;
  background-size: auto , cover;
}
#footer .wrap {
  width: 620px;
  margin: 0 auto;
  padding: 50px 0 25px 0;
}
#footer .box {
  width: 300px;
}
#footer .box .logo {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
#footer .box .tel {
  margin-bottom: 10px;
}
#footer .box .time {
  width: 270px;
  margin: 0 auto 15px auto;
  font-size: 11px;
  letter-spacing: .04em;
}
#footer .box .time dl {
  margin-right: 15px;
  width: 48%;
  margin: 0 15px 0 auto;
}
#footer .box .time dl:last-child {
  margin-right: 0;
}
#footer .box .time dt {
  background: #574634;
  color: #fff;
  margin-right: 5px;
  padding: 1px 2px;
  border-radius: 4px;
  font-weight: 500;
}
#footer .ft-nav {
  padding: 10px 0;
}
#footer .ft-nav > li {
  font-size: 10px;
  padding: 0 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .ft-nav > li:first-child {
  padding-left: 0;
}
#footer .ft-nav > li:last-child {
  padding-right: 0;
}
#footer .ft-nav > li:last-child:after {
  border-right: none;
}
#footer .ft-nav > li:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  content: '';
  right: 0;
  border-right: 1px solid;
  width: 1px;
  height: 10px;
}
#footer .ft-nav > li .child-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .ft-nav > li .child-nav li {
  margin-left: 8px;
}
#footer .ft-nav > li .child-nav li a span {
  padding-left: 10px;
}
#footer .ft-nav > li .child-nav li a span {
  position: relative;
}
#footer .ft-nav > li .child-nav li a span:before {
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  content: '';
  left: 0;
  right: auto;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #baa259;
}
#footer #copyright {
  background: url(../img/common/copy_bg.png) center no-repeat;
  background-size: cover;
  padding: 5px 0;
  font-size: 10px;
  color: #fff;
}
#footer #copyright a {
  color: #fff;
}

/*==========================================
カテゴリー一覧
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin-left: auto;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 2px;
  border-bottom: 2px solid #2e2e2e;
  background: none;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2e2e;
  pointer-events: none;
}
.category-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 38px 10px 8px;
  color: #2e2e2e;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select select::-ms-expand {
  display: none;
}

/*==========================================
お知らせ
===========================================*/
.news-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/news-en.png?1649757806');
  width: 600px;
  height: 210px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

.post-wrap {
  padding: 70px 0;
}
.post-wrap .column-lists > li {
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists > li a {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  box-sizing: border-box;
}
.post-wrap .column-lists > li a:hover .more-btn {
  background: #fff;
  color: #baa259;
}
.post-wrap .column-lists > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
}
.post-wrap .column-lists .post-ttl time {
  color: #baa259;
  text-align: left;
}
.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  font-size: 10px;
}
.post-wrap .column-lists .post-ttl .category-label li {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #baa259;
  color: #fff;
  background: #baa259;
  padding: 2px 10px;
  margin-right: 5px;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
}
.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 20px;
}
.post-wrap .column-lists .more-btn {
  width: 125px;
  font-size: 14px;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #baa259;
  border: 1px solid #baa259;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .column-lists .thumb {
  width: 210px;
  height: 200px;
}
.post-wrap .column-lists .post-area {
  width: 800px;
}
.post-wrap .post-content {
  padding: 20px 20px 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-wrap .post-content img {
  max-width: 100%;
}
.post-wrap .post-content time {
  font-size: 10px;
  margin-top: 20px;
  display: block;
  color: #baa259;
  text-align: right;
}
.post-wrap .post-content .category-label {
  font-size: 10px;
  text-align: right;
}
.post-wrap .post-content .category-label dt, .post-wrap .post-content .category-label dd {
  display: inline-block;
  vertical-align: middle;
}
.post-wrap .post-content .category-label dt:after {
  content: ':';
}
.post-wrap .post-content .category-label li {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.post-wrap .post-content .category-label dd li:after {
  content: ',';
}
.post-wrap .post-content .category-label dd li:last-child:after {
  content: '';
}

.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 10px;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ':';
  padding: 0 5px;
}
.single-category dd {
  max-width: 170px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '#';
}
.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
お問い合わせ
===========================================*/
.contact-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/contact-en.png?1649757806');
  width: 573px;
  height: 183px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

.complete-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/complete-en.png?1649757806');
  width: 573px;
  height: 185px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

.contact-form {
  margin-bottom: 20px;
}
.contact-form dl dt {
  padding: 0 15px;
  width: 320px !important;
  position: relative;
  vertical-align: top;
}
.contact-form dl dt em {
  position: absolute;
  top: 0;
  right: 10px;
  color: #baa259;
  background: #fff;
  font-weight: 500;
  padding: 3px;
  font-size: 11px;
}
.contact-form dl dd {
  padding: 0 15px;
}
.contact-form dl dd li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.contact-form dl dd li:last-child {
  margin-right: 0;
}
.contact-form .txtarea {
  width: 640px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form #post01,
.contact-form #post02 {
  width: 150px;
}
.contact-form #addr21 {
  margin-top: 15px;
}
.contact-form textarea {
  height: 260px;
  line-height: 1.8;
}
.contact-form .error-text {
  color: #ff0000;
}

.g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 25px;
}

input[type='button'][disabled],
input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}

input[type='button'],
input[type='submit'],
.contact-submits-wrap button {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  color: #fff;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #baa259;
  color: #baa259;
  border-radius: 0;
}
input[type='button']:hover,
input[type='submit']:hover,
.contact-submits-wrap button:hover {
  background: #baa259;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}

.check-btn {
  width: 260px;
  margin: 0 auto;
  margin-top: 20px;
}

.back-btn {
  width: 270px;
  margin: 0 auto;
  margin-right: 40px;
}

.contact-submits-wrap {
  margin-top: 20px;
}

.send-btn {
  width: 240px;
  margin: 0 auto;
}

.privacy-agree {
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー
===========================================*/
.privacy-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/privacy-en.png?1649757808');
  width: 630px;
  height: 203px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

.privacy-box {
  margin-bottom: 40px;
  text-align: left;
}
.privacy-box:last-child {
  margin-bottom: 0;
}
.privacy-box p{
  margin-bottom: 20px;
}
.privacy-box p:last-child{
  margin-bottom: 0;
}
.privacy-box ul{
  margin-top: 20px;
}

/*==========================================
サイトマップ
===========================================*/
.site-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/site-en.png?1649757808');
  width: 573px;
  height: 167px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

/*==========================================
404.php
===========================================*/
.e404-vis h2:before {
  position: absolute;
  content: '';
  background: url('../img/lower/e404-en.png?1649757806');
  width: 573px;
  height: 182px;
  top: -41%;
  right: -6%;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-size: 100%;
  background-position: 50% 0;
}

#err-cont {
  padding: 75px 0;
}
#err-cont .txt-blc a {
  text-decoration: underline;
}
