/*
Theme Name: bizport-project-v2
*/

@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #4f4f4f;
  --white-color: #fff;
  --gray-color: #9e9a9a;
  --gray-color02: #fbfbfb;
  --gray-color03: #efefef;
  --primary-color: #ff807d;
  --accent-color: #ffb578;
  --card-color: #fffaf9;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */
p {
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  color: var(--black-color);
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
a,
[role="button"] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (max-width: 1079px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
  box-sizing: border-box;
}

.l_contents {
  padding: 64px 0;
}

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

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 96px 0;
  }
  .l_container-sm,
  .l_container,
  .l_container-lg {
    padding: 0;
  }
}

@media screen and (min-width: 1440px) {
  /* .l_container {
    max-width: calc(1229px + 32px);
  } */

  .l_contents {
    padding: 120px 0;
  }
  .l_container-sm,
  .l_container,
  .l_container-lg {
    padding: 0;
  }
}

/* ========== header ========== */
:root {
  --header-height: 64px;
}

@media screen and (min-width: 500px) {
  :root {
    --header-height: 72px;
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --header-height: 90px;
  }
}

.l_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: var(--header-height);

  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.l_header .l_container-lg {
  max-width: none;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 1080px) {
  .l_header .l_container-lg {
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (min-width: 1440px) {
  .l_header .l_container-lg {
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
  }

  .l_header_logo_img--default {
    display: none;
  }

  .l_header_logo_img--wide {
    display: block;
  }
}

.l_header.is-scrolled {
  background: var(--white-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.l_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

:root {
  --header-height: 63px;
}

.l_header_logo {
  flex-shrink: 0;
}

.l_header_logo_link {
  display: block;
}

.l_header_logo_img {
  width: 224px;
  height: auto;
}

.l_header_logo_img--wide {
  display: none;
}

@media screen and (min-width: 500px) {
  .l_header {
    height: 72px;
  }

  .l_header_inner {
    height: 72px;
  }

  .l_header_logo_img {
    width: 250px;
  }
}

@media screen and (min-width: 1200px) {
  .l_header_logo_img--default {
    display: none;
  }

  .l_header_logo_img--wide {
    display: block;
    width: 468px;
  }
}

@media screen and (min-width: 1440px) {
  .l_header {
    height: 90px;
  }

  .l_header_inner {
    height: 90px;
  }
}

/* ------l_header_nav_pc --------*/

.l_header_nav_pc {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_header_nav_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    white-space: nowrap;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
  }

  .l_header_nav_link {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 16px;
    color: var(--black-color);
    text-decoration: none;
    line-height: 1;
  }

  .l_header_nav_pc {
    display: block;
    margin-left: auto;
  }

  .l_header_nav_link {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--font-color);
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
  }

  .l_header_hamburger {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .l_header_nav_list {
    gap: 32px;
  }
}

@media screen and (min-width: 1600px) {
  .l_header_nav_list {
    font-size: 18px;
  }
}

/* -----------------------------
  nav（SPでは非表示）
----------------------------- */
.l_header_nav_link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 16px;
  color: var(--black-color);
  text-decoration: none;
  line-height: 1;
}

.l_header_hamburger {
  flex-shrink: 0;
  position: relative;
  z-index: 1101;
}
/* hamburger (SP only) */
.m_hamburger {
  display: block;
  width: 32px;
  height: 28px;
  position: relative;
  z-index: 1102;
  border: none;
  background: transparent;
}

@media screen and (min-width: 500px) {
  .m_hamburger {
    width: 36px;
    height: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  background: var(--black-color);
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
/* ======================================
  header menu
====================================== */
.l_header_menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.l_header_menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l_header_menu_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.l_header_menu_panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84%, 320px);
  height: 100dvh;
  background: var(--gray-color02);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.l_header_menu.is-open .l_header_menu_panel {
  transform: translateX(0);
}

.l_header_menu_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 16px;
  border-bottom: 1px solid var(--primary-color);
}

.l_header_menu_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1;
  color: var(--black-color);
}

.l_header_menu_close {
  position: relative;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
}

.l_header_menu_close_icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.l_header_menu_close_icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l_header_menu_close_icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l_header_menu_body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 16px;
  overflow-y: auto;
}

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

.l_header_menu_item + .l_header_menu_item {
  margin-top: 26px;
}

.l_header_menu_item.l_header_menu_item--sub {
  margin-top: 12px;
}

.l_header_menu_link {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: var(--black-color);
}

.l_header_menu_cta {
  margin-top: 32px;
  padding: 32px 16px 0;
  margin-left: -16px;
  margin-right: -16px;
  border-top: 1px solid #d9d9d9;
}

.l_header_menu_cta_btn {
  width: 100%;
  min-height: 46px;
}

.l_header_menu_cta_btn.m_btn_round {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
}

.l_header_menu_cta_btn + .l_header_menu_cta_btn {
  margin-top: 24px;
}

.l_header_menu_sns {
  margin-top: 24px;
  text-align: center;
}

.l_header_menu_sns_ttl {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--black-color);
}

.l_header_menu_sns_list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l_header_menu_sns_link {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.l_header_menu_sns_link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* body lock */
body.is-menu-open {
  overflow: hidden;
}

/* hamburger active */
.m_hamburger-bar {
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease,
    background 0.3s ease;
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (min-width: 1080px) {
  .l_header_menu {
    display: none;
  }
}

/* ======================================
  module : button
====================================== */
.m_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45px;
  color: var(--primary-color);
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, transform 0.3s ease;
}

.m_btn_txt {
  display: inline-block;
  color: inherit;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 700;
  pointer-events: none;
}

/* hover */
.m_btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.m_btn_txt:hover {
  color: var(--white-color);
}

.m_btn:hover::after,
.m_btn:hover::before {
  border-color: currentColor;
}

@media screen and (min-width: 500px) {
  .m_btn {
    min-height: 54px;
  }

  .m_btn_txt {
    font-size: 16px;
  }
}

@media screen and (min-width: 640px) {
  .m_btn {
    min-height: 56px;
  }

  .m_btn_txt {
    font-size: 16px;
  }
}

/* ======================================
  module : round button
====================================== */
.m_btn_round {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 50px;
  padding: 0 16px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 9999px;
  text-decoration: none;
  color: var(--white-color);
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, transform 0.3s ease;
}

.m_btn_round_txt {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: inherit;
  pointer-events: none;
}

.m_btn_round:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.m_btn_round:hover::after,
.m_btn:hover::after {
  border-color: currentColor;
}

.page_top_businessport_btn .m_btn_round_txt {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: inherit;
}

@media screen and (min-width: 1080px) {
  .page_top_businessport_btn .m_btn_round_txt {
    font-size: 14px;
  }
}

/* arrow */
.m_btn_round::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--white-color);
  border-right: 1.5px solid var(--white-color);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.m_btn_round:hover::after {
  transform: translateY(-50%) translateX(3px) rotate(45deg);
}

/* ======================================
  module : section title
====================================== */
.m_sec_ttl {
  text-align: center;
}

.m_sec_ttl_head {
  position: relative;
  display: inline-block;
}

.m_sec_ttl_silhouette {
  position: absolute;
  top: -20px;
  left: -28px;
  /* width: clamp(24px, 3vw, 56px); */
  /* height: auto; */
  pointer-events: none;
  z-index: 2;
}

.m_sec_ttl_main {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.m_sec_ttl_line {
  display: block;
  width: 24px;
  margin: 10px auto;
  background-color: #ffbfbe;
  position: relative;
  height: 1.5px;
}

.m_sec_sub_ttl {
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
  color: #000;
}

@media screen and (min-width: 500px) {
  .m_sec_ttl_main {
    font-size: 22px;
  }
}

@media screen and (min-width: 768px) {
  .m_sec_ttl_main {
    font-size: 24px;
  }

  .m_sec_sub_ttl {
    font-size: 14px;
  }

  .m_sec_ttl_line {
    width: 28px;
    margin: 14px auto;
  }
}

@media screen and (min-width: 1080px) {
  .m_sec_ttl_main {
    font-size: 30px;
  }

  .m_sec_ttl_line {
    width: 30px;
    margin: 16px auto;
    font-size: 16px;
  }

  .m_sec_sub_ttl {
    font-size: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .m_sec_ttl_main {
    font-size: 36px;
  }

  .m_sec_ttl_line {
    width: 32px;
    margin: 18px auto;
    font-size: 18px;
  }

  .m_sec_sub_ttl {
    font-size: 18px;
  }
}

/* 装飾（シルエット） */
.m_sec_ttl_silhouette {
  position: absolute;
  width: auto;
  height: auto;
  pointer-events: none;
}

.m_sec_ttl_silhouette--about {
  top: -20px;
  left: 100%;
  width: clamp(30px, 3vw, 50px);
  z-index: 2;
}

.m_sec_ttl_silhouette--voice {
  top: -36px;
  left: 112%;
  width: clamp(20px, 1.8vw, 30px);
  z-index: 2;
}

.m_sec_ttl_silhouette--strength {
  top: -30px;
  left: -16%;
  width: clamp(25px, 2.4vw, 40px);
  z-index: 2;
}

.m_sec_ttl_silhouette--report {
  top: -20px;
  left: -55%;
  width: clamp(42px, 5vw, 59px);
  z-index: 2;
}
.m_sec_ttl_silhouette--businessport {
  top: -28px;
  left: 104%;
  width: clamp(25px, 3vw, 40px);
  z-index: 2;
}
.m_sec_ttl_silhouette--contact {
  top: -33px;
  left: -32%;
  width: clamp(28px, 3.2vw, 40px);
  z-index: 2;
}

/* 装飾（桜） */
.m_sec_ttl_deco {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
}

.m_sec_ttl_deco--about {
  position: absolute;
  top: clamp(-49px, -20vw, -24px);
  left: clamp(-32px, -14vw, 0px);
  width: clamp(100px, 20vw, 180px);
  z-index: var(--z-index-default);
  transform: rotate(207deg);
}

@media screen and (min-width: 1080px) {
  .m_sec_ttl_deco--about {
    content: url("./assets/img/sakura/sakura-petal-01.png");

    top: -111px;
    left: -120px;

    width: clamp(300px, 40vw, 510px);

    transform: rotate(172deg);
  }
}

.m_sec_ttl_deco--voice {
  position: absolute;
  top: clamp(-200px, -16vw, -127px);
  right: clamp(0px, 3.2vw, 20px);
  width: clamp(110px, 20vw, 220px);
  z-index: 0;
  transform: rotate(354deg);
  pointer-events: none;
}

.m_sec_ttl_deco--strength_center {
  display: none;
}

.m_sec_ttl_deco--strength {
  position: absolute;
  top: clamp(-83px, -8vw, -60px);
  left: clamp(253px, 69vw, 675px);
  width: clamp(100px, 17vw, 184px);

  z-index: var(--z-index-default);
  transform: rotate(354deg);
}

.m_sec_ttl_deco--strength_message_deco {
  top: clamp(-75px, -30vw, -45px);;
  right: clamp(264px, 76vw, 675px);;
  width: clamp(110px, 15vw, 240px);
  transform: rotate(305deg);
}

/* PC */
@media screen and (min-width: 1080px) {
  .m_sec_ttl_deco--strength {
    content: url("./assets/img/sakura/sakura-petal-03.png");
    top: 608px;
    left: -196px;
    width: clamp(260px, 33vw, 520px);
    transform: rotate(25deg);
  }

  .m_sec_ttl_deco--strength_center {
    display: block;
    position: absolute;
    top: 1%;
    right: -190px;
    width: clamp(180px, 32vw, 345px);
    transform: translateY(-50%) rotate(18deg);
    z-index: var(--z-index-default);
    pointer-events: none;
  }

  .m_sec_ttl_deco--strength_message_deco {
    top: 164px;
    right: -118px;
    width: clamp(180px, 15vw, 260px);
    transform: rotate(350deg);
  }
}

.m_sec_ttl_deco--report {
  position: absolute;

  top: clamp(-82px, -18vw, -40px);
  left: clamp(15px, 3vw, 40px);

  width: clamp(100px, 18vw, 220px);

  z-index: var(--z-index-default);
  transform: rotate(41deg) scaleX(-1);
}

.m_sec_ttl_deco--report_back {
  display: none;
}

@media screen and (min-width: 1080px) {
  .m_sec_ttl_deco--report {
    top: clamp(-120px, -17vw, -40px);
    left: clamp(-41px, 1vw, 40px);
    width: clamp(100px, 18vw, 200px);
  }
}
@media screen and (min-width: 1440px) {
  .m_sec_ttl_deco--strength_center {
    top: 0%;
    right: -127px;
  }

  .m_sec_ttl_deco--strength {
    left: -123px;
    width: clamp(260px, 37vw, 520px);
  }

  .m_sec_ttl_deco--report {
    top: clamp(-140px, -12vw, -50px);
    left: clamp(15px, -1vw, 40px);
    width: clamp(100px, 16vw, 220px);
  }

  .m_sec_ttl_deco--report_back {
    display: block;
    left: -177px;
    display: block;
    position: absolute;
    top: 64%;
    width: clamp(287px, 7vw, 390px);
    transform: rotate(342deg) scaleX(-1);
    z-index: var(--z-index-default);
    pointer-events: none;
  }
}

.m_sec_ttl_deco--businessport {
  position: absolute;
  top: clamp(-100px, -10vw, -58px);
  left: clamp(-32px, -6vw, -8px);
  width: clamp(140px, 28vw, 320px);
  z-index: 1;
  transform: rotate(201deg);
}

@media screen and (min-width: 1080px) {
  .m_sec_ttl_deco--businessport {
    top: clamp(-130px, -10vw, -58px);
    left: clamp(-98px, -8vw, -8px);
    width: clamp(140px, 20vw, 320px);
    transform: rotate(26deg) scaleX(-1);
  }
}

.m_sec_ttl_deco--contact {
  position: absolute;
  top: clamp(-124px, 0vw, -147px);
  right: clamp(-19px, -7vw, -220px);
  width: clamp(213px, 42vw, 354px);
  transform: rotate(329deg) scaleX(-1);
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 1440px) {
  .m_sec_ttl_deco--contact {
    right: clamp(-187px, -7vw, -220px);
    width: clamp(213px, 81vw, 434px);
  }
}

.page_top_contact_cta_deco {
  position: absolute;
  top: clamp(454px, 32vw, 360px);
  left: clamp(-24px, -10vw, 40px);
  width: clamp(220px, 50vw, 420px);
  transform: rotate(22deg);
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .page_top_contact_cta_deco {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .page_top_contact_cta_deco {
    display: inline;
    position: absolute;
    top: clamp(200px, 32vw, 360px);
    left: clamp(-120px, 0vw, -121px);
    width: clamp(220px, 36vw, 460px);
    transform: rotate(22deg);
    z-index: 1;
    pointer-events: none;
  }
}

.page_top_report_list,
.m_voiceCard_sns {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* ======================================
  top fv
====================================== */
.page_top_fv {
  position: relative;
  background-image: url("./assets/img/kvbg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}

.page_top_fv .l_container-lg {
  position: relative;
  padding-top: calc(24px + var(--header-height));
  padding-bottom: 0;
}

.page_top_fv_inner {
  position: relative;
  overflow: visible;
}

.page_top_fv_body {
  position: relative;
  z-index: var(--z-index-default);
}

.page_top_fv_lead_pc{
  display: none;
}

.page_top_fv_visual {
  position: relative;
}

.page_top_fv_img {
  margin-right: -16px;
  margin-left: -16px;
}

.page_top_fv_img_picture {
  display: block;
}

.page_top_fv_img_item {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 5px;
}

.page_top_fv_sakura01 {
  position: absolute;
  top: clamp(60px, 12vw, 120px);
  right: clamp(-45px, -16vw, 24px);
  z-index: var(--z-index-default);
  pointer-events: none;
  transform: rotate(341deg);
  width: clamp(370px, 85vw, 580px);
  max-width: none;
}

.page_top_fv_bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 5;
  position: absolute;
  left: 16px;
  right: 0px;
  bottom: 40px;
}

.page_top_fv_btn {
  width: 180px;
}

.page_top_fv_btnLink {
  position: relative;
}

.page_top_fv_btnLink::after {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  content: "";
  transform: translateY(-65%) rotate(45deg);
}

.page_top_fv_logo {
  position: relative;
  z-index: 10;
  background: none;
  padding: 0;
  border-radius: 0;
}

.page_top_fv_logo_img {
  display: block;
  width: 96px;
  height: auto;
  background: none;
  outline: none;
}

.page_top_fv_logo_img {
  width: 120px;
  max-width: none;
}

/* SP新FV調整 */
.page_top_fv_copy {
  position: relative;
  z-index: 2;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0;
}

/* 女性起業家 */
.page_top_fv_copy .copy_lg {
  display: inline;
  font-size: 30px;
}

/* のための、 */
.page_top_fv_copy .copy_sm {
  display: inline;
  font-size: 20px;
  margin-top: 4px;
}

/* つながりと挑戦のプロジェクト */
.page_top_fv_copy .copy_md {
  display: block;
  font-size: 24.5px;
  margin-top: 6px;
}

.page_top_fv_body {
  position: relative;
  z-index: 3;
}

.page_top_fv_img_item {
  margin-top: 0;
}

.page_top_fv_txt {
  position: absolute;
  z-index: 4;
  margin-top: 0;
  color: var(--white-color);
  font-family: "Noto Serif JP", serif;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.03em;
  bottom: clamp(190px, 39vw, 260px);
}

.page_top_fv_txt_item {
  margin-left: 0;
  color: var(--white-color);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  width: fit-content;
  max-width: 100%;
}

.page_top_fv_txt_item + .page_top_fv_txt_item {
  margin-top: 8px;
}

.page_top_fv_desc {
  position: absolute;
  bottom: -355px;
  z-index: 4;
  color: var(--white-color);
  font-family: "Noto Serif JP", serif;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.03em;
  bottom: clamp(135px, 23vw, 160px);
}

.br-pc {
  display: none;
}

.br-sp {
  display: inline;
}

/* PC */
@media screen and (min-width: 768px) {
  .br-pc {
    display: inline;
  }

  .br-sp {
    display: none;
  }
}


.page_top_fv_btn {
  width: 180px;
}

.page_top_fv_logo_img {
  width: 96px;
}

@media screen and (min-width: 500px) {
  .page_top_fv .l_container-lg {
    padding-top: calc(32px + var(--header-height));
  }
  .page_top_fv_txt {
    margin-top: 32px;
    font-size: 16px;
  }

  .page_top_fv_txt_item + .page_top_fv_txt_item {
    margin-top: 12px;
  }

  .page_top_fv_img_item {
    margin-top: 12px;
  }

  .page_top_fv_desc {
    font-size: 16px;
  }

  .page_top_fv_btn {
    width: 220px;
  }

  .page_top_fv_btnLink::after {
    right: 16px;
    width: 7px;
    height: 7px;
  }

  .page_top_fv_logo_img {
    width: 125px;
  }

  .page_top_fv_bottom {
    left: 24px;
    bottom: 40px;
  }

  /* 女性起業家 */
.page_top_fv_copy .copy_lg {
  font-size: 35px;
}

/* のための、 */
.page_top_fv_copy .copy_sm {
  font-size: 24px;
  margin-top: 9px;
}

/* つながりと挑戦のプロジェクト */
.page_top_fv_copy .copy_md {
  display: block;
  font-size: 30px;
  margin-top: 6px;
}
}

@media screen and (min-width: 640px) {
  .page_top_fv_copy {
    text-align: center;
  }

  .page_top_fv_copy .copy_lg {
  font-size: 40px;
  }

  /* のための、 */
  .page_top_fv_copy .copy_sm {
    font-size: 30px;
    margin-top: 10px;
  }

  /* つながりと挑戦のプロジェクト */
  .page_top_fv_copy .copy_md {
    display: block;
    font-size: 36px;
    margin-top: 6px;
  }

  .page_top_fv_btn {
    width: 260px;
  }

  .page_top_fv_logo_img {
    width: 150px;
  }

  .page_top_fv_bottom {
    left: 32px;
    right: 16px;
    bottom: 48px;
  }

  .page_top_fv_txt {
    font-size: 18px;
  }

  .page_top_fv_desc {
    font-size: 18px;
  }
}

/* ======================================
  top fv / 768px~
====================================== */
@media screen and (min-width: 768px) {
  .page_top_fv .l_container-lg {
    padding-top: calc(32px + var(--header-height));
  }

  .page_top_fv_copy {
    font-size: 56px;
  }

  .page_top_fv_txt {
    margin-top: 48px;
    left: 64px;
  }

  .page_top_fv_txt_item {
    font-size: 20px;
  }

  .page_top_fv_txt_item + .page_top_fv_txt_item {
    margin-top: 12px;
  }

    .page_top_fv_desc {
    font-size: 20px;
    margin: auto 64px;
  }

  .page_top_fv_img {
    margin-right: -32px;
    margin-left: -32px;
  }

  .page_top_fv_img_item {
    margin-top: 0px;
  }

  .page_top_fv_lead_pc {
    display: block;
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.8;
    font-family: "Noto Serif JP", serif;
    text-align: center;
  }

  .page_top_fv_bottom {
    left: 120px;
    right: 120px;
    bottom: 48px;
    gap: 20px;
  }

  .page_top_fv_btn {
    width: 260px;
  }

  .page_top_fv_btnLink::after {
    right: 16px;
    width: 7px;
    height: 7px;
  }

  .page_top_fv_logo_img {
    width: 150px;
  }

  .page_top_fv_sakura01 {
    top: 120px;
    right: -64px;
    width: 700px;
  }
}

@media screen and (min-width: 900px) {
  .page_top_fv_txt_item {
    font-size: 22px;
  }
}

@media screen and (min-width: 640px) and (max-width: 779px) {
  .page_top_fv_img {
    margin-left: 0;
    margin-right: 0;
    height: 700px;
    overflow: hidden;
  }

  .page_top_fv_img_picture,
  .page_top_fv_img_item {
    width: 100%;
    height: 100%;
    display: block;
  }

  .page_top_fv_img_item {
    object-fit: cover;
    object-position: center top;
  }
}

@media screen and (min-width: 768px) and (max-width: 899px) {
  .page_top_fv_bottom {
    left: 64px;
    right: 64px;
  }
}

@media screen and (min-width: 800px) and (max-width: 1079px) {
  .page_top_fv_img_picture,
  .page_top_fv_img_item {
    width: 95%;
    /* height: 100%; */
    margin-left: 50px;
  }

  .page_top_fv_sakura01 {
    top: 50px;
    right: -64px;
    width: 800px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1079px) {
  .page_top_fv_bottom {
    left: 150px;
    right: 150px;
  }
}

.page_top_fv_sp {
  display: block;
}

.page_top_fv_pc {
  display: none;
}

/* ======================================
  top fv / 1080px~
====================================== */
@media screen and (min-width: 1080px) {
  .page_top_fv_sp {
    display: none;
  }

  .page_top_fv_pc {
    display: block;
  }

  .page_top_fv {
    position: relative;
    height: clamp(672px, calc(672px + 208 * ((100vw - 1080px) / 360)), 880px);
    overflow: hidden;
    background-image: url("./assets/img/kvbg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .page_top_fv .l_container-lg {
    position: relative;
    max-width: none;
    height: 100%;
    padding-top: 72px;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 0;
  }

  .page_top_fv_pc {
    height: 100%;
  }

  .page_top_fv_pc_inner {
    position: relative;
    height: clamp(600px, calc(600px + 210 * ((100vw - 1080px) / 359)), 810px);
  }

  .page_top_fv_pc_visual {
    position: absolute;
    left: -40px;
    bottom: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
  }

  .page_top_fv_pc_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
  }

  .page_top_fv_pc_body {
    position: absolute;
    top: 95px;
    left: 40%;
    width: min(52%, 900px);
    z-index: 2;

    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.04em;
    white-space: nowrap;
    color: var(--black-color);
  }

.page_top_fv_pc_copy {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--black-color);
}

.page_top_fv_pc_copy .copy_lg {
  font-size: 54px;
}

.page_top_fv_pc_copy .copy_sm {
  font-size: 38px;
}

.page_top_fv_pc_copy .copy_md {
  display: block;
  margin-top: 8px;
  font-size: 40px;
}

  .page_top_fv_pc_txt {
    margin-top: clamp(52px, calc(52px + 40 * ((100vw - 1080px) / 359)), 92px);
    max-width: 500px;
  }

  .page_top_fv_pc_txt_item {
    width: fit-content;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(
      1.1rem,
      calc(1.1rem + 0.9 * ((100vw - 1080px) / 359)),
      2rem
    );
    font-weight: 700;
    color: var(--black-color);
    border-bottom: 1px solid rgba(79, 79, 79, 0.8);
  }

  .page_top_fv_pc_txt_item + .page_top_fv_pc_txt_item {
    margin-top: 8px;
  }

  .page_top_fv_pc_desc {
    margin-top: 18px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(
      0.9rem,
      calc(0.9rem + 0.8 * ((100vw - 1080px) / 359)),
      1.7rem
    );
    font-weight: 700;
    color: var(--black-color);
  }

  .page_top_fv_pc_bottom {
    position: absolute;
    left: 10%;
    right: -16px;
    bottom: -146px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 2;
  }

  .page_top_fv_pc_btn {
    flex: 0 0 auto;
  }

  .page_top_fv_pc_btn .m_btn {
    min-width: 240px;
  }

  .page_top_fv_pc_logo {
    flex: 0 0 auto;
  }

  .page_top_fv_pc_logo_img {
    display: block;
    width: 120px;
    height: auto;
  }

  .page_top_fv_pc_sakura {
    position: absolute;

    top: clamp(-24px, calc(-24px - 40 * ((100vw - 1080px) / 359)), -64px);

    right: clamp(-64px, calc(-64px - 40 * ((100vw - 1080px) / 359)), -104px);

    width: clamp(560px, calc(560px + 180 * ((100vw - 1080px) / 359)), 740px);

    height: auto;
    pointer-events: none;
    z-index: 1;
  }
}

@media screen and (min-width: 1280px) {
  .page_top_fv_pc_body {
    top: 150px;
    left: 42%;
  }

  .page_top_fv_pc_copy .copy_lg {
  font-size: 60px;
  }

  .page_top_fv_pc_copy .copy_sm {
    font-size: 40px;
  }

  .page_top_fv_pc_copy .copy_md {
    display: block;
    margin-top: 8px;
    font-size: 42px;
  }

  .page_top_fv_pc_desc {
    font-size: 16px;
    margin-top: 22px;
  }

  .page_top_fv_pc_btn .m_btn {
    min-width: 320px;
  }

  .page_top_fv_pc_logo_img {
    width: 160px;
  }
}

/* ======================================
  top fv / 1440px~
====================================== */
@media screen and (min-width: 1440px) {
  .page_top_fv_pc_copy {
    font-size: 4rem;
  }

  .page_top_fv_pc_copy .copy_lg {
  font-size: 73px;
  }

  .page_top_fv_pc_copy .copy_sm {
    font-size: 48px;
  }

  .page_top_fv_pc_copy .copy_md {
    display: block;
    margin-top: 8px;
    font-size: 50px;
  }
  .page_top_fv_pc_desc {
    font-size: 17px;
  }

  .page_top_fv_pc_txt {
    margin-top: 80px;
  }

  .page_top_fv_pc_txt_item {
    font-size: 1.4rem;
  }

  .page_top_fv_pc_desc {
    max-width: 620px;
    margin-top: 24px;
    font-size: 16px;
  }

  .page_top_fv_pc_bottom {
    bottom: -170px;
  }

  .page_top_fv_pc_sakura {
    width: 730px;
  }
}

/* ======================================
  top about
====================================== */
.br-sp {
  display: inline;
}

.br-pc {
  display: none;
}

.page_top_about {
  background-color: var(--white-color);
}

.page_top_about_inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

/* デフォルト（〜1439px）→ 改行あり */
.br-lg {
  display: inline;
}

@media screen and (min-width: 1080px) {
  .page_top_about_inner {
    max-width: 992px;
  }
}
@media screen and (min-width: 1440px) {
  .page_top_about_inner {
    max-width: 1320px;
  }
}

.page_top_about_main_lead {
  color: var(--primary-color);
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

.page_top_about_img {
  position: relative;
  z-index: var(--z-index-default);
  margin-top: 32px;
}

.page_top_about_img_item {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.page_top_about_txt {
  position: relative;
  z-index: var(--z-index-default);
  margin-top: 32px;
}

.page_top_about_txt p {
  font-family: "Noto Serif JP", serif;
}

.page_top_about_txt p + p {
  margin-top: 16px;
}

@media screen and (min-width: 400px) {
  .br-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .page_top_about_main_lead {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .br-pc {
    display: inline;
  }
  .page_top_about_inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    column-gap: 40px;
    align-items: start;
  }

  .page_top_about_inner .m_sec_ttl {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
    max-width: 760px;
  }

  .page_top_about_main_lead {
    grid-column: 1;
    grid-row: 2;
    margin-top: 64px;
    max-width: none;
    font-size: 26px;
  }

  .page_top_about_txt {
    grid-column: 1;
    grid-row: 3;
    margin-top: 40px;
    max-width: none;
  }

  .page_top_about_txt p {
    font-size: 16px;
  }

  .page_top_about_txt p + p {
    margin-top: 32px;
  }

  .page_top_about_img {
    grid-column: 2;
    grid-row: 2 / 4;
    margin-top: 64px;
    width: 400px;
    justify-self: end;
  }

  .page_top_about_img_item {
    border-radius: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .page_top_about .l_container {
    max-width: calc(1198px + 32px);
  }

  .page_top_about_main_lead {
    margin-top: 80px;
    font-size: 32px;
  }

  .page_top_about_inner {
    grid-template-columns: minmax(0, 1fr) 487px;
    column-gap: 40px;
  }

  .page_top_about_img {
    margin-top: 64px;
    width: 487px;
  }
  .page_top_about_txt {
    margin-top: 56px;
    padding-right: 0px;
  }

  .page_top_about_txt p {
    font-size: 18px;
  }

  .br-lg {
    display: none;
  }
}

/* ======================================
  voice
====================================== */
.page_top_voice_slide {
  width: 280px;
}

.page_top_voice_ttl {
  position: relative;
  overflow: hidden;
}

.page_top_voice {
  background-color: #fffaf9;
  position: relative;
  z-index: 0;
}

.page_top_voice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/img/background-pink.jpg") no-repeat center top /
    cover;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

.page_top_voice_inner {
  position: relative;
}

.page_top_voice_head {
  margin-top: 64px;
}

.page_top_voice_head_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-left: calc(50% - 50vw + 16px);
}

@media screen and (min-width: 1168px) {
  .page_top_voice_head {
    max-width: 1168px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1230px) {
  .page_top_voice_head_ttl {
    margin-left: calc((100% - 1230px) / 2);
  }
}

.page_top_voice_slider {
  position: relative;
  margin-top: 16px;
  margin-left: -16px;
}

.page_top_voice_slider .swiper {
  overflow: hidden;
  padding-left: 16px;
  height: auto;
  align-items: stretch;
}

.page_top_voice_slider .swiper-slide {
  width: 280px;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}

.page_top_voice_slider .swiper-wrapper {
  align-items: flex-start;
  height: auto;
}

.page_top_voice_slider .m_voiceCard {
  height: auto;
  width: 100%;
  max-width: none;
}

@media screen and (min-width: 768px) {
  .page_top_voice_slider {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .page_top_voice_slider .swiper {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1168px) {
  .page_top_voice_slider .swiper {
    display: flex;
    justify-content: center;
  }

  .page_top_voice_slider .swiper-wrapper {
    width: max-content;
    flex: none;
    display: flex;
    gap: 16px;
  }
}

@media screen and (min-width: 1230px) {
  .page_top_voice_slider .swiper-wrapper {
    gap: 34px;
  }
}

.m_voiceCard {
  height: 100%;
}

/* カード本体の例 */
.m_voiceCard_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #ef8f8f;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.m_voiceCard_body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.m_voiceCard_more {
  margin-top: auto;
}

/* 矢印 */
.page_top_voice_prev,
.page_top_voice_next {
  position: absolute;
  top: 44%;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black-color);
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.page_top_voice_prev {
  left: 26px;
}

.page_top_voice_next {
  right: 10px;
}

.page_top_voice_prev::before,
.page_top_voice_next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.page_top_voice_prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.page_top_voice_next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

/* ======================================
  module : m_voiceCard
====================================== */
.m_voiceCard {
  overflow: hidden;
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  max-width: 280px;
}

.m_voiceCard + .m_voiceCard {
  margin-top: 16px;
}

.m_voiceCard_img {
  width: 245px;
  height: 245px;
  margin: 0 auto;
}

.m_voiceCard_img--large {
  width: 280px;
  height: 245px;
}

.m_voiceCard_img_item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page_top_voice_subList {
  margin-left: 16px;
}

.page_top_voice_subList .m_voiceCard_img_item {
  margin-top: 10px;
}

.m_voiceCard_body {
  padding: 24px 16px;
}

.m_voiceCard_name {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.m_voiceCard_job {
  display: inline-block;
  width: fit-content;
  margin-top: 3px;
  color: #0025ef;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: all 0.3s ease;
}

.m_voiceCard_job:visited {
  color: #0025ef;
}

.m_voiceCard_job:hover {
  opacity: 0.5;
}

.m_voiceCard_sns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.m_voiceCard_sns_icon {
  display: block;
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}

.m_voiceCard_txt {
  margin-top: 16px;
}

.m_voiceCard_txt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;

  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.m_voiceCard--noSns .m_voiceCard_txt p {
  -webkit-line-clamp: 6;
}

.m_voiceCard_btn {
  margin-top: 24px;
}

.m_voiceCard_btn_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  text-decoration: none;

  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, transform 0.3s ease;
}

.m_voiceCard_btn_txt {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  pointer-events: none;
}

/* hover */
.m_voiceCard_btn_link:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.m_voiceCard_btn_icon {
  margin-right: 8px;
}

.m_voiceCard--noSns .m_voiceCard_txt {
  margin-top: 8px;
}

.m_voiceCard--noSns .m_voiceCard_btn {
  padding-top: 5px;
}

/* ======================================
  modal voice
====================================== */

/* .m_modalVoice {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
} */

.m_modalVoice {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
}

.m_modalVoice[aria-hidden="true"] {
  display: none;
}

.m_modalVoice.is_open {
  visibility: visible;
  opacity: 1;
}

.m_modalVoice_overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.28);
}

.m_modalVoice_box {
  position: relative;
  width: calc(100% - 32px);
  margin: 0;
}

.m_modalVoice_dialog {
  position: relative;
  max-height: calc(100dvh - 64px - 64px);
  overflow-y: auto;
  background-color: var(--white-color);
}

.m_modalVoice_close {
  position: absolute;
  top: -24px;
  right: 0;
  z-index: var(--z-index-default);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.3s ease;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.m_modalVoice_close_txt {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
}

.m_modalVoice_close_icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}

.m_modalVoice_close_icon::before,
.m_modalVoice_close_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: var(--white-color);
  content: "";
}

.m_modalVoice_close_icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.m_modalVoice_close_icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.m_modalVoice_inner {
  position: relative;
}

.m_modalVoice_body {
  padding: 0 18px 24px;
}

.m_modalVoice_head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 32px auto 0;
}

.m_modalVoice_head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 28px;
}

.m_modalVoice_img {
  flex-shrink: 0;
}

.m_modalVoice_img_item {
  display: block;
  width: 140px;
  height: auto;
  margin-left: 18px;
}

.m_modalVoice_sns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 16px;
}

.m_modalVoice_sns_item {
  list-style: none;
}

.m_modalVoice_sns_icon {
  display: block;
  width: 24px;
  height: 24px;
}

.m_modalVoice_name {
  margin-top: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0em;
}

.m_modalVoice_job {
  display: inline-block;
  margin-top: 3px;
  color: #1d4ed8;
  font-size: 13px;
  border-bottom: 1px solid #1d4ed8;
}

.m_modalVoice_txt {
  margin-top: 24px;
}

.m_modalVoice_txt p {
  font-size: 14px;
  line-height: 1.8;
}

.m_modalVoice_txt p + p {
  margin-top: 16px;
}

.m_modalVoice_nav {
  position: absolute;
  top: 48%;
  z-index: var(--z-index-default);
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--black-color);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}

.m_modalVoice_nav_prev {
  left: -25px;
}

.m_modalVoice_nav_next {
  right: -25px;
}

.m_modalVoice_nav_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--black-color);
  border-right: 2px solid var(--black-color);
  transform: translate(-50%, -50%);
}

.m_modalVoice_nav_prev .m_modalVoice_nav_icon {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.m_modalVoice_nav_next .m_modalVoice_nav_icon {
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (min-width: 500px) {
  .m_modalVoice_box {
    max-width: 460px;
  }

  .m_modalVoice_img_item {
    width: 180px;
  }

  .m_modalVoice_head {
    gap: 20px;
  }

  .m_modalVoice {
    padding: 40px;
  }

  .m_modalVoice_sns {
    gap: 20px;
    margin-bottom: 6px;
  }

  @media screen and (min-width: 1080px) {
    .m_modalVoice_box {
      max-width: 900px;
    }
    .m_modalVoice_inner {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      max-width: 900px;
      margin: 0 auto;
    }

    .m_modalVoice_sns_icon {
      width: 32px;
      height: 32px;
    }
    .m_modalVoice_img {
      flex-shrink: 0;
    }

    .m_modalVoice_img_item {
      width: 220px;
      margin-top: 32px;
      margin-left: 32px;
    }
    .m_modalVoice_body {
      padding: 32px;
      flex: 1;
    }
    .m_modalVoice_head {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-top: 0;
    }
    .m_modalVoice_sns {
      order: 3;
      margin-top: 16px;
    }
    .m_modalVoice_name {
      margin-top: 0;
    }
    .m_modalVoice_job {
      font-size: 14px;
      margin-top: 4px;
    }
    .m_modalVoice_txt {
      margin-top: 24px;
    }
  }
}

.page_top_voice_subList {
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
  margin-top: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page_top_voice_subList::-webkit-scrollbar {
  display: none;
}

.page_top_voice_col {
  display: flex;
  flex-direction: column;
  flex: 0 0 280px;
  scroll-snap-align: start;
  margin-right: 16px;
}

.page_top_voice_col:last-of-type {
  margin-right: 0;
}

.page_top_voice_col--right {
  padding-right: 16px;
}

@media screen and (min-width: 576px) {
  .page_top_voice_col--right {
    padding-right: 0px;
  }
}

/* ======================================
  576px〜1229px
  スマホカードのまま2枚を中央配置
====================================== */
@media screen and (min-width: 576px) {
  .page_top_voice_subList {
    width: 576px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .page_top_voice_col {
    flex: 0 0 280px;
  }
}

@media screen and (min-width: 1230px) {
  /* =========================
    レイアウト
  ========================= */
  .page_top_voice_subList {
    display: flex;
    gap: 24px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .page_top_voice_col {
    flex: 0 0 599px;
    width: 599px;
    margin-right: 0;
  }

  /* =========================
    カード本体
  ========================= */
  .page_top_voice_col .m_voiceCard {
    display: flex;
    width: 100%;
    height: 351px;
    padding: 24px;
    max-width: none;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* =========================
    画像
  ========================= */
  .page_top_voice_col .m_voiceCard_img {
    flex: 0 0 266px;
    width: 266px;
    height: 266px;
    margin: 0;
  }

  .page_top_voice_col .m_voiceCard_img_item {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page_top_voice_subList .m_voiceCard_img_item {
    margin-top: 0px;
  }

  /* =========================
    本文エリア
  ========================= */
  .page_top_voice_col .m_voiceCard_body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-left: 24px;
    min-width: 0;
  }
}

.page_top_voice_col_ttl {
  display: block;
  margin-bottom: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 64px;
}

.page_top_voice_col .m_voiceCard {
  width: 100%;
  height: auto;
}

.page_top_voice_col .m_voiceCard_body {
  display: block;
  height: auto;
}

.page_top_voice_col .m_voiceCard_btn {
  margin-top: 16px;
}

/* SNSなしのカードだけ詰める */
.m_voiceCard--noSns .m_voiceCard_sns {
  display: none;
}

.m_voiceCard--noSns .m_voiceCard_txt {
  margin-top: 24px;
}

/* ======================================
  project strength
====================================== */
.page_top_strength .br-sp {
  display: none;
}

/* SPだけ改行 maxになっている*/
@media screen and (max-width: 1079px) {
  .page_top_strength .br-sp {
    display: block;
  }
}

/* 1枚目だけ特別カード */
.page_top_strength_card--pickup {
  max-width: 343px;
}

.page_top_strength_card_imgWrap--pickup {
  height: 200px;
}

.page_top_strength_card_imgWrap--pickup picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page_top_strength_card_imgWrap--pickup .page_top_strength_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 下記そのまま */

.page_top_strength {
  background: var(--white-color);
  overflow: hidden;
}

.page_top_strength_inner {
  position: relative;
}

.page_top_strength_ttl {
  position: relative;
  margin-bottom: 32px;
  text-align: center;
}

.page_top_strength_ttl_deco {
  position: absolute;
  top: -28px;
  left: -8px;
  width: 56px;
  height: auto;
  pointer-events: none;
}

.page_top_strength_cards {
  display: grid;
  gap: 64px;
  justify-items: center;
  margin-bottom: 48px;
}

.page_top_strength_card {
  width: 100%;
  max-width: 343px;
  background: #fffaf9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 2px 2px rgba(195, 195, 195, 0.5);
}

.page_top_strength_card_imgWrap {
  height: 200px;
  overflow: hidden;
}

.page_top_strength_card_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_top_strength_card_body {
  padding: 24px 16px 24px;
}

.page_top_strength_card_label {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  font-family: "Noto Serif JP", serif;
}

.page_top_strength_card_ttl {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: #333;
  margin: 0;
}

.page_top_strength_card_line {
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 8px;
  background: var(--primary-color);
}

.page_top_strength_card_txt {
  font-size: 14px;
  line-height: 1.8;
  color: var(--black-color);
  margin-top: 16px;
}

.page_top_strength_message {
  position: relative;
  text-align: center;
}

.page_top_strength_message_catch {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 32px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--primary-color);
}

.page_top_strength_message_imgWrap {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
}

.page_top_strength_message_img {
  display: block;
  width: 100%;
  height: auto;
}

.page_top_strength_message_body {
  text-align: left;
}

.page_top_strength_message_txt {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: var(--black-color);
}

.page_top_strength_message_txt + .page_top_strength_message_txt {
  margin-top: 12px;
}

.page_top_strength_card_txt a {
  color: #0025ef;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}

.page_top_strength_card_txt a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 500px) {
  .br-500-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .page_top_strength_ttl {
    margin-bottom: 48px;
  }

  .page_top_strength_ttl_deco {
    top: -48px;
    left: 50%;
    width: 84px;
    transform: translateX(-260px);
  }

  .page_top_strength_cards {
    gap: 40px;
    margin-bottom: 80px;
  }

  .page_top_strength_card {
    max-width: 408px;
    border-radius: 12px;
  }

  .page_top_strength_card_imgWrap {
    width: 408px;
    height: 238px;
    aspect-ratio: auto;
  }

  .page_top_strength_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page_top_strength_card_body {
    padding: 40px 32px;
  }

  .page_top_strength_card_label {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .page_top_strength_card_ttl {
    font-size: 18px;
    line-height: 1.6;
  }

  .page_top_strength_card_line {
    width: 24px;
    margin-top: 12px;
  }

  .page_top_strength_card_txt {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .page_top_strength_message {
    max-width: 760px;
    margin: 0 auto;
  }

  .page_top_strength_message_catch {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.6;
  }

  .page_top_strength_message_imgWrap {
    margin-bottom: 32px;
    border-radius: 20px;
  }

  .page_top_strength_message_body {
    max-width: 680px;
    margin: 0 auto;
  }

  .page_top_strength_message {
    max-width: 760px;
    margin: 0 auto;
  }
}

.page_top_strength_message_imgWrap {
  margin-bottom: 32px;
  border-radius: 16px;
}

.page_top_strength_message_body {
  max-width: none;
}

.br-strength-pc {
  display: none;
}

@media screen and (min-width: 1080px) {
  .page_top_strength_cards {
    grid-template-columns: repeat(2, 408px);
    justify-content: center;
    gap: 48px 80px;
    max-width: 896px;
    margin: 0 auto 32px;
  }

  .page_top_strength_card {
    width: 408px;
    max-width: none;
  }

  .page_top_strength_card_imgWrap {
    width: 408px;
    height: 238px;
    aspect-ratio: auto;
  }

  .page_top_strength_card_ttl {
    font-size: 18px;
    line-height: 1.6;
  }

  .page_top_strength_card_txt {
    font-size: 16px;
  }

  .page_top_strength_message {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    column-gap: 40px;
    align-items: start;
    max-width: 992px;
    margin: 0 auto;
    text-align: left;
  }

  .page_top_strength_message_imgWrap {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 400px;
    margin-top: 64px;
    margin-bottom: 0;
    justify-self: start;
  }

  .page_top_strength_message_catch {
    grid-column: 2;
    grid-row: 1;
    margin-top: 64px;
    margin-bottom: 0;
    font-size: 26px;
    line-height: 1.6;
    max-width: 552px;
  }

  .page_top_strength_message_body {
    grid-column: 2;
    grid-row: 2;
    margin-top: 40px;
    padding-right: 0;
    min-width: 552px;
  }

  .page_top_strength_message_txt {
    font-size: 16px;
  }

  .page_top_strength_message_txt + .page_top_strength_message_txt {
    margin-top: 32px;
  }

  .ttl-separator {
    display: none;
  }

  .br-strength-pc {
    display: block;
  }

/* 1080px以上：1枚目だけ横長カード */
  .page_top_strength_card--pickup {
    grid-column: 1 / -1;
    width: 896px;
    justify-self: center;
  }

  .page_top_strength_card_imgWrap--pickup {
    width: 896px;
    height: 260px;
  }

  .page_top_strength_card--pickup .page_top_strength_card_body {
    padding: 40px 32px;
  }

}

@media screen and (min-width: 1440px) {
  .page_top_strength .l_container {
    max-width: calc(1230px + 32px);
  }

  .page_top_strength_message {
    grid-template-columns: 487px minmax(0, 1fr);
    column-gap: 40px;
    max-width: 1230px;
  }
  .page_top_strength_message_imgWrap {
    width: 487px;
    margin-top: 64px;
  }

  .page_top_strength_message_catch {
    margin-top: 80px;
    font-size: 32px;
    line-height: 1.5;
    max-width: 703px;
  }

  .page_top_strength_message_body {
    margin-top: 56px;
    padding-right: 0;
    min-width: 703px;
  }

  .page_top_strength_message_txt {
    font-size: 18px;
  }

/* 1440px以上：デザインに近い横幅 */
  .page_top_strength_card--pickup {
    width: 952px;
  }

  .page_top_strength_card_imgWrap--pickup {
    width: 952px;
    height: 314px;
  }

  .page_top_strength_card--pickup .page_top_strength_card_body {
    padding: 40px 36px 48px;
  }
}


/* ======================================
  top report
====================================== */
.page_top_report {
  background: #fffaf9;
  z-index: 0;
  position: relative;
}

.page_top_report::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/img/background-pink.jpg") no-repeat center top /
    cover;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

.page_top_report_inner {
  position: relative;
}

.page_top_report_ttl {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.page_top_report_ttl_deco {
  position: absolute;
  top: -12px;
  left: -8px;
  width: 88px;
  height: auto;
  pointer-events: none;
}

.page_top_report_list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 360px));
  justify-content: center;
  gap: 32px;
}

.page_top_report_item {
  width: 100%;
  height: 100%;
}

.page_top_report_card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 311px;
  margin: 0 auto;
  background: var(--white-color);
  border: 1px solid #c3c3c3;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.page_top_report_card_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.page_top_report_card_imgWrap {
  aspect-ratio: 343 / 193;
  background: #ddd;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.page_top_report_card_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_top_report_card_body {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.page_top_report_card_meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.page_top_report_card_cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 4px 8px;
  border-radius: 5px;
  background: var(--accent-color);
  font-size: 14px;
  color: var(--white-color);
}

.page_top_report_card_date {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--gray-color);
}

.page_top_report_card_ttl {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--black-color);
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  margin-bottom: 16px;
}

.page_top_report_card_txt {
  display: -webkit-box;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--black-color);
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.page_top_report_card_link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--primary-color);
  margin-top: auto;
  transition: opacity 1s ease;
}

@media screen and (min-width: 500px) {
  .page_top_report_card {
    max-width: 360px;
  }
}

@media screen and (min-width: 768px) {
  .page_top_report_item {
    height: 100%;
  }

  .page_top_report_card {
    height: 100%;
    max-width: none;
    margin: 0;
  }

  .page_top_report_card_body {
    flex: 1;
  }

  .page_top_report_card_link {
    margin-top: auto;
  }
}

/* 矢印 */
.page_top_report_card_link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(1px) rotate(45deg);
}

.page_top_report_card_arrow {
  font-size: 14px;
  line-height: 1;
  opacity: 1;
}

.page_top_report_more {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 767px) {
  .page_top_report_card_txt {
    -webkit-line-clamp: 2;
  }
}

@media screen and (min-width: 768px) {
  .page_top_report_ttl {
    margin-bottom: 56px;
  }

  .page_top_report_list {
    grid-template-columns: repeat(2, minmax(0, 408px));
    gap: 48px 24px;
    align-items: start;
    justify-content: center;
  }

  .page_top_report_card {
    max-width: none;
    border-radius: 16px;
  }

  .page_top_report_card_imgWrap {
    aspect-ratio: 391 / 220;
  }

  .page_top_report_card_body {
    padding: 20px;
    flex: 1;
  }

  .page_top_report_card_meta {
    gap: 12px;
    margin-bottom: 16px;
  }

  .page_top_report_card_cat,
  .page_top_report_card_date,
  .page_top_report_card_link {
    font-size: 14px;
  }

  .page_top_report_card_ttl {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.3;
  }

  .page_top_report_card_txt {
    margin-bottom: 24px;
    font-size: 15px;
    -webkit-line-clamp: 3;
  }

  .page_top_report_more {
    margin-top: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .page_top_report_ttl {
    margin-bottom: 64px;
  }

  .page_top_report_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 24px;
  }

  /* まだSP寄りカード */
  .page_top_report_card {
    border-radius: 12px;
  }

  .page_top_report_card_imgWrap {
    aspect-ratio: 343 / 193;
  }

  .page_top_report_card_body {
    padding: 16px 16px 20px;
  }

  .page_top_report_card_meta {
    gap: 12px;
    margin-bottom: 16px;
  }

  .page_top_report_card_cat,
  .page_top_report_card_date,
  .page_top_report_card_link {
    font-size: 14px;
  }

  .page_top_report_card_ttl {
    margin-bottom: 16px;
    font-size: 17px;
    letter-spacing: 0.02em;
  }

  .page_top_report_card_txt {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.03em;
  }

  .page_top_report_more {
    margin-top: 64px;
  }

  .page_top_report_more .m_btn_round {
    width: 280px;
    min-height: 56px;
    padding: 0;
  }

  .page_top_report_more .m_btn_round_txt {
    font-size: 16px;
    line-height: 1;
  }
}

@media screen and (min-width: 1440px) {
  .page_top_report .l_container {
    max-width: 1230px;
  }

  .page_top_report_ttl {
    margin-bottom: 72px;
  }

  /* PCカード */
  .page_top_report_card {
    border-radius: 16px;
  }

  .page_top_report_card_imgWrap {
    aspect-ratio: 390 / 220;
  }

  .page_top_report_card_meta {
    gap: 16px;
    margin-bottom: 16px;
  }

  .page_top_report_card_cat,
  .page_top_report_card_date,
  .page_top_report_card_link {
    font-size: 15px;
  }

  .page_top_report_card_txt {
    margin-bottom: 24px;
    font-size: 16px;
    -webkit-line-clamp: 3;
  }

  .page_top_report_more {
    margin-top: 72px;
  }
}

/* ======================================
  top businessport
====================================== */

.page_top_businessport {
  background: var(--white-color);
  /* overflow: hidden; */
  position: relative;
  z-index: 2;
  overflow: visible;
}

.page_top_businessport_inner {
  position: relative;
  overflow: visible;
}

.page_top_businessport_ttl {
  position: relative;
  margin-bottom: 64px;
  text-align: center;
  overflow: visible;
  z-index: 1;
}

.page_top_businessport_ttl .m_sec_ttl_head,
.page_top_businessport_ttl .m_sec_ttl_line,
.page_top_businessport_ttl .m_sec_sub_ttl {
  position: relative;
  z-index: 2;
}

.page_top_businessport_slider {
  margin-bottom: 64px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 16px 0;
  padding-left: 16px;
  overflow: hidden;
}

.page_top_businessport_slider .swiper-wrapper {
  align-items: flex-start;
  height: auto;
}

.page_top_businessport_slide {
  width: 232px;
}

.page_top_businessport_slide_img {
  display: block;
  width: 100%;
  aspect-ratio: 200 / 150;
  object-fit: cover;
  border-radius: 12px;
}

.page_top_businessport_slide_inner--top {
  transform: translateY(-12px);
}

.page_top_businessport_slide_inner--bottom {
  transform: translateY(12px);
}

.page_top_businessport_catch {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 32px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  text-align: left;
}

.page_top_businessport_body {
  text-align: left;
}

.page_top_businessport_txt {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: var(--black-color);
  letter-spacing: 0.02em;
}

.page_top_businessport_txt + .page_top_businessport_txt {
  margin-top: 12px;
}

.page_top_businessport_btn {
  margin-top: 48px;
  text-align: center;
}

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

@media screen and (min-width: 768px) {
  .page_top_businessport_ttl {
    margin-bottom: 72px;
  }

  .page_top_businessport_slider {
    margin-bottom: 72px;
    padding: 24px 0;
    padding-left: 24px;
  }

  .page_top_businessport_slide {
    width: 300px;
  }

  .page_top_businessport_slide_img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .page_top_businessport_slide_inner--top {
    transform: translateY(-20px);
  }

  .page_top_businessport_slide_inner--bottom {
    transform: translateY(20px);
  }

  .page_top_businessport_catch {
    margin: 0 auto 40px;
    font-size: 20px;
    max-width: 718px;
  }
  .page_top_businessport_body {
    max-width: 718px;
    align-items: center;
    margin: 0 auto;
  }

  .page_top_businessport_txt {
    font-size: 15px;
  }

  .page_top_businessport_txt + .page_top_businessport_txt {
    margin-top: 24px;
  }

  .page_top_businessport_btn {
    margin-top: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .page_top_businessport_slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 32px 0;
    overflow: hidden;
  }

  .page_top_businessport_slide {
    width: 400px;
    flex-shrink: 0;
  }

  .page_top_businessport_slide_img {
    display: block;
    width: 400px;
    height: 300px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 16px;
  }

  .page_top_businessport_slide_inner--top {
    transform: translateY(-32px);
  }

  .page_top_businessport_slide_inner--bottom {
    transform: translateY(32px);
  }

  .page_top_businessport_catch {
    margin-bottom: 48px;
    font-size: 26px;
    line-height: 1.6;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto 56px;
  }

  .page_top_businessport_body {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .page_top_businessport_txt {
    font-size: 16px;
  }

  .page_top_businessport_txt + .page_top_businessport_txt {
    margin-top: 32px;
  }

  .page_top_businessport_btn {
    margin-top: 64px;
  }

  .page_top_businessport_btn .m_btn_round {
    width: 280px;
    height: 56px;
    min-height: 56px;
    padding: 0;
  }
}

@media screen and (min-width: 1440px) {
  .page_top_businessport .l_container {
    max-width: calc(1230px + 32px);
  }

  .page_top_businessport_ttl {
    margin-bottom: 96px;
  }

  .page_top_businessport_slider {
    margin-bottom: 96px;
  }

  .page_top_businessport_catch {
    margin-bottom: 56px;
  }

  .page_top_businessport_txt {
    font-size: 18px;
  }

  .page_top_businessport_txt + .page_top_businessport_txt {
    margin-top: 40px;
  }

  .page_top_businessport_btn {
    margin-top: 72px;
  }
}

/* ======================================
  top contact
====================================== */
.page_top_contact {
  background: var(--white-color);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.page_top_contact_inner {
  position: relative;
  overflow: visible;
}

.page_top_contact_ttl {
  position: relative;
  margin-bottom: 64px;
  text-align: center;
  z-index: 2;
}

/* .page_top_contact_lead {
  margin-bottom: 24px;
  text-align: center;
} */

.page_top_contact_message_wrap {
  position: relative;
  max-width: 343px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .page_top_contact_message_wrap {
    max-width: 640px;
  }
}

@media screen and (min-width: 1440px) {
  .page_top_contact_message_wrap {
    max-width: 720px;
  }
}

.page_top_contact_quote--left {
  position: absolute;
  top: -40px;
  left: -2px;
  width: 40px;
  pointer-events: none;
}

.page_top_contact_quote--right {
  position: absolute;
  bottom: -40px;
  right: -2px;
  width: 40px;
  pointer-events: none;
  transform: rotate(180deg);
}

.page_top_contact_message {
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: var(--black-color);
  text-align: center;
}

.page_top_contact_message_strong {
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
}

.page_top_contact_txt {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: var(--black-color);
  text-align: center;
}

.page_top_contact_cta_list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 64px;
}

.page_top_contact_cta_item + .page_top_contact_cta_item {
  margin-top: 40px;
  padding-top: 40px;
  position: relative;
}

.page_top_contact_cta_item + .page_top_contact_cta_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 1px;
  background: #d9d9d9;
}

.page_top_contact_cta {
  text-align: center;
}

.page_top_contact_cta_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page_top_contact_cta_iconWrap {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}

.page_top_contact_cta_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--black-color);
  margin: 0;
}

.page_top_contact_cta_status {
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--primary-color);
}

.page_top_contact_notice {
  width: 100%;
  max-width: 311px;
  margin: 64px auto 0;
  padding: 20px 28px;
  background: var(--card-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 2px rgba(195, 195, 195, 0.5);
}

.page_top_contact_notice_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page_top_contact_notice_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  margin: 0;
}

.page_top_contact_notice_label {
  padding: 4px 12px;
  border-radius: 9999px;
  background: var(--primary-color);
  font-size: 12px;
  color: var(--white-color);
}

.page_top_contact_notice_txt {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
}

.page_top_contact_notice_follow {
  margin-bottom: 8px;
  font-size: 12px;
}

.page_top_contact_sns_list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page_top_contact_sns_link {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}

.page_top_contact_sns_link img {
  width: 32px;
  height: 32px;
}

@media screen and (min-width: 768px) {
  /* CTA全体 */
  .page_top_contact_cta_item + .page_top_contact_cta_item {
    margin-top: 0;
    padding-top: 0;
  }

  .page_top_contact_cta_item + .page_top_contact_cta_item::before {
    display: none;
  }

  .page_top_contact_cta_list {
    display: flex;
    justify-content: center;
    gap: 0px;
  }

  .page_top_contact_cta_item {
    width: 100%;
    max-width: 360px;
  }

  .page_top_contact_message {
    font-size: 15px;
  }

  .page_top_contact_txt {
    font-size: 15px;
  }

  .page_top_contact_cta {
    text-align: center;
  }

  .page_top_contact_cta_iconWrap {
    width: 48px;
    height: 48px;
  }

  .page_top_contact_cta_icon {
    width: 100%;
    height: 100%;
  }

  .page_top_contact_cta_ttl {
    font-size: 20px;
  }

  .page_top_contact_cta_status {
    margin-top: 8px;
    font-size: 14px;
  }

  .page_top_contact_cta_btn {
    margin-top: 24px;
  }

  .page_top_contact_cta_btn .m_btn_round {
    width: 258px;
    height: 56px;
    min-height: 56px;
    padding: 0;
  }

  .page_top_contact_cta_btn {
    display: flex;
    justify-content: center;
  }

  .page_top_contact_notice {
    max-width: 567px;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .page_top_contact_notice_head {
    gap: 20px;
  }

  .page_top_contact_notice_ttl {
    font-size: 18px;
  }

  .page_top_contact_notice_label {
    font-size: 14px;
  }

  .page_top_contact_notice_txt {
    margin-bottom: 0;
  }

  .page_top_contact_notice_left {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .page_top_contact_notice_right {
    text-align: center;
  }

  .page_top_contact_notice_follow {
    font-size: 14px;
  }

  .page_top_contact_sns_list {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
  }

  .br-contact-sp {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .page_top_contact_message {
    font-size: 16px;
  }

  .page_top_contact_txt {
    font-size: 16px;
  }

  .page_top_contact_quote--left {
    width: 62px;
  }
  .page_top_contact_quote--right {
    width: 62px;
  }

  .page_top_contact_cta_list {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1440px) {
  .page_top_contact_message {
    font-size: 18px;
  }

  .page_top_contact_txt {
    font-size: 18px;
  }
}

/* ======================================
  footer
====================================== */
.page_footer {
  background: var(--gray-color02);
}

.page_footer .l_contents {
  padding: 64px 0 40px;
}

.page_footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page_footer_nav_link {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--black-color);
  text-decoration: none;
}

.page_footer_divider {
  margin: 28px 0;
  height: 1px;
  background: #d8d3d3;
}

.page_footer_copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--black-color);
}

/* visited対策 */
.page_footer a,
.page_footer a:visited {
  color: var(--black-color);
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .page_footer_inner {
  margin: 0 40px;
}
}

/* PC */
@media screen and (min-width: 1080px) {
  .page_footer .l_contents {
    padding: 56px 0 48px;
  }

  .page_footer_nav_list {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .page_footer_nav_item {
    position: relative;
    padding: 0 20px;
  }

  .page_footer_nav_item:first-child {
    padding-left: 0;
  }

  .page_footer_nav_item:last-child {
    padding-right: 0;
  }

  .page_footer_nav_item + .page_footer_nav_item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 18px;
    background: #8f8f8f;
    transform: translateY(-50%);
  }

  .page_footer_nav_link {
    white-space: nowrap;
  }

  .page_footer_divider {
    margin: 48px 0 40px;
  }

  .page_footer_copy {
    text-align: center;
  }
}

@media screen and (min-width: 1440px) {
  .page_footer .l_container {
    max-width: 1296px;
  }
}

.page_footer a {
  color: var(--black-color);
  text-decoration: none;
}

.page_footer a:visited {
  color: var(--black-color);
}
/* ---------hover--------- */

.l_header_nav_link,
.page_footer_nav_link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
}

.l_header_nav_link::after,
.page_footer_nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.l_header_nav_link:hover::after,
.page_footer_nav_link:hover::after {
  transform: scaleX(1);
}

/* 通常（FV上）→ 白 */
.l_header_nav_link::after {
  background: var(--white-color);
}

/* スクロール後 → ピンク */
.l_header.is-scrolled .l_header_nav_link::after {
  background: var(--primary-color);
}

body.archive .l_header_nav_link::after {
  background: var(--primary-color);
}

.page_footer_link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

/* 下線 */
.page_footer_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary-color);

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.page_footer_link:hover::after {
  transform: scaleX(1);
}

.u_hover_fade {
  display: inline-block;
  transition: opacity 0.5s ease;
}

.u_hover_fade:hover {
  opacity: 0.7;
}

.m_voiceCard_sns_link:hover .m_voiceCard_sns_icon {
  opacity: 0.5;
}

.page_top_contact_sns_link:hover {
  opacity: 0.5;
}

.page_top_report_card:hover,
.page_top_report_card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.page_top_report_card:hover .page_top_report_card_img,
.page_top_report_card:focus-visible .page_top_report_card_img {
  transform: scale(1.05);
}

/* カードにホバー */
.page_top_report_card:hover .page_top_report_card_link,
.page_top_report_card:focus-visible .page_top_report_card_link {
  color: var(--accent-color);
}

.page_top_report_card:hover .page_top_report_card_link {
  color: var(--accent-color);
}

/* モーダルにホバー */
.m_modalVoice_sns_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.m_modalVoice_sns_link:hover,
.m_modalVoice_sns_link:focus-visible {
  opacity: 0.5;
}

.m_modalVoice_job_link {
  display: inline-block;
  color: #0025ef;
  text-decoration: none;
  opacity: 0.7;
}

.m_modalVoice_job_link:hover,
.m_modalVoice_job_link:focus-visible {
  opacity: 0.7;
}

.m_modalVoice_close:hover,
.m_modalVoice_close:focus-visible {
  opacity: 0.7;
}

.page_report_archive .l_header_nav_link::after {
  background-color: var(--primary-color);
}

/* ======================================
  report archive
====================================== */
.page_report_archive {
  background: var(--white-color);
}

/* --------------------------------------
  fv
-------------------------------------- */
.page_report_archive_fv {
  position: relative;
  z-index: 0;
  background: #fffaf9;
  height: clamp(303px, 32vw, 467px);
}

.page_report_archive_fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/img/background-pink.jpg") no-repeat center top /
    cover;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

.page_report_archive_fv .l_contents {
  padding: 0;
}

.page_report_archive_fv_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.page_report_archive_ttl {
  position: relative;
  text-align: center;
  margin: 32px 0 0 0;
  z-index: 1;
}

.page_report_archive_ttl .m_sec_ttl_head {
  justify-content: center;
}

/* まず共通 */
.m_sec_ttl_deco--report-top,
.m_sec_ttl_deco--report-bottom {
  position: absolute;
  pointer-events: none;
}

.page_report_archive .m_sec_ttl_silhouette--report,
.page_report_archive .m_sec_ttl_deco--report,
.m_sec_ttl_deco--pc {
  display: none;
}

.m_sec_ttl_deco--sp {
  display: block;
}

/* ------------------------------
  SP
------------------------------ */
.m_sec_ttl_deco--report-top.m_sec_ttl_deco--sp {
  top: 34px;
  left: -8px;
  width: clamp(70px, 22vw, 120px);
  transform: rotate(180deg);
  filter: saturate(3.6) hue-rotate(25deg);
}

.m_sec_ttl_deco--report-bottom.m_sec_ttl_deco--sp {
  right: -18px;
  bottom: 8px;
  width: clamp(70px, 22vw, 120px);
  transform: rotate(0deg);
  filter: saturate(3.6) hue-rotate(25deg);
}

/* ------------------------------
  900px以上
------------------------------ */
@media screen and (min-width: 900px) {
  .m_sec_ttl_deco--sp {
    display: none;
  }

  .m_sec_ttl_deco--pc {
    display: block;
  }

  .m_sec_ttl_deco--report-top.m_sec_ttl_deco--pc {
    top: 54px;
    left: -18px;
    width: clamp(180px, 22vw, 320px);
    transform: rotate(180deg);
  }

  .m_sec_ttl_deco--report-bottom.m_sec_ttl_deco--pc {
    right: -18px;
    bottom: 12px;
    width: clamp(180px, 22vw, 320px);
    transform: rotate(0deg);
  }
}
/* --------------------------------------
  contents
-------------------------------------- */
.page_report_archive_contents .l_contents {
  padding: 40px 0 64px;
}

.page_report_archive_inner {
  position: relative;
}

/* --------------------------------------
  category
-------------------------------------- */
.page_report_archive_category {
  margin-bottom: 40px;
}

.page_report_archive_category_ttl {
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  color: var(--black-color);
}

.page_report_archive_category_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  gap: 12px;
}

.page_report_archive_category_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 28px;
  padding: 10px 25px;
  border-radius: 9999px;
  background: var(--gray-color03);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  color: var(--black-color);
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.page_report_archive_category_link.is-current,
.page_report_archive_category_link[aria-current="page"] {
  background: var(--accent-color);
  color: var(--white-color);
}

.page_report_archive_category_link:hover,
.page_report_archive_category_link:focus-visible {
  opacity: 0.5;
  background-color: var(--accent-color);
}

@media screen and (min-width: 1080px) {
  .page_report_archive_category {
    margin-bottom: 64px;
  }
}

/* --------------------------------------
  list
-------------------------------------- */
.page_report_archive_list .page_top_report_item {
  width: 100%;
  height: 100%;
}

.page_report_archive_list .page_top_report_card_body {
  flex: 1;
}

.page_report_archive_list .page_top_report_card_link {
  margin-top: auto;
}

/* --------------------------------------
  pager
-------------------------------------- */
.page_report_archive_pager {
  margin-top: 40px;
}

.page_report_archive_pager .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page_report_archive_pager > .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page_report_archive_pager .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page_report_archive_pager .page-numbers a,
.page_report_archive_pager .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: var(--white-color);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  color: var(--gray-color);
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, opacity 0.3s ease;
}

.page_report_archive_pager .page-numbers .current {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white-color);
}

.page_report_archive_pager .page-numbers .prev,
.page_report_archive_pager .page-numbers .next {
  padding: 0 12px;
}

.page_report_archive_pager .page-numbers a:hover,
.page_report_archive_pager .page-numbers a:focus-visible {
  opacity: 0.8;
}

.page_report_archive_pager .page-numbers .dots {
  border: none;
  background: transparent;
  padding: 0;
  min-width: auto;
  height: auto;
}

/* --------------------------------------
  1080px
-------------------------------------- */
@media screen and (min-width: 1080px) {
  .page_report_archive_pager {
    margin-top: 56px;
  }

  .page_report_archive_pager > .page-numbers {
    gap: 12px;
  }

  .page_report_archive_pager .page-numbers a,
  .page_report_archive_pager .page-numbers span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
}

/* --------------------------------------
  1440px
-------------------------------------- */
@media screen and (min-width: 1440px) {
  .page_report_archive_pager {
    margin-top: 72px;
  }
}

/* 選択中 */
.page_report_archive_category_link.is-current {
  background-color: var(--accent-color);
  color: var(--white-color);
  font-weight: 700;
}

/* ======================================
  report archive: report card text override
====================================== */
.page_report_archive_list .page_top_report_card_txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  font-size: 14px;
}

/* ======================================
  report single
====================================== */
.page_report_single_main {
  background: var(--white-color);
  padding-top: 63px;
}

.page_report_single_main .l_contents {
  padding: 32px 0 80px;
}

.l_container-sm {
  width: min(100% - 32px, 600px);
  margin-inline: auto;
  padding: 0;
}

.page_report_single_inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1080px) {
  .l_container-sm {
    width: min(100% - 64px, 800px);
  }

  .page_report_single_main .l_contents {
    padding: 80px 0 120px;
  }
}

/* --------------------------------------
  meta
-------------------------------------- */
.page_report_single_meta {
  margin-bottom: 20px;
  display: block;
}

.page_report_single_meta_main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.page_report_single_cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 4px 8px;
  border-radius: 5px;
  background: var(--accent-color);
  font-size: 14px;
  color: var(--white-color);
}

.page_report_single_date {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--gray-color);
}

.page_report_single_author_label {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--black-color);
  margin-top: 16px;
}

.page_report_single_author_name {
  margin-left: 16px;
}

/* --------------------------------------
  title
-------------------------------------- */
.page_report_single_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--black-color);
  margin: 0;
  margin-bottom: 24px;
}

/* --------------------------------------
  eyecatch
-------------------------------------- */
.page_report_single_eyecatch {
  margin: 0;
}

.page_report_single_eyecatch {
  border-radius: 0;
  overflow: hidden;
}

.page_report_single_eyecatch_img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343 / 193;
  object-fit: cover;
  background: #ddd;
}

/* --------------------------------------
  body
-------------------------------------- */
.page_report_single_body {
  color: var(--black-color);
}

.page_report_single_body > p,
.page_report_single_section > p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-top: 20px;
}

.page_report_single_body > p + p,
.page_report_single_section > p + p {
  margin-top: 20px;
}

.page_report_single_section {
  margin-top: 64px;
}

.page_report_single_heading {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--primary-color);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--black-color);
  margin-bottom: 24px;
}

.page_report_single_imgWrap {
  margin: 0;
}

.page_report_single_img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343 / 193;
  object-fit: cover;
  background: #ddd;
}

@media screen and (min-width: 1080px) {
  .page_report_single_main {
    padding-top: 72px;
  }

  .page_report_single .l_contents {
    padding: 80px 0 120px;
  }

  .page_report_single_meta {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }

  .page_report_single_date {
    font-size: 16px;
    line-height: 1.8;
  }

  .page_report_single_body > p,
  .page_report_single_section > p {
    font-size: 16px;
    margin-top: 32px;
  }

  .page_report_single_body > p + p,
  .page_report_single_section > p + p {
    margin-top: 32px;
  }

  .page_report_single_author_label {
    font-size: 16px;
    margin-top: 0px;
  }

  .page_report_single_author_name {
    margin-left: 16px;
  }

  .page_report_single_cat {
    min-width: 85px;
    font-size: 16px;
  }

  .page_report_single_heading {
    font-size: 24px;
  }

  .page_report_single_ttl {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  .page_report_single_section {
    margin-top: 80px;
  }

  .page_report_single_authorBox {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1440px) {
  .page_report_single_ttl {
    font-size: 32px;
  }

  .page_report_single_heading {
    font-size: 26px;
  }
}

/* --------------------------------------
  author box
-------------------------------------- */
.page_report_single_authorBox {
  padding: 24px 16px;
  background-color: var(--card-color);
  border-radius: 8%;
  margin-top: 64px;
}

.page_report_single_authorBox_label {
  margin: 0 0 8px;
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.page_report_single_authorBox_inner {
  display: flex;
  flex-direction: column;
}

.page_report_single_authorBox_head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page_report_single_authorBox_icon {
  flex-shrink: 0;
  width: 42px;
}

.page_report_single_authorBox_icon_img {
  display: block;
  width: 100%;
  height: auto;
}

.page_report_single_authorBox_name {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--black-color);
  font-size: 14px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}

.page_report_single_authorBox_txt {
  margin: 8px 0 0;
  color: var(--black-color);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.page_report_single_authorBox_name {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

/* 屋号（リンク） */
.page_report_single_authorBox_brand {
  text-decoration: none;
  font-size: 14px;
  color: #0025ef;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 名前 */
.page_report_single_authorBox_person {
  font-size: 14px;
  color: var(--black-color);
}

@media screen and (min-width: 1080px) {
  .page_report_single_authorBox_label {
    font-size: 14px;
  }

  .page_report_single_authorBox_icon {
    width: 60px;
  }

  .page_report_single_authorBox_brand {
    font-size: 16px;
  }

  .page_report_single_authorBox_person {
    font-size: 16px;
    color: var(--black-color);
  }
  .page_report_single_authorBox_txt {
    font-size: 14px;
  }

  .page_report_single_authorBox_head {
    gap: 20px;
  }
}

/* --------------------------------------
  back button
-------------------------------------- */
.page_report_single_back {
  margin-top: 64px;
  text-align: center;
}

.page_report_single_back_btn.m_btn_round {
  width: 190px;
  min-height: 46px;
}

@media screen and (min-width: 1080px) {
  .page_report_single_back {
    margin-top: 80px;
  }
  .page_report_single_back_btn.m_btn_round {
    width: 280px;
    min-height: 56px;
  }
}

.m_breadcrumb {
  margin: 16px 0 0;
  font-size: 12px;
}

.m_breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0 0 0 16px;
}

.m_breadcrumb_item {
  display: flex;
  align-items: center;
}

/* 区切り */
.m_breadcrumb_item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: var(--gray-color);
}

/* リンク */
.m_breadcrumb_link {
  color: var(--black-color);
  text-decoration: none;
}

.m_breadcrumb_link:hover {
  text-decoration: underline;
}

/* 現在ページ */
.m_breadcrumb_item--current {
  color: var(--gray-color);
}

@media screen and (min-width: 1080px) {
  .m_breadcrumb {
    font-size: 14px;
  }

  .m_breadcrumb_list {
    margin-left: 32px;
  }
}

.page_report_single_body .wp-block-heading,
.page_report_single_body h2 {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--primary-color);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--black-color);
  margin: 64px 0 24px;
}

.page_report_single_body .wp-block-heading:first-child,
.page_report_single_body h2:first-child {
  margin-top: 0;
}

@media screen and (min-width: 1080px) {
  .page_report_single_body .wp-block-heading,
  .page_report_single_body h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .page_report_single_body .wp-block-heading,
  .page_report_single_body h2 {
    font-size: 26px;
  }
}

/* ======================================
  404
====================================== */
.page_404 {
  padding: 120px 0 80px;
}

.page_404_inner {
  text-align: center;
}

.page_404_sub {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--primary-color);
}

.page_404_ttl {
  margin-top: 12px;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.page_404_txt {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.page_404_btn {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .page_404 {
    padding: 88px 0 64px;
  }

  .page_404_sub {
    font-size: 13px;
  }

  .page_404_ttl {
    font-size: 24px;
  }

  .page_404_txt {
    margin-top: 20px;
    font-size: 15px;
  }

  .page_404_btn {
    margin-top: 32px;
  }
}

@media screen and (max-width: 500px) {
  .page_404_ttl {
    font-size: 22px;
  }
}

/* ここから追加 */
.l_header_nav_list > li {
  position: relative;
}

.l_header_nav_item--hasChild .l_header_nav_link {
  display: inline-flex;
  align-items: center;
}

.l_header_subNav {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 120px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l_header_nav_item--hasChild:hover .l_header_subNav {
  opacity: 1;
  visibility: visible;
}

.l_header_subNav_link {
  display: block;
  padding: 10px 16px;
  color: var(--primary-color);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
}

.l_header_subNav_link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
}

.l_header_nav_item.is-report .l_header_nav_link:hover::after {
  background: var(--primary-color);
}

body.blog .l_header_nav_link:hover::after,
body.single .l_header_nav_link:hover::after {
  background: var(--primary-color);
}

/* スマホ */
.l_header_menu_item--sub .l_header_menu_link {
  padding-left: 24px;
  font-size: 0.95em;
}

.l_header_menu_item--sub .l_header_menu_link::before {
  content: "■";
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 12px;
  vertical-align: middle;
}

.l_header_menu_item l_header_menu_item--sub {
  margin-top: 8px;
}
