/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
/*
  base/utilities.css
  NOTE: 汎用的なユーティリティクラスを定義するファイル
        tailwindcssやbootstrapのようなユーティリティファーストなスタイルを実現するためのクラスを定義
        CSSフレームワーク導入時の切り替えを意識して、tailwindcssやbootstrapのクラス名を参考にしている
*/

/* layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.position-sticky {
  position: sticky;
  top: 106px;
}

.top-26-5 {
  top: 106px;
}

/* flexbox & grid */
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 16px;
}

/* spacing */
.p-0 {
  padding: 0;
}

.pt-2 {
  padding-top: 8px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.ps-6 {
  padding-left: 24px;
}

.pb-8 {
  padding-bottom: 32px;
}

.py-12 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.pb-20 {
  padding-bottom: 80px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 4px;
}

.ms-2 {
  margin-left: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mt-8 {
  margin-top: 32px;
}

/* sizing */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* typography */
.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.lh-170 {
  line-height: 1.7;
}

.text-neutral-60 {
  color: #666;
}

.text-orange-80 {
  color: #803500;
}

.text-danger {
  color: #d14250
}

.no-underline {
  text-decoration: none;
}

/* interactivity */
.cursor-pointer {
  cursor: pointer;
}
/*
  グローバルヘッダー
  /views/layouts/_header.html.erb に対するCSS
*/

/* ヘッダー */
.global_header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 88px;
  transition: transform 0.5s ease-in-out;
}

.global_header.hide {
  transform: translateY(-88px);
}

.global_header_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 32px;
  background-color: var(--color-white);
  border-bottom: 1px solid #ccc;
}

.global_header_logo_area {
  display: flex;
  align-items: center;
  gap: 0 24px;
}

.global_header_caption {
  color: #333;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

/* ナビ */
/* ログイン、登録ボタン */
.global_header_nav_buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 12px 0 2px;
}

.global_header_nav_buttons .red_button,
.global_header_nav_buttons .yellow_button {
  width: 130px;
  margin: 0;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1;
}

/* グローバルメニュー */
.global_header_nav_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
.global_header_nav.two_rows .global_header_nav_list {
  height: 44px;
}

.global_header_nav_list > li {
  height: 100%;
}

.global_header_nav_list .global_header_nav_list_link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

/* アコーディオン */
.global_header_nav_list_accordion {
  display: none;
  position: absolute;
  top: 88px;
  padding: 0;
  background-color: var(--color-white);
}

.global_header_nav_list_accordion li {
  padding: 0;
  border: 1px solid #c9c9c9;
  border-top: none;
  font-weight: normal;
}

.global_header_nav_list_accordion li a {
  display: block;
  padding: 16px 40px 16px 16px;
  color: inherit;
  text-decoration: none;
  min-width: 100%;
}

.global_header_nav_list_accordion li a:hover {
  background-color: var(--color-yellow);
}

/* アコーディオン アイコン */
.global_header_nav_list_accordion_mark {
  position: relative;
  padding: 0 15px 0 0;
  cursor: pointer;
}

.global_header_nav_list_accordion_mark:hover {
  opacity: 0.8;
  transition: 0.4s;
}

.global_header_nav_list_accordion_mark:after {
  content: '';
  position: absolute;
  top: 46%;
  right: 10px;
  border: 6px solid transparent;
  border-top: 8px solid var(--color-black);
}

.global_header_nav_list .global_header_nav_list_link:hover {
  background-color: var(--color-yellow);
}

.global_header_nav_list > li .global_header_nav_list_accordion_mark {
  padding: 0 30px 0 14px;
  white-space: nowrap;
}

/* タブレット用スタイル */
@media screen and (max-width: 1279.8px) {
  .global_header_inner {
    padding: 0 10px 0 24px;
  }

  .global_header_caption {
    display: none;
  }
}

@media screen and (max-width: 870px) {
  .global_header_logo_area .logo {
    width: 130px;
    height: auto;
  }
  .global_header_nav_list > li .global_header_nav_list_accordion_mark {
    padding: 0 24px 0 8px;
  }
  .global_header_nav_list .global_header_nav_list_link {
    padding: 0 8px;
  }
}

/* スマホ用スタイル */
@media screen and (max-width: 767.8px) {
  .global_header {
    /* TODO: 一時的にmain_tab_menuを非表示。方針が決まり次第修正 */
    /* height: 122px; */
    height: 60px;
  }
  .global_header.hide {
    transform: translateY(-122px);
  }

  .global_header_inner {
    justify-content: center;
    height: 60px;
    padding: 0 16px 2px;
  }

  .global_header_logo_area .logo {
    width: 114px;
    height: auto;
  }

  /* ログインボタン */
  .global_header_nav_list,
  .global_header_nav_buttons .red_button {
    display: none;
  }

  .global_header_nav_buttons {
    padding: 0;
  }
  .global_header_nav_buttons .yellow_button {
    position: absolute;
    right: 10px;
    top: 14px;
    width: 90px;
  }
}

@media screen and (max-width: 500px) {
  .global_header_nav_buttons .yellow_button {
    width: 76px;
  }
}

/* アカウントアイコン（PC） */
.global_header_nav_account_button {
  display: flex;
  align-items: center;
}

.global_header_nav_account_button .account_menu_btn {
  height: 56px;
  width: 56px;
  background-size: cover;
}

.global_header_nav_account_button .account_menu_btn.closed {
  padding: 15px;
  background-image: url(/images/closed_account_menu.png);
}

.global_header_nav_account_button .account_menu_btn.open {
  background-image: url(/images/open_account_menu.png);
}

/* アカウントアイコン（SP） */
.global_header_inner .account_menu_btn_small {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

.global_header_inner .account_menu_btn_small img {
  width: 56px;
  height: 56px;
}

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

/* アカウントメニュー */
.global_header .account_menu {
  position: absolute;
  width: 100%;
  background-color: #fff;
  right: 0px;
  top: 0px;
  z-index: 9999;
  display: none;
}

@media screen and (min-width: 1280px) {
  .global_header .account_menu {
    width: 332px;
    right: 24px;
    top: auto;
    box-shadow: 0px 0px 12px 6px #cccccc, 0px 6px 12px 6px #cccccc;
  }
}

.global_header .account_menu .account_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}

.global_header .account_menu .account_title .text {
  font-weight: 500;
  font-size: 16px;
}

.global_header .account_menu .account_info {
  display: none;
}

@media screen and (min-width: 1280px) {
  .global_header .account_menu .account_info {
    display: block;
    height: 100px;
    border-bottom: solid 1px #c3c3c3;
    padding-left: 28px;
    padding-top: 24px;
  }
}

.global_header .account_menu .account_info .name {
  font-weight: 500px;
  font-size: 16px;
}

.global_header .account_menu .account_info .email {
  font-weight: 400px;
  font-size: 13px;
  color: #8f8f8f;
  padding-top: 8px;
}

.global_header .account_menu .account_menu_list {
  margin: 0 39.5px;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 1280px) {
  .global_header .account_menu .account_menu_list {
    margin: 0 18px;
  }
}

.global_header .account_menu .account_menu_list li {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #c3c3c3;
  font-size: 14px;
  height: 64px;
}

@media screen and (min-width: 1280px) {
  .global_header .account_menu .account_menu_list li {
    font-size: 14px;
  }
}

.global_header .account_menu .account_menu_list li:first-child {
  border-top: solid 1px #c3c3c3;
}

.global_header .account_menu .account_menu_list li:last-child {
  border-bottom: none;
}

.global_header .account_menu .account_menu_list a {
  color: #333333;
  text-decoration: none;
}

.global_header .account_menu .account_menu_list img {
  height: 20px;
  width: 20px;
  margin: 0 12px;
}

/* ハンバーガー（ボタン） */
#saha_hamburger_toggle {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  z-index: 1100;
}

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

#saha_hamburger_toggle_box {
  position: relative;
  width: 20px;
  height: 18px;
  cursor: pointer;
}

#saha_hamburger_toggle_box > span {
  width: 100%;
  height: 1.5px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: transform 0.7s ease-in-out;
}

#saha_hamburger_toggle_box > span:nth-child(1) {
  top: 0;
}

#saha_hamburger_toggle_box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#saha_hamburger_toggle_box > span:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニュークリックで、「×」マークにアニメーション */
.hamburger_is_open #saha_hamburger_toggle_box > span {
  background: #000;
}

.hamburger_is_open #saha_hamburger_toggle_box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.hamburger_is_open #saha_hamburger_toggle_box > span:nth-child(2) {
  width: 0;
}

.hamburger_is_open #saha_hamburger_toggle_box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

/* 中身メニュー、初期は非表示 */
#saha_hamburger_nav_content {
  position: fixed;
  top: 0;
  left: 0;
  nav-right: 0;
  z-index: 950;
  display: block;
  overflow: auto;
  width: 70%;
  height: 100%;
  background: var(--color-white);
  transform: translateX(-150%);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

ul.saha_hamburger_menu_list {
  display: block;
  width: 100%;
  padding-top: 30px;
  padding-left: 30px;
  list-style: none;
  font-size: 1.1rem;
}

.saha_hamburger_menu_list > li {
  color: var(--color-black);
}

ul.saha_hamburger_category_children {
  display: block;
  width: 100%;
  padding-left: 20px;
  list-style: none;
  color: #ffffff;
}

#saha_hamburger_nav_content li a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 20px 0 0;
  margin: 0;
  transition: opacity 0.6s ease;
}

#saha_hamburger_nav_content a span {
  display: block;
  font-size: 0.6em;
}

#saha_hamburger_nav_content a:hover {
  opacity: 0.6;
}

.saha_hamburger_menu_link_buttons {
  margin-top: 40px;
  text-align: center;
}

/* is-openクラスが追加されると、メニューが表示される */
.hamburger_is_open {
  overflow: hidden;
}

.hamburger_is_open #saha_hamburger_nav_content {
  z-index: 999;
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}

.hamburger_is_open #saha_hamburger_nav_content a {
  pointer-events: auto;
}

.hamburger_is_open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

.saha_hamburger_category_parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.saha_hamburger_category_parent.active {
  padding-bottom: 5px;
  border-bottom: 1px solid #ffffff;
}

.saha_menu_arrow {
  transition: all 0.2s;
}

.saha_menu_arrow.active {
  transform: rotate(-90deg);
}

ul.saha_hamburger_category_children {
  display: none;
}

ul.saha_hamburger_category_children.show {
  display: block;
}

#saha_hamburger_overlay,
#saha_account_menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 透明度が0.5の黒 */
  z-index: 900; /* メニューよりも手前に表示 */
  display: none; /* 初期状態では非表示 */
}

.hamburger_is_open #saha_hamburger_overlay {
  display: block; /* メニューが開いたときに表示 */
}

.global_header.account_menu_open #saha_account_menu_overlay {
  display: block;
}

.global_header.account_menu_closed #saha_account_menu_overlay {
  display: none;
}

@media screen and (min-width: 1280px) {
  .global_header.account_menu_open #saha_account_menu_overlay,
  .global_header.account_menu_closed #saha_account_menu_overlay {
    display: none;
  }
}

/* アカウントメニュー */
.global_header .account-menu {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  right: 0px;
  top: 52px;
  z-index: 9999;
  display: none;
}

@media screen and (min-width: 768px) {
  .global_header .account-menu {
    width: 320px;
    /* height: 424px; ゴクラクポイント実装時こちらを適応*/
    height: 368px;
    right: 24px;
    top: auto;

    border-radius: 8px;
    background: var(--Color-Neutral-0, #fff);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  }
}

.menu-list-area {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 24px 24px 8px 24px;
  flex-direction: column;
  list-style-type: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: var(--letter-spacing-300, 0.02px);
}

.menu-list-area li {
  display: flex;
  height: 56px;
  padding: 16px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-bottom: 1px solid var(--Color-Border-Default, #b2b2b2);
}

.menu-list-area li:last-child {
  border-bottom: none;
}

.menu-list-area img {
  width: 20px;
  height: 20px;
}

.menu-list-area a {
  text-decoration: none;
  color: var(--Color-Content-High-Emphasis, #000);
}
/*
  SP時に表示される、上部のタブメニュー
  /views/layouts/_main_tab_menu.html.erb に対するCSS
*/

.main_tab_menu {
  display: flex;
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 8px 3px;
  background-color: var(--color-white);
  border-top: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  transition: transform 0.5s ease-in-out;
}
.main_tab_menu.hide{
  transform: translateY(-122px);
}

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

.main_tab_menu .main_tab_menu_list {
  width: calc(100% / 5);
  list-style: none;
  border-right: 1px solid #c3c3c3;
}

.main_tab_menu .main_tab_menu_list:last-child {
  border-right: none;
}

.main_tab_menu .main_tab_menu_list svg {
  height: 30px;
}

.main_tab_menu .main_tab_menu_list .main_tab_menu_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.main_tab_menu .main_tab_menu_list .main_tab_menu_link span {
  display: flex;
  align-items: center;
  height: calc(2em * 1.2 + 2px);
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
}

.main_tab_menu_link.active svg path,
.main_tab_menu_toggle.active svg path {
  fill: #ffd600;
}

.main_tab_menu_toggle {
  position: relative;
  cursor: pointer;
}

.main_tab_menu_toggle .main_tab_menu_link :hover {
  opacity: 0.8;
  transition: 0.4s;
}

.main_tab_menu_toggle_accordion {
  display: none;
  position: absolute;
  min-width: 100%;
  margin-top: 1px;
  background-color: var(--color-white);
}

.main_tab_menu_toggle_accordion ul {
  padding: 0;
}

.main_tab_menu_toggle_accordion ul li {
  font-size: 14px;
  list-style: none;
}

.main_tab_menu_toggle_accordion ul li {
  margin: 0 -1px;
  border: 1px solid #cdcdcd;
  border-top: none;
}

.main_tab_menu_toggle_accordion ul li a {
  display: block;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.main_tab_menu_toggle_accordion ul li a:hover {
  background-color: var(--color-yellow);
}
/*
  paginationに対するCSS
*/
.pagination {
  text-align: center;
}

.pagination .prev {
  margin-right: 16px;
}

.pagination .next {
  margin-left: 16px;
}

.pagination .page {
  padding: 0 8px 0;
}

.pagination .page a {
  text-decoration: none;
  color: #6BAFFF;
}

.pagination .prev a,
.pagination .next a {
  color: inherit;
  text-decoration: none;
}
/*
  新着のクチコミ 関連のスタイル
  /views/reviews/_review_index.html.erb と配下、wrap要素に対するCSS
  /views/index/index.html.erb TOPページの新着のクチコミに対するCSS
*/

/* 新着の口コミ wrap要素のスタイル */
.review-area {
  display: flex;
  flex-direction: column;
  gap: 48px 0;
  width: 95%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .review-area {
    gap: 24px 0;
  }
}

/*
  /views/reviews/_review_index.html.erb
  /views/index/index.html.erb
*/
.review-no-post {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .review-no-post {
    font-size: 14px;
  }
}

.review-card-area {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-gap: 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  border: 4px solid var(--color-button-yellow);
  background: #fff;
}

/*
  web/app/views/reviews/_review_card_inner.html.erb
*/
/* レイアウト */
.review-card-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 24px 24px 16px;
}

/* ロゴ */
.review-card-tenant-logo {
  height: 40px;
  text-align: center;
}

.review-card-tenant-logo img {
  max-width: 200px;
  max-height: 40px;
}

/* 星レビュー（上部） */
.review-evaluation {
  display: flex;
  align-items: center;
}

.review-evaluation .evaluation_fivestars {
  margin: 0 -1px;
  font-size: 0;
  line-height: 1;
}

.review-evaluation .evaluation_star{
  width: 16px;
  height: auto;
  margin: 0 1px;
  vertical-align: bottom;
}

.review-evaluation .evaluation_star{
  width: 24px;
  height: auto;
  margin: 0 1px;
  vertical-align: bottom;
}

.review-evaluation .evaluation_star img {
  width: 16px;
  height: 14px;
  font-size: 0;
  line-height: 1;
}

.review-evaluation .evaluation_fivestars_value {
  margin: 0 0 0 8px;
  font-weight: bold;
  line-height: 24px;
}

/* レビュータイトル */
.review-card-headline {
  display: flex;
  align-items: center;
  margin: 0;
  min-height: 47.5px;
  margin-top: -6px;
  font-size: 14px;
  line-height: 1.7;
  word-break: break-all;
}

/* レビュー本文 */
.review-card-content {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}


.review-card.desctop .review-card-content{
  text-align: justify; /* iOS では ellipsis と相性が悪いのでPCに限定 */
}

.review-card-content.unregistered {
  overflow: hidden;
}

.review-card-content.unregistered span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}

/* 投稿者インフォメーション、日付 */
.review-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.review-card-user-info {
  display: flex;
  align-items: center;
}

.review-card-user-info > img {
  width: 40px;
  height: auto;
  margin-right: 16px;
}

.review-card-user-info-name {
  margin: 0 0 6px;
  font-size: 12px;
}

.review-card-user-info-age {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.review_card_post_status {
  margin: 10px 0 3px 0;
  font-size: 13px;
  font-weight: bold;
  color: #ec1f1f;
}

.review_card_post_status.approval {
  color: #333333;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

/* 星レビュー詳細（下部） */
.review-card-review-detail {
  padding: 24px;
  border-top: 1px solid var(--color-button-yellow);
  background: #F7F4E9;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 0 0 8px 8px;
}

.review-card-edit-button.yellow_button {
  margin-top: 12px;
  font-size: 13px;
}


/*
  web/app/views/reviews/_review_detail.html.erb
*/
.review-card-review-detail-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.saha_library_detail_article_title {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 700px) {
  .saha_library_detail_article_title {
    margin: 15px 0;
    font-size: 22px;
  }
}

.article_body_container {
  font-size: 16px;
  line-height: 1.7;
}

#ez-toc-container {
  width: 100%;
  margin: 15px 0;
}

.ez-toc-page-1 {
  list-style: disc;
}

.ez-toc-link {
  display: block;
  padding: 0 0 10px 0;
  font-size: 15px;
  text-decoration: none;
}

.article_body_container th,
.article_body_container td {
  border: 1px solid #000;
  padding: 1px 5px;
  font-size: 14px;
}

.article_body_container a {
  color: #419cf0;
  text-decoration: none;
}

.article_body_container > br {
  display: none;
}

.article_body_container ol,
.article_body_container ul {
  background-color: #f8f8f8;
  padding: 8px 32px;
}

.article_body_container blockquote {
  background-color: #f8f8f8;
  padding: 8px;
}

.article_body_container .counter-hierarchy {
  width: 90%;
  padding: 10px;
  margin: 0 auto;
  border: 1px solid #bbbbbb;
  border-radius: 8px;
}

@media screen and (min-width: 700px) {
  .article_body_container .counter-hierarchy {
    width: 100%;
    padding: 10px;
  }
}

.article_body_container .counter-hierarchy br {
  display: none;
}

.article_body_container .counter-hierarchy ul {
  list-style: none;
  padding-left: 20px;
}

@media screen and (min-width: 700px) {
  .article_body_container .counter-hierarchy ul {
    font-size: 0.75rem;
    padding-left: 10px;
  }
}

.article_body_container .counter-hierarchy nav > ul {
  max-height: 300px;
  padding: 20px;
  background: #f8f8f8;
  overflow-y: scroll;
}

@media screen and (max-width: 700px) {
  .article_body_container .counter-hierarchy nav > ul {
    max-height: 200px;
  }
}

.article_body_container .counter-hierarchy nav > ul::-webkit-scrollbar {
  width: 8px;
}

.article_body_container .counter-hierarchy nav > ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #acacac;
}

.article_body_container .counter-hierarchy nav > ul > .ez-toc-page-1 > .ez-toc-link {
  font-weight: bold;
}

.article_body_container h2 {
  padding: 5px 0 5px 12px;
  background: #f9e87e;
  font-size: 19px;
  margin: 20px 0 10px;
}

@media screen and (min-width: 700px) {
  .article_body_container h2 {
    font-size: 22px;
    margin: 30px 0 10px;
  }
}

.article_body_container h2 br {
  display: none;
}

.article_body_container h3 {
  padding: 0 0 5px 10px;
  border-left: solid 10px #f9e87e;
  border-bottom: solid 2px #f9e87e;
  font-size: 18px;
  margin: 20px 0 10px;
}

@media screen and (min-width: 700px) {
  .article_body_container h3 {
    font-size: 20px;
    margin: 30px 0 10px;
  }
}

.article_body_container h4 {
  position: relative;
  font-size: 16px;
  margin: 20px 0 10px;
}

@media screen and (min-width: 700px) {
  .article_body_container h4 {
    font-size: 18px;
  }
}

.article_body_container h4:after {
  position: absolute;
  content: '';
  display: block;
  width: calc(100% + 5px);
  border-bottom: solid 1px #666666;
  bottom: -2px;
  left: 0;
}

.article_body_container h5 {
  padding: 5px 0px;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0.67em 0;
}

.article_body_container h5:before {
  content: '';
  width: 1.1em;
  height: 1.1em;
  border: 4px solid #e6d555;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.article_body_container h6 {
  padding: 5px 0px;
  font-size: 1em;
  margin: 0.67em 0;
}

.article_body_container img {
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
}

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

@media screen and (min-width: 700px) {
  .article_body_container table {
    font-size: 0.75rem;
  }
}

.description {
  padding: 10px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  justify-content: left;
}

.description_content_right {
  justify-content: right;
}

.text-image,
.text-image-w {
  width: 180px !important;
}

@media screen and (min-width: 700px) {
  .text-image,
  .text-image-w {
    width: 90px !important;
  }
}

.text-image-w {
  float: right;
}

.description-image .text-image,
.description-image .text-image-w {
  width: 90px !important;
}

.description-text,
.description-text-w {
  float: left;
  position: relative;
  margin: 5px 0px;
  padding: 10px;
  border: 2px solid #aaa;
  border-radius: 0.5em;
  background: #fff;
  word-wrap: break-word;
}

.description-text {
  margin-left: 24px;
}

.description-text-w {
  margin-right: 24px;
}

.description-text:before,
.description-text-w:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
}

.description-text:before {
  border-right: 10px solid #aaa;
  left: -22px;
}

.description-text-w:before {
  border-left: 10px solid #aaa;
  right: -22px;
}

.description-text:after,
.description-text-w:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
}

.description-text:after {
  border-right: 10px solid #fff;
  left: -19px;
}

.description-text-w:after {
  border-left: 10px solid #fff;
  right: -19px;
}

.balloon-over {
  position: relative;
  padding: 20px;
  background-color: #ead432;
  display: inline-block;
  margin-top: 20px;
}

.balloon-over::before {
  content: '';
  position: absolute;
  left: 20px;
  top: -15px;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ead432;
  border-left: 15px solid transparent;
}

.video_iframe_wrap {
  position: relative;
  width: 100%;
  margin: 2rem auto;
  border-radius: 10px;
  overflow: hidden;
}

.video_iframe_wrap:before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.video_iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* 光るボタン */
@keyframes shinyButton{
  0% {
      transform: scale(0) rotate(25deg);
      opacity: 0;
  }
  50% {
      transform: scale(1) rotate(25deg);
      opacity: 1;
  }
  100% {
      transform: scale(50) rotate(25deg);
      opacity: 0;
  }
}

.maxbutton.maxbutton-rimawari {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: #fdd84c;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 0px 0px rgb(213, 172, 126, .8);
}

.maxbutton.maxbutton-rimawari:after{
  content: "";
  position: absolute;
  transition: .2s;
  animation: 2s ease-in-out infinite shinyButton;
  left: -50px;
  width: 30px;
  height: 100%;
  background: #fff;
}

@media screen and (min-width: 700px) {
  .maxbutton.maxbutton-rimawari {
    margin: 0 auto;
  }
}

.maxbutton.maxbutton-rimawari .mb-text {
  color: #343434;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .maxbutton.maxbutton-rimawari .mb-text {
    font-size: 1em;
  }
}
.saha_confirmation {
  padding: 0 0 30px 0;
}

.saha_confirmation_form_wrapper {
  margin: 0 0 10px 0;
  padding: 10px 20px 30px;
  background-color: var(--color-background-yellow);
  border: 1px solid var(--color-border-yellow);
  border-radius: 10px;
}

.saha_confirmation_form_input_title {
  display: inline;
  margin: 10px 0 0 0;
  font-size: 13px;
}

.saha_confirmation_form_input {
  padding: 5px;
  width: 100%;
  border: 1px solid #bbbbbb;
}

.saha_confirmation_form_birthday_select_box {
  border: 1px solid #bbbbbb;
}

.saha_confirmation_form_input_wrapper {
  margin: 25px auto 0;
}

.saha_confirmation_form_input_wrapper:first-child {
  margin: 0 auto 0;
}

/* キャラクター選択エリア */
.confirmation_character_icon_wrapper {
  margin: 0 0 10px 0;
  padding: 10px;
  background-color: #fafafa;
  border-radius: 10px;
}

.confirmation_character_icon_wrapper_inner {
  max-width: 360px;
  margin: 0 auto;
}

.confirmation_character_icon_text {
  display: inline;
  font-size: 14px;
}

.confirmation_character_icon_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 0 0 0;
}

.confirmation_character_icon_radio_button {
  display: none;
}

.confirmation_character_icon_inner input[type='radio']:checked + label .confirmation_character_icon_image {
  border-radius: 10px;
  background-color: #ffe432;
}

.confirmation_character_icon_image {
  margin: 0 0 15px 0;
  cursor: pointer;
}

.confirmation_character_icon_image:hover {
  border-radius: 10px;
  background-color: #ffe432;
}

@media screen and (min-width: 700px) {
  .saha_confirmation_form_input_wrapper {
    width: 60%;
    margin: 25px auto;
  }
}
.fund_list {
  padding: 130px 0 30px 0;
}

@media screen and (min-width: 700px) {
  .fund_list {
    padding: 85px 0 30px 0;
  }
}

@media screen and (min-width: 1340px) {
  .fund_list {
    padding: 35px 0 30px 0;
  }
}

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

.filter_fund_select_box_inner {
  position: relative;
  display: inline;
}

.filter_fund_select_box select {
  width: 90px;
  margin: 5px 0 0;
  padding: 5px;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  background-color: #fff;
  color: #343434;
  font-size: 13px;
  appearance: none;
  cursor: pointer;
}

.filter_fund_select_box_tenant select {
  width: 253px;
  margin: 5px 0 0;
  padding: 5px;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  background-color: #fff;
  color: #343434;
  font-size: 13px;
  appearance: none;
  cursor: pointer;
}

@media screen and (min-width: 700px) {
  .filter_fund_select_box_tenant select {
    width: 487px;
  }
}

.filter_fund_select_box_inner::before,
.filter_fund_select_box_inner::after {
  position: absolute;
  right: 10px;
  width: 15px;
  height: 8px;
  background-color: #bbbbbb;
  content: '';
  pointer-events: none;
}

.filter_fund_select_box_inner::before {
  top: calc(50% - 9px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 700px) {
  .filter_fund_select_box_inner::before {
    top: calc(50% - 10px);
  }
}

.filter_fund_select_box_inner::after {
  bottom: calc(50% - 9px);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

@media screen and (min-width: 700px) {
  .filter_fund_select_box_inner::after {
    bottom: calc(50% - 8px);
  }
}

@media screen and (min-width: 700px) {
  .filter_fund_select_box_inner::after {
    right: 8;
  }
}

@media screen and (min-width: 700px) {
  .filter_fund_select_box select {
    width: 200px;
  }
}

.filter_fund_select_box_text {
  margin: 7px 10px 0 10px;
}

@media screen and (min-width: 700px) {
  .list_card_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.fund_detail_card {
  display: block;
  margin: 15px 0 0 0;
  background-color: var(--color-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 700px) {
  .fund_detail_card {
    width: 31%;
    margin: 15px 1% 0;
  }
}

.wrap_fund_detail_card_logo {
  text-align: left;
  padding-top: 18px;
  margin: 0 8px;
}

@media screen and (max-width: 700px) {
  .wrap_fund_detail_card_logo {
    padding-top: 22px;
  }
}

.fund-and-tenant .fund_list_card_item .wrap_fund_detail_card_logo {
  padding: 10px 60px;
}

.fund_detail_card_logo {
  width: 100%;
  height: 40px;
  object-fit: contain;
}

.fund_detail_card_caption {
  display: flex;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 40px;
  width: 100%;
  align-items: center;
}

.toppage .fund_detail_card_caption {
  margin-top: 0;
  align-items: center;
}

.list_card_wrapper.show .tenant_product_fund_detail_card .fund_detail_card_caption {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .fund_detail_card_caption {
    height: 28px;
  }
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .fund_detail_card_caption {
    height: 24px;
  }
}

.list_card_fund_status_label {
  display: inline-block;
  padding: 2px 25px 2px 8px;
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 82.5% 100%);
  background-color: var(--color-yellow);
  width: 120px;
  height: 40px;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .list_card_fund_status_label {
    font-size: 12px;
    line-height: 24px;
    height: 28px;
    width: 72px;
  }
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .list_card_fund_status_label {
    text-align: left;
    padding: 0 0 0 16px;
    font-size: 12px;
    width: 72px;
    height: 28px;
    line-height: 24px;
  }
}

.list_card_fund_method_label,
.list_card_fund_pr_label {
  text-align: center;
  display: inline-block;
  color: #343434;
  font-size: 14px;
  border: 1px solid #bbbbbb;
  width: 80px;
  height: 29px;
  line-height: 29px;
  border-radius: 20px;
  margin-top: 4px;
}

.toppage .list_card_fund_method_label,
.toppage .list_card_fund_pr_label {
  margin-top: 0;
}

.toppage .list_card_fund_pr_label {
  margin-left: auto;
  margin-right: 8px;
  font-size: 12px;
  width: 28px;
  height: 18px;
  line-height: 18px;
  background-color: var(--color-yellow);
  border: none;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .list_card_fund_method_label {
    height: 23px;
    width: 64px;
    line-height: 22px;
    font-size: 12px;
    margin-top: 0px;
  }

  .toppage .list_card_fund_pr_label {
    font-size: 8px;
    width: 24px;
    height: 16px;
    line-height: 16px;
  }
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .list_card_fund_method_label {
    height: 20px;
    line-height: 18px;
    width: 56px;
    font-size: 10px;
    margin-top: 2px;
  }

  .toppage .list_card_wrapper.show .list_card_fund_method_label {
    margin-top: 0;
  }
}

.wrap_fund_detail_card_content .fund_name {
  text-align: left;
  margin: 8px;
  margin-top: 16px;
  background-color: #fff8ca;
  font-size: 16px;
  height: 43px;
  line-height: 33px;
  width: 388px;
  padding: 6px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 840px) {
  .wrap_fund_detail_card_content .fund_name {
    font-size: 14px;
    line-height: 30px;
    height: 40px;
    width: 100%;
    margin: 8px 0;
    padding: 6px 8px;
  }
}

.wrap_fund_detail_card_content {
  display: inline-block;
}

@media screen and (max-width: 840px) {
  .wrap_fund_detail_card_content {
    width: 100%;
  }
}

.fund_detail_card_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 8px;
  margin: 0 16px;
}

.library_sidebar .fund_detail_card_content {
  margin: 0;
  padding: 0 5px 10px;
}

@media screen and (max-width: 700px) {
  .fund_detail_card_content {
    padding-top: 0;
    margin: 0;
  }
}

.fund_detail_card_content_left {
  position: relative;
  width: 49%;
}

.fund_detail_card_content_right {
  text-align: center;
  width: 46%;
}

@media screen and (max-width: 700px) {
  .fund_detail_card_content_right {
    text-align: center;
    width: 49%;
  }
}

.fund_detail_card_content_right .list_card_status_headline {
  font-size: 12px;
}

@media screen and (max-width: 700px) {
  .fund_detail_card_content_right .list_card_status_headline,
  .fund_detail_card_content_left .list_card_status_headline {
    font-size: 12px;
  }
}

.fund_detail_card_content_right .list_card_status_value {
  font-size: 16px;
}

.fund_detail_card_content_left .list_card_status_value_s {
  margin: 0 0 5px 0;
  font-size: 14px;
}

@media screen and (max-width: 700px) {
  .fund_detail_card_content_left .list_card_status_value_s {
    font-size: 12px;
  }
}

.fund_detail_card_content_left .list_card_block_area {
  text-align: center;
}

.fund_detail_card .red_button {
  width: 100%;
}

.no_fund_text {
  padding: 120px 0;
  text-align: center;
}

.fund_new_review {
  position: relative;
}

.tenant_product {
  padding: 65px 0 40px 0;
}

.tenant_product_management_company_card {
  background-color: var(--color-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 0 10px 5px 10px;
}

.tenant_product_management_company_card_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.funds_link_yellow_button {
  display: block;
  width: 130px;
  margin: 10px 0;
  padding: 5px 10px;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  border: none;
  color: var(--color-black);
  background-color: var(--color-yellow);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 700px) {
  .funds_link_yellow_button {
    width: 200px;
    font-size: 16px;
  }
}

.tenant_product_management_company_detail {
  text-align: left;
  margin-top: 16px;
  font-size: 16px;
}

@media screen and (max-width: 700px) {
  .tenant_product_management_company_detail {
    font-size: 14px;
    margin: 0;
  }
}

.fund_ranking_card_content_right {
  text-align: center;
  width: 49%;
}

.fund_ranking_card_content_right .list_card_status_headline {
  font-size: 13px;
}

.ranking_list_card_block_area {
  padding: 0 0 1px 0;
}

.ranking_list_card_flex_area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px;
}

.ranking_list_card_flex_area_item {
  width: 50%;
}

.ranking_list_card_flex_area_item:first-child {
  border-right: 1px solid #646464;
}
.fund-and-tenant {
  max-width: 1280px;
  margin: auto;
  margin-top: 32px;
  text-align: center;
}

.fund-and-tenant.show {
  padding-bottom: 48px;
}

/* @media screen and (max-width: 700px) {
  .fund-and-tenant.show {
    padding-left: 12px;
    padding-right: 12px;
  }
} */

.fund-and-tenant .wrap-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 24px;
  align-items: center;
}

.fund-and-tenant .wrap-title.sp {
  display: none;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .wrap-title {
    display: none;
  }

  .fund-and-tenant .wrap-title.sp {
    display: flex;
    justify-content: space-around;
  }

  .fund-and-tenant.show .wrap-title.sp {
    justify-content: space-between;
  }
}

.fund-and-tenant .wrap-title h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .wrap-title h1,
  .fund-and-tenant .wrap-title h2 {
    font-size: 16px;
    font-weight: 700;
  }
}

.fund-and-tenant .wrap-title .boarder {
  width: 250px;
  height: 1px;
  background-color: #333333;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .wrap-title .boarder {
    width: 80px;
  }
}

.fund-and-tenant .search_area {
  text-align: left;
  clear: both;
  margin-bottom: 24px;
  margin-top: 42px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area {
    margin-top: 24px;
  }
}

.fund-and-tenant .search_area form {
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 0px;
  align-items: center;
  min-height: 72px;
  padding: 11px 16px;
}

.fund-and-tenant .tenant.search_area form {
  flex-wrap: nowrap;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area form {
    border: none;
    gap: 26px 0px;
  }

  .fund-and-tenant #tenant_content .search_area form {
    justify-content: space-between;
  }
}

.fund-and-tenant .search_area .wrap-total-count {
  margin-right: 32px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant #tenant_content .search_area .wrap-total-count {
    margin-right: 0;
  }
}

.fund-and-tenant .fund.search_area .wrap-total-count {
  order: 1;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .fund.search_area .wrap-total-count {
    margin-right: 21px;
  }

  .fund-and-tenant .tenant.search_area .wrap-total-count {
    margin-right: 14px;
  }
}

.fund-and-tenant .search_area .total-count {
  font-size: 24px;
  font-weight: 700;
}

.fund-and-tenant .search_area .total-count-unit {
  font-size: 14px;
  font-weight: 700;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .total-count,
  .fund-and-tenant .search_area .total-count-unit {
    font-size: 12px;
    font-weight: 400;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box {
  position: relative;
  margin-right: 32px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box {
    margin-right: 0;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box.sort::before,
.fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq::before,
.fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq::before,
.fund-and-tenant .search_area .user_favorite_search_select_box.tenant_id_in::before,
.fund-and-tenant .search_area .user_favorite_search_select_box.tenant_name::before {
  position: absolute;
  text-align: center;
  font-size: 11px;
  background-color: #ffffff;
}

.fund-and-tenant .search_area .user_favorite_search_select_box.sort::before {
  width: 52px;
  height: 16px;
  left: 16px;
  top: -12px;
  content: '並び替え';
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box.sort::before {
    display: none;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box.tenant_name::before {
  width: 66px;
  height: 16px;
  left: 16px;
  top: -12px;
  content: '事業者名検索';
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box.tenant_name::before {
    display: none;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq::before {
  width: 55px;
  height: 16px;
  left: 16px;
  top: -22px;
  content: '利回り下限';
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq::before {
    display: none;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq::before {
  width: 55px;
  height: 16px;
  left: 16px;
  top: -22px;
  content: '利回り上限';
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq::before {
    display: none;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box.tenant_id_in::before {
  width: 66px;
  height: 16px;
  left: 16px;
  top: -22px;
  content: '事業者名検索';
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box.tenant_id_in::before {
    display: none;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box::after {
  position: absolute;
  right: 16px;
  width: 15px;
  height: 8px;
  background-color: #49454f;
  content: '';
  pointer-events: none;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box::after {
    width: 12px;
    height: 5px;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box::after {
  bottom: calc(50% - 4px);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.fund-and-tenant .search_area .user_favorite_search_select_box select {
  width: 252px;
  height: 40px;
  padding: 5px 16px;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  background-color: #fff;
  color: #49454f;
  font-size: 16px;
  appearance: none;
  cursor: pointer;
}

.fund-and-tenant .fund.search_area .user_favorite_search_select_box.sort {
  order: 2;
}

.fund-and-tenant .search_area .user_favorite_search_select_box.sort select {
  width: 180px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box.sort select {
    width: 160px;
    height: 32px;
    font-size: 12px;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box.sort.tenant select,
.fund-and-tenant .search_area .user_favorite_search_select_box.tenant_name select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 300px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box.sort.tenant select,
  .fund-and-tenant .search_area .user_favorite_search_select_box.tenant_name select {
    width: 144px;
    font-size: 12px;
    height: 32px;
  }

  .fund-and-tenant .search_area .user_favorite_search_select_box.sort.tenant select {
    margin-right: 14px;
  }

  .fund-and-tenant #tenant_content .user_favorite_search_select_box.sort.tenant select {
    margin-right: 0;
  }

  .fund-and-tenant #tenant_content .user_favorite_search_select_box.sort.tenant,
  .fund-and-tenant #tenant_content .user_favorite_search_select_box.tenant_name {
    width: 154px;
  }

  .fund-and-tenant #tenant_content .user_favorite_search_select_box.sort.tenant select,
  .fund-and-tenant #tenant_content .user_favorite_search_select_box.tenant_name select {
    padding: 2px 12px 0px 12px;
  }
}

.fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq,
.fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq,
.fund-and-tenant .search_area .user_favorite_search_select_box.tenant_id_in {
  margin-right: 0px;
}

.fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq select,
.fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq select,
.fund-and-tenant .search_area .user_favorite_search_select_box.tenant_id_in select {
  width: 300px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq select,
  .fund-and-tenant .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq select,
  .fund-and-tenant .search_area .user_favorite_search_select_box.tenant_id_in select {
    width: 140px;
    font-size: 12px;
  }

  .fund-and-tenant .search_area .user_favorite_search_select_box.tenant_id_in select {
    width: 100%;
  }
}

.user_favorite_search_select_box_text {
  display: inline-block;
  width: 52px;
  text-align: center;
}

/* @media screen and (max-width: 700px) {
  .user_favorite_search_select_box_text {
    display: none;
  }
} */

@media screen and (max-width: 700px) {
  .filter_inner.expected_yield_per_year_gteq {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 700px) {
  .fund-and-tenant .search_area .user_favorite_search_select_box select {
    width: 200px;
  }
}

.fund-and-tenant .search_area .check-box-group {
  display: flex;
}

.fund-and-tenant .fund.search_area .check-box-group {
  order: 3;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .fund.search_area .check-box-group {
    order: 4;
  }
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .check-box-group {
    overflow-x: scroll;
  }
}

.fund-and-tenant .search_area .wrap-check-box.inline {
  display: inline;
}

.fund-and-tenant .search_area .wrap-check-box label {
  margin-right: 8px;
}

.fund-and-tenant .search_area .wrap-check-box label input {
  display: none;
}

.fund-and-tenant .search_area .wrap-check-box label span.check-box-content {
  text-align: center;
  display: inline-block;
  color: #bbbbbb;
  font-size: 14px;
  border: 1px solid #bbbbbb;
  height: 40px;
  width: 123px;
  border-radius: 20px;
  padding: 5px 20px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .wrap-check-box label span.check-box-content {
    font-size: 12px;
    height: 32px;
    width: 80px;
    padding: 1px 0;
  }
}

.fund-and-tenant .search_area .wrap-check-box label input:checked + .check-box-content {
  color: #333333;
  background: rgba(254, 218, 21, 0.3);
  border: 1px solid rgba(254, 218, 21, 0.3);
}

.fund-and-tenant .search_area .wrap-check-box label .check-box-content span {
  display: inline-block;
  line-height: 28px;
}

.fund-and-tenant .search_area .wrap-check-box label .check-box-content .check-mark {
  position: relative;
  top: -4px;
  content: '';
  width: 12px;
  height: 5px;
  border-left: 2px solid #bbbbbb;
  border-bottom: 2px solid #bbbbbb;
  transform: rotate(-45deg);
  margin-right: 8px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .wrap-check-box label .check-box-content .check-mark {
    margin-right: 4px;
  }
}

.fund-and-tenant .search_area .wrap-check-box label input:checked + .check-box-content .check-mark {
  border-left: 2px solid #333333;
  border-bottom: 2px solid #333333;
}

.fund-and-tenant .search_area .toggle_advanced_search_btn {
  background-color: transparent;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #493536;
  border: none;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .search_area .toggle_advanced_search_btn {
    font-size: 12px;
  }
}

.arrow-right {
  display: inline-block;
  height: 12px;
  width: 12px;
  background-image: url(/images/arrow-right.svg);
}

@media screen and (max-width: 700px) {
  .arrow-right {
    display: none;
  }
}

.fund-and-tenant .tab-content {
  position: relative;
  text-align: left;
  display: none;
  clear: both;
  top: 24px;
}

.fund-and-tenant .tabs {
  margin-top: 42px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .tabs {
    margin-top: 16px;
  }
}

.fund-and-tenant .tabs .tab_item {
  width: 160px;
  height: 55px;
  background-color: #d3d3d3;
  line-height: 55px;
  text-align: center;
  color: #646464;
  display: block;
  float: left;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .tabs .tab_item {
    width: 50%;
  }
}

.fund-and-tenant .tabs .tab_item.tenant {
  margin: 0px 8px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .tabs .tab_item.tenant {
    margin: 0;
  }
}

.fund-and-tenant .tabs input[name='tab_item'] {
  display: none;
}

.fund-and-tenant .tabs input:checked + .tab_item {
  background-color: #ffffff;
  color: #8c8c8c;
  border: 1px solid;
  border-top-color: #b5b5b5;
  border-right-color: #b5b5b5;
  border-bottom-color: #ffffff;
  border-left-color: #b5b5b5;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .tabs input:not(:checked) + .tab_item {
    border-bottom: 1px solid #b5b5b5;
  }
}

.fund-and-tenant .tabs .checked-tab-boarder,
.fund-and-tenant .tabs .tenant-checked-tab-boarder {
  background-color: #b5b5b5;
  height: 1px;
  position: relative;
  top: 55px;
}

.fund-and-tenant .tabs .checked-tab-boarder {
  margin-left: 0px;
  width: 168px;
}

.fund-and-tenant .tabs .tenant-checked-tab-boarder {
  margin-left: calc(160px + 8px + 160px);
  width: calc(100% - (160px + 8px + 160px));
}

.fund-and-tenant .tabs #fund:checked ~ .checked-tab-boarder {
  margin-left: 160px;
  width: calc(100% - 160px);
}

.fund-and-tenant .tabs #fund:checked ~ .tenant-checked-tab-boarder {
  display: none;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .tabs .checked-tab-boarder,
  .fund-and-tenant .tabs .tenant-checked-tab-boarder {
    display: none;
  }
}

.fund-and-tenant .tabs .checked-tab-underline {
  display: none;
  position: relative;
  top: -33px;
  z-index: 999;
  background-color: #f6ac0e;
  height: 3px;
  width: 80%;
}

.fund-and-tenant .tabs #fund:checked + .tab_item.fund .checked-tab-underline,
.fund-and-tenant .tabs #tenant:checked + .tab_item.tenant .checked-tab-underline {
  display: inline-block;
}

.fund-and-tenant .search_area .wrap_advanced_search_form {
  position: relative;
  margin-left: auto;
}

.fund-and-tenant .fund.search_area .wrap_advanced_search_form {
  order: 4;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .fund.search_area .wrap_advanced_search_form {
    order: 3;
  }
}

.fund-and-tenant .advanced_search_form {
  width: 700px;
  height: 278px;
  position: absolute;
  right: -16px;
  top: 0;
  margin-top: 42px;
  display: none;
  z-index: 99;
  box-shadow: 0px 0px 12px 6px #cccccc, 0px 24px 12px 6px #cccccc;
  background-color: #ffffff;
}

.fund-and-tenant .advanced_search_form .filter_inner {
  background-color: #ffffff;
}

.fund-and-tenant .advanced_search_form .cancel_button,
.fund-and-tenant .advanced_search_form .submit_button {
  height: 40px;
  width: 123px;
  border: none;
  font-size: 14px;
  color: #333333;
}

.fund-and-tenant .advanced_search_form .cancel_button {
  background-color: #ffffff;
}

.fund-and-tenant .advanced_search_form .submit_button {
  background: rgba(254, 218, 21, 0.3);
  border-radius: 20px;
  padding: 5px 20px;
}

.fund-and-tenant .advanced_search_form .search_icon {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin-right: 8px;
  background-image: url(/images/search_icon.svg);
}

.fund-and-tenant .advanced_search_form .button_area {
  text-align: right;
}

.fund-and-tenant .fund_list_card_wrapper,
.fund-and-tenant .tenant_list_card_wrapper,
.recommend_funds_page .fund_list_card_wrapper {
  min-height: 316px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  padding: 0 0 30px 0;
}

@media screen and (min-width: 700px) {
  .fund-and-tenant .fund_list_card_wrapper,
  .fund-and-tenant .tenant_list_card_wrapper,
  .recommend_funds_page .fund_list_card_wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .fund_list_card_wrapper,
  .fund-and-tenant .tenant_list_card_wrapper,
  .recommend_funds_page .fund_list_card_wrapper {
    justify-content: center;
  }
}

.fund-and-tenant .fund_list_card_wrapper a,
.fund-and-tenant .tenant_list_card_wrapper a,
.recommend_funds_page .fund_list_card_wrapper a {
  color: #343434;
  text-decoration: none;
}

.fund-and-tenant .fund_list_card_item,
.fund-and-tenant .tenant_list_card_item,
.recommend_funds_page .fund_list_card_item {
  display: block;
  background-color: var(--color-white);
  width: 408px;
  height: 432px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .fund_list_card_item,
  .fund-and-tenant .tenant_list_card_item,
  .recommend_funds_page .fund_list_card_item {
    width: 100%;
    min-width: 360px;
    height: 382px;
    margin: 0 16px;
  }
}

.fund-and-tenant .fund_list_card_item,
.recommend_funds_page .fund_list_card_item {
  height: 100%;
}

.fund-and-tenant .tenant_list_card_item {
  height: 393px;
  padding: 16px;
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .tenant_list_card_item {
    height: auto;
  }
}

.favorite-icon {
  display: inline-block;
  height: 38px;
  width: 38px;
  margin-left: auto;
  margin-right: 8px;
  margin-top: 1px;
  background-size: cover;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .favorite-icon {
    height: 20px;
    width: 20px;
    margin-top: 2px;
  }

  .toppage .list_card_wrapper.show .favorite-icon {
    margin-top: 0px;
  }
}

.favorite,
.not_favorite {
  height: 24px;
  width: 24px;
  background-size: contain;
  margin-top: 0px;
}

@media screen and (max-width: 700px) {
  .favorite,
  .not_favorite {
    height: 18px;
    width: 18px;
  }
}

.favorite {
  background-image: url(/images/favorite.png);
}

.not_favorite {
  background-image: url(/images/not_favorite.png);
}

.wrap_paginate {
  width: 100%;
}

.list_card_wrapper .wrap_favorite_icon {
  display: flex;
  margin-left: auto;
  align-items: center;
}

.list_card_wrapper .wrap_favorite_icon .favorite {
  margin-top: 0px;
}

.list_card_wrapper.show .favorited_text {
  margin-top: 0px;
  padding-top: 0px;
  margin-right: 21px;
  color: #333333;
  font-size: 14px;
}

.list_card_wrapper.show .tenant_product_fund_detail_card {
  height: 524px;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .favorited_text {
    font-size: 10px;
  }

  .list_card_wrapper.show .tenant_product_fund_detail_card .favorited_text {
    margin-right: 7px;
  }

  .list_card_wrapper.show .tenant_detail_card .favorited_text {
    margin-right: 0;
  }
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show {
    flex-wrap: wrap;
    margin: 0;
    margin-top: 0 !important;
    margin-bottom: 28px;
    gap: 12px 12px;
  }
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .list_card,
  .list_card_wrapper.show .list_card {
    width: 48%;
  }
}

.list_card_wrapper.show .wrap_tenant_product_fund_detail_card_logo {
  display: block;
  margin-top: 20px;
  margin-left: 20px;
  text-align: left;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .wrap_tenant_product_fund_detail_card_logo {
    margin-top: 8px;
    margin-left: 16px;
  }
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .tenant_product_fund_detail_card {
    height: auto;
  }
}

.list_card_wrapper.show .tenant_product_fund_detail_card_logo {
  height: 30px;
  object-fit: contain;
  padding: 0;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .tenant_product_fund_detail_card_logo {
    height: 40px;
  }
}

.list_card_wrapper.show .tenant_product_fund_detail_card_caption {
  text-align: left;
  margin: 16px 20px;
  background-color: #fff8ca;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  padding: 0 8px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .tenant_product_fund_detail_card_caption {
    width: auto;
    margin: 8px 16px;
    font-size: 14px;
    padding: 8px;
    height: 40px;
    line-height: 26px;
  }
}

.list_card_wrapper.show .tenant_product_fund_detail_card_content {
  padding: 0 20px;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .tenant_product_fund_detail_card_content {
    padding: 0 16px;
  }
}

.list_card_wrapper.show .list_card_image {
  height: 315px;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .list_card_image {
    height: 120px;
    width: 100%;
  }
}

.fund-and-tenant.show .red_button.lg,
.fund-and-tenant.show .funds_link_yellow_button {
  max-width: 300px;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  margin: 10px auto 5px;
}

.tenant_show.show .red_button.lg {
  margin-top: 64px;
  margin-bottom: 100px;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .red_button {
    font-size: 14px;
    width: 160px;
  }

  .fund-and-tenant.show .funds_link_yellow_button,
  .tenant_outline.show .red_button.lg {
    margin-bottom: 48px;
    margin-top: 28px;
  }

  .tenant_show.show .red_button.lg {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}

.list_card_wrapper.show .list_card_status_headline {
  font-size: 16px;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .list_card_status_headline {
    font-size: 12px;
  }

  .list_card_wrapper.show .list_card_status_headline.offer_amount {
    font-size: 12px;
    padding-top: 12px;
  }
}

.list_card_wrapper.show .list_card_status_value {
  font-size: 20px;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .list_card_status_value {
    font-size: 16px;
  }
}

.list_card_wrapper.show .list_card_status_value_s {
  font-size: 20px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .list_card_status_value_s {
    font-size: 14px;
  }

  .list_card_wrapper.show .tenant_product_fund_detail_card_footer_left .list_card_status_value_s {
    font-size: 12px;
    -webkit-line-clamp: 2;
    margin-top: 4px;
    margin-bottom: 28px;
  }
}

.list_card_wrapper.show .list_card_flex_area,
.list_card_wrapper.show .list_card_block_area {
  padding: 10px;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .list_card_flex_area,
  .list_card_wrapper.show .list_card_block_area {
    padding: 8px 0;
  }
  .list_card_wrapper.show .list_card_block_area.sp_only {
    padding-bottom: 0;
  }
}

.list_card_wrapper.show .list_card_flex_area.pt-0 {
  padding-top: 0px;
}

.list_card_wrapper.show .section_headline {
  font-size: 20px;
  font-weight: 600;
  margin-top: 80px;
}

@media screen and (max-width: 700px) {
  .tenant_product_handling_fund .section_headline {
    margin-top: 0px;
  }
}

.tenant_outline_inner {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 15px 0;
  padding: 18px;
  background-color: var(--color-white);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  text-align: left;
}

@media screen and (max-width: 700px) {
  .tenant_outline_inner {
    font-size: 14px;
  }
}

.tenant_outline.show .red_button,
.tenant_outline.show .funds_link_yellow_button {
  font-size: 16px;
  font-weight: 700;
  min-width: 260px;
}

.tenant_product_handling_fund .list_card_wrapper.show .wrap_list_card_image,
.tenant_product_handling_fund .list_card_wrapper.show .list_card_image,
.toppage_offering_fund .list_card_wrapper.show .wrap_list_card_image,
.toppage_offering_fund .list_card_wrapper.show .list_card_image,
.toppage_tenant .list_card_wrapper.show .wrap_list_card_image,
.toppage_tenant .list_card_wrapper.show .list_card_image {
  height: 170px;
}

@media screen and (max-width: 700px) {
  .toppage_tenant .list_card_wrapper.show .list_card_image,
  .toppage_tenant .list_card_wrapper.show .wrap_list_card_image,
  .toppage_offering_fund .list_card_wrapper.show .wrap_list_card_image,
  .toppage_offering_fund .list_card_wrapper.show .list_card_image {
    height: 99px;
  }
}
.tenant_product_handling_fund .list_card_wrapper.show .list_card_status_headline,
.toppage_offering_fund .list_card_wrapper.show .list_card_status_headline,
.toppage_tenant .list_card_wrapper.show .list_card_status_headline {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 700px) {
  .tenant_product_handling_fund .list_card_wrapper.show .list_card_status_headline,
  .toppage_offering_fund .list_card_wrapper.show .list_card_status_headline,
  .toppage_tenant .list_card_wrapper.show .list_card_status_headline {
    font-size: 10px;
  }
}

.tenant_product_handling_fund .list_card_wrapper.show .list_card_status_value,
.toppage_offering_fund .list_card_wrapper.show .list_card_status_value,
.toppage_tenant .list_card_wrapper.show .list_card_status_value {
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 700px) {
  .tenant_product_handling_fund .list_card_wrapper.show .list_card_status_value,
  .toppage_offering_fund .list_card_wrapper.show .list_card_status_value,
  .toppage_tenant .list_card_wrapper.show .list_card_status_value {
    font-size: 14px;
  }
}

.tenant_product_handling_fund .list_card_wrapper.show .list_card_logo_box_image,
.toppage_offering_fund .list_card_wrapper.show .list_card_logo_box_image,
.toppage_tenant .list_card_wrapper.show .list_card_logo_box_image {
  height: 40px;
  object-fit: contain;
}

@media screen and (max-width: 700px) {
  .tenant_product_handling_fund .list_card_wrapper.show .list_card_logo_box_image,
  .toppage_offering_fund .list_card_wrapper.show .list_card_logo_box_image,
  .toppage_tenant .list_card_wrapper.show .list_card_logo_box_image {
    height: 16px;
    object-fit: contain;
  }
}

.wrap_fund_link_btn {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.fund-and-tenant.show .fund_link_btn {
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
}

.list_card_logo_box.tenant {
  display: flex;
  align-items: center;
  padding-bottom: 26px;
}

.toppage_tenant_of_interest .list_card_logo_box.tenant {
  padding: 0px;
  margin-bottom: 10px;
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .list_card_logo_box.tenant {
    margin: 12px 0;
  }
}

.toppage_tenant_of_interest .list_card_logo_box.tenant .list_card_logo_box_image {
  height: 40px;
  max-height: 40px;
  object-fit: contain;
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .list_card_logo_box.tenant .list_card_logo_box_image {
    height: 25px;
    max-height: 25px;
    width: 108px;
  }
}

.toppage_tenant_of_interest .list_card_logo_box.tenant .favorite,
.toppage_tenant_of_interest .list_card_logo_box.tenant .not_favorite {
  height: 24px;
  width: 24px;
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .list_card_logo_box.tenant .favorite,
  .toppage_tenant_of_interest .list_card_logo_box.tenant .not_favorite {
    height: 16px;
    width: 16px;
  }
}

@media screen and (max-width: 700px) {
  .list_card_logo_box.tenant {
    padding-bottom: 18px;
  }
}

.list_card_logo_box.tenant .list_card_logo_box_image {
  margin-left: 8px;
  vertical-align: 0;
}

.list_card_logo_box.tenant .favorite-icon {
  margin-top: 0;
}

.related_information {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.related_information section {
  display: block;
  width: 48%;
  max-width: 624px;
}

@media screen and (max-width: 700px) {
  .related_information section {
    width: 100%;
  }
}

.related_information section .content {
  height: 546px;
  padding: 40px;
  background-color: var(--color-white);
  text-decoration: none;
  color: inherit;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}

@media screen and (max-width: 700px) {
  .related_information section .content {
    height: auto;
    padding: 8px;
  }
}

.related_information section .section_headline {
  margin: 0;
}

.related_information section .tenant_product_management_company_card,
.related_information section .tenant_outline_inner {
  box-shadow: none;
}

.related_information section .tenant_product_management_company_card_logo {
  margin-top: 20px;
}

@media screen and (max-width: 700px) {
  .related_information section .tenant_product_management_company_card_logo {
    margin-top: 0px;
  }
}

@media screen and (min-width: 700px) {
  .related_information section .section_headline:before,
  .related_information section .section_headline:after {
    content: '';
    width: 120px;
  }
}

@media screen and (max-width: 700px) {
  .fund-and-tenant .section_first_headline {
    margin-top: 8px;
  }
}

.fund-and-tenant .not_found_text {
  padding: 0 16px;
}

.fund_new_review .section_first_headline {
  margin-top: 48px;
}

.tenant_product_new_review .section_first_headline {
  margin-top: 48px;
}

@media screen and (max-width: 700px) {
  .cover_tenant {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* リファクタリング */
/* 検索エリア */

.search-area {
  margin: 0 auto;
  width: 1264px;
}

@media screen and (max-width: 1270px) {
  .search-area {
    width: 836px;
  }
}

@media screen and (max-width: 840px) {
  .search-area {
    width: 740px;
  }
}

@media screen and (max-width: 767px) {
  .search-area {
    width: 360px;
  }
}

.search-area form {
  display: flex;
  align-items: center;
  gap: 0 32px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 11px 16px;
}

@media screen and (max-width: 767px) {
  .search-area form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: none;
    background: #fff;
    padding: 12px 16px;
    gap: 24px 0;
  }

  .tenant.search-area form {
    flex-wrap: nowrap;
    gap: 0 12px;
  }
}

.total-count-area {
  width: 61px;
  display: flex;
  align-items: flex-end;
  order: 1;
}

.total-count {
  font-family: 'Noto Sans JP';
  font-size: 24px;
  font-weight: 700;
}

.total-count-unit {
  font-family: 'Noto Sans JP';
  font-size: 14px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .total-count-area {
    width: 40px;
  }

  .total-count,
  .total-count-unit {
    font-size: 12px;
    font-weight: 400;
  }
}

.search-select-box {
  position: relative;
  width: 200px;
  order: 2;
}

.search-select-box select {
  height: 40px;
  padding: 5px 16px;
  border: 1px solid #c3c3c3;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  appearance: none;
  cursor: pointer;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  width: 200px;
}

.search-select-box::before {
  position: absolute;
  text-align: center;
  font-size: 11px;
  background-color: #ffffff;
}

.search-select-box.sort::before {
  width: 52px;
  height: 16px;
  left: 10px;
  top: -10px;
  content: '並び替え';
}

.search-select-box.tenant::before {
  width: 55px;
  height: 16px;
  left: 10px;
  top: -10px;
  content: '事業者検索';
}

.search-select-box.upper-limit::before {
  width: 55px;
  height: 16px;
  left: 10px;
  top: -15px;
  content: '利回り上限';
}

.search-select-box.under-limit::before {
  width: 55px;
  height: 16px;
  left: 10px;
  top: -15px;
  content: '利回り下限';
}

.search-select-box::after {
  bottom: calc(50% - 4px);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.search-select-box::after {
  position: absolute;
  right: 16px;
  width: 15px;
  height: 8px;
  background-color: #49454f;
  content: '';
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .search-select-box {
    width: 50%;
  }

  .search-select-box select {
    width: 100%;
    font-size: 12px;
  }

  .search-select-box.sort::before,
  .search-select-box.tenant::before {
    display: none;
  }
}

.check-box-area {
  display: flex;
  gap: 0 8px;
  overflow: auto;
  white-space: nowrap;
  order: 3;
}

.check-box-area .check-box label input {
  display: none;
}

.check-box label span.check-box-content {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #bbbbbb;
  font-size: 14px;
  border: 1px solid #bbbbbb;
  height: 40px;
  border-radius: 100px;
  padding: 10px 24px;
}

.check-box label input:checked + .check-box-content {
  color: #333333;
  background: rgba(254, 218, 21, 0.3);
  border: 1px solid rgba(254, 218, 21, 0.3);
}

.check-box label input:checked + .check-box-content .check-mark {
  position: relative;
  content: '';
  width: 12px;
  height: 5px;
  transform: rotate(-45deg);
  margin-right: 8px;
  border-left: 2px solid #333333;
  border-bottom: 2px solid #333333;
}

@media screen and (max-width: 767px) {
  .check-box-area {
    order: 4;
  }

  .check-box label span.check-box-content {
    font-size: 12px;
    font-weight: 500;
    height: 32px;
    padding: 8px 12px;
  }
}

.wrap_advanced_search_form {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: auto;
  order: 4;
}

.detail-search-btn {
  background-color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  border: none;
  width: 124px;
}

.advanced-search-form {
  width: 700px;
  height: 278px;
  position: absolute;
  padding: 24px;
  right: -16px;
  top: 0;
  margin-top: 44px;
  display: none;
  z-index: 99;
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}

.filter-area {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}

.advanced-search-form .check-box-area,
.advanced-search-form .select-box-area.search-select-box {
  order: unset;
}

.advanced-search-form .select-box-area .search-select-box.tenant::before {
  top: -15px;
}

@media screen and (max-width: 767px) {
  .advanced-search-form .select-box-area .search-select-box select {
    width: 40%;
    font-size: 12px;
  }
}

.button-area {
  display: flex;
  justify-content: flex-end;
  gap: 0 25px;
}
.cancel-button {
  display: flex;
  width: 95px;
  height: 40px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: none;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.submit-button {
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: rgba(254, 218, 21, 0.3);
  border: none;
  padding: 10px 24px 10px 16px;
}

@media screen and (max-width: 767px) {
  .wrap_advanced_search_form {
    order: 3;
  }

  .detail-search-btn {
    font-size: 12px;
    width: 100px;
  }
}

/* ファンド一覧 */
.list-body {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 24px 20px;
  width: 1264px;
}

@media screen and (max-width: 1270px) {
  .list-body {
    width: 836px;
  }
}

@media screen and (max-width: 840px) {
  .list-body {
    width: 740px;
  }
}

@media screen and (max-width: 767px) {
  .list-body {
    width: 360px;
  }
}

.list-card-item {
  background-color: #fff;
  display: block;
  color: #333333;
  width: 408px;
  padding: 16px 0;
  text-decoration: none;
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}

.list-card-item.tenant {
  padding: 16px 16px;
}

@media screen and (max-width: 840px) {
  .list-card-item {
    width: 360px;
  }
}

/* ファンド・事業者カード */
.top-contents-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px 0;
}

@media screen and (max-width: 767px) {
  .top-contents-card {
    gap: 24px 0;
  }
}

.contents-card {
  margin: 0 auto;
}

/* 事業者カード */
.top-tenant-card {
  width: 1280px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0px 2px 8px 3px rgba(0, 0, 0, 0.08), 0px 2px 16px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1300px) {
  .top-tenant-card {
    width: 624px;
  }
}

@media screen and (max-width: 699px) {
  .top-tenant-card {
    width: 359px;
    margin: 0 8px;
    padding: 16px 0;
    gap: 8px 0;
  }
}

.tenant-fand-logo-area {
  display: flex;
  justify-content: space-between;
}

/* チャート */
.tenant-show-radar-chart {
  width: 405px;
}

@media screen and (max-width: 1300px) {
  .tenant-show-radar-chart {
    width: 100%;
  }
}

@media screen and (max-width: 920px) {
  .tenant-show-radar-chart {
    width: 50%;
  }
}

.tenant-detail-contents {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
}

@media screen and (max-width: 920px) {
  .tenant-detail-contents {
    display: flex;
    flex-direction: column;
    gap: 0 30px;
  }

  .tenant-detail-contents .detail-top-area {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
  }

  .tenant-detail-contents .top-area {
    display: flex;
    flex-direction: column;
  }
}

.tenant-logo-review-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tenant-review-area {
  display: flex;
  align-items: center;
  gap: 0 16px;
  margin-top: 16px;
}

.tenant-review-area div {
  display: flex;
}

@media screen and (max-width: 920px) {
  .tenant-review-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
  }
}

.tenant-detail-area {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 920px) {
  .tenant-detail-top-area {
    display: flex;
    justify-content: space-between;
  }
}

.tenant-detail-bottom-area {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.tenant-detail-top-area,
.tenant-detail-bottom-area {
  width: 40%;
}

@media screen and (max-width: 920px) {
  .tenant-detail-top-area,
  .tenant-detail-bottom-area {
    width: 100%;
    padding: 0 16px;
  }
}

.tenant-table-area {
  display: flex;
  flex-direction: column;
}

.tenant-table-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  padding: 12px;
}

@media screen and (max-width: 1300px) {
  .tenant-table-item {
    padding: 8px;
  }
}

.table-item-value {
  font-size: 20px;
}

.table-item-value span {
  font-size: 14px;
}

.table-item-rank {
  font-weight: 700;
}

@media screen and (max-width: 920px) {
  .tenant-table-item {
    font-size: 14px;
  }
}

/* ファンドカード */
.top-fund-card {
  width: 1280px;
  padding: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  border-radius: 8px;
  box-shadow: 0px 2px 8px 3px rgba(0, 0, 0, 0.08), 0px 2px 16px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1300px) {
  .top-fund-card {
    width: 624px;
  }
}

@media screen and (max-width: 699px) {
  .top-fund-card {
    width: 359px;
    padding: 12px 0;
    gap: 8px 0;
  }
}

.fund-detail-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.fund-status-area {
  display: flex;
  align-items: center;
  margin: 0;
}

.status-label {
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 82.5% 100%);
  background-color: var(--color-yellow);
  width: 120px;
  height: 40px;
  font-size: 16px;
}

.method-label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #343434;
  font-size: 14px;
  border: 1px solid #bbbbbb;
  width: 80px;
  height: 29px;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .status-label {
    width: 72px;
    height: 28px;
    font-size: 12px;
    font-weight: 400;
  }

  .method-label {
    font-size: 10px;
    width: 56px;
    height: 20px;
  }
}

.favorite-icon-area {
  display: flex;
  align-items: center;
  margin-right: 24px;
}

.top-tenant-card .favorite-icon-area {
  margin-bottom: -24px;
  z-index: 100;
}

@media screen and (max-width: 920px) {
  .top-tenant-card .favorite-icon-area {
    margin-bottom: 0;
  }
}

.favorited-text {
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .favorite-icon-area {
    margin-right: 16px;
  }

  .favorite-icon {
    width: 18px;
    height: 18px;
  }

  .favorited-text {
    font-size: 12px;
  }
}

.fund-detail-contents {
  padding: 0 24px;
}

@media screen and (max-width: 767px) {
  .fund-detail-contents {
    padding: 0 16px;
  }
}

.fund-logo-area {
  height: 50px;
}

.fund-logo {
  max-height: 50px;
  max-width: 215px;
}

@media screen and (max-width: 767px) {
  .fund-logo-area {
    height: 30px;
  }

  .fund-logo {
    max-height: 30px;
    max-width: 129px;
  }
}

.fund-name-area {
  background-color: #fff8ca;
  color: #333333;
  margin-top: 8px;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .fund-name-area {
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
  }
}

.fund-contents-area {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0 24px;
}

.fund-contents-area div:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

@media screen and (max-width: 767px) {
  .fund-contents-area {
    grid-template-rows: 170px 90px;
    margin-top: 8px;
    gap: 8px;
  }

  .fund-contents-area div:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .fund-contents-area div:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}

.fund-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.detail-lavel {
  font-size: 16px;
}

.detail-value {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .detail-lavel {
    font-size: 10px;
  }

  .detail-value {
    font-size: 16px;
  }
}

.fund-detail-first div p,
.fund-detail-second div p {
  margin: 0;
}

.fund-detail-first {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fund-detail-first .detail-area {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 10px 0;
}

.fund-detail-first .detail-area div {
  width: 100%;
  border-right: 1px solid #d9d9d9;
}

.fund-detail-first .detail-area div:last-child {
  border-right: none;
}

.fund-detail-first .detail-area:nth-child(2) {
  border-top: 1px solid #d9d9d9;
}

.fund-detail-first div div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
}

@media screen and (max-width: 767px) {
  .fund-detail-first .detail-area.column-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .detail-area div:nth-child(2) {
    border-right: none;
  }

  .detail-area.column-3 div:nth-child(3) {
    margin-top: 4px;
    border-top: 1px solid #d9d9d9;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}

.fund-detail-second {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fund-detail-second div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  height: 100%;
  border-top: 1px solid #d9d9d9;
}

@media screen and (max-width: 767px) {
  .fund-detail-second {
    display: flex;
    flex-direction: row;
    gap: 0 8px;
    height: 90px;
  }

  .fund-detail-second div {
    border-top: none;
  }

  .fund-detail-second div:nth-child(1) {
    width: 60%;
  }

  .fund-detail-second div:nth-child(2) {
    width: 40%;
  }

  .fund-detail-second .detail-lavel {
    font-size: 12px;
  }
}

.link-button-area {
  display: flex;
  justify-content: center;
  gap: 0 31px;
}

.link-button-area .red_button {
  margin: 0;
}

@media screen and (max-width: 1300px) {
  .link-button-area {
    flex-direction: column;
    gap: 16px 0;
  }

  .link-button-area .red_button {
    margin: 0 auto;
  }
}

/* 運営会社・サービスの概要 */
.related-information {
  display: flex;
  justify-content: center;
  gap: 0 31px;
}

@media screen and (max-width: 1300px) {
  .related-information {
    display: flex;
    flex-direction: column;
    gap: 48px 0;
  }
}

@media screen and (max-width: 767px) {
  .related-information {
    gap: 56px 0;
  }
}

.tenant-related-information {
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}

@media screen and (max-width: 767px) {
  .tenant-related-information {
    gap: 24px 0;
  }
}

.related-information section {
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}

@media screen and (max-width: 767px) {
  .related-information section {
    gap: 24px 0;
  }
}

.information-content {
  width: 624px;
  height: 553px;
  border-radius: 8px;
  padding: 40px 40px 24px;
  box-shadow: 0px 2px 8px 3px rgba(0, 0, 0, 0.08), 0px 2px 16px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

@media screen and (max-width: 1300px) {
  .information-content {
    margin: 0 auto;
  }
}

@media screen and (max-width: 699px) {
  .information-content {
    width: 359px;
    gap: 16px 0;
  }
}

.information-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  padding: 0 0 12px;
}

@media screen and (max-width: 699px) {
  .information-title {
    font-weight: 700;
  }
}

.information-logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.information-logo img {
  max-height: 40px;
}

@media screen and (max-width: 699px) {
  .information-logo {
    padding: 0 20px 0 0;
  }
}

.information-detail {
  height: 384px;
  overflow: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.information-detail-no-logo {
  height: 424px;
  overflow: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

/* 取扱ファンド */
.handling-fund-list-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px 0;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .handling-fund-list-area {
    gap: 24px 0;
  }
}

.handling-fund-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 7px;
  width: 359px;
}

@media screen and (min-width: 768px) {
  .handling-fund-list {
    width: 616px;
    gap: 16px 16px;
  }
}

@media screen and (min-width: 1000px) {
  .handling-fund-list {
    width: 948px;
    gap: 16px;
  }
}

@media screen and (min-width: 1350px) {
  .handling-fund-list {
    width: 1248px;
    gap: 16px;
  }
}
/*共通変数*/
:root {
  --color-yellow: #f9e87a;
  --color-blue: #6bafff;
  --color-red: #ec1a33c7;
  --color-white: #ffffff;
  --color-black: #343434;
  --color-gray: #646464;
  --color-border-yellow: #dccc93;
  --color-background-yellow: #fffae9;
  --color-background-gray: #e5e5e5;
  --color-background-lightgray: #f0f0f0;
  --color-button-yellow: #ffd200;
  --breakpoint: 700px;
  --breakpoint1: 1024px;
  --breakpoint2: 700px;
  --breakpoint1280: 1280px;
}

html,
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--color-black);
}

a {
  transition: 0.4s;
}

button,
select {
  cursor: pointer;
}

a:hover,
button:hover {
  opacity: 0.8;
}

.bg-yellow {
  background-color: var(--color-background-yellow);
}

/* TODO: .close_btnのスタイルを共通CSSにする */
.global_header .account_menu .close_btn {
  margin-right: 19px;
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
}

@media screen and (min-width: 1280px) {
  .global_header .account_menu .close_btn {
    margin-right: 16px;
    display: block;
    position: relative;
    width: 32px;
    height: 32px;
  }
}

.member_registration_guidance_popup .popup_container,
.member_registration_guidance_popup_review .popup_container {
  padding: 8px;
  padding-bottom: 32px;
}

.member_registration_guidance_popup .close_btn,
.member_registration_guidance_popup_review .close_btn {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: auto;
  margin-bottom: 8px;
  cursor: pointer;
}

.global_header .account_menu .close_btn::before,
.global_header .account_menu .close_btn::after,
.member_registration_guidance_popup .close_btn::before,
.member_registration_guidance_popup .close_btn::after,
.member_registration_guidance_popup_review .close_btn::before,
.member_registration_guidance_popup_review .close_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 22px;
  background: #333333;
}

.global_header .account_menu .close_btn::before,
.member_registration_guidance_popup .close_btn::before,
.member_registration_guidance_popup_review .close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.global_header .account_menu .close_btn::after,
.member_registration_guidance_popup .close_btn::after,
.member_registration_guidance_popup_review .close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* フッター */
.global_footer {
  padding: 16px 8px;
  background-color: #1776de;
  color: var(--color-white);
}

@media screen and (max-width: 880px) {
  .global_footer {
    padding: 24px 48px;
  }
}

.global_footer_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 25px;
  width: 100%;
  margin: 0 auto 16px;
  padding: 0;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}

/* @media screen and (max-width: 420px) {
  .global_footer_inner {
    column-gap: 3%;
  }
}

@media screen and (min-width: 700px) {
  .global_footer_inner {
    row-gap: 15px;
    column-gap: 35px;
    width: 95%;
    max-width: 500px;
    font-size: 13px;
  }
}

@media screen and (min-width: 880px) {
  .global_footer_inner {
    max-width: none;
  }
} */

.global_footer_inner li {
  list-style: none;
}

.global_footer_inner a {
  color: inherit;
  text-decoration: none;
}

.footer_copyrights {
  text-align: center;
  font-size: 10px;
}

/* layout */
.layout_no_backimage {
  padding-top: 88px;
}

@media screen and (max-width: 767px) {
  .layout_no_backimage {
    /* TODO: 一時的にmain_tab_menuを非表示。方針が決まり次第修正 */
    /* padding-top: 122px; */
    padding-top: 60px;
  }
}

.layout_main {
  padding-top: 88px;
  background-image: none;
}

@media screen and (max-width: 767px) {
  .layout_main {
    /* TODO: 一時的にmain_tab_menuを非表示。方針が決まり次第修正 */
    /* padding-top: 122px; */
    padding-top: 60px;
  }
}

.layout_main_library {
  padding-top: 88px;
  background-image: none;
}
@media screen and (max-width: 1279px) {
  .layout_main_library {
    /* padding-top: 52px; */
  }
  .layout_main_library.cv-countermeasure {
    padding-top: 52px;
  }
}
@media screen and (max-width: 767px) {
  .layout_main_library {
    /* TODO: 一時的にmain_tab_menuを非表示。方針が決まり次第修正 */
    /* padding-top: 122px; */
    padding-top: 60px;
  }
}
/* 1280px以上の場合 */

/* .layout_main_library {
  padding-top: 115px;
}
@media screen and (min-width: 1280px) {
  .layout_main_library {
    padding-top: 76px;
  }
} */

/* 700px以上の場合 */
@media screen and (min-width: 700px) {
  .layout_main,
  .layout_main_library {
    background-image: url(/images/main_back_ground.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: auto;
    min-height: calc(100vh - 85px);
  }

  /*
  .layout_main {
    padding-top: 50px;
  }*/
}

/* 699px以下の場合 */
@media screen and (max-width: 699px) {
  .layout_main {
    min-height: calc(100vh - 220px);
  }
}

.layout_inner {
  width: 95%;
  max-width: var(--breakpoint);
  margin: 0 auto;
}

@media (min-width: 1280px) {
  .layout_inner {
    width: 80%;
    max-width: 80%;
  }
}

.layout_inner_1024 {
  width: 95%;
  max-width: var(--breakpoint1);
  margin: 0 auto;
}

.layout_inner_1280 {
  width: 95%;
  max-width: var(--breakpoint1280);
  margin: 0 auto;
}

.layout_inner_toppage {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.underline {
  border-bottom: 1px solid #646464;
}

.d-inline-block {
  display: inline-block;
}

.w-100 {
  width: 100%;
}

.sp_only {
  display: block !important;
}

.sp_only_flex {
  display: flex !important;
}

.pc_only,
.pc_only_flex {
  display: none !important;
}

@media screen and (min-width: 700px) {
  .sp_only,
  .sp_only_flex {
    display: none !important;
  }

  .pc_only {
    display: block !important;
  }

  .pc_only_flex {
    display: flex !important;
  }
}

/* 横線付き見出しのスタイル */
.section_first_headline,
.section_headline {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-align: center;
}

.section_first_headline,
.section_first_headline_no_title {
  margin: 35px 0 34px 0;
}

.section_headline {
  margin: 35px 0 34px 0;
}
@media screen and (min-width: 700px) {
  .section_first_headline,
  .section_headline {
    font-size: 20px;
  }
  .section_first_headline {
    margin: 96px 0 48px 0;
  }
  .section_headline:before,
  .section_headline:after {
    content: '';
    width: 32%;
    border-top: 1px solid;
  }
  .section_headline:before {
    margin-right: 1em;
  }

  .section_headline:after {
    margin-left: 1em;
  }
}

/* 両端に線がない見出し */
.content_title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  display: flex;
  gap: 0 16px;
  justify-content: center;
  align-items: center;
  font-family: 'Noto Sans JP';
}
@media screen and (max-width: 767px) {
  .content_title {
    font-size: 24px;
    gap: 0 8px;
  }
  .content_title img {
    width: 48px;
  }
}

.section_headline_without_line {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.section_title_without_line {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0;
}
@media screen and (min-width: 700px) {
  .section_title_without_line {
    font-size: 32px;
    margin: 0 0 48px;
  }
}

@media screen and (min-width: 700px) {
  .section_headline:before,
  .section_headline:after {
    content: '';
    width: 170px;
  }
}

/* ページの見出し */
.page_title_area {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: right;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 40px;
  background-color: var(--color-white);
}

@media screen and (min-width: 700px) {
  .page_title_area {
    width: 100%;
    margin: 0;
  }
}

.page_title_area_headline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.search_filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 90px;
  cursor: pointer;
}

.search_filter_text {
  display: inline;
  margin: 0;
  font-size: 12px;
}

/* ＋とーの絞り込み検索ボタン */

.search_filter {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90px;
  padding: 10px;
  cursor: pointer;
}

.search_filter_button {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color-yellow);
}

.search_filter_button::before,
.search_filter_button::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: black;
  transition: 0.2s;
}

.search_filter_button.active::after {
  transform: rotate(0deg);
}

.search_filter_button::before {
  opacity: 1;
}

.search_filter_button::after {
  transform: rotate(90deg);
}

/* セレクトボックス */
.search_select_box {
  position: relative;
}

.search_select_box::before,
.search_select_box::after {
  position: absolute;
  right: 10px;
  width: 15px;
  height: 8px;
  background-color: #bbbbbb;
  content: '';
  pointer-events: none;
}

.search_select_box::before {
  top: calc(50% - 9px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.search_select_box::after {
  bottom: calc(50% - 9px);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.search_select_box select {
  width: 252px;
  height: 26px;
  margin: 20px 0 0 0;
  padding: 5px;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  background-color: #fff;
  color: #343434;
  font-size: 13px;
  appearance: none;
  cursor: pointer;
}

@media screen and (min-width: 700px) {
  .search_select_box select {
    width: 200px;
    margin: 20px 0 0 18px;
  }
}

@media screen and (max-width: 500px) {
  .search_select_box select {
    margin: 20px 0 0 10px;
  }
}

/* リンクボタンのスタイル */
.yellow_button,
.red_button {
  display: block;
  padding: 14px 32px;
  text-align: center;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.yellow_button {
  width: 260px;
  margin: 0 auto;
  background-color: var(--color-button-yellow);
  color: var(--color-black);
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (max-width: 940px) {
  .yellow_button {
    width: 260px;
  }
}

.red_button {
  width: 260px;
  margin: 0 auto;
  background-color: #ed495d;
  color: #fff;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.gold_yellow_button {
  display: inline-block;
  width: auto;
  padding: 14px 16px;
  border-radius: 8px;
  background-color: #ffd200;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

/* スマホのみ表示のクチコミ誘導ボタン */
.review_induction_button_area {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  width: 270px;
  margin: 0 auto;
  padding: 15px 0;
  background-color: var(--color-white);
  border-radius: 10px;
  transition: opacity 0.6s ease;
}

.review_induction_button_area.hidden {
  opacity: 0;
}

@media screen and (min-width: 700px) {
  .review_induction_button_area {
    left: auto;
    right: 15px;
    transform: translateX(0);
    margin: 0;
  }
}

.review_induction_button_area_text {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}

.blue_button {
  display: block;
  width: 200px;
  margin: 10px auto 0;
  padding: 5px 12px;
  background-color: #00a0e9;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.list_card_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px 24px;
  flex-wrap: wrap;
  margin: 0 0 15px 0;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper {
    gap: 24px 0;
  }
}

.ranking_fund_page .list_card_wrapper {
  gap: 0 0;
}

.list_card_wrapper.show {
  display: flex;
  margin-top: 42px;
}

@media screen and (min-width: 700px) {
  .list_card_wrapper {
    justify-content: left;
    margin: 0 0 15px 0;
  }
}

/* クチコミで画面の上部にある絞り込みエリア */
.filter_area {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 8px 8px 20px 8px;
  background-color: var(--color-white);
}

@media screen and (min-width: 700px) {
  .filter_area {
    width: 100%;
    margin: 0;
  }
}

.filter_inner {
  margin: 0 0 10px 0;
  padding: 10px;
  border-radius: 5px;
  background-color: var(--color-background-lightgray);
}

@media screen and (min-width: 700px) {
  .filter_inner label {
    padding: 1px 14px 0 0;
    font-size: 12px;
  }
}

.filter_title {
  margin: 0 0 4px 0;
  font-size: 13px;
}

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

.filter_content label {
  padding: 1px 10px 0 6px;
  font-size: 11px;
  vertical-align: text-bottom;
}

@media screen and (min-width: 700px) {
  .filter_content label {
    padding: 1px 14px 0 6px;
    font-size: 12px;
  }
}

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

@media screen and (min-width: 700px) {
  .filter_tenant_select_box {
    justify-content: left;
  }
}

/* ファンドや事業者のカードのスタイル */
.list_card {
  display: block;
  width: 300px;
  text-align: center;
  background-color: var(--color-white);
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  color: inherit;
  text-decoration: none;
}

.list_card_status_label {
  position: absolute;
  padding: 2px 25px 2px 8px;
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 82.5% 100%);
  background-color: var(--color-yellow);
  font-size: 10px;
}

.list_card_method_label {
  position: absolute;
  right: 0;
  margin: 1px 1px 0 0;
  padding: 1px 6px;
  border-radius: 15px;
  background-color: var(--color-white);
  font-size: 10px;
}

.wrap_list_card_image {
  height: 144px;
}

@media screen and (max-width: 767px) {
  .wrap_list_card_image {
    height: 120px;
  }
}

.list_card_image {
  height: 144px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.library_sidebar .list_card_image {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.ranking_fund_page .list_card_image {
  height: auto;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .list_card_image {
    height: 120px;
    /* width: 160px; */
  }
}

.list_card_flex_area {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 10px 5px;
}

@media screen and (max-width: 767px) {
  .list_card_flex_area {
    padding: 6px 2px;
  }
}

.toppage_tenant_of_interest .list_card_flex_area {
  padding: 12px 20px;
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .list_card_flex_area {
    padding: 10px 0;
  }
}

.list_card_block_area {
  /* margin: 12px 0;
  padding: 0 0 1px 0; */
  padding: 12px 0;
}

.tenant_product_fund_detail_card_content_right .list_card_block_area {
  margin: 0;
}

.list_card_flex_area_item {
  width: 50%;
}

.list_card_flex_area_item:first-child {
  border-right: 1px solid #646464;
}

@media screen and (min-width: 700px) {
  .list_card_flex_area.column_3 .list_card_flex_area_item:nth-child(2) {
    border-right: 1px solid #646464;
  }
}

@media screen and (min-width: 700px) {
  .list_card_flex_area.column_3 .list_card_flex_area_item {
    width: calc(100% / 3);
  }
}

.list_card_flex_area.sp_only .list_card_flex_area_item {
  width: 100%;
  border-right: none;
}

.list_card_flex_area.sp_only .list_card_flex_area_item_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

@media screen and (min-width: 700px) {
  .ranking_fund_page .list_card_status_headline {
    margin: 12px 0 0 0;
    font-size: 16px;
  }
}

.toppage_tenant_of_interest .list_card_status_headline {
  font-size: 14px;
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .list_card_status_headline {
    font-size: 12px;
  }
}

.list_card_flex_area.sp_only .list_card_status_headline {
  margin-right: 8px;
}

.list_card_status_value {
  margin: 2.5px 0;
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .list_card_status_value {
    margin: 4px 0;
    font-size: 20px;
  }
}

/* .toppage_tenant_of_interest .list_card_status_value {
  font-size: 20px;
  margin: 0px;
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .list_card_status_value {
    font-size: 16px;
  }
} */

.list_card_status_value span {
  font-size: 11px;
}

/* .toppage_tenant_of_interest .list_card_status_value span {
  font-size: 20px;
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .list_card_status_value span {
    font-size: 16px;
  }
} */

@media screen and (min-width: 700px) {
  .list_card_status_value span {
    font-size: 12px;
  }
}

.list_card_logo_box {
  height: 72px;
  padding: 16px 0;
}
/*
.list_card_block_area.underline {
  margin: 0;
} */

@media screen and (max-width: 767px) {
  .list_card_logo_box {
    height: 46px;
    padding: 8px 0;
  }

  .toppage .list_card_logo_box {
    padding: 8px 0;
  }
}

.list_card_logo_box_image {
  max-width: 150px;
  max-height: 40px;
}

@media screen and (max-width: 767px) {
  .list_card_logo_box_image {
    max-height: 30px;
  }
}

.list_card_status_headline_l {
  margin: 0;
  font-size: 20px;
}

@media screen and (max-width: 700px) {
  .list_card_status_headline_l {
    font-size: 16px;
    margin-bottom: 0px;
  }
}

/* 注目の事業者 */
.evaluation {
  display: flex;
  align-items: center;
}

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

.toppage_tenant_of_interest .evaluation_align_center {
  padding-bottom: 20px;
}

.evaluation_align_left {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 24px;
}

.evaluation_fivestars_value {
  margin: 0 0 0 5px;
  font-size: 18px;
}

.evaluation_fivestars:first-child svg {
  fill: var(--color-yellow);
}

.induction_user_popup {
  position: absolute;
  top: 150px;
  right: 0;
  left: 0;
  z-index: 10;
  width: 90%;
  margin: 0 auto;
  padding: 10px;
  background-color: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-border-yellow);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.induction_user_popup_top {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1;
}
.induction_user_popup_top {
  top: 40px;
}

@media screen and (min-width: 700px) {
  .induction_user_popup_top {
    top: 128px;
  }
}

.induction_user_popup_ranking {
  max-width: 280px;
  margin: 0 auto;
  padding: 44px 24px;
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid #c3c3c3;
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
  text-align: center;
}

@media screen and (min-width: 700px) {
  .induction_user_popup_ranking {
    max-width: 624px;
    padding: 52px 24px;
    border-radius: 10px;
  }
}

.induction_user_popup_ranking .induction_user_popup_headline {
  margin: 0 0 16px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}

@media screen and (min-width: 700px) {
  .induction_user_popup_ranking .induction_user_popup_headline {
    font-size: 24px;
  }
}

.induction_user_popup_text {
  margin: 0;
  font-size: 14px;
  text-align: center;
}
.induction_user_popup_ranking .induction_user_popup_text {
  margin: 0 0 24px;
  color: #8f8f8f;
  font-size: 12px;
  font-weight: bold;
  line-height: 2;
}

@media screen and (min-width: 700px) {
  .induction_user_popup_ranking .induction_user_popup_text {
    margin: 0 0 32px;
    font-size: 16px;
  }
}

.induction_user_popup_ranking .red_button {
  width: 200px;
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
}

@media screen and (min-width: 700px) {
  .induction_user_popup_ranking .red_button {
    width: 260px;
    line-height: 45px;
  }
}

/* ピックアップ記事のスタイル */
.feature_article_card_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  width: 359px;
}

@media screen and (min-width: 700px) {
  .feature_article_card_wrapper {
    width: 630px;
    gap: 20px;
  }
}

@media screen and (min-width: 1322px) {
  .feature_article_card_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 1280px;
  }
}

@media screen and (min-width: 2000px) {
  .feature_article_card_wrapper {
    width: 1930px;
  }
}

.feature_article_card {
  background-color: var(--color-white);
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 700px) {
  .feature_article_card {
    width: 630px;
  }
}

.feature_article_card_headline {
  margin: 0;
  padding: 8px;
  font-size: 15px;
  background-color: #f8eeaf;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature_article_card_inner {
  padding: 12px;
}

.feature_article_card_inner_flex_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.feature_article_card_content {
  margin: 0 0 0 8px;
  font-size: 13px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.read_more_link {
  display: block;
  color: #b4a337;
  font-size: 13px;
  text-align: right;
  text-decoration: none;
}

.feature_article_card_info {
  display: flex;
  justify-content: right;
  align-items: center;
  text-align: right;
  padding: 10px 0 5px;
  border-bottom: 1px solid #bbbbbb;
}

.feature_article_card_new_mark {
  margin: 0;
  color: #ec1f1f;
  font-size: 13px;
}

.feature_article_card_post_date {
  margin: 0 0 0 10px;
  color: #bbbbbb;
  font-size: 13px;
}

.feature_article_card_footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}

.article_tag {
  margin: 0 8px 7px 0;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 11px;
  background-color: #e5e5e5;
  color: #095bd6;
  text-decoration: none;
}

/* マイページでいつも上にあるアイコンがある領域 */
.mypage_main_area_warapper {
  margin: 0 0 25px 0;
  background-color: var(--color-background-yellow);
  border: 1px solid var(--color-border-yellow);
  border-radius: 10px;
}

.mypage_main_area_warapper_inner {
  max-width: 360px;
  margin: 0 auto;
  padding: 10px 10px 15px 10px;
}

.mypage_main_area_icon {
  position: relative;
  height: 140px;
}

.mypage_main_area_icon_image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
}

.mypage_main_area_choose_icon_link {
  color: inherit;
}

.mypage_main_area_name {
  margin: 8px 0 8px 0;
  text-align: center;
  font-size: 18px;
}

.mypage_main_area_links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.mypage_main_area_change_password_link {
  color: inherit;
}

/* マイページのフォーム */
.mypage_form_input_area {
  padding: 0 30px 30px;
}

.mypage_form_input_title {
  display: inline;
  margin: 10px 0 0 0;
  font-size: 13px;
}

.mypage_form_input {
  padding: 5px;
  width: 100%;
  border: 1px solid #bbbbbb;
}

@media screen and (min-width: 700px) {
  .mypage_form_input_wrapper {
    width: 60%;
    margin: 0 auto;
  }
}

.mypage_form_input_caption {
  margin: 3px 0 0 0;
  font-size: 12px;
  color: var(--color-gray);
}

/* ファンド概要 */
.tenant_outline_inner {
  padding: 0;
}

@media screen and (min-width: 700px) {
  .tenant_outline_inner {
    margin: 0 0 10px 0;
    padding: 10px;
    background-color: #fff;
  }
}

.tenant_outline_text {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 700px) {
  .tenant_outline_text {
    font-size: 14px;
    padding: 8px;
  }

  .tenant_outline_text p {
    margin: 0;
  }
}

/* 取扱ファンド */
.tenant_product_fund_detail_card {
  height: 640px;
  display: block;
  width: 100%;
  margin: 0 0 15px 0;
  background-color: var(--color-white);
  text-decoration: none;
  color: inherit;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.ranking_fund_page .tenant_product_fund_detail_card {
  height: auto;
}

.tenant_product_fund_detail_card_header {
  display: flex;
  align-items: center;
  height: 50px;
}

.tenant_product_fund_detail_card_ranking_number {
  margin: 0;
  padding: 8px 0 5px 10px;
  font-size: 20px;
}

@media screen and (min-width: 700px) {
  .tenant_product_fund_detail_card_ranking_number {
    padding: 8px 0 5px 10px;
  }
}

.tenant_product_fund_detail_card_logo {
  max-width: 160px;
  max-height: 50px;
  padding: 12px 0 10px 10px;
}

.tenant_product_fund_detail_card_caption {
  margin: 0 0 10px 0;
  padding: 3px 10px 3px 10px;
  background-color: var(--color-yellow);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
}

@media screen and (min-width: 700px) {
  .tenant_product_fund_detail_card_caption {
    margin: 0 0 10px 0;
  }
}

.tenant_product_fund_detail_card_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 5px 10px;
}

@media screen and (min-width: 700px) {
  .tenant_product_fund_detail_card_content {
    padding: 0 5px 5px;
  }
}

.tenant_product_fund_detail_card_content_left {
  position: relative;
  width: 49%;
}

.tenant_product_fund_detail_card_footer_left {
  width: 54%;
}

.tenant_product_fund_detail_card_footer_right {
  width: 46%;
}

.tenant_product_fund_detail_card_content_right {
  text-align: center;
  width: 49%;
  margin-left: 8px;
}

.tenant_product_fund_detail_card_content_right .list_card_status_headline {
  font-size: 11px;
}

@media screen and (min-width: 700px) {
  .tenant_product_fund_detail_card_content_right .list_card_status_headline {
    font-size: 15px;
  }
}

.tenant_product_fund_detail_card_content_right .list_card_status_value_s {
  margin: 0 0 5px 0;
  font-size: 13px;
}

@media screen and (min-width: 700px) {
  .tenant_product_fund_detail_card_content_right .list_card_status_value_s {
    font-size: 18px;
  }
}

.tenant_product_fund_detail_card .red_button {
  width: 100%;
}

/* ランキング */
.ranking_filter {
  display: none;
}

@media screen and (min-width: 700px) {
  .ranking_filter {
    display: flex;
    width: 95%;
    margin: 0 auto 24px;
    padding: 0;
    border-bottom: 1px solid #8f8f8f;
  }
}

@media screen and (min-width: 1365px) {
  .ranking_filter {
    width: 100%;
    max-width: var(--breakpoint1280);
  }
}

.ranking_filter li {
  width: 168px;
  list-style: none;
  padding: 0 4px;
}
.ranking_filter li:first-child {
  width: 164px;
  padding-left: 0;
}
.ranking_filter li:last-child {
  padding-right: 0;
}

.ranking_filter li a {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid #eee;
  border-bottom: none;
  background-color: #eee;
  color: #8f8f8f;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 53px;
}

.ranking_filter li a.ranking_filter_color {
  position: relative;
  bottom: -1px;
  border: 1px solid #8f8f8f;
  border-bottom: 1px solid #fff;
  background-color: #fff;
  color: #333;
  line-height: 52px;
}

.ranking_filter li a.ranking_filter_color::after {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 12px;
  content: '';
  width: calc(100% - 24px);
  height: 3px;
  background-color: #f6ac0e;
}

.ranking_filter_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 14px;
  padding: 5px 16px 0;
}

@media screen and (min-width: 700px) {
  .ranking_filter_wrapper {
    margin: 0;
    padding: 0;
  }
}

.ranking_filter_select_box {
  position: relative;
  width: 68.2%;
}

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

.ranking_filter_select_box::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 5px;
  background-color: #333;
  content: '';
  pointer-events: none;
  bottom: calc(50% - 3px);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.ranking_filter_select {
  width: 100%;
  padding: 0 12px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  color: #49454f;
  font-size: 12px;
  line-height: 30px;
  appearance: none;
  cursor: pointer;
}

.ranking_filter_order {
  margin-bottom: 2px;
  padding: 0 10px;
  color: #333;
  font-size: 12px;
}

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

.ranking_filter_order_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.ranking_filter_order svg {
  margin: 1px 0 0 4px;
}

.ranking_checkbox_filter_area {
  margin: 0 auto;
  padding: 11px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background-color: var(--color-white);
  overflow: auto;
}

@media screen and (min-width: 700px) {
  .ranking_checkbox_filter_area {
    width: 95%;
    padding: 15px 0;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
  }
}

@media screen and (min-width: 1365px) {
  .ranking_checkbox_filter_area {
    width: 100%;
    max-width: var(--breakpoint1280);
  }
}

.ranking_checkbox_filter_area .filter_content {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
}

@media screen and (min-width: 700px) {
  .ranking_checkbox_filter_area .filter_content {
    padding: 0;
  }
}

.ranking_checkbox_filter_area .filter_content::before,
.ranking_checkbox_filter_area .filter_content::after {
  content: '';
  width: 16px;
  height: 1px;
}

.ranking_checkbox_filter_area .filter_content label {
  margin: 0 4px;
  padding: 0;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  transition: 0.4s;
}

@media screen and (min-width: 700px) {
  .ranking_checkbox_filter_area .filter_content label {
    margin: 0 4px;
    font-size: 14px;
  }
}

.ranking_checkbox_filter_area .filter_content input + label {
  margin-left: 0;
}
.ranking_checkbox_filter_area .filter_content label:last-child {
  margin-right: 0;
}

.ranking_checkbox_filter_area .filter_content label:hover {
  opacity: 0.8;
}

.ranking_checkbox_filter_area .filter_content label input {
  display: none;
}

.ranking_checkbox_filter_area .filter_content label span {
  display: inline-block;
  padding: 0 11px;
  border: 1px solid #c3c3c3;
  border-radius: 100px;
  color: #c3c3c3;
  line-height: 30px;
}

@media screen and (min-width: 700px) {
  .ranking_checkbox_filter_area .filter_content label span {
    padding: 0 23px;
    border-radius: 20px;
    line-height: 38px;
  }
}

.ranking_checkbox_filter_area .filter_content label input:checked + span {
  display: flex;
  align-items: center;
  position: relative;
  color: #333;
  background-color: rgba(254, 218, 21, 0.3);
  border: 1px solid rgba(254, 218, 21, 0.3);
}

.ranking_checkbox_filter_area .filter_content label input:checked + span::before {
  display: inline-block;
  content: '';
  width: 12px;
  height: 9.4px;
  margin-right: 8px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2212%22%20height%3D%2210%22%20viewBox%3D%220%200%2012%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M4%209.4L0%205.4L1.4%204L4%206.6L10.6%200L12%201.4L4%209.4Z%22%20fill%3D%22%23333333%22%2F%3E%20%3C%2Fsvg%3E');
}

/* ランキングテーブル */
.ranking_table {
  position: relative;
  margin-bottom: 0;
  padding-top: 0;
}

@media screen and (min-width: 700px) {
  .ranking_table {
    margin-bottom: 24px;
    padding-top: 24px;
  }
}

.ranking_table_inner {
  min-height: 360px;
  background-color: #fff;
}

@media screen and (min-width: 700px) {
  .ranking_table_inner {
    min-height: 442px;
  }
}

.ranking_table table,
.ranking_table td,
.ranking_table th {
  border-collapse: collapse;
}

.ranking_table table {
  width: 100%;
  background-color: var(--color-white);
}

@media screen and (min-width: 700px) {
  .ranking_table table {
    white-space: normal;
  }
}

.ranking_table table tr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  padding-bottom: 6px;
}

@media screen and (min-width: 700px) {
  .ranking_table table tr {
    display: table-row;
  }
}

.ranking_table table tr:first-child {
  display: none;
}

@media screen and (min-width: 700px) {
  .ranking_table table tr:first-child {
    display: table-row;
  }
}

.ranking_table .sort_tenant_popularity_rank tr {
  padding: 6px 0;
}

.ranking_table_inner_dot_underline {
  margin-bottom: 1px;
  border-bottom: 1px solid #c0c0c0;
}

.ranking_table th {
  padding: 0;
  background-color: #fff8ca;
  font-size: 1.194vw;
  font-weight: normal;
  text-align: center;
}

@media screen and (min-width: 1340px) {
  .ranking_table th {
    font-size: 16px;
  }
}

.ranking_table .sort_link {
  display: inline-block;
  width: 100%;
  padding: 9px 18px;
  color: black;
  text-decoration: none;
  transition: opacity 0.4s;
}

@media screen and (min-width: 700px) {
  .ranking_table .sort_link {
    padding: 9px 6px;
  }
}

.ranking_table .ranking_table_colored_th .sort_link {
  background-color: var(--color-yellow);
}

.ranking_table td {
  font-size: 10px;
  text-align: right;
}

@media screen and (min-width: 700px) {
  .ranking_table td {
    padding: 8px 16px;
    font-size: 1.455vw;
    text-align: center;
  }
}

@media screen and (min-width: 1100px) {
  .ranking_table td {
    font-size: 16px;
  }
}

.ranking_table_inner_dot_underline.masked td:not(:first-child) {
  -ms-filter: blur(5px);
  filter: blur(5px);
  pointer-events: none;
}

.ranking_table .ranking_table_rank {
  position: absolute;
  top: 10px;
  left: 16px;
  padding: 0 10px;
  background-color: #333;
  border-radius: 2px;
  color: var(--color-white);
  font-weight: bold;
  line-height: 20px;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .ranking_table .ranking_table_rank {
    position: static;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    color: inherit;
    font-weight: normal;
    line-height: inherit;
  }
}

.ranking_table .ranking_table_rank span {
  font-size: 12px;
}

@media screen and (min-width: 700px) {
  .ranking_table .ranking_table_rank span {
    font-size: 1.455vw;
  }
}

@media screen and (min-width: 1100px) {
  .ranking_table .ranking_table_rank span {
    font-size: 16px;
  }
}

.ranking_table .ranking_table_inner_dot_underline .ranking_table_rank {
  font-size: 12px;
}

@media screen and (min-width: 700px) {
  .ranking_table .ranking_table_inner_dot_underline .ranking_table_rank {
    font-size: 13px;
  }
}

.ranking_table_image {
  display: flex;
  align-items: center;
  position: absolute;
  top: 40px;
  left: 16px;
  height: 40px;
}

@media screen and (min-width: 700px) {
  .ranking_table_image {
    display: table-cell;
    position: static;
    height: auto;
  }
}

.ranking_table_image a {
  display: inline-block;
}

.ranking_table_text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  margin: -2px 16px;
}

@media screen and (min-width: 700px) {
  .ranking_table_text {
    display: table-cell;
    width: auto;
    margin: 0;
  }
}

.sort_total_amount_rank .ranking_table_text {
  width: 56%;
}

@media screen and (min-width: 700px) {
  .sort_total_amount_rank .ranking_table_text {
    width: auto;
  }
}

.sort_tenant_popularity_rank .ranking_table_text {
  margin: -0.5px 16px;
}

.ranking_table_text.ranking_table_colored_td {
  order: -1;
  width: calc(40% + 6px);
  margin: 6px 12px 2px 16px;
  padding: 0 0 0 4px;
  background-color: #f2f4f7;
  border-radius: 4px;
  line-height: 26px;
}

@media screen and (min-width: 700px) {
  .ranking_table_text.ranking_table_colored_td {
    width: auto;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    line-height: inherit;
  }
}

.sort_total_amount_rank .ranking_table_text.ranking_table_colored_td {
  width: calc(56% + 6px);
}

@media screen and (min-width: 700px) {
  .sort_total_amount_rank .ranking_table_text.ranking_table_colored_td {
    width: auto;
  }
}

.ranking_table_text.ranking_table_colored_td span {
  padding: 0 4px;
  font-size: 18px;
}

@media screen and (min-width: 700px) {
  .ranking_table_text.ranking_table_colored_td span {
    padding: 0;
    font-size: inherit;
  }
}

.ranking_table_text::before {
  display: inline-block;
  color: #5f5f5f;
  font-size: 9px;
  font-weight: normal;
  text-align: left;
}

@media screen and (min-width: 700px) {
  .ranking_table_text::before {
    display: none;
  }
}

.sort_total_amount_rank .ranking_table_text::before {
  width: 40%;
}

.ranking_table_text span {
  display: inline-block;
  width: 100%;
  font-size: 10px;
  font-weight: bold;
}

@media screen and (min-width: 700px) {
  .ranking_table_text span {
    width: auto;
    font-size: 1.455vw;
    font-weight: normal;
  }
}

@media screen and (min-width: 1100px) {
  .ranking_table_text span {
    font-size: 16px;
  }
}

.ranking_table_buttons {
  display: none;
}

@media screen and (min-width: 700px) {
  .ranking_table_buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 5px;
  }
}

.ranking_table .ranking_yellow_button,
.ranking_table .ranking_red_button {
  display: block;
  padding: 0 10px;
  text-align: center;
  font-size: 10px;
  line-height: 28px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.ranking_table .ranking_yellow_button {
  display: block;
  width: 80px;
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.ranking_table .ranking_red_button {
  display: block;
  width: 80px;
  margin: 7px 0 0;
  background-color: var(--color-red);
  color: var(--color-white);
}

.no_tenant_text {
  padding: 120px 0;
  text-align: center;
}

/* formの必須項目の記号 */
.required_item_left {
  position: relative;
}

.required_item_left:before {
  position: absolute;
  top: -3px;
  left: -9px;
  content: '*';
  font-size: 15px;
  color: #ef2353;
}

.required_item_right {
  position: relative;
}

.required_item_right:after {
  position: absolute;
  top: -3px;
  right: -9px;
  content: '*';
  font-size: 15px;
  color: #ef2353;
}

/* キャラクター選択エリア */
.mypage_character_icon_wrapper {
  margin: 0 0 10px 0;
  padding: 10px;
  background-color: #fafafa;
  border-radius: 10px;
}

.mypage_character_icon_wrapper_inner {
  max-width: 360px;
  margin: 0 auto;
}

.mypage_character_icon_text {
  display: inline;
  font-size: 14px;
}

.mypage_character_icon_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 0 0 0;
}

.mypage_character_icon_radio_button,
.review_post_recommend_point_list_radio_button {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.mypage_character_icon_inner input[type='radio']:checked + label .mypage_character_icon_image {
  border-radius: 10px;
  background-color: #ffe432;
}

.mypage_character_icon_image {
  margin: 0 0 15px 0;
  cursor: pointer;
}

.mypage_character_icon_image:hover {
  border-radius: 10px;
  background-color: #ffe432;
}

/* ログインページ */
.saha_sns_login_button_wrapper {
  padding: 0 0 30px 0;
}

.saha_sns_login_button {
  display: flex;
  align-items: center;
  width: 250px;
  margin: 0 auto 20px auto;
  padding: 0 0 0 5px;
  background-color: var(--color-white);
  text-decoration: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.saha_sns_login_button img {
  width: 35px;
}

.saha_sns_login_button:last-of-type {
  margin: 0 auto;
}

.saha_sns_login_button_text {
  padding: 0 0 0 8px;
  font-size: 13px;
  color: var(--color-black);
}

.saha_sns_login_button_caption {
  margin: 0;
  padding: 5px 0 0 0;
  text-align: center;
  font-size: 11px;
}

.saha_mail_login_area_inner {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 700px) {
  .saha_mail_login_area_inner {
    width: 50%;
    margin: 0 auto;
  }

  .saha_mail_login_area_alert_box {
    text-align: center;
  }
}

.saha_mail_login_area_email,
.saha_mail_login_area_password {
  padding: 5px;
  width: 100%;
  font-size: 15px;
  border: 1px solid #bbbbbb;
}

.saha_mail_login_area_alert {
  color: #ed495d;
}

.saha_mail_login_alert_field {
  border: 2px solid #ed495d;
  border-radius: 5px;
}

.saha_mail_login_area_email::placeholder,
.saha_mail_login_area_password::placeholder {
  color: #bbbbbb;
}

.saha_mail_login_area_email {
  margin: 0 0 20px 0;
}

.saha_mail_login_area_email_caption {
  margin: 0;
  padding: 5px 0 0 0;
  text-align: center;
  font-size: 11px;
}

.saha_mail_login_area_checkbox_wrap {
  margin: 20px 0;
  font-size: 14px;
}

.saha_login_text_link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #6bafff;
}

.saha_mail_login_area_buttons_caption {
  text-align: center;
  font-size: 14px;
}

.saha_library_article_keyword_wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 10px 7px 7px 0;
}

.saha_library_article_keyword {
  padding: 3px;
  font-size: 11px;
  color: #095bd6;
  background-color: var(--color-background-gray);
  border-radius: 6px;
  text-decoration: none;
}

.saha_library_article_keyword {
  margin: 0 0 7px 7px;
}

input[type='text'],
input[type='email'],
input[type='password'],
textarea {
  font-size: 16px;
}

.review_card_post_status_detail {
  text-align: right;
  margin-bottom: 7px;
  height: 24px;
}

.review_card_post_status_detail.disapproval {
  font-size: 6px;
  color: #a0a0a0;
}

.review_card_post_status_detail.approval {
  font-size: 16px;
  color: #000;
}

.display-contents {
  display: contents;
}

@media (max-width: 1279px) {
  .screen_lg {
    display: none !important;
  }
  .screen_lg_breadcrumb {
    display: none !important;
  }
}

.screen_sm {
  display: none;
}

@media (max-width: 1279px) {
  .screen_sm {
    display: block;
    position: fixed;
    width: 95%;
    max-width: 700px;
    background-color: #fff;
    z-index: 200;
    transition: transform 0.5s ease-in-out;
  }
  .screen_sm.hide {
    transform: translateY(-216px);
  }
  .screen_sm .library_menu {
    width: 100%;
  }
  .screen_sm_breadcrumb {
    position: fixed;
    width: 700px;
    background-color: #fff;
    z-index: 200;
  }
}
@media (max-width: 750px) {
  .screen_sm.hide {
    transform: translateY(-216px);
  }
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 8px 0;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #333;
}
.breadcrumb li a {
  text-decoration: none;
  color: #333;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 8px;
  color: #333;
}

.breadcrumb li:last-child:after {
  content: '';
}
.w-100 {
  width: 100% !important;
}

/* TODO　以下削除 */
.cover_post .title_white_border {
  background-color: transparent;
  border: none;
}

.cover_post .content_title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .cover_post .content_title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .cover_post .title_white_border {
    margin-top: 24px;
  }
}

/* リファクタリング */
.saha_library_detail.pt-0 {
  padding-top: 0;
}

.default-body {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 96px 0;
}

@media screen and (max-width: 767px) {
  .default-body {
    padding: 32px 0;
    gap: 56px 0;
  }
}

.default-list-body {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px 0;
}

/* ページタイトル */
.content-title {
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .content-title {
    font-size: 20px;
    padding: 8px 0;
  }
}

/* スペース */
.m-0 {
  margin: 0;
}

/* font-weight */
.fw-400 {
  font-weight: 400;
}

/* ピックアップ記事 */
.bg-white .title_white_border {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}
.bg-eee {
  background-color: #eee !important;
}

/* タイトル */
.content-title-area {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px 0;
}

.content-subtitle {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

/* border付きタイトル(既存デザインに沿って) */
.content-border-title {
  width: 88%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 35px 0;
}

.content-border-title .border-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  margin: 0;
}

.content-border-title .border-title > span {
  padding: 0 9%;
  text-align: center;
}

.content-border-title .border-title:before,
.content-border-title .border-title:after {
  content: '';
  display: block;
  width: 30%;
  height: 1px;
  background: #8f8f8f;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .content-border-title {
    width: calc(100% - 32px);
  }

  .content-border-title .border-title {
    font-size: 16px;
  }

  .content-border-title .border-title > span {
    padding: 0 16px;
  }
}
.saha_authors {
  /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
  /* padding: 180px 0 30px; */
  padding: 0px 0 30px;
  background-color: var(--color-white);
}

.saha_authors_show {
  /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
  /* padding: 180px 0 30px; */
  padding: 15px 0 30px;
  background-color: var(--color-white);
}

@media screen and (min-width: 700px) {
  .saha_authors,
  .saha_authors_show {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1280px) {
  .saha_authors,
  .saha_authors_show {
    padding: 0px 0px 30px;
  }

  .saha_authors,
  .saha_authors_show {
    width: 700px;
  }
}

@media screen and (min-width: 1280px) {
  .saha_authors_inner,
  .saha_authors_show_inner {
    padding: 0 15px;
  }
}

@media screen and (min-width: 1280px) {
  .author_list {
    padding-top: 32px;
  }
}

.saha_authors_list_wrapper {
  margin: 0;
  padding: 0;
}

.saha_authors_list {
  display: flex;
  align-items: flex-start;
  margin: 0 0 15px 0;
  padding: 18px;
  background-color: var(--color-white);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.saha_authors_list_image {
  width: 30%;
  border-radius: 50%;
}

@media screen and (min-width: 700px) {
  .saha_authors_list_image {
    width: 17%;
  }
}

.saha_authors_list_content {
  margin: 0 0 0 5px;
}

@media screen and (min-width: 700px) {
  .saha_authors_list_content {
    margin: 0 0 0 15px;
  }
}

.saha_authors_headline {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.saha_authors_p {
  margin: 10px 0 0 0;
  font-size: 13px;
  text-align: justify;
}

.saha_authors_list_link {
  display: block;
  margin: 15px 0 0 0;
  font-size: 13px;
  color: #419cf0;
  text-decoration: none;
}

.linkto_author_index {
  display: block;
  padding: 0 0 30px 0;
  text-align: right;
  font-size: 14px;
  color: #419cf0;
  text-decoration: none;
}
.saha_library_category {
  background-color: var(--color-white);
}

@media screen and (min-width: 1280px) {
  .saha_library_category {
    width: 700px;
  }
}

@media screen and (max-width: 1279.8px) {
  .saha_library_category {
    /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
    /* padding: 110px 25px 30px; */
    padding: 20px 25px 30px;
  }
}

@media screen and (max-width: 767.8px) {
  .saha_library_category {
    /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
    /* padding: 94px 0 30px; */
    padding: 20px 0 30px;
  }
}

@media screen and (min-width: 1280px) {
  .saha_library_category_inner {
    padding: 0 25px;
  }
}
.saha_library_detail {
  /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
  /* padding: 110px 0 30px 0; */
  padding: 30px 0 30px 0;
  background-color: var(--color-white);
}

@media screen and (min-width: 700px) {
  .saha_library_detail {
    /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
    /* padding: 110px 25px 30px 25px; */
    padding: 30px 25px 30px 25px;
  }
}

@media screen and (min-width: 1280px) {
  .saha_library_detail {
    padding: 0px;
    width: 700px;
  }
}

.saha_library_detail_content {
  display: contents;
}

@media screen and (min-width: 1280px) {
  .saha_library_detail_content {
    display: inline-block;
    padding: 0px 25px;
  }
}

.saha_library_detail_article_main_image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.saha_library_detail_bunner {
  width: 100%;
  margin: 10px 0;
}

.saha_library_detail_article_info {
  margin: 15px 0 5px 0;
  text-align: right;
  display: flex;
  justify-content: space-between;
}

.saha_library_card_post_update {
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.saha_library_detail_article_share_sns {
  display: flex;
  align-items: center;
  margin: 10px 0 0 0;
}

.saha_library_detail_article_share_sns p {
  margin: 0;
}

.saha_library_detail_article_share_sns a {
  padding: 0 0 0 8px;
}

.saha_library_detail_article_share_sns img {
  width: 25px;
}

.saha_library_detail_article_p {
  text-align: justify;
  font-size: 15px;
  line-height: 1.6;
}

.saha_library_detail_table_of_contents {
  padding: 10px;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
}

.saha_library_detail_table_of_contents h3 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 15px;
}

.saha_library_detail_table_of_contents_inner {
  height: 280px;
  padding: 0 0 10px 0;
  background-color: #f5f7f9;
  overflow: scroll;
}

.saha_library_detail_table_of_contents_inner ul {
  margin: 0 0 0 -14px;
  font-size: 14px;
}

.saha_library_detail_table_of_contents_inner li {
  padding: 13px 0 0 0;
}

.saha_library_detail_table_of_contents_inner li a {
  color: #419cf0;
  text-decoration: none;
}

.saha_library_detail_table_of_contents_subheadline {
  list-style: circle;
  margin: 0 0 0 15px;
}

.saha_library_detail_article_h2 {
  margin: 10px 0;
  padding: 5px 0 5px 10px;
  font-size: 20px;
  background-color: var(--color-yellow);
}

.saha_library_detail_article_h3 {
  margin: 10px 0;
  padding: 0 0 0 10px;
  font-size: 18px;
  border-left: 6px solid var(--color-yellow);
}

.saha_library_detail_article_image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.saha_library_detail_article_image_caption {
  margin: 5px 0 0 0;
}

.saha_library_detail_article_inline_a {
  color: #419cf0;
  text-decoration: none;
}

.saha_library_detail_article_conversation_comment,
.saha_library_detail_article_conversation_reply {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.saha_library_detail_article_conversation_comment img,
.saha_library_detail_article_conversation_reply img {
  width: 25%;
}

.saha_library_detail_article_conversation_comment p,
.saha_library_detail_article_conversation_reply p {
  position: relative;
  width: 70%;
  padding: 8px;
  font-size: 14px;
  background-color: var(--color-white);
  border-radius: 6px;
}

.saha_library_detail_article_conversation_comment p:after {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  pointer-events: none;
  right: -16px;
  top: 30%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--color-white);
  border: solid transparent;
}

.saha_library_detail_article_conversation_reply p:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  pointer-events: none;
  left: -16px;
  top: 30%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background-color: var(--color-white);
  border: solid transparent;
}

.saha_library_detail_article_keyword {
  padding: 3px;
  font-size: 11px;
  color: #095bd6;
  background-color: var(--color-background-gray);
  border-radius: 6px;
  text-decoration: none;
}

.saha_library_detail_article_keyword {
  margin: 0 0 0 7px;
}

.saha_library_detail_article_keyword:first-child {
  margin: 0 0 0 0;
}

.library_banner {
  margin: 50px auto;
}

.library_banner img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .library_banner {
    width: 100%;
    margin: 20px auto;
  }
}

.library_main .ez-toc-list ul,
.library_main .ez-toc-list ol {
  margin-top: 0;
  background: #f8f8f8;
}
.library_menu {
  border-bottom: 1px solid #f9e87a;
  border-top: 1px solid #f9e87a;
}

@media (max-width: 1279px) {
  .library_menu {
    width: 700px;
    margin: 37px auto 0;
    padding: 0 8px;
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 750px) {
  .library_menu {
    width: 95%;
  }
}

@media screen and (min-width: 1280px) {
  .library_menu {
    padding: 0 8px;
  }
}

.library_menu_top_button {
  padding: 5px 8px 5px 0;
  border-right: 1px solid #f9e87a;
}

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

.library_menu_list_wrap {
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.library_menu_list_wrap_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.library_menu_list {
  margin: 10px 0;
  border-right: 1px solid #f6ac0f;
  white-space: nowrap;
}

.library_menu_list:last-child {
  border-right: none;
  padding-right: 40px;
}

@media screen and (min-width: 700px) {
  .library_menu_list {
    padding: 0 15px;
  }
}

.library_menu_list a {
  display: block;
  padding: 0 10px;
  color: inherit;
  font-size: 14px;
  text-decoration: none;
}

.library_menu_list_headline {
  padding: 7px 2px 7px 10px;
  cursor: pointer;
}

.library_menu_list_arrow {
  position: relative;
  margin: 0 25px 0 0;
}

.library_menu_list_arrow:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  top: 37%;
  right: -12px;
  transform: rotate(45deg);
}

@media (max-width: 1279px) {
  .library_menu_search_area {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    background-color: var(--color-white);
    border-left: 1px solid #f9e87a;
  }
}

.for_bar_width {
  width: 100%;
  padding: 8px 0 2px 8px;
}

@media screen and (min-width: 700px) {
  .for_bar_width {
    width: 250px;
    padding: 1px 0 0px 8px;
  }
}

.library_menu_search_bar {
  width: 100%;
}

@media (max-width: 1279px) {
  .library_menu_search_bar {
    display: none;
  }
}

.library_menu_search_icon {
  padding: 5px 8px;
  cursor: pointer;
}

.library_menu_slide_in {
  animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(3%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.library_menu_slide-out {
  animation: slideOut 0.3s forwards;
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(3%);
    opacity: 0;
  }
}

.library_menu_list_accordion {
  display: none;
  position: fixed;
  top: 140px;
  left: 50%;
  z-index: 300;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 10px 10px 15px;
  background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (min-width: 700px) {
  .library_menu_list_accordion {
    top: 140px;
  }
}

@media screen and (min-width: 1280px) {
  .library_menu_list_accordion {
    top: 108px;
  }
}

@media screen and (min-width: 700px) {
  .library_menu_list:hover ul {
    display: block;
  }
}

.library_menu_list_accordion li {
  padding: 0 0 10px 0;
  color: var(--color-white);
  list-style: none;
}

.library_menu_list_accordion li:last-child {
  padding: 0;
}

.library_menu_list_headline {
  font-size: 14px;
  pointer-events: auto;
  cursor: pointer;
}
.library_pagination {
  display: flex;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid #d9d9d9;
  font-size: 1.1rem;
}

@media screen and (max-width: 767px) {
  .library_pagination {
    padding: 15px 0;
    font-size: 0.8rem;
  }
}

.library_pagination span {
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .library_pagination span {
    padding: 0 5px;
  }
}

.library_pagination a {
  color: #acacac;
}

.selected_category_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  margin: 0 0 0;
}

@media screen and (max-width: 767px) {
  .selected_category_wrapper {
    margin: 1rem 0;
  }
}

@media screen and (min-width: 1280px) {
  .selected_category_wrapper {
    padding-top: 24px;
  }
}

.selected_category_wrapper p {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .selected_category_wrapper p {
    font-size: 0.8rem;
  }
}

.selected_category_wrapper .category_name_label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  padding: 0.3rem 2rem;
  border-radius: 8px;
  background: #f9e87a;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .selected_category_wrapper .category_name_label {
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
  }
}
.ranking_tab_list {
  display: flex;
  margin: 15px 10px;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #bbbbbb;
}

.ranking_tab_list_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  color: #bbbbbb;
  cursor: pointer;
  transition: all 0.2s;
}

@media screen and (max-width: 767px) {
  .ranking_tab_list_item {
    height: 30px;
    font-size: 0.75rem;
  }
}

.ranking_tab_list_item:hover {
  color: #343434;
  background: #f8eeaf;
}

.ranking_tab_list_item.active {
  color: #343434;
  background: #f9e87a;
}

.ranking_tab_contents_item {
  display: none;
}

.ranking_tab_contents_item.show {
  display: block;
}

.ranking_number_icon {
  width: 30px;
  object-fit: contain;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .ranking_number_icon {
    width: 25px;
    min-width: 25px;
  }
}

@media screen and (max-width: 767px) {
  .feature_article_list_item {
    margin-bottom: 1rem;
    padding: 5px;
  }
}

.feature_article_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 15px 10px;
  padding: 10px 10px;
  color: #343434;
  background: linear-gradient(0deg, #f8eeaf, #f8eeaf), #dcd081;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .feature_article_title {
    margin: 0 0 15px;
    padding: 5px;
    font-size: 0.8rem;
  }
}

.feature_article_detail_container {
  display: flex;
  margin: 10px 10px 20px 10px;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .feature_article_detail_container {
    align-items: flex-start;
    width: 100%;
    margin: 0;
  }
}

.feature_article_detail_container .wrap-header-image {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .feature_article_detail_container .wrap-header-image {
    width: 35%;
  }
}

.feature_article_detail_container img {
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .feature_article_detail_container img {
    max-height: 80px;
  }
}

.feature_article_detail {
  padding: 0 1rem;
  width: 60%;
}

@media screen and (max-width: 767px) {
  .feature_article_detail {
    width: 70%;
    padding: 0 0 0 5px;
  }
}

.feature_article_description {
  display: -webkit-box;
  margin: 5px 10px;
  color: #343434;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

@media screen and (max-width: 767px) {
  .feature_article_description {
    margin: 0 0 5px;
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
  }
}

.new_article_list_item_date {
  margin: 10px 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .new_article_list_item_date {
    margin: 5px 0;
    padding-bottom: 5px;
    border: none;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .feature_article_list_item_date {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

.feature_article_text {
  color: #b4a337;
}

.new_article_list_item_date .new_label {
  color: #ec1f1f;
  font-weight: bold;
}

.new_article_list_item_date_text {
  color: #bbbbbb;
}

@media screen and (max-width: 767px) {
  .new_article_list_item_date_text {
    padding-right: 5px;
  }
}

.library-keyword {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .library-keyword {
    max-height: 60px;
    overflow: hidden;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .feature_library_keyword {
    width: calc(100% + 55%);
    margin-left: -55%;
    padding-left: 5px;
    border-top: 1px solid #e5e5e5;
  }
}

.keyword_menu {
  display: inline-block;
  margin: 0 0.5rem 0.5rem;
  padding: 5px 10px;
  border-radius: 6px;
  font-style: normal;
  font-size: 0.9rem;
  color: #095bd6;
  cursor: pointer;
  background: #e5e5e5;
  white-space: nowrap;
  transition: all 0.1s;
}

@media screen and (max-width: 767px) {
  .keyword_menu {
    margin: 0 3px 5px;
    padding: 3px 5px;
    font-size: 10px;
  }
}

a.keyword_menu:hover {
  background: #095bd6;
  color: #ffffff;
}
.saha_library_search {
  /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
  /* padding: 96px 15px 50px; */
  padding: 16px 15px 50px;
  background-color: var(--color-white);
}

@media screen and (min-width: 1280px) {
  .saha_library_search {
    width: 700px;
    padding: 0 0 30px;
  }
}

@media screen and (min-width: 1280px) {
  .saha_library_search_inner {
    padding: 0 15px;
  }
}

.search_result {
  min-height: 120px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .search_result {
    min-height: 96px;
    margin-bottom: 56px;
  }
}

.search_result .text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 100%;
  min-height: 90px;
  padding: 16px;
}

@media screen and (max-width: 767px) {
  .search_result .text {
    font-size: 16px;
    min-height: 70px;
    padding: 8px;
  }
}

.search_result .number_of_posts {
  width: 100%;
  min-height: 30px;
  padding: 0px 10px 10px 0px;
  text-align: right;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .search_result .number_of_posts {
    font-size: 14px;
    min-height: 26px;
  }
}

.no_search_results {
  position: relative;
  height: 100%;
  text-align: center;
}

.no_search_results .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .no_search_results .text {
    top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .no_search_results .text {
    font-size: 14px;
  }
}
.library_sidebar {
  width: 292px;
  margin-left: 20px;
}

.library_sidebar .library_menu_search_area .search-container {
  align-items: center;
  text-align: right;
  padding-top: 2px;
}

.library_sidebar .library_menu_search_area .search-container img {
  margin-left: 10px;
}

.library_sidebar .library_menu_search_area .search-container .library_menu_search_bar {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.library_sidebar .library_menu_search_area .search-container .search-icon {
  position: relative;
  display: inline-block;
  top: -16px;
  right: 4px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(/images/library/search_icon.svg);
  background-size: cover;
  cursor: pointer;
}

.library_sidebar .featured_new_fund_detail_card {
  display: block;
  margin: 15px 8px 0 8px;
  background-color: var(--color-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #000;
}

.library_sidebar .featured_new_fund_detail_card .title {
  text-align: left;
  font-size: 12px;
  padding: 6px;
  white-space: nowrap;
  margin-bottom: 0;
}

.library_sidebar .featured_new_fund_detail_card .title .offer_method {
  text-align: center;
  width: 10%;
  background-color: #f9e87a;
  padding: 6px;
  margin-right: 6px;
  border-radius: 4px;
}

.library_sidebar .featured_new_fund_detail_card .title .fund_name {
  display: inline-block;
  width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: bottom;
}

.library_sidebar .featured_new_fund_detail_card .fund_detail_card_content {
  align-items: flex-end;
}

.library_sidebar .featured_new_fund_detail_card .fund_detail_card_content .fund_detail_card_content_right {
  text-align: left;
}

.library_sidebar .featured_new_fund_detail_card .fund_detail_card_content .fund_detail_card_content_right .value {
  width: 74px;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.library_sidebar .featured_new_fund_detail_card .list_card_flex_area {
  padding: 0;
  padding-top: 2px;
  align-items: flex-end;
  font-size: 12px;
}

.library_sidebar .featured_new_fund_detail_card .fund_detail_card_content_left {
  position: relative;
  width: 42%;
}

.library_sidebar .featured_new_fund_detail_card .fund_detail_card_content_right {
  text-align: center;
  width: 56%;
}

.library_sidebar .featured_new_fund_detail_card .list_card_flex_area p {
  margin: 0;
}

.library_sidebar .featured_new_fund_detail_card .list_card_flex_area .color-red {
  color: #ed495d;
}

.library_sidebar .popular_articles_ranking,
.library_sidebar .recent_posts {
  margin-top: 24px;
  background-color: #fff;
  padding: 8px;
}

.library_sidebar .popular_articles_ranking .title,
.library_sidebar .recent_posts .title {
  text-align: center;
  line-height: 24px;
}

.library_sidebar .popular_articles_ranking .title .text,
.library_sidebar .recent_posts .title .text {
  display: inline-block;
  height: 100%;
  padding-left: 4px;
  vertical-align: middle;
}

.library_sidebar .popular_articles_ranking .tabs,
.recent_posts .tabs {
  background-color: #fff;
  margin: 16px 0;
}

.library_sidebar .popular_articles_ranking .tab_item {
  width: calc(100% / 3);
  height: 40px;
  border-bottom: 2px solid #9e9e9e;
  line-height: 40px;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  font-size: 14px;
}

.library_sidebar .popular_articles_ranking .yellow_button,
.library_sidebar .recent_posts .yellow_button {
  margin-bottom: 16px;
}

.library_sidebar .popular_articles_ranking input[name='tab_item'] {
  display: none;
}

.library_sidebar .popular_articles_ranking .tab_content {
  display: none;
  padding: 0 0;
  clear: both;
  overflow: hidden;
}

.library_sidebar .popular_articles_ranking #popular_articles_ranking_daily:checked ~ #popular_articles_ranking_daily_content,
.library_sidebar .popular_articles_ranking #popular_articles_ranking_weekly:checked ~ #popular_articles_ranking_weekly_content,
.library_sidebar .popular_articles_ranking #popular_articles_ranking_monthly:checked ~ #popular_articles_ranking_monthly_content {
  display: block;
}

.library_sidebar .popular_articles_ranking .tabs input:checked + .tab_item {
  background-color: #f9e87a;
}

.library_sidebar .popular_articles_ranking .article_list_item,
.library_sidebar .recent_posts .article_list_item {
  display: flex;
  text-decoration: none;
  color: #000;
}

.library_sidebar .recent_posts .article_list_item {
  margin-top: 24px;
}

.library_sidebar .popular_articles_ranking .article_list_item .article_title img,
.library_sidebar .recent_posts .article_list_item .article_title img {
  width: 100px;
  height: 56px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.library_sidebar .popular_articles_ranking .rank_number {
  display: inline-block;
  position: relative;
  top: 20px;
  left: 2px;
  background-color: #f9e87a;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  line-height: 12px;
  text-align: center;
  z-index: 100;
  font-size: 12px;
  border: 1px solid #fff;
}

.library_sidebar .popular_articles_ranking .article_detail_container,
.library_sidebar .recent_posts .article_detail_container {
  margin-left: 16px;
  width: 100%;
  height: 56px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  font-size: 12px;
}

.library_sidebar .popular_articles_ranking .article_detail_container .article_detail_description,
.library_sidebar .recent_posts .article_detail_container .article_detail_description {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.library_sidebar .popular_articles_ranking .article_detail_container .date_text,
.library_sidebar .recent_posts .article_detail_container .date_text {
  text-align: right;
  line-height: 12px;
}

.library_sidebar .popular_articles_ranking .article_detail_container .new_label,
.library_sidebar .recent_posts .article_detail_container .new_label {
  color: #ec1f1f;
  font-weight: bold;
}

.library_sidebar .banner {
  display: block;
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
}

.library_sidebar .banner img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.wrap_saha_library_top,
.wrap_saha_library_search,
.wrap_saha_library_detail,
.wrap_saha_library_category,
.wrap_saha_authors,
.wrap_saha_authors_show {
  display: flex;
  justify-content: center;
}

@media (max-width: 1279px) {
  .wrap_saha_library_top,
  .wrap_saha_library_search,
  .wrap_saha_library_detail,
  .wrap_saha_library_category,
  .wrap_saha_authors,
  .wrap_saha_authors_show {
    display: block;
  }
}

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

@media screen and (min-width: 1280px) {
  .saha_library_top {
    width: 700px;
  }
}

@media screen and (min-width: 700px) and (max-width: 1279px) {
  .saha_library_top {
    /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
    /* padding: 90px 25px 30px 25px; */
    padding: 10px 25px 30px 25px;
  }
}

@media (max-width: 699px) {
  .saha_library_top {
    /* TODO: 一時的にパンクズとメニュー（SP, TB）を非表示。方針が決まり次第修正 */
    /* padding: 170px 0 30px 0; */
    padding: 10px 0 30px 0;
  }
}

@media screen and (min-width: 1280px) {
  .saha_library_top_inner {
    padding: 0 25px;
  }
}

.saha_library_slider_container {
  position: relative;
  width: 100%;
  margin: 15px calc(50% - 50%) 20px;
}

@media screen and (min-width: 700px) {
  .saha_library_slider_container {
    width: 100%;
    margin: 15px 0 20px;
  }
}

.saha_library_top_slider_area_wrap {
  margin: 0 auto 50px;
}

.saha_library_top_slider_area {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: inherit;
}

.saha_library_top_slider_area_headline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  padding: 28px 7px 0;
  font-size: 16px;
  overflow: hidden;
}

.saha_library_slider_container .swiper-button-prev,
.saha_library_slider_container .swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  outline: none;
}

.saha_library_slider_container .swiper-button-prev {
  left: 5px;
}

.saha_library_slider_container .swiper-button-next {
  right: 5px;
}

.saha_library_slider_container .swiper-button-prev img,
.saha_library_slider_container .swiper-button-next img {
  width: 10px;
}

@media screen and (min-width: 700px) {
  .saha_library_slider_container .swiper-button-prev img,
  .saha_library_slider_container .swiper-button-next img {
    width: 15px;
    object-fit: contain;
  }
}

.saha_library_slider_container .swiper-button-prev:after,
.saha_library_slider_container .swiper-button-next:after {
  content: '';
  display: none;
}

.saha_library_slider_container .swiper-pagination-bullet {
  width: 35px;
  height: 3px;
  border-radius: 0;
  outline: none;
}

.saha_library_slider_container .swiper-pagination-bullet-active {
  background: #dcd081;
}

.saha_library_card_info {
  display: flex;
  justify-content: right;
  align-items: center;
  text-align: right;
  padding: 10px 7px 5px 0;
}

.saha_library_card_new_mark {
  margin: 0;
  color: #ec1f1f;
  font-size: 13px;
}

.wrap_saha_library_card_public_relations {
  margin-top: auto;
}

.saha_library_card_public_relations {
  font-size: 11px;
  color: #f6ac0e;
  border: 1px solid #f6ac0e;
  padding: 0px 10px;
  display: inline-block;
  height: 18px;
  line-height: 18px;
}

.saha_library_card_post_date {
  margin: 0 0 0 10px;
  color: #bbbbbb;
  font-size: 13px;
}

.saha_library_top_slider_area_img {
  width: 100%;
  padding: 0;
  border: none;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.saha_library_top_article_wrap {
  padding: 20px 0 40px 0;
}

.wrap_saha_library_search .saha_library_top_article_wrap {
  height: 80%;
}

.saha_library_headline {
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
}

.saha_library_headline {
  margin-top: 36px;
}

.saha_library_top_article_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.saha_library_top_article {
  width: 48%;
  margin: 0 0 15px 0;
  background-color: var(--color-white);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: inherit;
}

.saha_library_top_article_img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.saha_library_top_article_headline {
  height: 40px;
  margin: 8px 0 0;
  padding: 0 5px;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.saha_library_top_feature_article {
  padding: 0 0 80px 0;
}

.feature_article_card_img {
  width: 35%;
  max-height: 80px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.library_footer_link_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 1280px) {
  .library_footer_link_wrapper {
    margin-bottom: 60px;
  }
}

.library_footer_logo {
  width: 250px;
  padding: 0 0 20px 0;
}

@media screen and (min-width: 700px) {
  .library_footer_logo {
    width: 300px;
  }
}

.library_footer_link_author {
  margin-bottom: 16px;
}

.library_footer_link_policy {
  font-size: 12px;
  color: #343434;
  text-decoration: none;
}

/* TODO　以下削除 */
@media screen and (min-width: 1322px) {
  .saha_library_top_feature_article .feature_article_card_wrapper {
    width: auto;
  }
}

@media screen and (min-width: 2000px) {
  .feature_article_card_wrapper {
    width: auto;
  }
}
.mypage_top,
.mypage_edit,
.mypage_character {
  padding: 0 0 30px 0;
}

.mypage_edit_area {
  margin: 0 0 40px 0;
}

.mypage_edit_area_wrapper {
  background-color: var(--color-background-yellow);
  border: 1px solid var(--color-border-yellow);
  border-radius: 10px;
}

.mypage_edit_area_wrapper_inner {
  width: 100%;
  padding: 15px 25px 20px;
}

@media screen and (min-width: 700px) {
  .mypage_edit_area_wrapper_inner {
    padding: 15px 120px 20px;
  }
}

.mypage_edit_area_select_box_area {
  margin: 0 0 15px 0;
}

.mypage_edit_area_select_box_area:last-child {
  margin: 0 0 0 0;
}

.mypage_edit_area_select_box_text {
  display: block;
  font-size: 15px;
}

.mypage_edit_area_checkbox_text {
  font-size: 13px;
}

.mypage_edit_area_select_box {
  padding: 3px;
  width: 100%;
  font-size: 15px;
}

.mypage_edit_area_checkbox_wrapper {
  width: 100%;
  padding: 10px 25px;
  background-color: #f0f0f0;
}

@media screen and (min-width: 700px) {
  .mypage_edit_area_checkbox_wrapper {
    padding: 10px 120px;
  }
}

.mypage_edit_area_checkbox_title {
  margin: 0 0 10px 0;
}

.mypage_edit_area_checkbox_wrapper_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mypage_edit_area_checkbox_wrap {
  width: 50%;
  padding: 0 0 12px 0;
}

.popup_container {
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 16px;
  width: 90%;
  max-width: 283px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 16px;
  z-index: 1000;
}

.popup_container_title {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.popup_container_content {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.popup_confirm_button {
  color: #333333;
  margin-top: 16px;
  padding: 12px 32px;
  width: 100%;
  max-width: 260px;
  height: 45px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  background-color: #f9e87a;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 700px) {
  .popup_container {
    padding: 32px;
    border-radius: 0;
    max-width: 640px;
  }

  .popup_container_title {
    font-size: 20px;
  }
  .popup_container_content {
    margin-top: 24px;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
  }

  .popup_confirm_button {
    margin-top: 48px;
    font-weight: 400;
    border-radius: 40px;
  }
}

.popup_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/* 新着のクチコミのスタイル */
.mypage_top .mypage_post_review_nothing .section_first_headline {
  margin: 12px 0 20px 0;
}
.layout_main.notification_setting {
  padding-bottom: 48px;
}

@media screen and (max-width: 700px) {
  .notification_setting .layout_inner_1280 {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}

.notification_setting .section_first_headline {
  margin-bottom: 0;
}

@media screen and (max-width: 700px) {
  .notification_setting .section_first_headline {
    font-size: 16px;
    margin-top: 147px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 700px) {
  .section_first_headline:before,
  .section_first_headline:after {
    width: 20%;
  }
}

.notification_setting .h3 {
  margin-top: 60px;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 700px) {
  .notification_setting .h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
  }
}

.notice-settings p {
  margin: 0;
}

.notice-settings .notice-group {
  margin-bottom: 32px;
}

@media screen and (max-width: 700px) {
  .notice-settings .notice-group {
    margin-bottom: 0px;
    margin-top: 20px;
  }
}

.notice-settings .notice-group .check-box-group {
  font-size: 16px;
}

@media screen and (max-width: 700px) {
  .notice-settings .notice-group .check-box-group {
    font-size: 14px;
  }
}

.notice-settings .notice-group .note {
  font-size: 12px;
}

.notice-settings .notice-group .check-box-group input[type='checkbox'] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.notice-settings .notice-group .check-box-group input[type='checkbox'] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
}

.notice-settings .notice-group .check-box-group input[type='checkbox']::before,
.notice-settings .notice-group .check-box-group input[type='checkbox']::after {
  content: '';
  display: block;
  position: absolute;
}

.notice-settings .notice-group .check-box-group input[type='checkbox']::before {
  background-color: #fff;
  width: 18px;
  height: 18px;
  border: solid 2px #8f8f8f;
  border-radius: 2px;
  transform: translateY(-68%);
  top: 50%;
  left: 5px;
}

.notice-settings .notice-group .check-box-group input[type='checkbox']:checked::before {
  background-color: #f6ac0e;
  border: none;
}

.notice-settings .notice-group .check-box-group input[type='checkbox']::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  height: 6px;
  width: 12px;
  transform: rotate(-45deg);
  top: -8px;
  left: 8px;
}

.notice-settings .notice-group .check-box-group input[type='checkbox']:checked::after {
  opacity: 1;
}

.right-area .note,
.notification_setting .note {
  font-size: 14px;
}

@media screen and (max-width: 700px) {
  .right-area .note,
  .notification_setting .note {
    font-size: 12px;
  }
}

.notification_setting .yellow_button {
  margin-top: 48px;
}
.ranking_fund_page {
  padding: 0 0 30px 0;
}

.ranking_fund_page .page_title_area {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.ranking_fund_page .filter_area {
  width: 100%;
  margin: 0;
  padding: 0 0 7px;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .filter_area {
    padding: 0 0 24px;
  }
}

.ranking_fund_page .layout_inner_1280 {
  width: 100%;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .layout_inner_1280 {
    width: 95%;
  }
}

.ranking_fund_page .fund_caption {
  display: none;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .fund_caption {
    display: block;
    margin: 24px 0 0;
    color: #333;
    font-size: 14px;
    text-align: center;
  }
}

/* ランキングテーブル */
@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table th {
    padding: 9px 6px;
  }

  .ranking_fund_page .ranking_table th:nth-child(1) {
    width: 6%;
  }
  .ranking_fund_page .ranking_table th:nth-child(3),
  .ranking_fund_page .ranking_table th:nth-child(5),
  .ranking_fund_page .ranking_table th:nth-child(6) {
    width: 10%;
  }
  .ranking_fund_page .ranking_table th:nth-child(4) {
    width: 15%;
  }
  .ranking_fund_page .ranking_table th:nth-child(7) {
    width: 21%;
  }
  .ranking_fund_page .ranking_table th:nth-child(8) {
    width: 10%;
  }
}

@media screen and (min-width: 1100px) {
  .ranking_fund_page .ranking_table th:nth-child(7) {
    width: 15%;
  }
}

.ranking_fund_page .ranking_table .ranking_table_rank span {
  font-size: 12px;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table .ranking_table_rank span {
    font-size: 1.143vw;
  }
}

@media screen and (min-width: 1100px) {
  .ranking_fund_page .ranking_table .ranking_table_rank span {
    font-size: 1.143vw;
  }
}

@media screen and (min-width: 1400px) {
  .ranking_fund_page .ranking_table .ranking_table_rank span {
    font-size: 16px;
  }
}

.ranking_fund_page .ranking_table td.ranking_table_image {
  top: 36px;
  height: 64px;
  text-align: left;
}

.ranking_fund_page .ranking_table td.ranking_table_image a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.ranking_fund_page .ranking_table td.ranking_table_image img {
  display: inline-block;
  max-width: 119px;
  max-height: 64px;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table td.ranking_table_image img {
    max-width: 3.786vw;
    max-height: 2.857vw;
    margin-right: 8px;
  }
}

@media screen and (min-width: 1400px) {
  .ranking_fund_page .ranking_table td.ranking_table_image img {
    max-width: 53px;
    max-height: 40px;
  }
}

.ranking_fund_page .ranking_table td.ranking_table_image span {
  display: none;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table td.ranking_table_image span {
    display: inline-block;
    max-width: 13.429vw;
    font-size: 1vw;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

@media screen and (min-width: 1400px) {
  .ranking_fund_page .ranking_table td.ranking_table_image span {
    max-width: 188px;
    font-size: 14px;
  }
}

.ranking_fund_page .ranking_table_text span {
  font-size: 10px;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table_text span {
    font-size: 1.143vw;
  }
}

@media screen and (min-width: 1400px) {
  .ranking_fund_page .ranking_table_text span {
    font-size: 16px;
  }
}

.ranking_fund_page .ranking_table_text.ranking_table_colored_td span {
  font-size: 18px;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table_text.ranking_table_colored_td span {
    font-size: 1.143vw;
  }
}

@media screen and (min-width: 1400px) {
  .ranking_fund_page .ranking_table_text.ranking_table_colored_td span {
    font-size: 16px;
  }
}

.ranking_fund_page .ranking_table td:nth-child(7) span {
  font-size: 10px;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table td:nth-child(7) span {
    font-size: 0.857vw;
    text-indent: 1em;
  }
}

@media screen and (min-width: 1400px) {
  .ranking_fund_page .ranking_table td:nth-child(7) span {
    font-size: 12px;
  }
}

.ranking_fund_page .ranking_table td:nth-child(3)::before {
  content: '想定利回り';
}
.ranking_fund_page .ranking_table td:nth-child(4)::before {
  content: '募集金額';
}
.ranking_fund_page .ranking_table td:nth-child(5)::before {
  content: '運用期間';
}
.ranking_fund_page .ranking_table td:nth-child(6)::before {
  content: '最低投資金額';
}
.ranking_fund_page .ranking_table td:nth-child(7)::before {
  content: '募集期間';
}

.ranking_fund_page .ranking_table_text {
  width: 52%;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table_text {
    width: auto;
  }
}

.ranking_fund_page .ranking_table_text.ranking_table_colored_td {
  width: calc(52% + 6px);
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .ranking_table_text.ranking_table_colored_td {
    width: auto;
  }
}

.ranking_fund_page .ranking_table_text::before {
  width: 45%;
}

.ranking_fund_page .sort_offer_amount .ranking_table_text {
  width: 58%;
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .sort_offer_amount .ranking_table_text {
    width: auto;
  }
}

.ranking_fund_page .sort_offer_amount .ranking_table_text.ranking_table_colored_td {
  width: calc(58% + 6px);
}

@media screen and (min-width: 700px) {
  .ranking_fund_page .sort_offer_amount .ranking_table_text.ranking_table_colored_td {
    width: auto;
  }
}

.ranking_fund_page .sort_offer_amount .ranking_table_text::before {
  width: 40%;
}

.ranking_table .sort_fund_popularity_rank tr {
  padding: 6px 0;
}

.sort_fund_popularity_rank .ranking_table_text {
  margin: -0.5px 16px;
}
.saha_recommend_funds_main {
  background-color: #fff8ca;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_main .layout_main_bg {
    background: rgba(52, 52, 52, 0.4);
  }
}

.saha_recommend_funds_main .layout_inner {
  width: 91%;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_main .layout_inner {
    width: 374px;
  }
}

.saha_recommend_funds {
  padding: 48px 0;
  text-align: center;
}

.saha_recommend_funds .error_messages {
  padding-left: 30px;
  color: var(--color-red);
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}

.recommend_funds {
  position: relative;
  padding: 23px 21px;
  background-color: #fff;
  border: 1px solid #c3c3c3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

@media screen and (min-width: 700px) {
  .recommend_funds {
    padding: 23px 23px;
  }
}

.recommend_funds_error {
  display: none;
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 348px;
  margin: 0 auto;
  padding: 16px 24px;
  background-color: #ed495d;
  border-radius: 4px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.recommend_funds_error_text {
  margin: 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
}

.recommend_funds_step2 {
  display: none;
}

.recommend_funds_tagline {
  margin: 0;
  font-size: 14px;
}

.recommend_funds_title {
  margin: 7px 0 0;
  font-size: 24px;
  letter-spacing: 2px;
}

.recommend_funds_start {
  margin: 8px 0 0;
}

.recommend_funds_start::after {
  display: block;
  content: '▼';
  margin-top: 1px;
  color: #ff7f50;
  font-size: 15px;
}

.recommend_funds_step {
  margin: 33px 0 0;
  font-size: 14px;
}
.recommend_funds_step2 .recommend_funds_step {
  margin: 24px 0 0;
}

.recommend_funds_figure {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  margin: 32px 0 0;
}
.recommend_funds_step2 .recommend_funds_figure {
  margin: 28px 0 0;
}

.recommend_funds_figure_image {
  width: 66.72px;
  height: 64px;
}
.recommend_funds_step2 .recommend_funds_figure_image {
  width: 69px;
}

.recommend_funds_figcaption {
  position: relative;
  padding: 7px 19px 8px 18px;
  background-color: #fff8ca;
  border-radius: 8px;
  text-align: left;
}

.recommend_funds_figcaption::before {
  content: '';
  position: absolute;
  bottom: 21%;
  left: -14px;
  border: 6px solid transparent;
  border-right: 8px solid #fff8ca;
}

.recommend_funds_fieldset {
  margin: 28px 0 0;
  padding: 0;
  border: none;
  text-align: left;
}
.recommend_funds_fieldset + .recommend_funds_fieldset {
  margin: 40px 0 0;
}
.recommend_funds_step2 .recommend_funds_fieldset + .recommend_funds_fieldset {
  margin: 20px 0 0;
}
.recommend_funds_step2 .recommend_funds_fieldset + .recommend_funds_fieldset.investment_experience {
  margin: 28px 0 0;
}

.recommend_funds_legend {
  margin: 0 0 8px 0;
  font-size: 14px;
}

.recommend_funds_legend em {
  display: inline-block;
  margin-right: 12px;
  color: #ed495d;
  font-style: normal;
}

.recommend_funds_legend .error {
  display: none;
  color: #ed495d;
  font-size: 12px;
}

.recommend_funds_form_wrapper {
  position: relative;
  margin: 12px 0 0 0;
  font-size: 0;
}
.recommend_funds_step2 .recommend_funds_form_wrapper {
  margin: 8px 0 0 0;
}

.recommend_funds_form_wrapper input[type='radio'] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.recommend_funds_form_wrapper input[type='radio'] + label {
  display: inline-block;
  position: relative;
  padding-left: 34px;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.recommend_funds_form_wrapper input[type='radio'] + label::before,
.recommend_funds_form_wrapper input[type='radio'] + label::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 700px) {
  .recommend_funds_form_wrapper input[type='radio'] + label::before,
  .recommend_funds_form_wrapper input[type='radio'] + label::after {
    top: calc(50% + 2px);
  }
}

.recommend_funds_form_wrapper input[type='radio'] + label::before {
  width: 16px;
  height: 16px;
  left: 2px;
  background-color: #fff;
  border: 2px solid #808080;
  border-radius: 50%;
}

.recommend_funds_form_wrapper input[type='radio'] + label::after {
  width: 8px;
  height: 8px;
  left: 6px;
  background-color: #f6ac0e;
  border-radius: 50%;
  opacity: 0;
}

.recommend_funds_form_wrapper input[type='radio']:checked + label::before {
  border-color: #f6ac0e;
}

.recommend_funds_form_wrapper input[type='radio']:checked + label::after {
  opacity: 1;
}

.recommend_funds_form_select_box {
  position: relative;
  margin: -8px 0 0;
}

.recommend_funds_form_select_box::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 5px;
  background-color: #333;
  content: '';
  pointer-events: none;
  bottom: calc(50% - 3px);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.recommend_funds_form_select_box .recommend_funds_select {
  width: 100%;
  min-height: 48px;
  padding: 0 38px 0 16px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  background-color: #fff;
  outline-color: #f6ac0e;
  color: #49454f;
  font-size: 12px;
  line-height: 30px;
  appearance: none;
  cursor: pointer;
}

.recommend_funds_form_select_box .recommend_funds_select.error {
  border: 2px solid #ed495d;
  outline-color: #ed495d;
}

.recommend_funds_form_select_box .recommend_funds_select option {
  color: #49454f;
}
.recommend_funds_form_select_box .recommend_funds_select:invalid,
.recommend_funds_form_select_box .recommend_funds_select option:first-child {
  color: #8f8f8f;
}

.recommend_funds .yellow_button {
  width: 100%;
  margin: 40px auto 0;
  padding: 9px 10px 10px;
  cursor: pointer;
  transition: 0.4s;
}

.recommend_funds .yellow_button:hover {
  opacity: 0.8;
}

/* checkbox */
.recommend_funds_form_check_boxs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: -20px -4px 0;
}

.recommend_funds_form_check_box_inner {
  width: calc(50% - 8px);
}

.recommend_funds_form_check_box_inner label {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 20px 4px 0 4px;
  padding-left: 28px;
  font-size: 12px;
  cursor: pointer;
}

.recommend_funds_form_check_box_inner input[type='checkbox'] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.recommend_funds_form_check_box_inner label::before,
.recommend_funds_form_check_box_inner label::after {
  content: '';
  display: block;
  position: absolute;
}

.recommend_funds_form_check_box_inner label::before {
  width: 18px;
  height: 18px;
  top: 1px;
  left: 0;
  background-color: #fff;
  border: 1px solid #8f8f8f;
  border-radius: 3px;
}

.recommend_funds_form_check_box_inner label::after {
  width: 6px;
  height: 12px;
  border-right: 3px solid #f6ac0e;
  border-bottom: 3px solid #f6ac0e;
  top: 3px;
  left: 6px;
  transform: rotate(45deg);
  opacity: 0;
}

.recommend_funds_form_check_box_inner input[type='checkbox']:checked + label::after {
  opacity: 1;
}

.recommend_funds_form_check_box_inner label span {
  font-size: 12px;
}

/* form_reset_popup */
.form_reset_popup {
  transition: 0.4s;
}

.form_reset_popup .popup_container {
  display: none;
  /*display: block; /* for debug */
  z-index: 1002;
  width: calc(100% - 32px);
  max-width: none;
  padding: 40px 24px 32px;
  border: 1px solid #c3c3c3;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 700px) {
  .form_reset_popup .popup_container {
    width: 640px;
    padding: 40px 48px 44px;
  }
}

.form_reset_popup .close_btn {
  position: relative;
  width: 32px;
  height: 32px;
  margin: -28px -16px 0 auto;
  cursor: pointer;
  transition: 0.4s;
}

@media screen and (min-width: 700px) {
  .form_reset_popup .close_btn {
    margin: -28px -36px 0 auto;
  }
}

.form_reset_popup .close_btn:hover {
  opacity: 0.8;
}

.form_reset_popup .close_btn::before,
.form_reset_popup .close_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 20px;
  background-color: #8f8f8f;
}

@media screen and (min-width: 700px) {
  .form_reset_popup .close_btn::before,
  .form_reset_popup .close_btn::after {
    height: 23px;
  }
}

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

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

.form_reset_popup .popup_container_title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 700px) {
  .form_reset_popup .popup_container_title {
    margin: 8px 0 0;
    font-size: 24px;
  }
}

.form_reset_popup .popup_container_text {
  margin: 12px 0 0;
  color: #8f8f8f;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .form_reset_popup .popup_container_text {
    margin: 28px 0 0;
    font-size: 16px;
  }
}

.form_reset_popup .button_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 24px;
  margin: 24px 0 0 0;
  width: 100%;
}

@media screen and (min-width: 700px) {
  .form_reset_popup .button_wrap {
    gap: 0 48px;
    margin: 40px 0 0 0;
  }
}

.form_reset_popup .button_wrap .confirm_button {
  width: 248px;
  padding: 9px 32px 10px;
  background-color: #d9d9d9;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  color: #343434;
  font-size: 14px;
  transition: 0.4s;
}

@media screen and (min-width: 700px) {
  .form_reset_popup .button_wrap .confirm_button {
    padding: 10px 32px 11px;
    font-size: 16px;
  }
}

.form_reset_popup .button_wrap .cancel_button {
  width: 248px;
  padding: 9px 32px 10px;
  background-color: #f9e87a;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  color: #343434;
  font-size: 14px;
  transition: 0.4s;
}

@media screen and (min-width: 700px) {
  .form_reset_popup .button_wrap .cancel_button {
    padding: 10px 32px 11px;
    font-size: 16px;
  }
}

.form_reset_popup .popup_overlay {
  display: none;
  /*display: block; /* for debug */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 52, 52, 0.4);
  z-index: 1001;
}

/* recommend_funds_result */
.saha_recommend_funds.result {
  padding: 24px 0 48px 0;
}

.saha_recommend_funds.result .recommend_funds {
  margin: 24px 0 0;
  padding: 17px 17px;
  border: none;
  box-shadow: none;
}

.saha_recommend_funds.result.bullfight .recommend_funds.result {
  background: #fff url(/images/recommend_funds/bg_bullfight.png) no-repeat 17px 105px;
  background-size: 330px 320px;
}
.saha_recommend_funds.result.dairy_cattle .recommend_funds.result {
  background: #fff url(/images/recommend_funds/bg_dairy_cattle.png) no-repeat 17px 105px;
  background-size: 330px 320px;
}
.saha_recommend_funds.result.pasturing_cattle .recommend_funds.result {
  background: #fff url(/images/recommend_funds/bg_pasturing_cattle.png) no-repeat 17px 105px;
  background-size: 330px 320px;
}
.saha_recommend_funds.result.water_buffalo .recommend_funds.result {
  background: #fff url(/images/recommend_funds/bg_water_buffalo.png) no-repeat 17px 105px;
  background-size: 330px 320px;
}

.recommend_funds_result_title {
  height: 72.5px;
  margin: 0;
  padding: 17px 0 0;
  background: url(/images/recommend_funds/bg_ushi_shadow.png) no-repeat center top;
  background-size: 101px 72.5px;
  font-size: 20px;
  font-weight: normal;
}

.recommend_funds_result_copy {
  margin: 22px 0 0;
  font-size: 20px;
}

.recommend_funds_result_type {
  margin: -5px 0 0;
  color: #1e1e1e;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.recommend_funds_result_text {
  margin: 232px 0 0;
  padding: 16px 14px;
  background-color: #f9e87a;
  border-radius: 8px;
  color: #1e1e1e;
  font-size: 16px;
  text-align: left;
}

/* recommend_funds_tips */
.recommend_funds_tips_wrapper {
  background: linear-gradient(180deg, rgb(249, 232, 122) 0%, rgb(249, 232, 122, 1) 57vw, rgb(255, 255, 255) 57vw, rgb(255, 255, 255) 100%);
  border-radius: 8px;
}
@media screen and (min-width: 700px) {
  .recommend_funds_tips_wrapper {
    background: linear-gradient(180deg, rgb(249, 232, 122) 0%, rgb(249, 232, 122, 1) calc(116px + 163px - 2px), rgb(255, 255, 255) calc(116px + 163px - 2px), rgb(255, 255, 255) 100%);
  }
}

.saha_recommend_funds.result .recommend_funds.tips {
  padding: 29px 17px 17px;
  background: url(/images/recommend_funds/bg_recommend_funds_tips.png) no-repeat center 100px;
  background-size: calc(100vw - 9%) auto;
}
@media screen and (min-width: 700px) {
  .saha_recommend_funds.result .recommend_funds.tips {
    background: url(/images/recommend_funds/bg_recommend_funds_tips.png) no-repeat center 116px;
    background-size: 100% auto;
  }
}

.recommend_funds_tips_copy {
  margin: 0;
  color: #1e1e1e;
  font-size: 20px;
}

.recommend_funds_tips_title {
  margin: 1px 0 0;
  color: #1e1e1e;
  font-size: 24px;
  font-weight: bold;
}

.recommend_funds_tips_style {
  position: relative;
  margin: 44px 0 0;
  padding: 17px 14px;
  background-color: #fff;
  border: 3px solid #343434;
}

.recommend_funds_tips_style::before {
  content: '';
  display: block;
  position: absolute;
  top: -3px;
  right: -3px;
  width: 42px;
  height: 42px;
  background: url(/images/recommend_funds/bg_recommend_funds_tips_style.png) no-repeat left top;
  background-size: 42px 42px;
}

.recommend_funds_tips_style_title {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 0 7px;
  border-bottom: 1px solid #333;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: bold;
}

.recommend_funds_tips_style_title::before,
.recommend_funds_tips_style_title::after {
  content: '';
  display: inline-block;
  position: absolute;
}
.recommend_funds_tips_style_title::before {
  left: 50%;
  bottom: -15px;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 8px solid #333;
}
.recommend_funds_tips_style_title::after {
  left: 50%;
  bottom: -12px;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 7px solid #fff;
}

.recommend_funds_tips_style_text {
  margin: 17px 0 0;
  color: #1e1e1e;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.04em;
}

.recommend_funds_tips_project {
  margin: 23px 0 0;
}

.recommend_funds_tips_project_title_wrapper {
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding-left: 22px;
}

.recommend_funds_tips_project_title_image {
  width: 50px;
  height: 57px;
}

.recommend_funds_tips_project_title {
  margin: 0;
  color: #1e1e1e;
  font-size: 14px;
}

.recommend_funds_tips_project_list_wrapper {
  padding: 17px 14px 16px 8px;
  background: #fff8ca;
  border-radius: 8px;
}

.recommend_funds_tips_project_list {
  margin: 0;
  padding: 0 0 0 1.8em;
  text-align: left;
}

.recommend_funds_tips_project_item {
  margin: 0;
  color: #1e1e1e;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* recommend_funds_type */
.recommend_funds_type_wrapper {
  background: linear-gradient(180deg, rgb(249, 232, 122) 0%, rgb(249, 232, 122, 1) 55vw, rgb(255, 255, 255) 55vw, rgb(255, 255, 255) 100%);
  border-radius: 8px;
}
@media screen and (min-width: 700px) {
  .recommend_funds_type_wrapper {
    background: linear-gradient(180deg, rgb(249, 232, 122) 0%, rgb(249, 232, 122, 1) calc(116px + 114px - 2px), rgb(255, 255, 255) calc(116px + 114px - 2px), rgb(255, 255, 255) 100%);
  }
}

.saha_recommend_funds.result .recommend_funds.type {
  padding: 25px 17px 17px;
  background-color: transparent;
  background: url(/images/recommend_funds/bg_recommend_funds_type.png) no-repeat center 116px;
  background-size: calc(100vw - 9%) auto;
}
@media screen and (min-width: 700px) {
  .saha_recommend_funds.result .recommend_funds.type {
    background: url(/images/recommend_funds/bg_recommend_funds_type.png) no-repeat center 116px;
    background-size: 100% auto;
  }
}

.recommend_funds_type_copy {
  margin: 0;
  color: #1e1e1e;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.recommend_funds_type_title {
  display: inline-block;
  position: relative;
  margin: -1px 0 0;
  padding: 0 0 1px;
  border-bottom: 1px solid #333;
  color: #1e1e1e;
  font-size: 24px;
  font-weight: bold;
  font-feature-settings: 'halt' on;
}
.recommend_funds_type_title.no_sub {
  border-bottom: none;
}

.recommend_funds_type_title::before,
.recommend_funds_type_title::after {
  content: '';
  display: inline-block;
  position: absolute;
}
.recommend_funds_type_title::before {
  left: 50%;
  bottom: -15px;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 8px solid #333;
}
.recommend_funds_type_title::after {
  left: 50%;
  bottom: -12px;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 7px solid #f9e87a;
}
.recommend_funds_type_title.no_sub::before,
.recommend_funds_type_title.no_sub::after {
  display: none;
}

.recommend_funds_type_title_sub {
  margin: 8px 0 0;
  color: #1e1e1e;
  font-size: 10px;
}

.recommend_funds_type_text_wrapper {
  position: relative;
  margin: 65px 0 0;
  color: #1e1e1e;
  font-size: 10px;
}
.recommend_funds_type_text_wrapper::before,
.recommend_funds_type_text_wrapper::after {
  content: '';
  display: block;
  position: absolute;
}
.recommend_funds_type_text_wrapper::before {
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-top: 1px solid #343434;
  border-left: 1px solid #343434;
}
.recommend_funds_type_text_wrapper::after {
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-bottom: 1px solid #343434;
  border-right: 1px solid #343434;
}

.recommend_funds_type_text {
  margin: 0;
  padding: 8px 10px;
  color: #1e1e1e;
  font-size: 14px;
  text-align: left;
}

.recommend_funds_type_sns_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 16px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.recommend_funds_type_sns_item {
  display: block;
  width: calc((100% / 3) - 8px);
}

.recommend_funds_type_sns_item .sns_link {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  line-height: 38px;
  text-decoration: none;
  transition: 0.4s;
}

.recommend_funds_type_sns_item .sns_link .sns_icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.recommend_funds_type_url {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 0;
}

.recommend_funds_type_url .recommend_funds_copy_url {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  line-height: 38px;
  text-decoration: none;
  transition: opacity 0.4s;
}

.recommend_funds_type_url .recommend_funds_copy_url.text_msg {
  color: #ff7f50;
}

text_orange .recommend_funds_type_url .recommend_funds_copy_url:hover {
  opacity: 0.8;
}
.recommend_funds_type_url .recommend_funds_copy_url.text_msg:hover {
  opacity: 1;
}

.recommend_funds_type_recommend {
  margin: 47px 0 0;
}

.recommend_funds_type_recommend .yellow_button {
  margin: 0;
}

/* 一覧 */
.recommend_funds_page .page_title_area {
  display: block;
  height: auto;
  margin: 0;
}

.recommend_funds_page .page_title_area_headline {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 32px 16px 29px;
  font-size: 16px;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
}

@media screen and (min-width: 700px) {
  .recommend_funds_page .page_title_area_headline {
    padding: 35px 5.934vw 34px;
    font-size: 20px;
  }
}

@media screen and (min-width: 1365px) {
  .recommend_funds_page .page_title_area_headline {
    max-width: var(--breakpoint1280);
    padding: 35px 50px 34px;
  }
}

.recommend_funds_page .page_title_area_headline span {
  margin: 0 auto;
  padding: 0 32px;
  white-space: nowrap;
}

@media screen and (min-width: 700px) {
  .recommend_funds_page .page_title_area_headline span {
    padding: 0 8.791vw;
  }
}

@media screen and (min-width: 1365px) {
  .recommend_funds_page .page_title_area_headline span {
    padding: 0 120px;
  }
}

.recommend_funds_page .page_title_area_headline::before {
  display: inline-block;
  content: '';
  width: 100%;
  border-top: 1px solid #8f8f8f;
}
.recommend_funds_page .page_title_area_headline::after {
  display: inline-block;
  content: '';
  width: 100%;
  border-top: 1px solid #8f8f8f;
}

.recommend_funds_nav {
  padding-bottom: 24px;
  background-color: var(--color-white);
}

.recommend_funds_nav_list {
  display: flex;
  gap: 0;
  margin: 0 auto;
  border-bottom: 1px solid #8f8f8f;
}

@media screen and (min-width: 700px) {
  .recommend_funds_nav_list {
    gap: 0 8px;
    width: 95%;
  }
}

@media screen and (min-width: 1365px) {
  .recommend_funds_nav_list {
    width: 100%;
    max-width: var(--breakpoint1280);
  }
}

.recommend_funds_nav_item {
  width: 50%;
  list-style: none;
}

@media screen and (min-width: 700px) {
  .recommend_funds_nav_item {
    width: 320px;
  }
}

.recommend_funds_nav_item a {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid #eee;
  border-bottom: none;
  background-color: #eee;
  color: #8f8f8f;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  line-height: 41px;
}

@media screen and (min-width: 700px) {
  .recommend_funds_nav_item a {
    font-size: 16px;
    line-height: 53px;
  }
}

.recommend_funds_nav_item a.ranking_filter_color {
  position: relative;
  bottom: -1px;
  border: 1px solid #8f8f8f;
  border-bottom: 1px solid #fff;
  background-color: #fff;
  color: #333;
  line-height: 40px;
}

@media screen and (min-width: 700px) {
  .recommend_funds_nav_item a.ranking_filter_color {
    line-height: 52px;
  }
}

.recommend_funds_nav_item a.ranking_filter_color::after {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 12px;
  content: '';
  width: calc(100% - 24px);
  height: 3px;
  background-color: #f6ac0e;
}

.recommend_funds_page .search_area {
  background-color: var(--color-white);
  text-align: center;
}

@media screen and (min-width: 700px) {
  .recommend_funds_page .search_area {
    padding-bottom: 16px;
  }
}

.recommend_funds_page .search_area form {
  background-color: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 72px;
  padding: 0 16px;
}

@media screen and (min-width: 700px) {
  .recommend_funds_page .search_area form {
    gap: 11px 0px;
    width: 95%;
    margin: 0 auto 8px;
    padding: 11px 16px;
    border: 1px solid #d9d9d9;
  }
}

@media screen and (min-width: 1365px) {
  .recommend_funds_page .search_area form {
    width: 100%;
    max-width: var(--breakpoint1280);
  }
}

.recommend_funds_page .search_area .search_form_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}

@media screen and (min-width: 700px) {
  .recommend_funds_page .search_area .search_form_top {
    width: auto;
    justify-content: start;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.recommend_funds_page .search_area .wrap-total-count {
  margin-right: 32px;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page #tenant_content .search_area .wrap-total-count {
    margin-right: 0;
  }
}

.recommend_funds_page .fund.search_area .wrap-total-count {
  order: 1;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .fund.search_area .wrap-total-count {
    margin-right: 21px;
  }
}

.recommend_funds_page .search_area .total-count {
  font-size: 24px;
  font-weight: 700;
}

.recommend_funds_page .search_area .total-count-unit {
  font-size: 14px;
  font-weight: 700;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .total-count,
  .recommend_funds_page .search_area .total-count-unit {
    font-size: 12px;
    font-weight: 400;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box {
  position: relative;
  margin-right: 32px;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box {
    margin-right: 0;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box.sort::before,
.recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq::before,
.recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq::before,
.recommend_funds_page .search_area .user_favorite_search_select_box.tenant_id_in::before,
.recommend_funds_page .search_area .user_favorite_search_select_box.tenant_name::before {
  position: absolute;
  margin-top: 2px;
  z-index: 1;
  text-align: center;
  font-size: 11px;
  background-color: #ffffff;
}

.recommend_funds_page .search_area .user_favorite_search_select_box.sort::before {
  width: 52px;
  height: 16px;
  left: 16px;
  top: -12px;
  content: '並び替え';
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box.sort::before {
    display: none;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box.tenant_name::before {
  width: 66px;
  height: 16px;
  left: 16px;
  top: -12px;
  content: '事業者名検索';
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box.tenant_name::before {
    display: none;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq::before {
  width: 55px;
  height: 16px;
  left: 16px;
  top: -22px;
  content: '利回り下限';
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq::before {
    display: none;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq::before {
  width: 55px;
  height: 16px;
  left: 16px;
  top: -22px;
  content: '利回り上限';
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq::before {
    display: none;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box.tenant_id_in::before {
  width: 66px;
  height: 16px;
  left: 16px;
  top: -22px;
  content: '事業者名検索';
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box.tenant_id_in::before {
    display: none;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box::after {
  position: absolute;
  right: 16px;
  width: 15px;
  height: 8px;
  background-color: #49454f;
  content: '';
  pointer-events: none;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box::after {
    width: 12px;
    height: 5px;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box::after {
  bottom: calc(50% - 4px);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.recommend_funds_page .search_area .user_favorite_search_select_box select {
  width: 252px;
  height: 40px;
  padding: 5px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background-color: #fff;
  color: #49454f;
  font-size: 16px;
  appearance: none;
  cursor: pointer;
}

.recommend_funds_page .fund.search_area .user_favorite_search_select_box.sort {
  order: 2;
}

.recommend_funds_page .search_area .user_favorite_search_select_box.sort select {
  width: 180px;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box.sort select {
    width: 160px;
    height: 32px;
    font-size: 12px;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box.sort.tenant select,
.recommend_funds_page .search_area .user_favorite_search_select_box.tenant_name select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 300px;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box.sort.tenant select,
  .recommend_funds_page .search_area .user_favorite_search_select_box.tenant_name select {
    width: 144px;
    font-size: 12px;
    height: 32px;
  }

  .recommend_funds_page .search_area .user_favorite_search_select_box.sort.tenant select {
    margin-right: 14px;
  }

  .recommend_funds_page #tenant_content .user_favorite_search_select_box.sort.tenant select {
    margin-right: 0;
  }

  .recommend_funds_page #tenant_content .user_favorite_search_select_box.sort.tenant,
  .recommend_funds_page #tenant_content .user_favorite_search_select_box.tenant_name {
    width: 154px;
  }

  .recommend_funds_page #tenant_content .user_favorite_search_select_box.sort.tenant select,
  .recommend_funds_page #tenant_content .user_favorite_search_select_box.tenant_name select {
    padding: 2px 12px 0px 12px;
  }
}

.recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq,
.recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq,
.recommend_funds_page .search_area .user_favorite_search_select_box.tenant_id_in {
  margin-right: 0px;
}

.recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq select,
.recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq select,
.recommend_funds_page .search_area .user_favorite_search_select_box.tenant_id_in select {
  width: 300px;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_gteq select,
  .recommend_funds_page .search_area .user_favorite_search_select_box.expected_yield_per_year_lteq select,
  .recommend_funds_page .search_area .user_favorite_search_select_box.tenant_id_in select {
    width: 140px;
    font-size: 12px;
  }

  .recommend_funds_page .search_area .user_favorite_search_select_box.tenant_id_in select {
    width: 100%;
  }
}

.recommend_funds_page .search_area .check-box-group {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .recommend_funds_page .search_area .check-box-group {
    width: auto;
  }
}

.recommend_funds_page .fund.search_area .check-box-group {
  order: 3;
  overflow-x: auto;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .fund.search_area .check-box-group {
    order: 4;
  }
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .check-box-group {
    padding: 16px 0;
  }
}

.recommend_funds_page .search_area .wrap-check-box.inline {
  display: inline;
}

.recommend_funds_page .search_area .wrap-check-box label {
  margin-right: 8px;
}

.recommend_funds_page .search_area .wrap-check-box label input {
  display: none;
}

.recommend_funds_page .search_area .wrap-check-box label span.check-box-content {
  text-align: center;
  display: inline-block;
  color: #bbbbbb;
  font-size: 14px;
  border: 1px solid #bbbbbb;
  height: 40px;
  width: 123px;
  border-radius: 20px;
  padding: 5px 20px;
  cursor: pointer;
  transition: 0.4s;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .wrap-check-box label span.check-box-content {
    font-size: 12px;
    height: 32px;
    width: 80px;
    padding: 1px 0;
  }
}

.recommend_funds_page .search_area .wrap-check-box label span.check-box-content:hover {
  opacity: 0.8;
}

.recommend_funds_page .search_area .wrap-check-box label input:checked + .check-box-content {
  color: #333333;
  background: rgba(254, 218, 21, 0.3);
  border: 1px solid rgba(254, 218, 21, 0.3);
}

.recommend_funds_page .search_area .wrap-check-box label .check-box-content span {
  display: inline-block;
  line-height: 28px;
}

.recommend_funds_page .search_area .wrap-check-box label .check-box-content .check-mark {
  position: relative;
  top: -4px;
  content: '';
  width: 12px;
  height: 5px;
  border-left: 2px solid #bbbbbb;
  border-bottom: 2px solid #bbbbbb;
  transform: rotate(-45deg);
  margin-right: 8px;
}

@media screen and (max-width: 700px) {
  .recommend_funds_page .search_area .wrap-check-box label .check-box-content .check-mark {
    margin-right: 4px;
  }
}

.recommend_funds_page .search_area .wrap-check-box label input:checked + .check-box-content .check-mark {
  border-left: 2px solid #333333;
  border-bottom: 2px solid #333333;
}

.wrap_re_recommend_fund {
  order: 4;
  margin-left: auto;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.01em;
}

.re_recommend_fund_link {
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 700px) {
  .re_recommend_fund_link {
    font-size: 12px;
  }
}

.recommend_funds_page .layout_inner_1280 .fund_list_card_wrapper {
  margin-top: 24px;
}

/* before_diagnosis */
.recommend_funds_before_diagnosis {
  min-height: calc(100vh - 482px);
  padding: 120px 0;
  background-color: #eee;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .recommend_funds_before_diagnosis {
    padding: 0;
    background-color: rgba(255, 255, 255, 0.7);
  }
}

@media screen and (min-width: 700px) {
  .recommend_funds_before_diagnosis_inner {
    width: 95%;
    min-height: calc(100vh - 435px);
    margin: 0 auto;
    padding: 120px 0;
  }
}

@media screen and (min-width: 1365px) {
  .recommend_funds_before_diagnosis_inner {
    width: 100%;
    max-width: var(--breakpoint1280);
  }
}

.recommend_funds_page.before_diagnosis .recommend_funds_nav_item a {
  pointer-events: none;
}

.recommend_funds_page.before_diagnosis .search_area .user_favorite_search_select_box select,
.recommend_funds_page.before_diagnosis .search_area .wrap-check-box label span.check-box-content {
  cursor: default;
}

.recommend_funds_page.before_diagnosis .search_area .wrap-check-box label span.check-box-content:hover {
  opacity: 1;
}

.before_diagnosis_text {
  font-size: 14px;
}

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

.new_recommend_fund_link {
  color: #6bafff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

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

/* 診断結果がない場合 */
.saha_recommend_funds_main .before_diagnosis_mask {
  position: absolute;
  z-index: 11;
  width: 100%;
  height: calc(100vh - 115px);
  background-color: rgba(52, 52, 52, 0.3);
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_main .before_diagnosis_mask {
    height: calc(100vh - 76px);
  }
}

.saha_recommend_funds_before_diagnosis {
  position: absolute;
  top: 340px;
  left: 16px;
  z-index: 12;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 32px 16px 24px;
  border: 1px solid #c3c3c3;
  border-radius: 8px;
  background-color: var(--color-white);
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
  display: none;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_before_diagnosis {
    width: 640px;
    top: 320px;
    left: calc(50% - 320px);
    padding: 40px 16px 16px;
  }
}

.saha_recommend_funds_before_diagnosis_title {
  margin: 0 24px;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_before_diagnosis_title {
    margin: 0 32px;
    font-size: 24px;
  }
}

.saha_recommend_funds_before_diagnosis_image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 24px 0;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_before_diagnosis_image {
    margin: 12px 32px 0;
  }
}

.saha_recommend_funds_before_diagnosis_image_01 {
  width: 120px;
}

.saha_recommend_funds_before_diagnosis_image_02 {
  width: 94px;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_before_diagnosis_image_02 {
    width: 118px;
  }
}

.saha_recommend_funds_new_recommend_fund {
  margin: 24px 32px 0;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_new_recommend_fund {
    margin: 8px auto 0;
  }
}

.saha_recommend_funds_new_recommend_fund_link {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  padding: 10px 32px 11px;
  border-radius: 4px;
  background-color: #f9e87a;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  color: #343434;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_new_recommend_fund_link {
    width: 260px;
  }
}

.saha_recommend_funds_investment {
  margin: 20px 32px 0;
  text-align: right;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_investment {
    margin: 24px 0 0;
  }
}

.saha_recommend_funds_investment_link {
  color: #8f8f8f;
  font-size: 12px;
  text-decoration: none;
}

@media screen and (min-width: 700px) {
  .saha_recommend_funds_investment_link {
    font-size: 14px;
  }
}
.tenant_list {
  padding: 0 0 30px 0;
}

.tenant_favorite_icon {
  text-align: right;
}

.tenant_favorite_icon .favorite-icon {
  margin-top: 1px;
}

.tenant_list_card_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 154px;
  margin-bottom: 20px;
}

.border-top {
  border-top: 1px solid #646464;
}

.tenant_list_card_head_inner_left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.tenant_list_card_head_inner_right {
  width: 154px;
}

.tenant_list_card_head_logo {
  width: 150px;
  height: 72px;
  object-fit: contain;
}

@media screen and (max-width: 700px) {
  .tenant_list_card_head_logo {
    width: 140px;
  }
}

.tenant_list_card_headline {
  text-align: left;
  margin: 0 0 0 0;
  font-size: 14px;
}

@media screen and (max-width: 700px) {
  .tenant_list_card_headline {
    font-size: 14px;
  }
}

.evaluation_star {
  height: 20px;
  width: auto;
}

@media screen and (max-width: 700px) {
  .evaluation_star {
    height: 14px;
    width: auto;
  }
}

.list_card_wrapper.show .evaluation_star {
  height: 29px;
  width: 29px;
}

@media screen and (max-width: 700px) {
  .list_card_wrapper.show .evaluation_star {
    height: 16px;
    width: 16px;
  }
}

.toppage_tenant_of_interest .evaluation_star {
  height: 20px;
  width: 20px;
}

@media screen and (max-width: 700px) {
  .toppage_tenant_of_interest .evaluation_star {
    height: 14px;
    width: 14px;
  }
}

.tenant_list_card_body {
  padding-top: 16px;
}

.list_card_status_flex_box {
  padding: 0 10px;
}

.tenant_list_card_body_inner_flex,
.tenant_list_card_body_item_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tenant_list_card_body_inner_flex {
  padding-bottom: 16px;
}

.tenant_list_card_body_item_l {
  width: 100%;
  padding: 0 10px 0 0;
  border-right: 1px solid #343434;
}

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

.tenant_list_card_body_item_text {
  margin: 0;
  font-size: 14px;
}

@media screen and (max-width: 700px) {
  .tenant_list_card_body_item_text {
    margin: 0;
    font-size: 12px;
  }
}

.tenant_list_card_body_item_value {
  font-size: 20px;
}

@media screen and (max-width: 700px) {
  .tenant_list_card_body_item_value {
    font-size: 16px;
  }
}

.tenant_list_card_head_image {
  width: 170px;
}

.tenant_list_card_body_item_value span {
  font-size: 12px;
}

.tenant_list_card_body_inner_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0 0;
}

.filter_tenant_select_box_inner {
  position: relative;
  display: inline;
}

.filter_tenant_select_box select {
  width: 250px;
  margin: 5px 0 0;
  padding: 5px;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  background-color: #fff;
  color: #343434;
  font-size: 13px;
  appearance: none;
  cursor: pointer;
}

.filter_tenant_select_box_inner::after {
  position: absolute;
  right: 10px;
  bottom: calc(50% - 7px);
  width: 15px;
  height: 8px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #808080;
  content: '';
  pointer-events: none;
}

@media screen and (min-width: 700px) {
  .filter_tenant_select_box_inner::after {
    right: 8;
  }
}

@media screen and (min-width: 700px) {
  .filter_tenant_select_box select {
    width: 200px;
  }
}

.tenant_search_select_box select {
  margin: 8px;
  width: 280px;
}

@media screen and (min-width: 700px) {
  .tenant_search_select_box select {
    margin: 20px 0 20px 10px;
  }
}

.tenant_select_box_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tenant_product {
  padding: 180px 0 40px 0;
}

@media screen and (min-width: 700px) {
  .tenant_product {
    padding: 120px 0 40px 0;
  }
}

@media screen and (min-width: 1340px) {
  .tenant_product {
    padding: 80px 0 40px 0;
  }
}

/* 運営会社 */
.tenant_product_management_company_card {
  background-color: var(--color-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 0 10px 5px 10px;
}

.tenant_product_management_company_card_logo_image {
  height: 40px;
  object-fit: contain;
}

@media screen and (max-width: 700px) {
  .tenant_product_management_company_card_logo_image {
    width: 114px;
  }
}

.tenant_product_new_review {
  position: relative;
}
/* 未使用ここまで */
.toppage {
  padding: 32px 0 48px 0;
  display: flex;
  flex-direction: column;
  gap: 96px 0;
}
@media screen and (max-width: 767px) {
  .toppage {
    padding: 0 0 48px;
    gap: 56px 0;
  }
}

.toppage_image {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  padding: 0 42px;
}
@media screen and (max-width: 800px) {
  .toppage_image {
    gap: 24px 0;
    padding: 0 16px;
  }
}

@media screen and (min-width: 700px) {
  .toppage_image {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.toppage_fund-title-bg {
  background-color: rgba(255, 255, 255, 0.5);
  padding-bottom: 24px;
}

/* top image */
.image-container {
  display: grid;
  gap: 3px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}
.image-container div img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.image-container div:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1/3;
}
@media screen and (max-width: 800px) {
  .image-container div:nth-child(2) {
    grid-row: 3;
    grid-column: 1;
  }
  .image-container div:nth-child(3) {
    grid-row: 3;
    grid-column: 2;
  }
  /* .image-container div:nth-child(4),
  .image-container div:nth-child(5) {
    display: none;
  } */
}
@media screen and (max-width: 767px) {
  .image-container div:nth-child(4),
  .image-container div:nth-child(5) {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  .image-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .image-container div:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/3;
  }
}

/* toppage_description */
.toppage_description_inner {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .toppage_description_inner {
    padding: 8px 16px;
    display: grid;
    place-content: center;
    grid-template-columns: 48% 48%;
    gap: 0 48px;
    background: #fff;
  }
}

@media screen and (min-width: 800px) {
  .toppage_description_inner {
    grid-template-columns: 48% 48%;
  }
}

.toppage_description_inner div {
  border-top: 1px solid #8f8f8f;
}

.toppage_description_inner div a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.toppage_description_inner div a img {
  padding-right: 8px;
}

.toppage_description_inner p {
  overflow: hidden;
  color: var(--Alias-Token-Text-Neutral-0, #333);
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
  padding: 16px 8px 16px 0;
}
@media screen and (min-width: 941px) {
  .toppage_description_inner p {
    padding: 16px 8px;
  }
}
.toppage_description_inner div:nth-child(1) {
  border: none;
}

@media screen and (min-width: 768px) {
  .toppage_description_inner div:nth-child(2) {
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .toppage_description_inner div:nth-child(4),
  .toppage_description_inner div:nth-child(5),
  .toppage_description_inner div:nth-child(6) {
    display: none;
  }
}

.title_white_border {
  border: none;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px 0;
  padding: 0 8px;
}
@media screen and (min-width: 768px) {
  .title_white_border {
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    padding: 48px 0;
    background-color: rgba(0, 0, 0, 0.08);
    gap: 48px 0;
  }
}

/* ファンド */
.top-fund {
  display: flex;
  justify-content: center;
  padding: 0 42px;
}
@media screen and (max-width: 767px) {
  .top-fund {
    flex-direction: column;
    gap: 58px 0;
    padding: 0 8px;
  }
}

/* ファンド一覧 */
.top_fund_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 7px;
  width: 359px;
}

@media screen and (min-width: 768px) {
  .top_fund_list {
    width: 300px;
    gap: 16px 0;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1350px) {
  .top_fund_list {
    width: 616px;
    gap: 16px;
  }
}

@media screen and (min-width: 2000px) {
  .top_fund_list {
    width: 932px;
    gap: 16px;
  }
}

/* 募集中・募集前ファンド一覧 */
.toppage_offering_fund,
.toppage__before_offering_fund {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .toppage_offering_fund,
  .toppage__before_offering_fund {
    width: 100%;
  }
}

.toppage_offering_fund,
.toppage__before_offering_fund {
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}

.toppage_offering_fund_list,
.toppage_before_offering_fund_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  gap: 32px 0;
}

@media screen and (max-width: 767px) {
  .toppage_offering_fund,
  .toppage__before_offering_fund {
    gap: 24px 0;
  }

  .toppage_offering_fund_list,
  .toppage_before_offering_fund_list {
    gap: 24px 0;
  }
}

/* ファンド・事業者カード */
.list_card {
  width: 176px;
}

@media screen and (min-width: 768px) {
  .list_card {
    width: 300px;
  }
}

.fund_card {
  justify-content: center;
}

/* tenant */
.toppage_tenant_of_interest .toppage_slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px 0;
}
@media screen and (max-width: 940px) {
  .toppage_tenant_of_interest .toppage_slider {
    gap: 24px 0;
  }
}
.toppage_slider_headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  text-align: center;
}
.toppage_slider_inner {
  display: none;
}
.toppage_sp_tenant {
  display: flex;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: 12px 7px;
  margin: 0 auto;
  width: 359px;
}

@media screen and (min-width: 768px) {
  .toppage_slider_inner {
    display: block;
  }
  .toppage_sp_review,
  .toppage_sp_tenant {
    display: none !important;
  }
}
.toppage_sp_review {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  gap: 16px 0;
}

@media screen and (min-width: 700px) and (max-width: 1024px) {
  .toppage_slider_inner {
    width: 100%;
    margin: auto;
  }
}

.toppage_slider_headline:before,
.toppage_slider_headline:after {
  content: '';
  width: 70px;
  border-top: 1px solid;
}

.toppage_slider_headline:before {
  margin-right: 1em;
}

.toppage_slider_headline:after {
  margin-left: 1em;
}

/* 口コミ */
.toppage_new_review {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px 0;
}

.toppage_new_review .toppage_slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px 0;
}

@media screen and (max-width: 940px) {
  .toppage_new_review,
  .toppage_new_review .toppage_slider {
    gap: 24px 0;
  }
}

@media screen and (max-width: 768px) {
  .toppage_slide_card_area.review_card {
    width: 343px;
  }
}

/* スライダー関連 */
.toppage_slide_card_area {
  width: 100%;
  margin: 0;
}
/* @media screen and (min-width: 700px) {
  .toppage_slide_card_area {
    margin: 0 auto 50px;
  }
} */

.toppage_slider_container {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .toppage_slider_container {
    width: 1200px;
    margin: 15px calc(50% - 600px) 17px;
  }
}

.toppage_slider_image {
  width: 50%;
  max-width: 50%;
  aspect-ratio: 16/9;
}

.toppage_slide_card_title {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 15px;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.toppage_slide_card {
  display: block;
  position: relative;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 700px) {
  .toppage_slide_card {
    width: 100%;
  }
}

.swiper-slide {
  transform: scale(0.9);
}

.swiper-slide-active {
  opacity: 1; /* 中央のスライドは薄くしない */
  transform: scale(0.9);
  z-index: 1; /* 中央のスライドを一番上にする */
}

.list_card_flex_area_item:first-child {
  border-right: 1px solid #646464;
}

.toppage_slider_container .swiper-button-prev,
.toppage_slider_container .swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  outline: none;
}

.toppage_slider_container .swiper-button-prev {
  left: 5px;
}

.toppage_slider_container .swiper-button-next {
  right: 5px;
}

@media screen and (min-width: 700px) and (max-width: 1024px) {
  .toppage_slider_container .swiper-button-prev {
    left: -40px;
  }

  .toppage_slider_container .swiper-button-next {
    right: -40px;
  }
}

.toppage_slider_container .swiper-button-prev img,
.toppage_slider_container .swiper-button-next img {
  width: 10px;
}

@media screen and (min-width: 700px) {
  .toppage_slider_container .swiper-button-prev img,
  .toppage_slider_container .swiper-button-next img {
    width: 15px;
    object-fit: contain;
  }
}

.toppage_slider_container .swiper-button-prev:after,
.toppage_slider_container .swiper-button-next:after {
  content: '';
  display: none;
}

.toppage_slider_container .swiper-pagination-bullet {
  width: 35px;
  height: 3px;
  border-radius: 0;
  outline: none;
}

.toppage_slider_container .swiper-pagination-bullet-active {
  background: #dcd081;
}

/* 新着のクチコミ */
.toppage .evaluation_star{
  width: 16px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .toppage .review-card-content {
    min-height: 190px;
  }
  .toppage .review-card-content.unregistered {
    min-height: 71px;
  }
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *





 */
