@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

.grecaptcha-badge {
  display: none!important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-variant-ligatures: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 100%;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}

/* FONT
***************************************************************/
.sans {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}
.serif {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
}
.roboto {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.lato {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.yuGothic {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
    "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic,
    "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana,
    "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/* LINK
***************************************************************/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #000;
}
a:active,
a:focus {
  outline: none;
}
a img {
  transition: 0.3s ease;
}

/* NONE
***************************************************************/
.none {
  display: none;
}
.linkNone {
  pointer-events: none;
}
@media all and (min-width: 681px) {
  .nonePC {
    display: none !important;
  }
  .linkNonePC {
    pointer-events: none;
  }
}
@media all and (max-width: 680px) {
  .noneSP {
    display: none !important;
  }
  .linkNoneSP {
    pointer-events: none;
  }
}

/* clearfix
***************************************************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  animation: opacity ease 1s forwards;
}

/* GoogleMap
***************************************************************/
.gm-style-pbt {
  text-align: center;
}
@media all and (max-width: 680px) {
  .gm-style-pbt {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* lazyload
***************************************************************/

.lazyload {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity ease 0.3s;
}

/* フェード
***************************************************************/

@media all and (min-width: 681px) {
  .action.up {
    opacity: 0;
    transform: translate(0, 100px);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.left {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.right {
    opacity: 0;
    transform: translate(100px, 0);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.up.scrollin,
  .action.left.scrollin,
  .action.right.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }
  .action.delay1 {
    transition: opacity 1000ms ease 0.5s, transform 1000ms ease 0.5s;
  }
  .action.delay2 {
    transition: opacity 1000ms ease 0.75s, transform 1000ms ease 0.75s;
  }
  .action.delay3 {
    transition: opacity 1000ms ease 1s, transform 1000ms ease 1s;
  }
}

@media all and (max-width: 680px) {
  .action.up_sp {
    opacity: 0;
    transform: translate(0, 50px);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.left_sp {
    opacity: 0;
    transform: translate(-50px, 0);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.right_sp {
    opacity: 0;
    transform: translate(50px, 0);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.up_sp.scrollin,
  .action.left_sp.scrollin,
  .action.right_sp.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }
  .action.delay1_sp {
    transition: opacity 750ms ease 0.5s, transform 750ms ease 0.5s;
  }
  .action.delay2_sp {
    transition: opacity 750ms ease 0.75s, transform 750ms ease 0.75s;
  }
  .action.delay3_sp {
    transition: opacity 750ms ease 1s, transform 750ms ease 1s;
  }
}


/* header
***************************************************************/
.head {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111;
}
.head_inner {
  /* width: 1300px; */
  /* 20240821修正 */
  width: 80%;
  height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.h_h1 {
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.siteID {
  width: 203px;
  display: block;
}
.h_contact_btn {
  width: 207.5px;
  display: block;
}
.h_contact_btn img {
  /* box-shadow: 0 1px 5px rgba(0,0,0,0.2); */
}
.gnav {
  display: flex;
}
.gnav .link1 {
  padding: 0 15px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
}
.gnav .link1::after {
  content: "";
  width: 1px;
  height: 0;
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: height 0.3s ease;
}
.main {
  padding-top: 104px;
}
@media all and (min-width: 681px) {
  body,.head {
    min-width: 1200px;
  }
  a.siteID:hover {
    opacity: .7;
  }
  a.h_contact_btn:hover {
    opacity: .7;
  }
  .gnav a.link1:hover::after,
  .gnav .li:hover a.link1::after,
  .gnav .current a.link1::after {
    height: 36px;
  }
  /* .gnav_subNav */
  .gnav .typeToggle {
    position: relative;
  }
  .gnav_subNav {
    position: absolute;
    top: 104px;
    left: 0;
    background-color: #f1f7f5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-top: 1px solid #000;
  }
  .typeToggle:hover .gnav_subNav {
    opacity: 1;
    pointer-events: auto;
  }
  .gnav_subNav .li2:nth-of-type(1n + 2) {
    border-top: 1px solid #a0a0a0;
  }
  .gnav_subNav .li2 .link2 {
    width: 200px;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  .gnav_subNav .li2 .link2::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #006400;
    border-bottom: 2px solid #006400;
    transform: rotate(-45deg);
    transition: border 0.3s ease;
  }
  .gnav_subNav .li2 a.link2:hover {
    background-color: #006400;
    color: #fff;
  }
  .gnav_subNav .li2 a.link2:hover::after {
    border-color: #fff;
  }
  .gnav .typeToggle2 {
    position: relative;
  }
  
  .gnav_subNav2 {
    position: absolute;
    top: 0;
    left: 192px;
    background-color: #f1f7f5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }  
  .typeToggle2:hover .gnav_subNav2 {
    opacity: 1;
    pointer-events: auto;
  }  
  .gnav_subNav2 .li3:nth-of-type(1n + 2) {
    border-top: 1px solid #a0a0a0;
  }  
  .gnav_subNav2 .li3 .link3 {
    width: 200px;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
  }  
  .gnav_subNav2 .li3 .link3::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #006400;
    border-bottom: 2px solid #006400;
    transform: rotate(-45deg);
    transition: border 0.3s ease;
  }  
  .typeToggle2:hover .gnav_subNav2.link3::after {
    opacity: 0;
  }  
  .gnav_subNav2 .li3 a.link3:hover {
    background-color: #006400;
    color: #fff;
  }  
  .gnav_subNav2 .li3 a.link3:hover::after {
    border-color: #fff;
  }  
  .gnav_subNav .li2.typeToggle2:hover .link2::after {
    opacity: 0;
  }
}
@media all and (max-width: 680px) {
  .head_inner {
    width: 100%;
    height: 50px;
    padding: 0 12px;
  }
  .h_h1 {
    top: 0;
    bottom: 0;
    margin: auto;
    left: 135px;
    display: flex;
    align-items: center;
  }
  .siteID {
    width: 110px;
  }
  .gnav {
    width: 100%;
    height: calc(100vh - 50px);
    display: block;
    padding-bottom: 120px;
    position: fixed;
    left: 0;
    top: 50px;
    background-color: rgba(255, 255, 255, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow: auto;
  }
  .open .gnav {
    opacity: 1;
    pointer-events: auto;
  }
  .gnav .link1 {
    padding: 8px 0;
    height: auto;
    display: block;
    font-size: 18px;
    text-align: justify;
    letter-spacing: 0.1em;
  }
  .conversionBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 16px 16px;
    position: fixed;
    z-index: 2222;
    left: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .pageScroll .conversionBox,
  .open .conversionBox {
    opacity: 1;
    pointer-events: auto;
  }
  .h_contact_btn_sp {
    width: 49%;
    display: block;
  }
  .h_toggle {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3333;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .h_toggle .i1 {
    display: block;
    width: 24px;
  }
  .h_toggle .i2 {
    display: none;
    width: 27px;
  }
  .open .h_toggle .i1 {
    display: none;
  }
  .open .h_toggle .i2 {
    display: block;
  }
  .main {
    padding-top: 50px;
  }

  .gnav .li {
    width: 150px;
    margin: 0 auto;
  }
  .gnav_subNav .li2 {
    margin-bottom: 10px;
  }
  .gnav_subNav .link2 {
    display: block;
    color: #505050;
    font-size: 15px;
  }
  .gnav_subNav .link2::before {
    content: "- ";
  }
  .gnav_subNav2 {
    position: relative;
    margin-left: 7px;
  }  
  .gnav_subNav2 .li3 {
    margin: 8px 0;
  }  
  .gnav_subNav2 .link3 {
    display: block;
    color: #505050;
    font-size: 15px;
  }  
  .gnav_subNav2 .link3::before {
    content: "― ";
  }
}
@media all and (max-width: 370px) {
}


/* foot
***************************************************************/
.f_box1 {
  background-color: #006400;
  color: #fff;
  width: 100%;
  padding: 45px 0 55px;
}
.f_box1 .t1 {
  width: 550px;
  margin: 0 auto;
  background-color: #fff;
  color: #006400;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.7em;
  line-height: 1;
  padding: 3px 0;
}
.f_box1 .t2 {
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-top: 25px;
}
.f_box1 .t3 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-top: 18px;
}
.f_box1 .t4 {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-top: 16px;
}
.f_box2 {
  width: 1012px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 60px 0 56px;
}
.f_contact_btn {
  width: 488.5px;
  display: block;
}
.f_contact_btn img {
  /* box-shadow: 0 1px 5px rgba(0,0,0,0.2); */
}
.f_box3 {
  border-top: 2px solid #C7C7C7;
  width: 100%;
  padding: 56px 0 40px;
}
.f_company {
  width: 900px;
  margin: 0 auto 50px;
}
.f_company .f_company_ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.f_company .f_company_info {
  display: flex;
  justify-content: center;
}
.f_company .f_company_detail {
  width: 50%;
}
.f_company .f_company_map {
  width: 50%;
}
.f_company .f_company_map_box {
  width: 100%;
  height: 300px;
}
.f_target {
  width: 700px;
  margin: 0 auto 50px;
}
.f_target .f_target_ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.f_target .f_target_area {
  display: flex;
  flex-wrap: wrap;
}
.f_target .f_target_area li {
  font-weight: normal;
  margin: 5px 0;
}
.f_target .f_target_area li::after {
  content: "/";
  padding: 0 3px;
}
.f_siteID {
  width: 420px;
  margin: 0 auto;
  display: block;
}
.f_nav1 {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  width: 750px;
  margin: 0 auto;
  padding: 50px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 2.44;
}
.f_nav1 .link1 {
  padding: 0 15px;
}
.f_linkTop {
    width: 700px;
    text-align: center;
    margin: 10px auto;
}
.f_support {
  width: 700px;
  padding: 0 0 50px 0;
  margin: 0 auto;
  font-weight: 500;
}
.f_support_ttl {
  text-align: center;
}
.f_support_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.f_support_box .link::after {
  content: "・";
}
.f_support_box .link:last-child:after {
  content: "";
}
.f_support_box a:hover {
  opacity: 0.7;
}
.f_bnrBox1 {
  width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.f_bnrBox1 .li1 {
  width: 328px;
}
.f_bnrBox1 .link1 {
  display: block;
}
.f_grpWrap {
  width: 700px;
  padding: 50px 0 0 0;
  margin: 0 auto;
  font-weight: 500;
}
.f_grpTtl {
  text-align: center;
}
.f_grpBox1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.f_grpBox1 a:hover {
  opacity: 0.7;
}
.cRight {
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 35px;
}
@media all and (min-width: 681px) {
  a.f_contact_btn:hover {
    opacity: .7;
  }
  a.f_siteID:hover {
    opacity: .7;
  }
  .f_nav1 a.link1:hover {
    opacity: .7;
  }
  .f_bnrBox1 a.link1:hover {
    opacity: .7;
  }
}
@media all and (max-width: 680px) {
  .f_box1 {
    padding: 18px 0 16px;
  }
  .f_box1 .t1 {
    width: 250px;
    font-size: 14px;
  }
  .f_box1 .t2 {
    font-size: 22px;
    line-height: 1.29;
    padding-top: 6px;
  }
  .f_box1 .t3 {
    font-size: 14px;
    padding-top: 4px;
  }
  .f_box1 .t4 {
    font-size: 11px;
    text-align: right;
    padding-top: 6px;
    padding-right: 20px;
  }
  .f_box2 {
    width: 100%;
    display: block;
    padding: 30px 0 30px;
  }
  .f_contact_btn {
    width: 280px;
    margin: 0 auto;
  }
  .f_contact_btn + .f_contact_btn {
    margin-top: 15px;
  }
  .f_box3 {
    padding: 30px 0 120px;
  }
  .f_company {
    width: 100%;
    margin-bottom: 30px;
  }
  .f_company .f_company_ttl {
    font-size: 17px;
  }
  .f_company .f_company_info {
    display: block;
  }
  .f_company .f_company_detail {
    width: 90%;
    font-size: 14px;
    margin: 0 auto 17px;
  }
  .f_company .f_company_map {
    width: 90%;
    margin: 0 auto;
  }
  .f_target {
    width: 100%;
    margin-bottom: 30px;
  }
  .f_target .f_target_ttl {
      font-size: 17px;
  }
  .f_target .f_target_info {
      width: 90%;
      margin: 0 auto 17px;
  }
  .f_siteID {
    width: 190px;
  }
  .f_linkTop {
    width: 230px;
  }
  .f_support {
    width: 100%;
    font-size: 14px;
    padding: 30px 0 0 0;
  }
  .f_bnrBox1 {
    width: 230px;
    display: block;
    padding-top: 30px;
  }
  .f_bnrBox1 .li1 {
    width: 100%;
  }
  .f_bnrBox1 .li1 + .li1 {
    margin-top: 15px;
  }
  .f_grpWrap {
    width: 100%;
    padding: 30px 0 0 0;
    font-size: 80%;
  }
  .f_grpBox1 {
      display: block;
      text-align: center;
  }
  .cRight {
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin-top: 30px;
  }
}
@media all and (max-width: 370px) {
}


/* w_subTitle_box1
***************************************************************/
.w_subTitle_box1 {
  padding: 40px 0;
  color: #006400;
}
.w_subTitle_box1 .h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
.w_subTitle_box1 .p1 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3em;
  line-height: 1.6;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_subTitle_box1 {
    padding: 20px 0;
  }
  .w_subTitle_box1 .h1 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .w_subTitle_box1 .p1 {
    font-size: 12px;
  }
}
@media all and (max-width: 370px) {
}


/* pagination
***************************************************************/
.pagination{
   padding-bottom: 160px;
   margin: 0!important;
}
.nav-links{
   display:flex;
   justify-content: center;
   align-items: center;
}
.pagination .page-numbers{
   display:inline-block;
   margin-right: 12px;
   padding: 5px 12px;
   color:#333;
   background:#fff;
   border: 2px solid #000;
}
.pagination .current{
   background:#000;
   color:#fff;
}
.pagination .prev,
.pagination .next{
   background:transparent;
   box-shadow:none;
   color:#000;
   border: none;
}
.pagination .dots{
   background:transparent;
   box-shadow:none;
}
@media all and (min-width: 681px) {
  .pagination .page-numbers:hover {
    background:#000;
    color:#fff;
  }
}
@media all and (max-width: 680px) {
  .pagination{
     padding-bottom: 80px;
  }
  .pagination .page-numbers{
     margin-right: 10px;
     padding: 3px 10px;
  }
  .pagination .prev,
  .pagination .next{
    font-size: 14px;
  }
}
@media all and (max-width: 370px) {
}


/* w_bnr1
***************************************************************/
.w_bnr1 {
  width: 550px;
  margin: 0 auto;
  padding: 60px 0;
}
.w_bnr1 .link1 {
  width: 100%;
  display: block;
}
.w_bnr1 .link1 img {
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}
@media all and (min-width: 681px) {
  .w_bnr1 a.link1:hover {
    opacity: .7;
  }
}
@media all and (max-width: 680px) {
  .w_bnr1 {
    width: 320px;
    max-width: 90%;
    padding: 25px 0;
  }
}
@media all and (max-width: 370px) {
}


/* w_bnr2
***************************************************************/
.w_bnr2 {
  width: 925px;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
}
.w_bnr2 .link1 {
  width: 100%;
  display: block;
}
@media all and (min-width: 681px) {
  .w_bnr2 a.link1:hover {
    opacity: .7;
  }
}
@media all and (max-width: 680px) {
  .w_bnr2 {
    width: 338px;
    max-width: 90%;
    padding: 25px 0 25px 15px;
  }
  .w_bnr2 .w_bnr2_tel {
    width: 290px;
    height: 90px;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 40px;
    margin: auto;
  }
}
@media all and (max-width: 370px) {
  .w_bnr2 .w_bnr2_tel {
    width: 240px;
    height: 76px;
  }
}

/* breadcrumbs
***************************************************************/
.breadcrumbs {
    display: flex;
    width: 1100px;
    margin: 5px auto;
}
.breadcrumbs li a::after {
    content: '>';
    display: inline-block;
    padding: 0 5px;
}
.breadcrumbs li a:hover {
    color: #289100;
}
@media screen and (max-width: 680px) {
    .breadcrumbs {
        width: 100%;
        padding-left: 10px;
        font-size: 12px;
    }
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}


/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}


/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}



/* 黄色マーカー
***************************************************************/
.marker_yellow { background:linear-gradient(transparent 60%, #ffff00 0%); }

/* 20240131追記 */

.f_contact_btn {
  padding: 5px;
}

.w_bnr1{
  display: flex;
  width: 80%;
}

.w_bnr1 .link1{
  padding: 0 10px;
}

@media (max-width: 680px){
  .h_contact_btn_sp {
    padding: 3px;
  }
  .w_bnr1{
    display: block;
    width: 320px;
  }
  .w_bnr1 .link1{
    padding: 10px 0;
  }
}

/* 20240215追記 */
#page-top-scroll {
  display: none;
  position: fixed;
  z-index: 99999;
  bottom: 25px;
  right: 25px;
}
#page-top-scroll a {
  line-height: 100%;
  border-radius: 50%;
  text-decoration: none;
  background: #ccc;
  color: #fff;
  text-align: center;
  display: block;
  -moz-opacity: 0.8;
  opacity: 0.8;
  padding: 22px 18px;
  cursor: pointer;
  width: 55px;
  height: 55px;
}
.page-top-scroll-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 15px;
  border-right: 0.15em solid #222;
  border-bottom: 0.15em solid #222;
  transform: rotate(-135deg);
  background: transparent;
}
@media (max-width: 680px) {
  #page-top-scroll {
    right: 8px;
    bottom: calc(100px + 1.5%);
  }
  #page-top-scroll a {
    padding: 16px 12px;
    width: 45px;
    height: 45px;
  }
  .f_support {
    max-width: 280px;
  }
  .f_support_box .link {
    margin-bottom: 10px;
  }
}

/*20240516追記*/
.market_price_Wrap {
  padding: 60px 0 100px;
}

.w_topTitle1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-bottom: 30px;
  position: relative;
}

.works_h2 {
  padding-top: 150px;
  position: relative;
}

.works_h2::before {
  content: "";
  width: 130px;
  height: 140px;
  background-image: url(https://jobutsu.jp/wp-content/themes/jobutsu/kaitori/img/top/title_ico4.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.w_topTitle1::after {
  content: "";
  width: 56px;
  height: 7px;
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.flow_div1 {
  width: 1100px;
  margin: 60px auto 0;
}

.market_price_Wrap table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.market_price_Wrap table tbody tr td.headline:first-child {
  border-right: 1px solid;
}

.market_price_Wrap table tbody tr td.headline {
  background-color: #017502;
  color: #fff;
}

.market_price_Wrap table tbody tr td {
  width: 50%;
  padding: 1rem;
  border: #017502 solid 1px;
}

@media (max-width: 680px) {
  .market_price_Wrap {
    padding: 0;
  }

  .works_h2 {
    padding-top: 80px;
  }

  .works_h2::before {
    width: 65px;
    height: 70px;
  }

  .w_topTitle1::after {
    width: 30px;
    height: 4px;
  }

  .flow_div1 {
    width: 100%;
    padding: 30px 20px 30px;
    margin: 0;
  }
}

/* 20240821 */
.contactbo{
  display: flex;
}
.contactbo .h_contact_btn{
  display: contents;
}
.contactbo .h_contact_btn img{
  height: 45px;
  margin: 0 0 0 5px;
}
.gnav .link1{
  padding: 0 10px;
}

/* 20250217追記 */
.jisseki_slide .slick-slide img {
  display: block;
  position: absolute;
  width: 100%;
  height: 145px;
  padding: 0 31px 0 1px;
  object-fit: cover;
}

.jisseki_inner {
  position: relative;
  background: #fff;
}

@media (max-width: 680px) {
  .jisseki_slide .slick-slide img {
    height: 160px;
  }
}

/* 20250313追記 */
.hitaisyouWrap {
  padding: 58px 20px 98px;
  max-width: 930px;
  margin: auto
}
.hitaisyou_h3 {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 40px;
}
.hitaisyou_h4 {
  font-weight: bold;
  margin-bottom: 20px;
}
.hitaisyouWrap p {
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 2.17;
  margin: 35px auto;
}
.hitaisyou_ul1 { 
  margin: 0 auto;
  font-weight: bold;
  list-style: disc;
  list-style-position: inside;
}
.hitaisyouWrap p a {
  text-decoration: underline;
}
@media (max-width: 680px) {
  .hitaisyou_h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  .hitaisyou_ul1 { 
    width: 100%;
  }
  .hitaisyouWrap p {
    font-size: 15px;
    letter-spacing: 0.025em;
    line-height: 1.86;
    width: 100%;
    margin-top: 20px;
	}
}

.mainstore_info {
	text-align: center;
	margin-top: 30px;
}

.footer-info {
  margin: 50px auto 0;
  width: 95%;
  max-width: 600px;
}

@media (max-width: 680px) {
  .footer-info {
    font-size: 14px;
  }
}
/* 20250519 */
.top-attention.teiji_p1{
  color: red;
  padding: 1rem;
  border: 1px solid red;
}
@media (max-width: 680px) {
.top-attention.teiji_p1{
  margin-bottom: 1rem;
}
}

/* 20250520 */
@media (max-width: 680px) {
  .top-attention.teiji_p1{
    font-size: 12px;
  }
}

/* 20250521 */
 @media(max-width:680px) {
  .teiji_slide .slick-prev,
  .teiji_slide .slick-next {
    width: 28px;
    height: 28px;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;
    top: 60%;
  }
  .teiji_slide .slick-prev:hover,
  .teiji_slide .slick-prev:focus,
  .teiji_slide .slick-next:hover,
  .teiji_slide .slick-next:focus {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .works_slide .slick-prev,
  .works_slide .slick-next {
    width: 28px;
    height: 28px;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;
    top: 42%;
  }
  .works_slide .slick-prev:hover,
  .works_slide .slick-prev:focus,
  .works_slide .slick-next:hover,
  .works_slide .slick-next:focus {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .works_slide .slick-slide {
    padding: 0px 10px 40px;
  }
}

/* 20250703 修正ここから：LINE削除 */
.w_bnr1.con_bnr {
    max-width: 550px;
}
/* 修正ここから：LINE削除 */

/* 20250902 ムービー集説明文 */
.movieWrap .sub-lead {
  text-align: center;
  padding: 25px 0 0;
}
@media (max-width: 680px) {
  .movieWrap .sub-lead {
    padding: 25px 20px 0;
  }
}

/* 20251106 サイト共通で全国対応の文言追加  */
.footer__area-txt{
  text-align: center;
  font-weight: 500;
  margin-top: -30px;
  margin-bottom: 50px;
  padding: 0 20px;
}
@media (max-width: 680px) {
  .footer__area-txt {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
  }
}