@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #111;
  font-family: "YakuHanJP", Lato, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

a {
  color: #b5e749;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #c7ed76;
}

img {
  max-width: 100%;
  height: auto;
}

/* loader
----------------------------------*/
.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 6;
  -webkit-perspective: 100px;
          perspective: 100px;
}

.loader::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -27px;
  margin-left: -30px;
  width: 61px;
  height: 54px;
  -webkit-animation: rotate 2.5s linear infinite;
          animation: rotate 2.5s linear infinite;
}

.loader.off {
  display: none;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

/* language
----------------------------------*/
.ja {
  font-family: "YakuHanJP", Lato, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.en {
  font-family: "sans-serif", "YakuHanJP", "Cormorant Garamond";
  text-transform: uppercase;
}

/* header
----------------------------------*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  background-color: #fff;
  padding: 4px 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#header .white {
  display: none !important;
}

#header .black {
  display: block !important;
}

#header a {
  color: #111;
}

#header a:hover {
  color: rgba(181, 231, 73, 0.8);
}

#header a .en {
  color: #467302;
}

#header .contact_btn {
  background-color: #b5e749;
  margin-right: 20px;
}

#header .contact_btn:last-child {
  margin-right: 0;
}

#header .contact_btn a:hover {
  color: white;
}

#header.is-fixed {
  position: fixed;
}

#header.change-color {
  background-color: #0000;
}

#header.change-color a {
  color: #fff;
}

#header.change-color a:hover {
  color: rgba(181, 231, 73, 0.8);
}

#header.change-color .white {
  display: block !important;
}

#header.change-color .black {
  display: none !important;
}

#header.change-color .en {
  color: #fff;
}

#header.change-color .contact_btn {
  background-color: rgba(181, 231, 73, 0.7);
}

#header.change-color .contact_btn a:hover {
  color: rgba(0, 0, 0, 0.8);
}

#header .inner {
  margin: 0 auto;
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #logo {
  width: 200px;
}

#header #head_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

#header #navi li {
  margin-right: 20px;
  padding-right: 20px;
}

#header #navi li a {
  font-weight: 600;
  line-height: 1.2;
}

#header #navi li span {
  display: block;
  font-size: 1.2rem;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 55px;
  right: 10px;
  z-index: 5;
}

#page-top a {
  display: inline-block;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  text-decoration: none;
  color: #111;
  font-size: 1.4rem;
  line-height: 80px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

#page-top a:before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  width: 15px;
  height: 15px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* footer
----------------------------------*/
#footer {
  background-color: #467302;
  color: #fff;
  padding: 80px 0;
  font-size: 1.4rem;
}

#footer .inner {
  max-width: 1160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 50px;
  text-align: center;
}

#footer .inner .information {
  width: 100%;
  margin-bottom: 20px;
}

#footer .inner .link {
  width: 100%;
}

#footer .inner .flogo {
  margin: auto auto 10px auto;
  width: 250px;
}

#footer .inner .link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .inner .link_list a {
  color: #fff;
}

#footer .inner .link_list a:hover {
  text-decoration: underline;
}

#footer .inner .link_list > li {
  margin-left: 5px;
}

#footer .inner .link_list > li > a {
  font-weight: 600;
}

#footer .inner .link_list > li:after {
  content: "|";
}

#footer .inner .sub_link_list {
  margin-top: 15px;
}

#footer .inner .sub_link_list li {
  margin-top: 10px;
}

#footer .inner .sub_link_list li a {
  position: relative;
  padding-left: 15px;
}

#footer .inner .sub_link_list li a:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #b5e749;
}

#footer .copyright {
  text-align: center;
  font-size: 1.2rem;
}

/* foot_contact
----------------------------------*/
.foot_contact {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3%;
}

.foot_contact .foot_image {
  width: 16%;
  text-align: center;
}

.foot_contact .foot_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}

.foot_contact .foot_title {
  font-size: 2rem;
  font-weight: 600;
}

.foot_contact .foot_txt {
  width: 57%;
}

.foot_contact .area_title {
  font-size: 1.8rem;
  font-weight: 600;
}

/* hours
----------------------------------*/
.hours {
  font-size: 1.4rem;
}

.hours dt,
.hours dd {
  margin-bottom: 5px;
}

.hours dt {
  clear: both;
  float: left;
  width: 7em;
  background-color: #fff;
  border: 1px solid #b5e749;
  border-radius: 5em;
  color: #b5e749;
  text-align: center;
}

.hours dd {
  padding-left: 8em;
}

/* sp_navi
----------------------------------*/
#sp_navi,
#drawernav,
#humberger {
  display: none;
}

/* slideshow
----------------------------------*/
#slideshow {
  position: relative;
  overflow: hidden;
}

#slideshow:before {
  content: "";
  background-image: url(../img/gradation.png);
  opacity: 0.7;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#catch {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 2;
  width: 550px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: fadeIn 6s ease 0s 1 normal;
  -webkit-animation: fadeIn 6s ease 0s 1 normal;
}

#catch1 {
  position: absolute;
  top: 30%;
  left: 35%;
  z-index: 2;
  width: 20%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#catch2 {
  position: absolute;
  top: 43%;
  left: 55%;
  z-index: 2;
  width: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#catch3 {
  position: absolute;
  top: 56%;
  left: 30%;
  z-index: 2;
  width: 30%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#catch4 {
  position: absolute;
  top: 70%;
  left: 50%;
  z-index: 2;
  width: 55%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider > div {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
}

.slider > div .slider-img {
  display: none;
}

.slider > div > div {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-repeat: no-repeat;
}

/* contact_btn
----------------------------------*/
.contact_btn li a,
.contact_btn li button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 1em 3em;
  border-radius: 1px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.contact_btn li a span,
.contact_btn li button span {
  position: relative;
}

.contact_btn li a:before,
.contact_btn li button:before {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}

.contact_btn li a:after,
.contact_btn li button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.contact_btn li a:hover:before,
.contact_btn li button:hover:before {
  width: 100%;
}

.contact_btn li .contact_other {
  background-color: #467302;
}

.contact_btn li .contact_other:before {
  background-color: #558c02;
}

.contact_btn li .contact_mail {
  background-color: #b5e749;
}

.contact_btn li .contact_mail:before {
  background-color: #a2e01d;
}

.contact_btn li .contact_shop {
  background-color: #fff;
  color: #b5e749;
}

.contact_btn li .contact_shop:before {
  background-color: #f2f2f2;
}

.contact_btn li .contact_shop:hover {
  color: #b5e749;
}

.contact_btn li .contact_w_01 {
  width: 340px;
  padding: 1.5em 3em;
}

.contact_btn li .contact_w_02 {
  margin: 30px auto 0;
}

/* contact_list
----------------------------------*/
.contact_list {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  text-align: center;
}

.contact_list li {
  width: 40%;
  margin: 0 2%;
}

.contact_list li a {
  display: block;
  padding: 1em 0;
  border-radius: 100px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

.contact_list li a:before {
  margin-right: 10px;
}

.contact_list li a.tel_btn {
  background: #fff;
  color: #b5e749;
  font-weight: 600;
}

.contact_list li a.tel_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
}

.contact_list li a.mail_btn {
  background: #b5e749;
  color: #fff;
}

.contact_list li a.mail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

.phone a {
  display: block;
  color: #b5e749;
  font-size: 3.2rem;
  font-weight: 600;
}

.phone a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 10px;
}

/* contents
----------------------------------*/
.single_01 {
  margin: 0 auto;
  max-width: 1160px;
  padding-bottom: 80px;
}

.single_02 {
  margin: 0 auto;
  max-width: 1024px;
  padding-bottom: 80px;
}

.single_03 {
  margin: 0 auto;
  max-width: calc(100% - 100px);
  padding-bottom: 80px;
}

.single_04 {
  margin: 0 auto;
  max-width: 768px;
  padding-bottom: 80px;
}

.single_05 {
  margin: 0 auto;
  max-width: 1160px;
}

.single_06 {
  margin: 0 auto;
  max-width: 1024px;
}

.single_07 {
  margin: 0 auto;
  max-width: calc(100% - 100px);
}

.single_08 {
  margin: 0 auto;
  max-width: 768px;
}

/* bg
----------------------------------*/
.bg_common {
  padding-top: 80px;
}

.bg_b {
  margin-bottom: 80px;
}

.bg_01 {
  background-image: url(../img/bg_pattern_01.png);
  background-repeat: repeat;
  background-position: center;
  background-size: 16px auto;
}

.bg_02 {
  background-color: #f1f2f6;
}

.bg_03 {
  position: relative;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  /*
 &:after {
  content: '';
  background: rgba(0,0,0,.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
 }
 */
}

.bg_04 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #f1f2f6));
  background: linear-gradient(transparent 40%, #f1f2f6 40%);
}

.bg_05 {
  background-color: #fafafa;
}

.bg_skew {
  position: relative;
  padding: 60px 0;
}

.bg_skew:before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 90%;
  -webkit-transform: skewY(4deg);
          transform: skewY(4deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#b5e749), to(#b5e749));
  background-image: linear-gradient(to right, #b5e749 0%, #b5e749 100%);
  z-index: -2;
}

.bg_skew:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 90%;
  -webkit-transform: skewY(-4deg);
          transform: skewY(-4deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff799), to(#fff799));
  background-image: linear-gradient(to right, #fff799 0%, #fff799 100%);
  z-index: -3;
}

.bg_recruit {
  background-image: url(../img/bg_recruit.png);
  background-repeat: no-repeat;
  background-position: center top;
}

/* column
----------------------------------*/
.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.half .child {
  width: 50%;
}

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

.triple .child {
  width: 33.3%;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column2 > .child {
  width: 48.44%;
  margin: 0 3% 3% 0;
}

.column2 > .child:nth-child(2n) {
  margin: 0 0 3% 0;
}

.column2 > .child2 {
  width: 100%;
  margin: 0 3% 3% 0;
}

.column2 > .child2:nth-child(2n) {
  margin: 0 0 3% 0;
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column3 > .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.column3 > .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column4 > .child {
  width: 22.7%;
  margin: 0 3% 3% 0;
}

.column4 > .child:nth-child(4n) {
  margin: 0 0 3% 0;
}

.column5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -2%;
}

.column5 > .child {
  width: 18.4%;
  margin: 0 2% 2% 0;
}

.column5 > .child:nth-child(5n) {
  margin: 0 0 2% 0;
}

/* mtitle
----------------------------------*/
.mtitle_page {
  position: relative;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  line-height: 1.4;
}

.mtitle_page span {
  display: block;
  font-family: "sans-serif", "YakuHanJP", "Cormorant Garamond";
  font-size: 1.4rem;
}

.mtitle_big {
  position: relative;
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.mtitle_big span {
  display: block;
  color: #b5e749;
  font-size: 1.2rem;
}

.mtitle_big.white {
  color: #fff;
}

.mtitle_big.white span {
  color: #fff;
}

.mtitle_middle {
  position: relative;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 2rem;
  font-weight: 600;
}

.mtitle_middle:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 2px;
  background-color: #b5e749;
}

.mtitle_small {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 30px;
  margin-bottom: 20px;
}

.mtitle_small:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: #b5e749;
}

.mtitle_small span {
  font-size: 0.8em;
}

.mtitle {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.mtitle span {
  color: #b5e749;
  margin-left: 0.5em;
  font-size: 1.5rem;
}

.mtitle_sub {
  position: relative;
  padding-left: 20px;
  font-size: 1.6rem;
  font-weight: 600;
}

.mtitle_sub:before {
  content: "";
  background-color: #b5e749;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.mtitle_point {
  margin-bottom: 15px;
  font-size: 1.8rem;
  position: relative;
  text-align: center;
}

.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #b5e749;
  display: block;
  margin: 10px auto 0;
}

.mtitle_flow {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b5e749;
  color: #b5e749;
  font-size: 1.8rem;
  font-weight: 600;
}

.mtitle_flow span {
  margin-left: 0.5em;
  font-size: 1.5rem;
}

.mtitle_top {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
}

.mtitle_top span {
  margin-right: 0.5em;
  background-color: #b5e749;
  color: #fff;
  padding: 0.2em 1em;
  font-size: 1.6rem;
}

.mtitle_balloon {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  line-height: 1em;
  overflow: hidden;
}

.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #111;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

.mtitle_balloon span:before {
  left: -5px;
}

.mtitle_balloon span:after {
  right: -5px;
}

.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #111;
  border-right: 3px solid #111;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_balloon.mtitle_balloon_01 {
  text-align: center;
}

.mtitle_ribon {
  position: absolute;
  top: -25px;
  left: -10px;
  width: 100%;
}

.mtitle_ribon span {
  display: inline-block;
  background: #b5e749;
  color: #fff;
  font-size: 2rem;
  padding: 10px 30px;
}

.mtitle_ribon:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #81b218 transparent transparent;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.mtitle_news {
  padding-top: 0.5em;
  display: inline-block;
  line-height: 1.4;
}

.mtitle_news span {
  display: block;
  color: #b5e749;
  font-size: 3.5rem;
}

.mtitle_mg {
  position: relative;
  margin: -17px 0 17px;
  z-index: 2;
  white-space: nowrap;
}

.mtitle_mg span {
  display: inline-block;
  background-color: #b5e749;
  color: #fff;
  padding: 6px 7px 6px 9px;
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.mtitle_mg em {
  display: inline-block;
  background-color: #fcf9a1;
  padding: 9px 9px 11px 10px;
  font-style: normal;
}

.mtitle_greeting {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle_greeting span {
  display: block;
  font-size: 1.2rem;
  color: #b5e749;
}

/* btn
----------------------------------*/
.a_btn {
  margin-top: 30px;
}

.a_btn a,
.a_btn span {
  display: table;
  position: relative;
  background: #fff;
  color: #b5e749;
  padding: 0.5em 3em;
  border-radius: 100px;
  margin: 0 auto;
}

.a_btn a:after,
.a_btn span:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.b_btn {
  display: block;
  margin-top: 30px;
  width: 300px;
  padding: 1em;
  text-align: center;
  color: #b5e749;
  border: 1px solid #b5e749;
  background-color: transparent;
  position: relative;
  -webkit-transition: 0.46s;
  transition: 0.46s;
}

.b_btn:hover {
  background-color: #b5e749;
  color: #fff;
}

.b_btn:hover .b_btn_icon {
  background-color: #fff;
  right: 26px;
  width: 30px;
}

.b_btn:hover .b_btn_icon:before {
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
}

.b_btn .b_btn_icon {
  position: absolute;
  top: calc(50% - 1px);
  right: -30px;
  width: 60px;
  height: 1px;
  -webkit-transition: inherit;
  transition: inherit;
  background-color: #b5e749;
}

.b_btn .b_btn_icon:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 4px solid transparent;
  border-left: 4px solid #b5e749;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #b5e749;
  -webkit-transition: inherit;
  transition: inherit;
}

.b_btn.b_btn_01 {
  margin: 30px auto 0;
}

.b_btn.b_btn_white {
  color: #fff;
  border: 1px solid #fff;
}

.b_btn.b_btn_white:hover {
  background-color: #fff;
  color: #b5e749;
}

.b_btn.b_btn_white:hover .b_btn_icon {
  background-color: #b5e749;
}

.b_btn.b_btn_white:hover .b_btn_icon:before {
  border-left: 4px solid #b5e749;
  border-bottom: 4px solid #b5e749;
}

.b_btn.b_btn_white .b_btn_icon {
  background-color: #fff;
}

.b_btn.b_btn_white .b_btn_icon:before {
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
}

.c_btn {
  margin-top: 30px;
}

.c_btn a,
.c_btn button {
  display: block;
  position: relative;
  width: 320px;
  max-width: 100%;
  background: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.c_btn a:after,
.c_btn button:after {
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.c_btn a:hover:after,
.c_btn button:hover:after {
  right: 10px;
}

.c_btn.c_btn_01 {
  position: absolute;
  bottom: -8%;
}

.c_btn.c_btn_02 a,
.c_btn.c_btn_02 button {
  margin: 0 auto;
}

.d_btn {
  height: 3.125em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: 0.9s all cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.9s all cubic-bezier(0.19, 1, 0.22, 1);
  margin-top: 30px;
  padding: 0 1em;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: none;
  max-width: 300px;
  min-width: 280px;
  will-change: transform;
  color: #fff;
}

.d_btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.6s all cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.6s all cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.d_btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #fff;
}

.d_btn:hover:before {
  opacity: 1;
  -webkit-transform: scale(2) rotate(0deg);
          transform: scale(2) rotate(0deg);
}

.d_btn span {
  margin: 0 0.3125em;
  position: relative;
  z-index: 1;
}

.d_btn i {
  line-height: 1em;
  margin-left: 0.8em;
  position: relative;
  z-index: 1;
}

.d_btn i:before {
  font-family: "Font Awesome 5 Free";
  content: "\2192";
  font-weight: 900;
}

.d_btn.d_btn_01 {
  background: #b5e749;
}

.d_btn.d_btn_01 span,
.d_btn.d_btn_01 i {
  color: #fff;
}

.d_btn.d_btn_01:before {
  background: #fff;
}

.d_btn.d_btn_01:hover span,
.d_btn.d_btn_01:hover i {
  color: #b5e749;
}

.d_btn.d_btn_02 {
  background: #467302;
}

.d_btn.d_btn_02 span,
.d_btn.d_btn_02 i {
  color: #b5e749;
}

.d_btn.d_btn_02:before {
  background: #b5e749;
}

.d_btn.d_btn_02:hover span,
.d_btn.d_btn_02:hover i {
  color: #fff;
}

.d_btn.d_btn_03 {
  margin: 30px auto 0;
}

.e_btn {
  margin-top: 30px;
}

.e_btn a,
.e_btn span {
  display: table;
  position: relative;
  background: #fff;
  border: 1px solid #b5e749;
  color: #b5e749;
  padding: 0.5em 3em;
  border-radius: 100px;
  margin: 0 auto;
}

.e_btn a:after,
.e_btn span:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.e_btn a:hover,
.e_btn span:hover {
  background: #b5e749;
  color: #fff;
}

.f_btn {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  text-align: center;
}

.f_btn a,
.f_btn button {
  display: inline-block;
  padding: 26px 80px;
  background-color: #b5e749;
  -webkit-box-shadow: 6px 6px #a2e01d;
          box-shadow: 6px 6px #a2e01d;
  color: #fff;
  font-weight: 600;
}

.f_btn a:after,
.f_btn button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  padding-left: 20px;
}

.f_btn a:hover,
.f_btn button:hover {
  background-color: #a2e01d;
  -webkit-box-shadow: 6px 6px #b5e749;
          box-shadow: 6px 6px #b5e749;
}

/* news
----------------------------------*/
.news-bl dt {
  float: left;
  width: 7em;
  margin-bottom: 10px;
  padding: 3px 5px;
  background: #b5e749;
  color: #fff;
  text-align: center;
}

.news-bl dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #ddd;
  margin: 0 0 10px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

.news_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news_box .news_title {
  width: 20%;
}

.news_box .news_list {
  width: 80%;
}

.news_list li {
  border-bottom: 1px solid #ccc;
}

.news_list li:first-child {
  border-top: 1px solid #ccc;
}

.news_list li a,
.news_list li .news_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  color: #111;
}

.news_list li .news_date {
  margin-right: 20px;
  font-size: 1.2rem;
}

.news_list li .news_category {
  background: #fff;
  border: 1px solid #b5e749;
  border-radius: 5em;
  color: #b5e749;
  padding: 5px;
  margin-right: 30px;
  min-width: 140px;
  text-align: center;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  background-color: #fff;
  font-size: 1.4rem;
}

.tbl th,
.tbl td {
  vertical-align: middle;
  border: 1px solid #ddd;
  padding: 10px;
}

.tbl th {
  background: #fafafa;
  font-weight: 500;
  text-align: left;
}

.tbl_new {
  width: 100%;
  font-size: 1.3rem;
}

.tbl_new th,
.tbl_new td {
  vertical-align: top;
  padding: 10px 7px;
  border-bottom: 1px solid #ddd;
}

.tbl_new th {
  text-align: left;
  font-weight: 500;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}

.company th {
  text-align: left;
  width: 20%;
  position: relative;
  background: #b5e749;
  color: #fff;
  font-weight: 600;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #fff;
  border-width: 10px;
  border-left-color: #b5e749;
  margin-top: -10px;
}

.company td {
  background: #fff;
  padding-left: 20px;
}

.tbl_simple {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 1.3rem;
}

.tbl_simple th,
.tbl_simple td {
  vertical-align: top;
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
}

.tbl_simple th {
  background-color: #b5e749;
  color: #fff;
  font-weight: 600;
}

.tbl_simple span {
  color: #b5e749;
}

.tbl_company {
  width: 100%;
  font-size: 1.4rem;
}

.tbl_company th,
.tbl_company td {
  padding: 15px;
  vertical-align: middle;
}

.tbl_company th {
  border-bottom: 1px solid #b5e749;
  font-weight: 500;
  text-align: left;
}

.tbl_company td {
  border-bottom: 1px solid #dcdcdc;
  line-height: 1.8em;
}

.tbl_form {
  margin-bottom: 50px;
}

.tbl_form th {
  text-align: left;
}

.cell_01 {
  width: 20%;
}

.cell_02 {
  width: 35%;
}

.number {
  text-align: right;
  width: 16%;
}

/* list
----------------------------------*/
.list_common {
  font-size: 1.4rem;
}

.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check {
  font-size: 1.4rem;
}

.list_check li {
  position: relative;
  padding-left: 1.5em;
}

.list_check li:before {
  position: absolute;
  top: 0;
  left: 1.5em;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  content: "\f14a";
  color: #b5e749;
  margin: 0 5px 0 -1.5em;
  padding: 1px;
}

.list_half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list_half li {
  width: 33%;
}

.list_note li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.list_note li:last-child {
  margin-bottom: 0;
}

.list_note li:before {
  content: "※";
  margin: 0 5px 0 -1.5em;
}

.list_disc li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.list_disc li:last-child {
  margin-bottom: 0;
}

.list_disc li:before {
  content: "・";
  margin: 0 5px 0 -1em;
  color: #b5e749;
}

.list_line li {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}

.list_line li:after {
  position: absolute;
  right: 0;
  content: "/";
}

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

.list_motto {
  font-family: "sans-serif", "YakuHanJP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 600;
}

.list_motto li {
  margin-bottom: 10px;
}

.list_motto li:before {
  content: "一.";
}

.rounded-list {
  counter-reset: li;
  padding-left: 1em;
  list-style: none;
}

.rounded-list li {
  position: relative;
  padding: 0.4em 0.4em 0.4em 2em;
  margin: 0.5em 0;
  background: #fafafa;
  border-radius: 0.3em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #b5e749;
  color: #fff;
  height: 2em;
  width: 2em;
  line-height: 2em;
  border: 0.3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.list_partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list_partners li {
  width: 31.3%;
  margin-right: 3%;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.list_partners li:nth-child(3n) {
  margin-right: 0;
}

.list_partners a {
  display: block;
  color: #111;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 65.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* article
----------------------------------*/
.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-image: url(../img/bg_pattern_01.png);
  background-repeat: repeat;
  background-position: center;
  background-size: 16px auto;
}

.article .article_image {
  width: 55%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  width: 45%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 80%;
}

.article.article_b {
  margin-bottom: 50px;
}

.article.article_white {
  background-image: none;
  background-color: #fff;
}

.article.article_01 .article_image {
  background-image: url(../img/business1.jpg);
}

.article.article_02 .article_image {
  background-image: url(../img/article_02.jpg);
}

.article.article_03 .article_image {
  background-image: url(../img/article_03.jpg);
}

.article.article_04 .article_image {
  background-image: url(../img/article_04.jpg);
}

.article.article_05 .article_image {
  background-image: url(../img/article_05.jpg);
}

.article.article_06 .article_image {
  background-image: url(../img/article_06.jpg);
}

/* top_blog
----------------------------------*/
.top_blog {
  display: inline-block;
  position: relative;
  background-color: #fff;
  color: #111;
  padding-bottom: 3%;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}

.bg_01 .top_blog {
  background-color: #bae957;
  color: #fff;
}

.top_blog:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #b5e749;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bg_01 .top_blog:after {
  background-color: #fff;
}

.top_blog:hover {
  color: #111;
}

.bg_01 .top_blog:hover {
  color: #fff;
}

.top_blog:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.top_blog .inner {
  padding: 20px 30px 40px;
}

.date {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 500;
}

.top_blog_title {
  margin-bottom: 10px;
}

.top_blog_txt {
  font-size: 1.3rem;
}

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

.blog_contents .blog_main {
  width: 65%;
}

.blog_contents .blog_side {
  width: 30%;
  background-color: #f1f2f6;
  padding: 30px;
}

.category_nav li {
  border-bottom: 1px dotted #ccc;
}

.category_nav li a {
  display: block;
  padding: 10px 15px;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 5px;
  color: #b5e749;
  margin-right: 5px;
}

.category_nav li a:hover {
  background-color: #fff;
}

.category_nav li:last-child a {
  border-bottom: none;
}

.blog_title {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}

.blog_title:before {
  margin-right: 5px;
  color: #b5e749;
}

.blog_title.archive:before {
  font-family: "Font Awesome 5 Free";
  content: "\f187";
  font-weight: 900;
}

.blog_title.new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
}

.blog_article {
  padding: 0 30px 50px;
  background-color: #fff;
  margin-bottom: 50px;
}

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

.blog_new {
  border-bottom: 1px dotted #b5e749;
}

.blog_new:last-child {
  border-bottom: none;
}

.blog_new a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 10px;
}

.blog_new a .image {
  width: 40%;
}

.blog_new a .detail {
  width: 50%;
}

.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pages {
  overflow: hidden;
  margin-top: 50px;
}

.pages .page_next,
.pages .page_prev {
  display: inline-block;
}

.pages .page_next a,
.pages .page_prev a {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
}

.pages .page_next {
  float: left;
}

.pages .page_prev {
  float: right;
}

/* gallery
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery_ul a {
  display: none;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.gallery_ul a img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.gallery_ul a:before {
  display: block;
  content: "";
  padding-top: 67%;
}

.gallery_ul a:first-child {
  display: block;
}

.gallery_ul span {
  display: block;
  margin-top: 5px;
  text-align: center;
  font-size: 1.4rem;
}

.gallery_ul.gallery_ul_01 li {
  width: 48.5%;
  margin: 0 3% 3% 0;
}

.gallery_ul.gallery_ul_01 li:nth-child(2n) {
  margin: 0 0 3% 0;
}

.gallery_ul.gallery_ul_02 li {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.gallery_ul.gallery_ul_02 li:nth-child(3n) {
  margin: 0 0 3% 0;
}

.ba li {
  position: relative;
}

.ba li:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  top: 40%;
  right: -7%;
  font-size: 3rem;
  color: #b5e749;
}

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

/* sns_list
----------------------------------*/
.sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.sns_list li {
  width: 24%;
  margin-right: 1.2%;
}

.sns_list li:last-child {
  margin: 0;
}

.sns_btn {
  overflow: hidden;
  color: #fff;
  position: relative;
  display: block;
  border-radius: 100px;
  height: 80px;
  text-align: center;
  line-height: 80px;
}

.sns_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sns_btn i {
  font-size: 2rem;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

.sns_btn span {
  display: inline-block;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sns_btn:hover {
  color: #fff;
}

.sns_btn:hover span {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.facebook_btn {
  background: #4267b2;
}

.insta_btn {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.insta_btn:before {
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.line_btn {
  background: #00b82b;
}

.twitter_btn {
  background: #55acee;
}

/* feature
----------------------------------*/
.feature_image {
  margin-left: auto;
}

.feature_num {
  opacity: 0.5;
  margin: -12px 0 15px;
  color: #b5e749;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1em;
}

.feature_num span {
  margin-left: 3px;
  font-size: 5rem;
}

.feature_txt {
  font-size: 1.4rem;
}

/* top_main
----------------------------------*/
.top_main {
  overflow: hidden;
}

.top_main .inner {
  position: relative;
  margin: 40px 0 60px;
}

.top_main .inner:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -2;
  width: 1227px;
  height: 350px;
  max-width: 100%;
  background-image: url(../img/bg_pattern_01.png);
  background-repeat: repeat;
  background-position: center;
  background-size: 16px auto;
}

.top_main .inner .top_main_contents {
  position: relative;
  width: 1160px;
  max-width: 100%;
  height: 450px;
  margin: 0 auto;
}

.top_main .inner .top_main_contents .top_main_txt {
  position: relative;
  width: 700px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 35px 50px 60px 50px;
}

.top_main .inner .top_main_contents .top_main_img {
  overflow: hidden;
  position: absolute;
  left: 600px;
  top: 40px;
  width: 900px;
  max-width: 100%;
}

.top_main .inner .top_main_contents .top_main_img img {
  width: 100%;
}

/* top_sub
----------------------------------*/
.top_sub {
  position: relative;
}

.top_sub:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.top_sub:after {
  content: "";
  position: absolute;
  bottom: -80px;
  z-index: -1;
  background: #f3f3f3;
  width: 66%;
  height: 90%;
}

.top_sub .top_sub_inner {
  padding: 40px 0;
}

.top_sub .sub_detail {
  position: relative;
  z-index: 2;
  background: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  width: 50%;
  padding: 80px;
}

.top_sub.sub_right:before {
  left: 0;
}

.top_sub.sub_right:after {
  right: -50px;
}

.top_sub.sub_right .sub_detail {
  margin-left: auto;
}

.top_sub.sub_left:before {
  right: 0;
}

.top_sub.sub_left:after {
  left: -80px;
}

.top_sub.sub_left .sub_detail {
  margin-right: auto;
}

.top_sub.top_sub_01:before {
  background-image: url(../img/top_sub_01.jpg);
}

.top_sub.top_sub_02:before {
  background-image: url(../img/top_sub_02.jpg);
}

.top_sub.top_sub_03:before {
  background-image: url(../img/top_sub_03.jpg);
}

/* flex_type
----------------------------------*/
.flex_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

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

.flex_type_01 .flex_image {
  width: 30%;
}

.flex_type_01 .flex_detail {
  width: 67%;
}

.flex_type_02 .flex_image {
  width: 40%;
}

.flex_type_02 .flex_detail {
  width: 57%;
}

/* box
----------------------------------*/
.mbox {
  background-color: #fff;
  padding: 90px 70px;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}

.sbox {
  background-color: #fff;
  border: 1px solid #b5e749;
  padding: 30px;
  margin-bottom: 30px;
}

/* faq
----------------------------------*/
#faq {
  position: relative;
  margin-top: -70px;
}

.voice_faq {
  padding-top: 20px;
  font-size: 1.4rem;
}

.voice_faq dt {
  position: relative;
  border-top: 1px solid #ccc;
  padding: 10px 0 25px 72px;
}

.voice_faq dt span {
  display: block;
  position: absolute;
  left: 0;
  top: -20px;
  width: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background-color: #b5e749;
  font-family: "Crimson Text", serif;
  font-weight: 100;
  letter-spacing: 0.05rem;
}

.voice_faq dd {
  position: relative;
  padding: 0 40px 45px 72px;
}

.voice_faq dd:last-child {
  padding-bottom: 0;
}

.voice_faq dd span {
  display: block;
  position: absolute;
  left: 20px;
  top: -4px;
  font-size: 2rem;
  font-family: "Crimson Text", serif;
  font-weight: 100;
  letter-spacing: 0.05rem;
}

/* flow_contents
----------------------------------*/
.flow_contents {
  position: relative;
  margin-top: 5% !important;
}

.flow_num {
  font-size: 4rem;
  color: #b5e749;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  top: -32px;
  left: -30px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  z-index: 1;
}

/* index_bnr
----------------------------------*/
.index_bnr {
  display: block;
  position: relative;
  color: #fff;
  padding-top: 85.75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index_bnr:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index_bnr:hover {
  color: #fff;
}

.index_bnr:hover:before {
  background-color: rgba(0, 0, 0, 0.6);
}

.index_bnr .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 490px;
  padding: 60px 30px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  border: 3px solid #fff;
}

.index_bnr .title {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.25;
  text-align: center;
}

.index_bnr .title span {
  display: block;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 500;
}

.index_bnr .title:after {
  content: "";
  display: block;
  border-bottom: 3px solid #fff;
  width: 60px;
  margin: 25px auto 35px;
}

.index_bnr .txt {
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.index_bnr_01 {
  background-image: url(../img/index_bnr_01.jpg);
}

.index_bnr_02 {
  background-image: url(../img/index_bnr_02.jpg);
}

/* img_contents
----------------------------------*/
.img_contents {
  overflow: hidden;
  position: relative;
  padding-top: 120px;
  margin-bottom: 80px;
}

.img_contents .img_area {
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -200px;
  z-index: 1;
}

.img_contents .img_container {
  position: relative;
  z-index: 2;
}

.img_contents .img_container .txt {
  display: inline-block;
  background: rgba(181, 231, 73, 0.8);
  color: #fff;
  padding: 80px;
  width: 46%;
}

.img_contents .img_container .txt_01 {
  margin-bottom: 50px;
}

/* about_box
----------------------------------*/
.about_box {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.1);
}

.about_box .inner {
  position: relative;
  padding: 50px 25px 70px;
  font-size: 1.4rem;
}

/* page_navi
----------------------------------*/
.page_navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page_navi li {
  width: 32.6%;
  margin: 0 1% 1% 0;
}

.page_navi li:nth-child(3n) {
  margin: 0 0 1% 0;
}

.page_navi li a {
  display: block;
  position: relative;
  background-color: #fff;
  border: 1px solid #b5e749;
  color: #b5e749;
  padding: 15px 10px;
  font-weight: 600;
}

.page_navi li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 10px;
}

.page_navi li a:hover {
  background-color: #b5e749;
  color: #fff;
}

.page_navi li a span {
  display: block;
  position: relative;
  z-index: 1;
}

/* history_list
----------------------------------*/
.history_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.history_list li .history_list_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40vw;
  min-width: 193px;
  max-width: 193px;
}

.history_list li .history_list_year .year_list .christian {
  margin-left: 10px;
  font-size: 1.5em;
  font-weight: bold;
}

.history_list li .history_list_txt {
  padding: 0 0 30px;
  border-left: 1px dashed #111;
}

.history_list li .history_list_txt .txt_list {
  position: relative;
  padding: 6px 0 0 45px;
}

.history_list li .history_list_txt .txt_list:before {
  position: absolute;
  top: 16px;
  left: -7px;
  width: 12px;
  height: 12px;
  margin: auto;
  content: "";
  border-radius: 50%;
  background: #b5e749;
}

/* category_tab
----------------------------------*/
.category_tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.category_tab:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #b5e749;
}

.category_tab li {
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #b5e749;
  border-top: 3px solid #b5e749;
  border-right: 3px solid #b5e749;
  border-left: 3px solid #b5e749;
  color: #fff;
  padding: 20px 10px;
  width: 28%;
  margin-left: 20px;
  font-weight: 600;
}

.category_tab li.active {
  background: #fff;
  color: #b5e749;
}

.category_tab li.active:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #fff;
}

.category_tab li:last-child {
  margin-right: 20px;
}

/* image
----------------------------------*/
.vertical_image {
  display: block;
  position: relative;
  overflow: hidden;
  height: 250px;
  margin-bottom: 15px;
}

.vertical_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  vertical-align: middle;
}

.small_image {
  display: block;
  position: relative;
  overflow: hidden;
  height: 200px;
}

.small_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  vertical-align: middle;
}

/* transparent_box
----------------------------------*/
.transparent_box {
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  padding: 60px 40px 40px 60px;
  color: #fff;
}

.transparent_box .inner {
  width: 60%;
  margin-left: auto;
}

/* partner
----------------------------------*/
.partner {
  overflow: hidden;
  position: relative;
  height: 420px;
}

.partner:before, .partner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100%;
}

.partner:before {
  left: 0;
  width: 68.0327%;
  background-image: url(../img/bg_partner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.partner:after {
  left: 50%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  width: 50%;
  background: #fff;
}

.partner .container {
  padding-left: 54.2475%;
  text-align: center;
}

/* parallax
----------------------------------*/
.parallax {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 90px 0;
}

.parallax:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(181, 231, 73, 0.5);
  top: 0;
  left: 0;
}

.parallax_01 {
  background-image: url(../img/bg_parallax.jpg);
}

.parallax_heading {
  background-image: url(../img/bg_parallax.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 60px 0 105px;
}

/* belief
----------------------------------*/
.figure_image {
  margin-bottom: 20px;
}

.heading {
  margin-bottom: 20px;
  color: #b5e749;
  font-size: 2rem;
  line-height: 1.4;
}

.sub_heading {
  margin-bottom: 20px;
}

.belief {
  background-color: #fff;
  margin-top: -70px;
  padding: 2% 0;
}

.belief_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.belief_box .child {
  position: relative;
  padding: 0 2%;
  border-right: 1px solid #ccc;
  width: 33.3333%;
}

.belief_box .child:last-child {
  border-right: none;
}

.point_num {
  display: block;
  position: relative;
  margin-top: -8%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #b5e749;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

.text {
  font-size: 1.4rem;
}

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

.top_business .explanation {
  width: 30%;
}

.top_business .detail {
  width: 64%;
}

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

.new_bnr li {
  position: relative;
  overflow: hidden;
  width: 48%;
  height: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.new_bnr li .bg {
  position: absolute;
  z-index: 1;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 420px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 3s ease-out;
  transition: all 3s ease-out;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
}

.new_bnr li .bg.bg_new_01 {
  background-image: url(../img/bg_new_01.jpg);
}

.new_bnr li .bg.bg_new_02 {
  background-image: url(../img/bg_new_02.jpg);
}

.new_bnr li .bg.bg_new_03 {
  background-image: url(../img/bg_new_03.jpg);
}

.new_bnr li a {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
}

.new_bnr li .text {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 50px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
}

.new_bnr li .text span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
}

.new_bnr li .btn {
  position: absolute;
  bottom: 58px;
  right: 50px;
  z-index: 1;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

.new_bnr li .btn:before {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  top: 25px;
  left: 24px;
  width: 6.5px;
  height: 6.5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

.new_bnr li:hover .bg {
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
}

.new_bnr li:hover .btn {
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  background-color: #467302;
  border: 1px solid #467302;
}

.new_bnr li:hover .btn:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.img_shadow {
  position: relative;
  -webkit-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}

.img_shadow:after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 100%);
  opacity: 0.45;
  -webkit-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}

.img_shadow:hover :after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 100%);
  opacity: 0.65;
}

/* p_idx_works_item
----------------------------------*/
.p_idx_works_item {
  position: relative;
  display: block;
}

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

.p_idx_works_item a {
  display: block;
  position: relative;
  height: 270px;
}

.p_idx_works_item a > .hover::before {
  opacity: 0.4;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.p_idx_works_item a:hover > .hover::before {
  opacity: 0.8;
  pointer-events: auto;
}

.p_idx_works_item .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6em;
  color: #fff;
  letter-spacing: 0.1rem;
}

.p_idx_works_item .hover:before {
  background-color: #000;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}

.p_idx_works_item .hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -0.8em;
  width: 4.6em;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #000), to(#000));
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #000 50%, #000 100%);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p_idx_works_item .title {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
}

.p_idx_works_item .title span {
  display: block;
  font-size: 1.2rem;
}

.c-img_full {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

/* etc
----------------------------------*/
.policy {
  background-color: #fafafa;
  margin-top: 50px;
  padding: 50px;
}

.font-s {
  font-size: 1.4rem;
}

.carousel {
  padding: 0 50px;
}

.fly {
  display: block;
}

.fly span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fly:hover span {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.macker {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fbff00));
  background-image: linear-gradient(left, transparent 50%, #fbff00 50%);
  background-repeat: repeat-x;
  background-size: 200% 0.5em;
  background-position: 0 1em;
  -webkit-transition: all 3.5s ease;
  transition: all 3.5s ease;
  font-style: normal;
  font-weight: 600;
  padding: 0 5px;
}

.macker.active {
  background-position: -100% 1em;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

/* animation
----------------------------------*/
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}

@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}

@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animation.move .animation-bar:before {
  -webkit-animation: animation-bar 1s ease 0s 1 normal forwards;
  animation: animation-bar 1s ease 0s 1 normal forwards;
}

.animation.move .animation-txt {
  -webkit-animation: animation-txt 0s ease 0.5s 1 normal forwards;
  animation: animation-txt 0s ease 0.5s 1 normal forwards;
}

.animation .animation-box {
  display: block;
  text-align: center;
}

.animation .animation-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #b5e749;
}

.animation .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.effect_fade.effect_scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* page_title_box
----------------------------------*/
.page_title_box {
  position: relative;
  background-image: url(../img/3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.page_title_box:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.page_title_box .inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 1160px;
  padding: 170px 0 240px;
}

/* breadcrumb_box
----------------------------------*/
.breadcrumb_box {
  padding: 10px 0;
}

.breadcrumb_box .breadcrumb {
  width: 1160px;
  margin: 0 auto;
  padding-left: 0;
  font-size: 1.3rem;
}

.breadcrumb_box .breadcrumb li {
  display: inline;
}

.breadcrumb_box .breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

.breadcrumb_box .breadcrumb li .home:before {
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-weight: 900;
}

/* form
----------------------------------*/
.form_dl dt {
  margin-bottom: 5px;
}

.form_dl dd {
  margin-bottom: 15px;
}

.form_dl dd:last-child {
  margin-bottom: 0;
}

.form .required {
  position: relative;
  top: -1px;
  background: #b5e749;
  color: #fff;
  padding: 0 5px;
  margin-right: 5px;
  font-size: 1.1rem;
}

.form .textarea,
.form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form .textarea {
  height: 30px;
}

.form .textarea_02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea_02:last-child {
  margin-right: 0;
}

.form .textarea_03 {
  width: 20%;
  margin-right: 1%;
}

.form .selectarea {
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 30px;
}

.form button {
  display: inline-block;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "YakuHanJP", Lato, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.5rem;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding: 0 0 3px 20px;
  display: inline-block;
  line-height: 1.2;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 1px;
  top: 3px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #b5e749;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #467302;
          box-shadow: 20px -1px #467302;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding: 0 0 3px 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.2;
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #b5e749;
  border-bottom: 3px solid #b5e749;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}

.bg_common2 {
  height: 700px;
  background-image: url(../img/top-1.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.bg_common2 .top_company {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bg_common2 .top_company .company_image {
  margin: 0 auto;
  height: 80%;
}

.bg_common2 .top_company .company_image img {
  text-align: center;
  margin: auto;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-top: 20px;
}

.bg_common2 .top_company .company_text {
  height: 20%;
  text-align: center;
  font-size: 1.5em;
  color: #fff;
  padding: 0 25px;
  text-shadow: rgba(0, 0, 0, 0.8) 0 0 5px;
}

.bg_common2 .top_company .explanation {
  width: 30%;
}

.bg_common2 .top_company .detail {
  width: 64%;
}

.bg_link {
  width: 100%;
  overflow-x: hidden !important;
  height: 600px;
  margin-bottom: 60px;
}

.bg_link .link_box {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bg_link .link_box .small_box {
  width: 50%;
  height: 50%;
  text-align: center;
  position: relative;
  border: 1px solid #fff;
}

.bg_link .link_box .small_box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 1;
}

.bg_link .link_box .small_box .textarea {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
  height: 100%;
  width: 100%;
  background: rgba(42, 81, 190, 0.3);
  z-index: 0;
}

.bg_link .link_box .small_box .textarea p {
  position: absolute;
  left: 50%;
  top: 20%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
  z-index: 10;
  width: 100%;
}

.about-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: 1fr 1fr 6fr;
      grid-template-rows: 1fr 1fr 6fr;
  max-width: 3840px;
  margin-right: auto;
  margin-left: auto;
}

.about-wrap .title {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2/5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 5.5rem;
  font-weight: bold;
  opacity: 0.7;
}

.about-wrap .sub-title {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  -ms-grid-column-align: end;
      justify-self: end;
  font-size: 3rem;
  opacity: 0.3;
}

.about-wrap .about-img {
  grid-column: 2/-2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  width: 100%;
}

.topic_wrap {
  overflow-x: hidden !important;
}

.topic_wrap .quality_wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: (1fr)[4];
      grid-template-rows: repeat(4, 1fr);
  position: relative;
}

.topic_wrap .quality_wrap:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -2;
  width: 1227px;
  height: 160px;
  max-width: 100%;
  background-image: url(../img/bg_pattern_01.png);
  background-repeat: repeat;
  background-position: center;
  background-size: 16px auto;
}

.topic_wrap .quality_wrap .title {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2 / 5;
  -ms-grid-row: 1;
  grid-row: 1;
  font-size: 4rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.topic_wrap .quality_wrap .text {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2 / 5;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  font-size: 2.5rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  text-align: center;
}

.topic_wrap .slogan {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: 1fr 1fr 1fr 2fr;
      grid-template-columns: 1fr 1fr 1fr 2fr;
  -ms-grid-rows: (1fr)[8];
      grid-template-rows: repeat(8, 1fr);
  -webkit-column-gap: 30px;
          column-gap: 30px;
  margin: 60px auto;
  max-width: 1050px;
}

.topic_wrap .slogan .image {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  grid-row: 1/-1;
  margin: -50 0px;
}

.topic_wrap .slogan .title {
  margin-top: -40px;
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 2;
  grid-row: 2;
  font-size: 3rem;
  font-weight: 300;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.topic_wrap .slogan .text {
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 3px;
  margin-top: 10px;
  font-size: 1.5rem;
}

.topic_wrap .slogan .bg_color {
  grid-column: 1 / -1;
  grid-row: 2 / -2;
  background: #eee;
  z-index: -10;
}

.topic_wrap .slogan .el1 {
  -ms-grid-row: 3;
  grid-row: 3;
}

.topic_wrap .slogan .el2 {
  -ms-grid-row: 4;
  grid-row: 4;
}

.topic_wrap .slogan .el3 {
  -ms-grid-row: 5;
  grid-row: 5;
}

.topic_wrap .slogan .el4 {
  -ms-grid-row: 6;
  grid-row: 6;
}

.topic_wrap .slogan .el5 {
  -ms-grid-row: 7;
  grid-row: 7;
}

.topic_wrap .slogan2 {
  font-size: 2rem;
  padding: 30px;
}

.topic_wrap .topic .full_image {
  margin-top: 120px;
  width: 80vw;
  height: 350px;
  background-size: cover;
}

.topic_wrap .topic .full_image.bg1 {
  background-image: url(../img/q2.jpg);
}

.topic_wrap .topic .full_image.bg2 {
  background-image: url(../img/q3.jpg);
  background-position: top 50%;
  margin: 0 0 0 auto;
}

.topic_wrap .topic .full_image.bg3 {
  background-image: url(../img/q4.jpg);
}

.topic_wrap .topic .full_image.bg4 {
  background-image: url(../img/q5.jpg);
  margin: 0 0 0 auto;
}

.topic_wrap .topic .sentence {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[auto-fill];
      grid-template-rows: repeat(auto-fill, 1fr);
  margin-top: -60px;
  margin-right: 43%;
  margin-left: 0;
  margin-bottom: 40px;
  background: #fafafa;
  padding: 25px;
  z-index: 1;
}

.topic_wrap .topic .sentence:nth-child(4n) {
  margin-right: 0;
  margin-left: 43%;
}

.topic_wrap .topic .sentence:nth-child(4n) .index {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column-align: center;
      justify-self: center;
}

.topic_wrap .topic .sentence:nth-child(4n) .text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  -ms-grid-row: 2;
  grid-row: 2;
}

.topic_wrap .topic .sentence .index {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column-align: end;
      justify-self: end;
  font-size: 4rem;
}

.topic_wrap .topic .sentence .text {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / 4;
  -ms-grid-row: 2;
  grid-row: 2;
  font-size: 1.7rem;
}

.topic_wrap .topic2 {
  margin: 0 20%;
  margin-top: 80px;
  margin-bottom: 80px;
}

.topic_wrap .topic2 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  -ms-grid-rows: (1fr)[auto-fill];
      grid-template-rows: repeat(auto-fill, 1fr);
  -webkit-column-gap: 15px;
          column-gap: 15px;
  row-gap: 15px;
  font-size: 1.7rem;
}

.topic_wrap .topic2 .grid .title {
  grid-column: 1 / -1;
  -ms-grid-row: 1;
  grid-row: 1;
  padding: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  font-size: 3rem;
  margin: 20px 0;
}

.topic_wrap .topic2 .grid .main {
  grid-column: 1 / -1;
  -ms-grid-row: 1;
  grid-row: 1;
  padding: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  font-size: 3rem;
  padding: 0 15px;
  margin: 20px 0;
  position: relative;
  display: blcok;
  background-color: white;
}

.topic_wrap .topic2 .grid .main:before {
  content: "";
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 15%;
  bottom: 0;
  left: -100%;
  margin: auto;
  z-index: -1;
  width: 300%;
  background: linear-gradient(-45deg, transparent, #325a8c 10%, #325a8c 90%, transparent);
}

.topic_wrap .topic2 .grid .sub {
  grid-column: 1 / -1;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  -ms-grid-column-align: center;
      justify-self: center;
  margin-bottom: 45px;
}

.topic_wrap .topic2 .grid .text {
  line-height: 3rem;
  margin: 50px 40px;
  -ms-grid-column-align: center;
      justify-self: center;
  font-size: 2rem;
}

.topic_wrap .topic2 .grid .el1_t {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / 4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  grid-row: 3 / 6;
}

.topic_wrap .topic2 .grid .el1_p {
  grid-column: 4 / -1;
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  grid-row: 3 / 6;
}

.topic_wrap .topic2 .grid .el1_p img {
  -o-object-fit: cover;
     object-fit: cover;
}

.topic_wrap .topic2 .grid .el2_t {
  -ms-grid-column: 4;
  -ms-grid-column-span: 3;
  grid-column: 4 / 7;
  -ms-grid-row: 6;
  -ms-grid-row-span: 3;
  grid-row: 6 / 9;
}

.topic_wrap .topic2 .grid .el2_p {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / 4;
  -ms-grid-row: 6;
  -ms-grid-row-span: 3;
  grid-row: 6 / 9;
}

.topic_wrap .topic2 .grid .el2_p img {
  -o-object-fit: cover;
     object-fit: cover;
}

.topic_wrap .topic2 .grid .el3_t {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / 4;
  -ms-grid-row: 9;
  -ms-grid-row-span: 3;
  grid-row: 9 / 12;
}

.topic_wrap .topic2 .grid .el3_p {
  grid-column: 4 / -1;
  -ms-grid-row: 9;
  -ms-grid-row-span: 3;
  grid-row: 9 / 12;
}

.topic_wrap .topic2 .grid .el3_p img {
  -o-object-fit: cover;
     object-fit: cover;
}

.topic_wrap .sentence {
  font-size: 2rem;
  padding: 25px;
}

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

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border-shadow {
  padding: calc(1.5rem - 12px) 3rem 1.5rem;
  background: #fff;
}

a.btn-border-shadow:before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 3px solid #000;
  border-radius: 0.5rem;
}

a.btn-border-shadow:hover {
  padding: calc(1.5rem - 6px) 3rem;
}

a.btn-border-shadow:hover:before {
  top: 0;
  left: 0;
}

a.btn-border-shadow--color2 {
  border-radius: 100vh;
}

a.btn-border-shadow--color2:before {
  border-radius: 100vh;
  -webkit-box-shadow: 3px 3px 0 #b5e749;
  box-shadow: 3px 3px 0 #b5e749;
}

.form-contents {
  padding: 0!important;
}

.form-contents dl dt:not(.pattern-exclusion) span.required::before,.form-contents .submit-btn{
  background: #b5e749!important;
  border: solid 2px #b5e749!important;
}
.form-contents :not(.pattern-exclusion) button:hover {
  color: #b5e749!important;
  background: #fff!important;
  border: solid 2px #b5e749!important;
}
.form-contents .submit-btn:hover::before {
      background-color: #b5e749!important;
}

.form-contents dl dt:not(.pattern-exclusion) span.optional::before {
  padding:0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form-contents dl dt:not(.pattern-exclusion) span.optional::before {
  content: '任意';
  color: #fff!important;
  background: #ccc!important;
}


/*# sourceMappingURL=basis.css.map */