main .bg01 {
  background-color: #F6F9FA;
  background-image: url(img/title-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}

main .sub-title h2 {
  font-size: 3.6rem;
  text-align: center;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 60px;
}

main .sub-title h2 span {
  font-size: 2.4rem;
  color: #90B3C7;
  display: block;
  font-weight: 400;
}

@media screen and (max-width:560px) {
  main .sub-title h2 {
    font-size: 2.6rem;
  }
  
  main .sub-title h2 span {
    font-size: 2.0rem;
  }
} 

.sub a {
  text-decoration: underline;
}



@media screen and (max-width:560px) {
  .sub {
    background-size: 40%;
  }  
} 

/* ---------------- パンクズ ------------------*/
.breadcrumb {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 140%;
  margin-top: 10px;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb .current-item {
  color: #06337A;
}

/* ---------------- パーツ01 ------------------*/
.parts01 {
  padding-top: 90px;
  padding-bottom: 80px;
}

.parts01 .sub__btn a {
  color: #06337A;
  line-height: 100%;
  width: fit-content;
  display: block;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 100%;
  padding: 14px 14px 16px 14px;
  text-decoration: none;
  transition: all .5s;
  margin-top: 25px;
  margin-right: 15px;
}

.parts01 .sub__btn a:hover {
  background-color: #249CF1;
  color: #fff;
}

.parts01 .sub__btn .mail {
  background-image: url(img/h-mail.png);
  background-repeat: no-repeat;
  background-position: left top 5px;
  padding-left: 25px;
  transition: all .5s;
}

.parts01 .sub__btn .pdf {
  background-image: url(img/h-pdf.png);
  background-repeat: no-repeat;
  background-position: left top 1px;
  padding-left: 25px;
  transition: all .5s;
}

.parts01 .sub__btn a:hover .mail {
  background-image: url(img/h-mail-hv.png);
}

.parts01 .sub__btn a:hover .pdf {
  background-image: url(img/h-pdf-hv.png);
}

.parts01 h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 100%;
  margin-bottom: 25px;
  line-height: 1.2;
}

.parts01 h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 17px;
}

.parts01 p {
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .parts01 {
    padding-bottom: 5em;
  }

  .parts01 .sub__btn a::after {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 560px) {
  .parts01 {
    padding-top: 9em;
    padding-bottom: 3em;
  }

  .parts01 .sub__btn a {
    padding: 13px 1em 15px 1em;
    margin: 0 auto 10px;
  }

  .parts01 .sub__btn a::after {
    font-size: 1.6rem;
  }

  .parts01 h2 {
    font-size: 2.6rem;
    margin-bottom: 0.5em;
  }
  
  .parts01 h3 {
    font-size: 1.8rem;
    line-height: 1.6;
  }

  .parts01 p {
    font-size: 1.4rem;
    margin-bottom: 2em;
  }

  .parts01 .fl {
    display: block;
  }
}



/* ---------------- 2つ並びBOX ------------------*/
.box2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
  justify-content: center;
  gap: 36px;
  margin-top: 28px;
}

.box2 .box2__box {
  border-radius: 10px;
  border: 1px solid #E1E1E1;
  overflow: hidden;
}

.box2 .box2__box a {
  display: block;
}

.box2 .box2__box a:hover h3 {
  transition: 0.5s;
  color: #249CF1;
}

/* 画像ラッパーにoverflow:hidden */
.box2 .box2__box .img-wrap {
  overflow: hidden;
}

.box2 .box2__box img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .6s ease; 
  transform-origin: center top;
}

/* hover時はimgだけをズーム */
.box2 .box2__box a:hover .img-wrap img {
  transform: scale(1.1);
}

.box2 .box2__box h3 {
  text-align: center;
  margin: 25px;
}

.box2 .box2__box p {
  padding: 0 40px 32px;
  line-height: 2;
}

.box2 .box2__box .bg_color {
  background: #249CF1;
}

.box2 .box2__box .btn a {
  display: block;
  font-weight: 600;
  font-size: 2.0rem;
  width: 100%;
  max-width: 400px;
  background: linear-gradient(to left, #249CF1 50%, #172C7C 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #fff;
  margin: 0 auto;
  border-radius: 40px;
  padding: 15px;
  text-align: center;
  transition: background-position 0.2s ease-in-out;
}

.box2 .box2__box .btn a:hover {
  background-position: left bottom;
}

.box2 .box2__box:last-child {
  border-radius: 10px;
  border: none;
  text-align: center;
  display: flex; /* table → flex に変更 */
  align-items: center; /* 子要素を縦中央に配置 */
  justify-content: center; /* 子要素を横中央に配置（任意） */
  min-height: 460px; /* 高さを明示的に指定（必要に応じて調整） */
}

.box2 .box2__box .con {
  margin: 0 auto; /* 中央に寄せるための補足（任意） */
}

.box2 .box2__box .con p {
  font-weight: 600;
}

.box2 .box2__box .con p span {
  font-size: 2.0rem;
}


@media screen and (max-width: 1260px) {
  .box2 {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  
  .box2 .box2__box img {
    width: 100%;
  }
} 

@media screen and (max-width:560px) {
  .box2 {
    display: block;
  }

  .box2 .box2__box {
    margin-bottom: 2em;
}

  .box2 .box2__box h3 {
    margin: 15px 15px 10px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .box2 .box2__box p {
    padding: 0 15px 15px;
    line-height: 2;
  }

  .box2 .box2__box:last-child p {
    padding: 0 0 10px;
    line-height: 2;
  }

  .box2 .box2__box:last-child {
    display: block;
    min-height: auto;
  }

  .box2 .box2__box .con p {
    font-size: 1.2rem;
  }

  .box2 .box2__box .con p span {
    font-size: 1.8rem;
  }

  .box2 .box2__box .btn a {
    font-size: 1.8rem;
    padding: 10px;
  }
} 



/* ---------------- 3つ並びBOX ------------------*/
.box3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  justify-content: center;
  gap: 30px;
  margin-top: 28px;
}

/* 1つだけの時 */
.box3:has(> *:only-child) {
  justify-content: center;
}
.box3 > *:only-child {
  max-width: 380px;
}

/* 2つだけの時 */
.box3:has(> *:nth-child(2):last-child) {
  justify-content: center;
  grid-template-columns: repeat(2, minmax(340px, auto));
  gap: 40px;
}
.box3:has(> *:nth-child(2):last-child) > * {
  max-width: 380px;
}

.box3 a {
  text-decoration: none;
}

.box3 .box3__box {
  border-radius: 10px;
  border: 1px solid #E1E1E1;
  overflow: hidden;
}

.box3 .box3__box .text-area {
  padding: 25px 30px 30px 30px;
}

.box3 .box3__box a {
  display: block;
}

.box3 .box3__box a:hover h3 {
  transition: 0.5s;
  color: #249CF1;
}

/* 画像ラッパーにoverflow:hidden */
.box3 .box3__box .img-wrap {
  overflow: hidden;
}

.box3 .box3__box img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .6s ease; 
  transform-origin: center top;
}

/* hover時はimgだけをズーム */
.box3 .box3__box a:hover .img-wrap img {
  transform: scale(1.1);
}

.box3 .box3__box h3 {
  font-size: 1.6rem;
  line-height: 150%;
}

.box3 .box3__box span {
  font-size: 1.4rem;
  border: 1px solid #9F9F9F;
  padding: 2px 5px;
  margin-bottom: 5px;
}

.box3 .box3__box .btn a {
  display: block;
  font-weight: 600;
  font-size: 2.0rem;
  width: 100%;
  max-width: 400px;
  background: linear-gradient(to left, #249CF1 50%, #172C7C 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #fff;
  margin: 0 auto;
  border-radius: 40px;
  padding: 15px;
  text-align: center;
  transition: background-position 0.2s ease-in-out;
}

.box3 .box3__box .btn a:hover {
  background-position: left bottom;
}

.box3 .box3__box .con {
  margin: 0 auto; /* 中央に寄せるための補足（任意） */
}

.box3 .box3__box .con p {
  font-weight: 600;
}

.box3 .box3__box .con p span {
  font-size: 2.0rem;
}
@media screen and (max-width: 1260px) {
  .box3 {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    grid-gap: 30px;
  }

  .box3 .box3__box img {
    width: 100.5%;
  }
} 

@media screen and (max-width: 800px) {
  /* 2つだけの時 */
  .box3:has(> *:nth-child(2):last-child) {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    grid-gap: 30px;
  }
  .box3:has(> *:nth-child(2):last-child) > * {
    max-width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .box3 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 3em 0;
    padding-bottom: 3em;
    margin-bottom: 3em;
  }

  /* 1つだけの時 */
  .box3:has(> *:only-child) {
    justify-content: center;
  }
  .box3 > *:only-child {
    max-width: 100%;
  }

  /* 2つだけの時 */
  .box3:has(> *:nth-child(2):last-child) {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 3em 0;
    padding-bottom: 3em;
    margin-bottom: 3em;
  }

  .box3:has(> *:nth-child(2):last-child) > * {
    max-width: 100%;
  }
} 



/* ---------------- 画像左(画像が無い時text_area100％） ------------------*/
.l-img-con {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.l-img-con .text__area {
  width: fit-content;
}

.l-img-con .text__area h2{
  margin-top: -0.5em;
}

.l-img-con .image__area {
  width: 370px;
  margin-right: 50px;
}

.l-img-con .image__area_sp {
  display: none;
}

.l-img-con ul{
 font-weight: 600;
 margin-top: 0.7em;
 margin-bottom: 1em;
 font-size: 1.8rem;
}

.l-img-con ul li{
  padding-left: 1em;
  position: relative;
  line-height: 2;
}

.l-img-con ul li::before{
  content: "・";
  padding: 0px 3px;
  position: absolute;
  margin-left: -1.5em;
}

.l-img-con .image__area__sp {
  display: none;
}

@media screen and (max-width: 1260px) {
  .l-img-con .image__area {
    width: 80%;
    margin-left: 50px;
  }

  .l-img-con .image__area img {
    width: 100%;
  }

  .l-img-con ul{
    padding: 1em 1em 0.6em;
   }

  .l-img-con ul li{
    margin-bottom: 0.5em;
  }
}

@media screen and (max-width: 768px) {
  .l-img-con {
    display: block;
    width: 100%;
    padding-bottom: 2em;
    margin-bottom: 3em;
  }

  .l-img-con .text__area {
    margin-bottom: 3em;
  }

  .l-img-con .image__area {
    display: none;
  }

  .l-img-con .image__area_sp {
    display: block;
    width: 100%;
    margin-bottom: 2em;
  }

  .l-img-con .image__area_sp img {
    width: 80%;
    display: block;
    margin: 0 auto;
  }

  .l-img-con ul li::before{
    top: 0.1em;
  }
}

@media screen and (max-width: 560px) {
  .l-img-con {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}


/* ---------------- 横幅100%スライドショー ------------------*/
.slider_wrapper {
  max-width: 100%;
  margin-top: 40px;
}

.slider_wrapper .btn a {
  width: 240px;
  display: block;
  background: linear-gradient(to left, #172C7C 50%, #249CF1 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  border-radius: 30px;
  color: #fff;
  padding: 5px 30px 6px 30px;
  margin: 35px auto;
  text-align: center;
  font-weight: 500;
  transition: background-position 0.2s ease-in-out;
}

.slider_wrapper .btn a:hover {
  background-position: left bottom;
}

.slider-w100 .slider_inner {
  border: 1px solid #E4EBF6;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 20px;
  box-shadow: 2px 1px 10px -5px #777777;
}

.slider-w100 .slider_inner {
  border: 1px solid #E4EBF6;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 20px;
  box-shadow: 2px 1px 10px -5px #777777;
}

.slider-w100 .slider_inner h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333333;
}

.slider-w100 .slider_inner .img-wrap {
  overflow: hidden;
  border-radius: 10px 10px 0 0; /* imgと同じ角丸を継承 */
}

.slider-w100 .slider_inner img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
  transform-origin: center top;
}

.slider-w100 .slider_inner a:hover .img-wrap img {
  transform: scale(1.1);
}

.slider-w100 .slider_inner .slider_text {
  padding: 20px 30px;
}

.slider-w100 .slider_inner a:hover h3 {
  transition: 0.5s;
  color: #249CF1;
}


/* ---------------- アコーディオン　------------------*/
.accordion-con {
  max-width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: #fff;
}

.accordion-con summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 20px 10px 60px;
  color: #354C74;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.8rem;
}

.accordion-con summary span {
  padding-right: 2em;
}

.accordion-con summary span::before {
  content: "Q";
  font-size: 2.0rem;
  line-height: 180%;
  position: absolute;
  top: 17px;
  margin-top: -0.8rem;
  left: 10px;
  background-color: #354C74;
  color: #fff;
  border-radius: 50%;
  font-weight: 400;
  width: 40px;
  height: 40px;
  text-align: center;
}

.accordion-con summary::-webkit-details-marker {
  display: none;
}

.accordion-con summary::before,
.accordion-con summary::after {
  width: 2px;
  height: 1.1em;
  background-color: #354C74;
  content: '';
}

.accordion-con summary::before {
  position: absolute;
  right: 20px;
  rotate: 90deg;
}

.accordion-con summary::after {
  transition: rotate .3s;
}

.accordion-con[open] summary::after {
  rotate: 90deg;
}

.accordion-con .accordion__text {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 10px 4em 0.4em 60px;
  color: #333333;
  transition: transform .5s, opacity .5s;
  position: relative;
}

.accordion-con[open] .accordion__text {
  transform: none;
  opacity: 1;
}

.accordion-con .accordion__text::before  {
  content: "A";
  font-size: 2.0rem;
  line-height: 180%;
  position: absolute;
  top: 1em;
  margin-top: -1.2rem;
  left: 10px;
  background-color: #474747;
  color: #fff;
  border-radius: 50%;
  font-weight: 400;
  width: 40px;
  height: 40px;
  text-align: center;
}

.accordion-con[open] .accordion__text p {
  margin-bottom: 20px;
}

.accordion-con .accordion__text ul {
  font-weight: 600;
  margin-bottom: 20px;
}

.accordion-con .accordion__text ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.accordion-con .accordion__text ul li::before {
  content: "・";
  padding: 0px 3px;
  font-size: 15px;
}

.accordion-con .accordion__text a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .top-five .faq {
    padding: 40px 40px 10px 40px;
  }
}

@media screen and (max-width: 560px) {
  .accordion-con {
    margin-bottom: 15px;
  }
  
  .top-five .faq {
    padding: 15px 15px 5px 15px;
  }

  .accordion-con summary {
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 10px 20px 10px 50px;
  }

  .accordion-con .accordion__text {
    padding: 10px 4em 0.4em 50px;
  }

  .accordion-con summary span::before {
    content: "Q";
    font-size: 1.8rem;
    top: 18px;
    line-height: 1.4;
    width: 30px;
    height: 30px;
  }

  .accordion-con .accordion__text::before  {
    content: "A";
    font-size: 1.8rem;
    top: 1.2em;
    line-height: 1.4;
    width: 30px;
    height: 30px;
  }
}


/* ---------------- テーブルパターン1 ------------------*/
.table-pattern01 table {
  width: 100%;
  border-top: 1px solid #E3E4E4;
}

.table-pattern01 table tr{
  border-bottom: 1px solid #E3E4E4;
}

.table-pattern01 table th {
  width: 275px;
  text-align: left;
  color: #354C74;
  padding: 32px 0 28px 0;
  font-weight: 700;
}

.table-pattern01 table td {
  padding: 32px 0 28px 0;
}

.table-pattern01 table td li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 9px;
  line-height: 1.8;
}

.table-pattern01 table td li::before {
  content: "●";
  font-size: 1.3rem;
  top: 0.25em;
  position: absolute;
  margin-left: -1.5em;
  padding: 0px 3px;
}

@media screen and (max-width: 768px) {
  .table-pattern01 table th {
    font-size: 1.8rem;
    width:30%;
    padding: 30px 30px 30px 0;
  }

  .table-pattern01 table td {
    width:70%;
  }
}

@media screen and (max-width: 560px) {
  .table-pattern01 table th {
    width:100%;
    display: block;
    padding: 1em 1em 0.5em 0;
  }

  .table-pattern01 table td {
    width:100%;
    display: block;
    padding: 0 0 1em 0;
  }
}

/* ---------------- ページお問い合わせ ------------------*/
.page-contact {
  background-color: #B8E5F8;
  padding: 80px 0;
}

.page-contact .page-contact_con {
  background-color: #fff;
  border-radius: 10px;
  padding: 32px;
}

.page-contact .page-contact_con .page-contact_text {
  margin-left: 60px;
}

.page-contact .page-contact_con .page-contact_text h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: -14px;
  margin-bottom: 10px;
}

.page-contact .page-contact_con .page-contact_text p {
  line-height: 2;
}

.page-contact_text .btn a {
  width: 300px;
  display: block;
  background-color: #354C74;
  border-radius: 30px;
  color: #fff;
  padding: 5px 30px 6px 30px;
  margin-top: 18px;
}

.page-contact_text .btn a:hover{
  display: block;
  color: #354C74;
  background: #F3DA45;
 }

 @media screen and (max-width: 1260px) {
  .page-contact .page-contact_con .img {
    width: 40%;
  }

  .page-contact .page-contact_con .img img {
    width: 100%;
  } 
}

@media screen and (max-width: 768px) {
  .page-contact .page-contact_con .page-contact_text h3 {
    line-height: 1.6;
  }

  .page-contact .page-contact_con .img {
    display: none;
  }

  .page-contact .page-contact_con .page-contact_text {
    margin-left: 0;
  }

  .page-contact_text .btn a {
    margin: 18px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .page-contact .page-contact_con .page-contact_text h3 {
    font-size: 2.0rem;
    line-height: 1.6;
  }
}




/* ============ 採用情報  ============ */
.recruit-box:nth-child(odd) {
  padding: 100px 0;
  background-image: url("img/bg03.png");
  background-repeat: no-repeat;
  background-position: right top;
}

.recruit-box:nth-child(even) {
  padding: 100px 0;
  background-color: #FAFAFA;
  background-image: url(img/bg07.png);
  background-repeat: no-repeat;
  background-position: left top;
}

.recruit-box#ref_1 {
  background-image: none !important;
}

.recruit-box h3 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 35px;
}

.recruit-box a {
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 100%;
  background-color: #F3DA45;
  display: block;
  color: #354C74;
  text-align: center;
  font-weight: 700;
  border-radius: 30px;
  padding: 15px;
  width: 300px;
  transition: all .5s;
  margin: 40px auto 0 auto;
}

.recruit-box a:hover{
  display: block;
  color: #fff;
  background: #354C74;
 }

 @media screen and (max-width:560px) {
  .recruit-box:nth-child(odd) {
    padding: 5em 0;
    background-size: 40%;
  }
  
  .recruit-box:nth-child(even) {
    padding: 5em 0;
    background-size: 40%;
  }

  .recruit-box h3 {
    font-size: 2.2rem;
  }

  .recruit-box a {
    font-size: 1.8rem;
  }
  
} 
/* ---------------- ページスクロールボタン2横並び ------------------*/
.page-btn {
  padding-top: 150px;
}

.page-btn ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
}

.page-btn ul li {
  margin: 0 10px 20px 10px;
  width: 50%;
  max-width: 500px;
}

.page-btn ul li a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  background-color: #354C74;
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 30px;
  padding: 15px;
  width: 100%;
  transition: all .5s;
}

.page-btn ul li a:hover{
  display: block;
  color: #354C74;
  background: #F3DA45;
 }

 @media screen and (max-width: 1200px) {
  .page-btn ul {
    max-width: 100%;
    width: 100%;
  }

  .page-btn ul li {
    margin: 10px 1%;
    max-width: 48%;
  }
}

@media screen and (max-width: 560px) {
  .page-btn {
    padding-top: 5em;
  }

  .page-btn ul li {
    margin: 0 0 1em 0;
    width: 100%;
    max-width: 100%;
  }
}




/* ============ 導入実績 ============ */
.work {
  padding: 140px 0;
}

.work-others {
  padding: 140px 0;
  background-color: #FAFAFA;
  background-image: url(img/bg07.png);
  background-repeat: no-repeat;
  background-position: left top;
}

@media screen and (max-width: 560px) {
  .work {
    padding: 5em 0;
  }
  
  .work-others {
    padding: 5em 0;
    background-size: 40%;
  }
}

/* ---------------- 導入事例用画像左(画像が無い時text_area100％） ------------------*/
.work .l-img-con {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5em;
}

.work .l-img-con:last-child {
  margin-bottom: 0;
}

.work .l-img-con img {
  border-radius: 12px;
}

.work .l-img-con .text__area {
  width: fit-content;
}

.work .l-img-con .image__area {
  width: 370px;
  margin-right: 60px;
}

.work .l-img-con .image__area_sp {
  display: none;
}

.work .l-img-con h3 {
  color: #354C74;
  background-color: #F3DA45;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 7px 20px;
  margin-bottom: 30px;
 }

 .work .l-img-con table {
  width: 100%;
 }

 .work .l-img-con table th {
  font-size: 1.8rem;
  font-weight: 700;
  color: #354C74;
  width: 100px;
  text-align: left;
  vertical-align: top;
  padding: 25px 0;
 }

 .work .l-img-con table td {
  padding: 25px 0;
 }

 .work .l-img-con table tr {
  border-bottom: 1px solid #E3E4E4;
 }

 .work .l-img-con ul{
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.6rem;
}

.work .l-img-con ul li{
  position: relative;
  line-height: 1.8;
}

.work .l-img-con ul li::before{
  content: "●";
  padding: 0px 3px;
  font-size: 12px;
  top: 0.3em;
  position: absolute;
  margin-left: -1.5em;
}

@media screen and (max-width: 1000px) {
  .work .l-img-con .image__area {
    width: 80%;
    margin-left: 50px;
  }

  .work .l-img-con .image__area img {
    width: 100%;
  }

  .work .l-img-con ul{
    padding: 1em 1em 0.6em;
   }

   .work .l-img-con ul li{
    margin-bottom: 0.5em;
  }
}

@media screen and (max-width: 768px) {
  .work .l-img-con {
    display: block;
    width: 100%;
    padding-bottom: 2em;
    margin-bottom: 3em;
  }

  .work .l-img-con .image__area {
    display: none;
  }

  .work .l-img-con .image__area_sp {
    display: block;
    width: 60%;
    margin: 2em auto;
  }

  .work .l-img-con .image__area_sp img {
    width: 100%;
  }

  .work .l-img-con ul li::before{
    top: 0.1em;
  }

  .work .l-img-con .text__area {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 560px) {
  .work .l-img-con {
    padding-bottom: 0;
    margin-bottom: 5em;
  }

  .work .l-img-con h3 {
    font-size: 2rem;
    line-height: 1.6;
   }

   .work .l-img-con table th {
    display: block;
    width: 100%;
    padding-bottom: 0;
   }
  
   .work .l-img-con table td {
    display: block;
    width: 100%;
    padding-top: 0;
   }

  .work .l-img-con ul {
    padding: 1em 0.7em 0.6em 0.2em ;
  }

  .work .l-img-con ul li::before{
    top: 0.3em;
  }
}

/* ---------------- 導入事例用3つ並びBOX ------------------*/
.work-others .box3 {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.work-others .box3 .box3__box h3 {
  text-align: left;
}

.work-others .box3__box img {
  border-radius: 10px 10px 0 0;
}





/* ============ サービス ============ */
.service-box:nth-child(odd) {
  padding: 140px 0;
  background-image: url("img/bg03.png");
  background-repeat: no-repeat;
  background-position: right top;
}

.service-box:nth-child(even) {
  padding: 140px 0;
  background-color: #FAFAFA;
  background-image: url(img/bg07.png);
  background-repeat: no-repeat;
  background-position: left top;
}

.service-box:nth-child(3){
  padding: 140px 0;
  background-image: url(img/bg05.png);
  background-repeat: no-repeat;
  background-position: right top;
}

.service-box#ref_1 {
  background-image: none !important;
}

.service-box h3 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 45px;
  line-height: 1;
}

.service-box h4 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #354C74;
}

 @media screen and (max-width:560px) {
  .service-box:nth-child(odd) {
    padding: 5em 0;
    background-size: 40%;
  }
  
  .service-box:nth-child(even) {
    padding: 5em 0;
    background-size: 40%;
  }

  .service-box h3 {
    font-size: 2.2rem;
    line-height: 1.4;
  }

  .service-box h4 {
    font-size:1.8rem;
  }
  

  .service-box a {
    font-size: 1.8rem;
  }
  
} 
/* ---------------- ページスクロールボタン4横並び ------------------*/
/*採用情報で仕様しているページスクロールボタン2横並びのコードの一部を変更*/
.page-btn.four ul {
  max-width: 1200px;
  flex-wrap: wrap;
}

.page-btn.four ul li {
  margin: 0 10px 20px 10px;
  width: 25%;
  max-width: 280px;
}

@media screen and (max-width:1260px) {
  .page-btn.four ul li {
    margin: 0 0 20px 0;
    width: 23%;
  }
}

@media screen and (max-width:560px) {
  .page-btn.four ul li {
    width: 48%;
  }
}

/* ---------------- 画像右(画像が無い時text_area100％） ------------------*/
.r-img-con {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.r-img-con .text__area {
  width: fit-content;
}

.r-img-con .image__area {
  width: 370px;
  margin-left: 50px;
}

.r-img-con .image__area_sp {
  display: none;
}

.r-img-con ul{
  margin-top: 15px;
 margin-bottom: 40px;
}

.r-img-con ul li{
  padding-left: 1em;
  position: relative;
}

.r-img-con ul li::before{
  content: "●";
  padding: 0px 3px;
  font-size: 12px;
  top: 0.25em;
  position: absolute;
  margin-left: -1.5em;
}

@media screen and (max-width: 1000px) {
  .r-img-con .image__area {
    width: 80%;
    margin-left: 50px;
  }

  .r-img-con .image__area img {
    width: 100%;
  }

  .r-img-con ul{
    padding: 1em 1em 0.6em;
   }

  .r-img-con ul li{
    margin-bottom: 0.5em;
  }
}

@media screen and (max-width: 768px) {
  .r-img-con {
    display: block;
    width: 100%;
    padding-bottom: 2em;
    margin-bottom: 3em;
  }

  .r-img-con .image__area {
    display: none;
  }

  .r-img-con .image__area_sp {
    display: block;
    width: 100%;
    margin-bottom: 2em;
  }

  .r-img-con .image__area_sp img {
    width: 100%;
  }

  .r-img-con ul li::before{
    top: 0.1em;
  }
}

@media screen and (max-width: 560px) {
  .r-img-con {
    padding-bottom: 1em;
  }

  .r-img-con ul {
    padding: 1em 0.7em 0.6em 0.2em ;
  }
}


/* ---------------- Google対策画像左(画像が無い時text_area100％） ------------------*/
/*TOPで仕様している画像左用のコードの一部を変更*/
.service-box .l-img-con {
  margin-top: 35px;
}

.service-box .l-img-con .image__area {
  margin-top: 15px;
}

.service-box .l-img-con ul li::before {
  content: "●";
  padding: 0px 3px;
  font-size: 12px;
  top: 0.6em;
  position: absolute;
  margin-left: -1.5em;
}

.service-box .l-img-con .text__area h4:last-of-type{
  margin-top: 35px;
}


/* ---------------- 対策内容3つ並びBOX  ------------------*/
/*TOPで仕様している3つ並びBOXコードの一部を変更*/
.service-box .box3 {
  margin-top: 50px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.service-box .box3 .box3__box__con {
  padding: 20px 25px;
}

.service-box .box3 .box3__box h3 {
  margin-bottom: 15px;
}


/* ---------------- サポート力画像左(画像が無い時text_area100％） ------------------*/
/*TOPで仕様している画像左用のコードの一部を変更*/
.service-box .l-img-con.second {
  margin-top: 35px;
}

.service-box .l-img-con.second .text__area {
  width: 828px;
}

.service-box .l-img-con.second .text__area h4:last-of-type{
  margin-top: 0;
}

.service-box .l-img-con.second .text__area h5 {
  font-weight: 600;
  font-size: 1.8rem;
  color: #354C74;
  border-left: 6px solid #354C74;
  padding: 5px 10px 7px 10px;
  line-height: 1;
  margin-top: 20px;
}

.service-box .l-img-con.second ul {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 0;
}

.service-box .l-img-con.second ul li {
  margin-bottom: 4px;
}

.service-box .l-img-con.second ul li::before {
  top: 0.4em;
}

@media screen and (max-width: 768px) {
  .service-box .l-img-con.second .text__area {
    width: 100%;
  }
}

/* ---------------- 導入事例スライドショー ------------------*/
/*TOPで仕様している画像左用のコードの一部を変更*/
.service-box .slider_inner h3 {
 line-height: 2;
}


/* ---------------- 料金 ------------------*/
.service-box .fee {
  margin-top: 10px;
}

.service-box .fee h5 {
  font-weight: 600;
  font-size: 2.0rem;
  color: #354C74;
  border-left: 6px solid #354C74;
  padding: 5px 10px 7px 10px;
  line-height: 1;
  margin-top: 40px;
  margin-bottom: 10px;
}

.service-box .fee ul {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.service-box .fee ul li {
  margin-bottom: 4px;
  padding-left: 1em;
  position: relative;
  line-height: 2;
}

.service-box .fee ul li::before {
  content: "●";
  padding: 0px 3px;
  font-size: 12px;
  top: 0.4em;
  position: absolute;
  margin-left: -1.8em;
}

.table_design {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  min-width: 700px;
  font-weight: bold;
  text-align: center;
  margin-top: 70px;
}
.table_design thead th {
  padding: 0.8em;
  border-right: 3px solid#fff;
}
.table_design td {
  color: #000;
  padding: 0.9em 1em;
  font-weight: 400;
}
.table_design thead th:not(:first-child) {
  background: #4D9BC1;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.8em 1em;
}
.table_design thead th span {
  font-size: .8rem;
}
.table_design thead th:nth-child(2) {
  background-color: #FF5400;
  position: relative;
}
.table_design thead th:nth-child(2)::before {
  content: '';
  width: 100%;
  height: 10px;
  position: absolute;
  background-color: #FF5400;
  left: 0;
  bottom: 100%;
}
.table_design thead th:nth-child(2)::after {
  content: '弊社の安心プラン';
  width: max-content;
  color: #FF5400;
  font-size: 1.6rem;
  padding: 0.1em 1em;
  background: #fff;
  border: 2px solid #FF5400;
  border-radius: 100vh;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.table_design tbody th, .table_design tbody td {
  border: 3px solid #fff;
}
.table_design tbody th {
  background-color: #F4F4F4;
  color: #182128;
}
.table_design tbody td {
  background-color: #e6f1f6;
}
.table_design td:nth-child(2) {
  color: #FF5400;
  background: #FFF6EC;
  font-weight: 600;
}
.table_design td:hover {
    transform: scale(1.02);
    outline: 2px solid #4d9bc1;
}
.table_design td:nth-child(2):hover {
    transform: scale(1.02);
    outline: 2px solid #FF5400;
}
@media screen and (max-width: 787px) {
  .table-scroll {
    overflow-x: auto;
  }
}

/* ---------------- 流れ ------------------*/
.service-box .flow_box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.service-box .flow_img img {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 65px;
}

.service-box .flow_box .l-img-con .image__area {
  width: 260px;
  margin-right: 40px;
}

.service-box .flow_box .l-img-con.second {
  margin-top: 0;
  margin-bottom: 60px;
}



/* ============ プライバシーポリシー ============ */
.privacy {
  margin: 140px 0;
}

.privacy dl {
  margin-top: 4em;
}

.privacy dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.privacy dd {
  margin-bottom: 4em;
}

.privacy ul{
  font-weight: 600;
  margin-top: 0.7em;
  margin-bottom: 1em;
 }
 
 .privacy ul li{
   padding-left: 1em;
   position: relative;
   line-height: 2;
 }
 
 .privacy ul li::before{
   content: "・";
   padding: 0px 3px;
   position: absolute;
   margin-left: -1.5em;
 }

@media screen and (max-width: 560px) {
  .privacy {
    margin: 5em 0;
  }

  .privacy dt {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }

  .privacy dd {
    margin-bottom: 3em;
  }
}



/* ============ 会社概要 ============ */
.name {
  text-align: right;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  font-size: 2.0rem;
  margin-top: 12px;
}

.company {
  margin-top: 160px;
}

.company:last-child {
  margin-bottom: 160px;
}

.company.table-pattern01 table {
  width: 490px;
  border-top: none;
}

.company.table-pattern01 table th {
  width: 165px;
  padding: 9px 25px;
  color: #333;
}

.company.table-pattern01 table td {
  padding: 9px 0;
}

.company .r-img-con .image__area {
  width: auto;
}

.company .map iframe {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 35px;
}

.company .map .map01 {
  margin-right: 35px;
  background-image: url(img/map01.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}

.company .map .map02 {
  margin-right: 35px;
  background-image: url(img/map02.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}

.company .map .map03 {
  background-image: url(img/map03.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 45px;
}

.company .map a {
  margin-top: 35px;
  display: block;
  background-color: #06337A;
  padding: 12px 5px 12px 40px;
  color: #fff;
  text-decoration: none;
  background-image: url(img/catalog_bg.png);
  background-position: left 15px top 22px;
  background-repeat: no-repeat;
  font-size: 2.0rem;
  border-radius: 5px;
  transition: all .5s;
  width: 420px;
}

.company .map a:hover  {
  background-color: #249CF1;
}

@media screen and (max-width: 1260px) {
  .company .nbr {
    display: none;
  }

  .company .r-img-con .image__area img {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {

  .company .r-img-con {
    display: block;
  }

  .company.table-pattern01 .text__area {
    width: 100%;
  }

  .company.table-pattern01 table {
    width: 100%;
    margin-bottom: 3em;
  }

  .company.table-pattern01 .image__area {
    margin-left: 0;
  }

  .company .fl {
    display: block;
  }

  .company .map .map01 {
    margin-bottom: 1em;
    padding-left: 45px;
  }

  .company .map .map02 {
    margin-bottom: 1em;
    padding-left: 45px;
  }
}

@media screen and (max-width: 768px) {
  .company {
    margin-top: 80px;
  }
  
  .company:last-child {
    margin-bottom: 80px;
  }

  .company.table-pattern01 .image__area {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .company.table-pattern01 table th {
    width: 100%;
    padding: 9px 0 0 0;
    color: #333;
  }
  
  .company.table-pattern01 table td {
    padding: 0 0 9px 0;
  }

  .company .map iframe {
    border-radius: 10px;
  }
}



/* ============ お問い合わせ ============ */
.contact {
  margin: 140px 0;
}

.contact label {
  width: 50%;
}

.contact table {
  width: 100%;
  margin-bottom: 3em;
}

.contact th {
  font-weight: 700;
  line-height: 100%;
  padding: 2em 1em;
  font-size: 1.8rem;
  text-align: left;
}

.contact tr {
  border-bottom: 1px solid #ccc;
}

.contact th span {
  font-weight: 600;
  margin-left: 1em;
  color: #fff;
  background-color: #172740;
  border-radius: 5px;
  font-size: 1.2rem;
  line-height: 100%;
  padding: 0.3em 0.8em 0.5em 0.8em;
  height: 20px;
}

.contact th span.hi02{
  background-color: #474747;
}

.contact td {
  padding: 2em 1em;
}

.contact td {
  width: 800px;
  padding-bottom: 35px;
}

.contact input {
  font-size: 1.6rem;
  background-color: #F2F2F2;
  padding: 1.1em;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: none;
  border: solid 1px #F2F2F2;
  margin: 0.5em 0;
  border: 1px solid #ccc;
}

.contact textarea {
  font-size: 1.6rem;
  background-color: #F2F2F2;
  padding: 1.1em;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: none;
  border: 1px solid #ccc;
}

.contact select {
  font-size: 1.6rem;
  background-color: #F2F2F2;
  padding: 1.1em;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: none;
  border: solid 1px #F2F2F2;
}

.contact label {
  display: table;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

input.check[type=checkbox] {
	width: 15px;
	height: 15px;
	-moz-transform: scale(1.4);
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
  margin-right: 10px;
  vertical-align: -0.05em;
}

input.check[type=radio] {
	width: 15px;
	height: 15px;
	-moz-transform: scale(1.4);
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
  margin-right: 10px;
  vertical-align: -0.05em;
}

.contact .mfp_element_all {
  max-width: 100%;
}

.contact .contact__btn {
  text-align: center;
}

.contact .contact__btn input {
  font-size: 1.8rem;
  width: 300px;
  text-align: center;
  margin: 1em auto 0 auto;
  background-color: #F3DA45;
  color: #172740;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid#F3DA45;
  transition: all .5s;
}

.contact .contact__btn input:hover {
  border: 1px solid#F3DA45;
  background-color: #fff;
  color: #172740;
}

.contact .submit-btn input {
  border-radius: 5px;
  margin: 0 auto;
  display: block;
  width: 200px;
  font-weight: 500;
  border: 1px solid #ccc;
}

.contact .text-sub {
  margin-left: 5em;
  margin-bottom: 1em;
}


@media screen and (max-width: 1060px) {
  .contact th {
   display: block;
   text-align: left;
   padding: 2em 0 0.5em 0;
  }

  .contact th span {
    padding: 0.3em 0.8em 0.5em 0.8em;
  }
  
  .contact td {
    display: block;
    padding: 1em 0 2em 0;
    width: 100%;
  }

  .contact label {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .contact input {
    width: 100%;
  }

  .contact .text-sub {
    margin-left: 0;
  }
}

@media screen and (max-width: 560px) {
  .contact {
    margin: 5em 0;
  }
}


/* ============ 検索フォーム ============ */
#feas-searchform-0 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  margin: 30px 0;
  box-sizing: border-box;
}

.feas_archive_freeword {
  flex: 1;
  min-width: 200px;
  padding: 19px;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  box-sizing: border-box;
  outline: none;
}

.feas-submit-button {
  padding: 16px 38px;
  font-size: 1.8rem;
  background-color: #06337A;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .3s;
}

@media screen and (max-width: 560px) {
  .feas_archive_freeword {
    padding: 14px;
    height: 50px;
  }

  .feas-submit-button {
    padding: 12px 20px;
    font-size: 1.6rem;
    height: 50px;
  }
}


/* ============ お知らせ ============ */
.info_title {
  width: 195px;
}

.info_con {
  width: 900px;
  margin-top: -10px;
}

.info_con .info_list {
  border-bottom: 1px solid #DCDBDB;
  margin-bottom: 23px;
}

.info_con .info_list a {
  display: block;
  padding-bottom: 22px;
}

.info_con .info_list a:hover h3 {
  transition: 0.5s;
  color: #249CF1;
}

.info_con .info_list h3 {
  font-size: 1.6rem;
  color: #333;
  margin-top: 5px;
}

.info_con .info_list data {
  font-size: 1.4rem;
  font-weight: 600;
  margin-right: 0.8em;
}

.info_con .info_list .ca01 {
  background-color: #E68F00;
  color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 2px 10px 3px;
}

.info_con .info_list .ca02 {
  background-color: #06337A;
  color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 2px 10px 3px;
}

.info_title .btn a {
  width: 194px;
  border: 1px solid #06337A;
  display: block;
  background: linear-gradient(to left, #fff 50%, #06337A 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  border-radius: 30px;
  color: #06337A;
  padding: 5px 30px 6px 30px;
  margin: 35px auto;
  text-align: center;
  font-weight: 600;
  transition: background-position 0.2s ease-in-out;
}

.info_title .btn a:hover {
  background-position: left bottom;
  border: 1px solid #06337A;
  color: #fff;
}

.info  {
  margin-top: 160px;
  margin-bottom: 100px;
}

.info .info_con {
  width: 100%;
}

.info .info_con a {
  text-decoration: none;
}

.info .pagination {
  padding-bottom: 5em;
}

.info .btn a {
  width: 240px;
  display: block;
  background: linear-gradient(to left, #172C7C 50%, #249CF1 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  border-radius: 30px;
  color: #fff;
  padding: 5px 30px 6px 30px;
  margin: 35px auto;
  text-align: center;
  font-weight: 500;
  transition: background-position 0.2s ease-in-out;
}

.info .btn a:hover {
  background-position: left bottom;
}


@media screen and (max-width: 1200px) {
  .info_title {
    width: 25%;
  }

  .info_title .btn a {
    width: 100%;
  }
  
  .info_con {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .info  {
    margin-top: 80px;
    margin-bottom: 20px;
  }

  .info_title {
    width: 100%;
  }

  .info_title .btn a {
    width: 194px;
  }
  
  .info_con {
    width: 100%;
    margin-top: 1.5em;
  }
}

/* ---------------- ブログ詳細 ------------------*/
.blog_box {
  width: 100%;
}

.blog_box .sns-button-wrap {
  margin-bottom: 2em;
}

.blog_box p {
  margin-bottom: 1em;
}

.blog_box .blog_title data {
  font-size: 1.4rem;
  font-weight: 600;
}

.blog_box .blog_title data ul {
  display: flex;
  margin-bottom: 2em;
}

.blog_box .blog_title data ul li {
  display: flex;
}

.blog_box .blog_title data ul li a {
  background-image: url(img/category.svg);
  background-repeat: no-repeat;
  background-position: left 0.5em top 0.8em;
  background-size: 1em;
  padding: 0.2em 0.8em 0.2em 2em;
  display: inline-block;
  text-decoration: none;
}

.blog_box .blog_title h2 {
  font-size:4.2rem;
  line-height: 1.4;
}

.blog_box .blog_con h2 {
  font-size:3.4rem;
  margin-top: 2em;
  margin-bottom: 10px;
}

.blog_box .blog_con h3 {
  margin-top: 1em;
}

.blog_box .blog_con h4 {
  font-size:2.2rem;
  margin-top: 2em;
  margin-bottom: 10px;
  font-weight: 500;
  border-left: 3px solid #333;
  padding-left: 10px;
}

.blog_box .blog_con h5 {
  font-size:2.0rem;
  margin-top: 2em;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog_box .blog_con h6 {
  font-size: 1.8rem;
  margin-top: 2em;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog_box .blog_con a {
  text-decoration: underline;
}

.blog_box .blog_con ul {
  margin: 1em 0;
}

.blog_box .blog_con ul li{
  padding-left: 1.5em;
  position: relative;
  font-weight: 600;
}

.blog_box .blog_con ul li::before{
  content: "●";
  padding: 0px 3px;
  font-size: 10px;
  top: 0.7em;
  position: absolute;
  margin-left: -2.2em;
}

.blog_box .blog_con ol {
  margin: 1em 0;
  list-style-type: decimal;
  padding-left: 1.8em;
}

.blog_box .blog_con ol li {
  position: relative;
  font-weight: 600;
}

.blog_box .blog_con img {
  margin: 2em auto;
}

.blog_box .blog_con table {
  width: 100%;
  margin-bottom: 1em;
  border-top: 1px solid #E3E4E4;
}

.blog_box .blog_con table tr{
  border-bottom: 1px solid #E3E4E4;
}

.blog_box .blog_con table th {
  width: 275px;
  text-align: left;
  padding: 27px;
  font-weight: 700;
  background-color: #F4F4F3;
}

.blog_box .blog_con table td {
  padding: 27px;
  background-color: #fff;
}

.blog_box .blog_con .btn {
  margin: 5em auto;
}

.blog_box .blog_con .btn a {
  text-decoration: none;
}

.blog_side {
  width: 250px;
}

.blog_side h2 {
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 2em;
  margin-bottom: 0;
  padding-bottom: 5px;
  font-size: 2.0rem;
  border-bottom: 1px solid #585858;
}

.blog_side li {
  border-bottom: 1px solid #c9c9c9;
}

.blog_side li a {
  display: block;
  padding: 1em 10px;
  font-weight: 500;
  text-decoration: none;
}

.blog_side li a:hover {
  background-color: #f5f5f5;
}

#ez-toc-container {
  max-width: 600px;
  margin: 2em auto 0 auto;
}

#ez-toc-container nav {
  margin-top: 2em;
}

#ez-toc-container.ez-toc-container-direction {
  width: 100%;
  padding: 3em;
}

.ez-toc-title-container {
  text-align: center;
}


@media screen and (max-width: 1260px) {
  .blog_box .blog_title h2 {
    font-size:3.8rem;
  }

  .blog_box .blog_con h2 {
    font-size:3.0rem;
  }

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

@media screen and (max-width: 1100px) {
  .blog_box .blog_title h2 {
    font-size:2.8rem;
  }

  .blog_box .blog_con h2 {
    font-size:2.4rem;
  }

  .blog_box .blog_con h4 {
    font-size:2.0rem;
  }
}

@media screen and (max-width: 768px) {
  .blog_box {
    width: 100%;
  }

  .blog_side {
    display: none;
  }

  .blog_box .blog_con table th {
    width: auto;
    display: block;
    padding: 1em;
  }

  .blog_box .blog_con table td {
    width: auto;
    display: block;
    padding: 1em;
  }
}

@media screen and (max-width: 560px) {
  .blog_box .blog_title h2 {
    font-size: 2.4rem;
  }

  .blog_box .blog_con h2 {
    font-size:2.2rem;
  }

  .blog_box .blog_con h4 {
    font-size:1.8rem;
  }

  .blog_box .blog_con h6 {
    font-size: 1.6rem;
  }
} 

/* ---------------- ページ送り ------------------*/
.pagination,
.pagination ul,
.pagination li,
.pagination a {
    font-size: 100%
}

.pagination {
    margin: 0;
    width: 100%;
    text-align: center;
    clear: both;
    padding-bottom: 190px;
    margin-top: 6em;
}

.pagination ul {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    display: inline;
}

.pagination li {
    margin: 0.5%;
    padding: 0px;
    display: inline;
}

.pagination a {
    display: inline;
    padding: 1.2% 1.8%;
    width: 55px;
    height: 55px;
    margin: 0.4%;
    color: #474747;
    display: inline;
    font-weight: 400;
    text-align: center;
    border: 1.2px solid #e9e9e9;
    background-color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 50%;
}

.pagination li a:hover {
    text-decoration: underline;
    background-color: #fff;
    border-color: #FFE600;
    text-decoration: none;
    opacity: 1;
}

.paginationli.active_page a {
    border-color: #0F6247;
    background-color: #0F6247;
    color: #fff;
}

.pagination li.active_page a:hover {
    color: black;
    text-decoration: underline;
    color: #FFE600;
    text-decoration: none;
    opacity: 1;
}

.pagination .current {
    display: inline;
    padding: 1.2% 1.8%;
    margin: 0.4%;
    color: #fff;
    background-color: #249CF1;
    font-weight: 500;
    border: 1.2px solid #249CF1;
    border-radius: 50%;
}

@media screen and (max-width: 796px) {
  .pagination a {
        padding: 1.5% 2%;
    }
}

@media screen and (max-width: 560px) {
  .pagination {
    padding-bottom: 1em;
    margin-top: 0;
  }

  .pagination a {
    padding: 1.2% 2.8%;
  }

  .pagination .current {
    padding: 1.2% 2.8%;
  }
}


/* ---------------- 製品一覧 ------------------*/
.product-list {
  margin-top: -20px;
}

.product-list ul.product_category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  gap: 10px 25px;
  margin-bottom: 80px;
}

.product-list ul.product_category li {
  border-bottom: 1px solid #06337A;
}

.product-list ul.product_category li a {
  color: #06337A;
  text-decoration: none;
  display: block;
  font-weight: 500;
  background-image: url(img/product_category_bg.png);
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding: 9px 15px;
}

.product-list ul.product_category li a:hover {
  color: #fff;
  background-color: #06337A;
  background-image: url(img/product_category_bg02.png);
}


.product-list ul.product_category li.current a {
  color: #fff;
  background-color: #06337A;
  background-image: url(img/product_category_bg02.png);
}

.product-list .manufacturer {
  margin-top: 2em;
  padding-bottom: 80px;
  font-size: 1.5rem;
}

.product-list .manufacturer::after{
  content:"";
  display: block;
  width: 32%;
}

.product-list .manufacturer dl {
  width: 32.5%;
  margin-bottom: 1.5em;
}

.product-list .manufacturer dl dt{
  color: #06337A;
  font-weight: 700;
}

.product-list .manufacturer dl dt::before{
  content: "●";
  padding-right: 5px;
}

.product-list .manufacturer dl dd ul li::before{
  content: "・";
  padding-right: 5px;
}

@media screen and (max-width: 1000px) {
  .product-list .manufacturer dl {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .product-list .manufacturer dl {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .product-list .box3{
    margin-bottom: 10px;
  }

  .product-list {
    margin-top: 0;
  }

  .product-list .manufacturer {
    font-size: 1.4rem;
  }
  
}

/* ---------------- 製品詳細 ------------------*/
.product-main-img {
  padding: 75px 0 0 0;
}

.product-img {
  display: flex;
  justify-content: space-between;
}

.product-img .product_img_con {
  border-radius: 12px;
  width: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.product-img .product_img_con img {
  border-radius: 12px;
  border: 2px solid #E1E1E1;
}

.product-number {
  margin-bottom: 40px;
}

.product-number .table-pattern01 table {
  border-top: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
  border-left: 1px solid #E0E0E0;
}

.product-number .table-pattern01 th {
  background-color: #F6F6F6;
  color: #333333;
  padding: 15px 25px;
  font-weight: 600;
  position: relative;
}

.product-number .table-pattern01 th::after {
  content: ":";
  text-align: right;
  right: 25px;
  position: absolute;
}

.product-number .table-pattern01 td {
  padding: 15px 25px;
  font-weight: 500;
}

.product-box {
  margin-bottom: 180px;
}

.product-box .product_con {
  border: 1px solid #EDEDED;
  border-radius: 10px;
  padding: 40px;
}

.product-box .product_con .box {
  padding-bottom: 10px;
  margin-bottom: 45px;
  border-bottom: 1px solid #EDEDED;
}

.product-box .product_con .box:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.product-box .product_con .box h3 {
  color: #333333;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 100%;
}

.product-box .product_con .box p {
  margin-bottom: 1.5em;
}

.product-box .product_con .box table {
  border-top: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
  border-left: 1px solid #E0E0E0;
  margin-bottom: 30px;
  margin-top: 32px;
}

.product-box .product_con .box th {
  background-color: #F6F6F6;
  color: #333333;
  border-right: 1px solid #E0E0E0;
  padding: 18px 25px;
  font-weight: 600;
  position: relative;
  text-align: center;
  width: auto;
}

.product-box .product_con .box td {
  padding: 18px 25px;
  position: relative;
  text-align: center;
  border-right: 1px solid #E0E0E0;
}

.product-box .product_con .box tr:nth-child(odd) {
  background-color: #FCFBFB;
}

.product-box .product_con .box .btn a {
  background-color: #06337A;
  display: block;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 2.0rem;
  text-decoration: none;
  border-radius: 5px;
  padding: 10px 25px;
  margin-top: 10px;
  width: fit-content;
}

.product-box .product_con .box .btn a:hover {
  background-color: #249CF1;
}

.btn_list a {
  display: block;
  background-color: #dfdfdf;
  width: 260px;
  margin: 3em auto;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px;
}

.btn_list a:hover {
  background-color: #868686;
  color: #fff;
}

@media screen and (max-width: 1240px) {
  .product-img .product_img_con {
    width: 48%;
  }

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

  .product-box .product_con {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .product-main-img {
    padding: 4em 0 2em 0;
  }

  .product-number .table-pattern01 th {
    padding: 8px;
    font-size:1.6rem;
  }

  .product-number .table-pattern01 th::after {
    display: none;
  }

  .product-number .table-pattern01 td {
    padding: 8px;
  }

}

@media screen and (max-width: 560px) {
  .product-img .product_img_con {
    padding: 0;
  }

  .product-box .product_con .box .table-pattern01 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-box .product_con .box table {
    min-width: 787px;
  }

  .product-box .product_con .box th {
    display: table-cell;
    padding: 8px;
    font-size: 1.6rem;
  }

  .product-box .product_con .box td {
    width: auto;
    display: table-cell;
    padding: 8px;
  }

  .product-box .product_con .box h3 {
    font-size: 2.0rem;
  }

  .product-box {
    margin-bottom: 60px;
  }

  .product-box .product_con .box .btn a {
    font-size: 1.8rem;
    padding: 5px 15px;
    width: 100%;
  }
}


/* ---------------- カタログ ------------------*/
.catalog {
  margin-top: 150px;
}

.catalog-list ul {
  margin-top: -20px;
  padding-bottom: 170px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.catalog-list li {
  width: 48%;
  background-color: #06337A;
  max-width: 580px;
  margin-top: 40px;
  font-size: 2.0rem;
  border-radius: 5px;
  transition: all .5s;
}

.catalog-list li:hover  {
  background-color: #249CF1;
}

.catalog-list li a {
  display: block;
  padding: 12px 5px 12px 40px;
  color: #fff;
  text-decoration: none;
  background-image: url(img/catalog_bg.png);
  background-position: left 15px top 22px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1000px) {
  .catalog-list li {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .catalog {
    margin-top: 80px;
  }

  .catalog-list li {
    width: 100%;
    max-width: 100%;
    margin-top: 1em;
  }

  .catalog-list li a {
    background-position: left 15px top 18px;
  }

  .catalog-list ul {
    margin-top: -20px;
    padding-bottom: 60px;
  }
}

/* ---------------- 事業内容 ------------------*/
.business {
  margin-top: 150px;
  padding-bottom: 30px;
}

.business img {
  border-radius: 12px;
}

.business .t-con {
  margin-bottom: 120px;
}

.business .t-con h2 {
  text-align: center;
  margin-bottom: 20px;
}

.business .t-con h3 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.business .r-img-con {
  margin-bottom: 120px;
}

main .business .l-img-con h2 ,
main .business .r-img-con h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

main .business .l-img-con .text__area h2 {
  margin-top: 0;
}

main .business h3 {
  color: #249CF1;
  font-size: 2.0rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 15px;
}

.l-img-con .text__area h2 {
  margin-top: -0.5em;
}

.business .l-img-con .image__area {
  width: 400px;
  margin-right: 30px;
}

.business .r-img-con .image__area {
  width: 400px;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .business {
    margin-top: 80px;
    padding-bottom: 30px;
  }

  .business .t-con {
    margin-bottom: 80px;
  }

  .business .t-con h3 {
    font-size: 2.2rem;
    margin-bottom: 1em;
    line-height: 1.4;
  }
  
  main .business .l-img-con h2 ,
  main .business .r-img-con h2 {
    font-size: 2.2rem;
  }

  main .business h3 {
    margin-bottom: 1em;
    font-size: 1.8rem;
  }

  main .business .l-img-con .image__area_sp img {
    display: block;
    width: 100%;
    margin-bottom: 2em;
  }
}

@media screen and (max-width: 560px) {
  .business .t-con h3 {
    font-size: 2rem;
  }
}