@charset "UTF-8";

/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

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: #7d7361;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 1.6rem;
  word-break: normal;
  background: #fdfff3;
}

#wrapper {
  min-width: 1200px;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
a[href^="tel:"] {
  pointer-events: none;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  width: 1080px;
  margin: 0 auto;
}

.com-pd {
  padding: 115px 0;
}

.com-pt {
  padding-top: 115px;
}

.com-pb {
  padding-bottom: 115px;
}

.com-mb {
  margin-bottom: 115px;
}

/*==========================================
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: #35a848;
}
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;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  background: #fff;
  padding: 10px 20px;
}
#header .hd-right {
  width: 820px;
}
#header .hd-right .hd-info {
  width: 480px;
}
#header .hd-right .hd-info .num {
  color: #35a848;
  font-size: 3.2rem;
  padding-left: 20px;
  line-height: 1.2;
  background: url(../img/common/hd-tel_icon.png) left center no-repeat;
}
#header .hd-right .hd-info .num small {
  font-size: 1.6rem;
}
#header .hd-right .hd-info .open {
  font-size: 1.4rem;
  font-weight: 700;
  color: #35a848;
}
#header .hd-right .hd-info .open span {
  background: #ddefc6;
  padding: 0 3px;
  border-radius: 6px;
}
#header .hd-right .hd-info .attention {
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: #4d4d4d;
  margin-top: 5px;
}
#header .hd-right .mail {
  width: 220px;
  display: block;
  color: #fff;
  background: url(../img/common/hd-mail_icon.png) left 10px center no-repeat, #41c189;
  padding: 15px 5px 15px 30px;
  font-size: 1.5rem;
  border-radius: 10px;
}
#header .hd-right .sns {
  width: 90px;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  position: relative;
  max-height: 780px;
  min-height: 545px;
  height: 40.6245vw;
  background: url(../img/top/mv/mv_btm.png) bottom center/100% no-repeat, url(../img/top/mv/mv_bg_l.png) left top/47.91666% no-repeat, url(../img/top/mv/mv_bg_r.png) right bottom/47.91666% no-repeat, url(../img/top/mv/mv_bg.jpg) center/cover no-repeat;
}
#mv h2 {
  position: absolute;
  bottom: 11%;
  right: 21.875%;
  width: 34.73958%;
}

/*==========================================
nav
===========================================*/
.lower-nav {
  background: #fff;
}

#gnav {
  padding: 10px 0;
}
#gnav li {
  font-size: 1.8rem;
  border-left: 1px dotted #c1e099;
}
#gnav li:first-child {
  border-left: none;
}
#gnav li a {
  padding: 0 20px;
  display: block;
  color: #35a848;
}
#gnav li a span {
  padding-bottom: 5px;
}
#gnav li a:hover span {
  border-bottom: 1px dashed #35a848;
}
#gnav .current span {
  border-bottom: 1px dashed #35a848;
}

/*==========================================
共通ブロック・要素
===========================================*/
.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 {
  display: block;
  padding: 12px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  background: #35a848;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.more-btn span {
  padding-left: 25px;
  background: url(../img/common/more-arr_white.png) left center no-repeat;
}
.more-btn:hover {
  opacity: 1;
  background: #85c04b;
}

.bd-r20 {
  border-radius: 20px;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  border-bottom: 1px solid #c1e099;
}
.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 {
  background: #ddefc6;
  color: #35a848;
  padding: 15px 10px;
  width: 150px;
  vertical-align: top;
}
.com-dl > dl > dd {
  background: #fff;
  padding: 15px 20px;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}
.com-dl > dl:first-child dt {
  border-radius: 20px 0 0 0;
}
.com-dl > dl:first-child dd {
  border-radius: 0 20px 0 0;
}
.com-dl > dl:last-child dt {
  border-radius: 0 0 0 20px;
}
.com-dl > dl:last-child dd {
  border-radius: 0 0 20px 0;
}

/*==========================================
トップページ
===========================================*/
/*--------------------------------
お知らせ
---------------------------------*/
#top-news {
  padding: 50px 0 95px 0;
  background: #fdfff3;
}
#top-news .news-wrp {
  border: 10px solid #f2f6e8;
  border-radius: 20px;
  padding: 15px 25px;
  background: #fff;
  position: relative;
}
#top-news .news-wrp:before {
  position: absolute;
  content: '';
  background: url('../img/top/news-deco.png?1688096173');
  width: 133px;
  height: 108px;
  background-size: 100%;
  top: auto;
  right: auto;
  bottom: -10px;
  left: -20px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#top-news .news-wrp .news-wrp_ttl {
  width: 200px;
}
#top-news .news-wrp .news-wrp_ttl h3 {
  font-size: 4.2rem;
  color: #35a848;
}
#top-news .news-wrp .news-wrp_ttl .more-btn {
  background: #ddefc6;
  color: #35a848;
  border-radius: 32px;
  padding: 8px 0;
  position: relative;
  z-index: 10;
}
#top-news .news-wrp .news-wrp_ttl .more-btn:hover {
  background: #85c04b;
  color: #fff;
}
#top-news .news-wrp .news-wrp_ttl .more-btn:hover span {
  background: url(../img/common/more-arr_white.png) left center no-repeat;
}
#top-news .news-wrp .news-wrp_ttl .more-btn span {
  background: url(../img/common/more-arr_green.png) left center no-repeat;
}
#top-news .news-wrp .news-wrp_archive {
  width: 790px;
  text-align: left;
}
#top-news .news-wrp .news-wrp_archive article {
  border-bottom: 1px solid #c1e099;
}
#top-news .news-wrp .news-wrp_archive article:last-child {
  border-bottom: none;
}
#top-news .news-wrp .news-wrp_archive a {
  padding: 12px 0;
}
#top-news .news-wrp .news-wrp_archive time {
  width: 110px;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 6px;
  background: #35a848;
  text-align: center;
  padding: 4px 5px 4px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#top-news .news-wrp .news-wrp_archive time:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #fff;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 8px;
}
#top-news .news-wrp .news-wrp_archive h4 {
  width: 655px;
  font-size: 1.5rem;
}
#top-news .news-wrp .news-wrp_archive .category-label {
  margin-top: 5px;
}
#top-news .news-wrp .news-wrp_archive .category-label li {
  color: #85c04b;
  font-size: 1.2rem;
  position: relative;
  padding: 0 5px;
}
#top-news .news-wrp .news-wrp_archive .category-label li:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 14px;
  background: #85c04b;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

/*--------------------------------
一人ひとりに寄り添い、
状態に合わせたサポートをいたします
---------------------------------*/
#top-support {
  padding: 60px 0 115px 0;
  background: url(../img/top/support-top_bg.png) top center/100% no-repeat, url(../img/top/support-btm_bg.jpg) bottom center/100% no-repeat, #fff;
}
#top-support h3 {
  font-size: 4.2rem;
  color: #35a848;
  line-height: 1.6;
  padding-top: 85px;
  background: url(../img/top/about-ttl_icon.png) top center no-repeat;
  border-bottom: 14px solid #f1f8e2;
  width: 850px;
  margin: 0 auto 30px auto;
}
#top-support h3 span {
  color: #85c04b;
  font-size: 5.2rem;
}
#top-support .lead-txt {
  background: url(../img/top/about-inbox_left_deco.png) left top no-repeat, url(../img/top/about-inbox_right_deco.png) right bottom no-repeat;
  margin-bottom: 20px;
  padding-bottom: 55px;
  font-size: 1.8rem;
}
#top-support .lead-txt p {
  margin-bottom: 40px;
}
#top-support .lead-txt p:last-child {
  margin-bottom: 0;
}
#top-support .about-wrp {
  background: #f1f8e2;
  padding: 40px 25px 55px 40px;
  position: relative;
}
#top-support .about-wrp:before {
  position: absolute;
  content: '';
  background: url('../img/top/support-left_deco.png?1688096144');
  width: 266px;
  height: 153px;
  background-size: 100%;
  top: -40px;
  right: auto;
  bottom: auto;
  left: -20px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#top-support .about-wrp:after {
  position: absolute;
  content: '';
  background: url('../img/top/support-right_deco.png?1688096144');
  width: 98px;
  height: 97px;
  background-size: 100%;
  top: auto;
  right: -45px;
  bottom: -22px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#top-support .about-wrp h4 {
  font-size: 4.2rem;
  margin-bottom: 30px;
  color: #35a848;
  letter-spacing: .08em;
}
#top-support .about-wrp h4 span {
  border-bottom: 1px dashed #c1e099;
}
#top-support .about-wrp .txt-blc {
  width: 550px;
}
#top-support .about-wrp .txt-blc p span {
  font-weight: 700;
  color: #35a848;
}
#top-support .about-wrp .txt-blc .more-btn {
  position: relative;
  z-index: 10;
}

/*--------------------------------
ルチューレプシュケーについて
---------------------------------*/
#top-lucerepsyche h3 {
  padding: 35px 0;
  background: #35a848;
  color: #fff;
  font-size: 5.2rem;
  position: relative;
}
#top-lucerepsyche h3:before {
  position: absolute;
  content: '';
  background: url('../img/top/feature-ttl_arr.png?1688096190');
  width: 60px;
  height: 24px;
  background-size: 100%;
  top: auto;
  right: 0;
  bottom: -24px;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
}
#top-lucerepsyche h3 span {
  display: block;
  width: 950px;
  margin: 0 auto;
  position: relative;
}
#top-lucerepsyche h3 span:before, #top-lucerepsyche h3 span:after {
  width: 63px;
  height: 92px;
  position: absolute;
  content: '';
  background: url(../img/top/feature-ttl_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-lucerepsyche h3 span:before {
  left: 0;
}
#top-lucerepsyche h3 span:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#top-lucerepsyche .lucerepsyche-wrp {
  padding: 60px 0 120px 0;
  background: url(../img/top/feature-logo.png) right 1.302% top/22.03125% no-repeat, url(../img/top/feature-bg.png) bottom center no-repeat;
}
#top-lucerepsyche .lucerepsyche-wrp h4 {
  width: 765px;
  margin: 0 auto 85px auto;
  color: #35a848;
  font-size: 3.6rem;
  position: relative;
}
#top-lucerepsyche .lucerepsyche-wrp h4:before, #top-lucerepsyche .lucerepsyche-wrp h4:after {
  width: 24px;
  height: 46px;
  position: absolute;
  content: '';
  background: url(../img/top/feature-h4_dashed.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-lucerepsyche .lucerepsyche-wrp h4:before {
  left: 0;
}
#top-lucerepsyche .lucerepsyche-wrp h4:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#top-lucerepsyche .lucerepsyche-wrp h4 em {
  font-size: 4.2rem;
  background: url(../img/top/feature-h4_paint.png) bottom center no-repeat;
}
#top-lucerepsyche .lucerepsyche-wrp .point-wrp li {
  width: 340px;
  border-radius: 20px;
  padding: 25px 10px 30px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #f1f8e2;
}
#top-lucerepsyche .lucerepsyche-wrp .point-wrp li dt {
  font-size: 3rem;
  color: #35a848;
  line-height: 1.4;
  height: 125px;
  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;
  margin-bottom: 15px;
}
#top-lucerepsyche .lucerepsyche-wrp .point-wrp li dt em {
  font-size: 3.6rem;
  color: #85c04b;
}
#top-lucerepsyche .lucerepsyche-wrp .point-wrp li dd .img-blc {
  margin-bottom: 25px;
}
#top-lucerepsyche .more-btn {
  width: 600px;
  margin: 65px auto 0 auto;
  border-radius: 10px;
  position: relative;
  overflow: inherit;
  padding: 25px 0;
}
#top-lucerepsyche .more-btn:after {
  position: absolute;
  content: '';
  background: url('../img/top/feature-ilust.png?1688096190');
  width: 214px;
  height: 195px;
  background-size: 100%;
  top: 0;
  right: -75px;
  bottom: 0;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: auto 0;
  z-index: 1;
}

/*--------------------------------
ご利用案内/よくある質問
---------------------------------*/
#guide-faq {
  padding: 100px 0;
  border-bottom: 20px solid #ddefc6;
  background: url(../img/top/guide-faq-bg.jpg) center top/cover no-repeat;
}
#guide-faq li {
  width: 520px;
  border-radius: 20px;
}
#guide-faq li a {
  display: block;
  border-radius: 20px;
  padding: 3px;
  height: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#guide-faq li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 4.8rem;
  color: #fff;
  background: url(../img/top/guide-faq-arr.png) left center no-repeat;
}
#guide-faq li a .page-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 20px;
}
#guide-faq li a .page-nav li {
  border-radius: 15px;
  background: #fff;
  color: #35a848;
  width: 130px;
  margin-bottom: 5px;
}
#guide-faq li a .page-nav li:last-child {
  margin-bottom: 0;
}
#guide-faq li:first-child a {
  background: url(../img/top/guide-bg.png) center/cover no-repeat;
}
#guide-faq li:first-child a span {
  padding-left: 65px;
  background-position: 20px 50%;
}
#guide-faq li:last-child a {
  background: url(../img/top/faq-bg.png) center/cover no-repeat;
}
#guide-faq li:last-child a span {
  padding-left: 130px;
  background-position: 70px 50%;
}

/*--------------------------------
店舗情報
---------------------------------*/
#top-info {
  padding: 40px 0 140px 0;
  background: url(../img/top/info-btm_bg.png) bottom center/100% no-repeat, url(../img/top/info-bg.jpg) center/cover no-repeat;
}
#top-info h3 {
  width: 450px;
  font-size: 5.2rem;
  color: #35a848;
  position: relative;
  margin: 0 auto 65px auto;
}
#top-info h3:before, #top-info h3:after {
  width: 85px;
  height: 87px;
  position: absolute;
  content: '';
  background: url(../img/top/info-ttl_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-info h3:before {
  left: 0;
}
#top-info h3:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#top-info .contact-wrp {
  width: 800px;
  margin: 0  auto 80px auto;
  border: 10px solid #c1e099;
  background: #fff;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 65px 110px 25px 110px;
}
#top-info .contact-wrp:before {
  position: absolute;
  content: '';
  background: url('../img/top/info-box_deco.png?1688096212');
  width: 79px;
  height: 110px;
  background-size: 100%;
  top: auto;
  right: auto;
  bottom: -25px;
  left: 3px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#top-info .contact-wrp h4 {
  width: 480px;
  margin: 0 auto;
  background: #85c04b;
  border-radius: 35px;
  color: #fff;
  font-size: 3.6rem;
  padding: 5px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
}
#top-info .contact-wrp h4:before {
  position: absolute;
  content: '';
  background: url('../img/top/info-contact_ttl_arr.png?1688096168');
  width: 24px;
  height: 12px;
  background-size: 100%;
  top: auto;
  right: 0;
  bottom: -12px;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
}
#top-info .contact-wrp .address-left {
  width: 310px;
}
#top-info .contact-wrp .address-left .num {
  font-size: 3.6rem;
  color: #35a848;
  padding-left: 25px;
  background: url(../img/top/info-tel_icon.png) left center no-repeat;
}
#top-info .contact-wrp .address-left .num small {
  font-size: 1.8rem;
}
#top-info .contact-wrp .address-left .open {
  font-size: 1.4rem;
  font-weight: 700;
  color: #35a848;
}
#top-info .contact-wrp .address-left .open span {
  background: #ddefc6;
  padding: 0 3px;
  border-radius: 6px;
}
#top-info .contact-wrp .mail {
  width: 220px;
  display: block;
  color: #fff;
  background: url(../img/common/hd-mail_icon.png) left 10px center no-repeat, #41c189;
  padding: 25px 5px 25px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.5rem;
  border-radius: 10px;
}
#top-info .contact-wrp .attention {
  border-top: 1px dashed #c1e099;
  border-bottom: 1px dashed #c1e099;
  font-size: 1.4rem;
  margin: 15px 0 25px 0;
}
#top-info .contact-wrp .line-btn {
  width: 280px;
  display: block;
  color: #35a848;
  border-radius: 10px;
  padding: 18px 5px 18px 60px;
  margin: 0 auto;
  background: url(../img/common/line_icon.png) left 20px center no-repeat, #f1f8e2;
}
#top-info .contact-wrp .line-btn span {
  position: relative;
}
#top-info .contact-wrp .line-btn span:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8px 5px 0;
  border-color: transparent #c1e099 transparent transparent;
  position: absolute;
  content: '';
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-info .com-dl {
  width: 520px;
}
#top-info .com-dl dd {
  width: 370px;
}
#top-info #g-map {
  width: 540px;
}
#top-info #g-map iframe {
  border-radius: 20px;
}

/*==========================================
footer
===========================================*/
#footer {
  background: url(../img/common/footer_bg.png) right bottom/19.1666% no-repeat, #f1f8e2;
}
#footer .inbox {
  padding: 20px 0 15px 0;
}
#footer .ft-wrp {
  margin-bottom: 45px;
}
#footer .ft-left {
  width: 630px;
}
#footer .ft-left .ft-logo {
  text-align: left;
  margin-bottom: 15px;
}
#footer .ft-left address {
  width: 510px;
}
#footer .ft-left address .tel-wrp {
  width: 275px;
}
#footer .ft-left address .tel-wrp .num {
  font-size: 3.2rem;
  color: #35a848;
  padding-left: 25px;
  background: url(../img/top/info-tel_icon.png) left center no-repeat;
}
#footer .ft-left address .tel-wrp .num small {
  font-size: 1.6rem;
}
#footer .ft-left address .tel-wrp .open {
  font-size: 1.4rem;
  font-weight: 700;
  color: #35a848;
  text-align: left;
}
#footer .ft-left address .tel-wrp .open span {
  background: #ddefc6;
  padding: 0 3px;
  border-radius: 6px;
}
#footer .ft-left address .mail {
  width: 220px;
  display: block;
  color: #fff;
  background: url(../img/common/hd-mail_icon.png) left 10px center no-repeat, #41c189;
  padding: 15px 5px 15px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.5rem;
  border-radius: 10px;
}
#footer .ft-left address .attention {
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: .03em;
  margin-top: 5px;
}
#footer .ft-left .sns {
  width: 95px;
}
#footer .ft-nav {
  font-size: 1.2rem;
}
#footer .ft-nav li a span {
  position: relative;
}
#footer .ft-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: -10px;
  right: auto;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #c1e099;
}

#copyright {
  font-size: 10px;
  word-break: normal;
  background: #c1e099;
  color: #35a848;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-sv {
  position: relative;
  height: 420px;
}
.lower-sv h2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 21.875%;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 5.2rem;
  color: #35a848;
  width: 760px;
  margin: 0 auto;
  border-bottom: 24px solid rgba(193, 224, 153, 0.4);
  text-align: right;
  letter-spacing: .08em;
}
.lower-sv h2:before {
  position: absolute;
  content: '';
  background: url('../img/sv/sv-left_deco.png?1688096141');
  width: 148px;
  height: 170px;
  background-size: 100%;
  top: auto;
  right: auto;
  bottom: -24px;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
}

#support-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/support-sv.png) center/cover no-repeat;
}

#lucerepsyche-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/lucerepsyche-sv.png) center/cover no-repeat;
}

#guide-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/guide-sv.png) center/cover no-repeat;
}

#faq-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/faq-sv.png) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/news-sv.png) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/contact-sv.png) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/complete-sv.png) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/privacy-sv.png) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/site-sv.png) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/sv-btm.png) center bottom/100% no-repeat, url(../img/sv/e404-sv.png) center/cover no-repeat;
}
#e404-sv h2{
  font-size: 5rem;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-family: 'Zen Maru Gothic', sans-serif;
  border-bottom: 2px double #c1e099;
  margin-bottom: 50px;
  font-size: 4.2rem;
  color: #35a848;
  letter-spacing: .08em;
  position: relative;
}
.ttl01:after {
  position: absolute;
  content: '';
  background: url('../img/common/ttl01-deco.png?1688096095');
  width: 77px;
  height: 94px;
  background-size: 100%;
  top: auto;
  right: 0;
  bottom: -15px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.ttl02 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 2.4rem;
  color: #35a848;
  text-align: left;
  border-bottom: 8px solid #ddefc6;
  margin-bottom: 15px;
  padding-left: 35px;
  letter-spacing: .08em;
  background: url(../img/common/ttl02-deco.png) left center no-repeat;
}

/*==========================================
訪問健康支援
===========================================*/
/*-------------------------------
病気を未然に防ぐための
アドバイスとサポートを
--------------------------------*/
#advice-support h3 {
  width: 850px;
  margin: 0 auto 35px auto;
  font-size: 4.2rem;
  color: #35a848;
  letter-spacing: .08em;
  position: relative;
  line-height: 1.6;
}
#advice-support h3:before, #advice-support h3:after {
  position: absolute;
  content: '';
  width: 136px;
  height: 140px;
  background: url(../img/support/about-left_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#advice-support h3:before {
  left: 0;
}
#advice-support h3:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#advice-support h3 span {
  color: #85c04b;
  font-size: 4.8rem;
}
#advice-support .support-business {
  margin-bottom: 30px;
}
#advice-support .support-business h4 {
  font-size: 2.4rem;
  color: #35a848;
  border-bottom: 1px dashed #c1e099;
  margin-bottom: 15px;
}
#advice-support .support-business p {
  margin-bottom: 30px;
}
#advice-support .support-business p:last-child {
  margin-bottom: 0;
}
#advice-support .ai-health {
  background: #f1f8e2;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 75px;
}
#advice-support .ai-health .txt-blc {
  width: 550px;
}
#advice-support .ai-health .img-blc {
  position: relative;
}
#advice-support .ai-health .img-blc:before {
  position: absolute;
  content: '';
  background: url('../img/support/ai-deco.png?1688096092');
  width: 195px;
  height: 118px;
  background-size: 100%;
  top: auto;
  right: 10px;
  bottom: 0;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#advice-support .mental-wrp {
  margin-bottom: 100px;
}
#advice-support .mental-wrp h4 {
  font-size: 2.4rem;
  color: #35a848;
  border-bottom: 1px dashed #c1e099;
  margin-bottom: 15px;
}
#advice-support .mental-wrp .txt-blc {
  width: 595px;
}
#advice-support .mental-wrp .img-blc {
  position: relative;
}
#advice-support .mental-wrp .img-blc:before {
  position: absolute;
  content: '';
  background: url('../img/support/approach-deco.png?1688096093');
  width: 85px;
  height: 148px;
  background-size: 100%;
  top: auto;
  right: auto;
  bottom: 10px;
  left: -55px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#advice-support .menu-bnr {
  border: 10px solid #f2f6e8;
  border-radius: 20px;
  background: url(../img/support/menu-bnr_img.png) left -53px center no-repeat, #fff;
  padding: 15px 15px 25px 15px;
}
#advice-support .menu-bnr .txt-blc {
  width: 590px;
  margin-left: auto;
}
#advice-support .menu-bnr .txt-blc h4 {
  font-size: 4.2rem;
  color: #35a848;
  line-height: 1.4;
  letter-spacing: .08em;
  border-bottom: 1px dashed #c1e099;
  margin-bottom: 15px;
  position: relative;
}
#advice-support .menu-bnr .txt-blc h4:before {
  position: absolute;
  content: '';
  background: url('../img/support/menu-bnr_ttl_deco.png?1688096105');
  width: 91px;
  height: 134px;
  background-size: 100%;
  top: auto;
  right: 0;
  bottom: -15px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#advice-support .menu-bnr .txt-blc h4 span {
  color: #85c04b;
  font-size: 4.8rem;
}

/*-------------------------------
対応エリア
--------------------------------*/
#area .ttl01 {
  margin-bottom: 20px;
}
#area p {
  width: 660px;
  text-align: left;
}

/*==========================================
ルチューレプシュケー
===========================================*/
/*-------------------------------
コンセプト
--------------------------------*/
#concept {
  background: url(../img/lucerepsyche/concept-btm_bg.png) bottom center/100% no-repeat;
}
#concept .inbox {
  width: 1170px;
}
#concept .ttl01 {
  width: 1080px;
  margin: 0 auto 50px auto;
}
#concept .txt-blc {
  width: 600px;
}
#concept .txt-blc h4 {
  font-size: 2.8rem;
  color: #35a848;
  margin-bottom: 20px;
  padding: 0 0 10px 35px;
  border-bottom: 1px dashed #c1e099;
  position: relative;
}
#concept .txt-blc h4:before {
  position: absolute;
  content: '';
  background: url('../img/lucerepsyche/concept-h4_deco.png?1688096141');
  width: 53px;
  height: 77px;
  background-size: 100%;
  top: auto;
  right: auto;
  bottom: -10px;
  left: -15px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#concept .txt-blc h4 span {
  font-size: 3.2rem;
  color: #85c04b;
}
#concept .img-blc {
  position: relative;
}
#concept .img-blc:before {
  position: absolute;
  content: '';
  background: url('../img/lucerepsyche/concept-deco.png?1688096138');
  width: 559px;
  height: 435px;
  background-size: 100%;
  top: -15px;
  right: auto;
  bottom: 0;
  left: -15px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#concept .img-blc img {
  -webkit-box-shadow: 30px 30px rgba(221, 239, 198, 0.3);
          box-shadow: 30px 30px rgba(221, 239, 198, 0.3);
}

/*-------------------------------
ルチューレプシュケーのこだわり
--------------------------------*/
#kodawari {
  background: url(../img/lucerepsyche/kodawari-btm_bg.png) bottom center/100% no-repeat, #f1f8e2;
}
#kodawari .kodawari-wrp {
  width: 970px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 175px;
  background: url(../img/lucerepsyche/kodawari-bdr.png) bottom center no-repeat;
}
#kodawari .kodawari-wrp:last-child {
  margin-bottom: 0;
  background: none;
}
#kodawari .kodawari-wrp .txt-blc {
  width: 700px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  padding: 25px 0 45px 0;
  position: relative;
}
#kodawari .kodawari-wrp .txt-blc h4 {
  font-size: 2.6rem;
  color: #35a848;
  padding: 2px 0 2px 75px;
  margin-bottom: 15px;
  background: url(../img/lucerepsyche/kodawari-h4_deco.png) left center no-repeat;
}
#kodawari .kodawari-wrp .txt-blc h4 span {
  font-size: 3rem;
  color: #85c04b;
  position: relative;
  z-index: 1;
}
#kodawari .kodawari-wrp .txt-blc h4 span:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 15px;
  background: #ddefc6;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#kodawari .kodawari-wrp .txt-blc p {
  letter-spacing: 0;
}
#kodawari .kodawari-wrp .img-blc {
  position: absolute;
  z-index: 1;
  bottom: 65px;
}
#kodawari .kodawari-wrp:nth-of-type(odd) .img-blc {
  right: -15px;
}
#kodawari .kodawari-wrp:nth-of-type(odd) .txt-blc {
  padding-left: 25px;
}
#kodawari .kodawari-wrp:nth-of-type(even) .img-blc {
  left: -15px;
}
#kodawari .kodawari-wrp:nth-of-type(even) .txt-blc {
  width: 620px;
  margin-left: auto;
  padding-left: 55px;
}

/*-------------------------------
ご挨拶
--------------------------------*/
#greeting .txt-blc {
  width: 800px;
}
#greeting .txt-blc .owner-name > dt {
  width: 225px;
  border-bottom: 1px dashed #c1e099;
}
#greeting .txt-blc .owner-name > dd {
  background: #fff;
  border-radius: 20px;
  padding: 15px 30px;
  text-align: left;
}
#greeting .txt-blc .owner-name > dd dl {
  margin-bottom: 15px;
}
#greeting .txt-blc .owner-name > dd dl:last-child {
  margin-bottom: 0;
}
#greeting .txt-blc .owner-name > dd dt {
  border-left: 8px solid #ddefc6;
  font-size: 2rem;
  color: #35a848;
  padding-left: 10px;
  margin-bottom: 5px;
}

/*==========================================
ご利用案内
===========================================*/
.guide-pagenav {
  width: 1080px;
  margin: 0 auto;
}
.guide-pagenav li {
  width: 300px;
  margin-right: 40px;
}
.guide-pagenav li:last-child {
  margin-right: 0;
}
.guide-pagenav li a {
  border-radius: 10px;
  padding: 25px 0;
}

/*-------------------------------
ご利用料金
--------------------------------*/
#price .ttl01 {
  margin-bottom: 25px;
}
#price .lead-txt {
  margin-bottom: 25px;
}
#price .price-wrp > li {
  margin-bottom: 100px;
}
#price .price-wrp > li:last-child {
  margin-bottom: 0;
}
#price .price-wrp > li h4 .course-price small {
  font-size: 1.4rem;
}
#price .price-wrp > li .course-detail {
  border-radius: 20px;
  padding: 15px 25px;
  text-align: left;
  background: #f1f8e2;
  position: relative;
}
#price .price-wrp > li:first-child .course-detail:before {
  position: absolute;
  content: '';
  background: url('../img/guide/course01-illust.png?1688096118');
  width: 128px;
  height: 134px;
  background-size: 100%;
  top: auto;
  right: 0;
  bottom: -15px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#price .price-wrp > li:last-child .course-detail:before {
  position: absolute;
  content: '';
  background: url('../img/guide/course02-illust.png?1688096097');
  width: 224px;
  height: 116px;
  background-size: 100%;
  top: auto;
  right: 10px;
  bottom: -15px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*-------------------------------
ご依頼の流れ
--------------------------------*/
#steps .steps-wrp li {
  background: #fff;
  border-radius: 20px;
  border: 4px solid #f2f6e8;
  margin-bottom: 50px;
  position: relative;
  padding: 15px;
}
#steps .steps-wrp li:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 35px 0 35px;
  border-color: #f2f6e8 transparent transparent transparent;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -45px;
  margin: 0 auto;
}
#steps .steps-wrp li:last-child {
  margin-bottom: 0;
}
#steps .steps-wrp li:last-child:before {
  border: none;
}
#steps .steps-wrp li .txt-blc {
  width: 740px;
  text-align: left;
}
#steps .steps-wrp li .txt-blc dt {
  font-size: 2.4rem;
  border-bottom: 1px dashed #c1e099;
  margin-bottom: 15px;
  color: #35a848;
  padding: 5px 5px 5px 65px;
}
#steps .steps-wrp li:nth-child(1) .txt-blc dt {
  background: url(../img/guide/step-num01.png) left center no-repeat;
}
#steps .steps-wrp li:nth-child(2) .txt-blc dt {
  background: url(../img/guide/step-num02.png) left center no-repeat;
}
#steps .steps-wrp li:nth-child(3) .txt-blc dt {
  background: url(../img/guide/step-num03.png) left center no-repeat;
}
#steps .steps-wrp li:nth-child(4) .txt-blc dt {
  background: url(../img/guide/step-num04.png) left center no-repeat;
}
#steps .steps-wrp li .img-blc {
  width: 280px;
}

/*==========================================
よくある質問
===========================================*/
#faq .faq-wrp > li {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 4px solid #f2f6e8;
  padding: 15px 20px;
  text-align: left;
}
#faq .faq-wrp > li:last-child {
  margin-bottom: 0;
}
#faq .faq-wrp > li dt {
  font-size: 2.4rem;
  color: #35a848;
  border-bottom: 1px dashed #c1e099;
  margin-bottom: 15px;
  padding-left: 50px;
  background: url(../img/faq/question_icon.png) left top no-repeat;
}
#faq .faq-wrp > li dd {
  padding: 5px 0 5px 50px;
  background: url(../img/faq/answer_icon.png) left top no-repeat;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.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: "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;
}

/*==========================================
お知らせ
===========================================*/
.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: #35a848;
}
.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;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl time {
  color: #35a848;
  text-align: left;
  padding: 4px 0;
  width: 65px;
}
.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  font-weight: normal;
  font-size: 10px;
}
.post-wrap .column-lists .post-ttl .category-label {
  width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl .category-label li {
  border: 1px solid #35a848;
  color: #fff;
  background: #35a848;
  padding: 2px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  width: 100%;
  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: #35a848;
  border: 1px solid #35a848;
  -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 #35a848;
  color: #35a848;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #35a848;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.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: #f00;
  font-weight: 500;
  padding: 3px;
  font-size: 1rem;
}
#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 .txtarea {
  width: 100%;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  background: #fff;
  padding: 25px;
  -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;
}
#contact .contact-form select {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #7d7361;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
#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: #35a848;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #85c04b;
}
#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: #85c04b;
}
#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: 1.6rem;
  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 #35a848;
  color: #35a848;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #35a848;
  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;
  color: -webkit-link;
}
.complete-box p a{
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー
===========================================*/
#privacy .privacy-box {
  margin-bottom: 50px;
  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;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
