@charset "utf-8";
/*
Theme Name: Liconic
Theme URI: https://lico-inc.com
Description: LicoオリジナルWordPressテーマ「Liconic」
Version: 1.0
Author: Lico
Author URI: https://lico-inc.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive, custom-theme
Text Domain: liconic
*/
/* ----------------------------

1. Body Style

2. Header Style

3. Footer Style

4. Teaser Style

5. Common Style
5-1. common
5-2. link Style
5-3. h Style

6. Sidebar Style

7. Main Contents Style

8. Top Style

9. Page Style

10. Archive Style

11. Single Style
11-1. single common
11-2. Pagelink Style

---------------------------- */
html {
  scroll-behavior: smooth;
}
html {
  padding: 0;
  margin: 0 !important;
}
html.fontawesome-i2svg-active.fontawesome-i2svg-complete {
  padding: 0;
  margin: 0 !important;
}
/* 1. Body Style
-------------------------------------------------------------------------------*/
body {
  font-family: Meiryo, 'メイリオ', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'ＭＳ ゴシック', sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.2em;
}
#wrap {
  width: 100%;
  background-color: #FFF;
}
#main-wrap {
  margin: 0 auto;
  overflow: hidden;
}
.wrapper {
  max-width: 1900px;
  margin: 0 auto;
  width: calc(100% - 50px);
}
#main-wrap p {
  line-height: 2.2;
}
/* 2. Header Style
-------------------------------------------------------------------------------*/
#main-header {
  width: 100%;
  background-color: #FFF;
}
#main-header .inner {
  margin: 0 auto;
}
#main-header .header-logo {
  line-height: 0;
}
.header-logo img {
  max-height: 70px !important;
}
.global-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1900px; /* 好きな最大幅でOK */
  margin: 0 auto; /* 横中央寄せ */
  padding: 0 1rem; /* 両端余白 */
  box-sizing: border-box; /* パディングを幅に含める */
}
.home .liconic-menu a {
  color: #fff;
  transition: 0.3s ease;
}
.liconic-menu a:hover {
  color: #b12f7c;
}
header.global-header.fixed .liconic-menu a {
  color: #000;
  transition: 0.3s ease;
}
header.global-header.fixed .liconic-menu a:hover {
  color: #b12f7c;
}
/* ロゴ */
.global-header .header-logo {
  flex-shrink: 0; /* ロゴが縮まらないように */
}
/* 3. Footer Style
-------------------------------------------------------------------------------*/
#main-footer {
  width: 100%;
  background-color: #000;
  color: #FFF;
  font-size: 12px;
  background: url(http://lico-inc.com/wp-content/uploads/2026/01/footer.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
#main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 透明度0.5の黒 */
  z-index: 0;
}
#main-footer > * {
  position: relative;
  z-index: 1;
}
#main-footer a {
  color: #FFF;
}
#main-footer .inner {
  margin: 0 auto;
  padding: 20px 0;
}
#main-footer .footer-logo {
  float: left;
  margin-right: 25px;
}
#main-footer .footer-menu ul {
  float: right;
  margin-right: 25px;
  width: 540px;
}
#main-footer .footer-menu li:before {
  content: "\003e";
  margin-right: 5px;
}
#main-footer .footer-contact {
  margin-top: 15px;
}
#main-footer .copyright {
  text-align: center;
  padding: 20px;
}
.footer-sns {
  display: none !important;
}
/* -------------------------------
   メインビジュアル
---------------------------------*/
#main-visual {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面いっぱい */
  overflow: hidden;
}
#main-visual video#mv-video {
  position: fixed; /* 背景固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 全画面にフィット */
  z-index: -1; /* コンテンツの背面 */
}
#main-visual #mv-image {
  position: fixed; /* 背景固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 画面いっぱいにする */
  object-fit: cover; /* トリミングして全面表示 */
  display: block;
  z-index: -1;
}
#main-visual .mv-content {
  position: absolute;
  top: 35%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 800px;
  color: #fff;
  text-align: left;
}
.mv-content h1 {
  font-size: 75px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}
p.mv_sub_txt {
  position: relative; /* 矢印用に相対位置 */
  display: inline-block; /* 幅をテキストに合わせる */
  padding: 1rem 1.5rem; /* 吹き出し内の余白 */
  background: linear-gradient(135deg, #a0d8ff, #70c0ff); /* やわらかい青のグラデーション */
  color: #fff; /* 文字色は白 */
  border-radius: 12px; /* 丸み */
  font-size: 1rem;
  text-align: center;
}
/* 下矢印の吹き出し部分 */
p.mv_sub_txt::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #96d3ff transparent transparent transparent;
}
/*.mv-content h1 span {
    font-size: 45px;
    display: block;
}*/
.mv-content p {
  font-size: 21px;
  line-height: 1.7;
}
#main-visual {
  position: relative;
  overflow: hidden;
}
#main-visual video#mv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#main-visual::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgb(194 119 130 / 50%), rgb(0 6 8 / 60%));
  pointer-events: none;
  z-index: -1;
}
/* フェードイン・フェードアウト用アニメーション */
.mv-content.fade-out {
  animation: fadeOut 1s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 次のセクション */
#next-content {
  padding: 5rem 2rem;
  background: #f4f4f4;
}
/* -------------------------------
   レスポンシブ対応
---------------------------------*/
@media (max-width: 1024px) {
  #main-visual .mv-content {
    max-width: 500px;
  }
  #main-visual .mv-content h1 {
    font-size: 2.5rem;
  }
  #main-visual .mv-content p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #main-visual .mv-content {
    max-width: 90%;
    top: 40%;
  }
  #main-visual .mv-content h1 {
    font-size: 2rem;
  }
  #main-visual .mv-content p {
    font-size: 0.9rem;
  }
}
/* 4. Teaser Style
-------------------------------------------------------------------------------*/
/* 5. Common Style
-------------------------------------------------------------------------------*/
.sp {
  display: none;
}
@media (max-width: 1080px) {
  .sp {
    display: block;
  }
}
/* 5-1. common
-------------------------------------------------------------------------------*/
.smb-section__lede {
  font-size: 20px;
  line-height: 2.5;
  padding: 30px 0;
}
/*button*/
/* ボタンの基本 */
a.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  width: 14rem;
  height: auto;
}
/* 円部分 */
a.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(90deg, #89c9f4 0%, #d26cae 100%);
  border-radius: 1.625rem;
}
/* 矢印アイコン */
a.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
a.learn-more .circle .icon.arrow {
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
a.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
/* テキスト部分 */
a.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin-left: 2.0rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  /*text-transform: uppercase;*/
}
/* ホバーアニメーション */
a.learn-more:hover .circle {
  width: 100%;
}
a.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
a.learn-more:hover .button-text {
  color: #fff;
}
/* 5-2. link Style
-------------------------------------------------------------------------------*/
a:link {}
a:visited {}
a:hover {}
a:active {}
/* 5-3. h Style
-------------------------------------------------------------------------------*/
h1 {
  font-weight: normal;
  font-size: 12px;
}
h2 {
  font-size: 20px;
  margin-bottom: 15px;
  padding: 5px 10px;
}
h3 {
  font-size: 14px;
  margin-bottom: 10px;
  padding: 0 10px;
}
/* 6. Sidebar Style
-------------------------------------------------------------------------------*/
#sidebar ul {
  list-style: none;
  margin-bottom: 35px;
}
/* 7. Top Style
-------------------------------------------------------------------------------*/
.top-part {
  margin-bottom: 30px;
}
.top-part img {
  vertical-align: top;
}
h2.wp-block-heading.has-text-align-center.top_catch {
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: 0.2em;
  color: #111111;
  padding: 70px 0px 30px;
}
/* 8. Page Style
-------------------------------------------------------------------------------*/
.section_wrap {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}
/* 9. Archive Style
-------------------------------------------------------------------------------*/
.post {
  margin-bottom: 25px;
}
.postinfo {
  font-size: 12px;
}
/* 10. Single Style
-------------------------------------------------------------------------------*/
/* 10-1. common
-------------------------------------------------------------------------------*/
.single article {
  padding-top: 100px;
  border-bottom: 2px solid #000;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.single .article-date {
  display: block;
  margin-bottom: 8px;
}
.carousel-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.carousel .slide {
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
.carousel .slide img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto 10px;
}
.carousel .slide-caption {
  font-size: 14px;
  color: #333;
}
/* 10-2. Pagelink Style（前後の投稿へのリンク）
-------------------------------------------------------------------------------*/
.pagelink {
  border-top: 2px solid #000;
  padding-top: 15px;
  margin-top: 20px;
}
.pagelink a {
  color: #000;
  text-decoration: none;
}
.pagelink a:hover {
  opacity: 0.6;
}
.pageprev {
  width: 48%;
  float: left;
  text-align: left;
}
.pagenext {
  width: 48%;
  float: right;
  text-align: right;
}
.wrap {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  margin: 0 auto;
}
/* 円（軌道） */
.orbit {
  width: 350px;
  height: 350px;
  border: 1px solid rgb(156 152 240 / 50%);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
/* orb（回転する要素） */
.orb {
  position: absolute;
  top: 100%;
  left: 50%;
  width: var(--size, 250px);
  height: var(--size, 250px);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center -35px;
}
/* アニメーション */
.orb:nth-child(1) {
  animation: orbit1 30s linear infinite;
}
.orb:nth-child(2) {
  animation: orbit2 30s linear infinite;
}
.orb:nth-child(3) {
  animation: orbit3 30s linear infinite;
}
/* 回転アニメーション */
@keyframes orbit1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes orbit2 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(480deg);
  }
}
@keyframes orbit3 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(600deg);
  }
}
/* orb 内テキスト */
.orb .center-label {
  color: #fff;
  position: absolute;
  text-align: center;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 33px;
  line-height: 1.5;
  pointer-events: none;
  letter-spacing: 0.1em;
  transform: rotate(calc(-1 * var(--rotate, 0deg)));
}
.orb .center-label span {
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  display: block;
  line-height: 2.0;
}
.features {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.feature {
  position: relative;
  flex: 1;
  background: #f7f7f7;
  padding: 40px 20px 20px; /* 上の余白を大きめにしてアイコンがはみ出す */
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.icon-circle {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: #f7f7f7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-circle .material-icons {
  color: #e36751;
  font-size: 60px;
}
.feature h3 {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  /*color: #234364;*/
}
.feature p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: left;
}
/* レスポンシブ対応 */
@media (max-width: 900px) {
  .features {
    flex-direction: column;
    gap: 16px;
  }
}
.smb-section__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(35px, 5.5vw, 100px);
  letter-spacing: 0.2em;
  /*color: #bfdff8;*/
}
.top_intro {
  text-align: center; /* タイトル全体を中央寄せ */
  position: relative;
}
.top_intro h2.smb-section__title {
  position: relative;
  display: inline-block;
  padding: 0 140px; /* 両サイドの線のぶん余白 */
  z-index: 1;
}
.top_intro h2.smb-section__title::before, .top_intro h2.smb-section__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 140px; /* 線の長さ */
  height: 2px;
  background-color: #bfdff8; /* 線の色 */
  transform-origin: center;
  z-index: 0; /* 文字の下に配置 */
}
.top_intro h2.smb-section__title::before {
  left: 0;
  transform: translateY(-50%) rotate(50deg); /* 左線：右上がり */
}
.top_intro h2.smb-section__title::after {
  right: 0;
  transform: translateY(-50%) rotate(-50deg); /* 右線：右下がり（逆角度） */
}
/* ▼ スマホ・タブレット対応 ▼ */
@media screen and (max-width: 768px) {
  .top_intro h2.smb-section__title {
    padding: 0 100px; /* 余白を少し狭く */
  }
  .top_intro h2.smb-section__title::before, .top_intro h2.smb-section__title::after {
    width: 100px; /* 線を短く */
  }
  .top_intro h2.smb-section__title::before {
    transform: translateY(-50%) rotate(40deg); /* 角度をやや緩く */
  }
  .top_intro h2.smb-section__title::after {
    transform: translateY(-50%) rotate(-40deg);
  }
  .c-container {
    padding: 0 10px;
  }
  .top_intro h2.smb-section__title span.sme-font-size {
    font-size: 20px !important;
  }
  .smb-section__lede {
    font-size: 14px;
    line-height: 2.5;
    padding: 0px 0;
  }
  .wp-block-image.top_intro_img {
    margin-top: 0;
  }
  h2.smb-section__title {
    font-size: 1.5em;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .top_intro h2.smb-section__title {
    padding: 0 0px;
  }
  .top_intro h2.smb-section__title::before, .top_intro h2.smb-section__title::after {
    width: 40px;
    display: none;
  }
  .top_intro h2.smb-section__title span.sme-font-size {
    font-size: 20px !important;
    border-bottom: 1px solid #bfdff8;
  }
}
.top_intro {
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
/*.wp-block-image.top_intro_img {
    position: absolute;
    bottom: -68px;
    right: -15%;
    z-index: -1;
}*/
.intro_icon img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media screen and (max-width: 1500px) {
  /* 親ブロック */
  /*  .wp-block-image.top_intro_img {
    position: absolute !important;
    bottom: -68px !important;
    right: 0 !important;
    z-index: -1 !important;
  }*/
  /* 画像自体 */
  .wp-block-image.top_intro_img img {
    width: 320px !important;
    height: auto !important; /* 高さも崩れないように */
  }
}
@media screen and (max-width: 768px) {
  .wp-block-image.top_intro_img {
    position: initial !important;
    bottom: -68px !important;
    right: 0 !important;
    z-index: -1 !important;
  }
  /* 画像自体 */
  .wp-block-image.top_intro_img img {
    width: 80% !important;
    height: auto !important; /* 高さも崩れないように */
  }
}
/*強み section*/
/* 強みリスト */
.strengths-list {
  list-style: none;
  margin: 0;
  max-width: 90%;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0;
}
.strengths-list li {
  position: relative;
  background-color: #234364;
  color: #fff;
  border-radius: 14px;
  padding: 22px 24px 22px 48px;
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* ホバー時の動き（少し明るく） */
.strengths-list li:hover {
  background-color: #2d5178;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
/* 左の装飾ライン＋丸アイコン（白） */
.strengths-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 35px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
/* モバイル対応 */
@media (max-width: 600px) {
  .strengths-list li {
    padding: 18px 18px 18px 42px;
    font-size: 15px;
  }
}
.strengths-list span.sme-font-size {
  border-bottom: 1px solid;
}
.top_service .button {
  text-align: right;
}
.top_service_bg {
  background: url('http://lico-inc.com/wp-content/uploads/2025/10/s_bg02.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
/* 吹き出しベース */
.top_intro .speech {
  position: absolute;
  background: #fff;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #444;
  line-height: 1.6;
  font-size: 14px;
  text-align: left !important;
  width: fit-content;
  max-width: 230px;
  transition: transform 0.3s ease;
}
/* 共通の ::after は形だけ指定 */
.top_intro .speech::after {
  content: "";
  position: absolute;
  bottom: -10px; /* 吹き出しの下に */
  left: 30px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: transparent; /* デフォルトは透明にしておく */
}
/* 各吹き出しごとに色を指定 */
.top_intro .s1::after {
  border-top-color: #b2dbfb; /* s1の背景色に合わせる */
}
.top_intro .s2::after {
  border-top-color: #da90c0; /* s2の背景色に合わせる */
}
.top_intro .s3::after {
  border-top-color: #fef6c9; /* s3 */
}
.top_intro .s4::after {
  border-top-color: #c9f7ea; /* s4 */
}
.top_intro .s5::after {
  border-top-color: #cdd9f6; /* s5 */
}
.top_intro .s6::after {
  border-top-color: #f8cce2; /* s6 */
}
/* ホバーでふわっと動く */
.top_intro .speech:hover {
  transform: translateY(-5px);
}
.top_intro .s1 {
  top: 50px;
  left: 40px;
  transform: rotate(-15deg);
  background: #aed9f3; /* 水色 */
  color: #3a6fa3; /* 同系の濃い青 */
  text-align: left;
}
.top_intro .s2 {
  top: 60px;
  right: 40px;
  transform: rotate(4deg);
  background: #e7a6ca; /* ピンク */
  color: #b14983; /* 落ち着いたローズ系 */
}
.top_intro .s3 {
  top: 240px;
  left: 60px;
  transform: rotate(2deg);
  background: #fdf1a8; /* レモンイエロー */
  color: #a6921c; /* 深いマスタード系 */
}
.top_intro .s4 {
  top: 240px;
  right: 80px;
  transform: rotate(-2deg);
  background: #b6f0db; /* グリーン */
  color: #3a8b6a; /* グリーン系の濃い色 */
}
.top_intro .s5 {
  bottom: 205px;
  right: 80px;
  transform: rotate(2deg);
  background: #c3cff3; /* ブルーグレー */
  color: #445a9c; /* 落ち着いた青紫 */
  text-align: left;
}
.top_intro .s6 {
  bottom: 205px;
  left: 60px;
  transform: rotate(-2deg);
  background: #f5bcd6; /* ピンク */
  color: #a14b6c; /* くすみローズ */
  text-align: left;
}
@media (max-width: 1080px) {
  .top_intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center; /* ← flex-startからcenterへ変更 */
    padding: 0 20px; /* ← 端がくっつかないよう余白を追加 */
  }
  .top_intro .speech {
    position: relative;
    transform: none !important;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: none;
    padding: 12px 16px 12px 40px;
    font-size: 16px;
    text-align: left;
    margin: 0 auto 10px;
    display: inline-block;
    background: none;
    border: 1px solid;
  }
  /* チェックマークアイコン */
  .top_intro .speech::before {
    content: "✔";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 14px;
    opacity: 0.7;
  }
  /* 吹き出しの三角を非表示に */
  .top_intro .speech::after {
    display: none;
  }
  /* 位置指定リセット */
  .top_intro .s1, .top_intro .s2, .top_intro .s3, .top_intro .s4, .top_intro .s5, .top_intro .s6 {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .speech.s1 br, .speech.s2 br, .speech.s3 br, .speech.s4 br, .speech.s5 br, .speech.s6 br {
    display: none;
  }
  .wp-block-image.top_intro_img {
    margin-top: 50px;
  }
  h3.sp {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
}
.t_center {
  text-align: center;
}
/*top flow*/
.flow {
  padding: 60px 20px;
}
.flow-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 40px;
}
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Each step */
.flow-step {
  background: #ffffff;
  border: 1px solid rgba(35, 67, 100, 0.15);
  border-radius: 12px;
  padding: 24px 10px 10px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
/* Visible animation */
.flow-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.flow-step .num {
  position: absolute;
  top: -42px;
  left: 5px;
  background: #e36751;
  color: #fff;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  letter-spacing: 2px;
  text-align: center;
}
.flow-step p {
  font-size: 14px;
  line-height: 1.6;
}
/* ---- PC 横並び ---- */
@media (min-width: 768px) {
  .flow-list {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .flow-step {
    width: 180px;
    min-height: 160px;
    margin: 0 10px;
    text-align: left;
  }
  /* arrow */
  .flow-step::after {
    content: "";
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #827dd8;
  }
  /* 最後のステップに矢印なし */
  .flow-step:last-child::after {
    display: none;
  }
}
/*flow 20251124*/
.flow-section {
  display: flex;
  flex-direction: column;
}
.flow-section .heading {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 94.44px;
}
.flow-section .text-wrapper {
  position: absolute;
  top: -1px;
  left: 496px;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 85px;
  text-align: center;
  letter-spacing: 0;
  line-height: 94.4px;
  white-space: nowrap;
}
.flow-section .paragraph {
  height: 28px;
  position: relative;
  align-self: stretch;
  width: 100%;
}
.flow-section .div {
  position: absolute;
  top: 0;
  left: 558px;
  font-family: "Montserrat-Regular", Helvetica;
  font-weight: 400;
  color: #495565;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}
.flow-section .container-2 {
  display: grid;
  margin-left: 43px;
  width: 1152px;
  height: 356px;
  position: relative;
  margin-top: 64px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.flow-section .card {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid;
  border-color: #0000001a;
}
.flow-section .flow-card {
  left: 265px;
  width: 102px;
  position: absolute;
  top: 1px;
  height: 96px;
  display: flex;
  opacity: 0.05;
}
.flow-section .text-wrapper-2 {
  width: 103px;
  height: 96px;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #6464e6;
  font-size: 96px;
  letter-spacing: 0;
  line-height: 96px;
  white-space: nowrap;
}
.flow-section .flow-card-2 {
  display: flex;
  flex-direction: column;
  width: 318px;
  height: 116px;
  align-items: flex-start;
  gap: 16px;
  position: absolute;
  top: 25px;
  left: 25px;
}
.flow-section .container-3 {
  display: flex;
  height: 48px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
}
.flow-section .icon-wrapper {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 33554400px;
  background: linear-gradient(117deg, rgb(242 112 145) 0%, #e36751 100%);
}
.flow-section .icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: #fff;
}
.flow-section .vector {
  position: absolute;
  width: 83.33%;
  height: 24.99%;
  top: 25.00%;
  left: 4.17%;
}
.flow-section .img {
  position: absolute;
  width: 83.33%;
  height: 66.67%;
  top: 12.50%;
  left: 4.17%;
}
.flow-section .div-wrapper {
  position: relative;
  flex: 1;
  flex-grow: 1;
  height: 28px;
}
.flow-section .text-wrapper-3 {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}
.flow-section .paragraph-2 {
  height: 52px;
  position: relative;
  align-self: stretch;
  width: 100%;
}
.flow-section .text-wrapper-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 304px;
  font-family: "Montserrat-Regular", Helvetica;
  font-weight: 400;
  color: #495565;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
}
.flow-section .card-2 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid;
  border-color: #0000001a;
}
.flow-section .flow-card-3 {
  left: 246px;
  width: 121px;
  position: absolute;
  top: 1px;
  height: 96px;
  display: flex;
  opacity: 0.05;
}
.flow-section .text-wrapper-5 {
  width: 122px;
  height: 96px;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #6464e6;
  font-size: 96px;
  letter-spacing: 0;
  line-height: 96px;
  white-space: nowrap;
}
.flow-section .vector-2 {
  position: absolute;
  width: 83.33%;
  height: 83.33%;
  top: 4.17%;
  left: 4.17%;
}
.flow-section .card-3 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid;
  border-color: #0000001a;
}
.flow-section .container-4 {
  position: relative;
  width: 48px;
  height: 48px;
}
.flow-section .text-wrapper-6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 303px;
  font-family: "Montserrat-Regular", Helvetica;
  font-weight: 400;
  color: #495565;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
}
.flow-section .card-4 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid;
  border-color: #0000001a;
}
.flow-section .flow-card-4 {
  left: 236px;
  width: 131px;
  position: absolute;
  top: 1px;
  height: 96px;
  display: flex;
  opacity: 0.05;
}
.flow-section .text-wrapper-7 {
  width: 132px;
  height: 96px;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #6464e6;
  font-size: 96px;
  letter-spacing: 0;
  line-height: 96px;
  white-space: nowrap;
}
.flow-section .text-wrapper-8 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Montserrat-Regular", Helvetica;
  font-weight: 400;
  color: #495565;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
}
.flow-section .card-5 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid;
  border-color: #0000001a;
}
.flow-section .flow-card-5 {
  left: 245px;
  width: 122px;
  position: absolute;
  top: 1px;
  height: 96px;
  display: flex;
  opacity: 0.05;
}
.flow-section .text-wrapper-9 {
  width: 123px;
  height: 96px;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #6464e6;
  font-size: 96px;
  letter-spacing: 0;
  line-height: 96px;
  white-space: nowrap;
}
.flow-section .card-6 {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid;
  border-color: #0000001a;
}
.flow-section .flow-card-6 {
  left: 241px;
  width: 126px;
  position: absolute;
  top: 1px;
  height: 96px;
  display: flex;
  opacity: 0.05;
}
.flow-section .text-wrapper-10 {
  width: 127px;
  height: 96px;
  font-family: "Montserrat-Bold", Helvetica;
  font-weight: 700;
  color: #6464e6;
  font-size: 96px;
  letter-spacing: 0;
  line-height: 96px;
  white-space: nowrap;
}
.flow-section .vector-3 {
  position: absolute;
  width: 75.00%;
  height: 75.00%;
  top: 8.33%;
  left: 8.33%;
}
.flow-section .button {
  all: unset;
  box-sizing: border-box;
  margin-left: 479px;
  width: 280px;
  height: 60px;
  margin-top: 48px;
  display: flex;
  border-radius: 50px;
  /* 斜めグラデーション（広くして動かす） */
  background: linear-gradient(117deg, rgba(255, 120, 200, 1), rgba(100, 100, 230, 1), rgba(255, 120, 200, 1));
  background-size: 200% 200%;
  background-position: left center;
  transition: background-position 1.2s ease;
}
.flow-section .button:hover {
  background-position: right center;
}
.flow-section a {
  color: #fff;
  text-decoration: none;
}
.flow-section .text-wrapper-11 {
  margin-top: 20px;
  width: 98px;
  height: 20px;
  margin-left: 91px;
  font-family: "Montserrat-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}
/*TOP NEWS*/
section.news-sec {
  padding: 50px 0 0;
}
section.news-sec .inner {
  max-width: 1000px;
  margin: 50px auto 50px;
  padding-bottom: 20px;
}
/* タブ */
.news-tabs .news-tab-list {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
  justify-content: center;
}
.news-tabs .news-tab-list li {
  padding: 8px 18px;
  border-radius: 20px;
  background: #f2f2f2;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.news-tabs .news-tab-list li.active {
  background: #333;
  color: #fff;
}
/* 記事リスト共通 */
.news-tabs .news-list {
  display: none;
}
.news-tabs .news-list.active {
  display: block;
}
.news-item {
  display: flex;
  gap: 12px;
  padding: 10px 0 20px;
}
.news-item .date {
  color: #666;
  font-size: 14px;
  min-width: 90px;
}
.news-item .cat {
  color: #fff;
  font-size: 13px;
  min-width: 80px;
  background: #c693ec;
  text-align: center;
  border-radius: 5px;
  max-height: 25px;
}
.news-item .title {
  font-size: 15px;
  color: #333;
  text-decoration: none;
}
.news-item .title:hover {
  text-decoration: underline;
}
#news-list {
  min-height: 300px;
  transition: opacity 0.3s ease;
}
.news-list-fade {
  opacity: 0.3;
}
section.news-sec .button {
  text-align: center;
  margin-top: 80px;
}
.smf-checkboxes-control__control {
  text-align: left;
}
/* ------------------------------
 1280px 以下（タブレット）
--------------------------------*/
@media (max-width: 1280px) {
  .flow-section .container-2 {
    width: 100%;
    height: auto; /* ←絶対必要 */
    margin-left: 0;
    padding: 0 20px;
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    grid-auto-rows: auto; /* 行の高さは自動、カード数に応じて行が増える */
    gap: 20px; /* 行・列の間隔 */
  }
  /* 全カードの位置指定・高さ指定を解除 */
  .flow-section .container-2 .card, .flow-section .container-2 .card-2, .flow-section .container-2 .card-3, .flow-section .container-2 .card-4, .flow-section .container-2 .card-5, .flow-section .container-2 .card-6 {
    grid-column: auto !important;
    grid-row: auto !important;
    height: auto !important;
  }
  /* ボタンを中央寄せ */
  .flow-section .button {
    margin: 50px auto 30px;
  }
}
@media (max-width: 830px) {
  .flow-section .text-wrapper-4, .flow-section .text-wrapper-8 {
    width: 90%;
  }
  .flow-section .card {
    min-height: 180px;
  }
  .flow-section .flow-card, .flow-section .flow-card-3, .flow-section .flow-card-4, .flow-section .flow-card-5, .flow-section .flow-card-6 {
    position: absolute;
    left: 50%;
    top: 1px;
  }
}
/* ------------------------------
   📱 768px 以下（スマホ）
--------------------------------*/
@media (max-width: 768px) {
  .flow-section .container-2 {
    grid-template-columns: 1fr; /* 1列 */
    gap: 20px;
    padding: 0 16px;
    width: 100%;
    height: auto;
  }
  /* 高さと位置を完全自動化 */
  .flow-section .container-2 .card, .flow-section .container-2 .card-2, .flow-section .container-2 .card-3, .flow-section .container-2 .card-4, .flow-section .container-2 .card-5, .flow-section .container-2 .card-6 {
    grid-column: auto !important;
    grid-row: auto !important;
    height: auto !important;
    padding-bottom: 24px;
  }
  /* flow-card 内部も相対配置に変更 */
  .flow-section .flow-card, .flow-section .flow-card-2, .flow-section .flow-card-3, .flow-section .flow-card-4, .flow-section .flow-card-5, .flow-section .flow-card-6 {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    padding: 20px 15px;
    text-align: left;
    margin-top: -30px;
  }
  /* ボタン中央寄せ */
  .flow-section .button {
    margin: 50px auto 30px;
  }
  .flow-section .text-wrapper-8 {
    width: 90%;
  }
  .top_service_bg {
    padding-bottom: 150px;
  }
}
/*footer*/
#main-footer {
  overflow: hidden;
}
.contact-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 190, 230, 0.8), rgba(120, 140, 255, 0.8));
  border-radius: 40px;
  margin: 80px auto;
  max-width: 1200px;
}
/* inner：左右2カラム */
.contact-sec .inner {
  max-width: 1100px;
  padding: 0 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
/* 左カラム */
.contact-left .smb-section__subtitle {
  color: #fff;
  text-align: left;
  line-height: 1.5;
}
.contact-left .smb-section__title {
  color: #fff;
  text-align: left;
  margin: 0;
}
.contact-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}
/* 右カラム：ボタン縦並び */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* CTAボタン（丸 pill シェイプ） */
.cta-btn {
  display: block;
  text-align: center;
  padding: 18px 0;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
/* メインボタン */
.cta-btn.main {
  color: #fff;
  background: linear-gradient(117deg, rgba(255, 120, 200, 1), rgba(100, 100, 230, 1), rgba(255, 120, 200, 1));
  background-size: 200% 200%;
  background-position: left center;
  transition: background-position 1.2s ease;
}
.cta-btn.main:hover {
  background-position: right center;
}
.cta-btn.sub {
  color: #333333 !important;
  border: 2px solid #fff;
  background: linear-gradient(117deg, #ffffff, #cfcaff, /* ←濃いめラベンダーを追加 */ #f5f3ff, #ffffff);
  background-size: 250% 250%;
  background-position: left center;
  transition: background-position 1.5s ease;
}
.cta-btn.sub:hover {
  background-position: right center;
}
/* --- 📱 スマホ対応 --- */
@media (max-width: 768px) {
  .contact-sec .inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-right {
    width: 100%;
  }
}
footer.footer {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 60px 0 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.footer-inner {
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
/* 左カラム */
.footer-logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-desc {
  margin-top: 15px;
  opacity: 0.9;
  line-height: 1.8;
  min-width: 250px;
  display: inline-block;
}
/* メニュー */
.footer-nav ul {
  list-style: none;
  padding: 0;
}
.footer-nav li {
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-nav a:hover {
  opacity: 0.7;
}
.footer-logo img {
  max-width: 200px;
  height: auto;
  display: block;
}
/* SNS */
.footer-sns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sns-icon {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.3s ease;
}
.sns-icon:hover {
  opacity: 0.6;
}
/* コピーライト */
.footer-copy {
  text-align: center;
  opacity: 0.7;
  margin-top: 40px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 15px;
}
/* レスポンシブ */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-sns {
    flex-direction: row;
    justify-content: center;
  }
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(117deg, rgba(255, 120, 200, 1), rgba(100, 100, 230, 1));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}
a.scroll-top.show {
  text-decoration: none;
}
/*page*/
.page-main-title {
  position: relative;
  width: 100%;
  min-height: 300px; /* 高さは調整可能 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('http://lico-inc.com/wp-content/uploads/2026/01/header.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}
.page-main-title .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.page-main-title .inner {
  position: relative;
  z-index: 2;
}
.page-main-title .page-title {
  font-family: "Montserrat-Medium", Helvetica;
  font-size: clamp(50px, 5vw, 100px); /* 画面幅に応じて変動 */
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: 0.2em;
}
.page-main-title .page-subtitle {
  font-family: "Helvetica", sans-serif;
  font-size: clamp(14px, 2vw, 20px); /* サブタイトルもレスポンシブ */
  margin: 0;
  color: #ddd;
}
/*works*/
#works_blok .smb-section__header {
  margin-bottom: -100px;
}
.carousel-section a.learn-more {
  width: 26rem;
}
.works-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  /* background-color: rgb(255 255 255 / 90%); */
  /* font-size: 14px; */
  letter-spacing: 0.03em;
}
.works-table th, .works-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgb(155 155 155 / 15%);
}
.works-table th {
  width: 30%;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  vertical-align: top;
  background: #0b0b0b;
}
.works-table td {
  width: 70%;
  background: #fff;
}
.works-table a {
  color: #a4a7da;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.works-table a:hover {
  opacity: 0.7;
}
.works-table {
  border-radius: 12px;
  overflow: hidden;
}
.works-table th, .works-table td {
  padding: 20px 24px;
}
/*privacy policy*/
.privacy-policy {
  padding: 80px 20px;
  background: #ffffff;
}
.privacy-inner {
  max-width: 900px;
  margin: 0 auto;
  color: #222;
  line-height: 1.9;
}
.privacy-lead {
  margin-bottom: 50px;
  color: #555;
}
.privacy-section {
  margin-bottom: 40px;
}
.privacy-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid #9896f0; /* Licoカラー */
}
.privacy-section ul {
  padding-left: 20px;
}
.privacy-section li {
  margin-bottom: 8px;
}
.privacy-contact dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  margin-top: 45px;
  border: 1px solid #ddd;
  padding: 12px 20px 20px;
}
.privacy-contact dt {
  font-weight: bold;
  color: #333;
}
.privacy-contact dd {
  margin: 0;
}
/*service*/
.page-id-263 .smb-section__subtitle {
  font-size: clamp(35px, 5.5vw, 75px);
  letter-spacing: 0.1em;
}
.page-id-263 h2.smb-section__title {
  font-size: 25px !important;
  line-height: 1.0;
  margin: 0px 0 25px;
}
.page-id-263 .smb-items__item__title {
  text-align: center;
}
.page-id-263 .smb-items__item__lede {
  font-size: 60px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: rgb(227 221 225);
  font-weight: 600;
}
.page-id-263 h3.wp-block-heading.is-style-vk-heading-plain.has-large-font-size {
  font-size: 1.5em !important;
}
.page-id-263 .text-nowrap {
  white-space: initial;
}
.page-id-263 .page-wrap {
  margin-bottom: -20px;
}
.smb-faq__item__question__body {
  font-size: 19px;
}
.page-id-371 h3.wp-block-heading {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
  background: #010101;
  color: #fff;
  padding: 15px 0;
}
.page-id-389 .page-wrap h2.smb-section__title {
  background: #010101;
  color: #fff;
  font-size: 1.5em;
  padding: 15px 0;
}
.page-id-389 .wp-block-columns.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex {
  text-align: center;
}
.page-id-389 .wp-block-columns.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7 img {
  max-width: 200px;
}
.page-id-389 .wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit {
  padding-top: 0;
}
.page-id-389 div#--description {
  display: inline-block;
  background: rgb(149 106 220);
  color: #ffffff;
  padding: 2px 11px 2px;
  border-radius: 5px;
}
.smf-action .smf-button-control__control {
  width: 100%;
  max-width: 300px;
  height: 60px;
}
.smf-action .smf-button-control__control {
  color: #fff;
  background: linear-gradient(117deg, rgba(255, 120, 200, 1), rgba(100, 100, 230, 1), rgba(255, 120, 200, 1));
  background-size: 200% 200%;
  background-position: left center;
  transition: background-position 1.2s ease;
  border: none;
  border-radius: 999px; /* ← CTAと同じ丸みなら */
  padding: 16px 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  box-shadow: none;
}
/* hover */
.smf-action .smf-button-control__control:hover {
  background-position: right center;
}
/* focus / active の変な枠を消す */
.smf-action .smf-button-control__control:focus, .smf-action .smf-button-control__control:active {
  outline: none;
  box-shadow: none;
}
form#snow-monkey-form-391 {
  background: #f5f5f5;
  padding: 20px 40px;
  border-radius: 20px;
}
/* news */
.news-archive {
  padding: 80px 0;
}
.news-archive .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
/* カテゴリー */
.news-category {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  list-style: none;
}
.news-category a {
  padding: 8px 18px;
  border-radius: 999px;
  background: #f2f2f2;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}
.news-category a.is-active, .news-category a:hover {
  background: #183673;
  color: #fff;
}
ul.news-list a {
  text-decoration: none;
}
/* 一覧 */
.news-list {
  border-top: 1px solid #e5e5e5;
}
/*.news-item {
  border-bottom: 1px solid #e5e5e5;
}*/
.news-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s;
}
.news-item a:hover {
  opacity: 0.7;
}
.news-date {
  font-size: 14px;
  color: #888;
  min-width: 90px;
}
.news-cat {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: #f0f4ff;
  color: #183673;
  white-space: nowrap;
}
.news-title {
  font-size: 16px;
  font-weight: 600;
}
/* ページャー */
.news-pagination {
  margin-top: 50px;
  text-align: center;
}
.news-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #f2f2f2;
}
.news-pagination .current {
  background: #183673;
  color: #fff;
}
/* single NEWS */
.news-single {
  max-width: 860px;
  margin: 0 auto 100px;
  padding: 0 20px;
}
/* header */
.news-single-header {
  margin-bottom: 40px;
}
.news-single-header .news-date {
  font-size: 14px;
  color: #888;
}
.news-single-header .news-cat {
  display: inline-block;
  margin-left: 12px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: #f0f4ff;
  color: #183673;
}
.news-single-header .news-title {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
/* content */
.news-single-content {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2;
}
.news-eyecatch {
  margin-bottom: 32px;
}
.news-eyecatch img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
/* footer */
.news-single-footer {
  margin-top: 80px;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
}
/* back */
.news-back {
  text-align: center;
  margin-bottom: 30px;
}
.news-back a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  background: #183673;
  color: #fff;
  font-size: 14px;
}
/* pager */
.news-pager {
  display: flex;
  justify-content: space-between;
}
.news-pager a {
  font-size: 14px;
  color: #183673;
}
.privacy-section.privacy-contact a {
    color: #333333;
    text-decoration: none;
}
/* SP */
@media (max-width: 768px) {
  .news-single-header .news-title {
    font-size: 22px;
  }
  .news-pager {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
/* SP */
@media (max-width: 768px) {
  .global-header .inner {
    height: 80px;
  }
  .header-logo img {
    max-height: 60px !important;
    max-width: 150px;
  }
  #main-wrap p {
    font-size: 14px;
  }
  #main-visual .mv-content p {
    text-align: left;
  }
  .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-date {
    min-width: auto;
  }
  .works-table, .works-table tbody, .works-table tr, .works-table th, .works-table td {
    display: block;
    width: 100%;
  }
  .works-table tr {
    margin-bottom: 20px;
  }
  .works-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }
  .privacy-section h3 {
    font-size: 16px;
  }
  .page-id-263 span.sme-font-size {
    font-size: 20px !important;
  }
  .page-id-263 p.has-text-align-center.has-medium-font-size {
    font-size: 14px !important;
  }
  .page-id-263 .wp-block-snow-monkey-blocks-box.smb-box {
    padding: 10px;
  }
  .contact-left .smb-section__subtitle {
    text-align: center;
  }
  .contact-left .smb-section__title {
    text-align: center;
  }
  .contact-left p {
    font-size: 14px;
    padding: 0 20px;
    text-align: left;
  }
  #main-footer .footer-logo {
    float: none;
    margin-right: 0;
    text-align: center;
  }
  #main-footer .footer-logo img {
    margin: 0 auto;
  }
  .feature {
    margin-bottom: 80px;
  }
  .flow-section .flow-card, .flow-section .flow-card-2, .flow-section .flow-card-3, .flow-section .flow-card-4, .flow-section .flow-card-5, .flow-section .flow-card-6 {
    margin-top: -50px;
  }
  .flow-section .text-wrapper-2, .flow-section .text-wrapper-5, .flow-section .text-wrapper-7, .flow-section .text-wrapper-9, .flow-section .text-wrapper-10 {
    position: absolute;
    top: 90%;
    right: 4%;
  }
  .flow-section .text-wrapper-4, .flow-section .text-wrapper-8, .flow-section .text-wrapper-6 {
    width: 100%;
  }
  .has-medium-font-size {
    font-size: 18px;
  }
  .smb-section__subtitle {
    text-align: center;
  }
  a.learn-more .button-text {
    max-width: 280px;
    margin: 0 auto;
    font-size: 14px;
  }
  .news-item {
    display: flex;
    gap: 8px;
    padding: 10px 0 20px;
    flex-direction: column;
  }
  .news-list.active ul {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
  .contact-sec {
    padding: 30px 15px;
    border-radius: 16px;
    margin: 50px auto;
    width: 90%;
  }
  .page-id-263 h2.smb-section__title {
    font-size: 20px !important;
    margin: 0px 5px 25px;
  }
.page-id-371 h3.wp-block-heading {
    font-size: 20px;
    padding: 15px 10px;
}
}
@media (max-width: 1024px) {
  /* 全体を小さく */
  .wrap {
    width: 260px;
    height: 260px;
    padding: 16px;
  }
  .orbit {
    width: 260px;
    height: 260px;
  }
  /* 回転要素サイズも縮小 */
  .orb {
    width: 180px;
    height: 180px;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center -25px;
    /* アニメーション停止 */
    animation: none !important;
  }
  /* 中のテキストも縮小 */
  .orb .center-label {
    font-size: 22px;
    letter-spacing: 0.05em;
  }
  .orb .center-label span {
    font-size: 13px;
    line-height: 1.8;
  }
}
.news-item a {
    color: #444444;
}