@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 112.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, sans-serif;
  color: #1A1A1A;
  line-height: 1.7;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #0CBEDC;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}

.inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

.layout-two-column {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .layout-two-column {
    flex-direction: column;
  }
}

.main-column {
  flex: 1 1 auto;
}

.sidebar {
  flex: 0 0 320px;
}
@media (max-width: 768px) {
  .sidebar {
    flex: 1 1 auto;
  }
}

p {
  margin: 0 0 1.2em;
  line-height: 1.8;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1em;
  font-weight: 700;
}

h2 {
  font-size: 1.4rem;
  color: #1C4456;
  padding-bottom: 0.4em;
  position: relative;
  margin-top: 3rem;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-image: linear-gradient(to right, #0CBEDC 0, #0CBEDC 30%, #F1F1F1 30%, #F1F1F1 100%);
}

h3 {
  font-size: 1.1rem;
  color: #0CBEDC;
  margin-top: 2rem;
}

strong {
  font-weight: 700;
  background-image: linear-gradient(transparent 60%, #F5FF3D 60%);
}

ol {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}
ol li {
  margin-bottom: 0.4em;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

header div.logo-area {
  display: flex;
  align-items: center;
}
header div.logo-area h2 {
  color: #4a4a4a;
}
@media (max-width: 768px) {
  header div.logo-area {
    background-color: #0CBEDC;
    display: block;
  }
  header div.logo-area h1 {
    text-align: center;
    color: #fff;
  }
  header div.logo-area h2 {
    color: #fff;
  }
}

header.header-lower,
header.top-header {
  background-color: #fff;
  border-bottom: 1px solid #F1F1F1;
}
header.header-lower .inner,
header.top-header .inner {
  padding-block: 16px;
}
header.header-lower h1,
header.top-header h1 {
  font-size: 1.1rem;
  margin: 0;
}
header.header-lower h2,
header.top-header h2 {
  font-size: 0.85rem;
  color: #1A1A1A;
  padding: 0 32px;
  margin: 0;
}
header.header-lower h2::after,
header.top-header h2::after {
  display: none;
}

#globalnavi {
  background-color: #0CBEDC;
}
#globalnavi ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
#globalnavi li {
  margin: 0;
  padding: 10px 18px;
  position: relative;
  font-size: 1.2rem;
  border-right: 1px solid #54D3E9;
}
#globalnavi li a {
  color: #fff;
  text-decoration: none;
  padding-left: 10px;
  display: block;
}
#globalnavi li a:hover {
  opacity: 0.8;
}
#globalnavi .gnav-item {
  position: relative;
  margin: 0;
  padding: 0px 18px 0px 32px;
  font-size: 1rem;
  font-weight: bold;
}
#globalnavi .gnav-item a {
  color: #fff;
  text-decoration: none;
  display: block;
}
#globalnavi .gnav-item a:hover {
  opacity: 0.85;
}
#globalnavi .gnav-item a:hover::before {
  content: "";
  width: 80%;
  height: 2px;
  padding: 0px 0px;
  left: 10px;
  bottom: -4px;
  display: block;
  position: absolute;
  background-color: #F5FF3D;
  z-index: 0;
  transition: ease-in-out 0.2s;
}
#globalnavi .gnav-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#globalnavi .gnav-item-health::before {
  background-image: url("/common/images/icon-nav-health.svg");
}
#globalnavi .gnav-item-money::before {
  background-image: url("/common/images/icon-nav-money.svg");
}
#globalnavi .gnav-item-life::before {
  background-image: url("/common/images/icon-nav-life.svg");
}
#globalnavi .gnav-item-care::before {
  background-image: url("/common/images/icon-nav-care.svg");
}
#globalnavi .gnav-item-workstyle::before {
  background-image: url("/common/images/icon-nav-workstyle.svg");
}
#globalnavi .gnav-item-learning::before {
  background-image: url("/common/images/icon-nav-learning.svg");
}
#globalnavi .gnav-item-ending::before {
  background-image: url("/common/images/icon-nav-ending.svg");
}
#globalnavi .gnav-item-page::before {
  background-image: url("/common/images/icon-nav-page.svg");
}
@media (max-width: 768px) {
  #globalnavi ul {
    flex-direction: column;
  }
}

/* ============================
   スマホのハンバーガーボタン
   ============================ */
.hamburger {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 28px;
  z-index: 1000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  margin-bottom: 6px;
  background-color: #fff;
  transition: 0.3s;
}
.hamburger span:last-child {
  margin-bottom: 0;
}

/* ▼ 開いたときの「×」化（アニメーション付き） */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ============================
   グローバルナビ（SP時の挙動）
   ============================ */
@media (max-width: 768px) {
  #globalnavi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  /* PCのナビを非表示にしておく */
  #navi-content {
    display: none;
    background-color: #0CBEDC;
    padding-top: 60px;
  }
  /* active の時だけ出す */
  #globalnavi.open #navi-content {
    display: block;
  }
  /* ★ ハンバーガーボタン表示 */
  .hamburger {
    display: block;
  }
  /* ナビリストを縦方向に */
  #globalnavi ul {
    flex-direction: column;
    padding: 0 16px;
  }
  #globalnavi li {
    border-right: none;
    padding: 12px 0;
  }
}
.breadcrumb-navi {
  background-color: #F1F1F1;
  font-size: 0.8rem;
}
.breadcrumb-navi .inner {
  padding-block: 8px;
}
.breadcrumb-navi .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-navi .breadcrumb__list li {
  position: relative;
  padding-right: 16px;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb-navi .breadcrumb__list li::after {
  content: ">";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.7rem;
}
.breadcrumb-navi .breadcrumb__list li:last-child::after {
  content: "";
}
.breadcrumb-navi .breadcrumb__list a {
  color: #1A1A1A;
  text-decoration: none;
}
.breadcrumb-navi .breadcrumb__list a:hover {
  text-decoration: underline;
}

/* 汎用カードリスト（合わせて読みたい／新着／人気 共通） */
.relation-entrylist {
  margin: 0;
  /* カテゴリラベル */
  /* 画像 */
  /* テキスト部分 */
}
.relation-entrylist ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 24px;
}
@media (max-width: 768px) {
  .relation-entrylist ul {
    grid-template-columns: 1fr;
  }
}
.relation-entrylist li {
  height: 100%;
}
.relation-entrylist article {
  height: 100%;
}
.relation-entrylist a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  padding: 12px 12px 16px;
  text-decoration: none;
  color: #1A1A1A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.relation-entrylist a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.relation-entrylist .label.category {
  display: inline-block;
  margin: 4px 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #0CBEDC;
  color: #0CBEDC;
  font-size: 0.75rem;
}
.relation-entrylist .entry-image {
  margin: 0 0 10px;
}
.relation-entrylist .entry-image .inner {
  position: relative;
  padding-top: 66.66%;
  border-radius: 8px;
  overflow: hidden;
}
.relation-entrylist .entry-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.relation-entrylist .entry-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.relation-entrylist .entry-date {
  font-size: 0.8rem;
  color: #777;
  margin: 0 0 4px;
}
.relation-entrylist .entry-title {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  /* 2行で省略（3行にしたければ line-clamp:3 に変更） */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content--article {
  padding-block: 40px 60px;
}
@media (max-width: 768px) {
  .content--article {
    padding-block: 24px 40px;
  }
}

.article-entry {
  font-size: 1rem;
}

.article-header {
  margin-bottom: 24px;
}

.article-header-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.article-header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-category {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #0CBEDC;
  color: #0CBEDC;
  font-size: 0.8rem;
}

.article-header-date {
  color: #666;
  white-space: nowrap;
  margin: 0px;
}

.article-title {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #1A1A1A;
}
.article-title::after {
  display: none;
}
@media (max-width: 768px) {
  .article-title {
    font-size: 1.1rem;
  }
}

.article-header-author-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .article-header-author-share {
    flex-direction: column;
    align-items: flex-start;
  }
}

.article-author {
  display: flex;
  align-items: center;
  gap: 24px;
}
.article-author figure {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}

.article-author-avatar {
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-author-label {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0px;
}

.article-author-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.article-share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 16px 0;
  font-size: 14px;
  color: #333;
}
.article-share .share-buttons {
  display: flex;
  gap: 12px;
}
.article-share .share-buttons a {
  text-decoration: none;
}
.article-share .share-buttons img {
  width: 30px;
  height: 30px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.article-main-image {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
}
.article-main-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-content {
  font-size: 1rem;
  /* 調査概要ブロック（タイトル固定＋アイコン付き） */
  /* ------------------------------------------
     タイトルのアイコン部分（左側）
  ------------------------------------------- */
  /* ------------------------------------------
     タイトル文字（調査概要）＋点線
  ------------------------------------------- */
  /* ------------------------------------------
     dl / dt / dd
  ------------------------------------------- */
  /* スマホで縦並び */
  /* ============================================
     総括ブロック（タイトル固定・アイコン付き）
     ============================================ */
  /* ------------------------------------------
     アイコン（左側 before）
  ------------------------------------------- */
  /* ------------------------------------------
     タイトル文字「総括」（after）
  ------------------------------------------- */
  /* ------------------------------------------
     初めの段落の点線
  ------------------------------------------- */
  /* スマホ対応 */
  /* 共通のテーブルスタイル */
  /* 見出し（th） */
  /* 偶数行（ストライプ） */
  /* キャプション（表タイトル） */
  /* スマホ時のフォント・余白だけ調整 */
  /* -------------------------------
    横スクロール用ラッパー
    ------------------------------- */
}
.article-content img {
  max-width: 100%;
  border-radius: 4px;
}
.article-content .toc-block {
  margin: 24px 0;
  padding: 16px 30px 4px;
  border-radius: 4px;
  background-color: #E6FBFD;
  font-size: 0.95rem;
}
.article-content .toc-block .toc-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.article-content .toc-block ol.toc-list li a.toc-link {
  color: #1C4456;
}
.article-content .mv-image {
  text-align: center;
}
.article-content .mt-be-image img {
  margin: 0px auto;
}
.article-content .callout {
  margin: 2rem 0px;
}
.article-content .survey-outline {
  position: relative;
  margin: 32px 0;
  padding: 72px 36px 30px;
  border-radius: 8px;
  border: 1px solid #E6E6E6;
  background-color: #fff;
  background-image: url(/common/images/bg-dot-survey.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 480px auto;
}
@media (max-width: 768px) {
  .article-content .survey-outline {
    padding: 28px 16px 20px;
    background-size: 40% auto;
  }
}
.article-content .survey-outline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 38px;
  width: 22px;
  height: 22px;
  background-image: url("/common/images/icon-survey.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .article-content .survey-outline::before {
    top: 17px;
    left: 16px;
  }
}
.article-content .survey-outline::after {
  content: "調査概要";
  position: absolute;
  top: 25px;
  left: 68px;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0CBEDC;
}
@media (max-width: 768px) {
  .article-content .survey-outline::after {
    font-size: 1.1rem;
    top: 12px;
    left: 46px;
  }
}
.article-content .survey-outline__list {
  margin: 0;
  padding-top: 22px;
  border-top: 1px dotted #E6E6E6;
}
@media (max-width: 768px) {
  .article-content .survey-outline__list {
    padding-top: 16px;
    margin-top: 24px;
  }
}
.article-content .survey-outline__row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.article-content .survey-outline__row dt {
  margin: 0;
  font-weight: 700;
}
.article-content .survey-outline__row dd {
  margin: 0;
}
@media (max-width: 768px) {
  .article-content .survey-outline__row {
    flex-direction: column;
  }
}
.article-content .survey-summary {
  position: relative;
  margin: 32px 0;
  padding: 72px 36px 30px;
  border-radius: 4px;
  background-color: #FDFFEA;
}
.article-content .survey-summary::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 38px;
  width: 24px;
  height: 24px;
  background-image: url("/common/images/icon-summary.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.article-content .survey-summary::after {
  content: "総括";
  position: absolute;
  top: 24px;
  left: 76px;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1C4456;
  padding-bottom: 6px;
}
.article-content .survey-summary p:first-of-type {
  border-top: 1px dotted #1C4456;
  padding-top: 28px;
}
@media (max-width: 768px) {
  .article-content .survey-summary {
    padding: 28px 16px 20px;
  }
}
.article-content ul {
  margin: 1em;
  padding: 0;
  list-style: none;
}
.article-content ul li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 0.4em;
}
.article-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 999px;
  background-color: #FF5D8F;
  transform: translateY(-50%);
}
.article-content ul li p {
  margin: 0;
  padding: 0;
}
.article-content table {
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
  width: 100%;
}
.article-content th,
.article-content td {
  padding: 12px 16px;
  border: 1px solid #F1F1F1;
  text-align: left;
  vertical-align: top;
}
.article-content th {
  background-color: #E6FBFD;
  font-weight: 700;
  color: #1C4456;
  white-space: nowrap;
}
.article-content tbody tr:nth-child(odd) {
  background-color: #fafafa;
}
.article-content caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1C4456;
}
@media (max-width: 768px) {
  .article-content table {
    font-size: 0.9rem;
    border-color: #ccc;
  }
  .article-content th,
  .article-content td {
    padding: 10px 12px;
  }
}
.article-content .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.article-content .table-scroll table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .article-content .table-scroll table {
    min-width: 500px;
  }
}

.article-pager {
  display: flex;
  gap: 32px;
  margin: 40px 0 60px;
  padding: 16px 0px;
}
@media (max-width: 768px) {
  .article-pager {
    flex-direction: column;
  }
}

.article-pager-item {
  flex: 1 1 0;
}
.article-pager-item a {
  display: block;
  padding: 10px 12px;
  background-color: #fff;
  text-decoration: none;
  color: #1A1A1A;
  border-bottom: 1px solid #1C4456;
}

.article-pager-label {
  font-size: 0.95rem;
  color: #1C4456;
  margin-bottom: 4px;
  position: relative;
  font-weight: bold;
}

.article-pager-label-prev {
  padding-left: 1.4em;
}

.article-pager-label-next {
  padding-right: 1.4em;
  text-align: right;
}

.article-pager-item--prev .article-pager-label::before {
  content: "＜";
  position: absolute;
  left: 0;
  top: 0;
  color: #1C4456;
  font-weight: bold;
}

.article-pager-item--next .article-pager-label::after {
  content: "＞";
  position: absolute;
  right: 0;
  top: 0;
  color: #1C4456;
  font-weight: bold;
}

.article-pager-title {
  font-size: 0.8rem;
  margin-bottom: 0px;
}

.business-section {
  padding-block: 40px;
}
.business-section__body {
  flex: 1 1 auto;
  text-align: center;
}
.business-section__image {
  display: flex;
  gap: 32px;
}
.business-section__image img {
  max-width: 240px;
  height: fit-content;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .business-section__image {
    display: block;
  }
  .business-section__image img {
    max-width: 100%;
    margin-bottom: 16px;
  }
}
.business-section__title {
  font-size: 1.6rem;
  margin: 1rem 0;
  padding: 0;
}
.business-section__title::after {
  display: none;
}
@media (max-width: 768px) {
  .business-section__title {
    font-size: 1.1rem;
  }
}
.business-section__text {
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-align: left;
}
.business-section__actions {
  margin-top: 8px;
}
.business-section--blue {
  background-color: #E6FBFD;
}
@media (min-width: 1100px) {
  .business-section--blue {
    background-image: url(/common/images/bg-dot-white.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1700px auto;
  }
}
.business-section--white {
  background-color: #fff;
}
.business-section--gray {
  background-color: #F1F1F1;
}

.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-radius: 999px;
  background-color: #1C4456;
  color: #fff;
  font-size: 0.95rem;
  border: none;
  text-decoration: none;
  position: relative;
}
@media (min-width: 1100px) {
  .btn-round {
    min-width: 500px;
  }
  .btn-round::before, .btn-round::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 60px;
    height: 1px;
    background: #fff;
  }
  .btn-round::before {
    width: 60px;
    transform: translate(30px, 0px);
  }
  .btn-round::after {
    width: 15px;
    transform-origin: right center;
    transform: translate(30px, 0px) rotate(25deg);
  }
}
@media (max-width: 768px) {
  .btn-round {
    width: 98%;
  }
}
.btn-round:hover {
  opacity: 0.9;
  text-decoration: none;
}

footer {
  background-color: #1C4456;
  color: #fff;
}
footer .inner {
  padding-block: 32px 20px;
}
footer a {
  color: #fff;
}
footer section#footer-social {
  font-size: 0.9rem;
  opacity: 0.8;
}
footer .footer-top-container {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 16px;
}
footer .footer-bottom {
  background-color: #0CBEDC;
}
footer .footer-bottom-container {
  max-width: 1120px;
  margin-inline: auto;
  padding: 4px;
}
footer .footer-copyright {
  text-align: center;
  font-size: 0.8rem;
}

/*# sourceMappingURL=top.css.map */
