@charset "UTF-8";

/**
 * ***************************************
 * ボタン
 * ***************************************
 */
/* WordPress標準ボタンのデザイン統一＋余白 */
.wp-block-button {
  margin-top: 1em;
}

.wp-block-button__link {
  color: #ffffff !important;        /* 白文字に */
  text-decoration: none !important; /* 下線なし */
  font-weight: bold;
  background-color: #333333;        /* 背景色（任意で変更可） */
  border-radius: 30px;
  padding: 0.6em 1.2em;
  display: inline-block;
  transition: 0.2s ease;
  margin-top: 1em;
  margin-bottom: 1.5em;
}

.wp-block-button__link:hover {
  opacity: 0.85;
  text-decoration: none;
}




/**
 * ***************************************
 * ブログのサイドバー
 * ***************************************
 */

.heading-12 {
    position: relative;
    max-width: 330px;
    font-size: 26px;
    width: 290px;
    margin: 0 auto;
    padding: .5em .7em;
    background-color: #2589d0;
    color: #fff;
    text-align: center;
}

.heading-12::before,
.heading-12::after {
    position: absolute;
    bottom: -10px;
    z-index: -1;
    border-style: solid;
    border-color: #1579c0;
    content: '';
}

.heading-12::before {
    left: -30px;
    border-width: 25px 25px 25px 15px;
    border-left-color: transparent;
}

.heading-12::after {
    right: -30px;
    border-width: 25px 15px 25px 25px;
    border-right-color: transparent;
}

.heading-12 span::before,
.heading-12 span::after {
    position: absolute;
    bottom: -10px;
    width: 10px;
    height: 10px;
    background-color: #002970;
    content: '';
}

.heading-12 span::before {
    left: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 100%);
}

.heading-12 span::after {
    right: 0;
    clip-path: polygon(0 0, 100% 0%, 0% 100%);
}




/**
 * ***************************************
 * お問い合わせ
 * ***************************************
 */
.strength-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
  font-size: 16px;
  color: #222;
}

.strength-content h3 {
  margin-top: 2em;
  margin-bottom: 0.6em;
  color: #222;
  font-size: 18px;
  font-weight: bold;
  border-left: 4px solid #90C31F;
  padding-left: 10px;
}

.strength-content ul {
  list-style-type: disc !important;
  padding-left: 1.6em !important;
  margin-top: 0.5em;
  margin-bottom: 1.2em;
}

.strength-content li {
  margin-bottom: 0.4em;
}



/**
 * ***************************************
 * ヘッダー
 * ***************************************
 */
.header-fixed-title {
    font-size: 20px;
    font-weight: 600;
}
/* .header-fixed {
    padding-left: 150px;
} */
.header-line3 {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-left: 150px;
    padding-right: 50px;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    white-space: nowrap;
}
.header-line3 .header-left3 .header-left3-item {
    position: relative;
    padding-right: 15px;
}
.header-left3 ul {
    padding: 0;
}
.header-line3 .header-left3 .flex {
    display: flex;
    column-gap: 15px;
}

.header-right3 {
    width: 70%;
    height: 100%;
    margin-right: 40px;
}

.header-right3 ul {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin: 0;
}

.header-right3 ul li {
    margin-left: 30px;
}



@keyframes headerfff {
    0% {
        transform: scale(1.1)
    }

    50% {
        transform: scale(1.3)
    }

    100% {
        transform: scale(1.1)
    }
}
@media only screen and (max-width: 1024px) {
    .header-inner-bk::before {
        height: 115px;
        width: 100%;
    }
    .header-line3 {
        margin-top: 25px;   
        padding: 10px 40px;
        font-size: 16px;
    }
    .header-right3 {
        margin: 0;
    }

}

/**
 * ***************************************
 * solution
 * ***************************************
 */
.solution-main {
    /* margin-bottom: -150px; */
    background: var(--sub-background-color);
}
.solution-pv {
    overflow: hidden;
}
.solution-pv-inner {
    position: relative;
    background-image: url(../img/light/system.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 200px;
}
.solution-pv-text {
    position: absolute;
    left: 110px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 5px 40px;
}
.solution-pv-text h2 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}
.solution-guide-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.solution-guide-inner h2 {
    font-weight: normal;
    padding: 60px 20px 40px 20px;
    margin: 0;
}
.guide-subtext {
    font-weight: 600;
    font-size: 20px;
}
.guide-flex {
    margin: 40px auto;
    display: flex;
    column-gap: 20px;
    row-gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}
.guide-item {
    text-align: left;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: start;
    column-gap: 10px;
    width: 32%;
    align-items: center;
}
.guide-img {
    width: 40%;
}
.guide-text {
    width: 60%;
}
@media only screen and (max-width: 1024px) {
    .solution-pv-text {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .solution-guide-inner h2 {
        padding: 30px 20px 20px 20px;
        font-size: 20px;   
    }
    .guide-subtext {
        font-size: 16px;   
    }
    .guide-flex {
        justify-content: space-between;
        row-gap: 25px;
        padding: 0 20px;   
    }
    .guide-item {
        width: 46%;
    }
    .guide-text {
        font-size: 14px;   
    }
    .solution-main {
        margin-bottom: -80px;
    }
}

/**
 * ***************************************
 * any-lights
 * ***************************************
 */
.any-pv {
    /*overflow: hidden;*/
    height: auto; /* または max-height に変更もOK */
    padding-bottom: 0;
    margin-bottom: 0;
}


.any-pv + .next-section {
  margin-top: -50px; /* 必要なら隙間を詰める */
}

.any-pv-inner {
    position: relative;
    background-image: url(../img/light/anylights-top.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    /*
    height: 1000px;
    */
    height: 100vh;
}

.any-pv-text {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 40px;
}
.any-pv-text h1 {
    font-size: 33px;
    font-weight: 700;
    margin: 0;
}
.any-pv-inner::before {
    position: absolute;
    content: "";
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/light/anylights-icon.webp) ;
    background-size: cover;
    background-repeat: no-repeat;
    width: 300px;
    height: 300px;
}

@media only screen and (max-width: 1024px) {
    .any-pv-inner {
        height: 700px;
    }
}

/**
 * ***************************************
 * solution goods
 * ***************************************
 */
.solution-goods {
    overflow: hidden;
}
.solution-goods-inner {
    max-width: 1000px;
    margin: 60px auto;
    border: 1px solid var(--main-font-color);
}
.solution-goods-pv {
    background-color: var(--main-green);
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    padding: 15px;
}
.solution-goods-inner h2 {
    padding: 20px 15px;
    margin: 0;
}
.solution-goods-sub {
    padding: 0 15px 30px 15px;
    font-size: 18px;
}
.solution-goods-sub2 {
    padding: 30px 15px;
    font-size: 18px;
}
.solution-goods-sub2 p{
    font-size: 14px;
}
.solution-goods-flex {
    display: flex;
    padding: 0 20px 60px 20px;
    align-items: start;
    justify-content: center;
    column-gap: 40px;
}
.solution-goods-img {
    width: 50%;
}
.solution-goods-img2 img {
    width: 95%;
    margin: 0 15px 20px 15px;
    box-shadow: 1px 2px 4px #1A1A1A;
}
.solution-goods-text {
    width: 50%;
}
.solution-goods-t-t {
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}
.solution-goods-guide {
    padding: 50px 0 30px 0;
    display: flex;
    column-gap: 20px;
    row-gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.solution-goods-item {
    width: 30%;
}
.solution-goods-item img {
    width: 80%;
    height: auto;
}
.solution-btn-inner {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.solution-btn {
    position: relative;
    padding: 15px 80px 15px 60px;
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    background-color: var(--main-green);
    width: fit-content;
}
.solution-btn::before {
    position: absolute;
    content: "";
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-top: 12px solid #fff;
    border-right: 8px solid transparent;
}
.solution-goods:last-child {
    padding-bottom: 60px;
}
.solution-btn-inner:last-child {
    margin: 30px 0;
}
@media only screen and (max-width: 1024px) {
    .solution-goods-inner {
        margin: 30px 20px;
        border: 0;
    }
    .solution-goods-pv {
        font-size: 18px;   
        padding: 15px 10px;
    }
    .solution-goods-sub {
        font-size: 15px;   
        padding: 0 0 30px 0;
    }
    .solution-goods-flex {
        flex-direction: column;
        padding: 0 0 60px 0;
    }
    .solution-goods-img {
        width: 100%;
        margin: 0;
    }
    .solution-goods-text {
        width: 100%;
        margin-top: 30px;
    }
    .solution-goods-guide {
        padding: 30px 0 20px 0;
        column-gap: 5px;
    }
    .solution-goods-inner h2 {
        padding: 20px 0;
        font-size: 20px;
    }
    
}

.any-inner .wapper {
    padding: 20px;
}
.any-inner .solution-goods-flex {
    padding: 0;
}
.any-inner .solution-goods-text {
    margin-top: 50px;
}
.any-inner h2 {
    text-align: center;
    font-weight: 500;
    font-size: 29px;
}
.any-inner h3 {
    margin: 30px 0;
    padding-left: 20px;
    position: relative;
    font-size: 25px;
}
.any-inner h4 {
    font-size: 20px;
}
.any-inner h3::before {
    position: absolute;
    content: '';
    top: -4px;
    left: 0;
    width: 5px;
    height: 35px;
    background-color: var(--main-background-color);
}
.any-inner .flex {
    display: flex;
    column-gap: 20px;
    margin-bottom: 80px;
}
.any-inner .flex .text {
    width: 50%;
}
.any-inner .flex .img {
    width: 50%;
}
.any-inner .question {
    position: relative;
    font-weight: 500;
    padding-left: 35px;
}
.any-inner .question::before {
    position: absolute;
    left: 0px;
    top: -2px;
    content: "";
    background: url(../img/light/icon_faq_q.svg) no-repeat left top;
    background-size: 26px;
    width: 26px;
    height: 26px;
    /* display: inline-block; */
    vertical-align: middle;
    margin-right: 15px;
}
.any-inner .answer {
    position: relative;
    margin-top: 10px;
    margin-bottom: 40px;
    padding-left: 35px;
}
.any-inner .answer::before {
    position: absolute;
    content: "";
    left: 0px;
    top: -2px;
    background: url(../img/light/icon_faq_a.svg) no-repeat left top;
    background-size: 26px;
    width: 26px;
    height: 26px;
    /* display: inline-block; */
    vertical-align: middle;
    margin-right: 15px;
}
@media only screen and (max-width: 1024px) {
    .any-inner .wapper {
        padding: 20px 0;
    }
    .any-pv-text h1 {
        font-size: 26px;
    }
    .any-pv-text {
        padding: 10px;   
    }
    .any-pv-inner::before {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .any-inner h2 {
        font-size: 20px;
    }
    .any-inner h3 {
        font-size: 20px;
    }
    .any-inner .flex {
        flex-direction: column;
    }
    .any-inner .flex.reverse {
        flex-direction: column-reverse;   
    }
    .any-inner .flex .text,
    .any-inner .flex .img {
        width: 100%;
    }
}

/**
 * ***************************************
 * batteryless
 * ***************************************
 */
.batteryless .solution-pv-inner {
    background: url(../img/batteryless/bg_products.webp);
    background-size: cover;
    background-position: 50% 90%;
    min-height: 620px;
    height: auto;
}
.batteryless .solution-pv-wrap {
    margin: 0px auto;
    width: 1000px;
    padding: 40px 0px;
    text-align: center;
    color: #fff;
}
.batteryless .solution-pv-wrap h1 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 300;
}
.batteryless .solution-pv-wrap h2 {
    font-size: 44px;
    margin: 0 0 30px;
    font-weight: 400;
}
.batteryless .solution-pv-wrap .flex {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    /* column-gap: 50px; */
}
.batteryless .solution-pv-wrap .flex .right h2 {
    margin-bottom: 10px;
    text-align: left;
    font-size: 37px;
    font-weight: 300;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}
.batteryless .solution-pv-wrap .flex .right .subtext {
    text-align: left;
    padding-left: 5px;
    margin-bottom: 15px;
    font-weight: 300;
    color:#fff;
    font-size: 18px;
    margin-top: 0;
}
.batteryless .solution-pv-wrap .flex-ul {
    display: flex;
    margin-top: 40px;
    column-gap: 30px;
    padding-left: 0;
}
.batteryless .solution-pv-wrap .flex-ul li {
    width: 153px;
    height: 153px;
    background: #41B739;
    border: 9px solid #62D62F;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}
.batteryless .solution-pv-wrap .flex-ul li div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 125px;
    width: 153px;
    font-size: 24px;
    color: #fff;
    font-weight: 200;
    line-height: 120%;
}
.batteryless .solution-goods-pv {
    font-size: 29px;
    text-align: center;
}
.batteryless .solution-goods-flex {
    padding: 40px 20px 40px 20px;
}
.batteryless .solution-goods-text p{
    font-size: 18px;
}
.batteryless .solution-goods-t-t {
    padding-left: 30px;
    margin-bottom: 40px;
    font-size: 25px;
    text-align: left;
    position: relative;
}
.batteryless .solution-goods-t-t::before {
    position: absolute;
    content: '';
    top: -10px;
    left: 0;
    width: 10px;
    height: 45px;
    background-color: var(--main-background-color);
}
@media only screen and (max-width: 1024px) {
    .batteryless .solution-pv-inner {
        background-position: 50% 50%;
        padding: 10px 0 30px 0;
    }
    .batteryless .solution-pv-wrap {
        margin: 30px 15px 30px 15px;
        width: auto;
        padding: 0;
    }
    .batteryless .solution-pv-wrap h2 {
        font-size: 32px;
    }
    .batteryless .solution-pv-wrap .flex {
        flex-direction: column-reverse;
        margin-top: 30px;
        row-gap: 20px;
    }
    .batteryless .solution-pv-wrap .flex .right h2 {
        font-size: 27px;
        text-align: center;
    }
    .batteryless .solution-pv-wrap .flex .right .hidden {
        display: block;
    }
    .batteryless .solution-pv-wrap .flex .right .subtext {
        font-size: 16px;
        text-align: center;
        line-height: 1.5;
        font-weight: 400;
    }
    .batteryless .solution-pv-wrap .flex-ul {
        width: 320px;
        column-gap: 10px;
    }
    .batteryless .solution-pv-wrap .flex-ul li {
        width: 95px;
        height: 95px;
        border: 3px solid #62D62F;
        margin: 0px 5px;
    }
    .batteryless .solution-pv-wrap .flex-ul li div {
        height: 85px;
        width: 95px;
        font-size: 15px;
        line-height: 120%;
        font-weight: 400;
    }
    .batteryless .solution-goods-pv {
        font-size: 20px;
    }
    .batteryless .solution-goods-flex {
        padding: 0 0 20px 0;
    }
    .batteryless .solution-goods-text p {
        font-size: 16px;
    }
    .batteryless .solution-goods-t-t {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .batteryless .solution-goods-t-t::before {
        width: 8px;
        height: 40px;
    }
}
/**
 * ***************************************
 * news
 * ***************************************
 */
.news-list-inner {
    max-width: 1000px;
    padding: 60px 30px;
    margin: 0 auto;
}
.news-sinner {
    text-align: left;
    padding: 80px 30px;
    width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.news-sinner h2 {
    margin-bottom: 30px;
}
.news-sinner a,
.blog-content a {
    color: #2997FF;
    text-decoration: underline;
}

.news-sinner ul,
.blog-content ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 28px;
}

.news-sbtn {
    margin-top: 80px;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .news-sinner {
        width: 100%;
        padding: 30px 20px 60px 20px;
    }
    .news-inner::before,
    .news-inner::after {
        content: none;
    }
    .news-block .pagination {
        margin: 10px 0 0 0 ;
    }
}

/**
 * ***************************************
 * blog
 * ***************************************
*/
.blog-inner h1,
.case-title h1,
.news-sinner h1 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 80px;
}


@media only screen and (max-width: 1024px) {
.blog-inner h1,
.case-title h1,
.news-sinner h1 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 80px;
    text-align: left;
}
}




.blog-list,
.blog-section {
    overflow: hidden;
    /* margin-bottom: -150px; */
}

.blog-header {
    background: var(--main-background-color);
    padding: 40px 0;
    text-align: center;
    color: #fff;
    font-size: 35px;
    letter-spacing: 3px;
}

.blog-list-inner,
.blog-inner {
    background: var(--sub-background-color);
    padding: 60px 30px;
}

.blog-list-flex,
.blog-flex {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: auto;
    column-gap: 40px;
}
.blog-left {
    max-width: 860px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    column-gap: 20px;
    width: 78%;
    padding-left: 0;
    height: fit-content;
}

.blog-l-left {
    max-width: 860px;
    width: 78%;
}
.blog-l-left ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    column-gap: 20px;
    padding-left: 0;
    height: fit-content;
}

.blog-cat-left {
    max-width: 860px;
    width: 78%;
    padding-left: 0;
    height: fit-content;
}

.blog-cat-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    column-gap: 20px;
    padding-left: 0;
}

.blog-l-cell {
    width: calc(33% - 20px);
    margin: 0 0 20px;
}

.blog-l-cell-link {
    background: #fff;
    border-radius: 10px;
    display: block;
    position: relative;
}

.blog-l-img {
    position: relative;
    padding-top: 52.380952381%;
    overflow: hidden;  
}

.blog-l-img:hover img {
  transform: scale(1.05);
}

.blog-l-img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    object-position: center;
}

.blog-l-context {
    padding: 20px;
    position: relative;
}

.blog-l-context h2 {
    font-size: 16px;
    line-height: 1.5;
}

.blog-l-title {
    height: 100px;
    overflow: hidden;
}

.blog-l-date {
    font-size: 12px;
    color: #989898;
    margin: 10px 0 0;
}

.blog-l-right,
.blog-right {
    width: 22%;
}

.blog-left {
    background: #fff;
    border-radius: 10px;
    padding: 60px;
    display: block;
}

.blog-img img {
    width: 100%;
    height: auto;
}

.blog-date {
    font-size: 16px;
    color: #989898;
    margin: 16px 0 0;
}

.blog-cat {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: start;
    align-items: center;
    padding: 0;
}

.blog-cat-item {
    margin-right: 10px;
}

.blog-cat-item a {
    /* サイドバーに必要な見た目だけ記述 */
    background-color: #272727;
    color: #fff;
    padding: 0.4em 1em;
    border-radius: 30px;
    font-size: 0.8em;
    text-decoration: none;
    display: inline-block;
}


/* スマホ用（〜767px） */
@media screen and (max-width: 767px) {
  .category-select .tab-content .item1 a {
    font-size: 14px !important;
  }
}

/* PC用（768px〜） */
@media screen and (min-width: 768px) {
  .category-select .tab-content .item1 a {
    font-size: 18px;
  }
}



.category-select .tab-content .item1 a {
  margin: 0px 5px 0px 5px !important;
  background-color: #fff;
  color: #272727;
  border: 1px solid #272727;  /* ← これが効く */
  display: inline-block;
  border-radius: 11px;
  padding: 4px 10px 6px 10px;
}

.category-select .tab-content .item1 a.active {
  background-color: #272727;
  color: #fff;
}

.case-button a {
  font-size: 18px;
  margin: 0px 5px 0px 5px !important;
  background-color: #fff;
  color: #272727;
  border: 1px solid #272727;
  display: inline-block;
}

.case-button a.active {
  background-color: #272727;
  color: #fff;
}

.blog-content h2 {
    background: #00A040;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 40px;
}

.blog-content h3 {
    padding: 10px 0 10px 10px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 30px;
    background: #fffaea;
    border-left: 2px solid #00A040;
}

.blog-content .point-list {
    position: relative;
    background: #FFFDE7;
    border-width: 2px;
    border-radius: 5px;
    margin: 25px 0;
    padding: 0 20px;
    border: solid 2px #FFD54F;
}
.blog-content .point-list .title {
    color: #FFD54F;
    text-shadow: #fff 3px 0px 0px, #fff 2.83487px 0.981584px 0px, #fff 2.35766px 1.85511px 0px, #fff 1.62091px 2.52441px 0px, #fff 0.705713px 2.91581px 0px, #fff -0.287171px 2.98622px 0px, #fff -1.24844px 2.72789px 0px, #fff -2.07227px 2.16926px 0px, #fff -2.66798px 1.37182px 0px, #fff -2.96998px 0.42336px 0px, #fff -2.94502px -0.571704px 0px, #fff -2.59586px -1.50383px 0px, #fff -1.96093px -2.27041px 0px, #fff -1.11013px -2.78704px 0px, #fff -0.137119px -2.99686px 0px, #fff 0.850987px -2.87677px 0px, #fff 1.74541px -2.43999px 0px, #fff 2.44769px -1.73459px 0px, #fff 2.88051px -0.838246px 0px;
    position: absolute;
    display: inline-block;
    top: -1.8em;
    left: 10px;
    padding: 0 10px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-content .point-list .point-list-inner ul li {
    margin: 7px 0;
}

.blog-cat-title {
    font-size: 28px;
    background: #fff;
    line-height: 1.5;
    padding: 20px 30px;
    margin: 0 0 40px;
    border-radius: 10px;
}

.blog-cat-title h2 {
    margin-bottom: 0;
}

.blog-cat-title span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #ffd200;
}

.blog-content .list-pink {
    display: inline-block;
    margin: 25px 0 0 0;
    padding: 8px 10px;
    border: none;
    border-radius: 7px 7px 0 0;
    background: #f89174;
    color: #fff;
    font-size: 15px;
}

.blog-content .list ul {
    list-style: none;
    margin: 0 0 25px;
    padding: 10px;
    border: solid 2px #f89174;
    border-radius: 0 3px 3px;
    background: #fffbf4;
    line-height: 1.6;
}

.blog-content .list ul li {
    position: relative;
    margin: 7px 0;
    padding-left: 25px;
}

.blog-content .list ul li::before {
    position: absolute;
    top: 10px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f89174;
    content: "";
}

.blog-content .list ol {
    list-style: none;
    margin: 0 0 50px;
    padding: 10px;
    border: solid 2px #f89174;
    border-radius: 0 3px 3px;
    background: #fffbf4;
    line-height: 1.6;
    counter-reset: number;
}

.blog-content .list ol li {
    position: relative;
    margin: 7px 0;
    padding-left: 35px;
}

.blog-content .list ol li::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f89174;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    content: counter(number);
    counter-increment: number;
}

.blog-image-shadow {
    box-shadow: 0 0 5px #333;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
 }

.pagination {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
}

.pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #333;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background: var(--main-background-color);
}

.pagination .current {
    background: #333;
    color: #fff;
}

.pagination .prev,
.pagination .next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    background: #ffd200;
    border-radius: 20px;
    box-sizing: border-box;
}

.pagination .dots {
    background: transparent;
    box-shadow: none;
}

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

    .blog-inner h1 {
        font-size: 16px;
    }
    .blog-content h2 {
        font-size: 16px;
        line-height: 1.8rem;
    }

    .blog-list-flex,
    .blog-flex {
        flex-direction: column;
    }

    .blog-l-left,
    .blog-l-cell,
    .blog-l-right,
    .blog-left,
    .blog-right,
    .blog-cat-left {
        width: 100%;
    }
    .blog-l-right {
        margin-top: 30px;   
    }
    .pagination {
        margin: 0;   
    }
    .pagination .prev,
    .pagination .next {
        display: none;
    }

    .blog-left {
        padding: 20px;
    }

    .blog-inner {
        padding: 0;
    }
    
    .blog-list-inner {
        padding: 30px 20px;
    }
    .blog-list,
    .blog-section {
        margin-bottom: -50px;
    }
}

/**
 * ***************************************
 * case
 * ***************************************
*/
#inline {
    display: inline-block;
}

.case-header {
    background: var(--main-background-color);
    padding: 40px 0;
    text-align: center;
}

.case-subText {
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
}

.case-subText::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 23px;
    background: #fff;
    height: 3px;
}

.case-mainText {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 3px;
}

.case-title {
    padding: 80px 0 0 0;
    max-width: none;
    text-align: center;
}

.case-title.page-title {
    font-size: 35px;
}

.case-img {
    overflow: hidden;
}
.case-img img {
    width: 100vw;
    max-width: 1200px;
    height: auto;
}

.case-term {
    margin-top: 50px;
}

.case-term-inner {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.project-meta {
    text-align: left;
    margin: 1em 0;
    color: #666;
    line-height: 1.4em;
}

.project-client {
    border-left: 0;
    padding: 0;
    margin: 0;
    display: inline-block;
    font-size: 1.1em;
}

.project-meta strong {
    color: #000;
    display: block;
    font-weight: 600;
    font-size: .8em;
    letter-spacing: .1em;
    margin-bottom: 0.4em;
    text-transform: uppercase;
}

.project-servies,
.project-date,
.project-view {
    border-left: 1px solid rgba(0, 0, 0, .05);
    display: inline-block;
    font-size: 1.1em;
    padding: 0 1em;
    margin: 0 0.5em;
}

.case-summary,
.case-media,
.case-show,
.case-system {
    margin: 60px 0;
    position: relative;
}

.case-system::before {
    position: absolute;
    content: "";
    top: -100px;
    right: 5%;
    background-image: url(./img/case-system.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
}

.case-sum-inner {
    width: 800px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 40px 60px;
}

.case-sum-inner h2 {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #DBDBDB;
}

.case-sum-inner p {
    font-size: 16px;
}

.case-media-inner,
.case-system-inner {
    text-align: center;
}

.case-media-inner h2,
.case-system-inner h2 {
    margin-bottom: 60px;
    position: relative;
}

.case-media-inner h2::before,
.case-system-inner h2::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 23px;
    background: var(--main-background-color);
    height: 3px;
}
.case-system-inner img {
    border:1px solid #e3e3e3;
}

.case-show {
    background: var(--main-background-color);
    overflow: hidden;
}

.case-show-inner {
    max-width: 1200px;
    padding: 60px;
    margin: 60px auto;
    background-color: #fff;
}

.case-show-flex {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 50px;
}

.case-show-cell {
    width: 30%;
}

.case-show-cell h3 {
    text-align: center;
    margin-bottom: 20px;
}

.case-system-inner {
    width: 800px;
    margin: 0 auto;
}
.case-system-inner .text {
    text-align: left;
}

.case-list {
    background: var(--sub-background-color);
    /* margin-bottom: -150px; */
}

.case-list-inner{
    max-width: 1400px;
    padding: 60px 30px;
    margin: 0 auto;
}

.case-l-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    column-gap: 30px;
    width: 100%;
    padding-left: 0;
    height: fit-content;
}

.case-l-cell {
    width: calc(33% - 30px);
    margin: 0 0 20px;
}

.case-l-cell .blog-l-title {
    height: 80px;
}

.case-l-cell .blog-l-title h2 {
    margin-bottom: 0;
}

.case-cat-title {
    display: inline-block;
    font-size: 2.4rem;
    padding: 0 0 10px;
    margin: 0 0 60px;
    border-bottom: 4px solid var(--main-background-color);
}

.case-cat-title h2 {
    margin-bottom: 0;
}

.flex {
    display: flex;
}
.page-navi {
    width: 800px;
    margin: 80px auto;
}
.page-navi-inner .flex {
    justify-content: center;
    column-gap: 6px;
}
.page-navi-inner a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 50px;
    background: #ffd200;
    border-radius: 20px;
    box-sizing: border-box;
}
.page-navi-inner .left a {
    width: 80px;
    border-radius: 20px 0 0 20px
}
.page-navi-inner .middle a { 
    border-radius: 0;
}
.page-navi-inner .right a {
    width: 80px;
    border-radius: 0 20px 20px 0;
}

@media only screen and (max-width: 1024px) {
    .case-title {
        padding: 30px 20px 0 20px;
    }

    .case-img img {
    transform: translate(-15%, 0%);
    /* position: absolute; */
    width: 300%;
    height: auto;
    max-width:550px;
        /* transform: scale(1.6); */
    }

    .case-term {
        margin-top: 30px;
    }

    .case-term-inner {
        padding: 0 20px;
        margin: 0;
    }

    .project-client {
        border-left: 1px solid rgba(0, 0, 0, .05);
    }

    .project-client,
    .project-servies,
    .project-date,
    .project-view {
        margin-left: 0;
        padding: 0 1em 15px;
        font-size: .9em;
        float: none;
        display: block;
    }

    .case-summary,
    .case-media,
    .case-show,
    .case-system {
        margin-top: 30px;
    }

    .case-sum-inner {
        width: 100%;
        padding: 40px 20px;
    }

    .case-media-inner {
        padding: 0 20px;
    }

    .case-show {
        background: #fff;

    }

    .case-show-flex {
        flex-direction: column;
    }

    .case-show-cell {
        width: 100%;
    }

    .case-show-inner {
        padding: 0 20px;
    }

    .case-system-inner {
        width: 100%;
        padding: 0 20px;
    }

    .case-l-flex {
        flex-direction: column;
    }

    .case-l-cell {
        width: 100%;
    }
    .case-mainText {
        font-size: 20px;
    }
    .case-subText {
        font-size: 16px;
    }
    .case-list {
        margin-bottom: -50px;
    }
    .page-navi { 
        width: 100%
    }
}

/**
 * ***************************************
 * side bar
 * ***************************************
*/
.sidebar-inner {
    overflow: hidden;
    text-align: center;
}

.sidebar-link img {
    border-radius: 10px;
}

.sidebar-inner ul {
    padding-left: 0;
    margin-top: 0;
}

.sidebar-inner>ul>li {
    margin-bottom: 40px;
}

.sidebar-text {
    font-size: 14px;
    margin-top: 10px;
}

.sidebar-cell .border img {
    border: 2px solid #fff;
}

.sidebar-cats-title {
    margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
    .sidebar-inner {
        padding: 20px;
    }
}

/**
 * ***************************************
 * company 会社案内
 * ***************************************
*/
.company {
    line-height: 1.7;
}

.company section {
    padding: 50px 0;
}
.company .title {
    text-align: center;
    line-height: 1;
}
.company .title .subh2 {
    color: #8ec31f;
}

.company ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.company table {
    margin-bottom: 80px;
    border-collapse: collapse;
}

.company th {
    position: relative;
    padding: 6px 15px;
    border-bottom: 1px solid #ccc;
    color: var(--main-green2);
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.company th::before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 20px;
    margin: auto;
    background: var(--main-green2);
    content: "";
}

.company td {
    position: relative;
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
}
.company .header {
    height: 300px;
    padding: 0;
    background: no-repeat url("../img/company/header.jpg");
    background-position: right 35% bottom 31%;;
    background-size: cover;
}

.company .profile {
    padding-bottom: 0;
}
.company .inner {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

.company .profile iframe {
    display: block;
    width: 100%;
    height: 300px;
}

.company .client {
    background: #f3f9fd;
}

.company .client ul>li {
    margin-bottom: 20px;
    padding: 15px;
    border-right: 1px solid #03497c;
    border-bottom: 1px solid #03497c;
    background: linear-gradient(135deg, #fff 90%, #e7f0f5 0);
}

.company .history {
    padding-bottom: 0;
}

.company .history .image {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/company/image.jpg") 65% 70% no-repeat;
    background-size: cover;
}

.company .media {
    padding-bottom: 10px;
}

.company .media-inner {
    padding: 0 10px;
}

.company .media ul {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.company .media ul li {
    width: 21%;
    max-width: 200px;
    margin: 0 2% 40px;
}

.company .media ul li:last-of-type {
    margin-bottom: 0;
}

.company .media ul .image {
    display: flex;
    height: 52vw;
    max-height: 260px;
    margin-bottom: 15px;
    justify-content: center;
    align-items: center;
}

.company .media ul h3 {
    margin: 0;
    color: var(--main-green2);
    font-size: 15px;
}

.company .media ul span {
    font-size: 14px;
}
@media only screen and (min-width: 1025px) {
.company .media ul li {
        margin-right: 18px;
        margin-left: 18px;
    }

    .company .media ul h3 {
        font-size: 16px;
    }

    .company .media ul span {
        font-size: 15px;
    }

    .company section {
        padding: 100px 0;
    }

    .company th {
        padding: 15px 20px;
    }

    .company td {
        padding: 15px 20px;
    }

    .company td::before {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 2px;
        height: 20px;
        margin: auto;
        background: #8ec31f;
        content: "";
    }

    .company .client ul {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }

    .company .client ul>li {
        width: 49%;
    }

    .company .history th span {
        display: inline-block;
        width: 38px;
        text-align: right;
    }

    .company .media {
        padding-bottom: 60px;
        background: #f3f9fd;
    }
}

@media only screen and (max-width: 1024px) {
    .company th {
        display: block;
    }
    
    .company td {
        display: block;
    }
    .company table {
        font-size: 15px;
    }
    .company .media ul {
        justify-content: space-between;
    }
    .company .media ul li { 
        width: 44%;
        margin-right: 10px;
        margin-left: 10px;  
    }
}

/**
 * ***************************************
 * president 代表者の紹介
 * ***************************************
*/
.greeting {
    padding: 0 20px;
    background: #d8e2df;
}

.greeting .greeting-inner,
.career .inner {
    max-width: 1200px;
    margin: auto;
}

.greeting .text {
    padding-bottom: 30px;
}

.greeting h2 {
    padding: 40px 0 50px;
    font-size: 29px;
    margin-bottom: 30px;
}

.greeting table {
    width: 100%;
    border-top: 2px dotted #9eb6b8;
    border-collapse: collapse;
}

.greeting table tr {
    border-bottom: 2px dotted #9eb6b8;
}

.greeting table th {
    min-width: 120px;
    text-align: left;
}

.greeting table th,
.greeting table td {
    padding: 8px 6px;
}

.greeting img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: auto;
}

.personality .inner {
    max-width: 1200px;
    margin: 100px auto;
}
.personality-flex,
.career-flex {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}
.personality-flex .left {
    width: 50%;

}
.personality-flex .left h2,
.career .inner h2 {
    font-size: 22px;
    border-bottom: 1px solid var(--main-green);
    color: var(--main-green);
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.personality-flex .right {
    width: 50%;
}
.career-flex .left {
    width: 30%;
}
.career-flex .left .img-block {
    margin-bottom: 30px;
}
.career-flex .right {
    width: 70%;
}
.career-flex .right .title {
    color: var(--main-green);
    font-size: 22px;
    font-weight: 500;
}
.career-flex .right p {
    padding-bottom: 50px;
}
.career-flex .left .img-block {
    position: relative;
}
.career-flex .left .img-context {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2% 4%;
    background: rgba(0, 0, 0, .7);
    color: #ccc;
    line-height: 1.4em;
}
.career-flex .left .img-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

@media screen and (min-width: 1025px) {
    .greeting {
        padding: 0;
    }

    .greeting .greeting-inner {
        display: flex;
        align-items: flex-start;
        padding-top: 50px;
        column-gap: 30px;
    }

    .greeting .text {
        width: 50%;
    }

    .greeting img {
        width: 50%;
        margin: 0;
        align-self: flex-end;
    }
}
@media screen and (max-width: 1024px) {
    .greeting h2 {
        font-size: 22px;
        margin-bottom: 0;
    }
    .personality .inner {
        margin: 50px auto;
    }
    .personality .inner,
    .career .inner {
        padding: 0 20px;
    }
    .personality-flex,
    .career-flex {
        flex-direction: column;
    }
    .personality-flex .left,
    .personality-flex .right,
    .career-flex .left,
    .career-flex .right {
        width: 100%;
        margin-bottom: 30px;
    }
    .career-flex .right p {
        padding-bottom: 20px;   
    }
}

/**
 * ***************************************
 * tadaima-kids
 * ***************************************
 */
.kids-pv {
    overflow: hidden;
}

.kids-pv-inner {
    position: relative;
    background-image: url(../img/kids/back-ground.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 560px;
}

.kids-pv-text {
    position: absolute;
    left: 15%;
    top: 80px;
}

.kids-pv-text h1 {
    font-size: 33px;
    font-weight: 700;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 40px;
    width: fit-content;
}

.kids-pv-text p {
    color: #FFF;
    font-size: 20px;
    max-width: 500px;
    padding-left: 10px;
    background: #000000ab;
}

.kids-pv-inner::before {
    position: absolute;
    content: "";
    right: 8%;
    bottom: 0;
    background-image: url(../img/kids/kids_button.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 650px;
    height: 530px;
}
.kids-inner .flex {
    margin-bottom: 0;
}
.kids-price {
    text-align: center;
}
.kids-price .flex {
    align-items: center;
    column-gap: 10px;
}
.kids-price .flex .lr {
    background: #FFEB97;
    border-radius: 10px;
    padding: 20px 50px 30px;
    width: calc(50% - 10px);
}
.kids-price .flex .lr .title {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 50px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 40px;
    width: fit-content;
    display: inline-block;
}
.kids-price .flex .lr .price {
    font-size: 23px;
    font-weight: 700;
}
.kids-inner .wapper {
    padding: 30px;
}
.kids-price .flex .middle {
    background: url(../img/kids/icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    margin: 0 -20px;
    z-index: 100;
}
.kids-price .subtext {
    margin-top: 40px;
    font-weight: 500;
    line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
    .kids-inner .wapper {
        padding: 20px 0;
    }
    .kids-pv-inner {
        height: 330px;
    }
    .kids-pv-inner::before {
        height: 300px;
        width: 353px;
        right: auto;
    }
    .kids-pv-text {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .kids-pv-text h1 {
        margin: 0 auto;
        font-size: 26px;
        padding: 5px 2px;
    }
    .kids-price .flex {
        flex-direction: column;
    }
    .kids-price .flex .lr {
        width: 100%;
    }
    .kids-price .flex .middle {
        margin: -10px 0;   
    }
    .kids-pv-text p {
        width: 400px;   
    }
}

/**
 * ***************************************
 * page
 * ***************************************
 */
 .page {
    overflow: hidden;
    /* margin-bottom: -150px; */
    background: var(--sub-background-color);
 }
 .page-inner {
    max-width: 960px;
    margin: 60px auto;
 }
 .eye-catch {
     position: relative;
     ;
 }

 .eyecatch-title {
     position: absolute;
     font-size: 24px;
     font-weight: bolder;
     color: #333;
     background-color: rgba(255, 255, 255, 0.7);
     padding: 15px 35px;
     top: 60px;
     left: 30px;
 }

 @media screen and (max-width: 480px) {
    .page {
        /* margin-bottom: -80px; */
    }
    .page-inner {
        padding: 0 20px;
    }
    .eyecatch-title {
        font-size: 20px;
        padding: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
 }

 /**
 * ***************************************
 * templet
 * ***************************************
 */
.subpage {
    overflow: hidden;
}
.subpage-inner {
    margin: 0 auto;
}
.subpage .flex {
    display: flex;
    column-gap: 52px;
}
.subpage .flex .left {
    width: 50%;
}
.subpage .flex .right {
    width: 50%;
    display: grid;
    align-items: center;
    margin-right: 80px;
    line-height: 1.5em;
}
.subpage .flex .right h2 {
    margin-bottom: 0.8em;
    font-size: 22px
}
.subpage .flex .left img {
    width: 100%;
    height: auto;
}
.subpage .flex .right p {
    font-size: 20px;
    max-width: 880px;
}
.subpage-inner .blog-content {
    max-width: 960px;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    .subpage-inner {
        padding: 0 20px;
    }
    .subpage .flex {
        flex-direction: column-reverse;
    }
    .subpage .flex .left,
    .subpage .flex .right {
        width: 100%;
    }
    .subpage .flex .right p {
        font-size: 16px;
    }
}

/**
 * ***************************************
 * prot
 * ***************************************
 */
/* .page-product {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 20px;
}

.page-product a {
    text-decoration: underline;
    color: #0000EE;
} */
/**
 * ***************************************
 * product
 * ***************************************
*/
.product-s .inner {
    max-width: 1200px;
    padding: 60px 30px;
    margin: 0 auto;
    text-align: left;
}
.l-product {
    border: 1px solid #d7d7d7;
    padding: 0 10px;
}
.l-catchcopy {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
    color:#048b26;

}
.l-subtext {
    margin-top: 10px;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    color: #555;

}
.product-s h1 {
    text-align: left;
    border-bottom: solid 1px #999;
    font-size: 24px;
    line-height: 28px;
    margin: 0px 0px 20px 0px;
    padding: 10px;
    overflow: hidden;
    font-weight: 700;
}
.product-s .flex {
    display: flex;
    column-gap: 30px;
}
.product-s .product-img {
    width: 50%;
}
.product-s .catchcopy {
    font-size: 20px;
    font-weight: 700;
}
.product-s .product-text {
    width: 50%;
    padding: 0 20px;
}
.product-s .product-text .price-flex {
    display: flex;
    column-gap: 10px;
    margin-bottom: 20px;
   
}
.product-s .product-text .price-flex .price-title {
    font-weight: 700;
}
.product-s .product-text .price-flex .price {
    font-weight: 700;
}
.product-s .product-text .price-flex .guarantee {
    font-weight: 700;
}
.product-s .product-text .price-flex .price {
    color: #B12704;
}
.product-s .product-img ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.product-s .product-img ul li {
    width: calc(25% - 6px);
    margin-right: 6px;
    cursor: pointer;
    transition: opacity 300ms;
    opacity: 0.5;
}
.product-s .product-img ul li.active {
    opacity: 1;
}
.product-s .product-img ul li:last-of-type {
    margin-right: 0;
}
.product-s .product-text p {
    text-align: left;
}

.product-s .product-text .pb {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
}
.product-s .product-text ul {
    padding: 0;
}
.productBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 160px;
    height: 50px;
    color: #fff;
    font-weight: 400;
    border-radius: 10px;
    background: #446395;
}
.productBtn.qa {
    background: #EA7224;
}
.product-s .content {
    padding-top: 50px;
}
.product-s h2 {
    padding: 0.7em;
    color: #010101;
    background: #F2F2F2;
    border-top: solid 3px #006;
    font-size: 22px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.23);
    margin-bottom: 40px;
}
.product-nav {
    display: flex;
    justify-content: space-between;
    column-gap: 5px;
    margin: 50px 0px 50px 0px;
    border-bottom: #999 solid 1px;
    padding: 0px 0px 2px 0px;
}
.product-nav a {
    width: 25%;
    background: #fff;
    border-top: solid 2px #000066;
    border-left: solid 1px #CCC;
    border-right: solid 1px #CCC;
    height: 53px;
    padding: 14px 10px 0px 0px;
    text-decoration: none;
    text-align: center;
    display: block;
    font-size: 18px;
    color: #000;
}
.product-s .system-map {
    margin-top: 50px;
}
.product-s .system-map .flex {
    display: flex;
    column-gap: 20px;
    row-gap: 50px;
    flex-wrap: wrap;
}
.product-s .system-map .flex .item {
    width: calc(33% - 20px);
}
.product-s .system-map .flex .item img {
    border: 1px solid #d7d7d7;
}
.product-s .system-map h3 {
    text-align: center;
    margin-bottom: 20px;
}

.product-s .system-map .systembtn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.product-s .system-map .systembtn .productBtn {
    width: 300px;
}

.connection-map {
    margin-top: 50px;
}
.connection-map .pin {
    padding: 1em;
    background-color: #000145;
    margin: 0px 0px 10px 0px;
    color: #FFF;
    margin-bottom: 30px;
    margin-top: 30px;
}
.product-s .connection-map .flex {
    display: flex;
    column-gap: 20px;
    row-gap: 50px;
    flex-wrap: wrap;
}
.product-s .connection-map .flex .item {
    width: calc(33% - 20px);
}

.product-s .connection-map h3 {
    text-align: center;
    margin-bottom: 20px;
}
.product-s .connection-map .connectionbtn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    column-gap: 30px;
    margin-bottom: 50px;
}
.product-s .connection-map .connectionbtn .productBtn {
    background: #EA7224;
    width: 250px;
}
.product-s .system-map .flex .item img {
    height: 243px;
    object-fit: cover;
}

.product-s .connection-map .flex .item img {
    height: 300px;
    object-fit: cover;
}
.product-s .youtube {
    display: flex;
    justify-content: center;
}

.product-s .work {
    margin-top: 50px;
}
.product-s .work .flex {
    display: flex;
    column-gap: 20px;
    row-gap: 50px;
    flex-wrap: wrap;
}

.product-s .work .flex .item {
    width: calc(33% - 20px);
}
.product-s .work .flex .item img {
    height: 243px;
    object-fit: cover;
}
.product-s .work h3 {
    text-align: center;
    margin-bottom: 20px;
}
.product-s .workbtn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.product-s .workbtn .productBtn {
    width: 300px;
}

.toTop {
    max-width: 960px;
    position: fixed;
    bottom: 5px;
    right: 5px;
    background: #7e7a7a;
    border-radius: 5px;
    opacity: 0.8;
    font-size: 25px;
    color: #333;
}
.toTop a {
    display: block;
    padding: 15px;
    color: #333;
}
.lightbox-text {
    color: #fff;
}


.content-list .inner {
    max-width: 1400px;
    padding: 60px 30px;
    margin: 0 auto;
}
.content-list .l-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    column-gap: 30px;
    width: 100%;
    padding-left: 0;
    height: fit-content;
}
.content-list .l-cell {
    width: calc(33% - 30px);
    margin: 0 0 20px;
}
.content-list .product {
    width: calc(25% - 30px);
}

.content-list .l-context {
    padding-top: 15px;
}
.content-list .l-title h2 {
    font-size: 14px;
    margin-bottom: 10px;
}
.content-list .diagram-inner .l-title h2,
.content-list .inner .l-title h2 {
    text-align: center;
    color: #0096de;
    margin-top: 15px;
}
.content-list .youtube-inner .l-title {
    min-height: 50px; 
    margin-bottom: 10px;
}
.content-list .youtube-inner .l-title h2 {
    text-align: left;
}

.content {
    text-align: left;
    padding: 0;
}

.content-list .l-context ul{
    padding: 0;
}
.catlist-flex {
    display: flex;
    margin: 0 0 15px;
    flex-wrap: wrap;
}
.catlist-flex li {
    font-size: 12px;
    align-items: center;
    line-height: 1.5;
    padding: 2px 10px;
}
.catlist-flex .item1 { 
    margin: 0 5px 0 0;
    border: 1px solid var(--equip-color);
}
.catlist-flex .item1 a {
    color: var(--equip-color);
}
.catlist-flex .item2 {
    margin: 0 5px 0 0;
    border: 1px solid var(--interface-color);
}

.catlist-flex .item2 a {
    color: var(--interface-color);
}
.catlist-flex .item3 {
    margin: 0 5px 0 0;
    border: 1px solid var(--main-font-color);
}


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

    .category-select .flex {
        flex-direction: column;
        row-gap: 10px;
        padding: 0 50px 30px;
        align-items: center;
    }
    .content-list .l-flex {
        flex-direction: column;
        row-gap: 20px;
    }
    .content-list .l-cell {
        width: 100%;   
    }
    .content-list .inner {
        padding: 30px 20px;   
    }

}

@media only screen and (max-width: 1024px) {
    .product-s .inner {
        padding: 30px 20px;
        overflow: hidden;
    }
    .product-s .flex {
        flex-direction: column;
    }
    .product-s .product-img,
    .product-s .product-text {
        width: 100%;
    }
    .product-s .product-text {
        padding: 30px 0;
    }
    .product-s .product-text .pb {
        flex-direction: column;
        row-gap: 10px;
    }
    .product-s .product-text .pb a {
        width: 50%;
        margin: 0 auto;   
    }
    .product-nav {
        flex-direction: column;
    }
    .product-nav a {
        width: 100%;
    }
    .product-s .system-map .flex,
    .product-s .connection-map .flex,
    .product-s .work .flex {
        flex-direction: column;   
        row-gap: 30px;
    }
    .product-s .system-map .flex .item,
    .product-s .connection-map .flex .item,
    .product-s .work .flex .item {
        width: 100%;   
    }
    
    .product-s .connection-map .connectionbtn {
        margin: 20px auto;
    }
    
}
/**
 * ***************************************
 * 導入事例
 * ***************************************
 */


/* === 導入事例用スタイル === */

.case-study {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.case-study h2 {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: inherit;
  margin-top: 2em;
  margin-bottom: 1em;
  border: none;
  padding: 0;
  position: relative;
  letter-spacing: 0; /* ← これで文字詰め */
}

/* ■マークの微調整もここで */
.case-study h2::before {
  content: "■";
  color: #000;
  margin-right: 0.4em;
  display: inline-block;
  transform: translateY(-1px); /* 位置を微調整して揃える */
}

/* 段落 */
.case-study p {
  margin-bottom: 1em;
  line-height: 1.8;
}

/* 箇条書き（ul） */
.case-study ul {
  list-style-type: disc;      /* ・を表示 */
  margin-left: 1.5em;         /* 全体の左余白調整 */
  padding-left: 1em;          /* 点と文字の距離 */
}

/* リスト項目 */
.case-study li {
  margin-bottom: 0.5em;
}

/* 引用ブロック */
.case-study blockquote {
  border-left: 4px solid #ccc;
  margin: 1.5em 0;
  padding-left: 1em;
  color: #555;
  font-style: italic;
}




.blog-l-img {
    position: relative;
}

.blog-l-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.85);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.blog-l-img::after {
    content: "詳細はココをクリック";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 15px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    background: none;
    opacity: 0;
    z-index: 3;
    transition: 0.3s ease;
    pointer-events: none;
}

.blog-l-img:hover::before,
.blog-l-img:hover::after {
    opacity: 1;
}




.blog-l-img:hover::before {
    opacity: 1;
}


/*
.blog-l-cell-link:hover .blog-l-img img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
*/






.archive-case .blog-l-context {
  position: relative;
}

.case-arrow {
  position: absolute;
  bottom: -130px;
  right: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.case-arrow:hover {
  transform: scale(1.3);
}

.category-select ul {
    margin: 0;
    padding: 0;
}

.category-select .flex {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    padding: 0 50px 60px;
}

.category-select .flex>li {
    max-width: 240px;
    width: 100%;
}

.category-select .flex>li>a,
.category-select .flex>li>span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-weight: 700;
    background: #fff;
    cursor: pointer;
    transition: .3s;
}

.category-select .flex .equip span {
    border: 1px solid var(--equip-color);
    color: var(--equip-color);
}

.category-select .flex .interface span {
    border: 1px solid var(--interface-color);
    color: var(--interface-color);
}

.category-select .flex .tag span {
    border: 1px solid var(--main-font-color);
    color: var(--main-font-color);
}

.category-select .flex>li>span::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.category-select .flex>li>a:hover {
    background: var(--main-background-color);
}

/* .category-select .flex>li:first-child>a {
    border-radius: 10px 0 0 10px;
} */
.category-select .flex>li>a,
.category-select .flex>li>span {
    border-radius: 10px;
}

.category-select .flex>li.cat {
    position: relative;
}

.category-select .flex>li i {
    position: absolute;
    display: block;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 8px;
    height: 13px;
    background: url(../img/arrow01.png) center/cover;
    margin: auto;
    transform: rotate(90deg);
    transition: .3s ease-in-out;
}

.category-select .flex>li ul {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
    overflow-y: scroll;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease-in-out;
}

.category-select .flex>li ul a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 20px;
}

.category-select .flex>li ul a:hover {
    background: var(--main-background-color);
    opacity: 1;
}

.category-select .flex>li ul li {
    border-bottom: 1px solid var(--main-background-color);
}

.category-select .flex>li.catactive i {
    transform: rotate(-90deg);
}

.category-select .flex>li.catactive ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}
.catlist-flex {
    display: flex;
    margin: 0 0 15px;
    padding-left: 0;
}

.catlist-flex li {
    font-size: 12px;
    align-items: center;
    line-height: 1.5;
    padding: 2px 10px;
}

.catlist-flex .item1 {
    margin: 0 5px 0 0;
    border: 1px solid var(--equip-color);
}

.catlist-flex .item1 a {
    color: var(--equip-color);
}

.catlist-flex .item2 {
    margin: 0 5px 0 0;
    border: 1px solid var(--interface-color);
}

.catlist-flex .item2 a {
    color: var(--interface-color);
}

.catlist-flex .item3 {
    margin: 0 5px 0 0;
    border: 1px solid var(--main-font-color);
}
.bg-fff {
    background: #fff;
}

@media only screen and (max-width: 1024px) { 
    .category-select .flex {
        flex-direction: column;
        row-gap: 10px;
        padding: 0 50px 30px;
        align-items: center;
    }
}

/**
 * ***************************************
 * tech
 * ***************************************
*/
.mainkeyH {
    margin-bottom: 20px;
    margin-top: 50px;
}
.mainkeyH-inner {
    position: relative;
    margin: 0 auto;
    width: 1000px;
    height: 450px;
    background: url(../img/tech/gw_tech_image.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.mainkeyH h2 {
    position: absolute;
    left: 20px;
    top: 10%;
    font-size: 28px;
    color: #ffd200;
    font-weight: 500;
    background: #000;
    padding: 3px;

}
.mainkeyH-inner .sub,
.mainkeyH-inner .sub2 {
    position: absolute;
    left: 20px;
    top: 25%;
    font-size: 20px;
    margin-top: 10px;
    color: #000;
    background: #FFF;
    padding: 3px;
}
.mainkeyH-inner .sub2 {
    top: 35%;
}

@media only screen and (max-width: 1024px) { 
    .mainkeyH {
        margin-bottom: 0;   
    }
    .mainkeyH-inner {
        height: 300px;
        width: 100%;
        text-align: center;
    }
    .mainkeyH h1 {
        position: initial;
        padding: 20px 0;
        font-size: 23px;
    }
    .mainkeyH-inner .sub,
    .mainkeyH-inner .sub2 {
        position: absolute;
        font-size: 16px;
        margin: 10px auto;
        width: fit-content;
    }
    .topcontainner .inner {
        padding: 0 20px;
    }
}


.zigzag-photo {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px; /* 適宜調整 */
}

.photo-img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  width: 100%;
  box-sizing: border-box;
}



/**
 * ***************************************
 * ioT-related
 * ***************************************
*/
.ioT-related {
    /* margin-top: 50px; */
    padding: 60px 0;
    background: #f2f2f2;
}
.ioT-related-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.ioT-related ul {
    list-style: disc;
}
.ioT-related .flex {
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
}
.ioT-related h3 {
    background-color: #08C;
    height: 48px;
    display: flex;
    align-items: center;
    padding-left: 17px;
    justify-content: center;
    color: #FFF;
}
.ioT-related .box {
    height: 200px;
    padding: 15px 10px;
    padding-left: 31px;
    margin: 0;
    text-align: left;
    background: #fff;
}
.ioT-related .box li {
    margin-bottom: 15px;
}
.ioT-related .cell {
    /* border: 1px solid #d7d7d7; */
    text-align: center;
    width: 30%;
}
/* .ioT-related .border {
    border-bottom: 1px solid #d7d7d7;
} */

@media only screen and (max-width: 1024px) {
    .ioT-related {
        margin-top: 0;
    }
    .ioT-related .flex {
        flex-direction: column;   
        row-gap: 30px;
    }
    .ioT-related .cell {
        width: 100%;   
    }
    .ioT-related .box {
        min-height: 100px;   
    }
}

/**
 * ***************************************
 * tech2div
 * ***************************************
*/
.tech2div {
    background: #fff;
    margin-top: 60px;
}
.tech2div-inner {
    max-width: 1200px;
    margin: 0 auto;

}
.tech2div-inner .flex {
    display: flex;
    justify-content: center;
    column-gap: 50px;
    margin-bottom: 80px;
}

/*
.tech2div-inner h3 {
    background: #08C;
    padding: 10px 20px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
*/



.tech2div-inner h3 {
    padding: 10px 20px;
    font-size: 26px;
    font-weight: bold;
}

.tech2div-inner h4 {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
}



.tech2div-inner .flex .left {
    width: 50%;
}
.tech2div-inner .flex .right {
    width: 50%;
}
.tech2div-inner .flex p {
    padding: 20px;
}
.tech2div-inner .flex.reverse {
    flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
    .tech2div-inner .flex {
        flex-direction: column-reverse;
    }
    .tech2div-inner .flex.reverse {
        flex-direction: column-reverse;
    }
    .tech2div-inner .flex .left,
    .tech2div-inner .flex .right {
        width: 100%;
    }
}

/**
 * ***************************************
 * features
 * ***************************************
*/
.features {
    margin-top: 60px;
    padding: 60px 0;
    background: #f2f2f2;
}
.features-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;  
}
.features-inner h2 {
    text-align: center;
    color: #112CA6;
}
.features .flex {
    display: flex;
    justify-content: center;
    align-items: left;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 40px;
}
.features .flex .cell {
    flex: 0 1 calc(33% - 10px);
    background: #fff;
    padding: 17px 23px;
    border-radius: 5px;
    min-height: 152px;
    transition: .3s;
}
.features .flex .cell img {
    width: 200px;
    height: auto;
    padding: 5px;
}
.features .bar {
    justify-content: space-between;
}
.features .flex .baritem {
    width: 45%;
}
.features .bar .cell {
    display: flex;
    column-gap: 20px;
}
.features .bar .cell:hover {
    cursor: pointer;
    background-color: #FFF000;
    opacity: 1;
}
.features .bar .cell:hover img {
    background: #fff
}
.features .bar .cell img {
    width: 64px;
    height: 64px;
    background: #FFF000;
    border-radius: 50%;
}
.features .bar .cell img:hover {
    /* background: ; */
}
.features h3 {
    font-size: 16px;
    color: #112CA6;
}
@media only screen and (max-width: 1024px) {
    .features {
        margin-top: 50px;
    }
    .features .flex {
        column-gap: 20px;
        justify-content: space-evenly;
    }
    .features .flex .cell {
        flex: 0 1 auto;
    }
}

/**
 * ***************************************
 * prarea
 * ***************************************
*/
.prarea {
    margin-top: 40px;
    padding-top: 40px;
    background: #fff;
}
.prarea2 {
    margin-top: 80px;
    padding: 60px;
    background: #f2f2f2;
}

.prarea-inner,
.prarea2-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.prarea .flex,
.prarea2 .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 20px;
    /* margin-bottom: 50px; */
}
.topcontainner .contactBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    width: 150px;
    height: 36px;
    border: solid 1px #08C;
    border-top: solid 4px #08C;
    background: #fff;
}
.prarea .flex .contactBtn {
    width: 190px;
    height: 50px;
}
.prarea2-inner h2 {
    margin-bottom: 20px;

}
.prarea2-inner .sub {
    margin-bottom: 50px;
}
.prarea2 .bar {
    justify-content: space-between;
}

.prarea2 .flex .baritem {
    width: 45%;
}
@media only screen and (max-width: 1024px) {
    .prarea2 .flex .baritem {
        width: 100%;
    }
}

/**
 * ***************************************
 * simpleoneshot
 * ***************************************
*/ 
.mainkey {
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.mainkey-inner {
    padding: 40px 10px;
}

.mainkey h1 {
    font-size: 28px;
    font-weight: 600;
}

.mainkey-inner .sub {
    font-size: 20px;
    margin-top: 10px;
}

.simpleoneshot {
    /* max-width: 1000px; */
    margin-left: auto;
    margin-right: auto;
    /* padding-bottom: 50px; */
    text-align: center;
}

.simpleoneshot .layout-2div{
    display: flex;
    justify-content: space-between;
}
.simpleoneshot .mainkp {
    /* overflow: hidden;
    height: 500px; */
    background: #000;
}
.simpleoneshot .mainkp-left {
    width: 50%;
    background: #000;
    padding: 50px 0 70px 60px;
    max-width: 500px;
    margin-left: auto;
}
.simpleoneshot .mainkp-right {
    width: 50%;
    background: url("./img/simpleoneshot/bk-sos.webp") no-repeat center/cover;
    padding: 50px;
    max-width: 500px;
    margin-right: auto;
}
.simpleoneshot .h2-title {
    font-weight: 500;
    margin-bottom: 15px;
}
/* rwp section */
.rwp {
    background-color: #036eb8;
}

.rwp-inner {
    padding-bottom: 80px;
    text-align: center;
    padding-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.h2-subtext {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}
.rwp-inner .h2-subtext {
    color: #fff;
}
.rwp-inner h2 {
    color: #fff;
}

.rwp-flex {
    display: flex;
    justify-content: space-between;
}
.rwp-flex-inner {
    flex: 1;
}

.rwp-st1 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.rwp-st2 {
    color: #FF0077;
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    padding: 0;
    margin-top: 20px;
    border: 2px solid #FF0077;
    transform: rotate(-5deg);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .rwp-inner {
        padding-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0px;
    }

    .rwp-inner h2 {
        margin-bottom: 30px;
    }

    .rwp-flex {
        flex-wrap: wrap;
        column-gap: 10px;
    }

    .rwp-flex-inner {
        flex: auto;
        width: 30%;
        margin-bottom: 40px;
    }

    .rwp-st1 {
        font-size: 12px;
    }

    .rwp-st2 {
        font-size: 12px;
        margin-top: 10px;
    }
}

.nopress-inner {
    padding: 50px 0;
}
.state-sensing {
    margin-top: 0px;
    overflow: hidden;
    background: #FAED9E;
}
.state-sensing-inner{
    padding: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.state-sensing-inner figure {
    background: #fff;
    padding: 30px;
    
}
.state-sensing-inner figure img {
    max-height: 400px;
}
.location {
    overflow: hidden;
    background: #FCECE5;
}
.location-inner {
    padding: 50px 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.simpleoneshot .layout-4div {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
    flex-wrap: wrap;
    padding-left: 0;
}
.simpleoneshot .layout-4div li {
    width: calc(25% - 30px);
}
.simpleoneshot .btn-erea {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.simpleoneshot .btn-simple {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50px;
    color:#fff;
    font-weight: 400;
    background: #e25413;
}
.youtube-section {
    margin-top: 50px;
}
.youtube-section-inner {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.youtube {
    margin: 50px auto 20px;
    text-align: center;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px
}

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

.simpleoneshot .always {
    margin-top: 50px;
    background: #FAED9E;
}
.simpleoneshot .always-inner {
    padding: 50px;
}
.simpleoneshot .always-inner img {
    max-height: 500px;
}

/* voice section */
.voice {
    text-align: center;
}

.voice-inner {
    padding: 50px 0 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.voice-h2 {
    position: relative;
    margin-bottom: 40px;
}
.voice-f1 {
    display: flex;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.voice-left img {
    width: 177px;
    height: auto;
}

.voice-left {
    width: 20%;
    padding-right: 30px;
}

.voice-right {
    position: relative;
    background-color: #e0edff;
    width: 80%;
    padding: 20px;
}

.voice-right img {
    height: 30px;
    width: auto;
}

.voice-t1 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
}

.voice-t3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 18px;
    color: #000;
}

.voice-right::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #e0edff;
}

@media (max-width: 767px) {
    .voice-inner {
        padding: 30px 20px;
    }

    .voice-f1 {
        padding: 0;
    }
    .voice-h2 {
        margin-bottom: 30px;
    }
    .voice-t3 {
        font-size: 12px;
    }
    .voice-t1 {
        font-size: 14px;
    }
}

.simpleoneshot .qa-007,
.remotewake .qa-007 {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.simpleoneshot .contact,
.remotewake .contact,
.roadheating .contact {
    margin-top: 100px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.simpleoneshot .contact-inner,
.remotewake .contact-inner,
.roadheating .contact-inner {
    text-align: left;
}
.simpleoneshot .contact-inner .h2-title,
.remotewake .contact-inner .h2-title,
.remotewake .qa-inner .h2-title,
.remotewake .document-inner .h2-title,
.roadheating .contact-inner .h2-title {
    text-align: center;
}



@media screen and (max-width: 480px) {
    .youtube {
        margin: 20px auto 10px;
    }

    .youtube-area {
        padding-left: 10px;
        padding-right: 10px;
    }

    .simpleoneshot .layout-2div {
        flex-direction: column;
    }
    .simpleoneshot .mainkp-left {
        width: 100%;
        padding: 30px;
    }
    .simpleoneshot .mainkp-right {
        width: 100%;
        padding: 30px;
    }
    .simpleoneshot .layout-4div {
        column-gap: 20px;
        row-gap: 20px;
    }
    .simpleoneshot .layout-4div li {
        width: calc(50% - 20px);
    }
    .simpleoneshot .contact-inner,
    .remotewake .contact-inner,
    .roadheating .contact-inner {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.diagram-s h1{
    text-align: center;
    border-bottom: none;
}
.diagram-s .diagram img {
    border: 1px solid #ccc;
}
.diagram-s .diagram {
    margin-bottom: 50px;
}
.diagram-s .inner {
    padding-bottom: 30px;
}

.l-youtube,
.youtube-s .youtube {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}
.l-youtube iframe,
.youtube-s iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.youtube-s h1 {
    text-align: center;
}
.youtube-s .inner {
    padding-bottom: 30px;
}
.youtube-s .wapper {
    max-width: 800px;
    margin: 0 auto;
}

.youtube-s .catlist-flex,
.diagram-s .catlist-flex{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.youtube-s .make_time {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.diagram-s .wapper {
    max-width: 800px;
    margin: 0 auto;
}
.case-sum-inner h3,
.overview-inner h3 {
    font-size: 16px;
    margin-top: 40px;
}
.diagram-item {
    margin: 10px 0;

}
.diagram-item a {
    text-decoration: underline;
    color: #4D4C4C;
}
.diagram-ul {
    list-style: outside;
}

/* .l-diagram{
    height: 256px;
}
@media screen and (max-width: 480px) {
    .l-diagram{
        height: auto;
    }
} */


.m-breadcrumb {
    padding: 0 50px 20px;
    margin-top: -20px;
    text-align: left;
}
.m-breadcrumb span {
    font-size: 12px;
    color: #1A1A1A;
}
.blog-header .m-breadcrumb {
    margin-top: -40px;
}

.topcontainner .m-breadcrumb {
    margin-top: 0;
}

@media screen and (max-width: 480px) {
    .m-breadcrumb {
        padding: 10px 20px;
        margin-top: 0;
        line-height: 0.8rem;
    }
    .blog-header .m-breadcrumb {
        margin-top: -20px;
    }
    .topcontainner .m-breadcrumb {
        margin-top: 25px;
    }
}

.simpleoneshot .m-breadcrumb {
    margin-top: 15px;
  }
  .simpleoneshot .mainkey-inner {
    padding-top: 25px;
  }
  
  @media (max-width: 767px) {
    .simpleoneshot .m-breadcrumb {
      margin-top: 35px;
    }
  }

.product-s .product-text h2 {
    padding: 0;
    color: inherit;
    background: inherit;
    border-top: inherit;
    font-size: 20px;
    box-shadow: inherit;
    margin-bottom: inherit;
}

.page-navi-inner .flex {
    column-gap: 6px;
}
@media only screen and (max-width: 1024px) {
    .page-navi-inner .flex {
        flex-direction: row;
    }
}

.product-overview .custom {
    margin-top: 50px;
}

.roadheating .mainkp {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}
.roadheating .problem {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.roadheating .problem-inner {
    text-align: center;
}
.roadheating .problem-inner .img2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}
.roadheating .problem-inner .img1 {
    position: relative;
}
.roadheating .problem-inner .img1::before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: -127px;
    width: 205px;
    height: 237px;
    background: url(../img/roadheating/peroson-l.webp) center/cover;
}
.roadheating .problem-inner .img1::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: -99px;
    width: 181px;
    height: 255px;
    background: url(../img/roadheating/peroson-r.webp) center/cover;
}
.roadheating .roadheating_solution {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.roadheating .roadheating_solution-inner {
    text-align: center;
    color: #FE9500;
    
}
.roadheating .roadheating_solution-inner h2 {
    font-size: 30px;
}
.roadheating .roadheating_solution-inner .img2 {
    margin-top: 50px;
    max-width: 400px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.roadheating .roadheating_solution-inner .img3 {
    margin-top: 20px;
    max-width: 400px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.roadheating .point3 {
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.roadheating .point3 .flex {
    margin-top: 50px;
    display: flex;
    column-gap: 20px;
}
.roadheating .point3 .flex img {
    width: 33%;
}
.roadheating .case_study {
    margin-top: 50px;
    background: url("../img/roadheating/wallpaper-2.webp") top/cover;
    width: 100%;
    padding: 150px 0;
}
.roadheating .case_study-inner {
    text-align: center;
}
.roadheating .case_study h2 {
    color: #fff;
    font-weight: 700;
    font-size: 35px;
    padding: 80px 0 30px;
}
.roadheating .case-l-flex {
    /* padding: 0 20px; */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.roadheating .road_flow {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.roadheating .road_flow-inner {
    text-align: center;
}
.roadheating .road_flow .title,
.roadheating .qa .title,
.roadheating .contact .title {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 50px 10px 50px;
    font-size: 50px;
    color: #3CB2E4;
    border-bottom: 1px solid #3CB2E4;
}
.roadheating .road_flow h2,
.roadheating .qa h2 {
    padding-top: 20px;

}
.roadheating .road_flow .flex {
    display: flex;
    column-gap: 30px;
    justify-content: space-between;
}
.roadheating .road_flow .flex .item {
    text-align: center;
    border: 5px solid #2AABE2;
    padding: 20px;
}
.roadheating .road_flow .flex .item .num {
    display: flex;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    background-color: #2578B5;
    color: #fff;
    font-size: 30px;
    align-items: center;
    justify-content: center; 
}
.roadheating .road_flow .flex .item {
    width: 23%;
}
.roadheating .road_flow .flex .item img {
    width: 150px;
    height: auto;
}
.roadheating .road_flow .flex .item p {
    font-size: 20px;
    font-weight: 600;
    padding: 0 30px;
}
.roadheating .road_flow .flex .item .img4 {
    width: 100px;
    height: auto;
    padding-top: 20px;
} 
.roadheating .road_flow .flex .item .yellow {
    color: #EFAE04;
    font-size: 30px;
    font-weight: 700;
}
.roadheating .qa {
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.roadheating .qa-inner {
    text-align: center;
}
.roadheating .qa-erea {
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.roadheating .main-btns {
    justify-content:center
}
.roadheating .main-btns .main-btn1 {
    background: #FF656D;
}
.roadheating .contact h2 {
    margin-top: 20px;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .roadheating .problem-inner .img1 {
        padding: 0 20px;
    }
    .roadheating .problem-inner .img1::before {
        left: -25px;
        width: 93px;
        height: 106px;
    }
    .roadheating .problem-inner .img1::after {
        right: -6px;
        width: 79px;
        height: 111px;
    }
    .roadheating .problem-inner .img2 {
        max-width: 300px;
    }
    .roadheating .roadheating_solution-inner h2 {
        font-size: 20px;
    }
    .roadheating .roadheating_solution-inner .img2 {
        max-width: 239px;
    }
    .roadheating .roadheating_solution-inner .img3 {
        max-width: 272px;   
    }
    .roadheating .point3 .flex {
        flex-direction: column;
        row-gap: 20px;
    }
    .roadheating .point3 .flex img {
        width: 100%;
    }
    .roadheating .case_study-inner {
        padding: 0 20px;
    }
    .roadheating .road_flow-inner {
        padding: 0 20px;
    }
    .roadheating .road_flow .flex {
        flex-direction: column;
        row-gap: 20px;
    }
    .roadheating .road_flow .flex .item {
        width: 100%;
    }
}

.integration .page-inner {
    display: flex;
    column-gap: 30px;
    max-width: 1200px;
}
.integration .integration-left {
    width: 25%;
}
.integration .integration-right {
    width: 80%;
    background: #FFF;
    padding: 0 30px 0 30px;


}
.introduce_sidebar {
    margin-top: 50px;
}
.introduce_sidebar .sidebar-inner {
    font-size: 14px;
    text-align: left;
}
.introduce_sidebar .title {
    background-color: #00787E;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
}
.introduce_sidebar .sub_item {
    padding: 10px 10px 10px 10px;
    margin-left: 10px;
    /* margin-top: 10px; */
    border-left: 1px solid #000;
}
.introduce_sidebar .sub_item .active {
    background-color: #00787E;
    color: #fff;
}
@media screen and (max-width: 480px) {
    .integration .page-inner {
        flex-direction: column;
    }
    .integration .integration-left {
        width: 100%;
    }
    .integration .integration-right {
        width: 100%;
    }
}

.contact_multi .box-contact {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
    padding: 20px 12px 12px 12px;
    background-color: #fff;
}
.contact_multi .box-contact.-assort,
.contact_multi .box-contact.-pc-assort {
    background-color: #F0F6F8;
}
.contact_multi .box-contact__header {
    display: flex;
    align-items: center;
    
}
.contact_multi .box-contact__icon {
    margin-right: 16px;
}
.contact_multi .box-contact__title {
    color: #333;
    font-size: 20px;
    letter-spacing: 1px;
    background: initial;
    margin: 0;
    padding: 0;
}
.contact_multi .box-contact__body {
    padding-top: 10px;
}
.contact_multi .btn {
    margin-top: 40px;
}
.contact_multi .box-contact__body .btn a {
    width: 100%;
    min-width: 0;
}
.contact_multi .btn a, .btn button {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #007EC4;
    color: #fff;
    padding: 10px 53px 10px 10px;
    position: relative;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-size: 14px;
    border: 2px solid #007EC4;
    display: inline-block;
    text-align: left;
    min-width: 300px;
    cursor: pointer;
}
.contact_multi .btn a:before,
.contact_multi .btn button:before {
    font-family: 'icon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    text-indent: 0;
    line-height: 1;
    content: "→";
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    font-size: 30px;
    scale: 0.9;
}
.contact_multi .btn a:hover, 
.contact_multi .btn button:hover {
    background: #fff;
    color: #007EC4;
}

@media screen and (max-width: 480px) {
    .contact_multi .box-contact {
        padding: 20px 20px 20px;
    }
    .contact_multi .box-contact.-pc-assort {
        background-color: #fff;
    }
    .contact_multi .box-contact.-sp-assort {
        background-color: #F0F6F8;
    }
    .contact_multi .box-contact__title {
        font-size: 20px;
    }
    .contact_multi .btn a, .btn button {
        padding: 15px 20px 15px 20px;
        min-width: 200px;
    }
    .contact_multi .btn a:before,
    .contact_multi .btn button:before {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    .contact_multi .box-contact__title {
        font-size: 18px;
    }
    .contact_multi .btn{
        margin-top: 24px;
    }
}

/**
 * ***************************************
 * 導入一覧のタグ
 * ***************************************
*/
.category-select .tab-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-select .tab-item {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    width: 400px;
    height: 114px;
    font-size: 18px;
    border-bottom-color: transparent;
}

.category-select .tab-item.active {
    font-weight: 700;
    border-bottom-color: #131313;
}

.category-select .tab-content {
    padding: 30px 32px;
    gap: 12px 8px;
    background: #FFED84;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.category-select .tab-panel {
    display: none;
}
.category-select .tab-panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
}

.category-select .tab-panel.active {
    display: block;
}

@media screen and (max-width: 480px) {
    .category-select .tab-item {
        border-bottom-width: .5333333333vw;
        width: 100vw;
        height: 12.8vw;
        font-size: 3.7333333333vw;
    }
    .category-select .tab-content {
        margin-bottom: 30px;
    }
}


/**
 * ***************************************
 * ブログ
 * ***************************************
*/
<style>
.table-scroll {
  overflow-x: auto;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  table-layout: fixed;
}

.styled-table th,
.styled-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 14px;
}

/* ★ヘッダーだけ中央寄せ */
.styled-table th {
  background-color: #f5f5f5;
  text-align: center;
  font-weight: bold;
}

/* ★データセルは左寄せ */
.styled-table td {
  text-align: left;
}

.styled-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.styled-table tbody tr:hover {
  background-color: #f0f8ff;
}

/* 列幅指定 */
.styled-table th:nth-child(1),
.styled-table td:nth-child(1) {
  width: 25%;
}

.styled-table th:nth-child(2),
.styled-table td:nth-child(2) {
  width: 45%;
}

.styled-table th:nth-child(3),
.styled-table td:nth-child(3) {
  width: 30%;
}
</style>


/**
 * ***************************************
 * 規約
 * ***************************************
*/

.terms-of-use {
  font-family: "Helvetica Neue", sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.8;
  padding: 2em;
}

.terms-of-use h1 {
  font-size: 1.8em;
  border-bottom: 3px solid #444;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

.terms-of-use h3 {
  background: none !important;
  border-left: none !important;
  font-size: 1.2em;
  font-weight: bold;
  padding-left: 0;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: #111;
}


.terms-of-use p {
  margin-bottom: 1em;
}

.terms-of-use ul {
  padding-left: 1.2em;
  list-style: disc;
  margin-bottom: 1em;
}

.terms-of-use strong {
  font-weight: bold;
}


.terms-of-use ul ul {
  list-style-type: none;
  padding-left: 1.2em;
}

.terms-of-use ul ul li::before {
  content: "- ";
  margin-left: -0.7em;
  display: inline-block;
  width: 0.7em;
}


/**
 * ***************************************
 * 導入をお考えの方へ
 * ***************************************
*/

.intro-btninner {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.intro-btninner a {
    text-decoration: none;
}

.intro-btn {
    position: relative;
    padding: 15px 80px 15px 60px;
    color: #fff;
    font-size: 18px;
    border-radius: 15px;
    background-color: #00787E; /* 深緑 */
    width: fit-content;
}

.intro-btn::before {
    position: absolute;
    content: "";
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
}

.intro-btn::after {
    position: absolute;
    content: "";
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid #007b3e;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}



/**
 * ***************************************
 * Other
 * ***************************************
*/

.whyus {
  margin-top: 40px;
}

.whyus .left ul {
    margin-top: 30px;
  list-style-type: disc;
  margin-left: 0;
}

.basic-btninner {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.basic-btn {
    position: relative;
    padding: 15px 80px 15px 60px;
    color: #fff;
    font-size: 18px;
    border-radius: 15px;
    background-color: #FE8800;
    width: fit-content;
}
.basic-btn::before {
    position: absolute;
    content: "";
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
}
.basic-btn::after {
    position: absolute;
    content: "";
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid #FE8800;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
