@charset "utf-8";
/* BASE RESET
 * ----------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

/* Make webkit render the search input like a normal text field */
input[type="search"] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  aspect-ratio: attr(width) / attr(height);
  image-rendering: -webkit-optimize-contrast;
}

/* GENERAL
 * ----------------------------------------------- */
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  color: #000;
  /*font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;*/
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.625;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

/* Header
 * ----------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

*,
*:after,
*:before {
  box-sizing: border-box;
}

:root {
  --header-outer-height: 110px;
  --header-inner-height: 70px;
  --header-height-difference: calc(var(--header-outer-height) - var(--header-inner-height));
  --header-bg: #fff;
}

body {
  /*font-family: YakuHanJP, "DM Sans", sans-serif;*/
  background-color: #f2f5f7;
  line-height: 1.5;
  /*min-height: 300vh;*/
  position: relative;
}

.responsive-wrapper {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1280px) and (max-width: 1500px){
  .responsive-wrapper {
  width: 100%;
  padding:2%;
}
}


.header-inner.responsive-wrapper {
  max-width: 1800px;
}
section {
  padding: 140px 0;
}

.denho-video,
.denho-comic {
  margin-top: 120px;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .denho-video,
  .denho-comic {
    margin-top: 80px;  
  }
}
.area-bg-wh {
  background-color: #fff;
}
.section-ttl-en {
  font-size: 1.125rem;
  color: #92af75;
  font-weight: 600;
  display: block;
  text-align: center;
  padding-top: 2%;
  letter-spacing: 1.5px;
}
.section-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  color: #477a15;
  text-align: center;
  margin: 10px 0 60px 0;
  letter-spacing: 1.5px;
}

.section-sub-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  color: #477a15;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-ttl {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .section-sub-ttl {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

}



/* Sticky header */
.header-outer {
  /* Make it stick */
  height: var(--header-outer-height);
  position: sticky;
  top: calc(var(--header-height-difference) * -1); /* Multiply by -1 to get a negative value */
  display: flex;
  align-items: center;
  z-index: 999;

  /* Other */
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 990px) {
  .header-outer {
    height: 70px;
    top: 0;
  }
}

.header-inner {
  /* Make it stick */
  height: var(--header-inner-height);
  position: sticky;
  top: 0;

  /* Other */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Styling of other elements */
.header-logo img {
  display: block;
  /*height: calc(var(--header-inner-height) - 30px);*/
  height: calc(var(--header-inner-height) - 30px);
}

.header-navigation {
  display: flex;
  /* flex-wrap: wrap; */
}

.header-navigation a {
  font-size: 1.125rem;
  color: inherit;
  margin-left: 1.75rem;
  position: relative;
  font-weight: 500;
}

.header-navigation a {
  display: none;
  font-size: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.header-navigation a:hover:after {
  transform: scalex(1);
}

.header-navigation a:after {
  transition: 0.25s ease;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentcolor;
  transform: scalex(0);
  position: absolute;
  bottom: -2px;
  left: 0;
}
.widget {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.widget > * + * {
  margin-top: 1.25em;
}

.widget h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.widget code {
  display: inline-block;
  padding: 0.125em 0.25em;
  border-radius: 2px;
  background-color: #bee5d3;
}

.widget strong {
  font-weight: 700;
}

/* .header-navigation .header-btn {
  display: none;
} */

@media (min-width: 1316px) {
  .header-navigation a {
    display: inline-block;
  }
  .header-navigation .header-btn {
    display: inline-block;
  }
}

.header-logo a:hover {
  cursor: pointer;
}

.header-btn {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  background-color: #63ab1c;
  border-radius: 20px;
  border: none;
  padding: 10px 30px;
  transition: all 0.5s 0s ease;
}

.header-btn:hover {
  background-color: #76cb22;
  cursor: pointer;
}

@media (max-width: 1279px) {
  .header-btn {
    display: none;
  }
}


/* ハンバーガーメニュー
.menu-btn {
  position: fixed;
  top: 10px;
  right: 15px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #7cb545;
}
@media (min-width: 1316px) {
  .menu-btn {
    display: none;
  }
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); 
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #3584bb;
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; 
  z-index: 80;
  background-color: #7cb545;
  transition: all 0.5s; 
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; 
} */

/* メインビジュアル
================================= */
#area-1 {
  background-image: url(/img/top-bg-img-min.jpg);
  background-size: cover;
  height: 580px;
  position: relative;
}
#area-1 .top-filter {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 580px;
  background-image: url(/img/yokojima.png);
  background-repeat: repeat;
  z-index: 1;
}
#area-1 .top-left-wrapper {
  position: absolute;
  z-index: 3;
  color: #f5f5f5;
  left: 8%;
  top: 60px;
  width: 84%;
}
.top-txt-wrap {
  /*background-color: rgb(60, 122, 65, 0.56);*/
  /*background-color: #181a18;*/
  /*padding: 30px;*/
  /*border-radius: 10px;*/
}
.top-ttl {
  font-size: 2.2rem;
  filter: drop-shadow(0 0 4px #000);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0.4rem;
}
.top-txt {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 4px #000);
}

.top-txt-sub {
  font-size: 1rem;
  filter: drop-shadow(0 0 3px #000);
  /*color: #e69006;*/
  color: #f3f1bf;
}
.top-kv {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -60px;
  z-index: 2;
  overflow: hidden;
}
.top-kv img {
  width: 70%;
  float: right;
  min-width: 540px;
  margin-right: -40px;
}
.site-ttl {
  font-size: 1rem;
  display: block;
  color: #daf9bb;
  filter: drop-shadow(1px 1px 4px #000);
}
@media (max-width: 375px) {
  .top-txt {
    font-size: 1.1rem;
  }
  #area-1 .top-left-wrapper {
    position: absolute;
    z-index: 3;
    color: #f5f5f5;
    left: 8%;
    top: 60px;
    width: 94%;
  }
}
@media (min-width: 768px) {
  #area-1 {
    height: 660px;
  }
  #area-1 .top-filter {
    height: 660px;
  }
  #area-1 .top-left-wrapper {
    left: 8%;
    width: 38%;
    min-width: 680px;
  }
  .top-ttl {
    font-size: 2.64rem;
  }
  .top-txt {
    font-size: 1.875rem;
  }
  .top-kv {
    bottom: -80px;
  }
  .top-kv img {
    min-width: 900px;
    margin-right: -50px;
  }
}
@media (min-width: 992px) {
  #area-1 .top-left-wrapper {
    top: auto;
    /*bottom: 250px;*/
    bottom: 100px;
  }
}
@media (min-width: 1200px) {
}
/* denhoとはセクション
================================= */
#area-2,
#area-4,
#area-8,
#area-11 {
  background: url(/img/denho_bg_gray.png) no-repeat center top;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  #area-2 {
    background-size: 120%;
  }
}

.section-about-denho {
  display: flex;
  flex-direction: column;
}

.about-left {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-left .about-txt {
  color: #444;
  font-size: 1rem;
  line-height :1.75;
  letter-spacing: 1.5px;
}

.about-txt span {
  color: #477A15;
  font-weight: bold;
}


/* PC版での横並びレイアウト */
@media (min-width: 1025px) {
    .section-about-denho {
        flex-direction: row;
        align-items: center;
    }
    .about-right {
        margin-left: 50px;
        min-width: 450px;
        margin-top: 0;
    }
}


/* タブレット・PC版での横並びレイアウト */
@media (min-width: 769px) {
    .section-about-denho {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    .about-left {
        flex: 1; /* 柔軟な幅 */
    }
    .about-right {
        flex: 1; /* 柔軟な幅 */
        margin-left: 0;
        margin-top: 0;
        max-width: 500px; /* 画像エリアの最大幅を制限 */
    }
    .about-right img {
        max-width: 100%;
        height: auto;
    }
}

.about-left .about-txt p.scroll-infinity-txt {
  margin: 0;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

.about-right {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

/* PC版（1025px以上）でさらに調整 */
@media (min-width: 1025px) {
    .about-right {
        max-width: 600px; /* PCではもう少し大きく */
    }
}

/* スマホ版での縦並びレイアウト（画像が上、説明文が下） */
@media (max-width: 768px) {
  .section-about-denho {
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }
    
  .about-right {
    order: 1;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }
    
  .about-right img {
    max-width: 100%;
    height: auto;
  }
    
  .about-left {
    order: 2;
    width: 100%;
    margin-top: 30px;
  }
}
.section-video, .section-comic {
  text-align: center;
}
.section-video iframe {
  width: 90%;
  min-height: 300px;
  max-width: 800px;
  max-height: 450px;
  height: 50vh;
}

.cp_box1 {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
        
/*続きを読むボタンとテキストを隠すグラデーションの設定*/
.cp_box1 .cp_overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 300px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: linear-gradient(to bottom, rgba(242, 245, 247, 0) 0%, rgba(242, 245, 247, 0.95) 90%);
}
        
.cp_box1 .cp_container {
  overflow: hidden;
  height: 600px; /* 開く前に見えている部分の高さ */
}
        
/* 続きをよむボタン */
.cp_box1 .read_more_btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 15em;
  padding: 0.625rem 1rem;
  content: '続きをよむ';
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  background: #FFF; 
  border: 2px solid #666;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
        
.cp_box1 .read_more_btn:hover {
  background-color: #F4F4F4;
}

.cp_box1 .read_more_btn::after {
  content: "";
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    background: url(/img/arrow-right.svg) no-repeat center / 100%;
    width: 25px;
    height: 25px;
}

@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}

/* denho漫画（別ページ）
================================= */
.comic_area {
  max-width: 900px;
  margin: 0 auto;
}

.comic_area img:not(:first-child) {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .comic_area {
    padding: 0 15px;
  }

  .comic_area img:not(:first-child) {
  margin-top: 15px;
}
}

/* denho特徴セクション
================================= */
.item-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  color: #444;
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  letter-spacing: 1.5px;
}

.item-txt {
  color: #444;
  font-size: 1rem;
  font-weight: inherit;
  letter-spacing: 1.5px;
  line-height: 1.75
}
.text-wrap {
  width: 100%;
}
.item-thumb {
  width: 100%;
  margin-bottom: 20px;
}

.row-item {
  display: flex;
  margin-bottom: 100px;
  margin-top: 20px;
  flex-direction: column-reverse;
}

@media (min-width: 769px) {
  .row-item {
    margin-bottom: 100px;
    margin-top: 20px;
  }
  .row-item.item-normal {
    flex-direction: row;
    align-items: center;
  }
  .row-item.item-reverse {
    flex-direction: row-reverse;
    align-items: center;
  }
  .item-reverse .text-wrap {
    margin-left: 60px;
  }
  .item-normal .text-wrap {
    margin-right: 60px;
  }
  .text-wrap {
    width: 60%;
  }
  .item-thumb {
    width: 40%;
    margin-bottom: 0;
  }
}

@media (max-width: 638px) {
  .item-txt {
    font-size: 16px;  
  }
}
@media (min-width: 992px) {
  .item-ttl {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
}

/* Features
================================= */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

.sp-features {
  display: none;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-content {
  flex: 1;
  text-align: left;
}

.feature-number {
  display: inline-block;
  color: #56AB33;
  font-size: 2rem;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  line-height: 50px;
  margin-bottom: 20px;
}

.feature-image {
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;       
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.4;
}

.feature-title span {
  color: #477A15;
}

.feature-description {
  font-size: 1rem;
  font-weight: inherit;
  letter-spacing: 1.5px;
  line-height: 1.75;
}

.feature-description p {
  color: #444;
  margin: 0;
}

/* タブレット用調整 */
@media (max-width: 1024px) and (min-width: 769px) {
  .feature-card {
    padding: 40px;
    gap: 30px;
  }
  
  .feature-image {
    max-width: 400px;
  }
  
  .feature-description {
    font-size: 1.1rem;
  }
}

/* スマホ版（768px以下） */
@media (max-width: 768px) {
  .pc-features {
    display: none;
  }

  .sp-features {
    display: block;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 50px 40px;
  }

  .feature-card:not(:last-child) {
    margin-bottom: 25px;
  }
  
  .feature-content {
    display: flex;
    flex-direction: column;
  }

  .feature-number {
    order: 1;
    margin-bottom: 10px;
    font-size: 1.6rem;
    text-align: center;
  }

  .feature-title {
    order: 2;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
  }

  .feature-description {
    order: 4;
    text-align: left;
    margin-top: 20px;
    font-size: 16px;
  }
            
  .feature-image {
    order: 3;
    width: 100%;
    margin: 0 auto;
  }
}

/* Function
================================= */
.functions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.function-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.function-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.function-title {
  font-size: 1rem;
  font-weight: bold;
  color: #444;
  line-height: 1.75;
  letter-spacing: 1.5px;
  text-align: left;
  flex: 1;
}

 /* タブレット表示（1024px以下）：2列 */
@media (max-width: 1024px) {
  .functions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* スマホ表示（768px以下）：1列 */
@media (max-width: 768px) {
  .functions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
            
  .function-card {
    padding: 15px 25px;
  }
            
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

/* 機能ボタンエリア */
.function-button-area {
  text-align: center;
  margin-top: 50px;
}

.function-more-btn {
  position: relative;
  z-index: 2;
  /* max-width: 20em; を削除またはコメントアウト */
  min-width: 300px; /* 最小幅を設定してボタンを広く */
  padding: 0.625rem 3rem; /* 左右のパディングを増やす */
  font-size: 1.1rem;
  font-weight: bold;
  color: #444;
  background: #FFF; 
  border: 2px solid #666;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.function-more-btn:hover {
  background-color: #F4F4F4;
}

.function-more-btn::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  background: url(/img/arrow-right.svg) no-repeat center / 100%;
  width: 25px;
  height: 25px;
}

/* スマホ用改行 */
@media (max-width: 768px) {
  .function-button-area {
    margin-top: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .function-more-btn {
    width: 100%;
    max-width: none;
    min-width: auto; /* スマホでは最小幅をリセット */
    border-radius: 40px;
    padding: 0.625rem 1rem; /* スマホでは元のパディング */
  }
  
  .function-more-btn .sp-only {
    display: block;
  }
}

/* video
================================= */
.video-container {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .video-container {
    width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}

/* FAQ
================================= */
.faq-container {
  display: flex;
  flex-direction: column;
  max-width: 60%;
  margin: 0 auto;
}
.acd-check {
  display: none;
}
.acd-label {
  background: #63ab1c;
  color: #fff;
  display: block;
  padding: 10px;
}
.acd-label:hover,
.acd-label:active {
  background-color: #6ebd21;
}
.acd-content {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin-bottom: 4px;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: 0.5s;
  visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content {
  height: 40px;
  opacity: 1;
  padding: 10px;
  visibility: visible;
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}

/* DenHoとスマートOCR比較
================================= */
.comparison_img {
  background-color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .comparison_img {
    max-width: 85%;
    background-color: #fff;
    margin: 2% auto;
    text-align: center;
  }
  .comparison_img img {
    max-width: 55%;
  }
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}

/* 旧 お問い合わせボタン
================================= */

.old_contact-container {
  display: flex;
  flex-direction: column;
}
.old_contact-btn {
  display: block;
  width: 90%;
  padding: 16px 60px;
  margin: 20px auto;
  color: #fff;
  background-color: #63ab1c;
  border-radius: 10px;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.5s 0s ease;
}
.old_contact-btn:hover,
.old_contact-btn:active {
  background-color: #6ebd21;
}
.old_btn-wrap {
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  #area-9 {
    padding: 4% 0;
  }
  .old_contact-container {
    flex-direction: row;
  }
  .old_btn-wrap {
    text-align: center;
    /*width: 50%; 一時的に非表示*/
    padding: 0 20px;
  }
  .old_contact-btn {
    max-width: 460px;
    margin: 0 auto;
  }
}


/* 問い合わせ
================================= */
#area-9 {
  padding: 80px 0;
}

.contact-ttl {
  margin-bottom: 20px;
}

.contact-description {
  text-align: center;
  color: #444;
  font-size: 1rem;
  margin-bottom: 60px;
  line-height: 1.75;
  letter-spacing: 1.5px;
}

.contact-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.btn-wrap {
  flex: 1;
  max-width: 400px;
}

.contact-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 40px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  transition: all 0.3s ease;
  min-height: 80px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact-btn-trial {
  background-color: #F9A826;
}

.contact-btn-inquiry {
  background-color: #FFF;
  border: 2px solid #8CBE5B;
  color: #8CBE5B;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-btn-trial:hover {
  background-color: #FDB147;
}

.contact-btn-inquiry:hover {
  background-color: #F5FFF5;
  border: 2px solid #8CBE5B;
}

.contact-btn-icon {
  display: block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-btn-text {
  display: block;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

/* 右矢印アイコン */
.contact-btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(/img/arrow-right_orange.svg) no-repeat center / contain;
}

.contact-btn-inquiry::after {
  background: url(/img/arrow-right_green.svg) no-repeat center / contain;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
  
  .btn-wrap {
    max-width: 100%;
  }
  
  .contact-btn {
    min-height: 70px;
    padding: 15px 30px;
    font-size: 1.2rem;
  }
  
  .contact-btn-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .contact-btn::after {
    width: 25px;
    height: 25px;
    right: 20px;
  }
  
  .contact-description {
    font-size: 0.95rem;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}


/* 問い合わせ
================================= */

.cv {
  padding-bottom: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(247, 245, 240, 1) 30%, rgba(247, 245, 240, 1) 100%);
  overflow-x: hidden; /* 横スクロールを防ぐ */
}

.cv_inner {
  max-width: 700px;
  padding: 10px;
  margin: 0 auto;
  margin-top: 60px;
}

.cv_con01 {
  position: relative;
  padding: 10.77% 5.56% 9.73%;
}

.cv_con01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100vw; /* 1920px → 100vw に変更 */
  max-width: 100%; /* 追加 */
  height: 521px;
  background: url(/img/contact_green_bg.png) no-repeat left top / cover; 
}

.cv_con01_box {
  position: relative;
  z-index: 1;
  max-width: 475px;
  margin-right: auto;
}

.cv_con01::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: calc(5.56% + 475px);
  left: 35.54%;
  display: block;
  width: 850px;
  height: 523px;
  background: url(/img/denho-top-image.png) no-repeat bottom left / contain;
}

.cv_con01_box {
  position: relative;
  z-index: 1;
  max-width: 475px;
  margin-right: auto;
}

.cv_ttl {
  margin-bottom: 30px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.75;
}

.cv_ttl_en {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
  display: block;
  letter-spacing: 1.5px;
}

.cv_ttl_txt {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1.5px;
  line-height: 1.75;
}

.cv_btn_balloon {
  display: block;
  position: relative;
  z-index: 2;
  padding: 8px 20px 9px;
  width: max-content;
  margin: 0 auto -13px;
  background-color: #fff;
  border-radius: 30px;
  line-height: 1;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.cv_btn01 .cv_btn_balloon {
  border: 3px solid #63AB1C;
}

.cv_btn_balloon .green {
  color: #63AB1C;
}

.cv_btn_balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 7px 0;
  border-color: #fff transparent transparent transparent;
}

.cv_btn01 a {
  background: #63AB1C;
  position: relative;
  display: block;
  padding: 26px 30px;
  border-radius: 60px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.cv_btn01 a:hover {
  background-color: #76cb22;
  transform: translateY(-3px);
  cursor: pointer;
}

.cv_btn01 a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7.5%;
  transform: translateY(-50%);
  display: block;
  background: url(/img/contact_icon.svg) no-repeat center / contain;
}

.cv_btn01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background: url(/img/arrow-right_white.svg) no-repeat center / contain;
}

@media screen and (max-width: 1240px) {
  .cv_con01::after {
    left: 355px;
    bottom: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .inner {
    width: 100% !important;
  }
}

@media screen and (max-width: 1024px) {
  .cv_con01::after {
    left: 265px;
  }

  .cv_inner {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .cv_con01 {
    padding: 115px 5.35% 0;
  }

  .cv_con01::before {
    top: 0;
    left: auto;
    right: 0;
    transform: translateY(0);
    height: 517px;
  }

  .cv_con01_box {
    width: 100%;
    max-width: inherit;
    margin-bottom: 30px;
  }

    .cv_con01::after {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 53.4vw;  }

  .cv_inner {
    padding: 0 30px 0;
  }
}

@media screen and (max-width: 768px) {
  .cv_con01 {
    margin-bottom: 6%;
  }

  .cv_con01::before {
    top: 0;
    left: auto;
    right: 0;
    transform: translateY(0);
    height: 517px;
  }
  
  .cv_con01_box {
    width: 100%;
    max-width: inherit;
    margin-bottom: 30px;
    padding: 0;
  }

  .cv_inner {
    width: 100%!important;
    padding: 0 30px 0;
    margin-top: 0;
  }

  .cv_btnArea > [class*="cv_btn"] {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .cv_ttl {
    font-size: 1.5rem;
  }

  .cv_ttl_en {
    font-size: 1.125rem;
  }

  .cv_btn01 a {
    font-size: 1.3rem;
    padding: 15px 30px;
  }


}

@media screen and (min-width: 501px) {
  .cv .cv_btnArea > [class*="cv_btn"] {
    max-width: inherit;
  }
  .cv .cv_btn_balloon {
    padding: 11px 30px 12px;
    font-size: 1.2rem;
  }

  .cv .cv_btn01 a {
    padding: 34px 80px;
    font-size: 1.5rem;
    max-width: 440px;
    margin: 0 auto;
  }

  .cv .cv_btn01 a::before {
    width: 50px;
    height: 37px;
  }
}

@media screen and (max-width: 500px) {
  .cv_con01::before {
    left: 0%;
    width: 120vw;
  }

  .cv_con01_box {
    margin-bottom: 20px;
  }

  .cv_con01::after {
    width: 100%;
  }

  .cv_inner {
    padding: 0 20px 0;
  }
}

/* フッター
================================= */
.footer {
  position: relative;
  /*width: 100vw;*/
}
.footer_nav {
  background-color: #f5f5f5;
}
.footer_nav_content {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
}
.footer_nav_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
  border-top: 1px solid #cccccc;
}
.footer_nav_company {
  display: block;
  width: 100%;
  margin: 30px auto;
  text-align: center;
}
.footer_nav_company_logo {
  padding-bottom: 20px;
  text-align: center;
}
.footer_nav_company_logo_copy {
  font-size: 12px;
  font-weight: bold;
  padding-bottom: 5px;
}
.footer_nav_company_logo_image {
  max-width: 200px;
  margin: 0 auto;
}
.footer_nav_company_info_tel {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
.footer_nav_company_info_tel_num {
  font-size: 24px;
  font-weight: bold;
}
.footer_nav_company_info_tel_num > a {
  color: #222222;
}
.footer_nav_company_info_tel_time {
  padding-left: 20px;
  font-size: 12px;
  font-weight: bold;
}
.footer_nav_company_info_tel_num::before {
  content: "\f095";
  font: normal normal normal 20px FontAwesome;
  padding-right: 10px;
  font-size: 28px;
  vertical-align: middle;
}
.footer_nav_company_info_address {
  font-size: 12px;
}
.footer_nav_link {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
}
.footer_nav_link_column {
  padding-left: 0;
  margin-bottom: 5px;
  background-color: #f5f5f5;
}
.footer_nav_link_item {
  list-style-type: none;
  font-size: 12px;
  border-bottom: 1px solid #cccccc;
}
.footer_nav_link_item > a {
  display: block;
  color: #222222;
  padding: 16px;
  line-height: 1;
}
.footer_nav_link_item > a:hover {
  color: #999999;
  text-decoration: none;
}

@media (min-width: 768px) {
  .footer_nav_content {
    max-width: 990px;
    flex-direction: row;
    align-items: center;
    border-top: 0;
  }
  .footer_nav_company {
    width: 260px;
    text-align: left;
    padding-left: 15px;
    margin: 60px auto;
  }
  .footer_nav_company_logo {
    text-align: left;
  }
  .footer_nav_company_logo_image {
    margin: 0;
  }
  .footer_nav_company_info_address {
    font-size: 10px;
  }
  .footer_nav_link {
    width: calc(100% - 260px - 15px);
    padding-left: calc(100% - 260px - 15px - 480px);
    flex-direction: row;
    background: inherit;
  }
  .footer_nav_link_content {
    display: flex;
    flex: 1;
  }
  .footer_nav_link_item {
    font-weight: bold;
    border-bottom: none;
  }
  .footer_nav_link_item > a {
    padding: 10px 20px 10px 0;
  }
  .footer_nav_link_item > a::before {
    font-family: FontAwesome;
    content: "\f105";
    font-size: 12px;
    padding-right: 5px;
  }
  .footer_nav_link_item_icon {
    display: none !important;
  }
  .footer_nav_company_info_tel_num > a {
    pointer-events: none;
    cursor: text;
  }
}

@media (min-width: 992px) {
  .footer_nav_company {
    width: 340px;
    text-align: left;
    padding-left: 15px;
    margin: 60px auto;
  }
  .footer_nav_company_info_tel {
    flex-direction: row;
  }
  .footer_nav_link {
    width: calc(100% - 340px - 15px);
    padding-left: calc(100% - 340px - 15px - 560px);
  }
  .footer_nav_company_info_address {
    font-size: 12px;
  }
  .footer_nav_link_item > a {
    padding: 10px 0 10px 40px;
  }
}

@media (min-width: 1200px) {
  .footer_nav_content {
    max-width: 1140px;
  }
  .footer_nav_link {
    width: calc(100% - 340px - 15px);
    padding-left: calc(100% - 340px - 15px - 540px);
  }
}

.footer_bottom {
  padding: 30px 5px;
  background: #e5e5e5;
}
.footer_bottom_content {
  width: 100%;
  margin: 0 auto;
}
.footer_company_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
}
.footer_company_logo {
  width: 120px;
  height: 40px;
  margin-bottom: 10px;
}
.footer_company_logo > a {
  display: block;
  height: inherit;
}
.footer_company_logo > a > img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(0.6);
}

.footer_company_link {
  display: flex;
  font-size: 12px;
  padding-top: 15px;
}

.footer_ISO {
  width: 20%;
  margin-left: 0;
}

.footer_company_area {
  margin-top: 3%;
}

@media (max-width: 767px) {
  .footer_company_link {
    font-size: 11px;
  }

  .footer_ISO {
    width: 40%;
    margin-left: 3%;
  }
}
.footer_company_link_item {
  padding: 0 5px;
  border-left: 1px solid #999999;
  color: #222222;
}
.footer_company_link_item:first-child {
  border-left: none;
}
.footer_company_link_item:hover {
  text-decoration: none;
  color: #999999;
}

.footer_company_copyright {
  padding-top: 30px;
  font-size: 12px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .footer_bottom {
    padding: 30px 45px;
  }
  .footer_bottom_content {
    max-width: 990px;
  }
  .footer_company_wrap {
    justify-content: space-between;
    align-items: center;
  }
  .footer_company_logo {
    padding-left: 15px;
    margin-bottom: 0;
    margin-top: -10px;
  }
  .footer_company_link {
    padding-top: 0;
  }
  .footer_company_link_item {
    padding: 0 10px;
  }
  .footer_company_copyright {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .footer_bottom {
    padding: 50px 0 30px;
  }
}

@media (min-width: 1200px) {
  .footer_bottom_content {
    max-width: 1140px;
  }
}
/* TOPへ戻るボタン
================================= */

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  appearance: none;
  right: 0;
  right: 30px;
  bottom: -50px;
  background-color: #63ab1c;
  border-radius: 50%;
  z-index: 999;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  cursor: pointer;
}
#page_top:hover {
  background-color: #76cb22;
  transition: all 0.5s 0s ease;
}
#page_top a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -15px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*----フェードインアニメーション--------------*/
/* 画面外にいる状態 */
.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein2 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 500ms;
}

/* 画面内に入った状態 */
.fadein2.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein3 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 500ms;
}

/* 画面内に入った状態 */
.fadein3.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* セミナー案内ここから */
.section-seminar {
  background-color: #f6fdf3;
  padding: 10px 0 10%;
}
.container_seminar {
  /*background-color: #e8f3fe;*/
  position: relative;
  height: 500px;
  margin-top: 90px;
}

.seminar_textarea {
  margin: 0 0 50px 120px;
  position: absolute;
  width: 60%;
}

.seminar_en {
  font-size: 1em;
  color: #162e52;
  font-weight: bold;
}
.seminar-sec-title {
  font-size: 2.1em;
  color: #162e52;
  font-weight: bold;
}

.seminar_textinner h3 {
  font-size: 1.5em;
  color: #162e52;
  font-weight: bold;
  margin-top: 30px;
}

.seminar_textinner p {
  font-size: 1em;
  color: #162e52;
  margin-top: 15px;
}

.seminar_button {
  display: inline-block;
  border-radius: 5px;
  background: #59b1db;
  color: #fff;
  padding: 17px 40px;
  margin-top: 25px;
  font-size: 1.2em;
  text-decoration: none;
}

.seminar_button:hover {
  color: #fff;
  background: #73c8f1;
}
.seminar_image_area {
  position: absolute;
  left: calc(60% + 30px);
  display: block;
  margin-top: 30px;
}

.seminar_image_area img {
  width: 80%;
  margin-left: 20%;
}

@media (max-width: 768px) {
  .container_seminar {
    max-width: 100%;
  }

  .seminar_textarea {
    margin: 0;
    text-align: center;
    display: inline-block;
    width: 100%;
  }

  .seminar_image_area {
    display: none;
  }
  .seminar-sec-title {
    font-size: 1.5em;
  }

  .seminar_textinner h3 {
    font-size: 1.2em;
    color: #162e52;
    font-weight: bold;
    margin-top: 30px;
  }
  .seminar_button {
    padding: 17px 20px;
  }
  .seminar_t{
    margin-top: 0!important;
  }
}

@media (max-width: 425px) {
  .section-seminar {
    padding-bottom: 60%;
  }
}

/* サンクスページここから */
.contents-thanks {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main {
  flex-grow: 1;
}

/* お知らせページ */
.detailArea {
  font-size: 1.3em;
  margin: 3em 3em;
  line-height: 2;
}
.newsreleaseDetail {
  margin-top: 30px;
}
.newsreleaseDetail .date {
  text-align: right;
  margin-top: 10px;
  margin-right: 3em;
  font-size: 90%;
}
.h2_area h2 {
  font-size: 1.68rem;
  line-height: 1.3;
  padding: 20px 0 20px 27px;
  margin: 50px 0 30px;
  border-top: 2px solid #477a15;
  border-bottom: 2px dotted #477a15;
  clear: both;
  position: relative;
}
.h2_area {
  padding-top: 30px;
}
.h2_area h2::before {
  position: absolute;
  content: "";
  height: 1.68rem;
  width: 0.5rem;
  background-color: #477a15;
  top: 21px;
  left: 0.85rem;
}

@media (max-width: 768px) {
  .h2_area h2 {
    /*background: url(/img/top/h2_bg.gif) 0 10px no-repeat;*/
    -moz-background-size: 7px 23px;
    background-size: 7px 30px;
    padding: 15px 0 15px 27px;
    margin: 0;
  }
  .detailArea {
    margin: 3em 1em;
  }
}

.newsreleas .p02 {
  line-height: 23px;
  padding-left: 2em;
}

@media (max-width: 768px) {
  .detailArea .width80 {
    width: 100%;
  }

  .newsreleas .p02 {
    line-height: 22px;
  }

  .newsreleaseDetail {
    margin: 0;
  }

  .newsreleas p {
    line-height: 27px;
  }
}

.newsreleas p a {
  color: #4aa7e0;
}

/*----sub-header--------------*/
.sub-header-bg {
  background-image: url(/img/common/sub-header.jpg);
  background-size: cover;
  background-position: bottom;
  position: absolute;
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 0;
  z-index: -1;
}
.bg-img2 .sub-header-bg {
  background-image: url(/img/common/sub-header2.jpg);
  background-position: center;
  background-size: cover;
}
.sub-header {
  position: relative;
  width: 100%;
  height: 200px;
  /* margin: 49px 0 0; */
}
.sub-header::after {
  content: "";
  width: 100%;
  height: 200px;
  z-index: 2;
  background-color: rgb(63 133 101 / 71%);
  top: 0;
  left: 0;
  position: absolute;
}
.sub-header .container {
  z-index: 3;
  pointer-events: none;
}
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.breadcrumb {
  /* margin: 6.5em 0 1em; */
  padding: 20px 0;
  /* margin: 48px 0 0; */
  background-color: inherit;
}

.sub-header .breadcrumb,
.sub-header .breadcrumb .breadcrumbs {
  z-index: 3;
  pointer-events: auto;
  display: flex;
}
.sub-header .breadcrumb .breadcrumbs {
  margin-top: 20px;
}
.sub-header .breadcrumb a,
.sub-header .breadcrumb li {
  color: #fff;
  z-index: 3;
  pointer-events: auto;
}
.sub-header .breadcrumb li {
  color: #fff;
  z-index: 3;
  position: relative;
  margin: 0 1.5em;
}
.sub-header .breadcrumb li::before {
  content: ">";
  position: absolute;
  left: -2em;
}
.sub-header .breadcrumb li::before {
  color: #fff;
  pointer-events: none;
  left: -2em;
}

.sub-header .breadcrumb li:first-child::before {
  content: "";
  margin-left: -3em;
}
.sub-header .breadcrumb li:first-child {
  margin-left: -1em;
}

.sub-header .page-title {
  color: #fff;
  font-size: 40px;
  top: 63px;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  z-index: 3;
  position: absolute;
}
.sub-header .title-sub {
  font-size: 18px;
  line-height: 1.55556;
  display: block;
}

@media (max-width: 768px) {
  .sub-header .page-title {
    font-size: 32px;
  }
  .sub-header.bg-img2 {
    height: 300px;
  }
  .sub-header.bg-img2::after {
    height: 300px;
  }
  .bg-img2 .sub-header-bg {
    height: 300px;
  }
  .sub-header {
    margin-top: -10px !important;
  }
  .sub-header .page-title {
    font-size: 32px;
  }
  .sub-header.bg-img2 .page-title {
    font-size: 30px;
  }
}
main.main.wp-main {
  margin-top: -50px;
}
.main .container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .main .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .main .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .main .container {
    max-width: 1200px;
  }
}

/*----ホワイトペーパー--------------*/
.whitepaper_margin {
  margin-top: 49px;
}

.wp_title {
  margin: 2em;
}
.wp_textarea {
  width: 40%;
  margin-right: 2.5em;
}
.wp_container {
  height: 1000px;
  margin-top: 5%;
  display: flex;
  justify-content: center;
}

.wp_text {
  margin-top: 3em;
}

.wp_text p {
  margin-bottom: 1em;
}

.wp_form {
  /*width: 40%;*/
  width: 578px;
}

/* .wp_item_container{
  margin:0 auto;
} */
.wp_item_list {
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  margin: 0 auto;
}

.wp_item_list::after {
  content: "";
  display: block;
  width: 33%;
}

.wp_item_inner {
  text-align: center;
  width: 100%;
  height: 95%;
  margin: 0% auto 5%;
}

.wp_item_body {
  width: 30%;
  margin-left: 2.80702%;
  margin-top: 32px;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
  box-shadow: 2px 2px 8px rgb(211, 211, 211);
}

.wp_item_textarea {
  width: 95%;
  margin: 8% auto;
}

.wp_item_title {
  font-size: 1.2em;
  text-align: left;
  font-weight: bold;
  margin-bottom: 5%;
}

.wp_item_tag {
  margin-bottom: 5%;
  text-align: left;
  line-height: 2;
}
.wp_item_tag span {
  background-color: #63a0e0;
  color: #fff;
  padding: 1% 2%;
  display: inline-block;
  margin: 1% 0.5%;
}

.wp_item_text {
  text-align: left;
  font-size: 1em;
  line-height: 1.6;
  color: #383838;
}

.wp_text ul li {
  position: relative;
  margin-left: 14px;
}
.wp_text ul li:before {
  position: absolute;
  content: "・";
  left: -14px;
}

.wp_item_body a {
  display: inline-block;
  text-align: -webkit-center;
  background-color: #ff9248;
  font-size: 1.1em;
  color: #fff;
  text-decoration: none;
  padding: 3% 3%;
  letter-spacing: 2px;
  border-radius: 5px;
  width: 95%;
  font-weight: bold;
  margin: 7% auto;
}
.wp_item_body a:hover {
  color: #fff;
  background-color: #f36f17;
}

@media (max-width: 768px) {
  .character-offer h2 {
    font-size: 1.5em;
    /* margin-bottom: 30%; */
  }
  .wp_container {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    height: 1900px;
  }
  .wp_textarea {
    width: 100%;
    margin-right: 0;
    margin-top: 30%;
  }

  .wp_form {
    width: 100%;
    height: 950px;
  }
  .wp_form iframe{
    height: 950px;

  }
  .wp_img {
    text-align: center;
  }

  .wp_text {
    margin-top: 3em;
    max-width: 80%;
    margin: 10% auto;
  }
  .wp_item_list {
    flex-direction: column;
    align-items: center;
    align-content: center;
  }

  .wp_item_body {
    width: 75%;
  }
}


.news_link {
  color: #003c8a;
  text-decoration: underline;
}
.character-offer h2 {
  font-size: 2rem;
  text-align: center;
  background: -webkit-linear-gradient(0deg, #48c6ef, #6f86d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.section-wp {
  padding-top: 60px !important;
  font-size: 16px;
}
@media (max-width: 425px) {
.wp_title{
    margin: 0;}

.character-offer h2 {
  font-size: 2rem;
  margin-bottom: 30%;
}
.wp_form {
  height: 1050px;
}
}

/*----機能ページー--------------*/
.func_article {
  /*margin-bottom: 11%;*/
  margin-bottom: 100px;
}

.text_small {
  font-size: 0.8em;
  font-weight: bold;
}

.sub-header {
  position: relative;
  width: 100%;
  height: 200px;
  /* margin: 49px 0 0; */
}

.sub-header-bg {
  background-image: url(/img/common/sub-header.jpg);
  background-size: cover;
  background-position: bottom;
  position: absolute;
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 0;
  z-index: -1;
}

.sub-header .container {
  z-index: 3;
  pointer-events: none;
  margin: 0 auto;
  max-width: 70%;
}

.sec_func_menu {
  padding-top: 4%;
  padding-bottom: 3%;
}

.func_menu {
  text-align: center;
}

.func_nav {
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #64aa1c;
  font-size: 1.14em;
  font-weight: 600;
  text-decoration: underline;
  margin-right: 2em;
  line-height: 1em;
  margin-bottom: 1em;
  padding: 0.5em 0.5em 0.2em 0.5em;
  border-bottom: 2px dotted #6abb17;
  text-decoration: none;
}

.func_nav:hover {
  opacity: 0.6;
}

.sec_func_contents {
  padding-top: 2%;
}

.func_title {
  text-align: center;
  font-size: 2.5em;
  color: #525252;
  position: relative;
  margin-top: 4%;
  margin-bottom: 80px;
}

.func_title::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 120px;
  background-color: #77cd20;
  bottom: -12px;
  left: calc(50% - 60px);
}

.func_column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.func_item {
  margin-top: 2%;
  margin-bottom: 5%;
}

.func_item:not(:last-of-type) {
  margin-right: 0.8%;
}

.func_desc_title {
  font-size: 1.2em;
  text-align: center;
  color: #487b15;
  font-weight: bold;
  margin: 6% auto 4%;
  width: 96%;
}

.func_desc_txt p {
  font-size: 1em;
  max-width: 90%;
  text-align: left;
  margin: 2% auto 2%;
}

.func_desc_img {
  text-align: center;
}

.img_zoom {
  width: 100%;
  transition: 0.5s;
}
.img_fix_popup:hover {
  filter: brightness(0.85);
}

.img_zoom:hover {
  transform: scale(2, 2);
  border: 2px solid #3f3f3f;
  box-shadow: 0 3px 12px rgb(0 0 0 / 50%);
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .img_zoom:hover {
    transform: none;
  }
}

@media (max-width: 425px) {
  .func_item {
    width: 90%;
    max-width: none;
  }
  /* .sub-header .container {
    margin: 2%;
  } */

  .sub-header .page-title {
    font-size: 24px;
  }

  .func_nav {
    margin-right: 0;
  }

  .sub-header .breadcrumb li {
    margin: 0 1em;
    font-size: 0.8em;
  }
  .sub-header .container {
    max-width: 90%;
  }
  .sub-header .breadcrumb li::before {
    left: -1em;
  }
}

/*----footer--------------*/
.partner-menu-partner {
  width: 100%;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .partner-menu-partner:first-of-type{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
}

.partner-menu-partner .item {
  display: inline-block;
  margin-right: 0;
}

.partner-menu-partner .item:last-child {
  margin-right: 0;
}

.partner-menu-partner .item img {
  width: 70%;
}

.menu-partner {
  margin-top: 15px;
  display: block;
  width: 100%;
}

.menu-partner .item {
  display: block;
  font-size: 11px;
  line-height: 1.84615;
  color: #162e52;
}
.patent-footer {
  font-size: 0.75em;
  border: 1px solid #a9a9a9;
  width: 120px;
  margin-left: 20px;
  padding: 0.75em;
}
.patent-footer strong {
  display: block;
  background-color: #bcc8cf;
  padding: 2px;
  text-align: center;
  margin-bottom: 6px;
}
.coppyright {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: 16px;
  color: #162e52;
}
.footer-link {
  color: #162e52;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .footer-link {
  min-width:0;
}
}

.footer-link a {
  color: #162e52;
}
.footer-link a:hover{
  text-decoration: underline;
}
.footer-link div {
  display: flex;
}
.footer-link dt {
  font-size: 16px;
  font-weight: bold;
  padding-bottom:12px;
}

@media (max-width: 768px){
  .footer-link dt {
  padding-bottom:20px;
}
}


.footer-link dd:before {
  content: "-";
  padding-right: 0.2em;
}
.footer-link dd:not(:last-of-type) {
  margin-right: 18px;
  padding-bottom: 20px;
}
.footer-bottom-link {
  display: inline-flex;
  margin-bottom: 40px;
}
.footer-company-info {
  display: flex;
  flex-direction: column;
}

.footer-company-info p {
  margin-bottom: 1em;
  color: #162e52;
}
.footer-company-info p strong {
  font-weight: 700;
}
.footer-bottom-link .item {
  margin-right: 1.8em;
}
@media (max-width: 768px) {
  .footer-bottom-link {
  display: inline;
  }
}
@media (min-width: 992px) {
  .menu-footer {
    margin-top: 0;
  }

  .partner-menu-partner {
    flex-wrap: nowrap;
  }

  .list-partner {
    width: auto;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
  }

  .menu-partner {
    margin-top: 0;
    width: 100%;
  }

  .menu-partner .item {
    display: inline-block;
    white-space: nowrap;
    margin-left: 30px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .menu-partner .item.current,
  .menu-partner .item:hover {
    color: #bf2525;
  }

  .ie10 .menu-partner .item {
    width: auto;
  }

  .coppyright {
    padding-top: 0;
    margin-top: -4px;
    text-align: right;
  }

  .btn-to-contact {
    padding: 13px;
    right: 10px;
    bottom: 40px;
    color: #fff;
  }

  .btn-to-contact p {
    display: inline-block;
  }

  .btn-to-contact a {
    color: #fff;
  }

  .partner-menu-partner .item img {
    width: auto;
    margin-right: 26px;
  }
  .partner-menu-partner-wrap:first-of-type {
    width: 63%;
  }
}
@media (max-width: 991px) {
  .footer_bottom {
    padding: 30px 30px;
  }
}
@media (max-width: 991px) {
  .list-partner {
    display: flex;
    height: 100px;
  }
  .list-partner a {
    width: 140px;
  }
}

.footer-borer{
    border-top: 1px solid #162e52;
    padding-top: 32px;
}

/* ----パートナーページー--------------*/
.patner_merit {
  padding-bottom: 0;
}

.patner_merit_content {
  max-width: 63%;
  padding-bottom: 8%;
  background-color: #fff;
}

.box29 {
  margin: 2em 0 0;
  background: #d6ded6;
  margin-top: 10%;
}

.box29 .box-title {
  font-size: 1.8em;
  background: #74c720;
  padding: 4px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.box29 p {
  padding: 3em 20px;
  margin: 0;
  font-size: 1.2em;
  text-align: center;
}

.patner_merit,
.partner_recruitment {
  background-color: #fff;
}

.partner_inner.text_area h2 {
  text-align: left;
}

.partner_recruitment .text_area {
  text-align: left;
  width: 50%;
  padding-right: 30px;
  line-height: 1.7;
  font-size: 15px;
}

.partner_recruitment .image_area {
  text-align: left;
  width: 50%;
}

.partner_recruitment .partner_inner {
  display: flex;
  padding: 0px;
}
.partner_recruitment.img-circle .partner_inner {
  align-items: center;
}
.partner_recruitment.img-circle .partner_inner.row-reverse {
  flex-flow: row-reverse;
}
.partner_recruitment.img-circle .partner_inner.row-reverse .text_area {
  padding-left: 30px;
}
.partner_recruitment.img-circle .image_area {
  background-image: url(/img/partner/partner_02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  min-width: 400px;
  margin-left: auto;
  margin-right: 0;
}

.partner_recruitment.img-circle .partner_inner.row-reverse .image_area {
  margin-left: 0;
  margin-right: auto;
}

.partner_recruitment .image_area.image-01 {
  background-image: url(/img/partner/partner_01.jpg);
}

.partner_recruitment .image_area.image-04 {
  background-image: url(/img/partner/partner_04.jpg);
}

.btn-style08 {
  display: inline-block;
  max-width: 220px;
  text-align: left;
  border: 2px solid #ed6567;
  font-size: 16px;
  color: #ed6567;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  transition: 0.4s;
}

.btn-style08 .txt {
  font-size: 15px;
  display: table-cell;
  vertical-align: middle;
  padding-top: 5px;
}

.btn_area {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.img-circle {
  padding: 70px;
}

@media (max-width: 768px) {
  .partner_recruitment .text_area {
    width: 100%;
    padding-right: 0px;
    line-height: 1.7;
    font-size: 15px;
    padding-bottom: 90px;
  }

  .partner_recruitment .image_area {
    width: 100%;
  }

  .partner_recruitment .partner_inner {
    display: block;
    padding: 10px;
  }
  .partner_recruitment.img-circle .image_area {
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    min-width: 300px;
  }
  .partner_recruitment.img-circle .partner_inner.row-reverse .image_area {
    margin-left: auto;
    margin-right: auto;
  }
  .partner_recruitment.img-circle .partner_inner.row-reverse .text_area {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }
  .partner_recruitment.img-circle .partner_inner,
  .partner_recruitment.img-circle .partner_inner.row-reverse {
    display: flex;
    flex-direction: column;
    flex-flow: column-reverse;
  }
  .partner_recruitment.img-circle h2 {
    text-align: center;
  }
  .partner_recruitment.img-circle .text_area p {
    width: 88%;
    margin: auto;
  }
  .partner_logo {
    margin-bottom: 60px !important;
  }
  .companies {
    align-items: center !important;
  }
}

@media (max-width: 425px) {
  .img-circle {
    padding: 5px;
  }
  .image_area {
    max-width: 80%;
  }
}

/*----トライアルページ--------------*/
.block-flow {
  margin-top: 5%;
}
.item-bl.item {
  display: flex;
  justify-content: center;
}

.info {
  max-width: 40%;
  margin-right: 7%;
}

.section_trial h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  padding-top: 100px;
  background: -webkit-linear-gradient(0deg, #26bbe2, #40b274);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}

.blk {
  color: #000;
}

.section-content-demo p {
  font-size: 15px;
}

.trial_text_small {
  font-size: 14px;
}

.trial_text_small a {
  color: #000;
  font-weight: bold;
  line-height: 28px;
  display: flex;
  align-items: flex-start;
}
i.material-icons.blk {
  margin-top: 2px;
}

.trial0 {
  text-align: left;
  font-size: 2.8rem;
  font-weight: bold;
  color: #64aa1c;
  line-height: normal;
}

.trial00 {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 500;
  color: #64aa1c;
  line-height: normal;
  margin: 3% 0;
}

.btn-trial0 {
  padding: 15px;
  width: 200px;
  height: 45px;
  background-color: #f9a826;
  color: #fff;
  border-radius: 10px;
  margin-right: 10px;
  font-weight: bold;
  text-decoration: none;
}

.list-btn_trial0 .item:hover {
  opacity: 0.6;
}

.btn-trial00 {
  padding: 15px;
  width: 200px;
  height: 45px;
  background-color: #63bee7;
  color: #fff;
  border-radius: 10px;
}

.list-btn_trial0 {
  display: flex;
  margin-top: 4%;
}

.trial01 {
  text-align: left;
  font-size: 2.8rem;
  font-weight: bold;
  background: -webkit-linear-gradient(0deg, #7b4bff, #ff87fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}

.trial02 {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 500;
  background: -webkit-linear-gradient(0deg, #2f68d7, #26bbe2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}

/*追加----------------------*/
.trial_or {
  font-size: 1.25rem;
  margin-left: 20px;
}

.trial03 {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 500;
  /*    background: -webkit-linear-gradient(0deg, #fda085, #fccd39); */
  background: -webkit-linear-gradient(0deg, #7b4bff, #ff87fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}

/*追加ここまで---------------*/

.btn-trial01 {
  padding: 15px;
  width: 200px;
  height: 45px;
  background-color: #259cab;
  color: #fff;
  border-radius: 10px;
  margin-right: 10px;
}

.btn-trial01 {
  padding: 15px;
  width: 200px;
  height: 45px;
  background-color: #2f68d7;
  color: #fff;
  border-radius: 10px;
}

.list-btn_trial0 {
  display: flex;
}

/*---表----*/
.thumb.tbl-item01 {
  line-height: 1.5;
  margin-top: 10px;
}

.tbl-item01 table {
  border: 1px solid #777e80;
  width: 100%;
  margin-bottom: 35px;
}

.tbl-item01 table tr {
  border-bottom: 1px solid #777e80;
}

.tbl-item01 table td {
  padding: 13px;
}

.tbl-item01 table .col01 {
  display: block;
  width: 100%;
  border-bottom: 1px solid #777e80;
  background-color: #e7f5d9;
}

.tbl-item01 table .col02 {
  display: block;
  width: 100%;
}

/*追加---------------------*/
.thumb.tbl-item02 {
  line-height: 1.5;
  margin-top: 10px;
}

.tbl-item02 table {
  border: 1px solid #777e80;
  width: 100%;
  margin-bottom: 35px;
}

.tbl-item02 table tr {
  border-bottom: 1px solid #777e80;
}

.tbl-item02 table td {
  padding: 13px;
}

.tbl-item02 table .col01 {
  display: block;
  width: 100%;
  border-bottom: 1px solid #777e80;
  background-color: #e7f5d9;
}

.tbl-item02 table .col02 {
  display: block;
  width: 100%;
}

.mgrt90 {
  margin-top: 2% !important;
}

.img-logo {
  width: 50%;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .tbl-item01 table {
    margin-bottom: 6px;
  }

  .tbl-item01 table tr {
    border-bottom: 1px solid #777e80;
  }

  .tbl-item01 table td {
    font-size: 16px;
    padding: 12px;
  }

  .tbl-item01 table .col01 {
    display: table-cell;
    width: 30%;
    border-bottom: 1px solid #777e80;
    border-right: 1px solid #777e80;
    background-color: #e7f5d9;
  }

  .tbl-item01 table .col02 {
    display: table-cell;
    width: 65%;
  }
}

/*追加--------------------------------*/

@media (min-width: 768px) {
  .tbl-item02 table {
    margin-bottom: 6px;
    margin-left: 15px;
  }

  .tbl-item02 table tr {
    border-bottom: 1px solid #777e80;
  }

  .tbl-item02 table td {
    font-size: 16px;
    padding: 12px;
  }

  .tbl-item02 table .col01 {
    display: table-cell;
    width: 30%;
    border-bottom: 1px solid #777e80;
    border-right: 1px solid #777e80;
    background-color: #e7dffc;
  }

  .tbl-item02 table .col02 {
    display: table-cell;
    width: 65%;
  }
}

@media (max-width: 425px) {
  .item-bl.item {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .info {
    max-width: 95%;
    margin-bottom: 7%;
  }
}

/*----slick (blog-card)--------------*/
/*.block-blog-card {
  margin-bottom: 30px;
}*/

.slick-prev:before,
.slick-next:before {
  color: #646464 !important;
}
.card-item {
  border: 1px solid #dcdcdc;
  /*padding: 8px;*/
  margin: 20px 10px;
  /*min-height: 220px;*/
  background-color: #fff;
  position: relative;
}
.card-item span {
  position: absolute;
  right: 2px;
  top: 2px;
  font-size: 10px;
  color: #fff;
  background-color: #63ab1c;
  border-radius: 3px;
  padding: 3px;
}
.card-item p {
  margin: 8px;
  font-weight: 400;
  color: #4f7810;
}
.card-img {
  overflow: hidden;
  border-radius: inherit !important;
  /*filter: brightness(0.6);*/
}
.card-img img {
  width: 100%;
}
.card-item:hover {
  filter: brightness(0.95);
  background-color: #f2f2f2;
}
.slick-dots {
  bottom: -35px;
}

.slick-dots li {
  margin: 0 2px;
}

.slick-dots li button {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid;
  /* background: linear-gradient(45deg, rgba(114, 211, 205, 1) 0%, rgba(103, 175, 235, 1) 100%); */
  opacity: 1;
  border-radius: 50%;
  position: relative;
  background-color: #63ab1c;
}

.slick-dots li button:before {
  content: "";
  background-color: #fff;
  width: 9px;
  height: 9px;
  opacity: 1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  /* background: linear-gradient(45deg, rgba(114, 211, 205, 1) 0%, rgba(103, 175, 235, 1) 100%); */
  background-color: #63ab1c;
}

.slick-prev,
.slick-next {
  max-height: none;
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #63ab1c;
  position: absolute;
  z-index: 100;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #457713;
}

.slick-prev {
  left: -4%;
}

.slick-prev:before {
  content: "";
  width: 11px;
  height: 18px;
  border-radius: 50%;
  display: block;
  background: url(/img/arr_white_left.png) no-repeat center/100% auto;
  opacity: 1;
}

.slick-next {
  right: -4%;
}

.slick-next:before {
  content: "";
  width: 11px;
  height: 18px;
  border-radius: 50%;
  display: block;
  background: url(/img/arr_white.png) no-repeat center/100% auto;
  opacity: 1;
}
@media (max-width: 780px) {
  .card-item {
    width: 80%;
    margin: 0 auto;
  }
  .blog-card {
    width: 80%;
    margin: auto;
  }
}

/*----システム連携--------------*/
.system_menu {
  padding: 0 0 1.5%;
}

.system_article {
  margin-bottom: 0;
  /*padding-top: 6%;*/
  padding-top: 10px;
}

.system_text {
  background-color: #fff;
  text-align: left;
  padding-top: 2%;
  color: #525252;
  max-width: 73%;
  margin: 0 auto 12%;
  font-size: 1.2em;
  line-height: 1.7em;
}
.system_head {
  margin-bottom: 0;
}
.system_title {
  margin-top: 5%;
  margin-bottom: 7%;
}
.dencho-ho_box {
  text-align: center;
}
.dencho-ho_title {
  text-align: center;
  margin: 1.5% 10% 2%;
  border-radius: 70px;
  background-color: #ebebeb;
  padding: 0.9% 10%;
  display: inline-block;
  font-weight: bold;
  color: #525252;
  font-size: 1.1em;
}
.system_img {
  max-width: 72%;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 425px) {
  .func_title {
    font-size: 1.8em;
  }
  .system_img {
    max-width: 100%;
  }
  .system_text {
    max-width: 95%;
  }
  .dencho-ho_title {
    margin: 10% 0;
    border-radius: 7px;
    padding: 0.9% 10%;
  }
}

/*------JIIMAロゴ-------*/
.jiima-logo {
  /*background-color: rgba(255, 255, 255, 0.75);
  margin-bottom: 100px;
  padding: 20px;
  border-radius: 10px;*/
  margin-top: 20px;
  margin-right: 10px;
}
.jiima-logo img {
  max-width: 120px;
}
.jiima-logo-sec {
  display: flex;
}

@media (max-width: 425px) {
  /*.jiima-logo-sec {
    flex-direction: column;
  }*/
  .jiima-logo img {
    max-width: 70px;
  }
}

@media (max-width: 375px) {
  .jiima-logo img {
    max-width: 70px;
  }
}

/*--------------------FAQ-----------------------*/
.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box\2b;
}
.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1em 0;
  color: #1b2538;
}
.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 2.5em;
  cursor: pointer;
  text-indent: 1em;
  /*border-radius: 0.5em;
  background: rgba(27, 37, 56, 0.1);*/
  background-color: #8dbe5c;
  color: #fff;
}
.cp_qa .cp_actab label::before {
  font-family: serif;
  font-size: 1.5em;
  margin-left: -2em;
  padding-right: 0.5em;
  content: "Q";
}
.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color: #fff;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  content: "\2b";
  display: inline-block;
  width: 2em;
  height: 2em;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  border-radius: 0 0 0.5em 0.5em;
}
.cp_qa .cp_actab .cp_actab-content::before {
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  margin: 0.4em 0 0 -1em;
  padding: 0;
  content: "A";
}
.cp_qa .cp_actab .cp_actab-content p {
  margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
  background-color: #FFF;
  border: 1px solid #e0e0e0;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
  color: #fff;
  /*border-radius: 0.5em 0.5em 0 0;*/
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type="checkbox"]:checked + label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

/*------セミナーアーカイブ-------*/

.seminar-archive-banner {
  margin: 30px 0 0;
}

.seminar-archive-banner>.contents-wrapper {
  position: relative;
  box-sizing: border-box;
  background: #FAFFFA;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  max-width: 1200px;
  margin: auto;
  padding: 0 3%;
  transition: box-shadow 0.6s;
}

.seminar-archive-banner>.contents-wrapper:hover{
  top:-3px;
  box-shadow: 0px 9px 9px rgba(160, 160, 160, 0.2);
}
.seminar-archive-banner>.contents-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}

.seminar-archive-banner__contents {
  margin: 5% 2% 5% 7%;
}
/* .seminar-archive-banner__contents:before {
  content: "";
  background: no-repeat 50%;
  background-size: cover;
  background-image: url(/img/seminar_archive.jpg);
  width: 380px;
  height: 220px;
} */
.seminar-archive-banner__contents>.contents-wrapper {
  flex: 1;
}
.contents-wrapper {
  position: relative;
  display: block;
}

.seminar-archive-banner__contents--title {
  color: #4c4c4c;
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  line-height: 1.6;
}
.seminar-archive-banner__contents--text {
  margin: 11px 0 0;
  color: #444;
  font-size: 18px;
  text-align: left;
  line-height: 1.9;
}
@media (min-width: 768px){
.seminar-archive-banner .button-area {
    margin-top: 14px;
    justify-content: left;
}
}
.seminar-archive-banner .button-area .btn {
  width: 280px;
  height: 48px;
  pointer-events: none;
}
.button-area .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: unset;
  margin: 0;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.btn_orange {
  background: #f69c2f;
  color: #fff!important;
  font-weight: 700;
  border-radius: 100px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 240px;
  padding: 12px;
  text-align: center;
  text-decoration: none!important;
  width: 100%;
}
@media (max-width: 768px){
  .seminar-archive-banner>.contents-wrapper  {
    flex-direction: column;
  }
  .seminar-archive-banner__contents--title {
    text-align: center; 
  }
  .seminar-archive-banner__contents--text {
    text-align: center; 
  }
  .seminar-archive-banner .button-area {
    text-align: center;
  }
  .seminar-archive-banner__img{
    max-width: 90%;
    margin-top: 5%;
  }
  .seminar-archive-banner__contents {
    margin: 3%;
}
  }

  /* news
 * ----------------------------------------------- */

.news-tab {
  display: inline-flex;
  width: 100%;
  border-bottom: 1px solid #ccc;
  margin: 60px 0 20px;
  padding-left: 10px;
}
a.tab-item {
  padding: 0.5em 3em;
  min-width: 300px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 8px 8px 0 0;
  color: #3a3a3a;
}
a.tab-item:first-child {
  margin-right: -1px;
}
a.tab-item.current {
  position: relative;
  background-color: #0f8dc7;
  color: #fff;
  /*filter: drop-shadow(2px 0px 2px #ccc);*/
}
a.tab-item.current::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 300px;
  bottom: -1px;
  background-color: #0f8dc7;
  left: 0;
}
.news-contents {
  display: flex;
  max-width: 1200px;
}
.left-side {
  min-width: 200px;
}
.right-side {
  padding-right: 30px;
  width: 100%;
}
.left-side p {
  display: block;
  font-size: 40px;
  font-weight: 600;
  color: #ccc;
  margin-top: 40px;
  margin-left: 20px;
}
.left-side p span {
  font-size: 20px;
}
.back_btn {
  visibility: hidden;
}
@media (max-width: 767px) {
  .news-contents {
    flex-direction: column;
  }
  .price-licen .tbl-character-offer {
    display: inherit;
  }
  .news-tab {
    /*flex-direction: column;
    margin: 0;
    padding: 0;
    border: none;*/
    margin: 0 -5%;
    width: 110%;
    padding: 0;
  }
  a.tab-item {
    /*color: #0f8dc7;
    min-width: inherit;
    border: none;
    text-decoration: underline;
    padding-left: 24px;*/
    padding-right: 0;
    padding-left: 12px;
    width: 100%;
    min-width: inherit;
    border-radius: inherit;
    text-align: center;
  }
  a.tab-item:first-child {
    margin-right: 0;
  }
  a.tab-item.current {
    /*background-color: inherit;
    color: #0f8dc7;*/
  }
  a.tab-item.current::after {
    display: none;
  }
  .right-side {
    padding-right: 0px;
  }
  .left-side p {
    margin-left: 0px;
  }
}

.news-list {
  margin: 34px 0;
}
.news-post {
  padding: 28px 0;
  border-bottom: 1px dotted #666;
}
.news-post a {
  display: flex;
}
.post-date {
  min-width: 6em;
}
.news-post a {
  padding-right: 60px;
  position: relative;
}
.news-post a {
  /*border-bottom: 1px dotted #666;*/
  /*padding-bottom: 16px;*/
  color: #92af75;
}
.news-post:first-child {
  border-top: 1px dotted #666;
}
.news-post a::after {
  content: "";
  width: 10px;
  height: 15px;
  background: url(/img/arr_green.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 40%;
  right: 15px;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.news-post.no-link a::after {
  display: none;
}
.news-post:hover {
  background-color: #ccc;
}
.news-post.no-link:hover {
  background-color: inherit;
}

  /* news top-page
 * ----------------------------------------------- */

.post-label {
  display: block;
  min-width: 128px;
  text-align: center;
  padding: 4px;
  background-color: #8dbd5d;
  height: 2.1em;
  margin-right: 16px;
  border-radius: 4px;
  font-size: 0.85em;
  color: #fff;
}
.post-label.label-verup {
  background-color: #d97c48;
}
.more-news {
  text-align: right;
}
.more-news a {
  color: #92af75;
  position: relative;
  padding-left: 1em;
  padding-top: 2px;
}
.more-news a:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(0.8em - 2px);
  left: 6px;
  width: 2px;
  height: 8px;
  background-color: #92af75;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.more-news a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(0.8em + 2px);
  left: 6px;
  width: 2px;
  height: 8px;
  background-color: #92af75;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.container.w-news {
  width: 60%;
}
.section-top-update .post-date {
  padding-left: 1em;
}
@media (max-width: 767px) {
  .container.w-news {
    width: 90%;
  }
  .news-post {
    display: flex;
  }
  .news-post a {
    flex-direction: column;
  }
  .post-date {
    min-width: inherit;
    font-size: 1.4em;
    color: #999999;
    font-weight: 600;
  }
  .annotation{
    text-align: left;
    font-size: 8px;
  }  
}

  /* invoice
 * ----------------------------------------------- */
 .top-filter_invoice{
  /* position: absolute; */
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 580px;
  background-image: url(/img/invoice_topbg.jpg);
  background-repeat: repeat;
  z-index: 1;
  background-size: cover;

  position: relative;
  padding: 90px 0;
 }
 .in_top_title{
  color: #fff;
  font-size: 2.6rem;
  filter: drop-shadow(0 0 3px #858585);
  font-weight: 580;
  line-height: 2em;
}
 .top-invoce_img{
  left: 0;
  z-index: 2;
 }
 .top-invoce_img img{
 float: right;
 margin-right: 20%;
  width: 85%;
}
.in_top-left-wrapper {
  width: 650px;
  margin-left: 10%;
}
.in_about-left img {
  float: left;
}
.in_about-right {
  width: 50%;
}
.invoice_area-2{
  background-color: #fff;
}
.invoice_top_container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.in_about-txt {
  margin-top: 5%;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}
.section-about-invoice {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.in_about-left img{
  width: 80%;
}
.in_ready_wrapper {
  display: flex;
  align-items: flex-start;
  text-align: center;
  margin: 3% 5%;
  justify-content: center;
}


.in_ready_container {
  width: 40%;
  height: 580px;
  text-align: center;
  background-color: #D2E9D2;
  margin: 2%;
  padding: 3%;
  border-radius: 3%;
}
.in_ready_img{
margin: 8% auto;
}
.in_ready_title {
  font-size: 2em;
  color: #3DA546;
  font-weight: bold;
}
.in_ready_text {
    font-size: 1rem;
    color: #383838;
    line-height: 1.8em;
    text-align: left;
}
.in_ready_measures_title {
  font-size: 2em;
  color: #383838;
  text-align: center;
  font-weight: bold;
}
.in_ready_measures {
  background-color: #fff;
  padding: 5%;
  text-align: center;
  margin-top: 13%;
  margin-bottom: 10%;
}
.in_ready_measures h4{
  margin: 2% auto;
}
.in_ready_measures img{
  max-width: 85%;
}
.in_about_title{
  margin-top: 10%;
  margin-bottom: 5%;
}
.in_about-right p{
  color: #383838;
}

@media (max-width: 768px) {
.in_top_title{
  font-size: 1.6rem;
}
.top-filter_invoice {
  height: 400px;
}
.in_ready_wrapper {
  flex-direction: column;
  justify-content:center;
  align-items: center;
}
.in_ready_container {
  width: 80%;
}
.in_ready_measures img {
  max-width: 100%;
}
.in_ready_measures {
  padding: 2%;
}
.in_wrapper03{
  width: 98%;
}
}

@media (max-width: 425px) {
.invoice_top_container {
  display: flex;
  flex-direction: column;
  align-content: center;
}
.top-filter_invoice {
  padding: 10% 0;
}
.in_top-left-wrapper {
  width: 100%;
  margin: 0 5% 10% 5%;
}
.top-invoce_img img {
  width: 65%;
}
.top-filter_invoice {
  height: 500px;
}
.in_top_title {
  text-align: center;
}
.section-about-invoice {
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.in_about-left img{
  width: 60%;
  float: none;
}
.in_about-txt {
  margin-left:0;
  margin-top: 10%;
  font-size: 1rem;
}
.in_about-right {
  width: 90%;
}
.in_ready_container {
  width: 95%;
}
.in_ready_measures{
 width: 100%;
}
.in_ready_text {
  font-size: 0.88rem;
}
.in_about-left img {
  width: 80%;
}
}
@media (max-width: 768px) {
  .seminar_title .wp_title{
    margin: 0 auto 0;
  }
  .seminar_img {
    width: 60%;
    margin: 0 auto 0;
  }
  .wp_container {
    flex-direction: column;
  }
  .seminar_title h2{
    font-size: 1.5rem;
  }
}
@media (max-width: 425px) {
    .seminar_img {
      width: 80%;
    margin: 0 auto 0;
  }
  .seminar_title h2{
    margin:0 0 20% ;
  }
  
}

@media (min-width: 769px) and (max-width: 1100px){
  .in_ready_container{
    height:682px;
  }
}

/* CASE INDEX
 * ----------------------------------------------- */
 /*.company-cards-wrapper {
  margin: 40px auto 0;
  max-width: 1200px;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}*/
section.single-case {
    padding: 0 0 140px;
}
.e-book-img {
    filter: drop-shadow(2px 4px 6px #c7c7c7);
}
.company-cards-wrapper {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.company-cards-grid {
  grid-template-columns: none;
  place-items: center;
}

.company-cards-wrapper ul {
  --l-card-list-rows: 3;
  --l-card-list-gap: 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--l-card-list-rows), 1fr);
  justify-content: start;
  align-items: stretch;
  gap: var(--l-card-list-gap);
}

@media screen and (max-width: 1024px) {
  .company-cards-wrapper ul {
    --l-card-list-rows: 2;
  }
}

@media screen and (max-width: 767px) {
  .company-cards-wrapper ul {
    --l-card-list-rows: 1;
  }
}

.company-cards-wrapper .top-item.order01{
  order: 1;
}
.company-cards-wrapper .top-item.order02{
  order: 2;
}
.company-cards-wrapper .top-item.order03{
  order: 3;
}
.company-cards-wrapper .top-item.order04{
  order: 4;
}
.company-cards-wrapper .top-item.order05{
  order: 5;
}
.company-cards-wrapper .top-item.order06{
  order: 6;
}
.company-cards-wrapper .top-item.order07{
  order: 7;
}
.company-cards-wrapper .top-item.order08{
  order: 8;
}
.company-cards-wrapper .top-item.order09{
  order: 9;
}
.company-cards-wrapper .top-item.order10{
  order: 10;
}
.company-cards-wrapper .top-item.order11{
  order: 11;
}
.company-cards-wrapper .top-item.order12{
  order: 12;
}
.company-cards-wrapper .top-item.order13{
  order: 13;
}
.company-cards-wrapper .top-item.order14{
  order: 14;
}
.company-cards-wrapper .top-item.order15{
  order: 15;
}
.company-cards-wrapper .top-item.order16{
  order: 16;
}
.company-cards-wrapper .top-item.order17{
  order: 17;
}
.company-cards-wrapper .top-item.order18{
  order: 18;
}
.company-cards-wrapper .top-item.order19{
  order: 19;
}
.company-cards-wrapper .top-item.order20{
  order: 20;
}
.company-cards-wrapper .top-item.order21{
  order: 21;
}
.company-cards-wrapper .top-item.order22{
  order: 22;
}
.company-cards-wrapper .top-item.order23{
  order: 23;
}
.company-cards-wrapper .top-item.order24{
  order: 24;
}
.company-cards-wrapper .top-item.order25{
  order: 25;
}
.company-cards-wrapper .top-item.order26{
  order: 26;
}
.company-cards-wrapper .top-item.order27{
  order: 27;
}
.company-cards-wrapper .top-item.order28{
  order: 28;
}
.company-cards-wrapper .top-item.order29{
  order: 29;
}
.company-cards-wrapper .top-item.order30{
  order: 30;
}
 .company-cards-wrapper .top-item {
  width: 360px;
  padding-bottom: 70px;
  margin: 0 13px;
}

 .company-cards-wrapper .item {
  width: 360px;
  padding-bottom: 70px;
 }

.company-cards-wrapper .item a {
  display: block;
  position: relative;
  width: 100%;
}

.company-cards-wrapper .top-item a .entry_image,
.company-cards-wrapper .item a .entry_image {
    height: 219px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 360px;
    border-radius: 4px;
}
.company-cards-wrapper .item a .entry_image img {
    display: block;
    margin: 0;
    transition-duration: .3s;
}
.company-cards-wrapper .top-item a .entry_content .company,
.company-cards-wrapper div ul .item a .entry_content .company {
  border-bottom: 1px solid #d8d8d8;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 20px 0 15px;
}
.company-cards-wrapper .top-item a .entry_content,
.company-cards-wrapper div ul .item a .entry_content {
    background-color: #fff;
    border: 1px solid #dee2e9;
    border-radius: 6px;
    color: #444;
    padding: 13px 23px 25px;
    width: 90%;
    margin: -30px auto 0;
    z-index: 10px;
    position: relative;
}
.company-cards-wrapper .top-item a .entry_content h3,
.company-cards-wrapper div ul .item a .entry_content h3 {
    margin-bottom: 0;
    transition-duration: .3s;
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.company-cards-wrapper .top-item a .entry_content p,
.company-cards-wrapper div ul .item a .entry_content p {
    margin: 0;
    transition-duration: .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.company-cards-wrapper .top-item a .entry_content .info,
.company-cards-wrapper div ul .item a .entry_content .info {
    font-size: 12px;
    max-width: 100%;
}

.company-cards-wrapper .top-item a:hover h3, .company-cards-wrapper .top-item a:hover p,
.company-cards-wrapper .item a:hover h3, .company-cards-wrapper .item a:hover p {
  color: #92af75;
}

.for_sp{
  display: none;
}
@media screen and (max-width: 767px){
  .company-cards-wrapper {
    grid-template-columns: 1fr;
  }
  .company-cards-wrapper .item {
    width: 100%;
    padding-bottom: 40px;
    max-width: 374px;
  }
  .company-cards-wrapper .item a {
  padding-top: 54%;
  }
  .company-cards-wrapper .item a .entry_image {
    width: 95%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .company-cards-wrapper .item a .entry_content {
    height: auto;
    width: 85%;
  }
  .for_sp{
    display: block;
  }
}
/* CASE CHILD
 * ----------------------------------------------- */
.single-case .case_content_wrap {
  display: flex;
  justify-content: space-between;
  margin: 100px auto 0;
  max-width: 1200px;
  width: 95%;
}
.single-case .case_content_wrap .left_content {
  margin-right: 4.448%;
  max-width: 770px;
  width: 70%;
}
.single-case .case_content_wrap .center_content {
  margin: 4.448%;
}
.single-case .case_content_wrap .center_content img{
  box-shadow:5px 5px 5px #ccc;
  border: 1px solid #ccc;
}
.single-case .case_content_wrap .center_content h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #444;
  text-align: center;
}
.single-case .case_content_wrap .rigght_content {
  max-width: 360px;
  text-align: center;
  width: 30%;
}
.single-case .case_content_wrap .form_content {
  max-width: 360px;
  text-align: center;
  width: 30%;
  margin-bottom: 80px;
}
.single-case .case_content_wrap .form_content .text{
  font-size: 14px;
  margin: 10px;
}
.single-case .case_content_wrap .form_content .button a {
  background:#333;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 300px;
  padding: 15px 25px;
  font-family: "Noto Sans Japanese";
  font-weight: bold !important;
  text-decoration: none;
  color: #fff;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.single-case .case_content_wrap .form_content .button a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.single-case .case_content_wrap .form_content .button a:hover {
  background: #23ac53;
  color: #FFF;
  }.single-case .case_content_wrap .form_content 
.button a:hover:after {
  right: 1.4rem;
}


.single-case .case_content_wrap .left_content h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 52px;
  color: #444;
}
.single-case .case_content_wrap .left_content figcaption {
  text-align: center;
  font-size: 1.2rem;
    line-height: 3em;
}
.sticky{
  position: sticky;
  top: 100px;
}
.clearfix {
  zoom: 1;
}
.clearfix:after, .clearfix:before {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}
.case_outline {
  border: 1px solid #bfc7d5;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 24px;
  padding: 30px 0;
  width: 100%;
}
.case_outline h2 {
  text-align: center;
}
.case_outline h2 img {
  max-width: 200px;
  max-height: 100px;
  margin-bottom: 20px;
}
.case_about {
  margin: 0 auto;
  padding: 0 25px 25px;
  text-align: left;
}
.case_about dl {
  margin-bottom: 0.8em;
  padding: 0;
}
.case_about dd {
  line-height: 1.5;
  margin-left: auto;
  padding-left: 76px;
}
.case_about dt {
  font-weight: 700;
  color: #477a15;
  letter-spacing: 0;
  line-height: 1.5;
  width: 76px;
  float: left;
}
.case_outline .m_line {
  border-top: 1px solid #bfc7d5;
  margin: 0 15px;
  padding: 20px 10px 10px;
  font-weight: 700;
  color: #477a15;
  font-size: 14px;
  text-align: left;
}
.case_outline .m_topics {
  /*font-weight: 700;*/
  margin: 0 auto;
  padding: 0 25px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  color: #444;
}
.case_outline .m_topics li {
  margin-right: 2em;
}
.case_outline .m_topics li img {
 height: 20px;
}
.case_outline .m_topics li {
  margin-bottom: 8px;
}
.single-case .case_content_wrap .rigght_content .btn {
  font-size: 14px;
  margin: 16px 0 60px;
  padding: 12px;
  max-width: 280px;
  text-align: center;
  text-decoration: none!important;
  width: 100%;
  border-radius: 30px;
}

.single-case a.btn_bl {
  position: relative;
  display: inline-block;
  min-width: 200px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  background: rgb(99, 171, 28);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
}

.single-case .btn_bl:hover {
  background: #76cb22;
  
}
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.single-case p a{
  text-decoration: underline;
  color: #477a15;
}
.single-case p{
  line-height: 2;
  color: #444;
  font-size: 16px;
  margin: 0 0 20px;
}
section.l_interview{
  padding: 20px;

}
.single-case .case_content_wrap .left_content .l_interview h2 {
  border-left: 6px solid #477a15;
  font-size: 26px;
  font-weight: 700;
  margin-top: 75px;
  padding-left: 10px;
  text-align: left;
  margin-bottom: 20px;
  color: #444;
}
.single-case .case_content_wrap .left_content .l_interview .style-shr {
  color: #555;
  font-size: 18px;
  font-weight: 700;
  font-size: 18px;
}
.single-case .case_content_wrap .left_content .l_interview .style-shr:before {
  content: "\2015\2015";
  letter-spacing: -.2em;
  margin-right: 0.6em;
}
.single-case .case_content_wrap .left_content .l_interview .list_box{
  border: 1px solid #dee2e9;
  padding: 3%;
  line-height: 2.0em;
  border-radius: 6px;
}
.single-case .case_content_wrap .left_content .l_interview .list_box p {
  font-weight: bold;
}

section.l_interview strong {
  font-weight: bold;
}
.single-case .case_content_wrap .left_content .l_interview .interview_notion{
  font-size: 12px;
  color: #898989;
  text-align: right;
}
.relation_post{
  max-width: 100%;
  background-color: #f0fff0;
  padding: 3rem 2rem;
  padding-bottom: 0;
  max-width: 1200px;
  margin: 80px auto;
  border-radius: 6px;
}


.relation_post_ttl{
  color: #477a15;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.2em;
}

/* 関連記事セクション
================================= */
.relation_post {
  max-width: 100%;
  background-color: #f0fff0;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 80px auto;
  border-radius: 6px;
}

.relation_post_ttl {
  color: #477a15;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.5;
}

.relation_post_ttl h2 {
  margin: 0;
}

/* 以下を追加 */
.company-cards-wrapper.company-cards-grid {
  margin: 0;
}

.company-cards-wrapper.company-cards-grid > div {
  width: 100%;
}

.company-cards-wrapper.company-cards-grid ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-cards-wrapper.company-cards-grid .item {
  width: 100%;
  padding-bottom: 0;
  margin: 0;
}

.company-cards-wrapper.company-cards-grid .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.company-cards-wrapper.company-cards-grid .item a:hover {
  transform: translateY(-5px);
}

.company-cards-wrapper.company-cards-grid .item .entry_image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.company-cards-wrapper.company-cards-grid .item .entry_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-cards-wrapper.company-cards-grid .item .entry_content {
  width: 100%;
  margin: 0;
  border-radius: 0 0 8px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.company-cards-wrapper.company-cards-grid .item .entry_content h3 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  -webkit-line-clamp: 3;
}

.company-cards-wrapper.company-cards-grid .item .entry_content .company {
  font-size: 14px;
  margin-bottom: 10px;
  padding: 0 0 10px 0;
}

.company-cards-wrapper.company-cards-grid .item .entry_content .info {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.company-cards-wrapper.company-cards-grid .item .entry_content .info p {
  margin: 5px 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

/* 関連記事のボタンエリア */
.relation-button-area {
  text-align: center;
  margin-top: 50px;
}

.relation-more-btn {
  position: relative;
  display: inline-block;
  min-width: 300px;
  padding: 15px 50px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: #63ab1c;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.relation-more-btn:hover {
  background-color: #76cb22;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .company-cards-wrapper.company-cards-grid ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .relation_post {
    padding: 40px 20px;
    margin: 60px auto;
  }

  .relation_post_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .company-cards-wrapper.company-cards-grid ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-cards-wrapper.company-cards-grid .item .entry_image {
    height: 180px;
  }

  .relation-button-area {
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .relation-more-btn {
    width: 90%;
    max-width: 350px;
    min-width: auto;
    padding: 12px 40px;
    font-size: 1rem;
  }

  .relation-more-btn::after {
    width: 20px;
    height: 20px;
    right: 20px;
  }
}

.single-case a {
  color: #477a15;
  text-decoration: underline;
}

.case-summary {
  color: #444;
  border: 4px solid #34a775;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 40px;
}

.right_content{
  text-align: center;

}

@media screen and (max-width: 767px) {
  .case-summary {
    width: 90%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}


.case-summary .case-summary-list {
  display: flex;
  justify-content: center;
  padding: 0 5% 0 7%;
}

@media screen and (max-width: 767px) {
  .case-summary .case-summary-list {
    display: block;
    padding: 0 5%;
  }
}


.case-summary .case-summary-list li {
  position: relative;
  flex: 1;
  padding-top: 70px;
  padding-bottom: 40px;
  min-height: 260px;
}

@media screen and (max-width: 767px) {
  .case-summary .case-summary-list li {
    padding-top: 0;
    padding-bottom: 40px;
    min-height: auto;
  } 
}

@media screen and (max-width: 767px) {
  .case-summary .case-summary-list li:first-of-type {
    padding-top: 35px;
  }
}

.case-summary .case-summary-list li:nth-of-type(2) {
  margin: 0 6%;
}

@media screen and (max-width: 767px) {
  .case-summary .case-summary-list li:nth-of-type(2) {
    margin: 0;
  } 
}

.case-summary .case-summary-list li:not(:last-of-type) dl {
  background: url(/img/cases/case-summary-dot.png) no-repeat right/contain;
}

@media screen and (max-width: 767px) {
  .case-summary .case-summary-list li:not(:last-of-type) dl {
  background: url(/img/cases/case-summary-dot_sp.png) no-repeat bottom/contain;
    padding-bottom: 40px;
  } 
}

.case-summary .case-summary-list dl {
  height: 100%;
  padding: 6px 12% 6px 0;
}

@media screen and (max-width: 767px) {
.case-summary .case-summary-list dl { 
  padding: 0 8%;
}
  
}

.case-summary-list dt {
  font-size: 20px;
  font-weight: bold;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 44%;
  top: -50px;
  transform: translateX(-50%);
  background-color: #34a775;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .case-summary-list dt {
    position: relative;
    transform: translate(0);
    left: 0;
    top: 0;
    margin: 0 auto 30px;
    width: 90px;
    height: 90px;
  }
}

.case-summary-list dt span {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  white-space: nowrap
}

.case-summary .case-summary-list li:first-of-type dt {
  background-color: #6c8885;
}

.case-summary .case-summary-list li:nth-of-type(2) dt {
  background-color: #e6f4c6;
  color: #444444;
}


.case-summary-list dd {
  position: relative;
  font-size: 14px;
  text-indent: -1em;
}
.case-summary-list dd::before {
  content: "";
  /* position: absolute;
  left: -15px;
  top: 6px; */
  display: inline-block;
  margin-right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #34a775;
}

.case-summary .case-summary-list li:first-of-type dd::before  {
  content: "";
  background-color: #6c8885;
}

.case-summary .case-summary-list li:nth-of-type(2) dd::before {
content: "";
background-color: #e6f4c6;
}

.case-summary-list dd:not(:last-of-type) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .case-summary-list dd:not(:last-of-type) {
    margin-bottom: 15px;
  } 
}


@media only screen and (max-width: 767px){
  .for-pc {
    display: none;
  }
  .for_sp h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 52px;
    color: #444;
  }
  .single-case .case_content_wrap .rigght_content {
    max-width: 100%;
    width: 100%;
  }
  .single-case .case_content_wrap .form_content {
    text-align: center;
    width: 95%;
    margin:0 auto 80px;
  }
  .rigght_content{
    display: none;
  }
  .left_content {
    margin-right: 0;
    width: 100%;
  }
  .case_content_wrap{
    flex-direction: column;
    width: 100%;
    padding: 0 20px
  }
  .single-case .case_content_wrap .left_content {
    width: 100%;
  }
  .case_outline {
    margin-bottom: 60px;
  }

  .relation_post{
    width: 95%;
  }

  .relation_post_ttl {
    font-size: 24px;
    margin: 0 auto;
    width: 80%;
  }
  .company-cards-wrapper .item {
    margin: 0 auto;
  }
  .single-case .case_content_wrap .left_content .case_form_title {
    font-size: 28px;
  }
}



/* customer
 * ----------------------------------------------- */

.cases-top-title-2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 40px;
  color: #525252;
  position: relative;
}

.cases-top-title-2::after{
  position: absolute;
  content: "";
  height: 4px;
  width: 50px;
  background-color: #77cd21;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.customer {
  background-color: #f0fff0;
  margin-top: 50px;
}

.customer-inner {
  padding-top: 0px;
  padding-bottom: 0px;
}

.customer-read {
  text-align: center;
  margin-bottom: 50px;
}

.customer-read .sp-only {
  display: none;
}

.customer-box {
  background-color: #fff;
  text-align: center;
  padding: 60px 5%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 6px;
}


@media screen and (max-width: 767px){
  .customer-box {
    max-width: 500px;
    padding: 35px 5%;
  }

  .customer-inner {
    padding-top: 50px;
    padding-bottom: 70px;
    margin: 0 18px;
  }

  .customer-read {
    margin-bottom: 40px;
  }

  .customer-read .sp-only {
    display: block;
  }

}



/* loop_left
 * ----------------------------------------------- */
 @keyframes infinity-scroll-left1 {
  from {
    transform: translateX(100%);
  }
    to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left2 {
  from {
    transform: translateX(0%);
  }
    to {
    transform: translateX(-200%);
  }
}

  .scroll-infinity  {
    background-color: #ffffff;
    padding: 80px 0 60px;
  }
  @media screen and (max-width: 820px) {
  .scroll-infinity  {
    padding: 60px 0 40px;
  }

  }
  .scroll-infinity__wrap1 {
    display: flex;
    overflow: hidden;
    padding-bottom: 15px;
  }

  .scroll-infinity__wrap2 {
    display: flex;
    overflow: hidden;
  }


  .scroll-infinity__list {
    display: flex;
    list-style: none;
  }
  

  .scroll-infinity__item {
    width: calc(100vw /8);
  }
  @media screen and (max-width: 820px) {
    .scroll-infinity__item {
      width: calc(100vw /3);
    } 
  }

  .scroll-infinity__item>img {
    width: 70%;
  }

  @media screen and (max-width: 820px) {
    .scroll-infinity__item>img {
      width: 80%;
    } 
  }

  .scroll-infinity__list--left1 {
    animation: infinity-scroll-left1 70s  infinite linear -35s both;
  }
  .scroll-infinity__list--left2 {
    animation: infinity-scroll-left2 70s infinite linear 0s both;
  }
  

  
/* loop_right
 * ----------------------------------------------- */
 .scroll-infinity__list--right1{
  animation :infinity-scroll-right1 70s infinite linear -35s both;
}
.scroll-infinity__list--right2{
  animation :infinity-scroll-right2 70s infinite linear 0s both;
}


@keyframes infinity-scroll-right1 {
  from {
    transform: translateX(-100%);
  }
    to {
    transform: translateX(100%);
  }
  }

@keyframes infinity-scroll-right2 {
  from {
    transform: translateX(-200%);
  }
    to {
    transform: translateX(0%);
  }
}

.comparison-txt {
  color: #444;
  text-align: center;
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* topページの表 */
.c-commonTable3 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
}

.c-commonTable3 thead th {
  padding: 10px;
  border-right: 2px solid#F2F5F7;
}

.c-commonTable3 tbody th {
  color: #444;
  font-size: 16px;
  font-weight: bold;
  background-color: #d2e9d2;
  border: 2px solid #F2F5F7;
  padding : 15px;
}

.c-commonTable3 thead th:not(:first-child) {
  background: #63ab1c;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 16px 16px 0 0;
  padding: 10px;
}

.c-commonTable3 thead th span {
  font-size: 11px;
}

.c-commonTable3 thead th:nth-child(2) {
  background-color: #f9a826;
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.c-commonTable3 thead th:nth-child(2) img {
  max-width: 80%;
  margin: 15px 0;
}

.c-commonTable3 tbody tr {
  background-color: #FFF;
}

.c-commonTable3 td {
  border-left: 2px solid #F2F5F7;
  border-bottom: 2px solid #F2F5F7;
}

.c-commonTable3 td {
  color: #888;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  background-color: #FFF;
}

.c-commonTable3 td:nth-child(2) {
  color: #444;
  background-color: #FEE5C4;
  border-right: 5px solid #f9a826;
  border-left: 5px solid #f9a826;
  font-size: 30px;
  font-weight: bolder;
  text-align: center;
}

.c-commonTable3 tr:last-child td:nth-child(2) {
  border-bottom: 5px solid #f9a826;
}

/* スマホ用スクロール対応 */
@media screen and (max-width: 768px) {
  .c-commonTable3-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .c-commonTable3 {
    width: max-content; /* 表全体の横幅を保ちつつスクロール可能に */
    min-width: 600px;    /* 必要に応じて調整 */
  }

  .c-commonTable3 tbody th,
  .c-commonTable3 thead th:nth-child(2)  {
    max-width: 100px;
  }

  .c-commonTable3 tbody th {
    font-size: 0.9rem;
  }
}

/* SPのみ改行　*/
.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: inline; /* または block */
  }
}

@media (min-width: 1280px) {
  #hamburger-menu-container{
    display: none;
  }
}

@media (max-width: 1279px) {
  .den-hamburger-btn {
      position: fixed;
      top: 10px;
      right: 20px;
      z-index: 1001;
      background: #7cb545;
      border: none;
      width: 50px;
      height: 50px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .den-hamburger-btn span {
      display: block;
      width: 25px;
      height: 2px;
      background: white;
      margin: 3px 0;
      border-radius: 2px;
  }

  .den-hamburger-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .den-hamburger-btn.active span:nth-child(2) {
      opacity: 0;
  }

  .den-hamburger-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }

  /* オーバーレイ */
  .den-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
  }

  .den-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* サイドバーメニュー - 右側から表示 */
  .den-sidebar {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100vh;
    background: #7cb545;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); /* 影を左側に */
    transition: right 0.3s ease;
  }

@media (max-width: 767px) {
  .den-sidebar {
    width: 90%;
    right: -90%;
  }
}

@media (max-width: 480px) {
  .den-sidebar {
    width: 95%;
    right: -95%;
  }
}

  .den-sidebar.active {
    right: 0; /* 右端に表示 */
    padding-top: 4rem;
    }

  /* 閉じるボタン - 左上に配置 */
  .close-btn {
    position: absolute;
    top: 20px;
    left: 20px; /* 左上に配置 */
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }

  /* メニューアイテム */
  .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }
  
  .menu-item:last-child{
    border-bottom:none;
  }


  .menu-item > a, .menu-item > button {
    display: block;
    padding: 20px 30px !important;
    color: white;
    text-decoration: none;
    font-size: 1.1rem !important;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 100% !important;
    text-align: left;
    justify-content: left !important;
  }

  /* アコーディオンアイテム */
  .accordion-item {
    position: relative;
  }

  .accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.accordion-toggle::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    position: absolute;
    right: 30px;  
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.3s ease;
}

.accordion-toggle.active::after {
    transform: translateY(-50%) rotate(-45deg);
}

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
  }

  .accordion-content.active {
    max-height: 300px;
  }

  .accordion-content a {
    display: block !important;
    padding: 15px 50px !important;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width:100% !important;
  }

  .accordion-content a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .accordion-content a:last-child {
    border-bottom: none;
  }

  /* .den-sidebar .menu-item > .contact-btn-sp {
    background: white;
    color: #8BC34A;
    border: none;
    font-weight: bold;
  } */
}
