<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

@import url(../fonts/Noto/load.css);
/*==========================================
PC共通
===========================================*/
body {
  width: 100%;
  margin: 0 auto;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #4e2b17;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 16px;
  word-break: break-all;
  font-weight: 500;
  background: #fbf8e9;
}

#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: #eba100;
}
div .bread li:after {
  content: " &gt; ";
  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;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  padding: 20px 25px 20px 15px;
}
#header .hd-right {
  width: 900px;
}
#header .hd-right .mail {
  width: 200px;
  display: block;
  padding: 9px 5px 6px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-weight: bold;
  background: url(../img/common/hd-mail_icon.png) left 25px center no-repeat, #eba100;
  border-radius: 21px;
  margin: 0 0 10px auto;
}

/*==========================================
nav
===========================================*/
nav li {
  font-weight: bold;
  border-right: 1px dotted #d6a58a;
}
nav li a {
  display: block;
  padding: 0 15px;
}
nav li:last-child {
  border-right: none;
}
nav li:last-child a {
  padding-right: 0;
}
nav li .ja {
  display: block;
  font-size: 15px;
}
nav li .en {
  display: block;
  font-size: 14px;
  color: #d6a58a;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  position: relative;
  height: 37.448vw;
  max-height: 719px;
  margin-bottom: 13.7vw;
}
#mv h2 {
  width: 39.21875%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
}
#mv h2 img {
  max-width: 100%;
}
#mv #top-slider {
  height: 37.448vw;
  position: relative;
}
#mv #top-slider li {
  height: 100%;
}
#mv #top-slider li:nth-child(1) {
  background: url(../img/top/mv/slide01.png) center no-repeat;
  background-size: cover;
}
#mv #top-slider li:nth-child(2) {
  background: url(../img/top/mv/slide02.png) center no-repeat;
  background-size: cover;
}
#mv #top-slider li:nth-child(3) {
  background: url(../img/top/mv/slide03.png) center no-repeat;
  background-size: cover;
}
#mv #top-slider li:nth-child(4) {
  background: url(../img/top/mv/slide04.png) center no-repeat;
  background-size: cover;
}
#mv .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#mv .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#mv .bx-pager {
  display: none;
}
#mv .bx-wrapper {
  width: 85.46875%;
  margin: 0 auto;
  border-radius: 68px;
}
#mv #top-slider {
  border-radius: 68px;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 25px;
  line-height: 1.8;
}
.txt-blc p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
}
#g-map .map iframe {
  width: 100%;
  height: 100%;
}

.more-btn {
  width: 340px;
  display: block;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  border-radius: 28px;
  color: #fff;
  text-align: center;
  padding: 12px 5px 8px 5px;
  background: url(../img/common/more-btn_white.png) right 15px center no-repeat, #eba100;
}
.more-btn:hover {
  opacity: 1;
  color: #eba100;
  background: url(../img/common/more-btn_orange.png) right 15px center no-repeat, #fff;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl &gt; dl {
  border-bottom: 2px solid #e2e2e2;
}
.com-dl &gt; dl:last-child {
  border-bottom: none;
}
.com-dl &gt; dl &gt; dt, .com-dl &gt; dl &gt; dd {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.com-dl &gt; dl &gt; dt {
  padding: 20px 10px;
  width: 180px;
  background: #eba100;
  color: #fff;
  vertical-align: top;
}
.com-dl &gt; dl &gt; dd {
  width: 900px;
  background: #fff;
  padding: 20px;
}
.com-dl &gt; dl &gt; dd a[href^="mailto:"] {
  text-decoration: underline;
}
.com-dl &gt; dl:first-child dt {
  border-radius: 14px 0 0 0;
}
.com-dl &gt; dl:first-child dd {
  border-radius: 0 14px 0 0;
}
.com-dl &gt; dl:last-child dt {
  border-radius: 0 0 0 14px;
}
.com-dl &gt; dl:last-child dd {
  border-radius: 0 0 14px 0;
}

/*==========================================
トップページ
===========================================*/
/*--------------------------------
びびもこ商店ってどんなとこ？
---------------------------------*/
#top-about {
  background: url(../img/top/about-bg.png);
  position: relative;
  padding-bottom: 80px;
}
#top-about:before {
  position: absolute;
  content: '';
  background: url('../img/top/about-top_bg.png?1668394427');
  width: 1920px;
  height: 100px;
  top: -100px;
  right: 0;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  background-position: 50% 50%;
}
#top-about h3 {
  font-size: 50px;
  margin-bottom: 60px;
  font-weight: 700;
}
#top-about h3 span {
  display: block;
  font-size: 30px;
  color: #eba100;
  letter-spacing: .1em;
}
#top-about .inbox {
  position: relative;
  z-index: 1;
}
#top-about .inbox:before {
  position: absolute;
  content: '';
  background: url('../img/top/about-illust.png?1668394427');
  width: 169px;
  height: 231px;
  top: 147px;
  right: auto;
  bottom: auto;
  left: -35px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
}
#top-about .txt-blc {
  width: 950px;
  margin: 0 auto 55px auto;
  background: #fff;
  border-radius: 41px;
  padding: 40px 40px 35px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: relative;
  z-index: 1;
}
#top-about .txt-blc:before {
  position: absolute;
  content: '';
  background: url('../img/top/about-box_illust.png?1668394427');
  width: 169px;
  height: 185px;
  top: auto;
  right: -50px;
  bottom: -25px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#top-about .txt-blc p span {
  color: #eba100;
  font-weight: bold;
}
#top-about .more-btn {
  margin-bottom: 25px;
}

/*--------------------------------
私たちにできること
---------------------------------*/
#top-company {
  padding: 75px 0;
}
#top-company h3 {
  width: 585px;
  margin: 0 auto 50px auto;
  background: url(../img/top/service-ttl_bdr.png) bottom center no-repeat;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 30px;
}
#top-company h3 span {
  display: block;
  font-size: 30px;
  color: #eba100;
}
#top-company .bibimoko-house {
  margin-bottom: 15px;
}
#top-company .bibimoko-txt {
  width: 580px;
  margin: 0 auto 70px auto;
  position: relative;
}
#top-company .bibimoko-txt:before, #top-company .bibimoko-txt:after {
  position: absolute;
  content: '';
  width: 29px;
  height: 37px;
  background: url(../img/top/service-txt_deco.png) no-repeat;
  top: 12px;
}
#top-company .bibimoko-txt:before {
  left: 0;
}
#top-company .bibimoko-txt:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#top-company .box {
  position: relative;
  background: #fff;
  border: 2px solid #eba100;
  border-radius: 30px;
  padding: 60px 130px 35px 130px;
}
#top-company .box h4 {
  width: 675px;
  margin: 0 auto;
  background: #eba100;
  color: #fff;
  font-size: 24px;
  padding: 5px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  border-radius: 32px;
}
#top-company .box li {
  width: 50%;
  text-align: left;
  padding-left: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 10px;
  background: url(../img/top/service-check_icon.png) left center no-repeat;
}
#top-company .box li:nth-child(2n+1):nth-last-child(-n+2), #top-company .box li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}
#top-company .more-btn {
  margin-top: 55px;
}

/*--------------------------------
びびもこハウスを動画から詳しく見る
---------------------------------*/
#top-movie {
  padding: 65px 0 90px 0;
  background: url(../img/top/movie-deco.png) left 3.385% bottom 60px no-repeat, url(../img/top/movie-illust.png) right 6.25% bottom no-repeat, url(../img/top/movie-bg.png) center;
  background-size: 28.9583% , 15.885% , cover;
}
#top-movie h3 {
  width: 805px;
  margin: 0 auto 65px auto;
  font-size: 40px;
  position: relative;
  color: #fff;
}
#top-movie h3:before, #top-movie h3:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 48px;
  background: #fff;
  bottom: 25px;
}
#top-movie h3:before {
  left: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
#top-movie h3:after {
  right: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
#top-movie h3 span {
  font-size: 60px;
}
#top-movie .movie {
  width: 785px;
  margin: 0 auto;
}
#top-movie .movie video {
  width: 100%;
  height: 425px;
}

/*--------------------------------
まちねこプロジェクト
---------------------------------*/
#top-project {
  padding: 85px 0;
}
#top-project .box {
  border: 4px solid #4e2b17;
  background: url(../img/top/project-box_bg.png) center no-repeat;
  background-size: cover;
  border-radius: 54px;
  position: relative;
  padding: 45px 0 55px 0;
}
#top-project .box:before, #top-project .box:after {
  position: absolute;
  content: '';
  width: 233px;
  height: 98px;
  background: url(../img/top/project-flg.png) no-repeat;
  top: 0;
}
#top-project .box:before {
  left: 0;
}
#top-project .box:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#top-project .box h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
  margin-bottom: 45px;
}
#top-project .box h3 span {
  display: block;
  font-size: 30px;
  color: #eba100;
}
#top-project .box .area {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 70px;
}
#top-project .box .area span {
  position: relative;
  z-index: 1;
}
#top-project .box .area span:before {
  width: 100%;
  height: 26px;
  position: absolute;
  content: '';
  z-index: -1;
  background: #f7dd00;
  left: 0;
  right: 0;
  bottom: 0;
}

/*--------------------------------
日常を知る / 採用情報
---------------------------------*/
#gallery-recruit a {
  width: 50%;
  display: block;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 490px;
  position: relative;
  z-index: 1;
}
#gallery-recruit a:first-child {
  background: url(../img/top/gallery-bg.png) center no-repeat;
  background-size: cover;
}
#gallery-recruit a:last-child {
  background: url(../img/top/recruit-bg.png) center no-repeat;
  background-size: cover;
}
#gallery-recruit a:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 137, 13, 0.7);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
#gallery-recruit a:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 45px;
  content: '';
  width: 45px;
  height: 45px;
  background: url(../img/top/gallery-recruit-arr.png) no-repeat;
}
#gallery-recruit a:hover {
  opacity: 1;
}
#gallery-recruit a:hover:before {
  background: rgba(255, 137, 13, 0.85);
}
#gallery-recruit a .frame {
  padding: 125px 0 120px 0;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
}
#gallery-recruit a h3 {
  width: 401px;
  margin: 0 auto 15px auto;
  background: url(../img/top/gallery-recruit-bdr.png) bottom center no-repeat;
  padding-bottom: 20px;
  font-size: 40px;
  color: #fff;
}
#gallery-recruit a h3 span {
  color: #f7dd00;
  display: block;
  font-size: 30px;
}
#gallery-recruit a p {
  font-weight: bold;
  color: #fff;
  font-size: 19px;
}
#gallery-recruit a ul {
  margin-top: 5px;
}
#gallery-recruit a ul li {
  background: #fff;
  border-radius: 7px;
  font-size: 28px;
  font-weight: bold;
  color: #eba100;
  margin-right: 10px;
  padding: 0 5px;
}
#gallery-recruit a ul li:last-child {
  margin-right: 0;
}

/*--------------------------------
お知らせ / イベント
---------------------------------*/
#news-event {
  padding: 100px 0 80px 0;
  position: relative;
}
#news-event:before {
  position: absolute;
  content: '';
  background: url('../img/top/news-illust.png?1668394430');
  width: 146px;
  height: 206px;
  top: auto;
  right: auto;
  bottom: -40px;
  left: 9.27%;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#news-event section {
  width: 515px;
}
#news-event section h3 {
  font-size: 40px;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.5;
}
#news-event section h3 span {
  display: block;
  font-size: 30px;
  color: #eba100;
}
#news-event section article {
  text-align: left;
  margin-bottom: 20px;
}
#news-event section article:last-child {
  margin-bottom: 0;
}
#news-event section article a {
  display: block;
  border-radius: 18px;
  background: #fff;
  padding: 15px;
}
#news-event section article a:hover {
  opacity: 1;
  background: #4e2b17;
}
#news-event section article a:hover .category-label li {
  background: #fff;
  color: #4e2b17;
}
#news-event section article a:hover h4 {
  color: #fff;
}
#news-event section article time {
  font-size: 14px;
  color: #dbbe9f;
  width: 85px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#news-event section article .category-label {
  width: 390px;
}
#news-event section article .category-label li {
  background: #4e2b17;
  color: #fff;
  font-size: 14px;
  padding: 2px 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#news-event section article h4 {
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-top: 5px;
}
#news-event .more-btn {
  margin-top: 60px;
}

/*--------------------------------
お問い合わせ
---------------------------------*/
.top-contact {
  background: url(../img/top/about-bg.png);
}

#com-contact {
  padding: 75px 0 0 0;
}
#com-contact .inbox {
  padding-bottom: 80px;
  background: url(../img/top/contact-illust.png) right bottom no-repeat;
}
#com-contact h3 {
  font-size: 40px;
  margin-bottom: 55px;
  font-weight: 700;
}
#com-contact h3 span {
  display: block;
  font-size: 30px;
  color: #eba100;
}
#com-contact .wrap {
  width: 750px;
  margin: 0 auto;
}
#com-contact .wrap a {
  border-radius: 41px;
  width: 350px;
  color: #fff;
  position: relative;
  height: 80px;
  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;
  overflow: inherit;
}
#com-contact .wrap a:before, #com-contact .wrap a:after {
  position: absolute;
  content: '';
  top: -21px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 11.5px 21px 11.5px;
  border-color: transparent transparent #4e2b17 transparent;
  z-index: 1;
}
#com-contact .wrap a:before {
  left: 45px;
}
#com-contact .wrap a:after {
  right: 45px;
}
#com-contact .wrap a:first-child {
  font-size: 21px;
  font-weight: bold;
  background: url(../img/top/contact-mail_icon.png) left 40px center no-repeat, #4e2b17;
  padding-left: 35px;
}
#com-contact .wrap a:last-child {
  font-size: 24px;
  font-weight: bold;
  padding-left: 35px;
  background: url(../img/top/contact-tel_icon.png) left 65px center no-repeat, #4e2b17;
}

/*==========================================
footer
===========================================*/
#footer {
  background: #eba100;
  padding: 80px 0 85px 0;
}
#footer .side-fixed {
  width: 55px;
  position: fixed;
  right: 0;
  bottom: 25vh;
  background: #fff;
  border-radius: 18px 0 0 18px;
  border: 2px solid #55b80d;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0;
  z-index: 1001;
}
#footer .side-fixed:before, #footer .side-fixed:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 10px 6px;
  border-color: transparent transparent #55b80d transparent;
  position: absolute;
  content: '';
  top: -10px;
}
#footer .side-fixed:before {
  left: 8px;
}
#footer .side-fixed:after {
  right: 5px;
}
#footer .side-fixed li {
  margin-bottom: 30px;
}
#footer .side-fixed li:last-child {
  margin-bottom: 0;
}
#footer .inbox {
  position: relative;
}
#footer .ft-left {
  width: 325px;
  text-align: left;
}
#footer .ft-left .ft-logo {
  margin-bottom: 35px;
}
#footer .ft-left address {
  margin-bottom: 15px;
}
#footer .ft-left address:last-child {
  margin-bottom: 0;
}
#footer .ft-left address dt span {
  background: #4e2b17;
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  padding: 3px 10px;
}
#footer .ft-left address dd {
  font-size: 14px;
  color: #4c4035;
}
#footer .ft-right {
  width: 535px;
}
#footer .ft-right li {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
#footer .ft-right li:last-child {
  margin-bottom: 0;
}
#footer .ft-right li a {
  color: #fff;
}
#footer .ft-contact {
  width: 600px;
  margin-top: 35px;
}
#footer .ft-contact .tel,
#footer .ft-contact .mail {
  width: 200px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  height: 50px;
  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;
}
#footer .ft-contact .tel {
  background: url(../img/common/ft-tel_icon.png) left 20px center no-repeat, #55b80d;
  padding-left: 20px;
}
#footer .ft-contact .mail {
  background: url(../img/common/ft-mail_icon.png) left 20px center no-repeat, #55b80d;
  padding-left: 20px;
}
#footer .ft-contact .sns {
  width: 150px;
}
#footer .ft-contact .sns dt {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
  position: relative;
}
#footer .ft-contact .sns dt:before, #footer .ft-contact .sns dt:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 15px;
  background: #fff;
  bottom: 7px;
}
#footer .ft-contact .sns dt:before {
  left: -5px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
#footer .ft-contact .sns dt:after {
  right: -5px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
#footer .ft-contact .sns dd {
  width: 100px;
  margin: 0 auto;
}

#copyright {
  font-size: 10px;
  word-break: normal;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
}
#copyright a {
  color: #fff;
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  position: fixed;
  bottom: 8%;
  right: 3%;
  z-index: 999;
}

/*==========================================
サブビジュアル
===========================================*/
#sv {
  position: relative;
  height: 530px;
  background: url(../img/sv/sv.png) center no-repeat;
  background-size: cover;
}
#sv h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 735px;
  margin: 0 auto;
  background: #fbf8e9;
  border-radius: 48px;
  padding: 25px 50px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.6;
}
#sv h2:before {
  position: absolute;
  content: '';
  background: url('../img/sv/sv-ttl_footprint.png?1668394425');
  width: 78px;
  height: 121px;
  top: -55px;
  right: -15px;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#sv h2:after {
  position: absolute;
  content: '';
  background: url('../img/sv/sv-ttl_tail.png?1668394426');
  width: 111px;
  height: 128px;
  top: auto;
  right: -96px;
  bottom: 35px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#sv h2 .en {
  display: block;
  font-size: 32px;
  color: #eba100;
  text-transform: capitalize;
}
#sv h2 .ja {
  display: block;
  font-size: 48px;
  text-shadow: #fbf8e9 3px 0px,  #fbf8e9 -3px 0px, #fbf8e9 0px -3px, #fbf8e9 0px 3px, #fbf8e9 3px 3px , #fbf8e9 -3px 3px, #fbf8e9 3px -3px, #fbf8e9 -3px -3px, #fbf8e9 1px 3px,  #fbf8e9 -1px 3px, #fbf8e9 1px -3px, #fbf8e9 -1px -3px, #fbf8e9 3px 1px,  #fbf8e9 -3px 1px, #fbf8e9 3px -1px, #fbf8e9 -3px -1px;
  position: relative;
  z-index: 1;
}
#sv h2 .ja:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 40px;
  background: #eba100;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-bottom: 65px;
  font-weight: 700;
}
.ttl01 .en {
  display: block;
  font-size: 30px;
  color: #eba100;
}
.ttl01 .ja {
  display: block;
  font-size: 40px;
}

.ttl02 {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  padding-left: 40px;
  margin-bottom: 15px;
  background: url(../img/common/ttl02_icon.png) left center no-repeat;
}

/*==========================================
私たちについて
===========================================*/
/*-------------------------------
人も猫も幸せに生きられる社会を目指して
--------------------------------*/
#concept {
  background: url(../img/about/concept-illust.png) right 6.875% bottom no-repeat, url(../img/top/about-bg.png);
  background-size: 13.48958% , auto;
}
#concept .box {
  background: url(../img/about/concept-footprint.png) left -10px bottom -5px no-repeat, #fff;
  border: 2px solid #4e2b17;
  border-radius: 50px;
  padding: 45px 110px 40px 110px;
}
#concept .box p span {
  font-weight: bold;
  color: #eba100;
}

/*-------------------------------
びびもこ商店の魅力
--------------------------------*/
#attraction .ttl01 {
  margin-bottom: 85px;
}
#attraction .attraction-list {
  margin-bottom: 85px;
}
#attraction .attraction-list:last-child {
  margin-bottom: 0;
}
#attraction .attraction-list .txt-blc {
  width: 560px;
}
#attraction .attraction-list .txt-blc h4 {
  font-size: 30px;
  padding: 10px 0;
  text-align: center;
  background: url(../img/about/attraction-bdr.png) top center no-repeat, url(../img/about/attraction-bdr.png) bottom center no-repeat;
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
}
#attraction .attraction-list .txt-blc h4 span {
  position: absolute;
  left: 0;
  top: -52px;
  font-size: 30px;
  color: #eba100;
}
#attraction .attraction-list .txt-blc p {
  letter-spacing: .04em;
}
#attraction .attraction-list .txt-blc p span {
  color: #eba100;
  font-weight: bold;
}
#attraction .attraction-list .effect-box {
  width: 860px;
  margin: 70px auto 0 auto;
  position: relative;
  background: #fff;
  border: 2px solid #eba100;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 110px 25px 110px;
}
#attraction .attraction-list .effect-box:after {
  position: absolute;
  content: '';
  background: url('../img/about/effect-illust.png?1668394426');
  width: 89px;
  height: 163px;
  top: auto;
  right: -18px;
  bottom: -3px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#attraction .attraction-list .effect-box h5 {
  width: 520px;
  background: #eba100;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 32px;
  padding: 10px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: -35px;
  margin: 0 auto;
}
#attraction .attraction-list .effect-box .effect-list {
  width: 200px;
}
#attraction .attraction-list .effect-box .effect-list dt {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
#attraction .attraction-list .effect-box .effect-list dt span {
  position: relative;
  z-index: 1;
  padding: 0 5px;
}
#attraction .attraction-list .effect-box .effect-list dt span:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 20px;
  background: #f7dd00;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#attraction .attraction-list .effect-box .effect-list dd li {
  text-align: left;
  font-size: 15px;
}
#attraction .attraction-list .effect-box .effect-list dd li:before {
  content: '・';
}
#attraction .attraction-list .more-btn {
  width: 340px;
}
#attraction .attraction-list:first-child .more-btn {
  margin: 50px auto 0 auto;
}
#attraction .attraction-list:last-child .more-btn {
  margin: 0 auto 0 0;
}

/*==========================================
私たちにできること
===========================================*/
/*-------------------------------
びびもこ商店の事業案内
--------------------------------*/
#business-guide {
  padding-bottom: 230px;
}
#business-guide h4 {
  width: 370px;
  margin: 0 auto 40px auto;
  background: #eba100;
  color: #fff;
  border-radius: 23px;
  padding: 5px 0;
  font-size: 24px;
}
#business-guide .bibimoko-house {
  margin-bottom: 65px;
  position: relative;
}
#business-guide .bibimoko-house:before {
  position: absolute;
  content: '';
  background: url('../img/company/service-illust.png?1668394429');
  width: 77px;
  height: 139px;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#business-guide .img-blc img {
  border-radius: 40px;
}
#business-guide .txt-blc {
  width: 560px;
  border: 1px solid #eba100;
  border-radius: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/company/service-box_bg.png);
  padding: 45px 25px;
  letter-spacing: .04em;
}

/*-------------------------------
施設状況
--------------------------------*/
#facility {
  padding: 55px 0 100px 0;
  background: url(../img/top/about-bg.png);
  position: relative;
}
#facility:before {
  position: absolute;
  content: '';
  background: url('../img/company/facility-top_bg.png?1668394428');
  width: 1920px;
  height: 135px;
  top: -135px;
  right: 0;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
  width: 100%;
  background-position: 50% 50%;
}
#facility .inbox {
  position: relative;
}
#facility .ttl01 {
  position: absolute;
  left: 0;
  right: 0;
  top: -130px;
}
#facility .facility-wrap {
  margin-bottom: 70px;
}
#facility .facility-wrap:last-child {
  margin-bottom: 0;
}
#facility .vacancy {
  margin-bottom: 65px;
}
#facility .vacancy table {
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#facility .vacancy table th, #facility .vacancy table td {
  border: 1px solid #efefef;
  vertical-align: middle;
  text-align: center;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  font-weight: bold;
}
#facility .vacancy table th {
  width: 270px;
  background: #eba100;
  color: #fff;
  border-top: none;
}
#facility .vacancy table th:first-child {
  border-radius: 14px 0 0 0;
  border-left: none;
}
#facility .vacancy table th:last-child {
  border-right: none;
  border-radius: 0 14px 0 0;
}
#facility .vacancy table td {
  background: #fff;
  border-bottom: none;
}
#facility .vacancy table td:first-child {
  border-left: none;
  border-radius: 0 0 0 14px;
}
#facility .vacancy table td:last-child {
  border-right: none;
  border-radius: 0 0 14px 0;
}
#facility .facility-name {
  width: 785px;
  margin: 0 auto 50px auto;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: #4e2b17;
  padding: 5px 0;
  border-radius: 25px;
}
#facility .wrap .left-wrap {
  width: 540px;
}
#facility .wrap .left-wrap .cost-wrap {
  margin-top: 30px;
}
#facility .wrap .left-wrap .com-dl dt {
  width: 145px;
  text-align: center;
}
#facility .wrap .left-wrap .com-dl dd {
  width: 395px;
}
#facility .wrap .img-blc {
  width: 495px;
}
#facility .wrap .img-blc img {
  max-width: 100%;
}
#facility .layout {
  margin-top: 55px;
}
#facility .layout li {
  width: 340px;
  margin-right: 30px;
  margin-bottom: 25px;
}
#facility .layout li:nth-child(3n+1):nth-last-child(-n+3), #facility .layout li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#facility .layout li:nth-child(3n), #facility .layout li:last-child {
  margin-right: 0;
}
#facility .layout li img {
  max-width: 100%;
}

/*-------------------------------
漫画
--------------------------------*/
#manga .manga-wrap {
  width: 640px;
  margin: 0 auto 55px auto;
}
#manga .manga-wrap img {
  max-width: 100%;
}

/*-------------------------------
一日の流れ
--------------------------------*/
#flow {
  background: url(../img/company/flow-footprint.png) left 3.90625% top 80px no-repeat, url(../img/company/flow-illust.png) right 8.3333% bottom no-repeat, url(../img/top/about-bg.png);
  background-size: 26.51% , 16.041% , auto;
}
#flow .flow-lists {
  width: 600px;
  margin: 0 auto;
  position: relative;
}
#flow .flow-lists:before {
  position: absolute;
  content: '';
  width: 2px;
  height: 93%;
  background: #4e2b17;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 25px;
}
#flow .flow-lists li {
  position: relative;
  margin-bottom: 45px;
}
#flow .flow-lists li:before {
  position: absolute;
  content: '';
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f7dd00;
  top: 15px;
}
#flow .flow-lists li:last-child {
  margin-bottom: 0;
}
#flow .flow-lists li:nth-child(odd) {
  width: 260px;
  margin-left: auto;
  text-align: left;
}
#flow .flow-lists li:nth-child(odd):before {
  left: -59px;
}
#flow .flow-lists li:nth-child(even) {
  width: 245px;
  text-align: right;
}
#flow .flow-lists li:nth-child(even):before {
  right: -74px;
}
#flow .flow-lists li dt {
  font-size: 24px;
  font-weight: 700;
}
#flow .flow-lists li dd {
  font-size: 15px;
  letter-spacing: .04em;
}

/*==========================================
まちねこプロジェクト
===========================================*/
/*-------------------------------
イベント
--------------------------------*/
#event .ttl01 {
  width: 250px;
  padding-bottom: 100px;
  margin-bottom: 0;
  background: url(../img/machineko/event-deco.png) bottom center no-repeat;
}
#event .inbox {
  position: relative;
  min-height: 250px;
}
#event .news-wrap {
  width: 795px;
}
#event .news-wrap article {
  text-align: left;
  margin-bottom: 20px;
}
#event .news-wrap article:last-child {
  margin-bottom: 0;
}
#event .news-wrap article a {
  display: block;
  border-radius: 18px;
  background: #fff;
  padding: 15px;
}
#event .news-wrap article a:hover {
  opacity: 1;
  background: #4e2b17;
}
#event .news-wrap article a:hover .category-label li {
  background: #fff;
  color: #4e2b17;
}
#event .news-wrap article a:hover h4 {
  color: #fff;
}
#event .news-wrap article time {
  font-size: 14px;
  color: #dbbe9f;
  width: 85px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#event .news-wrap article .category-label {
  width: 665px;
}
#event .news-wrap article .category-label li {
  background: #4e2b17;
  color: #fff;
  font-size: 14px;
  padding: 2px 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#event .news-wrap article h4 {
  margin-top: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#event .more-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
}

/*-------------------------------
まちねこ活動について
--------------------------------*/
#activity {
  background: url(../img/top/about-bg.png);
}
#activity .txt-blc {
  width: 585px;
}
#activity .txt-blc p {
  letter-spacing: .04em;
}
#activity .txt-blc .box {
  background: #fff;
  border: 2px solid #f7bb1e;
  padding: 15px;
  border-radius: 21px;
}
#activity .txt-blc .box p {
  font-weight: bold;
}
#activity .txt-blc .box address {
  font-size: 15px;
}

/*-------------------------------
猫ともクラブ in 大阪狭山
--------------------------------*/
#nekotomoclub .about-nekotomo {
  width: 830px;
  margin: 0 auto 85px auto;
  background: #ffedc5;
  padding: 35px 75px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 56px;
}
#nekotomoclub .about-nekotomo h4 {
  width: 600px;
  margin: 0 auto 25px auto;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 20px;
  background: url(../img/about/attraction-bdr.png) bottom center no-repeat;
}
#nekotomoclub .box {
  position: relative;
  background: #fff;
  border: 2px solid #eba100;
  border-radius: 25px;
  padding: 60px 40px 45px 60px;
  margin-bottom: 75px;
}
#nekotomoclub .box h4 {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  width: 675px;
  margin: 0 auto;
  font-size: 24px;
  color: #fff;
  border-radius: 28px;
  background: #eba100;
  padding: 5px 0;
}
#nekotomoclub .box .check-lists li {
  padding-left: 25px;
  letter-spacing: .04em;
  text-align: left;
  margin-bottom: 10px;
  background: url(../img/top/service-check_icon.png) left center no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#nekotomoclub .box .check-lists li:nth-child(odd) {
  width: 300px;
}
#nekotomoclub .box .check-lists li:nth-child(even) {
  width: 635px;
}
#nekotomoclub .box .check-lists li:nth-last-child(-n+2) {
  margin-bottom: 0;
}
#nekotomoclub .wrap {
  width: 950px;
  margin: 0 auto;
}
#nekotomoclub .wrap .left-wrap {
  width: 410px;
  text-align: left;
  background: url(../img/machineko/nekotomo-club-deco.png) right top no-repeat;
}
#nekotomoclub .wrap .left-wrap ul {
  margin-bottom: 40px;
}
#nekotomoclub .wrap .left-wrap ul li:before {
  content: '・';
}
#nekotomoclub .wrap .left-wrap address {
  font-size: 15px;
}
#nekotomoclub .wrap .left-wrap address p{
  margin-bottom: 25px;
}
#nekotomoclub .wrap .left-wrap address p:last-child{
  margin-bottom: 0;
}

/*-------------------------------
地域猫活動
--------------------------------*/
#community {
  background: url(../img/top/about-bg.png);
}
#community .box {
  width: 830px;
  margin: 0 auto 45px auto;
  background: #ffedc5;
  padding: 35px 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 56px;
}
#community .box h4 {
  width: 600px;
  margin: 0 auto 25px auto;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 20px;
  background: url(../img/about/attraction-bdr.png) bottom center no-repeat;
}
#community .box p {
  letter-spacing: .04em;
}
#community .wrap {
  width: 970px;
  margin: 0 auto;
}
#community .wrap .txt-blc {
  width: 565px;
  background: url(../img/machineko/community-illust.png) right bottom no-repeat;
}
#community .wrap .txt-blc h4 {
  width: 520px;
  padding: 5px 0;
  background: #f7dd00;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 32px;
  position: relative;
  margin-bottom: 25px;
}
#community .wrap .txt-blc h4:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #f7dd00 transparent transparent transparent;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -15px;
}

/*-------------------------------
お問い合わせ
--------------------------------*/
.lower-contact {
  background: url(../img/machineko/contact-bg.png);
}

/*==========================================
採用情報
===========================================*/
/*-------------------------------
びびもこハウスでは
一緒に働いてくださる方を募集しています！
--------------------------------*/
#description h3 {
  width: 970px;
  margin: 0 auto 80px auto;
  position: relative;
}
#description h3:before, #description h3:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 65px;
  background: #4e2b17;
  bottom: 10px;
}
#description h3:before {
  left: 0;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
#description h3:after {
  right: 0;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
#description .box {
  width: 835px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  border-radius: 30px;
  border: 2px solid #eba100;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 55px 170px 25px 180px;
}
#description .box:before {
  position: absolute;
  content: '';
  background: url('../img/recruit/recruit-illust.png?1668394425');
  width: 132px;
  height: 186px;
  top: auto;
  right: auto;
  bottom: -33px;
  left: -15px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#description .box:after {
  position: absolute;
  content: '';
  background: url('../img/recruit/recruit-footprint.png?1668394425');
  width: 78px;
  height: 121px;
  top: -15px;
  right: 15px;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#description .box h4 {
  position: absolute;
  width: 500px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -30px;
  background: #eba100;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 32px;
  padding: 5px 0;
}
#description .box li {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  padding-left: 25px;
  background: url(../img/top/service-check_icon.png) left center no-repeat;
  margin-bottom: 10px;
}
#description .box li:nth-last-child(-n+2) {
  margin-bottom: 0;
}

/*-------------------------------
募集要項
--------------------------------*/
#requirement {
  background: url(../img/top/about-bg.png);
}
#requirement .requirement-wrap {
  margin-bottom: 55px;
}
#requirement .requirement-wrap:last-child {
  margin-bottom: 0;
}

/*==========================================
会社概要
===========================================*/
/*-------------------------------
代表挨拶
--------------------------------*/
#greeting {
  padding-bottom: 200px;
  background: url(../img/info/greeting-footprint.png) left 7.552% bottom 55px no-repeat;
  background-size: 27.76%;
}
#greeting .inbox {
  background: url(../img/info/greeting-illust.png) right 100px top 30px no-repeat;
}
#greeting .box {
  position: relative;
  width: 800px;
  margin-left: 45px;
  border: 2px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/company/service-box_bg.png);
  border-radius: 48px;
  padding: 60px 30px;
}
#greeting .box .img-blc {
  position: absolute;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  right: -195px;
  bottom: -105px;
}
#greeting .box .img-blc img {
  border-radius: 50%;
  max-width: 100%;
  border: 2px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*-------------------------------
会社情報
--------------------------------*/
#info {
  background: url(../img/info/info-illust.png) left 2.6041% bottom 400px no-repeat, url(../img/top/about-bg.png);
  background-size: 18.28125% , auto;
}
#info .com-dl {
  margin-bottom: 50px;
}
#info .introduction {
  margin-bottom: 85px;
}
#info .introduction li {
  width: 340px;
}
#info .introduction li figure {
  position: relative;
  z-index: 1;
}
#info .introduction li figure:before, #info .introduction li figure:after {
  position: absolute;
  content: '';
  width: 110px;
  height: 61px;
  background: url(../img/info/ribbon.png) no-repeat;
  top: 0;
  z-index: -1;
}
#info .introduction li figure:before {
  left: 0;
}
#info .introduction li figure:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#info .introduction li figure figcaption {
  width: 270px;
  margin: 0 auto;
  background: #eba100;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  margin: 0 auto;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
#info .introduction li figure figcaption span {
  display: block;
  font-size: 18px;
}
#info .introduction li img {
  width: 303px;
  height: 303px;
  border: 2px solid;
  border-radius: 50%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#info #g-map .ttl01 .ja {
  padding-left: 40px;
  background: url(../img/info/pin.png) left center no-repeat;
  display: inline-block;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin-left: auto;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 2px;
  border: 2px solid #2e2e2e;
  background: #fff;
  -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: .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: .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: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ 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;
}

/*==========================================
ギャラリー
===========================================*/
#gallery .gallery-lists &gt; li {
  width: 340px;
  margin-right: 30px;
  margin-bottom: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#gallery .gallery-lists &gt; li:nth-child(3n+1):nth-last-child(-n+3), #gallery .gallery-lists &gt; li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#gallery .gallery-lists &gt; li:nth-child(3n), #gallery .gallery-lists &gt; li:last-child {
  margin-right: 0;
}
#gallery .gallery-lists &gt; li .thumb {
  width: 100%;
  height: 340px;
}
#gallery .gallery-lists &gt; li a {
  display: block;
}
#gallery .gallery-lists .category-label li {
  background: #4e2b17;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 14px;
  padding: 2px 5px;
}
#gallery .gallery-lists .category-label li:last-child {
  margin-right: 0;
}
#gallery .gallery-lists figcaption {
  text-align: left;
  font-size: 17px;
}
#gallery .img-eff {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}
#gallery .img-eff:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  opacity: 0;
}
#gallery .img-eff:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#gallery .img-eff:hover:before {
  opacity: 1;
}
#gallery .gallery-img .gallery-img-lists li {
  width: 520px;
  height: 315px;
  margin-bottom: 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#gallery .gallery-img .gallery-img-lists li:nth-child(2n+1):nth-last-child(-n+2), #gallery .gallery-img .gallery-img-lists li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}
#gallery .comment {
  text-align: left;
  margin-bottom: 25px;
}

/*==========================================
お知らせ
===========================================*/
.post-wrap .column-lists &gt; li {
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists &gt; 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 &gt; li a:hover .more-btn {
  background: #fff;
  color: #eba100;
}
.post-wrap .column-lists &gt; 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: #eba100;
  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 #eba100;
  color: #fff;
  background: #eba100;
  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: bold;
}
.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: #eba100;
  border: 1px solid #eba100;
  -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: 0 20px 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-wrap .post-content img {
  max-width: 100%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}
.single-meta time {
  font-size: 11px;
  text-align: left;
  width: 85px;
  padding: 3px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-meta .category-label {
  width: 950px;
  font-size: 10px;
  margin-left: 10px;
}
.single-meta .category-label li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.single-meta .category-label li:last-child {
  margin-right: 0;
}
.single-meta .category-label li a {
  border: 1px solid #eba100;
  color: #eba100;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #eba100;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.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 .contact-form {
  margin-bottom: 20px;
}
#contact .contact-form dl dt {
  width: 320px !important;
  position: relative;
  vertical-align: top;
}
#contact .contact-form dl dt em {
  position: absolute;
  top: 20px;
  right: 10px;
  color: #eba100;
  background: #fff;
  font-weight: 500;
  padding: 3px;
  font-size: 11px;
}
#contact .contact-form dl dd {
  width: 760px;
}
#contact .contact-form dl dd li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#contact .contact-form dl dd li:last-child {
  margin-right: 0;
}
#contact .contact-form dl dd ::-webkit-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}
#contact .contact-form dl dd :-ms-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}
#contact .contact-form dl dd ::-ms-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}
#contact .contact-form dl dd ::placeholder {
  color: rgba(204, 204, 204, 0.8);
}
#contact .contact-form .txtarea {
  width: 640px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#contact .contact-form #post01,
#contact .contact-form #post02 {
  width: 150px;
}
#contact .contact-form #addr21 {
  margin-top: 15px;
}
#contact .contact-form textarea {
  height: 260px;
  line-height: 1.8;
}
#contact .contact-form .error-text {
  color: #ff0000;
  margin-bottom: 5px;
}
#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 10px;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .thumb img {
  max-width: 100%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 5px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 5px;
  background: #eba100;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #f7dd00;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .select-file,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input#file-upload-button {
  background: #f7dd00;
}
#contact .g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 25px;
}
#contact input[type='button'][disabled],
#contact input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}
#contact input[type='button'],
#contact input[type='submit'],
#contact .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: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #eba100;
  color: #eba100;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #eba100;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}
#contact .check-btn {
  width: 260px;
  margin: 0 auto;
  margin-top: 20px;
}
#contact .back-btn {
  width: 270px;
  margin: 0 auto;
  margin-right: 40px;
}
#contact .contact-submits-wrap {
  margin-top: 20px;
}
#contact .send-btn {
  width: 240px;
  margin: 0 auto;
}
#contact .privacy-agree {
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー
===========================================*/
#privacy .privacy-box {
  margin-bottom: 40px;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 25px;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 25px;
}

/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
</pre></body></html>