@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* 共通 */
.section_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.display_none {
  display: none;
}

/* トップページ　ヘッダー */
.home .l-header {
  display: none;
}

/* トップページ インフルエンサー情報 */
.toppage_influencer_info_wrap {
  padding: 60px 0;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.post_content ul.toppage_influencer_info_list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toppage_influencer_info_list_item {
  width: 100%;
  padding: 0 15px;
}

.toppage_influencer_info_list_item_inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 270px;
  max-width: 100%;
  box-sizing: border-box;
  background: rgb(255 255 255 / 0.9);
  border: 1px solid rgb(0 0 0 / 0.9);
  border-radius: 10px;
  margin: 0 auto;
  padding: 20px 15px;
}

.toppage_influencer_info_list_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  margin: 0 0 15px;
}

.toppage_influencer_info_list_header picture {
  display: block;
  width: 105px;
  height: 105px;
  margin-right: 10px;
}

.toppage_influencer_info_list_header picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.toppage_influencer_info_name {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: #000;
  width: calc(100% - 115px);
}

.toppage_influencer_info_followers {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
  color: #000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4em;
  line-height: 1.2;
}

.toppage_influencer_info_followers span {
  font-size: 1.8em;
  line-height: 1;
  color: #ff931e;
}
.post_content ul.toppage_influencer_info_tags_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.post_content li.toppage_influencer_info_tags_list_item {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 11px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* Slickスライダーのナビゲーション */
.toppage_influencer_info_wrap .slick-prev,
.toppage_influencer_info_wrap .slick-next {
  display: block;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  text-indent: -9999px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.toppage_influencer_info_wrap .slick-prev:hover,
.toppage_influencer_info_wrap .slick-next:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.toppage_influencer_info_wrap .slick-prev:focus,
.toppage_influencer_info_wrap .slick-next:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.9);
}

.toppage_influencer_info_wrap .slick-prev {
  left: -40px;
}

.toppage_influencer_info_wrap .slick-next {
  right: -40px;
}

/* Slickスライダーの矢印の図形 */
.toppage_influencer_info_wrap .slick-prev:before,
.toppage_influencer_info_wrap .slick-next:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

.toppage_influencer_info_wrap .slick-prev:before {
  transform: rotate(225deg);
  right: -3px;
}

.toppage_influencer_info_wrap .slick-next:before {
  transform: rotate(45deg);
  left: -3px;
}

.post_content .toppage_influencer_info_wrap ul.slick-dots {
  padding-left: 0;
}

.toppage_influencer_info_wrap .slick-dots li {
  margin: 0 4px;
  width: 10px;
  height: 10px;
}

.toppage_influencer_info_wrap .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
}

.toppage_influencer_info_wrap .slick-dots li.slick-active button {
  opacity: 1;
  background: white;
}

.toppage_influencer_info_wrap .slick-dots li button:before {
  content: "";
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .toppage_influencer_info_wrap {
    padding: 40px 0;
  }

  .toppage_influencer_info_list_header picture {
    display: block;
    width: 85px;
    height: 85px;
  }

  .toppage_influencer_info_name {
    font-size: 14px;
  }

  .toppage_influencer_info_followers {
    font-size: 14px;
  }

  .toppage_influencer_info_followers span {
    font-size: 1.8em;
  }

  .toppage_influencer_info_wrap .slick-prev,
  .toppage_influencer_info_wrap .slick-next {
    width: 35px;
    height: 35px;
  }

  .toppage_influencer_info_wrap .slick-prev {
    left: 10px;
  }

  .toppage_influencer_info_wrap .slick-next {
    right: 10px;
  }
}

/* トップページ */
.full_bg_wrap {
  padding: 0 !important;
}

.full_bg_wrap .full_bg.wp-block-cover .wp-block-cover__image-background {
  object-fit: contain;
  object-position: top;
}

.full_bg_wrap .wp-block-cover.full_bg {
  min-height: unset;
}

.mv {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 10vw));
}

.section01_txt {
  padding: 0 2em 2em;
}

.section02 {
  position: relative;
  left: calc(50% - 50vw + var(--swl-scrollbar_width, 0px) / 2);
  width: calc(100vw - var(--swl-scrollbar_width, 0px));
}

.section02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url(https://buzz.meo-one.com/wp/wp-content/uploads/2025/08/bg_honeycomb01-scaled.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.section02_bg {
  clip-path: polygon(0 0, 100% 10vw, 100% calc(100% - 10vw), 0 100%);
}

.section02_1 {
  border-radius: 20px;
  position: relative;
}

.section02_1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 83px;
  height: 21px;
  background-image: url(https://buzz.meo-one.com/wp/wp-content/uploads/2025/09/section02_1_arrow.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.section02_1_item {
  position: relative;
}

.section02_1_item:not(:last-child)::after {
  content: "";
  display: block;
  width: 23.5px;
  height: 24.5px;
  background-image: url(https://buzz.meo-one.com/wp/wp-content/uploads/2025/08/sec02_li01_arrow.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 150%) rotate(90deg);
  z-index: 1;
}

.section02_1_txt_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

p.section02_1_txt.has-background {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 650px;
  min-height: 100px;
  border: solid 2px #231815;
  border-radius: 50px;
  padding: 20px 2em;
}

.section02_1_txt .txt_underline {
  font-size: 1.2em;
  border-bottom: solid 2px #F29600;
}

@media (max-width: 768px) {
  .section02_1_txt {
    flex-direction: column;
  }
}


.section02_2_item_inner {
  height: 100%;
  border-radius: 10px;
}

.top_case_slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  background-image: url(https://buzz.meo-one.com/wp/wp-content/uploads/2025/07/sec02_bg-scaled.png);
  background-size: 100% auto;
  background-position: bottom;
  background-repeat: no-repeat;
}

.section03_txt_wrap {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.section03_txt {
  border-bottom: solid 2.5px #f90;
}

.section03_item_inner {
  border: solid 2.5px #f90;
  height: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.section03_table_outer{
  /* overflow-x: scroll; */
}
.section03_table_wrap{
  position: relative;
  padding-bottom: 3em;
}
.post_content table.section03_table {
    min-width: 32em;
}
.post_content .section03_table th{
  background: #fff;
  min-width: 4em;
  border-top: solid 4px #fff;
  border-left: solid 4px #fff;
  border-bottom: none;
  border-right: none;
  color: #231815;
}
.post_content .section03_table td{
  text-align: center;
  border-top: solid 4px #fff;
  border-left: solid 4px #fff;
  border-bottom: none;
  border-right: none;
  color: #231815;
}
.post_content .section03_table thead th{
  text-align: center;
  background: #c1c2c2;
  color: #fff;
}
.post_content .section03_table thead th:first-child{
  background: #fff;
}
.post_content .section03_table thead th.cell_meo{
  background: #f90;
  background:linear-gradient(90deg,rgb(255,203,3) 0%,rgb(255,147,30) 100%);
  color: #231815;
}
.post_content .section03_table tbody th{
  min-width: 16em!important;
}
.post_content .section03_table tbody td{
  width: 8em;
}
.post_content .section03_table tbody tr:nth-child(odd) th,
.post_content .section03_table tbody tr:nth-child(odd) td{
  background: #eee;
}
.post_content .section03_table tbody tr:nth-child(odd) td.cell_meo{
  background: #FCD98D;
}
.section03_table_txt{
    position: absolute;
    bottom: -30px;
    right: 5px;
    background: #f90;
    color: #231815;
    font-weight: bold;
    font-size: 22px;
    padding: .5em 1em;
    line-height: 1;
    z-index: 10;
    border-radius: 7px;
    border: solid 2px #000;
}
.section03_table_txt::before{
    content: "";
    display: block;
    width: 3px;
    height: 35px;
    background: #231815;
    position: absolute;
    top: 0;
    left: 70%;
    transform: translate(0,-96%) rotate(28deg);
}
.section03_table_txt::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #231815;
    position: absolute;
    top: -35px;
    left: 72%;
}
.section03_table_wrap::after {
    content: "";
    display: block;
    width: 8em;
    height: 27em;
    border: #f90 solid 4px;
    position: absolute;
    top: 16.4em;
    right: 0;
}

@media (max-width: 959px) {
.section03_table_outer{
  /* margin: 0 -40px;
  width: calc(100% + 80px);
  overflow-x: scroll; */
  margin: 0 -20px;
  width: calc(100% + 40px);
  overflow-x: scroll;
}
.post_content table.section03_table {
    max-width: none;
}
.section03_table_wrap {
  padding-bottom: 6em;
}
.section03_table_wrap::after {
    right: auto;
    left: 16em;
    width: 4em;
    height: 27em;
}
.section03_table_txt {
    bottom: 2em;
    right: auto;
    left: 8em;
    font-size:1rem;
}
}

@media (max-width: 599px) {
.section03_table_wrap {
  font-size: 1rem;
}
}

.section04 {
  position: relative;
  left: calc(50% - 50vw + var(--swl-scrollbar_width, 0px) / 2);
  width: calc(100vw - var(--swl-scrollbar_width, 0px));
}

.section04::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url(https://buzz.meo-one.com/wp/wp-content/uploads/2025/08/bg_honeycomb01-scaled.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.section04_bg {
  clip-path: polygon(0 0, 100% 10vw, 100% calc(100% - 10vw), 0 100%);
}

@media (min-width: 768px) {
  .mv {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 80px));
  }
  .section01_txt {
    padding: 0 1em 2em;
  }

  .section02_bg {
    clip-path: polygon(0 0, 100% 80px, 100% calc(100% - 80px), 0 100%);
  }

  .section02_1_item:not(:last-child)::after {
    display: none;
  }

  .section02_1_item figure {
    position: relative;
  }

  .section02_1_item:not(:last-child) figure::before {
    content: "";
    display: block;
    width: 23.5px;
    height: 24.5px;
    background-image: url(https://buzz.meo-one.com/wp/wp-content/uploads/2025/08/sec02_li01_arrow.png);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 1;
  }

  .section04_bg {
    clip-path: polygon(0 0, 100% 80px, 100% calc(100% - 80px), 0 100%);
  }
}

@media (min-width: 960px) {
  .section02 {
    left: -100px;
    width: calc(100% + 200px);
  }
  .section02::before {
    background-size: 100% auto;
  }

  .section04 {
    left: -100px;
    width: calc(100% + 200px);
  }
  .section04::before {
    background-size: 100% auto;
  }
}

/* お問い合わせフォーム */
.post_content #contact {
  position: relative;
  left: calc(50% - 50vw + var(--swl-scrollbar_width, 0px) / 2);
  width: calc(100vw - var(--swl-scrollbar_width, 0px));
}

.post_content #contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url(https://buzz.meo-one.com/wp/wp-content/uploads/2025/08/bg_honeycomb01-scaled.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
}

.post_content #contact .contact_bg {
  clip-path: polygon(0 10vw, 100% 0, 100% 100%, 0 100%);
}

.post_content #contact .contact_inner {
  border-radius: 20px;
}
.post_content #contact td,
.post_content #contact th {
  border: none;
  border-bottom: solid 1px #bdbab9;
  background: #fff;
}
.post_content #contact input[type="text"],
.post_content #contact input[type="email"],
.post_content #contact input[type="url"],
.post_content #contact input[type="tel"],
.post_content #contact textarea {
  width: 100%;
  border: none;
  background: #fff;
}
.post_content #contact input[type="submit"] {
  width: 80%;
  max-width: 300px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 2em auto;
  padding: 1em;
  border: solid 2px #000;
  border-radius: 10px;
  background: #f90;
  color: #231815;
  display: block;
}
.post_content #contact input[type="submit"]:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .post_content #contact::before {
    background-size: 100% auto;
  }
  .post_content #contact .contact_bg {
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 479px) {
  .post_content #contact th {
    border-bottom: none;
    display: block;
  }
  .post_content #contact td {
    display: block;
  }
}

@media (min-width: 960px) {
  .post_content #contact {
    left: -100px;
    width: calc(100% + 200px);
  }
}

/* よくある質問 */
.swell-block-faq .faq_q {
  padding: 1em 1em 1em 5em;
  min-height: 5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.swell-block-faq .faq_a {
  padding: 1em 1em 1em 5em;
  min-height: 5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
[data-a="col-text"] .faq_a::before,
[data-q="col-text"] .faq_q::before {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  box-shadow: 0 0 0 1px currentColor;
  border-radius: 50%;
  top: 50%;
  transform: translate(0, -50%);
}
[data-q="col-text"] .faq_q::before {
  box-shadow: 0 0 0 4px #f90;
  background: #f90;
  color: #fff;
}
[data-a="col-text"] .faq_a::before {
  box-shadow: 0 0 0 4px #f90;
  color: #f90;
}

/* ハッシュタグリスト */
.hashtag-container {
  background: white;
  border-radius: 10px;
  padding: 50px 50px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.hashtag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  justify-content: center;
  align-items: flex-start;
}

.break {
  flex-basis: 100%;
  height: 0;
  display: none;
}

@media (min-width: 768px) {
  .break {
    display: block;
  }
}

.hashtag {
  border-radius: 15px;
  padding: 0px 16px;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: white;
  border: none;
}

/* ① ビューティ・ヘルス系 */
.beauty-health {
  background: #efa2b5;
}

/* ② フード・グルメ系 */
.food {
  background: #cc9933;
}

/* ③ ライフスタイル・インテリア系 */
.lifestyle {
  background: #6dc5e8;
}

/* ④ レジャー・カルチャー系 */
.leisure {
  background: #9dcd82;
}

/* ⑤ キャリア・テック系 */
.business,
.career {
  background: #5c7886;
}

.l-footer {
  background-image: url(https://buzz.meo-one.com/wp/wp-content/uploads/2025/07/bg_honeycomb-scaled.png);
  background-size: 100% auto;
  background-position: bottom;
  background-repeat: no-repeat;
}

.footer_link_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer_link_wrap .footer_link {
  display: flex;
}

.footer_link_wrap .footer_link a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  width: 300px;
  height: 70px;
  padding: 10px;
  border: solid 1px #000;
  background: #fff;
}

.footer_link_wrap .footer_link a:hover {
  opacity: 0.8;
}

.footer_link_wrap .footer_link a img {
  width: auto;
  width: 70px;
  height: 50px;
}

.footer_link_wrap .footer_link a p {
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

@media (min-width: 768px) {
  .footer_link_wrap {
    align-items: flex-end;
    gap: 25px;
  }
}

.side-btn-area {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 75px;
}
.side-btn-area a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #000;
    writing-mode: vertical-rl;
    line-height: 1.3;
    min-height: 9em;
    padding-bottom: 2em;
    padding-top: 0.5em;
    background: #fff;
    border-radius: 1em 0 0 1em;
    border: 2px solid #231815;
}
.side-btn-area a::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%,-10px);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.side-btn-area a::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%,-10px);
    background: url(/wp/wp-content/uploads/2022/10/arrow_white.png) center center no-repeat;
    background-size: 10px 10px;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.side-btn-area a.sidebtn01::before {
  background: #f90;
}
.side-btn-area a.sidebtn02::before {
  background: #f30;
}
@media (max-width: 599px) {
.side-btn-area {
    width: 2.5em;
}
.side-btn-area a {
  border: 1px solid #231815;
  font-size: 4vw;
}
.side-btn-area a::before {
  width: 20px;
  height: 20px;
  transform: translate(50%,-15px);
}
/* .side-btn-area {
    top: 0;
    right: 50%;
    transform: translate(50%,0);
    width: 100%;
    gap: 1vw;
}
.side-btn-area a {
  width: auto;
  min-height:auto;
  writing-mode:unset;
  padding: 0.5em 2em 0.5em 0;
  border-radius: 0 0 1em 1em;
  border: 1px solid #231815;
  font-size: 4vw;
}
.side-btn-area a::before {
  width: 20px;
  height: 20px;
  bottom: 50%;
  right: 0;
  transform: translate(-10px,50%);
}
.side-btn-area a::after {
  width: 20px;
  height: 20px;
  bottom: 50%;
  right: 0;
  transform: translate(-10px,50%);
} */
}
