/* 調整用スタイル */
@charset "utf-8";

/* *****共通設定***** */

html{scroll-padding-top: 80px;}
body{ 
     font-size: 17px; 
       font-family: 'Noto Sans JP', sans-serif;
     }

a {
  text-decoration: none;
   color: #1a0dab;
}


ul,
li {list-style: none;}

main {background-color: #fff;}
.page-mv h1{ font-family: 'Oswald', sans-serif;  font-weight: 700;letter-spacing: 1px;}
h2.en{ font-family: 'Oswald', sans-serif;  font-weight: 700;}
img{max-width: 100%;}
.main {margin: auto;}
p.h2{font-size:1.12rem;}
.space{margin-right:1em} /* フッターアドレスのスペース */
.fs08{font-size: 0.8rem}
a.link-card{border: 1px solid #333; padding: 1rem;}
.bgwhite{background: #fff!important;}

.triangle {
/*  background-image: linear-gradient(-45deg, #ccc 30px, transparent 0);*/
 position: relative;
}

.triangle::before{
  position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    color: #fff; /*アイコン色*/
    font-weight: 900;
    position: absolute;
      top: 50%;
  transform: translateY(-50%);
    right: 8px;
}
.triangle2 {
  background-image: linear-gradient(-45deg, #3c8444 10px, transparent 0);
  z-index: 8;
}



/* アニメーション */

/* 読み込んだら下から上 */

.fade-in-img {
  position: relative;
  opacity: 0; 
  transform: translateY(100%); 
  animation: fadeInFromBottom 1s forwards; 
}

@keyframes fadeInFromBottom {
  to {
    opacity: 1; 
    transform: translateY(0);   
  }
}

/* スクロールしたら左から右 */

.fade-in-text {
  opacity: 0;
  transform: translateX(-80%);
  transition: 1s ease;
}


/* secボタン */


/* secボタンスマホ */

.btn {
  margin: 0 auto;
} 
.btn a{
  position: relative;
  display: block;
  border-radius: 50px;
  padding: 1.7rem 1rem 1.7rem 2.9rem;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.1rem;
}


.btn.green a{
  color: #3c8444;
  border: 1px solid #3c8444;
}


.btn a::after {
  font-family: "Font Awesome 6 Free";
  content: '\f178';
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
}


/* secボタン　下層ページ */


.btn-page a{
  position: relative;
  display: block;
  border-radius: 50px;
  padding: 1.7rem 1rem 1.7rem 2.9rem;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.1rem;
}

.btn-page.green a{
  color: #3c8444;
  border: 1px solid #3c8444;
}


.btn-page a::after {
  font-family: "Font Awesome 6 Free";
  content: '\f178';
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
}




/*Youtube*/

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
    overflow: hidden;
    margin: 1rem 0.5rem 2rem;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ytw640{
  width: 640px!important;
  margin: 1rem auto;
}

/*Google map*/

.chizu iframe {
  width: 100%;
  aspect-ratio: 16/9; //アスペクト比（縦横比）を指定
}



/* ヘッダー */


.header {
  background-color: transparent;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  margin: 0!important;
  padding: 0!important;
  -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.header.hbg-pg {
    height: 60px;
  background-color: #fff;
}
.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}


/* ヘッダーのロゴ部分 */
.header__title {
  width: 100px;
}


.header__title a{
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translatex(100%);
  background-color: rgba(0, 0, 0, 0.7);
  transition: ease .2s;
}



/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
}


.nav-items__item:last-child a {
  margin-bottom: 0;
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9996;
}



/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span{  background-color: #fff;}
.hamburger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}



/*スクロールでヘッダーのheight、ロゴを縮小、文字の変化 */

header.header.change-size{
     background: rgba(0, 0, 0, 0.4);
       height: 50px;
  }

header.header.hbg-pg.change-size {
     background: rgba(238, 238, 238, 0.8);
}


/* *****mv***** */

#mv{
  position: relative;
  background: url("../img/sp-mv.webp") top center / cover no-repeat;
  max-width: 100%;
  height: 600px;
}
/*#mv::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}*/



#mv #headline{
  position: relative;
  max-width: 100%;
  height: 600px;
}


#mv #headline h1{
  z-index: 9;
  display: block;
  position: absolute;
  bottom: 8%;
  left: 6%;
}
#mv #headline h1 img{
  width: 58vw;
}




/* *****sec1***** */
section#sec1{
  background: url("../img/sec1-bg.webp") right -7rem top 1.2rem / 85% no-repeat;
  padding: 3.8rem 0 4.53rem;
}
section#sec1 .container{
margin: 0 6%;
}
#sec1 h2{
  font-size: 1.64rem;
  font-weight: 500;
  color: #000;
  margin: 0rem 0 2.35rem; 
  line-height: 1.7;
  letter-spacing: 1.5px;
}

#sec1 .sec1-text{
 margin-bottom: 2.35rem;
}

#sec1 .sec1-text p{
  margin-bottom: 0.7rem;
  line-height: 2.0;
  color: #000;
  font-size: 1.1rem;
}

#sec1 .btn a{
  margin: 0 auto;
}

/* *****sec2-0***** */



section#sec2-0 .sec2-0-img{
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
}

section#sec2-0 .sec2-0-img .ser1,
section#sec2-0 .sec2-0-img .ser2,
section#sec2-0 .sec2-0-img .ser3,
section#sec2-0 .sec2-0-img .ser4{
  width: calc(25% - 6px);
  height: auto;
}
section#sec2-0 .sec2-0-img .ser1{
  margin-right: 1px;
}
section#sec2-0 .sec2-0-img .ser2,
section#sec2-0 .sec2-0-img .ser3{
  margin: 0 1px 0;
}
section#sec2-0 .sec2-0-img .ser4{
  margin-left: 1px;
}

section#sec2-0 img{
  max-width: 100%;
}





/* *****sec2***** */
section#sec2{
  background: linear-gradient(to right, #18591f, #3c8444);    
  padding:7.2rem 0 4.7rem;
  margin-top: -25px;
}
section#sec2 .container{
margin: 0 6%;
}

#sec2 h2{
  font-size:4.6rem;
  color: #8db391;
}


#sec2 p.h2{
  color: #fff;
  margin-top: 1.2rem;
}


#sec2 .circle{
  display: flex;
  flex-wrap:wrap;
  align-items: center;
   justify-content:center; 
}

#sec2 .circle-wrap1{
  width: 100%;
  box-sizing: border-box;
  display: grid;
  place-content: center;
  grid-template-columns: 0.5fr;
}
#sec2 .circle-wrap2,#sec2 .circle-wrap3{
  width: 50%;
  box-sizing: border-box;
/*      margin-top: -53px;*/
      margin-top: -15%;
}


#sec2 .circle0,
#sec2 .circle1,
#sec2 .circle2{
  color: #fff;
  border: 2px solid #9eb3a0;
  border-radius: 50%;
  width:  100%;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
    box-sizing: border-box;
}




#sec2 .circle0::before,
#sec2 .circle1::before,
#sec2 .circle2::before{
  display: block;
  content: "";
  margin-top: 100%;
}



#sec2 .circle0{
  width:  100%;
}

#sec2 .circle1{
  width:  100%;
/*  margin-left: 16px;*/
      margin-left: 10%;
}

#sec2 .circle2{
/*  margin-left: -16px;*/
      margin-left: -10%;
}


#sec2 .sec2-text{
  color: #fff;
  margin: 2.35rem 0 0;
}
#sec2 .sec2-text p{
    font-size: 1.1rem;
  line-height: 2.0;
  margin-bottom: 2.6rem;
}

#sec2 .btn a{
  margin: 0 auto;
}



/* *****sec3***** */

section#sec3{
  background:url("../img/bg3.webp") top center / cover no-repeat;
  height: 320px;
  position: relative;
}
section#sec3 .container{}


section#sec3 .sec3-wrap{
  background: -moz-linear-gradient(to right,transparent 0%,transparent 4.5%,#fff 4.5%,#fff 100%);
  background: -webkit-linear-gradient(to right,transparent 0%,transparent 4.5%,#fff 4.5%,#fff 100%);
  background: linear-gradient(to right,transparent 0%,transparent 4.5%,#fff 4.5%,#fff 100%);
  position: absolute;
  bottom: 0;
  height: 180px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: -2px;
}
section#sec3 .sec3-in{
}
#sec3 .title{margin-left: 10%}
#sec3 h2{
  font-size:4.6rem;
  color: #000;
  margin-top: 2.35rem;
}

#sec3 p.h2{
    margin-top: 1.2rem;
}

#sec3 .btn a{
  margin: 2rem auto 1rem;
}


/* *****sec4***** */

section#sec4{
  background: #fff;
  padding: 0 0 4.7rem;
  margin: 0!important;
}
section#sec4 .container{
margin: 0 6%;
}

section#sec4 .sec4-in{

}
section#sec4 .sec4-in .info:last-child{
margin-bottom: 2.5rem;
}

section#sec4 .info{
margin: 1rem 1.4rem 0.5rem;
}


section#sec4 .info img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

section#sec4 .day{
  color: #3c8444;
  margin: 1rem 0 1rem 0.5rem;
  font-size: 0.8rem;
}
section#sec4 .day > span{
  border: 1px solid #3c8444;
  padding: 0.1rem 0.5rem;
  margin-left: 0.5rem;
}
section#sec4 h4{
    margin: 1rem 0 1rem 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

/* *****sec-efforts***** */

section#efforts{
  background: #fff;
  padding: 0 0 3rem;
  margin: 0!important;
}
section#efforts .container{
margin: 0 6%;
}
section#efforts .efforts-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 auto;
}
section#efforts .sd{
  width: 100%;
  display: block;
   margin: 0 auto 2rem;
}
section#efforts .shin{
  width: 100%;
  display: block;
   margin: 0 auto 2rem;
}
section#efforts .kosodate{
  width: 100%;
  display: block;
   margin: 0 auto 2rem;
}

section#efforts .gm{
  width: 50%;
  width: calc(50% - 0.5rem);
  display: block;
   margin: 0;
}

section#efforts .hatarakiyasui{
    width: calc(50% - 0.5rem);
  display: block;
   margin: 0;
}

section#efforts .safe{
  width: 50%;
  width: calc(50% - 0.5rem);
  display: block;
   margin: 0;
}

section#efforts .keizoku{
  width: 50%;
  width: calc(50% - 0.5rem);
  display: block;
   margin: 0;
}

section#efforts .keizoku{
  width: 50%;
  width: calc(50% - 0.5rem);
  display: block;
   margin: 0;
}

section#efforts .d-city{
  width: 50%;
  width: calc(50% - 0.5rem);
  display: block;
   margin: 0;
   text-align: center;
}

/* *****今後増える項目***** */


/*section#efforts .monisu{
    width: calc(50% - 0.5rem);
  display: block;
   margin: 0;
}*/



/*section#efforts .kenko{
    width: calc(50% - 0.5rem);
  display: block;
   margin: 0;
}
*/


/* *****sec-movie***** */

section#movie{
  background: #fff;
  padding: 0 0 3rem;
  margin: 0!important;
}
section#movie .container{
margin: 0 6%;
}








/* *****sec5***** */


section#sec5{
  background-color: #efefef;
    margin: 0!important;
}

#sec5 img{
  max-width: 100%;
  display: block;
  margin: 0!important;
  padding: 0!important;
}
#sec5 .sec5-text{
  padding: 4.7rem 0;
  margin: 0 6%;
}
#sec5 .sec5-text h2{
  font-size:4.6rem;
}
#sec5 p.h2{
    color: #000;
  margin-top: 1.2rem;
}
#sec5 .sec5-text-in2 p{
    font-size: 1.1rem;
  line-height: 2rem;
  color: #000;
  font-weight: 500;
}

#sec5 .sec5-text .sec5-text-in{
  display: flex;
  margin-bottom: 2rem;
}

#sec5 .sec5-text .sec5-text-in a{
  color: #000;
  border: 1px solid #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  padding: 0.2rem;
  margin:1.4rem 0 0 1rem;
  text-align:center;
  font-size: 1.2rem;
}



/*#sec5 .sec5-text h2::after {
  font-family: "Font Awesome 6 Free";
  content: '\f178';
  font-weight: 900;
  font-size: 1rem;
  border: 1px solid #333;
  border-radius: 50px;
  padding: 0.2rem;
 position: absolute;
  top:10%;
  left: 40%;
  pointer-events: none;
}*/


/* *****sec-contact***** */

section.sec-contact{
  background:url("../img/sec-contact-bg.webp") top center / cover no-repeat;
  height: 600px;
    margin: 0!important;
    padding:4.7rem 0;
}

section.sec-contact .container{
margin: 0 6%;
}
section.sec-contact .container .container-wrap{
padding-top: 2rem;
}


section.sec-contact h2{
  font-size:4.6rem;
  color: #fff;
  text-align: center;

}
section.sec-contact p.h2{
  text-align: center;
  margin-top: 1.35rem;
}

section.sec-contact p{
 color: #fff;
}
section.sec-contact .sec-contact-in .denwa-text{
  font-size: 1.1rem;
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 2px;
}
section.sec-contact .sec-contact-in .mail-text{
  text-align: center;
  margin-top: 1rem;
}

section.sec-contact .sec-contact-left{
margin-top: 2rem;

}


section.sec-contact .sec-contact-left::after{
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #fff;
  margin-top: 2rem;
}

section.sec-contact .sec-contact-in .sec-contact-left p.denwa{
  text-align: center;
  margin-top: 1.5rem;
}
section.sec-contact .sec-contact-in .sec-contact-left p.denwa a{
   color: #fff;
  text-align: center;
  width: 100%;
 font-size: 3.3rem;
 font-weight: 500;
 font-family: 'Oswald', sans-serif;
}

section.sec-contact .sec-contact-left p.tel-icon {
 text-align: center;
}
section.sec-contact .sec-contact-left p.tel-icon img{
 text-align: center;
  width: 40px;
}

section.sec-contact .sec-contact-right{
margin-top: 1.8rem;
}
section.sec-contact .sec-contact-right .btn a{
  margin: 1rem auto 0;
}
section.sec-contact .sec-contact-right p.mail-icon{
 text-align: center;
 margin-bottom: 2rem;
}

section.sec-contact .sec-contact-right p.mail-icon img{
 width: 40px;
}



/* *****フッター***** */

#footer{
  padding: 4.7rem 0 4.7rem;
  background-color: #000;
}

#footer .flogo{
  width: 144px;
   margin: 0 auto;
}
#footer .flogo img{
  max-width: 100%;
}

#footer .ft-text{
  font-style: normal;
  text-align: center;
  margin-top: 2rem;
}


#footer .ft-text p{
  font-size: 0.95rem;
  color: #999999;
  letter-spacing: 1px;
}

#footer .ft-text p.f-add{
  font-size: 0.9rem;
  color: #999999;
  margin-top: 1.5rem;
  line-height: 2.0;
}

#footer .footer-navi{
  display: flex;
    justify-content: space-evenly;
    margin: 0 1rem 2rem;
}
#footer ul.footer-navi-list li a{
  color: #fff;
}
#footer ul.footer-navi-list2 li a{
  color: #999999;
} 
#footer .footer-navi li a{
  line-height: 2.3;
    font-size: 0.9rem;

}

#footer #footer-contents .footer-contents-in2{
  margin-top: 2rem;
}

#footer .snsbtniti{
  display: flex;
  justify-content: center;
  margin: 0 1rem 1rem;
}
#footer .snsbtniti li a{
  margin: 0 1rem;
  color: #666666!important;
  font-size: 1.5rem;
}

#footer #copyright{
  margin: 2rem auto 0;
  padding-bottom: 3.5rem;
  text-align: center;
  color: #666666!important;
}

#footer #copyright p{
    color: #666666;
    font-size: 0.9rem;
}

#footer #copyright a{
    color: #666666;
        font-size: 0.8rem;
}

  /* フッターメニュー */

  .f_menu_wrap{
    width: 100%;
   /*background: #eeeeee;*/
   background-color: rgba(238,238,238, 0.85)!important;
    position: fixed;
  bottom: 0;
  margin: 0!important;
  padding: 0!important;
  z-index: 6;
}
#f_menu {
    position: relative;
    min-height: auto;
  padding: 0;
  margin: 0!important;
  padding: 0!important;
}
#f_menu ul{
    display: table;
    width: 100%;
    margin: 0;
    table-layout: fixed;
  border-top: 1px solid #cfcdcd;  
  margin: 0!important;
  padding: 0!important; 
}

#f_menu li {
    display: table-cell;
  border-right: 1px solid #fff;
  border-top: 5px solid #rgba(0,0,0, 0.6);
  border-bottom: 5px solid #rgba(0,0,0, 0.6);
    font-size: 1rem;
  text-align: center;
  padding:0.7rem 0.3rem; 
}
#f_menu li:last-child {
    border-right:none;
}
/*.line_c {color: #2cbf13;}
.tel_c{color: #545550;}
.con_c{color: #545550;}*/


#f_menu li a{
    display: block;
  padding:0;
  margin: 0;
    text-decoration: none;

}

#f_menu li.bco a{color:#545550;}
#f_menu li.bli a{color:#545550;margin-left: 0.5rem;}
/*#f_menu li.bte a{color:#545550;}*/

#f_menu li.bco a:before {
  /*採用アイコン*/
  font-family: FontAwesome;
  content: '\f0d1';
  font-weight: normal;
  font-size: 1.1em;
  color: #545550;
  padding-right : 5px;/*文字との隙間*/
}

#f_menu li.bli a:before {
  /*電話アイコン*/
  font-family: FontAwesome;
  content: '\f879';
  font-weight: normal;
  font-size: 1.1em;
  color: #545550;
  padding-right : 5px;/*文字との隙間*/
}


#f_menu li span::before{
  font-size: 20px;
  margin-right: 0.2rem; 
}
#f_menu .utility-menu_item span{
  display: inline;
  vertical-align: middle;
  padding:0;
  margin: 0;
}

/* ページ上部へ戻る
==================================================
*/

.pagetop {
  position: fixed;
  bottom: 50px;
  right: 25px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform: scale(0.3);
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}
.pagetop a {
  display: block;
    width: 50px;
    height: 50px;
    border: 0.1em solid #6d6e6f;
    border-radius: 50%;
    text-align: center;
    color: #6d6e6f;
    font-size: 24px;
    text-decoration: none;
    line-height: 50px;
    position: relative;

}
.pagetop .fa-arrow-up{
  font-size: 7rem;
line-height: 8rem;
}
.pagetop.show {
  opacity: .7;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
z-index: 9999;
}

.page-up-arrow{
  display: inline-block;
  vertical-align: middle;
  color: #6d6e6f;
  line-height: 1;
  position: relative;
  width: 0.1em;
  height: 1em;
  background: currentColor;
  z-index: 30;
}

.page-up-arrow::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: -0.05em;
  right: 50%;
  box-sizing: border-box;
}




/* *****下層メインコンテンツ***** */


/*下層ページのハンバーガーメニューをgreen*/
.hamburger.ham-page span {
  background-color: #3c8444;
}
/*下層ページのハンバーガーメニューをクリックで白*/
.ham-page.active span{background-color: #fff!important;}



/* ページ内リンクのズレ調整 */

a.ap{
  display: block;
  margin-top: -50px;
  padding-top: 50px;
}



/* *****MV***** */

.page-mv{
      width: 100%;
      height: 240px;
      background-size: cover;
      margin-top: 60px;
      box-sizing: border-box;
}
.page-mv .container{
      position: relative;
      width: 100%;
      height: 240px;
      box-sizing: border-box;
}

.page-mv .container h1{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      left: 6%;
      color: rgba(255, 255, 255, 0.8);
      font-size: 3rem;
      line-height: 0.5;
      padding: 0;
}

.page-mv .container h1 > span{
       font-family: 'Noto Sans JP', sans-serif;
       font-size: 0.9rem;
}


/* *****パンくずナビ***** */

.breadcrumb {
  margin: 1% 6% 0;
  padding: 0;
  list-style: none;
  padding: 0.5rem 0 0;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-size: 0.8rem;
}


.breadcrumb li:after {
  /* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #3c8444;
}

.breadcrumb li:last-child:after {
  content: '';
}


.breadcrumb li a {
  text-decoration: none;
  color:#3c8444!important;
  font-weight: 500;

}

.breadcrumb li a span.home{
  color: #999999;
} 

  /*HOMEアイコン*/
/*.breadcrumb li:first-child a:before {
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
  color: #545550;
}*/

.breadcrumb li a:hover {
  text-decoration: underline;
}


/* *****見出し***** */

h2.p1 {
  color:#3c8444!important;
  border-bottom: solid 2px #000;
  position: relative;
  background: none;
  margin: 2rem 0!important;
  padding: 0 0 1.2rem;
  font-weight: 500;
  font-size: 1.8rem;
}

h2.p1:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #3c8444;
  bottom: -2px;
  width: 50%;
}

#page .container{
 margin: 0 5%; /* 初期デザインは 0 6.4% */
}


/* *****会社情報***** */


.page-mv.company-mv{background: url("../img/aboutus-mv-sp.webp") no-repeat  center center; background-size: cover;}
#page.company{
  padding: 0 0 3.5rem 0;
}


/* 社長あいさつ */
#page .greeting {padding: 0 0 3.5rem 0;}
#page .greeting h3{
font-weight: 500;
font-size: 1.6rem;
margin: 1.5rem 0 0.7rem;
line-height: 1.5;
letter-spacing: 1.5px;
}
#page .greeting p{
margin: 0 0 1.2rem;
line-height: 1.5;
letter-spacing: 1px;
}
#page .greeting p:last-child{
margin-bottom: 0.5rem;
}

#page .greeting div.ceo{
  text-align: right;
  font-size: 2rem;
}
#page .greeting div.ceo span{
  font-size: 0.9rem;
  margin-right: 1rem;
}

/* 社長格言 チェック */
#page .greeting .kotoba ul{
  padding: 0.5rem 1rem 0.5rem 2.3rem;
  position: relative;
  margin: 0.7rem 0;
}
#page .greeting .kotoba ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;
  font-size: 1.1rem;
  font-weight: 500;
}
#page .greeting .kotoba ul li:before {
  /*リストのアイコン*/
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  position: absolute;
  left : 0.7rem; /*左端からのアイコンまでの距離*/
  color: #3c8444; /*アイコン色*/
  font-weight: 900;
  margin-top: 0.1rem;
}



/* 企業理念 */


#page .vision{ padding: 0 0 3.5rem 0;}
#page .vision h3{
  font-size: 1.7rem;
  font-weight: 800;
  margin: 1.5rem 0 1.5rem;
  line-height: 1.5;
  letter-spacing: 1.5px;
  text-align: center;
  color:#3c8444!important;
}
#page .vision{}

#page .vision table{
  width: 100%;
}


#page .vision table th{
  font-family: 'Oswald', sans-serif;
  position: relative;
  text-align: center;
  color:#3c8444!important;
  font-size: 2rem;
  font-weight: 800;
  padding: 2rem 0 0;
}
#page .vision table td{
  padding: 2rem 0;
  font-size: 1.3rem;
  line-height: 2.0;
  letter-spacing: 1.5px;
}

#page .vision table td span{
  color:#3c8444!important;
}
#page .vision table tr:last-child > td{
}


#page .vision table td{
  text-align: left;
}


/* 会社概要 */

#page .overview{ padding: 0 0 3.5rem 0;}
#page .overview table{
  width: 100%;
}

#page .overview table th{
  position: relative;
  text-align: left;
  color:#3c8444!important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 2rem 0 0;
}
#page .overview table td{
  padding: 1rem 0;
  font-size: 1.1rem;
  line-height: 2.0;
}


#page .overview table tr:last-child > td{
}

#page .overview table td ol li{
list-style-type: decimal;
margin-left: 6%;
padding-left: 0.5rem;
}

#page .overview p{
    padding: 1rem;
}


#page .overview p.pdf{
  position: relative; 
  display: inline-block;  
   box-sizing: border-box; 
  width:100%;
  padding-left: 70px;
  margin: 1rem 0;
}
#page .overview p.pdf::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:100%;
  height: 100%;
  background: url("../img/pdf.png") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;

}
#page .overview p.pdf a {
    position: relative; /* z-indexを有効にするために必須 */
    z-index: 10;        /* ::beforeよりも大きな値を指定して前面へ */
    display: inline-block; /* リンクの表示を確保 */
    /* 必要に応じてリンクのスタイルを調整 */
}


/* 沿革 */

#page .history{
  padding-bottom: 3rem;
}

#page .history table{
  width: 100%;
}
#page .history table tr{
  width: 100%;
}


#page .history table th{
  position: relative;
  text-align: left;
  color:#3c8444!important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 2rem 0 0;
}

#page .history table th.th2{
  padding-top: 1rem;
}
#page .history table th.th3{
  padding-top: 0;
}

#page .history table td{
  padding: 1rem 0;
  font-size: 1.1rem;
  line-height: 2.0;
}

#page .history table td img{
  width: 100%;
}



/* 資格取得者一覧 */

#page .certification{ padding: 0 0 3.5rem 0;}
#page .certification table{
  width: 100%;
  border-collapse: collapse;
}

#page .certification table th{
  position: relative;
  text-align: left;
  color:#3c8444!important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 2rem 0 0;
}
#page .certification table td{
  padding: 1rem 0;
  font-size: 1.1rem;
  line-height: 2.0;
}


#page .certification table tr:last-child > td{
}










/* *****会社情報***支店営業所画像***** */
/* *****アクセス***支店案内***** */


.page-mv.access-mv{background: url("../img/access-mv-sp.webp") no-repeat  center center; background-size: cover;}


#page .branch h4{
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.5rem 0 1rem;
  letter-spacing: 1.5px;
  color:#3c8444!important;
  position: relative;
}
#page .branch h4.pin::after{
  position: absolute;
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background: url("../img/map_pin.png") no-repeat  center center;
  background-size: contain;
/*  vertical-align: middle;*/

}
#page .branch .map{
  padding-bottom: 3rem;
}


#page .branch p{
  line-height: 2.0;
  letter-spacing: 1px;
}





/* *****事業内容***** */

.page-mv.business-mv{background: url("../img/business-mv-sp.webp") no-repeat  center center; background-size: cover;}
#page.business{padding: 0 0 3rem}
#page .service1{padding: 0 0 3rem}
#page .service1 h3{
  font-size: 1.5rem;
   font-weight: 500;
   line-height: 2.0;
   letter-spacing: 1px;
   margin: 2rem 0 1rem;
} 
#page .service1 p{
margin: 0 0 1rem;
line-height: 2.0;
letter-spacing: 1px;
}
#page .service2{
  background: url("../img/nagano-sp.webp") no-repeat  center center;
  background-size: cover;
  height: 480px;
  margin: 0!important;
  padding: 0!important;
}

#page .service3{
  background: #f7fcf8;
  padding: 2rem 0 3rem;
}
#page .service3 h3{
  font-size: 1.5rem;
   font-weight: 500;
   line-height: 2.0;
   letter-spacing: 1px;
   margin: 2rem 0 1rem;
   color: #3c8444;
}

/*#page .service3 .circle{
    margin-top: 2.35rem;
  display: flex;
  align-items: center;
   justify-content:center; 
}
#page .service3 .circle1,
#page .service3 .circle2{
  border: 2px solid #3c8444;
  border-radius: 50%;
  text-align: center;
  color: #3c8444;
}*/

#page .service3 .circle{
  display: flex;
  flex-wrap:wrap;
  align-items: center;
   justify-content:center; 
}

#page .service3 .circle-wrap1{
  width: 100%;
  box-sizing: border-box;
  display: grid;
  place-content: center;
  grid-template-columns: 0.5fr;
}
#page .service3 .circle-wrap2,
#page .service3 .circle-wrap3{
  width: 50%;
  box-sizing: border-box;
/*      margin-top: -53px;*/
      margin-top: -15%;
}


#page .service3 .circle0,
#page .service3 .circle1,
#page .service3 .circle2{
  color: #3c8444;
  border: 2px solid #3c8444;
  border-radius: 50%;
  width:  100%;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
    box-sizing: border-box;
}


#page .service3 .circle0::before,
#page .service3 .circle1::before,
#page .service3 .circle2::before{
  display: block;
  content: "";
  margin-top: 100%;
}



#page .service3 .circle0{
  width:  100%;
}

#page .service3 .circle1{
  width:  100%;
/*  margin-left: 16px;*/
      margin-left: 10%;
}

#page .service3 .circle2{
/*  margin-left: -16px;*/
      margin-left: -10%;
}


#page .service4{
  padding: 2rem 0 3rem;
}
#page .service4 h4.p1 {
  color:#3c8444!important;
  border-bottom: solid 2px #000;
  position: relative;
  background: none;
  margin: 2rem 0!important;
  padding: 0 0 1.2rem;
  font-weight: 500;
  font-size: 1.8rem;
}

#page .service4 h4.p1:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #3c8444;
  bottom: -2px;
  width: 50%;
}

#page .service4 p{
margin: 0 0 1rem;
line-height: 2.0;
letter-spacing: 1px;
}
#page .service4 ul{
  margin-top: 0.5rem;
}
#page .service4 li{
  position: relative;
  padding-left: 20px;
  line-height: 2.0;
  font-size: 1.1rem;
}
 
#page .service4 li:before {
  content: "";
  position: absolute;
  top: .6rem;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #3c8444;
  border-radius: 50%;
  line-height: 2.0;
}
#page .service4 img{
 display: block;
 margin: 0 auto 1rem;
}

/* *****リクルート***** */
.page-mv.recruit-mv{
  background: url("../img/recruit-mv-sp.webp") no-repeat  center center;
   background-size: cover;
}


#page .recruit-sec1{padding: 0 0 3rem}
#page .recruit-sec1 h3{
  font-size: 1.5rem;
   font-weight: 500;
   line-height: 2.0;
   letter-spacing: 1px;
   margin: 2rem 0 1rem;
   color: #000;
} 
#page .recruit-sec1 p{
/*margin: 0 0 0.3rem;*/
line-height: 2.0;
letter-spacing: 1px;
color: #000;
}


#page .recruit-sec2{padding: 0 0 3rem}
#page .recruit-sec2 .recruit-sec2-in{
  margin: 0 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#page .recruit-sec2 .recruit-sec2-in .rec-dri{
  width: 55%;
}

#page .recruit-sec2 .recruit-sec2-in .rec-del{
  width: 45%;
  margin-top: 4.5rem;
}


/*魅力*/

#page .recruit-sec3{padding:3rem 0;}
#page .recruit-sec3 h3{
 font-size: 1.7rem;
 font-weight: 500;
 text-align: center;
 letter-spacing: 1px;
 color: #3c8444;
}


#page .recruit-sec3 .recruit-circle-wrap{
  margin: 2rem auto;
}

#page .recruit-sec3 .recruit-circle1{
  background: url("../img/recruit-circle1.webp") no-repeat  center center;
}
#page .recruit-sec3 .recruit-circle2{
  background: url("../img/recruit-circle2.webp") no-repeat  center center;
}
#page .recruit-sec3 .recruit-circle3{
  background: url("../img/recruit-circle3.webp") no-repeat  center center;

}

#page .recruit-sec3 .recruit-circle-wrap h4{
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}


/*インタビュー*/

#page .recruit-sec4{
  background: #f7fcf8;
  padding:3rem 0;
}
#page .recruit-sec4 h3{
 font-size: 1.7rem;
 font-weight: 500;
 text-align: center;
 letter-spacing: 1px;
 color: #3c8444;
}


#page .recruit-sec4 .interview1,
#page .recruit-sec4 .interview2,
#page .recruit-sec4 .interview3,
#page .recruit-sec4 .interview4{
  margin: 2rem 0;
  box-shadow: 2px 2px 5px rgba(0,0,0,.1);
  width: 100%;
}

#page .recruit-sec4 .interview1 img,
#page .recruit-sec4 .interview2 img,
#page .recruit-sec4 .interview3 img,
#page .recruit-sec4 .interview4 img{
  display: block;
  width: 100%;
}
#page .recruit-sec4 .post-title{
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 1rem 0.5rem 0.5rem;
}

#page .recruit-sec4 .int-title{
  margin-top: 0.5rem;
  display: flex;
  padding: 0.5rem 0.5rem 1rem 1rem;
}

#page .recruit-sec4 .Number{
  font-size: 2.5rem;
  font-weight: 500;
  color: #3c8444;
  font-family: 'Oswald', sans-serif;
}

#page .recruit-sec4 .name-text{
  margin-left: 1rem;
  color: #000;
}

#page .recruit-sec4 p{
  line-height: 1.3;
}

#page .recruit-sec4 .position{
  font-size: 0.8rem;
}
#page .recruit-sec4 .name{
  font-size: 1.2rem;
  font-weight: 500;
}


/*人物像*/

#page .recruit-sec5{padding:3rem 0;}

#page .recruit-sec5 h3{
 font-size: 1.7rem;
 font-weight: 500;
 letter-spacing: 1px;
 color: #3c8444;
 text-align: center;
}
#page .recruit-sec5 p{
  line-height: 2.0;
  margin: 2rem 0;
}

 /*人物像チェックボックス*/

ul.ideal  {
  padding: 0;
  position: relative;
  margin: 1rem 0rem 0.5rem;
}
ul.ideal  li {
  line-height: 1.5;
  padding: 0.7rem 0.5rem 0.7rem 2.5rem;
  list-style-type: none!important;
  background: #f9f9f9;
  font-weight: 500;
  margin:0 0 0.5rem 0!important;
  border-radius: 5px;
  color: #000;
  position: relative;
  max-width: 100%;
}
ul.ideal  li:before {
  /*リストのアイコン*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  left :0.5em; /*左端からのアイコンまでの距離*/
    top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  color: #3c8444;
  font-size: 1.3rem;
}

#sec4 ul.school li::before{
    border-radius: 50%; /*丸くする*/
    width: 10px; /*点の幅*/
    height:10px; /*点の高さ*/
    display: block;
    position: absolute; /*絶対配置*/
    left: -1rem; /*点の位置*/
    top: 0.4em; /*点の位置*/
    content: "";
    background: #65e0ff; /*点の色*/
}

/*QA*/

#page .recruit-qa{
  background: #f9f9f9;
  padding: 2rem 0;
}

#page .recruit-qa h3{
 font-size: 1.7rem;
 font-weight: 500;
 text-align: center;
 letter-spacing: 1px;
}
#page .recruit-qa h3 > span{
 color: #3c8444;
}


/*QAアコーディオン*/
#page .recruit-qa .qa-accordion {
margin: 2rem auto;
max-width: 100vw;
}
#page .recruit-qa .qa-toggle {
display: none;
}
#page .recruit-qa .option {
position: relative;
margin-bottom: 1em;
}
#page .recruit-qa .title,
#page .recruit-qa .content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
#page .recruit-qa .title {
background: #fff;
padding: 1.5rem 3rem 1.5rem 1rem;
display: block;
color: #3c8444;
font-weight: 500;
line-height: 1.5;
display: flex;
align-items: flex-start;
}
#page .recruit-qa .title span.q-icon{
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.0;
}
#page .recruit-qa .title span.question{
 padding-left: 1rem;
}

#page .recruit-qa .content p{
display: flex;
align-items: flex-start;
margin: 0;
padding: 3rem 1rem 1rem;
font-size: 0.9em;
line-height: 2.0;
position: relative;
}

#page .recruit-qa .content p::before{
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  background: #999;
  top: 1rem;
}

#page .recruit-qa .content span.a-icon{
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.0;
  margin-left:0.1rem;
  color: #000;
}
#page .recruit-qa .content span.answer{
 padding-left: 1rem;
 color: #000;
}

#page .recruit-qa .title::after,
#page .recruit-qa .title::before {
content: "";
position: absolute;
right: 1.25rem;
top: 1.75rem;
width: 2px;
height: 1.25rem;
background-color: #999;
transition: all 0.3s;
}
#page .recruit-qa .title::after {
transform: rotate(90deg);
}
#page .recruit-qa .content {
max-height: 0;
overflow: hidden;
background: #fff;
}

#page .recruit-qa .qa-toggle:checked + .title + .content {
max-height: 500px;
transition: all 1.5s;
}
#page .recruit-qa .qa-toggle:checked + .title::before {
transform: rotate(90deg) !important;
}


/*福利厚生*/
#page .recruit-sec6{
  background: #f1f2f1;
  padding:3rem 0;
}

#page .recruit-sec6 h3{
 font-size: 1.7rem;
 font-weight: 500;
 letter-spacing: 1px;
 color: #3c8444;
 text-align: center;
}

#page .recruit-sec6 .table-wrap{
    background: #fff;
    width: 100%;
    padding: 1.5rem 0;
    margin-top: 2rem;
}
#page .recruit-sec6 table{
  width: 90%;
  height: auto;
  margin: 0 auto;
  background: #fff;
  border-collapse: collapse;
}
#page .recruit-sec6 table tr{
        border-color: #000;
        border-style: solid;
        border-width: 1px 0;
}

/*#page .recruit-sec6 table tr::before{
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  background: #000;
  top: 2rem;
  left: 5%;
}*/
/*#page .recruit-sec6 table tr:last-child td{
 
}*/

/*#page .recruit-sec6 table tr:last-child::after{
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  background: #000;
  bottom: 2rem;
  left: 5%;
}*/

#page .recruit-sec6 table th{
  position: relative;
  text-align: left;
  color:#3c8444!important;
  font-size: 1.1rem;
  font-weight: 500;
  box-sizing: border-box; 
}
#page .recruit-sec6 table td{
    line-height: 2.0;
  box-sizing: border-box; 
  word-wrap: break-word;
  word-break: break-word;
}

#page .recruit-sec6 .btn-page a{
  margin: 3rem auto 0;
}




/*募集職種*/
#page .recruit-sec7{
  padding:3rem 0;
}

#page .recruit-sec7 h3{
 font-size: 1.7rem;
 font-weight: 500;
 letter-spacing: 1px;
 color: #3c8444;
 text-align: center;
}
#page .recruit-sec7 dl{
  margin-top: 2rem;
  position: relative;
/*   box-shadow: 2px 2px 6px rgba(0,0,0,.4);*/
}
#page .recruit-sec7 dl a{
  position: absolute;
  top: 0;
  left: 0;
  height:100%;
  width: 100%;
}

#page .recruit-sec7 dt{
  padding:1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  background: #3c8444;
  color: #fff;
  text-align: center;
}
#page .recruit-sec7 dd{
    padding:1rem;
    background: #f1f2f1;
    color: #000;
     font-weight: 500;
    line-height: 2.0;
}

/*CTA*/
#page .recruit-sec8{
  background: url("../img/recruit8-bg-sp.webp") no-repeat  center center;
  background-size: cover;
  height: 860px;
  padding:3rem 0;
}

#page .recruit-sec8 h3{
 font-size: 1.7rem;
 font-weight: 500;
 letter-spacing: 1px;
 color: #3c8444;
 text-align: center;
 line-height: 1.5;
 margin: 3rem 0 1.5rem;
}

#page .recruit-sec8 p{
margin: 0 0 0.5rem;
line-height: 2.0;
letter-spacing: 1px;
text-align: center;
font-size: 1.2rem;
}


/*フォームは専用CSSへ*/
#page .recruit-form{
  padding:3rem 0;
}
#page .recruit-form h3{
 font-size: 1.7rem;
 font-weight: 500;
 letter-spacing: 1px;
 color: #3c8444;
 text-align: center;
 line-height: 1.5;
 margin: 0 0 1.5rem;
}


/* *****リクルート個別ページ***** */

.page-mv.recruit-page-mv{background: url("../img/recruit-page-mv-sp.webp") no-repeat  center center; background-size: cover;}



#page .recruit-page{ padding: 0 0 3.5rem 0;}
#page .recruit-page table{
  width: 100%;
}

#page .recruit-page table th{
  position: relative;
  text-align: left;
  color:#3c8444!important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 2rem 0 0;
}
#page .recruit-page table td{
  padding: 1rem 0;
  font-size: 1.1rem;
  line-height: 2.0;
}


#page .recruit-page table tr:last-child > td{
}

#page .recruit-page table td ol li{
list-style-type: decimal;
margin-left: 6%;
padding-left: 0.5rem;
}

#page .recruit-page ul.taigu{
  margin-top: 0.5rem;
}
#page .recruit-page li{
  position: relative;
  padding-left: 20px;
  line-height: 2.0;
  font-size: 1.1rem;
}
 
#page .recruit-page li:before {
  content: "";
  position: absolute;
  top: .6rem;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #3c8444;
  border-radius: 50%;
  line-height: 2.0;
}


#page .recruit-entry .rec-add{
  font-family: 'Noto Serif JP', serif;
  padding: 1.5rem 1rem 0.5rem;
  width: 100%;
  box-sizing: border-box;
}
#page .recruit-entry .rec-add img{
  width: 30%;
  margin-right: 1rem;
}
#page .recruit-entry .rec-add p{
  font-size: 1rem;
  margin-bottom: 1rem;
   text-align: left;
   display: flex;
   align-items: center;
  justify-content: start;
}

#page .recruit-entry .rec-add p span.omoto{
    font-size: 1.5rem;
    font-weight: 500;
}
#page .recruit-entry .rec-add p span.nakagome{
    font-size: 1.3rem;
    font-weight: 500;
    margin-left: 1rem;
}
#page .recruit-entry p.mc-copy{
  font-size: 2rem;
  font-weight: 500;
  margin-top: 3rem;
  text-align: center;
  color: #3c8444;
}


/* エントリーボタン */
.btn1 {
  position: relative;
  width: 100%;
  color: #fff; /* 文字色 */
  font-weight: 600;
  background:#3c8444; /* 背景色 */
  transition: all 0.5s;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 1.5rem 0;
  margin: 3rem auto;
}




/* *****福利厚生個別ページ***** */


#page.benefits{padding: 1.5rem 0 3rem}
.page-mv.benefits-mv{
  background: url("../img/benefits-mv-sp.webp") no-repeat  center center;
   background-size: cover;
}


#page.benefits #menkyo{
      width: 90%;
    margin: 2rem auto 1rem;
    border: 5px solid #3c8444;
    background: #fff;
    text-align: center;
}


#page.benefits #menkyo h4{
    position: relative;
    font-size: 1.4rem;
    font-weight: bold; 
    text-align: center;
    color: #116607;
    margin: 1.4rem;
    display: inline-block;
}
#page.benefits #menkyo h4::before{
   content:"";
   display:inline-block;
   width:4px;
   height:40px;
   background-color:#116607;
   position:absolute;
   top:-0.3rem;
   left:-2rem;
   transform: rotate(-30deg);
}
#page.benefits #menkyo h4::after{
content:"";
   display:inline-block;
   width:4px;
   height:40px;
   background-color:#116607;
   position:absolute;
   top:-0.3rem;
   right:-2rem;
   transform: rotate(30deg);
}

#page.benefits #menkyo .hojo{
    background: #9bff25;
    color: #116607;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem;

}
#page.benefits #menkyo p{
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
#page.benefits #menkyo p.kome{
  font-size: 0.8rem;
  margin: 0.5rem;
}

#page.benefits #menkyo p span{
    font-size: 3rem;
    font-weight: bold;
    color: #116607;
}
#page.benefits #menkyo .menkyo-inbox .oogata{
  margin-top: 2rem;
}
#page.benefits #menkyo .menkyo-inbox .oogata::after{
  content: "";
  display: block;
  width: 90%;
  border-bottom: 2px solid #999;
  margin: 2rem auto;
}

#page.benefits #menkyo .menkyo-inbox .hojo-tag{
    padding: 0.5rem;
    background: #ededed;
    font-weight: bold;
    letter-spacing: 0.05rem;
    text-align: center;
    margin: 0!important;
    display: inline-block;
    color: #2f2d2d;
    line-height: 1.3;
}

#page .benefits-sec0 h3{
 font-size: 1.7rem;
 font-weight: 500;
 line-height: 1.8;
 letter-spacing: 1px;
 color: #3c8444;
 text-align: center;
 margin: 3rem 0 2rem;
}

#page .benefits-sec0 .benefits-sec0-text p{
  font-size: 1.2rem;
margin: 0 0 1rem;
line-height: 2.0;
letter-spacing: 1px;
}


/*職場idecoの枠 */

#page .benefits-sec0 .box-dc {
border: 5px solid #3c8444;
margin: 2rem auto;
padding:2rem 0.5rem 1rem;
}

#page .benefits-sec0 .box-dc .box-title {
color: #3c8444; /* タイトル文字色 */
font-size:1.4rem;
font-weight: bold;
text-align: center;
}

#page .benefits-sec0 .box-dc .box-title:before {
font-family: "Font Awesome 5 Free";
content: "\f06a";
font-size: 1.4rem;
margin: 0 3px 0 0;
font-weight: bold;
}

#page .benefits-sec0 .box-dc p,
#page .benefits-sec0 .box-dc h5{
  color: #fff;
}

#page .benefits-sec0 ul{
  margin-top: 1.5rem;
}
#page .benefits-sec0 li{
  position: relative;
  padding-left: 20px;
  line-height: 2.0;
  font-size: 1.4rem;
}
 
#page .benefits-sec0 li:before {
font-family: "Font Awesome 5 Free";
content: "\f058";
font-size: 1.4rem;
margin: 0 3px 0 0;
font-weight: bold;
color: #3c8444; 
}
}


#page .benefits-sec-table{
  background: #fff;
  padding:3rem 0;
}

#page .benefits-sec-table h3{
 font-size: 1.7rem;
 font-weight: 500;
  line-height: 1.8;
 letter-spacing: 1px;
 color: #3c8444;
 text-align: center;
  margin: 3rem 0 2rem;
}

#page .benefits-sec-table p{
  font-size: 1.2rem;
margin: 0 0 1rem;
line-height: 2.0;
letter-spacing: 1px;
}


#page .benefits-sec-table .table-container{
  position: relative;
  overflow: scroll;
    background: #fff;
    width: 100%;
    padding: 1.5rem 0;
    margin-top: 2rem;
}
#page .benefits-sec-table table{
  width: 100%;
  white-space: nowrap;
  height: auto;
  margin: 0 auto;
  background: #fff;
  border-collapse: collapse;
   border-spacing: 0;

}
#page .benefits-sec-table table tr{
}
#page .benefits-sec-table table tr:nth-child(2n+1){
  background:#edfcef;
}
/*#page .benefits-sec-table table tr:last-child;{border-right: 1px solid #f00;}*/
#page .benefits-sec-table table th.head:last-child{border-right: 1px solid #999;}
#page .benefits-sec-table table th{
  background-color:#3c8444;
  color:#fff;
  font-weight: 500;
  border-color: #fff;
  padding: 0.4rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  vertical-align: middle;
  text-align: center;
}
#page .benefits-sec-table table th.bottom-end{border-bottom: 1px solid #999!important;}
#page .benefits-sec-table table td{
    line-height: 2.0;
  word-wrap: break-word;
  word-break: break-word;
  padding: 0.4rem;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
    vertical-align: middle;
}
#page .benefits-sec-table table td.bo-left{border-left: 1px solid #999;}
#page .benefits-sec-table table th.bo-left{border-left: 1px solid #999;}
.scroll-hint {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  animation: scroll-hint-animation 2s infinite ease;
}

@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

.scroll-hint--show {
  display: block;
  width:200px;
  text-align: center;
}




/* 個別インタビュー　 */

/* *****INTERVIEW MV***** */

#page .interview-content{ padding: 1rem 0 3.5rem 0;}

.int-page-mv{
      width: 100%;
      height: 600px;
      background-size: cover;
      margin-top: 60px;
      box-sizing: border-box;
}
.int-page-mv .container{
      position: relative;
      width: 100%;
      height: 600px;
      box-sizing: border-box;
}

.int-page-mv .container h1{
      font-family: 'Oswald', sans-serif;  
      font-weight: 700;
      letter-spacing: 1px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      left: 6%;
      color: rgba(255, 255, 255, 0.8);
      font-size: 3rem;
      line-height: 0.5;
      padding: 0;
}
.int-page-mv .container h2{
      font-family: 'Noto Sans JP', sans-serif;
      position: absolute;
      top: 55%;
/*      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);*/
      left: 6%;
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.2rem;
      line-height: 1.5;
      padding: 0;
      margin-right: 6%;
}
.int-page-mv .container .int-mv-name,
.int-page-mv .container .int-mv-info{
      font-family: 'Noto Sans JP', sans-serif;
      position: absolute;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.5;
      left: 6%;
      margin-right: 6%;
}

.int-page-mv .container .int-mv-name{
      top: 65%;
      font-size: 1.1rem;
}

.int-page-mv .container .int-mv-info{
        top: 68%;
      font-size: 1.1rem;
}

#page .interview-content .interview-question{
  display: flex;
  justify-content: center;
  align-items: start;
}


#page .interview-content h3{
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2rem 0 2rem 0;
  color: #3c8444; 
  line-height: 1.5;  
  flex: 1;

}
#page .interview-content .interview-number{
      font-family: 'Oswald', sans-serif;  
      font-weight: 600;
      font-size: 1.1rem;
      margin:2rem 0.5rem 0 0;
      color: #fff;
      display: inline-block;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: #3c8444;
      text-align:center;
      line-height: 35px;     
}

#page .interview-content p{
   line-height: 2.0;    
}
#page .interview-content .interview-img{
  margin: 2rem auto 3rem;
  text-align: center;
}

.int-page-mv.interviewtest{background: url("../img/interviewtest-head-sp.webp") no-repeat  center center; background-size: cover;}
.int-page-mv.interview1{background: url("../img/interview1-head-sp.webp") no-repeat  center center; background-size: cover;}
.int-page-mv.interview2{background: url("../img/interview2-head-sp.webp") no-repeat  center center; background-size: cover;}
.int-page-mv.interview3{background: url("../img/interview3-head-sp.webp") no-repeat  center center; background-size: cover;}
.int-page-mv.interview4{background: url("../img/interview4-head-sp.webp") no-repeat  center center; background-size: cover;}

/*その他のインタビュー*/

#page .interview-content{
  background: #fff;
  padding:3rem 0;
}

#page .interview-content .interview1,
#page .interview-content .interview2,
#page .interview-content .interview3,
#page .interview-content .interview4
{
  margin: 2rem 0;
  flex-basis: auto;
  border: 1px solid #d2d2d2;
}


#page .interview-content .interview1 img,
#page .interview-content .interview2 img,
#page .interview-content .interview3 img,
#page .interview-content .interview4 img
{
  display: block;
  width: 100%;
}

#page .interview-content .int-title{
  margin-top: 0.5rem;
  display: flex;
  padding: 0.5rem 0.5rem 1rem 1rem;
}

#page .interview-content .Number{
  font-size: 2.5rem;
  font-weight: 500;
  color: #3c8444;
  font-family: 'Oswald', sans-serif;
}

#page .interview-content .name-text{
  margin-left: 1rem;
  color: #000;
}


#page .interview-content .position{
  font-size: 0.8rem;
}
#page .interview-content .name{
  font-size: 1.2rem;
  font-weight: 500;
}


/* スマホのみその他インタビュー用スライド */
.swiper{margin-bottom: 2rem}
.swiper-slide{
  margin: 0 auto;
  text-align: center;
}

#page .swiper .int-title{
  margin: 0.5rem 6% 0;
  display: flex;
  padding: 0;
}

#page .swiper .Number{
  font-size: 1.5rem;
  font-weight: 500;
  color: #3c8444;
  font-family: 'Oswald', sans-serif;
}

#page .swiper .name-text{
  margin-left: 1rem;
  color: #000;
}
#page .swiper p{
  line-height: 1.3;
}





/* *****プライバシーポリシー cookieポリシー***** */

/* *****cookieポリシーMV***** */
#page.policy{padding: 1.5rem 0 3rem}

.page-mv.cookie{background: url("../img/cookie-mv-sp.webp") no-repeat  center center; background-size: cover;}

/* *****privacyポリシーMV***** */
.page-mv.privacy{background: url("../img/privacy-mv-sp.webp") no-repeat  center center; background-size: cover;}


/* コンテンツ */
#page.policy{width: 100%;margin: 0 auto; word-break: break-all;}
#page.policy h2.p1{margin-bottom: 2rem;text-align: center; font-size: 1.5rem;}
#page.policy h4{background: #f3f9f4; color:#3c8444; margin: 2rem 0 0.7rem; padding:0.5rem;line-height: 1.7rem;}

#page.policy h4 {
    display: flex;
    align-items: center;
    padding: .5em .7em;
    background-color: #f2f2f2;
    color: #333333;
}

#page.policy h4::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: .5em;
    background-color: #3c8444;
    content: '';
}



#page.policy h5{font-weight: bold; margin: 2rem 0 1rem;}
#page.policy p{line-height: 1.7;margin-bottom: 1rem;}
#page.policy ol  {
  margin: 0;
  padding: 0
}
#page.policy ol li  {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
  line-height: 1.7rem;
  font-size: 0.9rem;
}

#page.policy .policy-add{
  margin: 2rem 0;
}

#page.policy p.bt3{
  font-size: 1.1rem;
  font-weight:bold ;
  margin: 1rem;
}


/* *****当社の取り組み***** */

.page-mv.efforts{background: url("../img/efforts-mv-sp.webp") no-repeat  center center; background-size: cover;}
#page.efforts{
  margin: 0 auto; 
  word-break: break-all;
  padding: 1.5rem 0 3rem;
}
#page.efforts h2.p1{margin-bottom: 2rem;text-align: center; font-size: 1.5rem;}
#page.efforts h3{font-size: 1.5rem;margin-bottom: 2rem;line-height: 1.5;}
#page.efforts h4{background: #f3f9f4; color:#3c8444; margin: 2rem 0 0.7rem; padding:0.5rem;line-height: 1.7rem;}
#page.efforts h5{font-weight: bold; margin: 2rem 0 1rem;}
#page.efforts p{line-height: 1.7;margin-bottom: 1rem;}


section.sdgs{margin-top: 3rem}
section.shinshu{margin-top: 3rem}
section.g-mark{margin-top: 3rem}
section.hatarakiyasui{margin-top: 3rem}
section.safe{margin-top: 3rem}
section.keizoku{margin-top: 3rem}
section.kosodate{margin-top: 3rem}
section.d-city{margin-top: 3rem}


#page.efforts .g-mark a.link-card{
  position: relative; 
  display: inline-block;  
   box-sizing: border-box; 
  width:100%;
  padding-left: 55px;
  margin: 1rem 0;
}
#page.efforts .g-mark a.link-card::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:80%;
  height: 80%;
  background: url("../img/g-mark.png") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;

}

#page.efforts .sdgs a.link-card{
  position: relative; 
  display: inline-block; 
  box-sizing: border-box; 
  width:100%;
  padding-left: 80px;
  margin: 1rem 0;
}
#page.efforts .sdgs a.link-card::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:80%;
  height: 80%;
  background: url("../img/n-sdgs.png") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;

}
#page.efforts .shinshu a.link-card{
  position: relative; 
  display: inline-block;  
    box-sizing: border-box; 
  width:100%;
  padding-left: 70px;
  margin: 1rem 0;
}
#page.efforts .shinshu a.link-card::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:80%;
  height: 80%;
  background: url("../img/nagano-uij.png") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;
}


#page.efforts .hatarakiyasui a.link-card{
  position: relative; 
  display: inline-block;  
   box-sizing: border-box; 
  width:100%;
  padding-left: 70px;
  margin: 1rem 0;
}
#page.efforts .hatarakiyasui a.link-card::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:60%;
  height: 60%;
  background: url("../img/hatarakiyasui.png") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;
}
#page.efforts .safe a.link-card{
  position: relative; 
  display: inline-block;  
   box-sizing: border-box; 
  width:100%;
  padding-left: 70px;
  margin: 1rem 0;
}
#page.efforts .safe a.link-card::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:60%;
  height: 60%;
  background: url("../img/safe_logo.jpg") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;
}

#page.efforts .keizoku a.link-card{
  position: relative; 
  display: inline-block;  
   box-sizing: border-box; 
  width:100%;
  padding-left: 70px;
  margin: 1rem 0;
}
#page.efforts .keizoku a.link-card::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:60%;
  height: 60%;
  background: url("../img/zigyou-keizoku.png") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;
}


#page.efforts .kosodate a.link-card{
  position: relative; 
  display: inline-block;  
   box-sizing: border-box; 
  width:100%;
  padding-left: 70px;
  margin: 1rem 0;
}
#page.efforts .kosodate a.link-card::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:60%;
  height: 60%;
  background: url("../img/kosodate.avif") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;
}


#page.efforts .d-city a.link-card{
  position: relative; 
  display: inline-block;  
   box-sizing: border-box; 
  width:100%;
  padding-left: 70px;
  margin: 1rem 0;
}
#page.efforts .d-city a.link-card::before{
  position: absolute;
  content: "";
  display: inline-block;
  width:60%;
  height: 60%;
  background: url("../img/d_city.avif") no-repeat;
  background-size: contain;
  top: 50%;
        transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
  left: 2%;
}








/* *****サイトマップー***** */

.page-mv.sitemap{background: url("../img/sitemap-mv-sp.webp") no-repeat  center center; background-size: cover;}
#page.sitemap-wrap{
  margin: 0 auto; 
  word-break: break-all;
  padding: 1.5rem 0 3rem;
}
#page.sitemap-wrap h2.p1{margin-bottom: 2rem;text-align: center; font-size: 1.5rem;}
ul.cp_list {
  padding: 0;
  position: relative;
}
ul.cp_list li {
  color: #2a8f4b;
  line-height: 1.5;
  padding: 0.5em 0.5em 0.5em 2em;
  border-bottom: 1px dashed #2a8f4b;
  list-style-type: none!important;
}
ul.cp_list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c1";
  position: absolute;
  left : 0.5em/*左端からのアイコンまでの距離*/;
  color: #1A0DAB;/*アイコン色*/
  font-weight: 900;
}
ul.cp_list .lcbbn li:last-child{
  border-bottom: none;
}


/*お問い合わせ*/
.page-mv.contact-mv{background: url("../img/contact-mv-sp.webp") no-repeat  center center; background-size: cover;}
#page .contact-form{
  padding:3rem 0;
}
#page .contact-form h3{
 font-size: 1.7rem;
 font-weight: 500;
 letter-spacing: 1px;
 color: #3c8444;
 text-align: center;
 line-height: 1.5;
 margin: 0 0 1.5rem;
}




/* *****よくある質問***** */


section.qa{
  background: #fff;
  padding: 1rem 0;
}

.qa .qabox{
  background-color: #fff;
  padding: 0.5rem;
  margin-bottom: 1rem;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2); 
}

.qa .qbox,.qa .abox{
  display: flex;
  justify-content: start;
  align-items: center;
}
.qa .qbox{
  margin-bottom: 1rem;
}


.qa .qwrap,.qa .awrap{
  width: 10%;
  margin-right: 0.5rem;

}
.qa .qtext,.qa .atext{
  width: 87%;
  line-height: 1.5rem;
}
.qa .qtext{
  color:#545550;
  font-weight: bold;
}
.qa .circle-q{
  font-family: 'Noto Serif JP', serif;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e4e1ce;
  text-align:center;
  line-height: 30px;
  color: #545550;
}

.qa .circle-a{
  font-family: 'Noto Serif JP', serif;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
/*  background: #edf1d5;*/
  text-align:center;
  line-height: 30px;
  color:#545550;
}









/* *****拡張用***** */


.lh25{line-height: 2.5rem;}




 /* ボタン */


.btn_blue a {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  max-width: 100%;
  color: #545550;
  font-size: 1rem;
  font-weight: 700;
  background-color: #fff;
  transition: 0.3s;
  text-align: center;
  border: 1px solid #545550;
}

.btn_blue a::before {
  content: '';
  position: absolute;
  top: 50%;
   transform: translateY(-50%);
  right: 23px;
  width: 0;
  height: 0;
  border-left: 8px solid #545550;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}



.btn_blue a:hover {
  text-decoration: none;
  background-color: #cccccc;
}


 /* 拡張用CSS */

 .b{font-weight: bold;}
 .f12{font-size: 1.2rem}
 .red{color: #ff0000}
 .orange{color: #fd7e00;}


 /* iosの角丸をリセット start */

#page .recruit-form form#mail_form input[type="text"],
#page .recruit-form form#mail_form input[type="email"],
#page .recruit-form form#mail_form input[type="tel"],
#page .recruit-form form#mail_form input[type="submit"],
#page .recruit-form form#mail_form input[type="button"],
#page .recruit-form form#mail_form select#product option{
  -webkit-appearance: none;
  border-radius: 0;
}