@charset "UTF-8";
/* ---foundation--- */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #2f3e49;
}

img,
svg {
  width: 100%;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position: relative;
  background-color: #fff;
  padding: 28px 0;
}
.slider:last-child {
  padding-top: 0;
}
.slider .slick-slide {
  margin-left: 32px;
}

.autoplay {
  width: 90%;
  margin: auto;
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 50%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 3px solid #0189dd; /*矢印の色*/
  border-right: 3px solid #0189dd; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -5%;
  transform: rotate(45deg);
}

.l-main-case {
  /*ドットナビゲーションの設定*/
}
.l-main-case .slick-dots {
  position: absolute;
  z-index: 3;
  text-align: center;
  bottom: -20%;
  margin-bottom: 0;
  justify-content: center;
}
.l-main-case .slick-dots li {
  display: inline-block;
  margin: 0;
  width: 10px;
  padding: 0;
  background-color: unset;
  box-shadow: none;
}
.l-main-case .slick-dots button {
  color: transparent;
  outline: none;
  width: 3px; /*ドットボタンのサイズ*/
  height: 3px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}
.l-main-case .slick-dots .slick-active button {
  background: #0189dd; /*ドットボタンの現在地表示の色*/
}
.l-main-case .slick-dotted.slick-slider {
  margin-bottom: 32px;
  justify-content: center;
}

.logo_slider {
  position: relative;
  background-color: #fff;
  padding: 28px 0;
}

.logo_slider:nth-last-child(2n) {
  padding-bottom: 0;
}

.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* スライド */
.infinite-slider {
  height: 50px !important; /* 高さを指定 */
  width: 100vw;
}

/* スライド内の画像 */
.infinite-slider img {
  width: auto;
  height: 100%;
}

/* ---layout--- */
.l-container-800 {
  max-width: 800px;
  margin: 0 auto;
}

.l-container-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.l-container-1100 {
  max-width: 1100px;
  margin: 0 auto;
}

.l-container-1200 {
  max-width: 1200px;
  margin: 0 auto;
}

/* ====================================================
   フッター全体のレイアウト
   ==================================================== */
footer {
  background-color: #333333;
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 80px;
}
footer .l-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
footer {
  /* 上端のレイアウト（ロゴとリンクを横並びに） */
}
footer .l-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #444444;
  padding-bottom: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}
footer {
  /* ロゴ・サイト名エリア */
}
footer .l-footer-logo-area a {
  display: block;
  width: 140px;
  margin-bottom: 10px;
}
footer .l-footer-logo-area a img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
footer .l-footer-logo-area .l-footer-site-name {
  font-size: 13px;
  color: #aaaaaa;
  margin: 0;
}
footer {
  /* リンクのリスト */
}
footer .l-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer .l-footer-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s ease;
}
footer .l-footer-links li a:hover {
  color: #FF874A;
}
footer {
  /* コピーライトエリア */
}
footer .l-footer-bottom {
  text-align: center;
}
footer .l-footer-bottom .c-copyright {
  font-size: 12px;
  color: #888888;
  margin: 0;
}
footer {
  /* ====================================================
     スマホ対応（タブレット・スマホサイズ）
     ==================================================== */
}
@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px;
  }
  footer .l-footer-top {
    flex-direction: column;
    gap: 40px;
  }
  footer .l-footer-logo-area {
    display: flex;
    flex-direction: column;
  }
  footer .l-footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* ====================================================
   ヘッダー全体のレイアウト
   ==================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 40px);
  z-index: 999;
  transition: all 0.3s ease;
}
header .l-header-left-group .l-header-logo a {
  display: block;
  width: clamp(120px, 15vw, 160px);
}
header .l-header-left-group .l-header-logo a img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
header .l-header-left-group .l-header-logo.active {
  opacity: 0.5;
}
header .l-header-button {
  display: flex;
  align-items: center;
}

/* ====================================================
   PC用ナビゲーション（769px以上で表示）
   ==================================================== */
@media (min-width: 769px) {
  .l-header-nav-sp {
    display: none;
  }
  .l-header-guide-pc {
    display: block;
  }
  .l-header-guide-pc ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 24px;
  }
  .l-header-guide-pc ul li a {
    color: #6c6c6c;
    font-size: 15px;
    transition: color 0.3s ease;
  }
  .l-header-guide-pc ul li a:hover {
    color: #FF874A;
  }
}
@media (max-width: 768px) {
  header {
    height: 60px;
  }
  .l-header-guide-pc {
    display: none;
  }
  .l-header-nav-sp {
    display: block;
  }
  .l-header-nav-sp .openbtn {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 10001; /* ★最前面に維持 */
  }
  .l-header-nav-sp .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #333333;
    width: 22px;
  }
  .l-header-nav-sp .openbtn span:nth-of-type(1) {
    top: 16px;
  }
  .l-header-nav-sp .openbtn span:nth-of-type(2) {
    top: 24px;
  }
  .l-header-nav-sp .openbtn span:nth-of-type(3) {
    top: 32px;
  }
  .l-header-nav-sp .openbtn.active span {
    background-color: #ffffff; /* ★開いたときは「×」を白にして見やすく */
  }
  .l-header-nav-sp .openbtn.active span:nth-of-type(1) {
    top: 24px;
    left: 14px;
    transform: rotate(-45deg);
  }
  .l-header-nav-sp .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header-nav-sp .openbtn.active span:nth-of-type(3) {
    top: 24px;
    left: 14px;
    transform: rotate(45deg);
  }
  .l-header-nav-sp .circle-bg {
    position: fixed;
    z-index: 9997; /* ★9998から9997に下げて、メニューの背後に回す */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FF874A;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all 0.6s;
  }
  .l-header-nav-sp .circle-bg.circleactive {
    transform: scale(50);
  }
  .l-header-nav-sp #g-nav {
    position: fixed;
    z-index: 9999; /* ★背景より高い数値を維持 */
    top: 0; /* ★画面の左上を基準にする */
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-header-nav-sp #g-nav.panelactive {
    opacity: 1;
    visibility: visible;
  }
  .l-header-nav-sp #g-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative; /* ★位置の基準を作る */
    z-index: 10000; /* ★オレンジの丸（9997）を絶対に追い抜く数値 */
  }
  .l-header-nav-sp #g-nav ul li {
    margin-bottom: 24px;
  }
  .l-header-nav-sp #g-nav ul li:last-child {
    margin-bottom: 0;
  }
  .l-header-nav-sp #g-nav ul li a {
    color: #ffffff !important; /* ★強制的に白文字にする */
    font-size: 20px; /* ★少し文字を大きく */
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 10px 40px; /* ★タップエリアを広げる */
    transition: opacity 0.3s;
  }
  .l-header-nav-sp #g-nav ul li a:hover {
    opacity: 0.7;
  }
}
html {
  scroll-behavior: smooth;
}

.l-main-setting-container {
  background-color: #F9F9F9;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 8vw, 200px);
}
.l-main-setting-container .l-main-setting {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  background: #F9F9F9;
}
.l-main-setting-container .l-main-setting .l-main-setting-list {
  background: #fff;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 64px);
  border-radius: 16px;
}
.l-main-setting-container .l-main-setting .l-main-setting-list ul {
  padding: 0;
  margin: 0;
}
.l-main-setting-container .l-main-setting .l-main-setting-list ul li {
  border-bottom: solid 1px #eeeeee;
  margin-top: clamp(20px, 3vw, 40px);
}
.l-main-setting-container .l-main-setting .l-main-setting-list ul li:first-child {
  margin-top: 0;
}
.l-main-setting-container .l-main-setting .l-main-setting-list ul li a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #333333;
  padding: 10px 40px 10px 0;
  transition: opacity 0.2s ease;
}
.l-main-setting-container .l-main-setting .l-main-setting-list ul li a:hover {
  opacity: 0.7;
}
.l-main-setting-container .l-main-setting .l-main-setting-list ul li a p {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: bold;
  margin: 0;
}
.l-main-setting-container .l-main-setting .l-main-setting-list ul li a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff874a;
  border-right: 2px solid #ff874a;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 5px;
}

.l-main-faq-category {
  color: #333333;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  margin: 60px 0 20px 0;
}
.l-main-faq-category::before {
  content: "";
  display: block;
  height: 120px;
  margin-top: -120px;
  visibility: hidden;
  pointer-events: none;
}

.l-main-faq-container {
  background-color: #F9F9F9;
  padding: 80px clamp(40px, 11vw, 160px);
}
.l-main-faq-container .l-main-faq-wrap {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: clamp(20px, 2vw, 50px) clamp(20px, 2vw, 80px);
}
.l-main-faq-container .l-main-faq-wrap .l-main-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0 70px 0;
  flex-wrap: wrap;
  justify-content: center;
  scroll-margin-top: 0;
}
.l-main-faq-container .l-main-faq-wrap .l-main-category .l-main-faq-category-label {
  font-weight: bold;
  color: #333;
}
.l-main-faq-container .l-main-faq-wrap .l-main-category .l-main-category-links {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.l-main-faq-container .l-main-faq-wrap .l-main-category .l-main-category-links li a {
  display: block;
  background-color: #fdf5f0;
  color: #ff874a;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

@media (max-width: 599px) {
  .l-main-faq-category {
    font-size: 20px;
    margin: 40px 0 16px 0;
  }
  .l-main-faq-category::before {
    height: 80px;
    margin-top: -80px;
  }
  .l-main-faq-container .l-main-faq-wrap .l-main-category {
    margin: 0 0 40px 0;
    justify-content: left;
  }
  .l-main-faq-container .l-main-faq-wrap .l-main-category .l-main-category-links {
    width: 100%;
  }
  .l-main-faq-container .l-main-faq-wrap .l-main-category .l-main-category-links li a {
    padding: 10px 5px;
    font-size: 13px;
    text-align: center;
  }
}
.l-main-template {
  text-align: center;
  padding: 80px 0 40px;
  background-color: #ffffff;
}
.l-main-template .l-container-1200 {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.l-main-template h1 {
  color: #FF874A;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.05em;
}

.l-main-template-wrapper {
  background-color: #F8F9FA;
  padding: 100px 24px 140px;
}
.l-main-template-wrapper .l-container-800 {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  top: -20px;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 60px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  gap: 56px;
  flex-direction: column;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-do {
  display: flex;
  padding: 40px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 17px;
  background: #FFF4EC;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-do p {
  color: #FF874A;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #CDCDCD;
  padding-bottom: 10px;
  width: 100%;
  margin: 0 0 10px 0;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-do ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-do ul li {
  color: #535353;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-left: 1.2em;
  line-height: 1.6;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-do ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #535353;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text {
  line-height: 1.8;
  color: #333333;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text h2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  border-bottom: 1px solid #CDCDCD;
  margin: 40px 0 20px 0;
  padding-bottom: 12px;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text h2::before, .l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text h2::after {
  display: none;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text p {
  margin-bottom: 1.5em;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text ul li {
  color: #535353;
  font-size: 16px;
  position: relative;
  padding-left: 1.2em;
  line-height: 1.6;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #535353;
}
.l-main-template-wrapper .l-container-800 .l-main-template-container .l-main-template-text img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 24px 0;
  max-width: 100%;
  height: auto;
}

.l-main-btn {
  text-align: center;
  margin-top: 60px;
}
.l-main-btn .l-main-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF874A;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 60px;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 135, 74, 0.2);
  width: 100%;
  max-width: 300px;
}
.l-main-btn .l-main-btn-back:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media (max-width: 599px) {
  .l-main-btn {
    margin-top: 40px;
  }
  .l-main-btn .l-main-btn-back {
    padding: 14px 40px;
    font-size: 15px;
  }
}
.l-main-case-text h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: bold;
  background: linear-gradient(277deg, #0089dd 35.9%, #5ab1f2 74.22%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding: 0 0 0 16px;
  margin-bottom: 32px;
}
.l-main-case-text h3 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: clamp(16px, 3.2vw, 22px);
  font-weight: bold;
  margin-bottom: 24px;
  margin-top: 16px;
  background: #1c7abf;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-main-case-text h3::before {
  content: "";
  flex: 0 0 20px;
  height: 1px;
  background-color: #1c7abf;
  margin-right: 8px;
}
.l-main-case-text p {
  padding-bottom: 8px;
  line-height: 2;
}
.l-main-case-text .wp-block-columns {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-main-case-text .has-text-align-right {
  text-align: right;
}
.l-main-case-text .has-small-font-size {
  font-size: 12px;
}
.l-main-case-text .wp-block-image {
  max-width: 700px;
  margin: auto;
}

@media (max-width: 599px) {
  .l-main-post-content-text .wp-block-columns {
    flex-flow: column;
  }
}
.wpcf7 .radio-container {
  margin-bottom: 40px;
}
.wpcf7 .radio-container .wpcf7-radio {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
}
.wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item {
  width: 33.3333333333%;
  margin: 0;
}
.wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: flex;
  height: 150px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: clamp(8px, 2vw, 20px);
  order: 1;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 18px);
  background-color: #f7f7f7;
  border-radius: 16px;
  border: 2px solid #f7f7f7;
}
.wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  order: 3;
  line-height: 1.6;
  margin-top: 8px;
}
.wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item input {
  display: none;
}
.wpcf7 .radio-container .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label {
  border: 2px solid #2e9ced;
  background-color: #f2f9ff;
  color: #2e9ced;
}
.wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item.first label .wpcf7-list-item-label::after {
  content: "SKYFLAGを活用したメディアマネタイズをご検討されている方はこちらをご選択ください。";
  font-weight: 400;
  font-size: 14px;
}
.wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "SKYFLAGへの広告のご出稿をご検討されている方はこちらをご選択ください。";
  font-weight: 400;
  font-size: clamp(12px, 1.8vw, 14px);
}
.wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item.last label .wpcf7-list-item-label::after {
  content: "メディアマネタイズ・ご出稿以外でのご相談につきましてはこちらをご選択ください。";
  font-weight: 400;
  font-size: clamp(12px, 1.8vw, 14px);
}

.contact-text {
  font-size: 14px;
  color: red;
}

@media (max-width: 815px) {
  .wpcf7 .radio-container .wpcf7-radio {
    flex-direction: column;
    flex: 1;
  }
  .wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
  .wpcf7 .radio-container .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
    height: auto;
    padding: clamp(12px, 4vw, 20px);
  }
}
/* ---Component--- */
.c-button-materials,
.c-button-contact {
  display: block;
  font-size: 12px;
  border-radius: 100vh;
  padding: 12px 16px;
}

.c-button-materials {
  border: 1px solid #dbdbdb;
  background-color: #fff;
}

.c-button-contact {
  color: #fff;
  background-color: #2f9ced;
}

.c-button-fv-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.c-button-fv-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(160px, 21vw, 200px);
  text-align: center;
  border-radius: 100vh;
  padding: clamp(18px, 2vw, 22px) 0;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
}
.c-button-fv-group .c-button-fv-content {
  background: linear-gradient(106deg, rgba(47, 156, 237, 0.7) 29.1%, #2f9ced 65.88%);
  color: #fff;
}
.c-button-fv-group .c-button-fv-materials {
  background-color: #fff;
  border: 2px solid rgba(47, 156, 237, 0.7);
}
.c-button-fv-group .c-button-fv-materials span {
  background: linear-gradient(106deg, rgba(47, 156, 237, 0.7) 29.1%, #2f9ced 65.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-button-case {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 64px;
  background: linear-gradient(106deg, rgba(47, 156, 237, 0.7) 29.1%, #2f9ced 65.88%);
  border-radius: 100vh;
  margin-top: 100px;
}

.c-button-footer {
  display: flex;
  gap: clamp(24px, 2.8vw, 32px);
}
.c-button-footer a {
  display: block;
  flex: 1;
  text-align: center;
  border-radius: 16px;
  padding: 24px 0 20px;
  line-height: 1;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
}
.c-button-footer .c-button-footer-conten {
  background: linear-gradient(106deg, rgba(47, 156, 237, 0.7) 29.1%, #2f9ced 65.88%);
  color: #fff;
}
.c-button-footer .c-button-footer-materials {
  background-color: #fff;
  border: 2px solid rgba(47, 156, 237, 0.7);
}
.c-button-footer .c-button-footer-materials span {
  background: linear-gradient(106deg, rgba(47, 156, 237, 0.7) 29.1%, #2f9ced 65.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 499px) {
  .c-button-footer {
    flex-direction: column;
    gap: 18px;
  }
  .c-button-footer a {
    font-size: 16px;
  }
}
.c-label-case {
  margin-top: 24px;
  background-color: #e7f5ff;
  padding: 6px 18px;
  line-height: 1;
  color: #2f9ced;
  display: inline-block;
  font-size: 12px;
  border-radius: 100vh;
}

.c-label-webinar {
  display: inline-block;
  padding: 5px 10px 3px;
  line-height: 1;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  border-radius: 4px;
}

.reception {
  background-color: #2f9ced;
  color: #fff;
  border: 1px solid #2f9ced;
}

.archive {
  background-color: #fff;
  color: #2f9ced;
  border: 1px solid #2f9ced;
}

/* ---Project--- */
/* パンくずリスト */
.p_breadcrumb {
  padding: 12px 24px;
  background: #f4faff;
}
.p_breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
}
.p_breadcrumb ol li {
  font-weight: bold;
  color: #379ced;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.p_breadcrumb ol li:not(:last-of-type) {
  color: #91afc6;
}
.p_breadcrumb ol li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em;
  /* 記号の左右の余白 */
}
.p_breadcrumb ol li a span {
  font-size: 12px;
}

html {
  scroll-behavior: smooth;
}

/* ==========================================
   アコーディオン（FAQ）
========================================== */
.accordion-area {
  list-style: none;
  padding: 0;
}
.accordion-area li {
  cursor: pointer;
  margin-bottom: 24px;
}
.accordion-area li:last-child {
  margin-bottom: 0;
}
.accordion-area .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: clamp(18px, 2vw, 24px) clamp(16px, 3vw, 24px) clamp(18px, 2vw, 24px) clamp(16px, 2vw, 24px);
  color: #333333;
  background: #FFF4EC;
  border-radius: 16px;
  transition: all 0.5s ease;
}
.accordion-area .title::before {
  content: "Q";
  color: #fff;
  display: flex;
  background-color: #ff874a;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 3vw, 16px);
  line-height: 1;
  border-radius: 40px;
  flex: 0 0 30px;
  font-weight: normal;
}
.accordion-area .title::after {
  content: "";
  transform: translateY(-25%) rotate(45deg); /* デフォルトは下向き */
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 2px solid #F97829;
  border-right: 2px solid #F97829;
  transition: transform 0.5s;
}
.accordion-area .title {
  /* JSで .close が付与された時に矢印を上向きにする */
}
.accordion-area .title.close::after {
  transform: translateY(-25%) rotate(225deg);
}
.accordion-area .title h3 {
  flex: 1;
  color: #ff874a;
  font-weight: bold;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  margin: 0;
}
.accordion-area .box {
  display: none;
  padding: 20px clamp(24px, 3vw, 40px) 24px;
}
.accordion-area .box p {
  font-size: clamp(14px, 1.5vw, 16px);
  display: flex;
  align-items: flex-start;
  margin: 0;
}

/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #379ced;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  opacity: 0; /*はじめは透過0*/
  position: relative;
  z-index: 999;
  width: 100%;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive {
  padding: 160px 32px clamp(120px, 24vw, 150px);
}
#g-nav.panelactive ul {
  opacity: 1;
  display: block;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.168627451);
  padding-bottom: 24px;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
#g-nav li a {
  display: block;
}
#g-nav li .p-hamburger-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#g-nav li .p-hamburger-menu::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transition: transform 0.5s;
}
#g-nav li .p-hamburger-menu.close::after {
  transform: rotate(225deg);
}
#g-nav li .box {
  display: none;
  padding: 24px clamp(24px, 3vw, 40px) 0 24px;
}
#g-nav li .box a {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: normal;
}
#g-nav li .box a:last-child {
  margin-bottom: 0;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: relative;
  right: 0;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 25px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background-color: #6f6f6f;
  width: 100%;
}

.openbtn.active span {
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 0;
  transform: translateY(6px) rotate(-45deg);
  width: 70%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 0;
  transform: translateY(-6px) rotate(45deg);
  width: 70%;
}

/* ハンバーガーメニューが表示された時のフォントカラー */
.l-header-logo path {
  transition: fill 1s ease;
}

.l-header-logo.active path {
  fill: #fff;
}

.p-mv-top {
  position: relative;
  padding: clamp(70px, 5vw, 80px) 0;
  color: #FF874A;
  background-color: #fff;
}
.p-mv-top h1 {
  font-size: clamp(20px, 7vw, 56px);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 clamp(20px, 5vw, 200px) clamp(40px, 6vw, 80px);
}
.p-mv-top h1 span {
  font-size: 16px;
  font-weight: 500;
}
.p-mv-top p {
  font-size: 16px;
  font-weight: 500;
}
.p-mv-top .p-mv-top-section {
  justify-content: center;
  align-items: center;
  /* 検索バー */
}
.p-mv-top .p-mv-top-section .p-mv-top-section-search {
  display: flex;
  width: 100%;
  max-width: 500px;
  height: 50px;
  background-color: #fff;
  margin: 0 auto;
  padding: 0 20px;
}
.p-mv-top .p-mv-top-section .p-mv-top-section-search .p-mv-top-section-search-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-left: 12px;
  border: solid 2px #bdbdbd;
  border-right: none;
  border-radius: 8px 0 0 8px;
  background-color: #fff;
}
.p-mv-top .p-mv-top-section .p-mv-top-section-search .p-mv-top-section-search-wrapper .search-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 8px;
}
.p-mv-top .p-mv-top-section .p-mv-top-section-search .p-mv-top-section-search-wrapper input {
  flex-grow: 1;
  outline: none;
  border: none;
  font-size: 16px;
  color: #333333;
  padding: 0;
  background: transparent;
  width: 100%;
}
.p-mv-top .p-mv-top-section .p-mv-top-section-search button {
  width: 80px;
  background-color: #ff7b42;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s;
  border-radius: 0 8px 8px 0;
}
.p-mv-top .p-mv-top-section .p-mv-top-section-search button:hover {
  background-color: #e66a35;
}
.p-mv-top .p-mv-top-section {
  /* 6つのボタン一覧 */
}
.p-mv-top .p-mv-top-section ul {
  margin-top: 60px;
  padding: 0 20px;
  list-style: none;
  /* ▼ Flexboxで全体を中央揃えにするベース設定 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.p-mv-top .p-mv-top-section ul li {
  border-radius: 10px;
  background: #FF8036;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-sizing: border-box;
  /* ====================================================
     1. PCサイズ（901px以上）：横幅を4列ベースにして自動で中央揃え
     ==================================================== */
  width: calc((100% - 48px) / 3);
}
.p-mv-top .p-mv-top-section ul li:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.p-mv-top .p-mv-top-section ul li a {
  display: flex;
  padding: clamp(24px, 4vw, 50px) 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
}
.p-mv-top .p-mv-top-section ul li img {
  width: 40px;
  margin-bottom: 14px;
}
.p-mv-top .p-mv-top-section ul li p {
  color: #fff;
  margin: 0;
  line-height: 1.4;
  font-size: clamp(14px, 1.5vw, 16px);
}
.p-mv-top .p-mv-top-section ul li:nth-child(1) {
  grid-column-start: 2;
}

@media (max-width: 901px) {
  .p-mv-top .p-mv-top-section ul {
    flex-direction: column;
  }
  .p-mv-top .p-mv-top-section ul li {
    width: 100%;
  }
}
/* ニュース詳細記事のセクション */
.p-section-body-news-post {
  padding: 64px 16px;
}

.p-section-body-news-post-t0 {
  padding: 0 16px 32px;
}

/* ---Utility--- */
.bk-footer {
  background-color: #2f3e49;
}/*# sourceMappingURL=style.css.map */