@charset "UTF-8";
/* CSS Document */
/*------------------共通------------------*/
:root {
  font-size: 2.5555vmin;
}

@media screen and (min-width: 767px) {
  :root {
    font-size: 10px;
  }
}

.site-body {
  width: 100%;
  margin: 0 auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","Noto Sans JP","メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  /*font-size:unquote('max(1.5rem , 14px)');*/
  color: #1f3729;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 767px) {
  .site-body {
    min-width: 1280px;
  }
}

.site-body *, .site-body *:before, .site-body *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site-body img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .site-body img {
    width: auto;
    height: auto;
  }
}

a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

a:hover .thumb img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

a:hover .no-photo img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.icon, .icon:before {
  font-family: 'Material Icons Outlined';
  font-size: 24px;
  color: #1f3729;
  font-weight: 400;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}

.icon--wt:before {
  color: #fff;
}

.icon--blank {
  width: 16px;
  height: 12px;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.icon--blank:before {
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.icon--blank:after {
  content: '';
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0px;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.icon--line {
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_line.png) no-repeat center/contain;
}

.icon--la:before {
  font-size: 36px;
}

.icon--cart:before {
  content: "\e8cc";
  /*shopping_cart*/
}

.icon--mail:before {
  content: "\e0be";
  /*email*/
}

.icon--calender:before {
  content: "\e916";
  /*date_range*/
}

.icon--question_answer:before {
  content: "\e8cc";
  /*question_answer*/
}

.icon--description:before {
  content: "\e873";
  /*description*/
}

.icon--currency_yen:before {
  content: "\eafb";
  /*currency_yen*/
}

.icon--handyman:before {
  content: "\f10b";
  /*handyman*/
}

/*==================================================

setting

==================================================*/
html, body {
  height: 100%;
}

#wrap {
  width: 100%;
  position: relative;
  height: auto !important;
  /*IE6対策*/
  height: 100%;
  /*IE6対策*/
  min-height: 100%;
  overflow: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text_c {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none !important;
  }
}

.font-min {
  font-family: "Noto Serif JP","游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

.inbox {
  width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inbox {
    width: 90%;
  }
}

.inbox--1280 {
  width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inbox--1280 {
    width: 90%;
  }
}

.text-box {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .text-box p br {
    display: none;
  }
  .text-box p .sp-inline {
    display: inline;
  }
}

.text-box p + p {
  padding-top: 1.8em;
}

.text-box.text_c {
  text-align: center;
}

/*img thumb*/
.thumb {
  display: block;
  width: 100%;
  /*トリミング後の横幅*/
  padding-top: 66.666667%;
  /*トリミング後の縦幅*/
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.thumb a {
  display: block;
}

.thumb a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.thumb img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.thumb.no-photo {
  background: #eee;
}

.thumb.no-photo img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain;';
  /*IE対策*/
  width: auto;
  max-width: 70%;
  height: auto;
  max-height: 90%;
}

/*.cmn-ol.ol-reset*/
.cmn-ol ol {
  list-style: none;
  /* olがはき出す数字を消す */
  counter-reset: li;
  position: relative;
}

.cmn-ol ol.cmn-ol-list li:before {
  counter-increment: li;
  /*リストの数字を1つ進める。IE7以下、未対応*/
  content: counter(li) ".";
  /*リストを連番にする*/
}

.cmn-sec {
  padding: 10rem 0;
}

.cmn-sec + .cmn-sec {
  background: #fff;
}

.e404-content a {
  text-decoration: underline;
  color: #dd6800;
}

.tel a {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .tel a {
    pointer-events: auto;
  }
}

.map-wrap {
  width: 100%;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 400px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .map {
    /*
padding-top: 50%;
*/
}
}

.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.video iframe, .video img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.cmn-table table {
  width: 100%;
}

.cmn-table table tr {
  border-bottom: 1px solid rgba(31, 55, 41, 0.2);
}

.cmn-table table tr:last-child {
  border: none;
}

@media screen and (max-width: 767px) {
  .cmn-table table tr {
    display: block;
    padding: 2rem 0;
  }
  .cmn-table table tr th, .cmn-table table tr td {
    display: block;
  }
  .cmn-table table tr th {
    font-weight: 700;
    padding-bottom: 5px;
  }
}

@media print, screen and (min-width: 768px) {
  .cmn-table table tr th, .cmn-table table tr td {
    padding: 1.2rem 0;
    letter-spacing: 0;
  }
  .cmn-table table tr th {
    width: 144px;
    padding-left: 10px;
    padding-right: 1em;
    font-weight: 700;
  }
}

.cont-table {
  background: #fff;
  padding: 16px 4.8rem;
}

.cont-table table tr th {
  width: 280px;
}

.cont-table table tr td {
  padding-left: 2em;
}

.contact-tels.cta-area {
  padding-top: 0;
  text-align: center;
}

.contact-tels .cta-area__text .comp-data {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*タブ切替*/
.tab-btns__item {
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tab-btns__item.is-active {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.tab-content {
  display: none;
  margin-top: 72px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tab-content.is-active {
  display: block;
  -webkit-animation: tabFade 0.3s ease;
  animation: tabFade 0.3s ease;
}

@-webkit-keyframes tabFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes tabFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*▲タブ切替*/
/*flex*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fle-bet {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fle-aro {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.fle-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fle-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.fle-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fle-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
}

/*==================================================

header

==================================================*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 110px;
  z-index: 999;
  padding: 0 4rem;
  background: #fff;
}

.header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__logo a small {
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  margin-bottom: -4px;
}

.header__logo a small:before, .header__logo a small:after {
  content: "";
  width: 1px;
  height: 1.8rem;
  background: #dd6800;
  display: block;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  margin: 0 6px 2px;
}

.header__logo a small:before {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.header__logo a small:after {
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__right .tel {
  margin-right: 24px;
}

.header__right .tel a {
  color: #fff;
}

.header .navi {
  margin-right: 40px;
}

#fix-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99999;
  background: #3e2f1d;
}

#fix-header .header {
  position: relative;
}

.tel a {
  font-size: 3.2rem;
  letter-spacing: 0;
  font-weight: 700;
  color: #2b2f33;
  line-height: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tel a small {
  font-size: 1.4rem;
  font-weight: 500;
  padding-top: 6px;
  margin-right: 4px;
}

.sns-btns {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sns-btns .sns-btn + .sns-btn {
  margin-left: 16px;
}

/*nav
---------------------------------------------*/
.navi {
  font-weight: 700;
}

.navi ul {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navi li + li {
  margin-left: 32px;
}

.navi a {
  position: relative;
  z-index: 1;
}

.navi a:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #dd6800;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.navi a:hover, .navi .current {
  opacity: 1;
}

.navi a:hover:before, .navi .current:before {
  opacity: 1;
  top: -8px;
}

/*dropdown*/
.drop_navi * {
  -webkit-transition: .30s ease-in;
  transition: .30s ease-in;
}

.drop_navi li ul {
  text-align: center;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 99999;
  background: rgba(0, 159, 65, 0.8);
  border-radius: 6px;
}

.drop_navi li:hover ul {
  visibility: visible;
  opacity: 100;
  filter: alpha(opacity=100);
  top: 30px;
}

.drop_navi li ul li a {
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  padding: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/*nav-modal*/
.nav-modal__trigger {
  position: fixed;
  right: 1%;
  top: 10px;
  z-index: 9999;
  width: 40px;
  max-width: 64px;
  height: 40px;
  padding: 5px;
  cursor: pointer;
  padding: 8px 0;
}

.nav-modal__trigger .ham {
  width: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-modal__trigger .ham span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  width: 32px;
  height: 2px;
  background: #1f3729;
  position: absolute;
  left: 0;
}

.nav-modal__trigger .ham .top {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.nav-modal__trigger .ham .bottom {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.nav-modal__trigger > span {
  text-align: center;
  display: block;
  margin-top: 28px;
}

.nav-modal__trigger.is-active .ham .middle {
  background: rgba(255, 255, 255, 0);
}

.nav-modal__trigger.is-active .ham .top {
  -webkit-transform: rotate(-45deg) translateY(0px);
  transform: rotate(-45deg) translateY(0px);
}

.nav-modal__trigger.is-active .ham .bottom {
  -webkit-transform: rotate(45deg) translateY(0px);
  transform: rotate(45deg) translateY(0px);
}

.nav-modal__target {
  display: none;
  position: relative;
}

.nav-modal__content {
  position: absolute;
  right: 0;
  top: 4px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  width: 300px;
  max-width: 80vw;
  padding: 32px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  max-height: calc(100vh - 12vmin);
}

.nav-modal__content__nav {
  letter-spacing: 0.08em;
}

.nav-modal__content__item {
  font-size: 1rem;
  text-align: left;
  position: relative;
}

.nav-modal__content__item + .nav-modal__content__item {
  margin-top: 0.5rem;
}

.nav-modal__content__item a {
  display: block;
  position: relative;
  padding: 0.5rem 0;
}

.nav-modal__content__item a:before {
  content: "";
  width: 0;
  height: 1px;
  background: #1f3729;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.nav-modal__content__item a:hover {
  opacity: 1;
}

.nav-modal__content__item a:hover:before {
  width: 100%;
}

/*---------main_visual------------*/
.mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../img/top/mv_bg.jpg) no-repeat center/contain;
  padding-top: 46.875%;
  position: relative;
  z-index: 1;
}

.mv:before {
  content: "";
  width: 100%;
  min-width: 1280px;
  padding-top: 10%;
  background: url(../img/top/mv_frame.png) no-repeat center bottom/contain;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mv-ttl {
  margin: auto;
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 44%;
  text-align: center;
}

.mv-wrap {
  padding-top: 110px;
}

/*==================================================

content

==================================================*/
.sec-ttl {
  text-align: center;
  font-weight: 700;
  font-size: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2em;
  margin-bottom: 7.2rem;
  letter-spacing: 0.04em;
}

.sec-ttl .ttl-main {
  position: relative;
  z-index: 1;
}

.sec-ttl .ttl-main:before, .sec-ttl .ttl-main:after {
  content: "";
  width: 30px;
  height: 40px;
  background: url(../img/common/ttl_main_frame.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
}

.sec-ttl .ttl-main:before {
  left: -40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sec-ttl .ttl-main:after {
  right: -40px;
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
}

.sec-ttl .ttl-main small {
  font-size: 3.6rem;
}

.sec-ttl em {
  color: #ffae00;
}

.sec-ttl b {
  font-size: 5.6rem;
  font-weight: 700;
  color: #dd6800;
}

.sec-ttl--left {
  text-align: left;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.sec-ttl--wt {
  color: #fff;
}

.sec-ttl__small {
  font-size: 2.4rem;
  line-height: 1;
}

.sec-ttl .ttl-sub {
  font-size: 3.2rem;
}

.lower .sec-ttl {
  margin-bottom: 3.2rem;
}

.lower .sec-ttl em {
  color: #dd6800;
}

.ttl-en {
  letter-spacing: 0.02em;
  color: #dd6800;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 8px;
}

.ttl-en:before, .ttl-en:after {
  content: "";
  width: 30px;
  height: 1px;
  background: #ffae00;
  display: block;
  margin: 0 8px;
}

.ttl-en__deco {
  width: 25px;
  height: 10px;
  background: url(../img/common/ttl_en_deco.png) no-repeat center top;
  position: absolute;
  left: 50%;
  top: -8px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.sec-ttl-sub {
  background: url(../img/common/title02_bg.png) repeat left top #82be39;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  padding: .8rem 1em;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.cmn-btn a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../img/common/ptn_btn_bg.png) repeat left top #009f41;
  border: 1px solid #009f41;
  color: #fff;
  max-width: 100%;
  height: 50px;
  font-size: 16px;
  padding: 8px 20px;
  font-weight: 700;
  border-radius: 99999px;
}

.cmn-btn a .icon {
  margin-right: 10px;
}

.cmn-btn a .icon:before {
  color: #fff;
  font-weight: 400;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 24px;
}

.cmn-btn a .cmn-btn__text:first-of-type {
  padding: 0 20px 0 12px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.cmn-btn a .cmn-btn__text:first-of-type:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.cmn-btn a:hover {
  opacity: 1;
  color: #009f41;
  background: #FFF;
}

.cmn-btn a:hover .icon:before {
  color: #009f41;
}

.cmn-btn a:hover .icon--blank:before, .cmn-btn a:hover .icon--blank:after {
  background-color: #009f41;
}

.cmn-btn a:hover .cmn-btn__text:first-of-type:after {
  border-color: #009f41;
}

#fix-btn{
 position: fixed;
 right: 0;
 bottom: 200px;
 z-index: 9999;
}

.fix-ofc-btn{
  position: absolute;
 right: 0;
 bottom: -64px;
 z-index: 9999;
}

.fix-btn {
  /*width: 280px;*/
  background: url(../img/common/fix_bg_illu.png) no-repeat right bottom, url(../img/common/ptn_fix_bg.png) repeat left top;
  background-color: #F5F4EF;
  border-radius: 20px;
  padding: 20px 20px 24px;
}

.fix-btn__lead {
  color: #dd6800;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 #fff,
  -2px 2px 0 #fff,
  2px -2px 0 #fff,
  -2px -2px 0 #fff;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}

.fix-btn__lead:before {
  content: "";
  width: 65px;
  height: 112px;
  background: url(../img/common/fix_illu.png) no-repeat center bottom;
  position: absolute;
  right: -10px;
  top: 20px;
  z-index: -1;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.fix-btn .tel a {
  font-size: 2.8rem;
  letter-spacing: 0;
  color: #009f41;
}

.fix-btn .tel a small {
  color: #1f3729;
}

.fix-btn .comp-dl dd {
  font-size: 15px;
  font-weight: 700;
}

.sec-frame--bottom {
  position: relative;
  z-index: 1;
  background: url(../img/common/ptn_sec_bg.png) repeat left top;
}

.sec-frame--bottom:after {
  content: "";
  width: 100%;
  padding-top: 9%;
  background: url(../img/common/sec_frame_bottom.png) no-repeat center bottom/100% 100% #fff;
  position: absolute;
  left: 0;
  bottom: 1px;
  z-index: -1;
}

.sec-frame--top {
  position: relative;
  z-index: 1;
  background: url(../img/common/ptn_sec_bg.png) repeat left top;
}

.sec-frame--top:after {
  content: "";
  width: 100%;
  padding-top: 7.2%;
  background: url(../img/common/sec_frame_top.png) no-repeat center top/100% 100% #fff;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -1;
  /*transform: translateY(-100%);*/
}

/*top-trouble
-----------------------------------------------------*/
.top-trouble {
  padding: 6.4rem 0 0;
}

.top-trouble:after {
  bottom: 1vw;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.top-trouble .sec-ttl {
  margin-bottom: 0;
}

.top-trouble__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -9.6rem;
}

/*top-sign
-----------------------------------------------------*/
.top-sign {
  padding: 12rem 0 8rem;
}

.top-sign .sec-ttl {
  margin-bottom: 278px;
}

.top-sign .cmn-btn {
  text-align: center;
  margin-top: 7.2rem;
  margin-bottom: 7.2rem;
}

.top-sign .cmn-btn a {
  width: 250px;
}

.check {
  width: 670px;
  height: 391px;
  background: url(../img/top/check_bg.png) no-repeat center/contain;
  margin: 0 auto;
  position: relative;
}

.check__icon {
  cursor: pointer;
  width: 65px;
  height: 65px;
  background: url(../img/common/icon_focus.png) no-repeat center/contain;
  position: absolute;
  z-index: 2;
  border-style: none;
}

.check__icon:hover {
  opacity: 1;
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.check__lead {
  text-shadow: 2px 2px 0 #fff,
  -2px 2px 0 #fff,
  2px -2px 0 #fff,
  -2px -2px 0 #fff;
  font-weight: 700;
}

.check__lead span {
  color: #82be39;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.check__lead span:before {
  content: "";
  width: 42px;
  height: 41px;
  background: url(../img/common/icon_check.png) no-repeat center top/contain;
  display: block;
  margin-right: 10px;
}

.check__lead p {
  text-align: center;
  font-size: 20px;
  margin: 4px 0 10px;
}

.check__lead p small {
  display: block;
  font-size: 12px;
}

.check__content {
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  opacity: 0;
  background: #F5F4EF;
  padding: 0 10px 15px;
  border-radius: 20px;
  -webkit-box-shadow: 8px 8px 4px rgba(31, 55, 41, 0.15);
  box-shadow: 8px 8px 4px rgba(31, 55, 41, 0.15);
  min-width: 240px;
  text-align: center;
  z-index: 1;
}

.check__content:before {
  content: "";
  height: 1px;
  position: absolute;
  background: #e0ddca;
}

.check__content:after {
  content: "";
  height: 240px;
  position: absolute;
  display: block;
}

.check__item:nth-child(1):hover .check__content {
  visibility: visible;
  -webkit-animation: tabFade 0.2s ease forwards;
  animation: tabFade 0.2s ease forwards;
}

.check__item:nth-child(1) .check__icon {
  left: 224px;
  top: 109px;
}

.check__item:nth-child(1) .check__content {
  left: -100px;
  top: -200px;
}

.check__item:nth-child(1) .check__content:before, .check__item:nth-child(1) .check__content:after {
  width: 180px;
  right: 0;
  bottom: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: translateX(100%) rotate(40deg);
  transform: translateX(100%) rotate(40deg);
}

.check__item:nth-child(1) .check__content:after {
  -webkit-transform: translate(90%, 50%) rotate(40deg);
  transform: translate(90%, 50%) rotate(40deg);
}

.check__item:nth-child(2):hover .check__content {
  visibility: visible;
  -webkit-animation: tabFade 0.2s ease forwards;
  animation: tabFade 0.2s ease forwards;
}

.check__item:nth-child(2) .check__icon {
  right: 240px;
  top: -8px;
}

.check__item:nth-child(2) .check__content {
  right: -166px;
  top: -200px;
}

.check__item:nth-child(2) .check__content:before, .check__item:nth-child(2) .check__content:after {
  width: 230px;
  left: 0;
  bottom: 80px;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: translateX(-100%) rotate(-20deg);
  transform: translateX(-100%) rotate(-20deg);
}

.check__item:nth-child(2) .check__content:after {
  -webkit-transform: translate(-90%, 50%) rotate(-20deg);
  transform: translate(-90%, 50%) rotate(-20deg);
}

.check__item:nth-child(3):hover .check__content {
  visibility: visible;
  -webkit-animation: tabFade 0.2s ease forwards;
  animation: tabFade 0.2s ease forwards;
}

.check__item:nth-child(3) .check__icon {
  left: 131px;
  top: 137px;
}

.check__item:nth-child(3) .check__content {
  left: -193px;
  top: 74px;
}

.check__item:nth-child(3) .check__content:before, .check__item:nth-child(3) .check__content:after {
  width: 120px;
  right: 0;
  top: 96px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translateX(100%) rotate(0deg);
  transform: translateX(100%) rotate(0deg);
}

.check__item:nth-child(3) .check__content:after {
  -webkit-transform: translate(100%, -50%) rotate(0deg);
  transform: translate(100%, -50%) rotate(0deg);
}

.check__item:nth-child(4):hover .check__content {
  visibility: visible;
  -webkit-animation: tabFade 0.2s ease forwards;
  animation: tabFade 0.2s ease forwards;
}

.check__item:nth-child(4) .check__icon {
  left: 416px;
  top: 145px;
}

.check__item:nth-child(4) .check__content {
  right: -205px;
  top: 74px;
}

.check__item:nth-child(4) .check__content:before, .check__item:nth-child(4) .check__content:after {
  width: 200px;
  left: 0;
  top: 40px;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: translateX(-100%) rotate(-20deg);
  transform: translateX(-100%) rotate(-20deg);
}

.check__item:nth-child(4) .check__content:after {
  -webkit-transform: translate(-90%, -50%) rotate(-20deg);
  transform: translate(-90%, -50%) rotate(-20deg);
}

.check__item:nth-child(5):hover .check__content {
  visibility: visible;
  -webkit-animation: tabFade 0.2s ease forwards;
  animation: tabFade 0.2s ease forwards;
}

.check__item:nth-child(5) .check__icon {
  left: 182px;
  top: 230px;
}

.check__item:nth-child(5) .check__content {
  left: -100px;
  bottom: -200px;
}

.check__item:nth-child(5) .check__content:before, .check__item:nth-child(5) .check__content:after {
  width: 140px;
  right: 0;
  top: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: translateX(100%) rotate(-45deg);
  transform: translateX(100%) rotate(-45deg);
}

.check__item:nth-child(5) .check__content:after {
  -webkit-transform: translate(90%, -50%) rotate(-45deg);
  transform: translate(90%, -50%) rotate(-45deg);
}

.check__item:nth-child(6):hover .check__content {
  visibility: visible;
  -webkit-animation: tabFade 0.2s ease forwards;
  animation: tabFade 0.2s ease forwards;
}

.check__item:nth-child(6) .check__icon {
  left: 285px;
  top: 181px;
}

.check__item:nth-child(6) .check__content {
  right: -105px;
  bottom: -217px;
}

.check__item:nth-child(6) .check__content:before, .check__item:nth-child(6) .check__content:after {
  width: 280px;
  left: 0;
  top: 40px;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: translateX(-100%) rotate(37deg);
  transform: translateX(-100%) rotate(37deg);
}

.check__item:nth-child(6) .check__content:after {
  -webkit-transform: translate(-90%, -50%) rotate(37deg);
  transform: translate(-90%, -50%) rotate(37deg);
}

/*top-case
-----------------------------------------------------*/
.top-case {
  padding: 12rem 0 0;
}

.top-case__in {
  padding-bottom: 8.8rem;
  position: relative;
  z-index: 1;
}

.top-case__in:before {
  content: "";
  width: 166px;
  height: 183px;
  background: url("../img/top/top_case_illu_l.png") no-repeat center bottom/contain;
  position: absolute;
  left: 50px;
  bottom: 16px;
}

.top-case__in:after {
  content: "";
  width: 238px;
  height: 246px;
  background: url(../img/top/top_case_illu_r.png) no-repeat center bottom/contain;
  position: absolute;
  right: 0;
  bottom: -16px;
}

.top-case:after {
  top: -60px;
}

.top-case .sec-ttl {
  margin-bottom: 0;
}

.top-case__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top-case__item {
  width: 320px;
  background: url(../img/top/case_bg.png) repeat left top;
  padding: 45px 20px;
  position: relative;
  z-index: 1;
}

.top-case__item:before, .top-case__item:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #82be39;
  position: absolute;
  top: 4px;
}

.top-case__item:before {
  left: 4px;
}

.top-case__item:after {
  right: 4px;
}

.top-case__item + .top-case__item {
  margin-left: 60px;
}

.top-case__item:nth-child(2) {
  margin-top: 40px;
}

.top-case__item:nth-child(2):before, .top-case__item:nth-child(2):after {
  right: auto;
  left: 50%;
  top: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.top-case__item .thumb {
  border-radius: 10px;
}

.top-case__item p {
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px 8px;
  font-size: 2rem;
  text-align: center;
  margin-top: 8px;
}

.top-case__item time {
  display: block;
  text-align: right;
  margin-top: 2rem;
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: .06em;
}

.top-case .cmn-btn {
  text-align: center;
  margin-top: 6rem;
}

.top-case .cmn-btn a {
  width: 250px;
}

/*top-news
--------------------------------------------*/
.top-news {
  padding: 9.6rem 0 12rem;
  background: url(../img/common/bg_illu.png) repeat-x left bottom;
}

.top-news .sec-ttl {
  margin-bottom: 3.2rem;
}

.top-news__in {
  width: 96rem;
  margin: auto;
  max-width: 100%;
  border: 2px solid #009f41;
  border-radius: 20px;
  padding: 6.4rem 7.2rem;
  background: #fff;
}

.top-news__btn {
  text-align: right;
  margin-top: 1.6rem;
}

.top-news__btn a {
  display: inline-block;
  color: #009f41;
  position: relative;
  z-index: 1;
  padding-right: 2.8rem;
}

.top-news__btn a:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #009f41;
  border-right: 1px solid #009f41;
  position: absolute;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

/*==================================================

footer

==================================================*/
#pageTop {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 9999;
}

.footer {
  border-top: 1px solid #009f41;
  background: #fff;
}

.footer__in {
  padding: 5.6rem 0 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .tel {
  margin-top: 1.6rem;
}

.footer .sns-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 8px;
}

.footer__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer .cmn-btns {
  margin-top: 20px;
}

.footer .cmn-btns .cmn-btn:nth-child(2n) {
  margin-left: 20px;
}

.footer .cmn-btn a {
  min-width: 172px;
}

.footer__add {
  line-height: 1.25;
  margin-top: 16px;
}

.footer__nav {
  margin-bottom: 4rem;
}

.footer__nav li {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.footer__nav li:last-child a:after {
  display: none;
}

.footer__nav a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.footer__nav a:after {
  content: "";
  width: 1px;
  height: 1em;
  background: #1f3729;
  display: block;
}

.footer__nav a:hover {
  opacity: 1;
  color: #009f41;
}

.comp-dl div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.comp-dl div + div {
  margin-top: 4px;
}

.comp-dl dt {
  font-size: 1.2rem;
  margin-right: 8px;
}

.comp-note {
  font-size: 1.2rem;
  line-height: 1;
  color: #2b2f33;
  letter-spacing: 0;
}

.cmn-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#copyright {
  font-size: 10px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  letter-spacing: 0;
  background: #009f41;
  height: 2.4rem;
}

#copyright a {
  color: #fff;
}

/*==================================================

下層

==================================================*/
.sv {
  padding-top: 110px;
  padding-bottom: 45px;
  position: relative;
  z-index: 1;
  margin-bottom: -4rem;
  text-align: center;
}

.sv:before {
  content: "";
  width: 100%;
  min-width: 1280px;
  padding-top: 10%;
  background: url(../img/top/mv_frame.png) no-repeat center bottom/contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.sv__in {
  background: url(../img/common/sv_bg.jpg) no-repeat center;
  background-size: cover;
  height: 350px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.sv__ttl {
  position: relative;
  z-index: 1;
  font-size: 5.6rem;
  font-weight: 700;
  color: #009f41;
  letter-spacing: 0.02em;
  padding-top: 0.5em;
}

.sv__ttl:before {
  content: '';
  width: 650px;
  height: 410px;
  background: url(../img/common/sv_ttl_bg.png) no-repeat center/contain;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -56%);
  transform: translate(-50%, -56%);
}

#bread {
  padding: 16px 0;
  width: 100%;
  max-width: 1080px;
  position: relative;
  z-index: 2;
}

#bread br {
  display: none;
}

#bread ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#bread li {
  font-size: 12px;
  margin-right: 2px;
  padding-right: 14px;
  position: relative;
}

#bread li:after {
  content: "|";
  position: absolute;
  right: 3px;
  top: 1px;
}

#bread li:last-child:after {
  display: none;
}

#bread li {
  opacity: 0.7;
}

#bread li:last-child {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #bread {
    padding: 8px 5%;
  }
  #bread ul {
    width: auto;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    white-space: nowrap;
  }
  #bread li {
    display: inline;
    padding-right: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
}

.lower {
  background: url(../img/common/ptn_sec_bg.png) repeat left top;
}

.btt-content {
  /*padding: 4rem 0 0;*/
}

.btt-content > .cmn-sec:first-child {
  padding-top: 6rem;
}

.inbox.btt-content {
  /*padding: 4rem 0 0;*/
}

.title01 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 1.2rem;
  border-left: 0.5rem solid #009f41;
  margin-bottom: 1em;
  line-height: 3.2rem;
}

.title02 {
  font-size: 1.8rem;
  font-weight: 700;
  border-left: 5px solid #009f41;
  position: relative;
  z-index: 1;
  padding-left: 1.6rem;
}

.title02:before {
  content: "";
  width: calc(100% + 5px);
  height: 1px;
  background: #009f41;
  position: absolute;
  left: -5px;
  bottom: -10px;
}

.title02 + * {
  margin-top: 30px;
}

.lower-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lower-list li {
  width: 392px;
  position: relative;
  z-index: 1;
}

.lower-list li:not(:nth-child(-n+2)) {
  margin-top: 40px;
}

.lower-list li:hover .thumb img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.lower-list li:hover .no-photo img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.lower-list .thumb {
  z-index: 0;
}

.lower-list__img {
  margin-bottom: 1rem;
}

.lower-list__ymd {
  font-size: 1.3rem;
}

.lower-list__ttl {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}

.lower-list__ttl a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.lower-list__ttl a:hover {
  color: #dd6800;
}

.lower-list__tags {
  font-size: 1.3rem;
  margin-top: 0.4rem;
  font-weight: 700;
}

.lower-list__tags a {
  position: relative;
  z-index: 2;
  color: rgba(0, 159, 65, 0.6);
}

.lower-list__tags a:hover {
  opacity: 1;
  color: #009f41;
}

.cta-area {
  padding: 9.6rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.cta-area .inbox {
  margin: 0;
}

.cta-bnr {
  background: url(../img/common/fix_bg_illu.png) repeat-x left bottom, url(../img/common/ptn_cta_bnr_bg.png) repeat left top;
  background-color: #F5F4EF;
  border-radius: 20px;
  border: 2px solid #fff;
  padding: 3.2rem;
  height: 300px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-bnr:before {
  content: '';
  width: 580px;
  height: 300px;
  background: url(../img/common/cmn_bnr_img.png) no-repeat right top;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.cta-bnr__ttl {
  line-height: 1;
  color: #dd6800;
  font-weight: 700;
  font-size: 3.2rem;
  text-shadow: #fff 2px 0px,  #fff -2px 0px,
  #fff 0px -2px, #fff 0px 2px,
  #fff 2px 2px , #fff -2px 2px,
  #fff 2px -2px, #fff -2px -2px,
  #fff 1px 2px,  #fff -1px 2px,
  #fff 1px -2px, #fff -1px -2px,
  #fff 2px 1px,  #fff -2px 1px,
  #fff 2px -1px, #fff -2px -1px;
  margin-bottom: 2rem;
}

.cta-bnr__in {
  width: 448px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2.4rem;
}

.cta-bnr__in .cmn-btn a {
  width: 160px;
  height: 44px;
}

.cta-bnr__in .cmn-btn + .cmn-btn {
  margin-top: 10px;
}

.cta-bnr__in .tel a {
  font-size: 3rem;
  color: #009f41;
}

.cta-bnr__in .tel small {
  color: #1f3729;
}

.cta-bnr__in .comp-dl {
  margin-top: 1.6rem;
}

.cta-bnr__in .comp-dl dd {
  font-weight: 700;
}

.cta-bnr__in .comp-dl div + div {
  margin-top: 0;
}

.cmn-text .sec-ttl-sub {
  margin-top: 4rem;
}

.text-low p {
  color: rgba(31, 55, 41, 0.8);
}

/*feature
------------------------------------------*/
.feature .cmn-text {
  width: 600px;
  max-width: 100%;
  letter-spacing: 0.02em;
}

.point-list {
  text-align: center;
}

.point-list__item {
  width: 330px;
  max-width: 100%;
}

.point-list__item:not(:nth-child(-n+3)) {
  margin-top: 4rem;
}

.point-list__item h4 {
  color: #009f41;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  line-height: 1.25em;
  margin: 1.8rem 0 1.2rem;
}

/*about
------------------------------------------*/
.about-sec-wrap + .about-sec-wrap .about-sec {
  padding: 4.8rem 0;
}

.about-sec-wrap:nth-of-type(2n) .about-sec {
  background: #fff;
}

.about-wrap {
  padding-top: 6rem;
}

.about-sec {
  padding-bottom: 4.8rem;
}

.about-sec__ttl {
  text-shadow: 2px 2px 0 #fff,
  -2px 2px 0 #fff,
  2px -2px 0 #fff,
  -2px -2px 0 #fff;
  font-weight: 700;
  margin-bottom: .8rem;
  margin-left: 1.6rem;
}

.about-sec__ttl span {
  color: #82be39;
  font-size: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.about-sec__ttl span:before {
  content: "";
  width: 42px;
  height: 41px;
  background: url(../img/common/icon_check.png) no-repeat center top/contain;
  display: block;
  margin-right: 10px;
}

.about-sec .cmn-text {
  width: 526px;
  max-width: 100%;
  padding-top: 1em;
}

.check-list li {
  padding-left: 32px;
  position: relative;
  z-index: 1;
}

.check-list li + li {
  margin-top: 1.2rem;
}

.check-list li em {
  color: #dd6800;
  font-weight: 700;
}

.check-list li:before {
  content: '';
  width: 20px;
  height: 20px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  background: url(../img/common/icon_check_list.png) no-repeat center/contain;
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 0;
}

.about-btn {
  text-align: center;
  margin-top: 3.2rem;
}

.about-btn__text {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-btn .icon {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  margin-right: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about-btn .icon:before {
  font-size: 3.2rem;
  color: #dd6800;
  text-shadow: #fff 2px 0px,  #fff -2px 0px,
  #fff 0px -2px, #fff 0px 2px,
  #fff 2px 2px , #fff -2px 2px,
  #fff 2px -2px, #fff -2px -2px,
  #fff 1px 2px,  #fff -1px 2px,
  #fff 1px -2px, #fff -1px -2px,
  #fff 2px 1px,  #fff -2px 1px,
  #fff 2px -1px, #fff -2px -1px;
}

.about-btn a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.4rem;
  width: 500px;
  height: 80px;
  max-width: 100%;
  text-align: center;
  background: url(../img/common/ptn_cta_bnr_bg.png) repeat left top;
  background-color: #F5F4EF;
  border-radius: 20px;
  border: 2px solid #fff;
}

.about-btn a em {
  line-height: 1;
  color: #dd6800;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  text-shadow: #fff 2px 0px,  #fff -2px 0px,
  #fff 0px -2px, #fff 0px 2px,
  #fff 2px 2px , #fff -2px 2px,
  #fff 2px -2px, #fff -2px -2px,
  #fff 1px 2px,  #fff -1px 2px,
  #fff 1px -2px, #fff -1px -2px,
  #fff 2px 1px,  #fff -2px 1px,
  #fff 2px -1px, #fff -2px -1px;
  /*margin-bottom: 2rem;*/
}

.about-btn a small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  margin-top: 0.4rem;
}

.about-btn a small:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1f3729;
  border-right: 2px solid #1f3729;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-left: 16px;
}

/*case
------------------------------------------*/
.case-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.case-list__item {
  width: 520px;
  background: url(../img/top/case_bg.png) repeat left top;
  padding: 45px 20px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.case-list__item:before, .case-list__item:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #82be39;
  position: absolute;
  top: 4px;
}

.case-list__item:before {
  left: 4px;
}

.case-list__item:after {
  right: 4px;
}

.case-list__item:not(:nth-child(-n+2)) {
  margin-top: 8rem;
}

.case-list__item__header {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.case-list__item .thumb {
  border-radius: 10px;
}

.case-list__item__data {
  margin-top: 2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.case-list__item time {
  display: block;
  font-weight: 700;
  /*margin-top: 2rem;*/
  line-height: 2;
  font-size: 1.2rem;
  letter-spacing: .06em;
  margin-right: 8px;
}

.case-list__item h3 {
  background: #fff;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-top: 1.6rem;
  padding: 8px;
  border-radius: 10px;
}

.case-list__item__btn {
  text-align: right;
}

.case-list__item__btn a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  margin-top: 0.4rem;
}

.case-list__item__btn a:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1f3729;
  border-right: 2px solid #1f3729;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-left: 16px;
}

.case-list__img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.case-list__img-wrap .thumb {
  padding-top: 66.6666%;
}

.case-list__img-wrap .bf-img {
  width: 250px;
  margin-right: -150px;
  position: relative;
  z-index: 2;
}

.case-list__img-wrap .bf-img:after {
  content: '';
  width: 54px;
  height: 60px;
  background: url(../img/case/case_arr.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 88px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.case-list__img-wrap .bf-img .thumb.no-photo {
  background-color: #ccc;
}

.case-list__img-wrap .af-img {
  width: 400px;
  max-width: calc(100% - 100px);
  margin-top: 140px;
}

.tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -4px;
}

.tag-list .tag {
  margin: 4px;
}

.bf-img__text {
  display: inline-block;
  padding: 0 20px 0 16px;
  color: #009f41;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  letter-spacing: -0.005em;
  line-height: 1;
  margin-top: 6px;
}

.bf-img__text:after {
  content: '';
  width: 18px;
  height: 17px;
  background: url(../img/case/before_deco.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.af-img {
  text-align: right;
}

.af-img__text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #dd6800;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 22px;
  line-height: 1;
  margin-top: 6px;
}

.af-img__text:before, .af-img__text:after {
  content: '';
  width: 17px;
  height: 22px;
  background: url(../img/case/after_deco.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
}

.af-img__text:before {
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.af-img__text:after {
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
}

/*sg*/
.sg-page {
  width: 880px;
  margin: auto;
  max-width: 100%;
}

.sg-page time {
  display: block;
  font-weight: 700;
  /*margin-top: 2rem;*/
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.sg-page img {
  max-height: 100vh;
  margin-bottom: 8px;
}

.sg-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25em;
  margin-bottom: 3.2rem;
  margin-top: 1.6rem;
}

.s-case__img-wrap {
  margin-bottom: 4rem;
}

.s-case .bf-img, .s-case .af-img {
  width: 420px;
  max-width: 48%;
  text-align: center;
}

/*company
------------------------------------------*/
.comp-sec {
  padding-bottom: 0;
}

.comp-sec .map {
  margin-top: 8rem;
}

.greeting-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.greeting-content__img {
  margin: 0;
}

.greeting-content__text {
  width: 600px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 4.8rem;
}

.greeting-content__text p {
  line-height: 2.5;
}

.greeting-content__text .name {
  margin-top: 2em;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: right;
  margin-bottom: 2rem;
}

.greeting-content__text .name span {
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-block;
  margin-right: 1em;
}

/*contact
------------------------------------------*/
.contact-lead {
  background: #fff;
  width: 880px;
  margin: auto;
  max-width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 56px 80px;
  margin-bottom: 8rem;
}

.contact-lead .sec-ttl {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0.65em;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.contact-lead .tel a {
  font-size: 48px;
  color: #009f41;
  display: block;
}

.contact-lead .tel a small {
  color: #1f3729;
  position: relative;
  bottom: 2px;
}

.contact-lead .comp-dl {
  margin-top: 1.2rem;
}

.contact-lead .comp-dl dd {
  font-weight: 700;
  font-size: 2.4rem;
}

.contact-lead .comp-dl div + div {
  margin-top: 0;
}

.contact-line-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: auto;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 130px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
}

.contact-line-btn__lead {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  text-align: center;
  font-size: 1.6rem;
}

.contact-line-btn__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.4rem;
}

/*site_map
------------------------------------------*/
.site_map-li > li {
  border-bottom: 1px dotted #1f3729;
}

.site_map-li > li span + span {
  display: inline-block;
  color: #1f3729;
  font-size: 18px;
}

.site_map-li > li a {
  display: block;
  color: #1f3729;
  padding: 1.8rem 4rem;
  font-size: 21px;
  position: relative;
}

.site_map-li > li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #009f41;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.site_map-li > li ul {
  margin: -10px 0 10px;
}

.site_map-li > li ul li a {
  font-size: 16px;
  margin-left: 40px;
  padding: 9px 40px 6px;
  border-bottom: 0;
  color: rgba(31, 55, 41, 0.8);
}

.site_map-li > li ul li a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #009f41;
  position: absolute;
  left: 15px;
  top: 15px;
  border-width: 0;
}

/*privacy
----------------------------------*/
.privacy_box {
  margin-bottom: 45px;
}

.privacy_box:last-child {
  margin-bottom: 0;
}

.privacy_text {
  font-size: 16px;
}

.pri-ttl {
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
  color: #009f41;
  font-weight: bold;
}

.privacy .pri_bg {
  background-color: #fff;
  width: 100%;
  height: 225px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.privacy iframe {
  width: 100%;
  height: 225px;
  display: block;
}

.inline-privacy .privacy_box {
  padding: 15px;
}

.inline-privacy h1 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
  padding: 3px 10px 2px;
  background-color: #f2f2f2;
}

.privacy_text {
  font-size: 14px;
}

/*news
-----------------------------------*/
.news-list li {
  padding: 1.6rem 7.2rem;
  position: relative;
  border-bottom: 1px solid rgba(71, 75, 66, 0.4);
}

.news-list li:hover .thumb img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.news-list li:hover .no-photo img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.news-list .thumb {
  z-index: 0;
}

.news-list-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*flex-wrap: wrap;*/
  /*align-items: center;*/
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-ymd {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  margin-right: 3.2rem;
  display: inline-block;
  /*padding: 0 12px;*/
  line-height: 1;
  z-index: 0;
  font-weight: 400;
  color: rgba(31, 55, 41, 0.7);
}

.tag {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 8px 0 0;
  display: block;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 2;
}

.tag a {
  position: relative;
  z-index: 9;
  display: block;
  text-align: center;
  padding: 6px 10px 4px;
  background: #007530;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  /*border-radius: 4px;*/
}

.news-ttl {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.8rem;
  font-weight: 700;
}

.news-ttl a {
  color: #1f3729;
}

.news-ttl a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.news-ttl a:hover {
  opacity: 1;
  color: #009f41;
}

.a-news-list .news-ttl {
  margin-top: 4px;
}

.a-news-list .news-list-head {
  margin-bottom: 4px;
}

.a-news-list .tag-list {
  margin-top: 8px;
}

/*news-sg
-----------------------------------*/
.category-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*white-space: nowrap;*/
  margin: 0 -24px 24px;
  /*overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
overflow-scrolling: touch;*/
}

.category__item {
  margin: 16px 24px;
  text-align: center;
}

.category__item a {
  color: #009f41;
  /*border-radius: 8px;*/
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2px 8px 2px 8px;
  min-width: 250px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #009f41;
  background: #FFF;
}

.category__item a:before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #009f41;
  border-right: 2px solid #009f41;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.category__item a:hover {
  opacity: 1;
  background: #009f41;
  color: #fff;
}

.category__item a:hover:before {
  border-color: #fff;
}

.category__item.is-active a {
  background: #009f41;
  color: #fff;
}

.category__item.is-active a:before {
  border-color: #fff;
}

/*.lower-list-wrap{
	display: flex;
	width: 100%;
	justify-content: space-between;
	.hav-aside{
		width: calc(100% - 456px);
		margin-right: 24px;
	}

	}*/
  .aside-category {
    width: 380px;
    /*order:2;*/
  /*border: 2px solid $main_color;
	padding-bottom: 8px;
	margin-bottom: 40px;*/
  padding: 0 24px;
  /*ul{
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		}*/
  }

  .aside-category h4 {
    padding: 8px 1em;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    background: #009f41;
    margin-bottom: .8rem;
  }

  .aside-category li {
    line-height: 1.3;
    position: relative;
    /*color: #797979;*/
    font-size: 13px;
    -webkit-transition: 0.12s;
    transition: 0.12s;
    font-weight: 700;
  }

  .aside-category li a {
    display: block;
    padding: 1em 0;
    border-bottom: 1px solid rgba(92, 97, 86, 0.2);
    color: rgba(0, 159, 65, 0.6);
    position: relative;
    z-index: 1;
  }

  .aside-category li a:before {
    content: '';
    width: 0;
    height: 1px;
    background: #009f41;
    position: absolute;
    left: -24px;
    top: 50%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  .aside-category li a:hover {
    opacity: 1;
    color: #009f41;
  }

  .aside-category li a:hover:before {
    width: 16px;
  }

  .aside-category li a.is-active {
    color: #009f41;
    position: relative;
    z-index: 1;
  }

  .aside-category li a.is-active:before {
    width: 16px;
  }

  .sg_day {
    font-size: 16px;
    color: #009f41;
    text-align: right;
    padding: 24px 0 0;
    font-weight: 700;
  }

  .page_btn {
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid #009f41;
    position: relative;
    font-weight: 700;
  }

  .page_btn a {
    font-size: 16px;
    color: #009f41;
  }

  .page_btn a:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .page_btn .left {
    position: absolute;
    left: 0;
    top: 24px;
  }

  .page_btn .left a {
    padding: 0 0 2px 16px;
    position: relative;
  }

  .page_btn .left a:before {
    border-width: 4px 6px 4px 0;
    border-color: transparent #009f41 transparent transparent;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .page_btn .right {
    position: absolute;
    right: 0;
    top: 24px;
  }

  .page_btn .right a {
    padding: 0 16px 2px 0;
    position: relative;
  }

  .page_btn .right a:before {
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #009f41;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .page_btn .text_c a::before {
    display: none;
  }

  .pagenation {
    text-align: center;
    margin-top: 32px;
  }

  .pagenation li {
    display: inline-block;
    border: 1px solid #009f41;
    color: #009f41;
    margin: 0 8px;
  }

  .pagenation li a {
    display: block;
    padding: 8px 16px;
  }

  .pagenation li.current {
    background-color: #009f41;
    color: #fff;
    padding: 8px 16px;
  }

  .sns-sharerbtn-list {
    margin-top: 80px;
  }

  .sns-sharerbtn-list li + li {
    margin-left: 20px;
  }

  .sb_style h1,
  .sb_style h2 {
    border-color: #009f41;
  }

  .sb_style h3 {
    background: #009f41;
    color: #fff;
  }

  .sb_style h4:before {
    background-color: #009f41;
  }

  .sb_style ul li:before {
    background-color: #009f41;
  }
