@charset "UTF-8";

/*
Theme Name:tokepita
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 0.1
License: 
License URI: 
Text Domain: tokepita
Tags: 

*/





/**
 * ***************************************
 * プライスのボタン
 * ***************************************
 */

/* 料金ページ「お問い合わせはコチラ」ボタン調整 */
.price-bottom-link a {
  display: inline-block !important;
  margin-top: 40px !important;
  text-decoration: none !important;
}



/**
 * ***************************************
 * ペ
 * ***************************************
 */
    .wp-lightbox-overlay.zoom.active .scrim {
        animation: turn-on-visibility .4s forwards;
        background: #111111ba !important;
    }


/**
 * ***************************************
 * フッター
 * ***************************************
 */

.footer-rightl ul,
.footer-rightr ul {
  margin-top: 2px; 
}




/**
 * ***************************************
 * ページ全体に関わるCSSの設定
 * ***************************************
 */


/*ヘッダー*/
@media screen and (min-width: 768px) {
  .header-menu-item > a {
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s ease;
  }

  .header-menu-item > a[href]:hover {
    background-color: #000;
    color: #fff;
  }
}



.header-menu {
  display: flex;
  gap: 20px; /* ← メニュー間の横スペースを調整 */
  align-items: center; /* ← 縦の中央揃え */
}



.header-menu li {
  position: relative;
  padding-left: 20px;
}


/* 最初のメニュー項目には縦線を表示しない */
.header-menu > li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 5px;
  margin:auto;
  width: 1px;
  height: 40%;
  background-color: #fff; /* ← 色は必要に応じて変更 */
}


:root {
    --main-background-color: #FFD200;
    --main-font-color: #1A1A1A;
    --main-green: #1FA869;
    --main-green2: #005120;
    --sub-background-color: #f5f5f0;
    --equip-color: #0096DE;
    --interface-color: #3EB04E;
}

html *,
::before,
::after {
    box-sizing: border-box;
}

/* フォント */
html {
    font-size: 16px;
    color: var(--main-font-color);
    overflow-x: hide;
    overflow-y: auto;
    /* max-width: 2000px; */
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    /* Noto Sans JPのレギュラーウェイトを指定 */
    /* max-width: 1440px; */
    margin: 0 auto;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
    letter-spacing: 0;
    height: auto;
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
}

span.shokuba {
  color: #00A143;
}

span.shokuba2 {
  color: #FE8800;
}



@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

/* おもな太字タグのフォントウェイト設定 */
h1,
h2,
h3,
h4,
h5,
h6,
th,
strong {
    margin: 0;
    padding: 0;
}

/* ベースのリンクカラー */
a {
    text-decoration: none;
    color: #000;
}

P {
    color: #4D4C4C;
    line-height: 30px;
    font-size: 15px;
    /* letter-spacing: 1px; */
}
p a {
    text-decoration: underline;
    color: #0000EE;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: top;
}

h1 {
    font-size: 1em;
    font-weight: 400;
}

h2 {
    font-size: 29px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
    h2 {
        margin-bottom: 30px;
        font-size: 22px;
    }
    html {
        font-size: 15px;
    }
}

a:hover {
    opacity: 0.5;
}

table {
    width: 100%;
}

a.external {
    color: #00A040 ;
    -webkit-text-decoration-color: #00A040;
    text-decoration-color: #00A040 ;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

a.external.inline-block {
    color: #00A040 ;
    -webkit-text-decoration-color: #00A040 ;
    text-decoration-color: #00A040 ;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

a.external::after {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 5px;
    background: url("./img/company/external.png") center center no-repeat;
    background-size: contain;
    vertical-align: -3px;
    content: "";
}


/**
 * ***************************************
 * ヘッダー
 * ***************************************
*/
.header-section {
    /* overflow: hidden; */
}
.header-fixed {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 120, 20, .9);
    padding: 20px 40px;
    z-index: 3;
    /* transform: translateY(-145%); */
    transition: all .3s ease-in-out;
    box-sizing: border-box;
    height: 90px;
}
/* .header-fixed.active {
    transform: translateY(0);
} */
.header-fixed-logo {
    height: auto;
    width: 180px;
}
.header-fixed-nav {
    display: flex;
    align-items: center;
    font-size: 16px;
    column-gap: 20px;
    font-weight: 500;
}
.header-fixed-menu {
    display: flex;
    padding: 0;
}
.header-fixed-menu>li {
    /* margin-left: 30px; */
}
.header-inner-bk {
    background: #FF7814;
    /* overflow: hidden; */
    
}

.header-inner {
    padding-top: 30px;
    padding-bottom: 30px;
}
.header-line1 {
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
    align-items: center;
}

.header-right1 {
    display: flex;
    column-gap: 20px;
    align-items: center;
}
.contactBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    width: 170px;
    height: 36px;
    border-radius: 18px;
    background: #fff;
}
.techBtn a {
    background: #4fa7d1;
}
.techBtn span {
    color: #fff;
    font-weight: 500;
}
.header-line2 {
    display: flex;
    justify-content: end;
    margin-top: 30px;
    padding-left: 50px;
    /* padding-right: 50px; */
    align-items: center;
}
.header-left2 {
    height: auto;
    max-width: 260px;
}
.header-right2 {
    width: 70%;
    height: 100%;
    margin-right: 40px;
}
.header-right2 .header-menu {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    /* align-items: flex-end; */
    margin: 0;
    font-weight: 700;
}





.header-right2 .header-menu-item {
    /* margin-left: 30px; */
    position: relative;
}
.header-menu-item a {
    padding: 10px 10px 10px 10px;
    display: block;
}



.header-menu-item {
    position: relative;
}



.header-submenu li {
    overflow: hidden;
    transition: 0.3s;
    padding: 10px 10px 10px 0;
}
.header-menu-item:hover ul {
    display: block;
}
.header-menu-item:hover .header-hassubmenu::before {
    display: none;
}
.header-hassubmenu {
    position: relative;
}
.header-hassubmenu::before {
    display: block;
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    content: "";
    transform: rotate(135deg);
}

.header-fixed .contactBtn a {
    background: #4fa7d1;
    width: 180px;
}
.header-fixed .contactBtn a {
    color: #fff;
    font-weight: 400;
}
.header-fixed .fixContactBtn a {
    background: var(--main-background-color);
}
.header-fixed .fixContactBtn span {
    color: #000;
    font-weight: 600;
}

.hidden {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .header-section {
        background: var(--main-background-color);
    }
    .header-inner {
        padding-top: 10px;
        padding-bottom: 10px;
        margin: 0;
    }
    .header-line1 {
        font-size: 12px;
        padding-left: 20px;
        padding-right: 20px;
        align-items: baseline;
    }
    .header-line2 {
        margin-top: 0;
        padding-left: 20px;
        padding-right: 20px;
        align-items: baseline;
    }
    .header-right1, .header-right2 {
        display: none;
    }
    .header-left2 img {
        height: 23px;
        width: auto;
    }
    .header-mobile-btn {
        width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        font-weight: 700;
        background: var(--main-font-color);
        line-height: 1;
        border-radius: 25px;
        cursor: pointer;
        box-sizing: border-box;
        color: #fff;
    }
    .header-mobile-menu {
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        padding: 50px 20px;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        visibility: hidden;
        transition: .5s .5s ease-in-out;
        color: #fff;
    }
    .header-mobile-menu::before {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: var(--main-font-color);
        transition: .5s .5s ease-in-out;
        z-index: -1;
    }
    .header-mobile-menu.active {
        visibility: visible;
        transition: all .5s ease-in-out;
    }
    .header-mobile-menu.active::before {
        width: 100%;
        transition: all .5s ease-in-out;
    }
    .header-mobile-menu.active .header-mobile-menu-inner {
        opacity: 1;
        transform: translateX(0);
        transition: .5s .5s ease-in-out
    }
    
    .header-mobile-mf {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        margin-bottom: 30px;
    }
    .header-mobile-close {
        font-size: 50px;
        color: #fff;
        line-height: 1;
        cursor: pointer;
    }
    .header-mobile-menu-inner {
        opacity: 0;
        transform: translateX(30px);
        transition: all .5s ease-in-out;
    }
    .header-mobile-menu-inner>ul {
        padding-left: 0;   
    }
    .header-mobile-menu-inner ul li {
        margin-bottom: 20px;
    }
    .header-mobile-menu-inner ul li a {
        font-size: 25px;
        color: #fff;
        font-weight: 500;
    }
    .header-mobile-menu .contactBtn a {
        width: 100%;
        margin-top: 10px;
        border-radius:25px;
        height: 60px;
        font-size: 25px;
    }
    .header-mobile-menu .techBtn {
        margin-top: 50px;
    }
    .header-fixed {
        display: none;   
    }
    .header-mobile-submenu {
        padding: 30px 10px 5px 30px ;
        display: none;
    }
    .header-mobile-submenu.active {
        display: block;   
    }
    .header-mobile-submenuli>a{
        position: relative;
    }
    .header-mobile-ul a{
        display: block;
    }
    .header-mobile-submenuli>a::before {
        display: block;
        position: absolute;
        top: 0;
        left: 300px;
        bottom: 0;
        width: 20px;
        height: 2px;
        margin: auto;
        background: #fff;
        content: "";
    }
    .header-mobile-submenuli>a::after {
        display: block;
        position: absolute;
        top: 0;
        left: 300px;
        bottom: 0;
        width: 20px;
        height: 2px;
        margin: auto;
        background: #fff;
        content: "";
        transform: rotate(90deg);
    }
    .header-mobile-submenuli>a.active::after {
        content: none;
    }

}

















.header-submenu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  padding: 10px;
  min-width: 220px;
  background-color: #000000c2;
  border-radius: 10px;
  z-index: 10;
}

.header-submenu li a {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.2s, color 0.2s;
}

.header-submenu li a i {
  margin-right: 8px;
  color: #ccc;
}

/* 🟡 ホバー時：背景白＆文字黒 */
.header-submenu li a:hover {
  background-color: #fff;
  color: #000;
}






/**
 * ***************************************
 * TOP
 * ***************************************
*/

/*改行させたくない*/
.nowrap {
  white-space: nowrap;
}


/*トップロゴ一覧*/

.clients-fixed,
.clients-fixed .clients-inner,
.clients-fixed .clients-inner2 {
  background: none !important;
}




.clientimg {
  background: #fff;
  padding: 0px;
  border: 1px solid #ddd;
  border-radius: 0px;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  align-items: center;
  height: 100px; 
  /* 高さそろえるなら */
}


.client-label {
  display: block;               /* ←これで下に表示されるようになる */
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  color: #333;
  margin-top: 8px;
  white-space: normal;          /* 折り返し許可（長い社名に対応） */
  word-break: break-word;       /* 必要に応じて単語で折り返す */
  margin-bottom: 25px;
}



.client-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}




/*ホバー*/

 .clientimg-hover {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: 220px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.clientimg-hover img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.client-caption {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1.0em;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  transition: bottom 0.3s ease;
}



/* ← ホバー時にせり上がる */
.clientimg-hover:hover .client-caption {
  bottom: 0;
}


.clientimg-hover:hover {
  filter: none !important;
  opacity: 1 !important;
  background: none !important;
}


/*トップ*/

/*〇〇で〇〇が可能*/

/* 🔶 全体のラッパー */
.io-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  max-width: 1300px; /* 追加ポイント！ */
  margin-left: auto;
  margin-right: auto;
}


/* 🔶 各ブロックの黒背景エリア */
.io-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: #000;
  padding: 30px;
  border-radius: 20px;
  min-width: 280px;
  max-width: 400px;
  flex: 1 1 300px;
}

/* 🔷 入力・出力セット（縦積み＋少し下に下げる） */
.io-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  transform: translateY(20px); /* ← ここだけ変更 */
}

/* 🔷 丸いアイコン背景 */
.circle {
  width: 90px;
  height: 90px;
  background-color: #0a5a75;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

/* 🔷 中の画像（幅指定は削除） */
.circle img {
  display: block;
  margin: 0;
}

/* 🔷 下のキャプションテキスト */
.caption {
  margin-top: 4px;
  font-size: 13px;
  color: white;
  text-align: center;
}

/* 🔷 真ん中の矢印（CSS三角） */
.arrow {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid white;
}









.top-firstview-marker {
  background: linear-gradient(transparent 80%, #ffff00 60%);
  font-weight: 800;
}


@media only screen and (max-width: 1024px) {
  .fv-badge {
    font-size: 18px !important;
  }

  .animation span {
    font-size: 26px;
    margin-bottom: 15px;
  }


  .fv-headline {
    font-size: 26px !important;
    margin-bottom: 5px;
  }

}

@media screen and (max-width: 768px) {
  .main-btns {
    margin-top: 50px !important;
  }
}





@media screen and (max-width: 768px) {
  .fv-points {
    text-align: left !important;
  }

  .fv-points li {
    text-align: left !important;
    font-size: 16px !important;
    font-weight:500;
  }
}




.fv-badge {
  display: inline-block;
  background: #0073c6;
  color: #fff;
  border-radius: 12px;
  padding: 5px 10px 10px 10px; /* 余白を調整 */
  font-size: 22px;
  margin-bottom: 16px;
  font-family: inherit;
  width: auto; /* 幅が伸びすぎないように設定 */
}


.fv-small {
  font-size: 0.6em;
  vertical-align: super;
}

.fv-sub {
  font-size: 26px;
  line-height: 1.4;
  color: #222;
  margin-bottom: 12px;
}

.fv-headline {
    /* padding-top: 50px; */
  font-size: 60px;
  font-weight: bold;
  color: #222;
  margin-bottom: 55px;
  letter-spacing: 0.01em;
}

.fv-points .highlight {
  color: #FF7714;
}

.fv-points {
  list-style: none;
  padding-left: 25px;
  margin-top: 20px;
}

.fv-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 28px;
  font-size: 30px;
  font-family: inherit;
  color: #333;
  font-weight:bold;
}

.fv-points li::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 2px;
  height: 34px;
  width: 39px;
  background: url(./img/tokepita/arch.png) center/cover;
  font-weight: bold;
}

.cashback {
    margin: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.sp {
    display: none;
}
.pc {
    display: block;
}
@media (max-width: 768px) {
  .sp {
    display: block;
    }
    .pc {
        display: none;
    }
}

.service {
    margin: 80px auto;
    max-width: 1200px;
}
.service-inner {
    text-align: center;
}
.margin-top-30 {
    margin-top: 50px;
}
.service-inner .highlight {
    color: #FF7714;
    font-size: 20px;
    font-weight: bold;
}
.service-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.service-flex {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.service-flex2 {
    flex-wrap: wrap;
}
.service-flex .item {
    width: 50%;
    background: #BEDBFB;
}
.service-flex .item2 {
    width: calc(33% - 20px);
}
.service .inner-flex {
    display: flex;
    justify-content: space-between;
}
.service-flex .left-text {
    width: 60%;
    text-align: left;
    align-items: center;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.service .inner-flex .left-text .title {
    font-size: 25px;
    font-weight: bold;
    padding: 10px 0;
}
.service .inner-flex .left-text .sub {
    font-size: 14px;
}
.service-flex .right-img {
    width: 40%;
}
.service-flex2 .left-text {
    width: 50%;
}
.service-flex2 .right-img {
    width: 50%;
}
.service .inner-flex .right-img1 {
    padding: 10px;
} 
.service .left-text .flex {
    display: flex;
    justify-content: space-between;
    color: 	#4068E0;
    flex-wrap: wrap;
}
.service .left-text .flex li {
    width: 50%;
}
.service .left-text ul {
    padding-left: 0;
}
.service .inner-flex .right-img3 {
    padding: 10px 0 0 0;
}
.service .inner-flex .right-img4 {
    padding: 10px 0;
}
.service-flex2 .right-img5 {
    width: 30%;
}
.service-flex2 .left-text5  {
    width: 70%;
}
@media (max-width: 768px) {
  .service-flex   {
    flex-direction: column;
  }
  .service-flex .item{
    width: 100%;
  }
  .service-inner h2 {
    font-size: 28px;
  }
  .service .inner-flex .left-text .title {
    font-size: 20px;
  }
}

.usage {
    margin: 80px auto;
    max-width: 1200px;
}
.usage-inner {
    text-align: center;
}
.usage-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.usage-flex {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.usage-flex .item1 {
    width: 50%;
    background: #E2EFFF;
    padding: 30px;
}
.usage-flex .item2 {
    width: 50%;
    background: #F2F2F2;
    padding: 30px;
}
@media (max-width: 768px) {
  .usage-flex   {
    flex-direction: column;
  }
  .usage-flex .item1,.usage-flex .item2 {
    width: 100%;
  }
  .usage-inner h2 {
    font-size: 28px;
  }
}
.qr {
    margin: 80px auto;
    max-width: 1200px;
}
.qr-inner {
    text-align: center;
}
.qr-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.qr .qr-img {
    margin-top: 30px;
}
.qr .flow {
    margin-top: 30px;
    background: #E2EFFF;
    padding: 30px 20px;
}
.qr .flow .title {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
}
.qr .flow .sub {
    font-size: 16px;
    color: #828383;
    margin: 20px 0;
}
@media (max-width: 768px) {
  .qr-inner h2 {
    font-size: 28px;
  }
}

.phone {
    margin: 80px auto;
    max-width: 1200px;
}
.phone-inner {
    text-align: center;
}
.phone-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.phone-inner .img {
    margin-top: 30px;
}
@media (max-width: 768px) {
  .phone-inner h2 {
    font-size: 28px;
  }
}
.schedular {
    margin: 80px auto;
    max-width: 1200px;
}
.schedular-inner {
    text-align: center;
}
.schedular-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .schedular-inner h2 {
    font-size: 28px;
  }
}
.h2sub {
    margin-top: 20px;
    color: #828383;
}
.schedular-flex {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    text-align: left;
}
.schedular-flex .item1 {
    background: #E2EFFF;
    padding: 50px;
}
.schedular-flex .item1 .title {
    margin-bottom: 10px;
    color: #FD7B1A;
    font-size: 30px;
    font-weight: bold;
}
.schedular-flex .item1 .sub {
    font-size: 16px;
}
@media (max-width: 768px) {
  .schedular-flex  {
    flex-direction: column;
  }
  .schedular-flex .item1,.schedular-flex .item2 {
    width: 100%;
  }
  .schedular-flex .item1 .title {
    font-size: 25px;
  }
}
.margin-top-50 {
    margin-top: 50px;
}
.internet {
    margin: 80px auto;
    max-width: 1200px;
}
.internet-inner {
    text-align: center;
}
.internet-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.internet-inner .contains {
    margin-top: 50px;
    background: #E2EFFF;
    height: 300px;
}
@media (max-width: 768px) {
  .internet-inner h2 {
    font-size: 28px;
  }
}
.option {
    margin: 80px auto;
    max-width: 1200px;
}
.option-inner {
    text-align: center;
}
.option-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.option-flex {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.option-flex .item1 {
    background: #E4F3D6;
    width: 50%;
}
.option-flex .item1 h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #05BE55;
    font-size: 30px;
    font-weight: bold;
}
.option-flex .item1 .sub{
    font-size: 14px;
    padding: 0 50px;
    text-align: left;
}
.option-flex .item1 .img{
    padding: 20px 0 0 50px;
}

.option-flex .item2 {
    width: 50%;
    background: #FFF3D1;
}
.option-flex .item2 h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #FE8325;
    font-size: 30px;
    font-weight: bold;
}
.option-flex .item2 .sub{
    font-size: 14px;
    padding: 0 50px;
    text-align: left;
}
.option-flex .item2 .img{
    padding: 20px;
}
@media (max-width: 768px) {
  .option-inner h2 {
    font-size: 28px;
  }
}

.sensor-lifespan-title {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    margin-left: 50px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.sensor-lifespan-warning-list {
    text-align: left;
    list-style: none;
    padding-left: 50px;
    margin-top: 10px;
    font-size: 14px;
}
.sensor-lifespan-note2 {
    text-align: right;
    font-size: 12px;
}
@media (max-width: 768px) {
  .option-flex {
    flex-direction: column;
    margin-top: 30px;
  }
  .option-flex .item1,.option-flex .item2 {
    width: 100%;
  }
  .option-flex .item2 {
    padding-bottom: 20px;
  }
  .option-flex .item2 .sub {
    padding-left: 30px;
  }
  .sensor-lifespan-title {
    margin-left: 30px;
  }
  .sensor-lifespan-warning-list {
    padding-left: 30px;
  }
  .option-flex .item1 .sub {
    padding-left: 30px;
  }
}

.kandan {
    margin: 80px auto;
    max-width: 1200px;    
}
.kandan-inner {
    text-align: center;
}
.kandan-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .kandan-inner h2 {
    font-size: 28px;
  }
}
/* 全体を囲むセクション */
.process-section {
  background-color: #eaf2ff; /* 画像の薄い青色の背景 */
  padding: 40px 20px;
  border-radius: 16px;
  max-width: 1200px;
  width: 100%;
  margin-top: 30px;
}

/* 「導入までの流れ」のタイトル */
.section-title {
  text-align: left;
  font-size: 25px; /* 28px */
  font-weight: bold;
  color: #1f2937; /* やや濃いグレー */
  margin-top: 0;
  margin-bottom: 20px;
}

/* ステップカードのコンテナ (Gridレイアウト) */
.process-steps {
  list-style: none; /* olのデフォルトの点を消す */
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px; /* 24px カード間の余白 */
  /* モバイルでは1列 */
  grid-template-columns: 1fr;
  text-align: left;
  font-weight: bold;
}

/* 各ステップのカード */
.step-card {
  background-color: #ffffff;
  padding: 1.5rem; /* 24px */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* カードヘッダー（番号とタイトル） */
.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* 12px 番号とタイトルの間の余白 */
  padding-bottom: 1rem; /* 16px */
  margin-bottom: 1rem; /* 16px */
  border-bottom: 1px solid #dbeafe; /* 青みがかった薄い境界線 */
}

/* 番号の丸い部分 */
.step-number {
  background-color: #3b82f6; /* 青色 */
  color: #ffffff;
  font-weight: bold;
  font-size: 1.125rem; /* 18px */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* コンテナが狭くなっても縮まないようにする */
}

/* ステップのタイトル */
.step-title {
  font-size: 1.125rem; /* 18px */
  font-weight: bold;
  color: #3b82f6; /* 青色 */
  margin: 0;
  line-height: 1.4;
}

/* ステップの説明文 */
.step-description {
  font-size: 0.875rem; /* 14px */
  color: #374151; /* 少し柔らかい黒 */
  line-height: 1.6;
  margin: 0;
  flex-grow: 1; /* カードの高さを揃えるために、この要素が余白を埋める */
}

/* --- レスポンシブ対応 --- */

/* タブレットサイズ (幅768px以上) で2列表示 */
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PCサイズ (幅1024px以上) で4列表示 */
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.plan {
    margin: 80px auto;
    max-width: 1200px;   
}
.plan-inner {
    text-align: center;
}
.plan-inner h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .plan-inner h2 {
    font-size: 28px;
  }
}
/* 横スクロール用のコンテナ */
.table-container {
  overflow-x: auto; /* テーブルが画面幅を超えた場合に横スクロールを有効にする */
  width: 100%;
  margin-top: 50px;
}

/* テーブル全体のスタイル */
.pricing-table {
  width: 100%;
  min-width: 800px; /* テーブルが潰れすぎないように最小幅を指定 */
  border-collapse: collapse; /* 境界線を1本にまとめる */
  background-color: #fff;
  font-size: 14px;
}

/* すべてのセル(th, td)に共通のスタイル */
.pricing-table th,
.pricing-table td {
  border: 1px solid #dee2e6; /* 薄い灰色の境界線 */
  padding: 1.25rem 1rem; /* 上下左右の余白 */
  text-align: center;
  vertical-align: middle; /* 内容を上下中央に配置 */
  font-weight: bold;
}

/* テーブルヘッダー(thead)のスタイル */
.pricing-table thead th {
  background-color: #f1f3f5; /* 基本のヘッダー背景色 */
  color: #343a40;
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap; /* ヘッダーテキストが改行されないようにする */
}

/* 左上の空セルは背景色なし */
.pricing-table thead th:first-child {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #dee2e6;
}

/* プレミアムプランのヘッダースタイル */
.pricing-table .plan-premium {
  background-color: #f9a86a; /* オレンジ色 */
  color: #fff;
}

/* テーブル本体(tbody)の行見出し(左側の列) */
.pricing-table tbody th {
  text-align: left;
  background-color: #fff;
  font-weight: normal;
  white-space: nowrap;
  font-weight: bold;
}

/* ○ や — の記号 */
.pricing-table td {
  font-size: 1.5rem; /* 記号を少し大きくする */
  color: #343a40;
  font-weight: bold;
}

/* プレミアムプランのデータセル (背景が水色の部分) */
.pricing-table .plan-premium-cell {
  background-color: #eaf2ff; /* 薄い水色 */
}

/* 注釈テキストのスタイル */
.pricing-table .note {
  display: block;
  font-size: 12px;
  color: #6c757d;
  margin-top: 0.25rem;
  line-height: 1.2;
}
/* 注釈があるセルの記号のスタイル */
.pricing-table .symbol {
  display: block;
}





/*rakuraku-blue*/


@media only screen and (max-width: 768px) {
  .p__top-bnr_inner {
    width: 100% !important;   
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .p__top-bnr_content {
    width: 90%;
  }

  .p__top-bnr_content_link {
    width: 100%;
  }

  .p__top-bnr_content_link_inner {
    width: 100%;
    justify-content: center;
  }
}


.p__top-bnr {
    margin-top: 40px;
    padding: 70px 0;
}
.f__common-bgcolor_blue {
    background-color: #edf7ff;
}



.p__top-bnr_inner {
    width: 1100px;
    margin: 0px auto;
    display: flex
;
    justify-content: space-between;
}

.p__top-bnr_content {
    width: 346px;
    border-radius: 10px;
    transition: all ease 0.3s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}


.p__top-bnr_content_link {
    width: 346px;
    border-radius: 10px;
    padding: 6px;
    display: block;
    position: relative;
    text-decoration: none;
    transition: all ease 0.3s;
    background-color: #007bc7;
    border: 2px solid #007bc7;
    color: #FFF;
}


.p__top-bnr_content._payment_request .p__top-bnr_content_link_inner {
    padding: 0 0 0 105px;
}


.p__top-bnr_content_link_inner {
    width: 334px;
    height: 114px;
    border-radius: 7px;
    display: flex
;
    align-items: center;
}


.p__top-bnr_content._payment_request .p__top-bnr_content_image {
    width: 136px;
    height: 136px;
    position: absolute;
    bottom: -2px;
    left: -24px;
}



.p__top-bnr_content_text_title_big {
    font-size: 24px;
    font-weight: 700;
}


/*楽blueのタイトル*/
.advantage-heading {
  text-align: center;

}

.advantage-heading .subh2 {
 color: #8FC31E;
  font-size: 14px;
  margin-bottom: 20px;
}

.advantage-heading h2 {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main-font-color);
}




/*メイン*/

.main {
    background-image: url(./img/tokepita/background.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* height: 1000px; */
    /* margin-top: -180px;
    padding-top: 180px; */
}
.main-inner {
    display: flex;
    padding-left: 85px;
}
.main-left {
    width: 48%;
    padding-right: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-left-inner {

}
.main-right {
    width: 52%;
}
.main-right-img {
    padding: 30px;
    height: 600px;
}
.main-topimg {
    border: 6px solid #fff;
    border-right: none;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    height: auto;
}
.main-topimg img {
    transition: transform 0.3s ease; /* スムーズな拡大アニメーションを追加 */
}
.main-topimg a:hover {
    opacity: 1;
}
.main-topimg:hover img {
    transform: scale(1.2); /* 拡大率を1.2倍に設定 */
}
.main-text {
    display: inline;
    margin-top: 40px;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 30px;
    background: linear-gradient(transparent 90%, #FFD200 65%);
}
.main-text-small {
    font-size: 32px;
    font-weight: 800;
}
.main-btns {
    display: flex;
    align-items: center;
    margin-top: 60px;
    justify-content: start;
    column-gap: 20px;
}
.main-btn1, .main-btn2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 60px;
    border-radius: 10px;
    background: #55b958;
}
.main-btn2 {
    background: #4fa7d1
}
.main-btn1 span, 
.main-btn2 span {
    position: relative;
    font-size: 16px;
    color: #fff;
    padding: 0 0 0 25px;
}
.main-btn1 span::before,
.main-btn2 span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    background: url(./img/top/arrowbtn.png) center/cover;
    margin: auto;
}

@media only screen and (max-width: 1024px) {
    .main-inner {
        flex-direction: column;
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .main-right {
        width: 100%;
    }
    .main {
        /*background: var(--main-background-color);*/
        background:#fff;
        padding: 0;
        margin: 0;
        height: auto;
    }
    .main-left {
        width: 100%;
        margin-top: 20px;
        text-align: center;
        padding: 20px 0 0 0;
    }
    .main-left-inner {
        padding-right: 20px;
    }
    .main-left-inner p {
        text-align: center;
    }
    .main-left h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .main-btns { 
        margin-top: 30px;
        flex-direction: column;
    }
    .main-btn2 {
        margin: 10px 0;
    }
    .main-text {
        font-size: 28px;
        margin-top: 20px;
    }

    .main-text-small {
        font-size: 20px;
    }

}
/**
 * ***************************************
 * introduction
 * ***************************************
*/

.introduction.flexible {
  padding-bottom: 60px;
}

.introduction {
    margin-top: 250px;
    position: relative;
}
.introduction-inner {
    text-align: center;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top:-50px;
}
.subh2 {
    color: var(--main-background-color);
    font-size: 14px;
    margin-bottom: 20px;
}


.reason_ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;
    column-gap: 30px;
    flex-wrap: wrap;
    padding-left: 0;
}
.reason_list {
    border: 1px solid #000;
    width: 30%;
    overflow: hidden;
    background-color: #ffffffcf;

}
.reason_list h3 {
    margin-top: 10px;
    font-size: 16px;
}
.reason_list p {
    padding: 0px 20px;
    font-size: 14px;
    line-height: 1.2rem;
}
.reason_list .case-btninner {
    margin-top: 10px;
    margin-bottom: 20px;
}
.reason_list .case-btn {
    background-color:#00A143;
    padding:8px 40px
}
.reason_list img {
    transition: transform 0.3s ease; /* スムーズな拡大アニメーションを追加 */
}
.reason_list a:hover {
    opacity: 1;
}
.reason_list a:hover img {
    transform: scale(1.1); /* 拡大率を1.2倍に設定 */
}
.reason_list .case-btn::after,
.reason_list .case-btn::before {
    content: none;
}
.reason_ul {
        padding-left: 0;
    }
@media only screen and (max-width: 1024px) {
    .introduction {
        margin-top: 150px;
    }
    .introduction-inner {
        padding: 0 20px;
    }
    .introduction-youtube {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
    }
    .introduction-youtube iframe {
        position: absolute;
        top: 0;
        right: 0;
        width: 100% ;
        height: 100% ;
    }
    .introduction-inner::before,
    .introduction-inner::after {
        content: none;
    }
    .introduction::before {
        content: none;
    }
    
    .reason_list {
        width: 100%;
    }
}

/**
 * ***************************************
 * solution
 * ***************************************
*/
.solution {
    margin-top: 70px;
    position: relative;
}
.solution-inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    padding-top: 100px;
}
.solution-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}
.solution-flex .item{
    width: 32%;
}
.solution-flex img {
    width: 100%;
    height: auto;
}
.solution-text {
    padding-left: 10px;
    padding-right: 10px;
}
.solution-text1 {
    border-bottom: 1px solid #fff;
    font-size: 20px;
    padding-bottom: 5px;
}
.solution-text2 {
    font-size: 15px;
    padding-top: 5px;
}

.solution::before {
    position: absolute;
    content: "";
    right: 30%;
    top: -54px;
    background-image: url(./img/top/icon-light.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 143px;
    width: 120px;
    z-index: -1;
}
.solution::after {
    position: absolute;
    content: "";
    right: 0px;
    top: 32px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #FE8800;
    z-index: -1;
}
.solution-inner::before {
    position: absolute;
    content: "";
    left: -152px;
    bottom: -151px;
    background-image: url(./img/top/backgrounddot.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100px;
    width: 232px;
    z-index: -1;
}
@media only screen and (max-width: 1024px) {
    .solution {
        margin-top: 50px;
    }
    .solution-inner {
        padding: 0 20px;
    }
    .solution-flex {
        flex-direction: column;
        margin-top: 50px;
    }
    .solution-flex .item {
        width: 100%;
        margin-bottom: 10px;
    }
    .solution::after {
        content: none;
    }
    .solution::before {
        position: absolute;
        content: "";
        left: -3%;
        top: -30px;
        background-image: url(./img/top/icon-light.webp);
        background-repeat: no-repeat;
        background-size: cover;
        height: 90px;
        width: 74px;
    }
    .solution-inner::before {
        content: none;   
    }
}

/**
 * ***************************************
 * case
 * ***************************************
*/
.case {
    position: relative;
    margin-top: 150px;
}
.case-inner {
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.lotSection {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.lotsub1, .lotsub2, .lotsub3{
    overflow: hidden;
}
.lotSection img {
    transition: transform 0.3s ease; /* スムーズな拡大アニメーションを追加 */
}
.lotSection a:hover {
    opacity: 1;
}
.lotSection a:hover img {
    transform: scale(1.1); /* 拡大率を1.2倍に設定 */
}

.lotsub2 {
    margin-right: 20px;
    margin-left: 20px;
    overflow: hidden;
}

/*
.beforlotsub1 {
    position: relative;
    height: 110px;
    width: 115px;
    margin-left: 18px;
    display: grid;
    align-items: center;
    text-align: center;
    z-index: 2;
    margin-bottom: -130px;
}
*/

.beforlotsub1 {
    position: absolute;
    top: 20px;
    left: 18px;
    height: 110px;
    width: 115px;
    display: grid;
    align-items: center;
    text-align: center;
    z-index: 2;
    margin-bottom: 0;
}

.lotsub1, .lotsub2, .lotsub3 {
    position: relative;
}


.beforlotsub2, .beforlotsub3 {
    z-index: 2;
}

.beforlotsub1 h3 {
    font-size: 23px;
    font-weight: bolder;
}

.beforlotcolor1 {
    background-color: #F2D922ed;
}

.beforlotcolor2 {
    background-color: #D4D825ed;
}

.beforlotcolor3 {
    background-color: #58C3EEed;
}

.afterlotsub11 {
    position: relative;
    height: 38px;
    width: fit-content;
    background-color: #231815de;
    font-size: 20px;
    font-weight: 30;
    letter-spacing: 1.5px;
    margin-left: 18px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: -90px;
    display: flex;
    align-items: center;
}

.afterlotsub12 {
    position: relative;
    height: 38px;
    width: fit-content;
    background-color: #231815de;
    font-size: 20px;
    font-weight: 30;
    letter-spacing: 1.5px;
    margin-left: 18px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.afterlotcolory {
    color: #D2D056;
}

.afterlotcolorw {
    color: #FFFCF8;
}

.bottomlotsub1 {
    height: 60px;
    width: 100%;
    background-color: #fff;
    text-align: center;
    margin-top: 10px;
    display: grid;
    align-items: center;
    text-decoration: underline;
}

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

.case-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;
}


@media screen and (max-width: 767px) {
  .lotsub2 {
    margin-left: 0;
    margin-right: 0;
  }
}




@media only screen and (max-width: 1024px) {
    .case {
        margin-top: 50px;
    }
    .case-inner {
        margin-bottom: 20px;
        padding: 0 20px;
    }
    .lotSection {
        flex-direction: column;
        padding-top: 30px;
    }

    .lotsub2 {
        padding-right: 0px;
        padding-left: 0px;
        margin-top: 60px;
    }

    .lotsub3 {
        margin-top: 60px;
    }

    .afterlotsub11 {
        margin-top: -100px;
    }

    .afterlotsub12,
    .afterlotsub11 {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
        height: 40px;
    }

    .bottomlotsub1 {
        margin-top: 15px;
    }
    .case::before {
        height: 91%;
    }
}

/**
 * ***************************************
 * engineers
 * ***************************************
*/
.engineers {
    margin-top: 150px;
    /* width: 1400px; */
    margin-left: auto;
    margin-right: auto;
    background-color: var(--main-background-color);
    border-radius: 30px;
    padding: 15px;
}
.engineers-inner {
    border: 2px dashed #fff;
    border-radius: 20px;
    text-align: center;
    padding: 50px 100px;
}
.engineers .subh2,
.engineers h2 {
    color: #fff;
}
.engineers-flex {
    display: flex;
    justify-content: center;
    column-gap: 50px;
}
.engineers-left {
    width: 50%;
}
.engineers-right {
    width: 50%;
    text-align: left;
}
.engineers-text {
    font-weight: 700;
    font-size: 25px;
}
.engineers-text2 {
    font-weight: 500;
}
@media only screen and (max-width: 1024px) {
    .engineers {
        width: 100%;
        margin-top: 80px;
    }
    .engineers-inner {
        padding: 50px 20px;
    }
    .engineers-flex {
        flex-direction: column;
    }
    .engineers-left {
        width: 100%;
    }
    .engineers-right {
        margin-top: 30px;
        width: 100%;
        text-align: center;
    }
    .engineers-text {
        font-size: 22px;
    }
    .engineers-text2 {
        text-align: left;
    }
}


/**
 * ***************************************
 * clients
 * ***************************************
*/
.clients {
    margin-top: 150px;
    position: relative;
}
.clients-inner {
    text-align: center;
}
.clients-inner2 {
    background-color: var(--main-background-color);
    padding-top: 40px;
    padding-bottom: 40px;
}
.clients-flex {
    display: flex;
    justify-content: center;
    column-gap: 40px;
    flex-wrap: wrap;
}
.clientimg {
    max-width: 230px;
    height: auto;
}
.clients-row {
    margin-bottom: 40px;
}
.clients::before {
    position: absolute;
    content: "";
    left: 10%;
    top: 0;
    background-image: url(./img/top/icon-light.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 143px;
    width: 120px;
}
@media only screen and (max-width: 1024px) {
    .clients {
        margin-top: 50px;
    }
    .clients::before {
        content: none;
    }
    .clients-flex {
        column-gap: 20px;
    }
    .clientimg {
        width: calc(50% - 30px);
        margin-bottom: 15px;
    }
    .clients-row {
        margin-bottom: 0;
    }
}

/**
 * ***************************************
 * news
 * ***************************************
*/
.news {
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}
.news-inner {
    position: relative;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.news-context:first-child {
    border-top: 1px solid #E2E2E2;
    padding-top: 12px;
}
.news-context {
    font-weight: 400;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #E2E2E2;
    text-align: left;
    padding-left: 30px;
}
.news-date {
    text-align: left;
    margin-bottom: 10px;
}
.news::before {
    position: absolute;
    content: "";
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #8FC31E;
}
.news-inner::before {
    position: absolute;
    content: "";
    right: -400px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--main-background-color);
}

.news-inner::after {
    position: absolute;
    content: "";
    right: -328px;
    top: -25px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #fff;
}

@media only screen and (max-width: 1024px) {
    .news {
        margin-top: 50px;
    }
    .news::before {
        content: none;
    }
    .news-inner::before,
    .news-inner::after {
        content: none;
    }
}

/**
 * ***************************************
 * sns
 * ***************************************
*/
.sns {
    margin-top: 150px;
}
.sns-inner {
    text-align: center;
}
.sns-inner h2 {
    margin-bottom: 40px;
}
.sns-inner h2 span {
    position: relative;
    font-size: 20px;
    padding: 0 25px;
}
.sns-inner h2 span::before {
    content: "";
    position: absolute;
    top: 8px;
    width: 3px;
    height: 20px;
    background: #333;
    left: 0;
    transform: rotate(-20deg);
}
.sns-inner h2 span::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 3px;
    height: 20px;
    background: #333;
    right: 0;
    transform: rotate(20deg);
}
.sns-inner ul {
    padding-left: 0;
}
.sns-list {
    display: flex;
    justify-content: center;
}
.sns-list a {
    display: block;
    width: 70px;
    margin: 0 15px;
}
@media only screen and (max-width: 1024px) {
    .sns {
        margin-top: 50px;
    }
    .sns-inner {
        padding: 40px 20px;
    }
    .sns-inner h2 {
        margin-bottom: 20px;
    }
    .sns-inner h2 span {
        display: inline-block;
        position: relative;
        font-size: 18px;
    }
    .sns-list {
        padding: 0;
    }
    .sns-list a {
        width: 50px;
        margin: 5px;
    }
}
/**
 * ***************************************
 * footer
 * ***************************************
*/
.footer-section {
    /* margin-top: 151px; */
    /* background-color: #000; */
    /* margin-bottom: -170px; */
    background: #5a5858;
}
.footer-inner {
    text-align: left;
    max-width: 1200px;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-left {
    width: 50%;
}
.footer-left img{
   margin-bottom: 10px;
}
.footer-hon {
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 3px solid #fff;
    margin-bottom: 10px;
    max-width: 350px;
}

/* ▼2段目グレー背景フッター用CSS追加▼ */
.footer-bottom {
  color: #fff;
  width: 100%;
  padding: 30px 0 0 0;
}
.footer-bottom p {
    color: #fff;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 20px 40px;
}
.footer-bottom-left {
  width: 60%;
  font-size: 15px;
  text-align: left;
}
.footer-bottom-right {
  width: 40%;
  text-align: right;
  font-size: 18px;
  font-weight: 500;
}
.footer-bottom-right b {
  font-weight: bold;
}
@media (max-width: 800px) {
  .footer-bottom-inner {
    flex-direction: column;
    padding: 0 10px 20px 10px;
  }
  .footer-bottom-left, .footer-bottom-right {
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/**
 * ***************************************
 * contact
 * ***************************************
*/

.contact{
	
}
.contact-title{
	margin: 4rem auto 2rem;
}
.contact-title h3{
	font-weight: 600;
	font-size:16px!important;
}
.contact-title p{
	margin-top: 20px;
}
.contact p{
	margin-top: 25px;
}
.contact p label{
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}
.contact p input:read-write, input:read-only, input[type=radio], input[type=checkbox], select, textarea{
	background: #fff;
    border: 1px solid rgba(0,0,0,.2);
    padding: 0.6em;
    max-width: 100%;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    margin: 0.4em 1em 0.4em 0;
    width: 17em;
}
.contact p input[type=submit], button {
    background-color:#009e41;
    color: #fff;
    border: 0;
    padding: 0.65em 1.4em;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .065em;
    -webkit-appearance: none;
    transition: background .3s,color .3s,transform .3s;
}
.contact p input[type=submit]:hover, button:hover {
    background-color: #009e41;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    transform: translateY(-1px);
}
.contact p textarea {
    width: 100%;
    min-height: 13.5em;
    margin: 0;
}
.contact p input[type=radio], input[type=checkbox] {
    border-radius: 6px;
    clear: none;
    cursor: pointer;
    padding: 0 2px;
    margin: 0 0.3em 0 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 1;
    -webkit-appearance: none;
}

.contact p input[type="checkbox"]:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 5px;
    margin-bottom: 4px;
    margin-left: 1px;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    transform: rotateZ(-45deg) skewY(-10deg);
}
.contact p input[type="checkbox"]:checked:before {
    border-left: 1px solid;
    border-bottom: 1px solid;
}
span.wpcf7-checkbox .wpcf7-list-item {
    display: block !important;
}
.contact p input[type=radio] {
    padding: 0;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.contact p input[type="radio"]:checked:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    background-color: #222;
    width: 12px;
    height: 12px;
}


/**
 * ***************************************
 * blog
 * ***************************************
*/
p.has-background {
    padding: 2em 1em 2em 15px !important;
}


.waku {
  border: solid 1px #e1e1e1;
  box-shadow: 2px 2px 4px gray;
}

/**
 * ***************************************
 * FAQ
 * ***************************************
*/


.qa-007 {
    max-width: 900px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}

.qa-007 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-007 summary::before,
.qa-007 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-007 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-007 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-007[open] summary::after {
    transform: rotate(225deg);
}

.qa-007 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-007[open] p {
    transform: none;
    opacity: 1;
}

.qa-007 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}
#wpcf7-f107-o1{
    text-align: left;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
    background: transparent;
    height: 30px;
    margin: 0 8px;
    opacity: 1;
    outline: none;
    position: relative;
    transform: rotate(-90deg);
    width: 30px
}

.swiper-pagination-bullets .swiper-pagination-bullet svg {
    left: 0;
    position: absolute;
    top: 0
}

.swiper-pagination-bullets .swiper-pagination-bullet .swiper-pagination-bullet__inner-bg {
    fill: none;
    stroke: hsla(210,3%,87%,.2);
    stroke-width: 2;
    visibility: hidden
}

.swiper-pagination-bullets .swiper-pagination-bullet .swiper-pagination-bullet__inner {
    fill: #a8aaac;
    stroke: #a8aaac;
    stroke-width: 0;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round
}

.swiper-pagination-bullets .swiper-pagination-bullet-active:first-child .swiper-pagination-bullet__inner {
    animation: offset 7s linear
}

.swiper-pagination-bullets .swiper-pagination-bullet-active .swiper-pagination-bullet__inner-bg {
    visibility: visible
}

.swiper-pagination-bullets .swiper-pagination-bullet-active .swiper-pagination-bullet__inner {
    fill: none;
    stroke-dashoffset: 0;
    stroke-width: 2;
    transition: stroke-dashoffset 7s
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    position: absolute;
    bottom: initial;
    top: initial;
    left: initial;
    width: initial;
    bottom: -45px;
    right: 40%;
}

#top-slider {
    position: relative;
}
.swiper-slide .slide-text {
    position: absolute;
    left: 10px;
    bottom: 6%;
    height: fit-content;
    width: fit-content;
    font-size: 20px;
    font-weight: 500;
    background-color: rgba(35,24,21,0.7);
    padding: 6px 7px;
}
.swiper-slide .slide-text a {
    font-size: 1em;
    color: #fff;
    text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
    .swiper-slide .slide-text {
        font-size: 14px;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: -34px;
        right: 21%;
        z-index: auto;
    }
}

.flexible img {
    max-width: 1000px;
}
.flexible .case-btninner {
    margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
    .flexible img {
        max-width: 100%;
        
    }
    .flexible p {
        font-size: 12px;
        line-height: 20px;
        text-align: left;
    }
    .flexible .case-btninner {
        margin-top: 20px;
    }
}

.companypv {
    /* margin-top: 70px; */
}
.companypv_inner {
    text-align: center;
    padding: 0 20px;
}
.companypv_inner .companypv_text {
    font-size: 29px;
    font-weight: 700;
}
.companypv_inner .flex {
    margin-top: 20px;
    display: flex;
    row-gap: 10px;
    /* justify-content: center; */
}
.companypv_inner .flex .item img {
    width: 160px;
}
#company_swiper{
    overflow: hidden;
}
.swiper-wrapper{
    transition-timing-function: linear;
}


@media only screen and (max-width: 1024px) {
    .companypv_inner .flex .item {
        width: 100px !important;
    } 
    .companypv_inner .companypv_text {
        font-size: 16px;
    }
}


/**
 * ***************************************
 * お問い合わせフォームのボタン
 * ***************************************
*/

a.btn_02 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    margin: auto;
    padding: 1rem  4rem;
    font-weight: bold;
    border: 2px solid #27acd9;
    background: #27acd9;
    color: #fff;
    transition: 0.5s;
}
a.btn_02:hover {
    color: #27acd9;
    background: #fff;
}

a.btn--radius {
   border-radius: 100vh;
}


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

/**
 * ***************************************
 * カスタムリスト
 * ***************************************
*/
.custom-solid-border-list {
    border: solid 2px #ffb03f;
    padding: 0 0.5em;
    position: relative;
}

.custom-solid-border-list li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    border-bottom: dashed 1px silver;
    list-style-type: none !important;
}

.custom-solid-border-list li:before {
    font-family: "Font Awesome 6 Free";
    /*アイコン種類*/
    content: "\f138";
    position: absolute;
    /*左端からのアイコンまで*/
    left: 0.5em;
    /*アイコン色*/
    color: #ffb03f;
    font-weight: 900;
}

.custom-solid-border-list li:last-of-type {
    border-bottom: none;
}


/*トップ2*/
@media screen and (min-width: 1900px) and (max-width: 2000px) {
  .main-inner {
    padding-left: 200px; /* 必要なら150〜180pxなどに調整OK */
  }
}


section.clients-fixed .clients-inner h2 {
  font-size: 42px;
  margin-bottom: 75px;
}


section.clients-fixed {
  padding-bottom: 80px; /* ← お好みで調整可能：60〜120pxとか */
  margin-top: -60px;
}


section.p__top-bnr {
  padding-bottom: 120px;
}


/* 各文字にアニメーションを適用 */




/* .animationの設定 */

.animation {
  display: inline-block;
  font-size: 29px;
  font-weight: normal;
}

.animation span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: jump 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--i));
}

/* 繰り返し用のアニメーショントリガー */
@keyframes jump {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




**
 * ***************************************
 * セコム・顔認証
 * ***************************************
 *
.feature-text .feature-description {
  color: #fff;
}


.feature-description {
  padding: 0 16px; /* 左右に余白 */
color: #fff !important;  /* 説明文 */
padding: 0px 5px 0px 5px;
}

.image-with-text {
  position: relative;
}

.custom-caption2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ← これでspan幅を文字数に合わせる */
  gap: 6px;
  position: absolute;
  top: 30px;
  left: 16px;
  z-index: 1;
}

.custom-caption2 span {
  display: inline-block;
  background-color: #000000bd;
  color: #fff;
  font-size: 26px;
  padding: 4px 6px 4px 6px;
  line-height: 1.1;
  /* width は指定しない！！ */
}



.feature-image-wrapper {
  position: relative;
}

.feature-image-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  line-height: 1.4;
  z-index: 2;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.feature-image {
  width: 100%;
  display: block;
  border-radius: 0; /* 画像の角を丸めない */
}



.feature-button-v5 {
  display: inline-block;
  padding: 0.5em 1.5em;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95em;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

.feature-section-v5-wrapper {
  padding-top: 150px;
  background-color: #fbf98d; /* ← ダミーで真っ黒 */
}

.feature-section-v5 {
  padding: 2em 5vw;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-card-v5 {
  width: 350px;
  max-width: 90vw;
  background: #00706A;
  border-radius: 20px 20px 20px 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  color: #fff;
  text-align: center;
  font-family: sans-serif;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}
