<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
/*------------------共通------------------*/
body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP","游ゴシック", YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  color: #272727;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  min-width: 1280px;
}

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

.clearfix {
  display: block;
}

.pc-none {
  display: none!important;
}

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

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

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  img {
    width: auto;
    height: auto;
  }
}

a:link {
  text-decoration: none;
  color: #272727;
}

a:visited {
  text-decoration: none;
  color: #272727;
}

a:active {
  text-decoration: none;
  color: #272727;
}

a:hover {
  text-decoration: none;
  color: #272727;
}

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

.text-box p {
  padding-bottom: 2em;
  line-height: 2;
}

.text-box p:last-child {
  padding-bottom: 0;
}

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

.left {
  float: left;
}

.right {
  float: right;
}

.text_c {
  text-align: center;
}

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

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

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

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

/*footer 固定 css*/
html, body {
  height: 100%;
}

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

/*flex*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 0\0) and (min-resolution: 0.001dpcm) {
  .flex {
    -js-display: flex;
  }
}

.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;
}

.flex-wrap &gt; .flex:nth-child(2n) div:nth-child(2n) {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

/*アニメーション
-------------------------------------*/
.has-animation {
  position: relative;
  display: inline-block;
}

.has-animation * {
  opacity: 0;
}

.has-animation.animate-out * {
  opacity: 1;
  -webkit-animation: textOut .5s ease .1s forwards;
  animation: textOut .5s ease .1s forwards;
}

.has-animation.animate-out:before, .has-animation.animate-out:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}

.has-animation.animate-out:before {
  background-color: rgba(184, 210, 0, 0.4);
}

.has-animation.animate-out:after {
  background-color: #b8d200;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.has-animation.animate-in * {
  opacity: 0;
  -webkit-animation: textHidden .1s 1.1s forwards;
  animation: textHidden .1s 1.1s forwards;
}

.has-animation.animate-in:before, .has-animation.animate-in:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}

.has-animation.animate-in:before {
  background-color: rgba(184, 210, 0, 0.4);
}

.has-animation.animate-in:after {
  background-color: #b8d200;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.has-animation.animation-left.animate-out:before {
  -webkit-animation: outLTR 1s ease;
  animation: outLTR 1s ease;
}

.has-animation.animation-left.animate-out:after {
  -webkit-animation: outLTR .6s .4s ease;
  animation: outLTR .6s .4s ease;
}

.has-animation.animation-right.animate-out:before {
  -webkit-animation: outRTL 1s ease;
  animation: outRTL 1s ease;
}

.has-animation.animation-right.animate-out:after {
  -webkit-animation: outRTL .6s .4s ease;
  animation: outRTL .6s .4s ease;
}

.has-animation.animation-left.animate-in:before {
  -webkit-animation: revealLTR 1.2s ease;
  animation: revealLTR 1.2s ease;
}

.has-animation.animation-left.animate-in:after {
  -webkit-animation: revealLTR .8s .5s ease;
  animation: revealLTR .8s .5s ease;
}

.has-animation.animation-right.animate-in:before {
  -webkit-animation: revealRTL 1.2s ease;
  animation: revealRTL 1.2s ease;
}

.has-animation.animation-right.animate-in:after {
  -webkit-animation: revealRTL .8s .5s ease;
  animation: revealRTL .8s .5s ease;
}

@-webkit-keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}

@keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}

@-webkit-keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@-webkit-keyframes outRTL {
  0% {
    width: 0;
    right: 100%;
  }
  45% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 0;
  }
}

@keyframes outRTL {
  0% {
    width: 0;
    right: 100%;
  }
  45% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 0;
  }
}

@-webkit-keyframes outLTR {
  0% {
    width: 0;
    left: 100%;
  }
  45% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 0;
  }
}

@keyframes outLTR {
  0% {
    width: 0;
    left: 100%;
  }
  45% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 0;
  }
}

@-webkit-keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes textOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes textOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*dual
---------------------------------------------*/
.dual-sec {
  width: 49.999%;
  height: 100vh;
  text-align: center;
  background: url(../img/dual/dual_left_bg_img.jpg) no-repeat center/cover;
  color: #fff;
}

.dual-sec .cmn-btn a:after {
  width: 8px;
  height: 15px;
  right: 30px;
}

.dual-sec + .dual-sec {
  background: url(../img/dual/dual_right_bg_img.jpg) no-repeat center/cover;
}

.dual-sec + .dual-sec .cmn-btn a {
  background: #272727;
}

.dual-sec + .dual-sec .cmn-btn a:after {
  width: 8px;
  height: 15px;
  right: 30px;
}

.dual-sec .cmn-btn {
  width: 400px;
  margin: auto;
  font-size: 24px;
}

.dual-ttl {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 35px;
}

.dual-ttl em {
  display: inline-block;
  position: relative;
}

.dual-ttl em:before, .dual-ttl em:after {
  content: "";
  width: 35px;
  height: 35px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  position: absolute;
}

.dual-ttl em:before {
  left: -55px;
  top: -15px;
}

.dual-ttl em:after {
  content: "";
  right: -55px;
  bottom: -10px;
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

.dual-ttl span {
  display: block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.cmn-btn {
  text-align: center;
}

.cmn-btn a {
  display: block;
  background: #b8d200;
  color: #fff;
  padding: 9px 15px;
  position: relative;
}

.cmn-btn a:after {
  content: "";
  width: 6px;
  height: 10px;
  background: url(../img/cmn_arr.png) no-repeat center/contain;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.content_w &gt; section:nth-child(2n) {
  background: #f3f5e5;
}

/*header
---------------------------------------------*/
.h1-text {
  font-size: 10px;
  line-height: 20px;
  color: #adadad;
}

.h1-text span {
  display: block;
  width: 1080px;
  margin: auto;
}

.header {
  padding-bottom: 10px;
  background: #fff;
  position: fixed;
  z-index: 9999;
  width: 100%;
  left: 0;
  top: 0;
  height: 93px;
}

.h-in {
  margin-top: 10px;
}

.h-left {
  /*margin-top: 10px;*/
}

.h-right {
  width: 690px;
  /*margin-top: 10px;*/
}

.h-right .sns-icon-list {
  width: 135px;
}

/*nav
---------------------------------------------*/
.navi {
  width: 520px;
}

.navi li {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.navi li a {
  display: block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.navi li span {
  display: block;
  font-size: 12px;
  color: #b8d200;
  font-weight: 400;
}

/*---------main_visual------------*/
#main_visual {
  width: 98.792%;
  height: 800px;
  margin: auto;
  position: relative;
  overflow: hidden;
  background: url(../img/mv_bg.jpg) no-repeat center/cover;
  margin-top: 93px;
}

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

/* common
---------------------------------------------------- */
.sec-ttl {
  text-align: center;
  position: relative;
}

.sec-ttl + * {
  margin-top: 60px;
}

.sec-ttl:after {
  content: "";
  width: 2px;
  height: 15px;
  background: #b8d200;
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.sec-ttl span {
  display: block;
  color: #b8d200;
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.sec01-dl {
  background: url(../img/sec01_dl_bg.jpg) no-repeat center/cover;
  padding: 95px 0 100px;
  margin-top: 95px;
  color: #fff;
}

.sec01-dl &gt; div {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 1080px;
  margin: auto;
  padding-left: 110px;
}

.sec01-dl &gt; div + div {
  margin-top: 25px;
}

.sec01-dl dt {
  position: relative;
}

.sec01-dl dt:after {
  content: "";
  width: calc(402px - 100%);
  height: 1px;
  background: #fff;
  position: absolute;
  right: -40px;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
}

.sec01-dl dd {
  width: 480px;
  font-size: 35px;
}

.about-insec-wrap {
  margin-top: 95px;
}

.about-insec + .about-insec {
  margin-top: 50px;
}

.about-insec:nth-child(2n) .about-insec-img {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin: 0 -420px 0 0;
}

.about-insec:nth-child(2n) .about-insec-text-wrap {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}

.about-insec:nth-child(4) .about-insec-text-wrap {
  width: 560px;
}

.about-insec:nth-child(4) .about-insec-text-wrap h4 span {
  letter-spacing: -0.05em;
  padding-bottom: 11px;
}

.about-insec:nth-child(5) .about-insec-text-wrap h4 span {
  padding-bottom: 8px;
}

.about-insec-img {
  margin-left: -420px;
  height: 300px;
}

.about-insec-text-wrap {
  width: 510px;
}

.about-insec-text-wrap h4 span {
  font-size: 24px;
  display: inline-block;
  padding-left: 30px;
  vertical-align: bottom;
  line-height: 1;
}

.about-insec-text-wrap h4 + div {
  margin-top: 25px;
}

/*section01
-----------------------------------------------------*/
#section01 {
  padding: 65px 0 100px;
}

/*section02
-----------------------------------------------------*/
#section02 {
  padding: 100px 0;
}

.sec02-works-copy {
  background: url(../img/sec02_works_bg.png) no-repeat center bottom/cover;
  padding-bottom: 25px;
  height: 323px;
  color: #fff;
  text-align: center;
}

.sec02-bg-ttl {
  font-size: 32px;
}

.sec02-bg-ttl + div {
  margin-top: 28px;
}

.sec02-works-sec {
  margin-top: 50px;
}

.sec02-works-sec:nth-child(2n) .sec02-works-text {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.sec02-works-sec:nth-child(2n) .sec02-works-img {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}

.sec02-other {
  margin-top: 95px;
}

.sec02-other .sec02-works-copy {
  background-image: url(../img/sec02_other_bg.png);
}

.sec02-other-in {
  margin-top: 70px;
}

.sec02-other-in h4 {
  font-size: 26px;
  text-align: center;
}

.sec02-other-in h4 + ul {
  margin-top: 30px;
}

.sec02-other-in h4 span {
  position: relative;
  z-index: 1;
}

.sec02-other-in h4 span:before {
  content: "";
  width: 100%;
  height: 7px;
  background: #e1eaa0;
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: -1;
}

.sec02-other-list li {
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background: url(../img/sec02_other_li_bg_icon.png) no-repeat center #b8d200;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  margin-top: 10px;
}

.sec02-other-list li + li {
  margin-left: 40px;
}

.sec02-other-list li:nth-child(4n+5) {
  margin-left: 0;
}

/*section03
-----------------------------------------------------*/
#section03 {
  padding: 105px 0;
}

.case-list li {
  width: 330px;
  margin: 35px 0 0 0;
  padding-top: 30px;
  background: url(../img/num01.png) no-repeat right top;
}

.case-list li p {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid #272727;
  padding: 7px;
  letter-spacing: 0.04em;
}

.case-list li + li {
  margin-left: 45px;
}

.case-list li:nth-child(3n+4) {
  margin-left: 0;
}

.case-list li:nth-child(2) {
  background-image: url(../img/num02.png);
}

.case-list li:nth-child(3) {
  background-image: url(../img/num03.png);
}

.case-list li:nth-child(4) {
  background-image: url(../img/num04.png);
}

.case-list li:nth-child(5) {
  background-image: url(../img/num05.png);
}

.case-list li:nth-child(6) {
  background-image: url(../img/num06.png);
}

/*section04
-----------------------------------------------------*/
#section04 {
  padding: 100px 0;
}

.flow-list li {
  width: 330px;
  height: 300px;
  margin: 45px 0 0 0;
  padding: 20px;
  color: #fff;
  background: url(../img/flow_bg01.jpg) no-repeat center/cover;
}

.flow-list li h4 {
  text-align: center;
  font-size: 28px;
  padding: 35px 0 10px;
  border-bottom: 1px solid #fff;
  background: url(../img/num01.png) no-repeat center top;
  line-height: 1.3;
}

.flow-list li h4 + div {
  margin-top: 15px;
}

.flow-list li h4 + div p {
  font-size: 14px;
}

.flow-list li:nth-child(2) h4 {
  background-image: url(../img/num02.png);
}

.flow-list li:nth-child(3) h4 {
  background-image: url(../img/num03.png);
}

.flow-list li:nth-child(4) h4 {
  background-image: url(../img/num04.png);
}

.flow-list li:nth-child(5) h4 {
  background-image: url(../img/num05.png);
}

.flow-list li:nth-child(6) h4 {
  background-image: url(../img/num06.png);
}

.flow-list li:nth-child(2) {
  background-image: url(../img/flow_bg02.jpg);
}

.flow-list li:nth-child(3) {
  background-image: url(../img/flow_bg03.jpg);
}

.flow-list li:nth-child(4) {
  background-image: url(../img/flow_bg04.jpg);
}

.flow-list li:nth-child(5) {
  background-image: url(../img/flow_bg05.jpg);
}

.flow-list li:nth-child(6) {
  background-image: url(../img/flow_bg06.jpg);
}

.flow-list li + li {
  margin-left: 45px;
  position: relative;
}

.flow-list li + li:after {
  content: "";
  width: 13px;
  height: 25px;
  background: url(../img/flow_arr.png) no-repeat center;
  position: absolute;
  left: -30px;
}

.flow-list li:nth-child(-n+3) {
  margin-top: 0;
}

.flow-list li:nth-child(3n+4) {
  margin-left: 0;
}

.flow-list li:nth-child(3n+4):after {
  display: none;
}

/*section05
-----------------------------------------------------*/
#section05 {
  padding: 100px 0;
}

.sec05-text-wrap {
  width: 540px;
}

.name {
  text-align: right;
}

.comp-table-wrap {
  margin-top: 95px;
}

.cmn-table {
  width: 100%;
  border-bottom: 1px dotted #272727;
}

.cmn-table tr {
  border-top: 1px dotted #272727;
}

.cmn-table tr th, .cmn-table tr td {
  padding: 15px;
  vertical-align: middle;
  line-height: 1.9;
}

.map {
  margin-top: 30px;
  position: relative;
  width: 100%;
  padding-top: 260px;
}

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

.comp-btn-list {
  margin-top: 30px;
}

.comp-btn-list .cmn-btn {
  width: 330px;
}

/*section06
-----------------------------------------------------*/
#section06 {
  padding: 100px 0;
}

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

.f-dl {
  margin-top: 30px;
  line-height: 1;
}

.f-dl &gt; div {
  display: table;
  width: 100%;
}

.f-dl &gt; div + div {
  margin-top: 20px;
}

.f-dl dt, .f-dl dd {
  display: table-cell;
  vertical-align: middle;
}

.f-dl dt {
  width: 40px;
  border-right: 1px solid #272727;
}

.f-dl dd {
  padding-left: 11px;
}

.f-in {
  padding: 50px 0 30px;
  border-bottom: 1px solid #a0a0a0;
}

.f-area-ttl {
  text-align: center;
  color: #b8d200;
  border-bottom: 1px solid #b8d200;
  font-size: 16px;
  padding-bottom: 10px;
}

.f-area-ttl + p {
  margin-top: 10px;
}

.f-right img {
  display: inline-block;
  margin-top: 20px;
}

.f-nav {
  text-align: center;
  margin-bottom: 20px;
}

.f-nav li {
  float: left;
}

.f-nav li a {
  display: block;
  font-size: 12px;
  padding: 3px 5px;
  color: #fff;
}

#copyright {
  font-size: 12px;
  text-align: center;
  line-height: 70px;
  color: #a0a0a0;
}

#copyright a {
  color: #a0a0a0;
}

/*下層
-------------------------------------------------*/
#main_area {
  background: url(../img/common/main_bg.jpg) no-repeat center;
  background-size: cover;
}

#main-in {
  width: 1080px;
  margin: auto;
  padding: 140px 0 158px;
  text-align: center;
}

#main-ttl {
  font-size: 35px;
}

#bread {
  padding: 4px 0 3px;
}

#bread ul {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#bread li {
  display: inline;
  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;
}

.btt-content {
  padding: 100px 0 100px;
}

.title01 {
  font-size: 30px;
  border-bottom: 1px solid #b8d200;
  position: relative;
  margin-bottom: 40px;
}

.title01 em {
  position: absolute;
  left: 0;
  bottom: -10px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  font-weight: 700;
  font-family: "Noto Sans JP","游ゴシック", YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
}

ol {
  list-style: none;
  /* olがはき出す数字を消す */
  padding: 0;
  /* paddingキャンセル */
  margin: 0;
  /* marginキャンセル */
  counter-reset: li;
  position: relative;
}

ol.cmn-ol-list li {
  font-size: 25px;
  padding-left: 70px;
  position: relative;
  margin-bottom: 50px;
  font-weight: bold;
  letter-spacing: 1px;
}

ol.cmn-ol-list li:before {
  counter-increment: li;
  /*リストの数字を1つ進める。IE7以下、未対応*/
  content: counter(li) ".";
  /*リストを連番にする*/
  display: block;
  width: 60px;
  text-align: right;
  font-size: 30px;
  color: #b8d200;
  position: absolute;
  left: 0;
  top: -6px;
}

.cmn-sec {
  padding-bottom: 100px;
}

.cmn-sec:last-child {
  padding-bottom: 0;
}

.e404-content a {
  font-style: underline;
}

.tel a {
  pointer-events: none;
}

/*site_map
------------------------------------------*/
.site_map-li &gt; li {
  border-bottom: 1px dotted #272727;
}

.site_map-li &gt; li span {
  display: block;
  color: #272727;
  padding: 14px 0 11px;
  font-size: 18px;
}

.site_map-li &gt; li a {
  display: block;
  color: #272727;
  padding: 14px 40px 11px;
  font-size: 18px;
  position: relative;
}

.site_map-li &gt; li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #b8d200;
  position: absolute;
  left: 15px;
  top: 19px;
}

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

.privacy_text {
  font-size: 16px;
}

/*news
-----------------------------------*/
.news-list li a {
  display: block;
}

.news-list li h4 {
  display: table;
  width: 100%;
  border-bottom: 1px solid #b8d200;
  padding: 15px 0;
}

.news-list li h4 span, .news-list li h4 time {
  display: table-cell;
  vertical-align: top;
}

.news-list li div.body {
  margin-top: 15px;
  background-color: #f2f2f2;
  padding: 10px;
  font-size: 14px;
}

.news-list .news-ymd {
  width: 110px;
  text-align: center;
  font-size: 14px;
  background: 1px solid rgba(184, 210, 0, 0.4);
  color: rgba(184, 210, 0, 0.4);
  position: relative;
  border: 1px solid #b8d200;
}

.news-list .news-ymd:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(184, 210, 0, 0.4);
  border-right: 1px solid rgba(184, 210, 0, 0.4);
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.news-list .news-ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 15px;
  max-width: 0;
}

.news-list div.body {
  background-color: #f2f2f2;
  padding: 10px;
  font-size: 14px;
  margin-top: 10px;
}

.a-news-list .news-list li {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}

.a-news-list .news-list li h4 {
  padding-bottom: 0;
  border-bottom: none;
}

/*news-sg
-----------------------------------*/
.sg_day {
  font-size: 12px;
  color: #b8d200;
  text-align: right;
  padding: 15px 0 0;
  font-weight: 700;
}

.page_btn {
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #333;
  position: relative;
  font-weight: 700;
}

.page_btn a {
  font-size: 12px;
  color: #b8d200;
}

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

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

.page_btn .left a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 6px 4px 0;
  border-color: transparent #b8d200 transparent transparent;
  position: absolute;
  left: 0;
  top: 30%;
}

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

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

.page_btn .right a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #b8d200;
  position: absolute;
  right: 0;
  top: 30%;
}

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

.pagenation li {
  display: inline-block;
  border: 1px solid #b8d200;
  color: #b8d200;
  margin: 0 5px;
}

.pagenation li a {
  display: block;
  padding: 3px 12px;
}

.pagenation li.current {
  background-color: #b8d200;
  color: #fff;
  padding: 3px 12px;
}

/*contact
----------------------------------------------*/
/*==================================================
入力フィールド
================================================== */
select,
textarea,
input[type='tel'],
input[type='num'],
input[type='text'],
input[type='email'] {
  max-width: 100%;
  padding: 2px 4px;
  border-radius: 5px;
  border: 2px solid #e6e6e6;
  height: 30px;
  background-color: #fff;
}

textarea {
  width: 100%;
  height: 200px;
}

/* ボタン
-------------------------------------------------- */
.contact_btn ul {
  margin-top: 10px;
  text-align: center;
}

.contact_btn li {
  display: inline-block;
  margin: 10px;
  position: relative;
}

.contact_btn li input {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border: none;
  font-weight: bold;
  padding: 20px 0 18px;
  width: 280px;
  background-color: #b8d200;
  -webkit-appearance: none;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact_btn li input[disabled] {
  opacity: 0.5;
  color: #ccc;
}

.contact_btn li:before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  vertical-align: middle;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  display: none;
  margin: 0;
}

input[type=radio] + label,
input[type=checkbox] + label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #b8d200;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #b8d200;
  border-bottom: 3px solid #b8d200;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*==================================================
テーブル
================================================== */
.cont-table {
  margin: 0 0 16px;
}
.cont-table tr th{
  width: 300px;
}
/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .cont-table,
  .cont-table tbody,
  .cont-table tr,
  .cont-table th,
  .cont-table td {
    width: auto;
    display: block;
  }
}

/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  line-height: 80px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: #b8d200;
}

/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  padding: 2px 4px;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
}

.optional-mark {
  background: #b8d200;
}

.required-mark {
  background: #b8d200;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #b8d200;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  text-align: center;
}

/* プライバシーポリシー */
.inline-privacy-policy {
  height: 350px;
  margin: 10px 0;
  border: 1px solid #dfdfdf;
  background: #fff;
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* リキャプチャ */
.contact_agree {
  margin-top: 10px;
  text-align: center;
}

.contact-recaptcha-wrap {
  width: 300px;
  margin: 10px auto 0;
}

.contact_privacy a {
  text-decoration: underline;
}
</pre></body></html>