@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  ├ base
  └ form
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
	base
----------------------------------------*/
body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
  background: #314154;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

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

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*----------------------------------------
	Form Parts
----------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 8px 16px;
  border-radius: 0;
  font-family: inherit;
  color: #333333;
  background: #fff;
  border: 1px solid #D5D5D5;
}

input[type=number],
input[type=password] {
  width: 100%;
  padding: 8px 16px;
  border-radius: 0;
  color: #333333;
  background: #fff;
  border: 1px solid #D5D5D5;
}

textarea {
  min-height: 240px;
  resize: vertical;
}

@media (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=url],
  input[type=number],
  input[type=password],
  textarea {
    padding: 15px 20px;
  }
}
/* エラー時 */
.is-error input[type=text],
.is-error input[type=email],
.is-error input[type=tel],
.is-error input[type=url],
.is-error input[type=number],
.is-error input[type=password],
.is-error textarea {
  color: #DF5656;
  border-color: #DF5656;
}

/*------------------------------------------------------------------------
// Layout
  ├ header
  ├ global-nav
  ├ hamburger
  ├ drawer-menu
  ├ footer
  ├ page-title
  ├ page-eyecatch
  ├ page-nav
  ├ main-contents
  ├ container
  └ section
------------------------------------------------------------------------*/
/* header
------------------------------------------------------ */
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100vw;
  padding: 15px 0 10px;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100% !important;
}

.header__logo img {
  width: 60px;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  gap: 15px;
}

@media (min-width: 768px) {
  .header__logo img {
    width: 298px;
  }
  .header {
    padding: 20px 0 10px;
  }
}
@media (min-width: 1400px) {
  .header-right {
    gap: 40px;
  }
}
/* global-nav
------------------------------------------------------ */
.global-nav {
  display: none;
}

@media (min-width: 1400px) {
  .global-nav {
    display: block;
  }
  .global-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -17.5px;
  }
  .global-nav__link {
    display: block;
    padding: 18px 17.5px;
    font-size: 14px;
    line-height: 1;
    -webkit-transition: opacity ease-out 0.3s;
    transition: opacity ease-out 0.3s;
  }
}
@media (min-width: 1400px) and (any-hover: hover) {
  .global-nav__link:hover, .global-nav__link:focus-visible {
    opacity: 0.7;
  }
}
/* hamburger
------------------------------------------------------ */
.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-transition: opacity ease-out 0.3s;
  transition: opacity ease-out 0.3s;
}
@media (nay-hover: hover) {
  .hamburger:hover, .hamburger:focus-visible {
    opacity: 0.7;
  }
}

.hamburger__line {
  position: relative;
  width: 30px;
  height: 1px;
  background: #fff;
}
.hamburger__line::before, .hamburger__line::after {
  position: absolute;
  right: 0;
  content: "";
  display: block;
  height: 1px;
  background: #fff;
  -webkit-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}
.hamburger__line::before {
  width: 36px;
  top: -9px;
}
.hamburger__line::after {
  width: 24px;
  bottom: -9px;
}

/* 閉じるボタン */
.hamburger[aria-expanded=true] .hamburger__line {
  background: transparent;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  width: 36px;
  bottom: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

@media (min-width: 1400px) {
  .hamburger {
    display: none;
  }
}
/* drawer-menu
------------------------------------------------------ */
.drawer-menu {
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  z-index: 98;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 137px 15px 145px;
  background: #314154;
}

.drawer-menu-inner {
  max-width: 400px;
  margin-inline: auto;
}

.drawer-menu__left {
  margin: 0 10px;
}

.drawer-menu__right {
  margin: 30px 10px 0;
}

.drawer-menu__list li:not(:first-child) {
  margin-top: 30px;
}

.drawer-menu__link {
  display: block;
}
.drawer-menu__link .sub-text {
  display: block;
  font-family: "Cormorant", serif;
  font-size: 50px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #C6AF7E;
}
.drawer-menu__link .main-text {
  display: block;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.drawer-menu__sub-list {
  margin-top: 50px;
}
.drawer-menu__sub-list li:not(:first-child) {
  margin-top: 30px;
}

.drawer-menu__sub-link {
  font-size: 16px;
  letter-spacing: 0.03em;
}

.drawer-menu__contact {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.drawer-menu__contact .cta__tel {
  width: auto;
  white-space: nowrap;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

@media (min-width: 768px) {
  .drawer-menu {
    padding: 145px 30px 60px;
  }
  .drawer-menu-inner {
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 100px;
  }
  .drawer-menu__left {
    margin: 0;
  }
  .drawer-menu__right {
    margin: 0;
  }
  .drawer-menu__link .sub-text {
    font-size: 55px;
  }
  .drawer-menu__link .main-text {
    margin-top: 4px;
    font-size: 18px;
  }
  .drawer-menu__sub-list {
    margin-top: 50px;
  }
  .drawer-menu__sub-list li:not(:first-child) {
    margin-top: 30px;
  }
  .drawer-menu__sub-link {
    font-size: 16px;
    letter-spacing: 0.03em;
  }
  .drawer-menu__contact {
    margin-top: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .drawer-menu__contact .cta__tel {
    padding-left: 48px;
    background-position: left 10px;
  }
  .drawer-menu__contact .cta__tel span {
    margin-left: -48px;
    padding-left: 48px;
    text-align: left;
  }
}
/* footer
------------------------------------------------------ */
.footer-left {
  padding: 60px 0;
}

.footer__logo {
  width: 280px;
  margin-inline: auto;
}

.footer__text {
  margin-top: 15px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1875;
  text-align: center;
}

.footer__address {
  margin-top: 20px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5384615385;
  text-align: center;
}

.footer__tel {
  margin-top: 6px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4615384615;
  text-align: center;
}

.footer-right {
  display: none;
}

.footer-list__link {
  display: block;
  padding: 14.5px;
  font-size: 15px;
  line-height: 1;
  -webkit-transition: opacity ease-out 0.3s;
  transition: opacity ease-out 0.3s;
}
@media (any-hover: hover) {
  .footer-list__link:hover {
    opacity: 0.7;
  }
}

.footer-bottom {
  padding-bottom: 14px;
}

.footer__copyright {
  margin-inline: -15px;
  font-size: 12px;
  line-height: 1.4166666667;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__logo {
    width: 330px;
  }
  .footer__text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
  .footer__address {
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.6666666667;
  }
  .footer__tel {
    font-size: 15px;
  }
  .footer__tel a {
    pointer-events: none;
  }
  .footer-right {
    display: block;
    padding-bottom: 60px;
  }
  .footer-list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 31px;
  }
  .footer-list:not(:first-of-type) {
    margin-top: 44px;
  }
  .footer-bottom {
    padding-bottom: 26px;
  }
  .footer__copyright {
    margin-inline: 0;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
@media (min-width: 1200px) {
  .footer-inner {
    display: grid;
    grid-template-areas: "left right" "bottom bottom";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
  .footer-left {
    grid-area: left;
    padding: 100px 0;
  }
  .footer__logo {
    margin: 0;
  }
  .footer__text,
  .footer__address,
  .footer__tel {
    text-align: left;
  }
  .footer-right {
    grid-area: right;
    padding-top: 140px;
    padding-bottom: 165px;
  }
  .footer-list-group {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: -14.5px;
  }
  .footer-bottom {
    grid-area: bottom;
  }
}
/* page-title
------------------------------------------------------ */
.page-title {
  position: relative;
  z-index: 0;
  padding-top: 72px;
  text-align: center;
}
.page-title + * {
  margin-top: 40px;
}

.page-title__sub {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  font-family: "Cormorant", serif;
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.0583333333;
  text-transform: uppercase;
  color: #D3DDF0;
  opacity: 0.3;
}

.page-title__main {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .page-title {
    padding-top: min(8.8194444444vw, 127px);
  }
  .page-title + * {
    margin-top: 120px;
  }
  .page-title__sub {
    width: auto;
    font-size: min(12.5vw, 180px);
    line-height: 1.2111111111;
  }
  .page-title__main {
    font-size: min(3.125vw, 45px);
    letter-spacing: 0.06em;
    line-height: 1.4444444444;
  }
}
/* page-eyecatch
------------------------------------------------------ */
.page-eyecatch {
  margin-inline: 10px;
  -webkit-box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.25);
          box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .page-eyecatch {
    margin-inline: 0;
  }
}

/* page-nav
------------------------------------------------------ */
.page-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.page-nav__item {
  min-width: calc((100% - 15px) / 2);
  max-width: 100%;
}

.page-nav__link {
  display: block;
  padding: 14px 9px;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  border: 1px solid;
  -webkit-transition: opacity ease-out 0.3s;
  transition: opacity ease-out 0.3s;
}

@media (any-hover: hover) {
  a.page-nav__link:hover {
    opacity: 0.7;
  }
}

@media (min-width: 768px) {
  .page-nav--3col .page-nav__list {
    gap: 30px;
  }
  .page-nav--3col .page-nav__item {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
  .page-nav__link {
    padding: 25px 0;
    border-radius: 10px;
    font-size: 18px;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1200px) {
  .page-nav--4col .page-nav__list {
    gap: 13.3333333333px;
  }
  .page-nav--4col .page-nav__item {
    min-width: calc((100% - 40px) / 4);
  }
}
/* main-contents
------------------------------------------------------ */
.main-contents {
  overflow-x: hidden;
  padding-top: 137px;
}
@media (min-width: 768px) {
  .main-contents {
    padding-top: 266px;
  }
}
.main-contents._top {
  padding-top: 0;
}

/* container
------------------------------------------------------ */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.container._narrow {
  max-width: 1000px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* section
------------------------------------------------------ */
.section-inner {
  max-width: 1000px;
  margin-inline: auto;
}

.section-title {
  text-align: center;
}
.section-title::before {
  display: inline-block;
  content: "";
  width: 69px;
  height: 49px;
  background: url("../images/logo_risingbull_mark.png") center/contain no-repeat;
}

.section-title__sub {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.section-title__main {
  display: block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .section-title__sub {
    font-size: 30px;
    line-height: 1.25;
    text-align: center;
  }
  .section-title__main {
    font-size: 40px;
  }
}
/*------------------------------------------------------------------------
// Component（general）
  ├ heading
  ├ button
  ├ accordion
  ├ contents-box
  ├ contents
  └ list-box
------------------------------------------------------------------------*/
/* heading
------------------------------------------------------ */
.heading-lv2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  color: #C6AF7E;
}
@media (min-width: 768px) {
  .heading-lv2 {
    font-size: 32px;
  }
}

/* button
------------------------------------------------------ */
/* button共通 */
.button {
  display: inline-block;
  width: 100%;
  min-width: 280px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 24px;
  border-radius: 100vmax;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity ease-out 0.3s;
  transition: opacity ease-out 0.3s;
}
@media (any-hover: hover) {
  .button:hover, .button:focus {
    opacity: 0.7;
  }
}

/* 小ボタン */
.button--small {
  min-width: 130px;
  padding: 12px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .button--small {
    min-width: 150px;
    padding: 14px;
  }
}

/* お問い合わせボタン */
.button--contact {
  background: linear-gradient(-100deg, #2B5FB5 0%, #07409F 33%, #083786 66%, #072F71 100%);
}

/* 汎用的なボタン */
.button--action {
  color: #333333;
  background: #C6AF7E;
}
@media (min-width: 768px) {
  .button--action {
    min-width: 360px;
    font-size: 22px;
  }
}

/* 透過ボタン */
.button--ghost {
  min-width: 200px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 15px;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #C6AF7E;
  border: 1px solid;
}
@media (min-width: 768px) {
  .button--ghost {
    min-width: 280px;
    font-size: 18px;
  }
}

/* disabled */
.button[disabled] {
  color: #fff;
  background: #D5D5D5;
  opacity: 1;
  cursor: default;
}

/* LP遷移ボタン */
.button--lp {
  min-width: 120px;
  padding: 13px 10px 14px;
  font-size: 15px;
  color: #0D0D67;
  background: #FBD962;
}
@media (min-width: 768px) {
  .button--lp {
    min-width: 146px;
    padding: 12px 10px;
    font-size: 18px;
  }
}

/* accordion
------------------------------------------------------ */
.accordion dt:not(:first-child) {
  margin-top: 15px;
}

.accordion__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  padding: 10px 15px 12px 20px;
  border-radius: 5px;
  color: #fff;
  background: #C6AF7E;
  cursor: pointer;
}

.accordion__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 15px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.3888888889;
  text-align: left;
}

.accordion__action {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -7px;
}
.accordion__toggle[aria-expanded=true] .accordion__action {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  margin-top: 7px;
}

.accordion__panel {
  display: none;
  padding: 28px 18px;
  border-radius: 5px;
  border: 2px solid #9B8452;
  margin-top: 15px;
  margin-bottom: 30px;
  color: #333333;
  background: #fff;
}

.accordion__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
}

@media (min-width: 768px) {
  .accordion dt:not(:first-child) {
    margin-top: 20px;
  }
  .accordion__toggle {
    padding: 12px 30px 15px 20px;
    border-radius: 10px;
  }
  .accordion__title {
    margin-right: 21px;
    font-size: 24px;
    line-height: 1.4583333333;
    text-align: left;
  }
  .accordion__action {
    width: 21px;
    height: 21px;
    border-width: 4px;
    margin-top: -10px;
  }
  .accordion__toggle[aria-expanded=true] .accordion__action {
    margin-top: 10px;
  }
  .accordion__panel {
    padding-left: 48px;
    padding-right: 48px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
/* contents-box
------------------------------------------------------ */
.contents-box {
  border-radius: 5px;
  color: #9B8452;
  background: #fff;
  border: 2px solid;
}
.contents-box:not(:first-child) {
  margin-top: 60px;
}

.contents-box__head {
  padding: 13px 18px 18px;
  color: #fff;
  background: #9B8452;
}

.contents-box__title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.contents-box__body {
  padding: 30px 8px 28px;
}

.contents-box__text {
  letter-spacing: 0.04em;
}
.contents-box__text a {
  word-break: break-all;
}
.contents-box__text a:hover {
  text-decoration: underline;
}
.contents-box__text > * + * {
  margin-top: 1.75em;
}

@media (min-width: 768px) {
  .contents-box {
    border-radius: 10px;
  }
  .contents-box:not(:first-child) {
    margin-top: 80px;
  }
  .contents-box__head {
    padding: 20px 98px 22px;
  }
  .contents-box__title {
    max-width: 530px;
    margin-inline: auto;
    font-size: 24px;
    text-align: center;
  }
  .contents-box__body {
    padding: 40px 48px 78px;
  }
}
/* contents
------------------------------------------------------ */
.contents {
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 8px;
  border-radius: 5px;
  border: 2px solid;
  color: #9B8452;
  background: #fff;
}
.contents:not(:first-child) {
  margin-top: 40px;
}

.contents__title {
  padding: 8px;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  border: 2px solid;
}
.contents__title ~ * {
  margin: 20px 10px 0;
}

.contents__list li {
  padding-left: 25px;
  letter-spacing: 0.04em;
  background: url("../images/icon_check_key.svg") left top 7px/17px 12px no-repeat;
}
.contents__list li:not(:first-child) {
  margin-top: 20px;
}

.contents__col-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contents__text {
  letter-spacing: 0.04em;
}
.contents__text > * + * {
  margin-top: 1.75em;
}

.contents__img {
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contents {
    padding: 28px 48px 38px;
    border-radius: 10px;
  }
  .contents__title {
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
  }
  .contents__title ~ * {
    margin: 30px 0 0;
  }
  .contents__list li {
    padding-left: 45px;
    background-position: left center;
    background-size: 20px 14px;
  }
  .contents__list li:not(:first-child) {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .contents__col-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
    margin-inline: 20px;
  }
  .contents__col-block._reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .contents__col-block .contents__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 50%;
  }
}
/* list-box
------------------------------------------------------ */
.list-box {
  max-width: 900px;
  margin: 0 10px;
  padding: 29px 19px;
  border-radius: 5px;
  border: 1px solid;
}

.list-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.list-box ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: calc((100% - 15px) / 2);
  padding-left: 27px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  background: url("../images/icon_check_white.svg") left top 7px/17px 12px no-repeat;
}

.list-box__text {
  max-width: 900px;
  margin: 10px 20px 0;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (min-width: 768px) {
  .list-box {
    margin: 0 auto;
    padding: 39px 49px;
    border-radius: 10px;
  }
  .list-box ul {
    gap: 15px 50px;
  }
  .list-box ul li {
    min-width: calc((100% - 50px) / 2);
    padding-left: 40px;
    font-size: 20px;
    background-position: left top 10px;
    background-size: 20px 14px;
  }
  .list-box__text {
    margin: 20px auto 0;
  }
}
/*------------------------------------------------------------------------
// Component（original）
  ├ cta
  ├ lp-cta
  ├ post-body
  ├ advisor-about
  ├ advisor-career
  ├ advisor-contract
  ├ advisor-faq
  ├ company
  ├ company-vision
  ├ philosophy
  ├ profile
  ├ team
  ├ media
  ├ member
  ├ member-overview
  ├ success-about
  ├ success-reason
  ├ success-overview
  ├ success-difference
  ├ service
  ├ course
  ├ contact
  ├ contact-form
  ├ message
  ├ access
  ├ faq
  ├ voice
  ├ mv
  ├ top-advisor
  ├ top-service
  ├ top-success
  ├ top-report
  ├ top-trade
  ├ top-contents
  ├ top-support
  └ top-message
------------------------------------------------------------------------*/
/*----------------------------------------
	コンポーネント（共通パーツ）
----------------------------------------*/
/* cta
------------------------------------------------------ */
.cta {
  background: linear-gradient(-100deg, #2B5FB5 0%, #07409F 33%, #083786 66%, #072F71 100%);
  border-top: 6px solid #C6AF7E;
  border-bottom: 6px solid #C6AF7E;
}
.cta--bg-none {
  background: none !important;
}

.cta-inner {
  padding: 50px 0;
  margin-inline: 10px;
}

.cta__text {
  font-weight: 600;
  line-height: 1.5;
}
.cta__text + * {
  margin-top: 20px;
}

.cta__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cta__contact::before {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  margin: 30px auto;
  background: #fff;
}
.cta__contact--only::before {
  display: none !important;
}

.cta__contact-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.cta__tel-block,
.cta__tel {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.cta__tel {
  display: block;
  padding-left: 44px;
  font-size: 33px;
  line-height: 47px;
  letter-spacing: 0.04em;
  background: url("../images/icon_phone.svg") left 9px/38px 38px no-repeat;
}
.cta__tel span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  margin-top: 4px;
  margin-left: -44px;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  text-align: center;
}

.cta__mail-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cta__mail-block .cta__contact-text {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.cta__mail-block::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 32px;
  margin: 9px auto 0;
  background: url("../images/icon_mail.svg") center/contain no-repeat;
}

.cta__mail {
  display: block;
  margin-top: 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5;
}
.cta__mail:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cta-inner {
    margin-inline: 0;
  }
  .cta__contact::before {
    margin: 50px auto;
  }
  .cta__contact-text {
    font-size: 24px;
  }
  .cta__contact-text + * {
    margin-top: 6px;
  }
  .cta__text {
    font-size: 20px;
    text-align: center;
  }
  .cta__text + * {
    margin-top: 40px;
  }
  .cta__tel {
    pointer-events: none;
    width: 360px;
    padding-left: 78px;
    font-size: 38px;
    line-height: 55px;
    background-position: 30px 10px;
    background-size: 42px 42px;
  }
  .cta__tel span {
    margin-top: 0;
    margin-left: -78px;
    font-size: 18px;
    line-height: 1.4444444444;
  }
  .cta__mail-block::before {
    width: 54px;
    height: 38px;
    margin: 12px auto 0;
  }
  .cta__mail {
    width: 360px;
    margin-top: 10px;
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .cta__text {
    font-size: 26px;
    line-height: 1.6923076923;
  }
  .cta__contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cta__contact::before {
    height: 80px;
    width: 2px;
    border-radius: 1px;
    margin: auto 70px 0;
  }
}
/* 投資顧問LPバナー
------------------------------------------------------ */
.lp-cta {
  position: fixed;
  bottom: 10px;
  right: calc(50% - 182.5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 365px;
  padding: 12px 15px;
  border-radius: 10px;
  color: #FBD962;
  background: linear-gradient(-100deg, #2B5FB5 0%, #07409F 33%, #083786 66%, #072F71 100%);
}

.lp-cta__text {
  font-size: 17px;
}

@media (min-width: 768px) {
  .lp-cta {
    bottom: 30px;
    right: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    width: 175px;
    padding: 23px 15px 16px;
  }
  .lp-cta__text {
    font-size: 22px;
    line-height: 1.3636363636;
    text-align: center;
  }
}
/* post-body
------------------------------------------------------ */
.post-body {
  margin: 80px 20px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .post-body {
    margin: 110px auto 160px;
  }
}
.post-body > *:not(h2) {
  margin-top: 1.75em;
}
.post-body h2 {
  margin-top: 60px;
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #C6AF7E;
}
.post-body h2 + * {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .post-body h2 {
    margin-top: 60px;
    font-size: 1.5em;
  }
  .post-body h2 + * {
    margin-top: 32px;
  }
}
.post-body table {
  width: 100%;
  margin-top: 30px;
}
.post-body table th {
  display: block;
  padding: 1em 0 0 0;
  text-align: left;
}
.post-body table td {
  display: block;
  padding: 0.5em 0 1em 0;
  text-align: left;
  border-bottom: 1px solid #C6AF7E;
}
.post-body table tr:first-child th {
  padding-top: 0;
}
@media (min-width: 768px) {
  .post-body table th {
    min-width: 12.69em;
    display: table-cell;
    padding: 1.75em 1.25em 1.75em 0;
    border-bottom: 1px solid #C6AF7E;
  }
  .post-body table td {
    display: table-cell;
    padding: 1.75em 0 1.75em 0;
  }
  .post-body table tr:first-child td {
    padding-top: 0;
  }
}

/* 投資顧問について
------------------------------------------------------ */
.advisor-about {
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 60px;
  background: #314154 linear-gradient(115deg, #2B5FB5 9%, #07409F 29%, #083786 59%, #072F71 77%);
  background-blend-mode: overlay;
}
.advisor-about::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1020px;
  background: url("../images/bg_advisor_about.jpg") center/cover;
  opacity: 0.119;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

.advisor-about-inner {
  padding: 0 10px;
}

.advisor-about__text {
  margin-top: 40px;
  letter-spacing: 0.04em;
}
.advisor-about__text > * + * {
  margin-top: 1.75em;
}

.advisor-about__col-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.advisor-about__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 620px;
  margin: 0 auto;
}

.advisor-about__heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3333333333;
}
.advisor-about__heading + * {
  margin-top: 30px;
}

.advisor-about__link {
  margin-top: 40px;
  font-size: 0.875em;
  letter-spacing: 0.04em;
}
.advisor-about__link a {
  text-decoration: underline;
}
.advisor-about__link a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .advisor-about {
    margin-top: 200px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .advisor-about::before {
    top: -190px;
    width: 100%;
    height: auto;
    aspect-ratio: 1440/960;
  }
  .advisor-about__title + .advisor-about__text {
    text-align: center;
  }
  .advisor-about-inner {
    padding: 0;
  }
  .advisor-about__col-block {
    margin-top: 50px;
    gap: 50px;
  }
  .advisor-about__heading {
    font-size: 24px;
    line-height: 1.5;
  }
  .advisor-about__link {
    margin-top: 30px;
    font-size: 0.9375em;
  }
}
@media (min-width: 992px) {
  .advisor-about__col-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .advisor-about__img {
    width: calc(50% + 20px);
    margin: 0;
  }
  .advisor-about__body {
    max-width: 480px;
  }
}
/* 投資顧問について（キャリア）
------------------------------------------------------ */
.advisor-career__bg {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 380px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.advisor-career__bg::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/bg_section_01.jpg") 48% center/cover;
  opacity: 0.5;
}

.advisor-career__title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
.advisor-career__title::before {
  display: block;
  content: "";
  width: 69px;
  height: 49px;
  margin: 0 auto 20px;
  background: url("../images/logo_risingbull_mark.png") center/contain no-repeat;
}

.advisor-career__col-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin: 80px 10px 0;
}
.advisor-career__col-block + .advisor-career__col-block {
  margin-top: 60px;
}
.advisor-career__col-block:last-child {
  margin-bottom: 40px;
}

.advisor-career__text {
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.04em;
}
.advisor-career__text > * + * {
  margin-top: 1.75em;
}

.advisor-career__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .advisor-career__bg {
    height: 500px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .advisor-career__title {
    font-size: 32px;
  }
  .advisor-career__col-block {
    gap: 30px;
    margin: 100px 0 0;
  }
  .advisor-career__col-block + .advisor-career__col-block {
    margin-top: 80px;
  }
  .advisor-career__col-block:last-child {
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .advisor-career__col-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
  .advisor-career__col-block._reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .advisor-career__col-block + .advisor-career__col-block {
    margin-top: 100px;
  }
  .advisor-career__text {
    margin: 0;
  }
  .advisor-career__img {
    width: 50%;
    margin: 0;
  }
}
/* 投資顧問契約とは
------------------------------------------------------ */
.advisor-contract-inner {
  padding: 0 10px;
}

.advisor-contract__body {
  margin-bottom: 40px;
}

.advisor-contract__lead {
  margin: 30px -10px 0;
  letter-spacing: 0.04em;
  text-align: center;
}

.advisor-contract-list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.advisor-contract-list li {
  width: 100%;
  max-width: 400px;
}

.advisor-contract-list__box {
  display: block;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #C6AF7E;
  border: 1px solid;
}

.advisor-contract-list__text {
  display: block;
  margin-top: 10px;
  font-size: 0.875em;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}

.advisor-contract__text {
  margin-top: 40px;
  letter-spacing: 0.04em;
}
.advisor-contract__text > * + * {
  margin-top: 1.75em;
}

.advisor-contract__bg {
  height: 180px;
  background: url("../images/bg_section_02_sp.jpg") center top/cover;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .advisor-contract-inner {
    padding: 0;
  }
  .advisor-contract__body {
    margin-bottom: 100px;
  }
  .advisor-contract__lead {
    margin: 40px 0 0;
  }
  .advisor-contract-list {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
  .advisor-contract-list li {
    max-width: 300px;
  }
  .advisor-contract-list__box {
    padding: 19px;
    border-radius: 10px;
    font-size: 20px;
    line-height: 1.5;
  }
  .advisor-contract-list__text {
    margin-top: 5px;
    font-size: 1em;
  }
  .advisor-contract__bg {
    height: 500px;
    background: url("../images/bg_section_02_pc.jpg") center top/cover;
  }
}
/* 投資顧問契約FAQ
------------------------------------------------------ */
.advisor-faq {
  padding-top: 60px;
  padding-bottom: 80px;
  color: #9B8452;
  background: #F4F5F6;
}

.advisor-faq__title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

.advisor-faq__img {
  margin: 20px auto 0;
  width: 240px;
  -webkit-transform: translateX(22px);
          transform: translateX(22px);
}
.advisor-faq__img + * {
  margin-top: 24px !important;
}

@media (min-width: 768px) {
  .advisor-faq {
    padding-top: 120px;
    padding-bottom: 140px;
  }
  .advisor-faq__title {
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
  }
  .advisor-faq__img {
    margin: 30px auto 0;
    width: 446px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .advisor-faq__img + * {
    margin-top: 0 !important;
  }
}
/* 会社概要
------------------------------------------------------ */
.company {
  margin-top: 80px;
}

.company__bg {
  position: relative;
  z-index: 0;
  margin-top: 40px;
  padding: 60px 0;
}
.company__bg::before, .company__bg::after {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
}
.company__bg::before {
  z-index: -2;
  background: url("../images/bg_section_01.jpg") center/cover;
  opacity: 0.65;
}
.company__bg::after {
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

.company__text {
  margin: 0 10px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.company__text > * + * {
  margin-top: 1.75em;
}

@media (min-width: 768px) {
  .company {
    margin-top: 60px;
  }
  .company__bg {
    margin-top: 80px;
    padding: 100px 0;
  }
  .company__text {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
  }
}
/* 会社概要（ビジョン）
------------------------------------------------------ */
.company-vision {
  color: #FBD962;
  margin: 80px 0;
}

.company-vision__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.company-vision__item {
  max-width: 450px;
  margin: 0 20px;
}

.company-vision__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 245px;
  height: 98px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.company-vision__title::before, .company-vision__title::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  content: "";
  width: 40px;
  height: 98px;
}
.company-vision__title::before {
  background: url("../images/parts_laurel_left.png") left center/contain no-repeat;
}
.company-vision__title::after {
  background: url("../images/parts_laurel_right.png") right center/contain;
}

.company-vision__text {
  margin-top: 30px;
  letter-spacing: 0.04em;
  line-height: 1.375;
}
.company-vision__text > * + * {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .company-vision {
    margin: 120px 0;
  }
  .company-vision__item {
    margin: 0;
  }
  .company-vision__item:first-child {
    max-width: 900px;
  }
  .company-vision__title {
    width: 363px;
    height: 130px;
    font-size: 34px;
    font-weight: 600;
  }
  .company-vision__title::before, .company-vision__title::after {
    width: 53px;
    height: 130px;
  }
  .company-vision__text {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.6666666667;
    text-align: center;
  }
  .company-vision__text > * + * {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .company-vision__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 60px;
  }
  .company-vision__item:first-child {
    grid-column: 1/3;
    width: calc(100% - 100px);
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid;
  }
  .company-vision__item:last-child {
    margin-left: auto;
  }
}
/* 経営理念
------------------------------------------------------ */
.philosophy {
  padding-top: 60px;
  padding-bottom: 60px;
  color: #0D0D67;
  background: #F4F5F6;
}

.philosophy-inner {
  padding: 0 20px;
}

.philosophy__title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}

.philosophy__lead {
  margin-top: 30px;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.2222222222;
}

.philosophy__text {
  margin-top: 20px;
}
.philosophy__text > * + * {
  margin-top: 1.75em;
}

@media (min-width: 768px) {
  .philosophy {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .philosophy-inner {
    padding: 0;
  }
  .philosophy__title {
    font-size: 32px;
  }
  .philosophy__lead {
    margin-top: 40px;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: center;
  }
  .philosophy__text {
    margin-top: 40px;
    text-align: center;
  }
}
/* profile
------------------------------------------------------ */
.profile {
  padding-top: 80px;
  padding-bottom: 80px;
}

.profile-inner {
  padding: 0 20px;
}

.profile__photo {
  width: 190px;
  margin: 0 auto;
}

.profile__name {
  margin-top: 30px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  color: #C6AF7E;
}

.profile__data {
  margin-top: 20px;
  letter-spacing: 0.04em;
  text-align: center;
}

.profile__text {
  margin-top: 30px;
  letter-spacing: 0.04em;
}
.profile__text > * + * {
  margin-top: 1.75em;
}

@media (min-width: 768px) {
  .profile {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .profile-inner {
    padding: 0;
  }
  .profile__photo {
    width: 250px;
  }
  .profile__name {
    margin-top: 10px;
    font-size: 32px;
  }
  .profile__text {
    text-align: center;
  }
}
/* チーム紹介
------------------------------------------------------ */
.team {
  padding-top: 60px;
  padding-bottom: 80px;
  color: #9B8452;
  background: #F4F5F6;
}

.team__title {
  color: inherit;
}

.team__lead {
  margin: 30px 20px 0;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.2222222222;
}

@media (min-width: 768px) {
  .team {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .team__lead {
    margin: 40px 0 0;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }
}
/* チーム紹介専用コンポーネント */
.team-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.team-card {
  width: calc((100% - 15px) / 2);
  padding: 10px 12.5px 15px;
  max-width: 320px;
  color: #333333;
  background: #fff;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.team-card__img {
  overflow: hidden;
  height: 90px;
  text-align: center;
}
.team-card__img img {
  width: auto;
  height: 120px;
}

.team-card__name {
  margin: 14px -12.5px 0;
  font-size: 14px;
  line-height: 1.4285714286;
  text-align: center;
}

.team-card__text {
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.1333333333;
  text-align: center;
}

@media (min-width: 768px) {
  .team-card-list {
    gap: 20px;
    margin-top: 30px;
  }
  .team-card {
    width: 320px;
    padding: 38px 10px 32px;
  }
  .team-card__img {
    height: 213px;
  }
  .team-card__img img {
    height: 100%;
  }
  .team-card__name {
    margin: 33px 0 0;
    font-size: 20px;
    line-height: 1.5;
  }
  .team-card__text {
    margin-top: 4px;
    font-size: 22px;
    line-height: 1.3636363636;
  }
}
/* media
------------------------------------------------------ */
.media {
  margin-top: 40px;
  padding: 28px 18px;
  border-radius: 5px;
  color: #9B8452;
  background: #fff;
  border: 2px solid;
}

.media__title {
  margin: 0 -10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.media__list {
  margin: 20px -10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.media__list li {
  width: 50%;
}

.media__text {
  margin-top: 40px;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .media {
    margin-top: 120px;
    padding: 38px 48px;
    border-radius: 10px;
  }
  .media__title {
    margin: 0 -20px;
    font-size: 32px;
    text-align: center;
  }
  .media__list {
    margin: 40px -50px 0;
  }
  .media__list li {
    width: 33.3333333333%;
  }
  .media__text {
    margin-top: 20px;
    letter-spacing: 0.04em;
    text-align: center;
  }
}
/* 日本株基本会員（コンテンツ内容）
------------------------------------------------------ */
.member {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #314154 linear-gradient(93deg, #2B5FB5 8%, #07409F 29%, #083786 59%, #072F71 77%);
  background-blend-mode: overlay;
}

.member__lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.3333333333;
  text-align: center;
}

@media (min-width: 768px) {
  .member {
    margin-top: 200px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .member__lead {
    font-size: 24px;
  }
}
/* メンバー専用コンポーネント */
.member-card-list {
  counter-reset: num 0;
  margin-top: 40px;
}

.member-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 360px;
  margin: 30px auto 0;
  padding: 15px 20px 20px;
  color: #0D0D67;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.member-card__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.member-card__title::before {
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero) ".";
  font-size: 1.25em;
}

.member-card__img {
  height: 187px;
  margin-top: 10px;
  text-align: center;
}
.member-card__img img {
  width: auto;
  height: 100%;
}

.member-card__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

.member-card__tag {
  margin-top: 10px;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: right;
  color: #9B8452;
}

@media (min-width: 768px) {
  .member-card-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px;
  }
  .member-card {
    margin: 0;
    padding: 15px 25px 30px;
  }
  .member-card__title {
    font-size: 30px;
  }
  .member-card__text {
    margin-top: 20px;
  }
  .member-card__tag {
    margin-top: 18px;
  }
}
/* 日本株基本会員（コンテンツ概要）
------------------------------------------------------ */
.member-overview {
  margin-top: 80px;
}
.member-overview:last-of-type {
  margin-bottom: 80px;
}

.member-overview__title + * {
  margin-top: 30px;
}

.member-overview__heading {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.member-overview__nav-title {
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #C6AF7E;
}
.member-overview__nav-title + * {
  margin-top: 20px;
}

.member-overview__lead {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
  text-align: center;
}
.member-overview__lead + * {
  margin-top: 40px !important;
}

.member-overview__text {
  margin-top: 20px;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .member-overview {
    margin-top: 140px;
  }
  .member-overview:last-of-type {
    margin-bottom: 140px;
  }
  .member-overview + .member-overview {
    margin-top: 120px;
  }
  .member-overview__title + * {
    margin-top: 40px;
  }
  .member-overview__heading {
    font-size: 24px;
  }
  .member-overview__lead {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 1.3333333333;
    text-align: center;
  }
  .member-overview__lead + * {
    margin-top: 40px !important;
  }
  .member-overview__text {
    margin-top: 40px;
    text-align: center;
  }
  .member-overview__text + * {
    margin-top: 60px !important;
  }
}
/* 株式投資成功ナビとは
------------------------------------------------------ */
.success-about {
  padding-top: 80px;
  padding-bottom: 80px;
}

.success-about__text {
  margin: 40px 20px 0;
  letter-spacing: 0.04em;
}

.success-about__list-title {
  margin-top: 40px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}

.success-about__list-box {
  margin-top: 20px;
  padding: 28px 18px;
  border-radius: 5px;
  color: #9B8452;
  background: #fff;
  border: 2px solid;
}

.success-about__list > * {
  letter-spacing: 0.04em;
  line-height: 1.7777777778;
}
.success-about__list li {
  position: relative;
  padding-left: 1em;
}
.success-about__list li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.success-about__list-text {
  margin-top: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.375;
}

@media (min-width: 768px) {
  .success-about {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .success-about__text {
    margin: 60px 0 0;
    text-align: center;
  }
  .success-about__list-title {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 500;
  }
  .success-about__list-box {
    padding: 38px 28px 28px;
    border-radius: 10px;
  }
  .success-about__list {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    max-width: 740px;
    margin: 0 auto;
  }
  .success-about__list > * {
    font-size: 18px;
    line-height: 1.7777777778;
  }
  .success-about__list li:before {
    content: "・";
  }
  .success-about__list-text {
    max-width: 740px;
    margin: 20px auto 0;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .success-about__text {
    margin: 60px -50px 0;
  }
}
/* 株式投資成功ナビが必要な理由
------------------------------------------------------ */
.success-reason {
  padding-top: 80px;
  padding-bottom: 80px;
  color: #9B8452;
  background: #F4F5F6;
}

.success-reason__col-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin: 0 20px;
}

.success-reason__title {
  margin: 0 -20px;
}

.success-reason__body {
  max-width: 500px;
}

.success-reason__text {
  margin-top: 30px;
  letter-spacing: 0.04em;
}
.success-reason__text > * + * {
  margin-top: 1.75em;
}

.success-reason__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 520px;
}

.success-reason__message {
  max-width: 1000px;
  margin: 30px auto 0;
  letter-spacing: 0.04em;
}
.success-reason__message > * + * {
  margin-top: 1.75em;
}

@media (min-width: 768px) {
  .success-reason {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .success-reason__col-block + * {
    margin-top: 60px !important;
  }
  .success-reason__title {
    margin: 0;
  }
  .success-reason__text {
    margin-top: 20px;
  }
  .success-reason__message {
    margin: 20px auto 0;
  }
}
@media (min-width: 992px) {
  .success-reason__col-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .success-reason__title {
    text-align: left;
  }
  .success-reason__img {
    width: calc(50% - 30px);
  }
  .success-reason__message {
    text-align: center;
  }
}
/* 株式投資成功ナビ（コンテンツ概要）
------------------------------------------------------ */
.success-overview {
  padding-top: 80px;
  padding-bottom: 80px;
}

.success-overview__heading {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}
.success-overview__heading + * {
  margin-top: 30px;
}

.success-overview__message {
  margin-top: 25px;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.4;
  color: #FBD962;
}

.success-overview__img {
  margin-top: 30px;
}

.success-overview__button {
  margin-top: 15px;
  text-align: center;
}

.success-overview__title {
  margin: 60px 20px 0;
  text-align: left;
}

.success-overview__text {
  margin: 30px 20px 0;
}
.success-overview__text > * + * {
  margin-top: 1.75em;
}
.success-overview__text span {
  color: #FBD962;
}

@media (min-width: 768px) {
  .success-overview {
    padding-top: 120px;
    padding-bottom: 160px;
  }
  .success-overview__heading {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
  .success-overview__heading + * {
    margin-top: 20px;
  }
  .success-overview__message {
    margin-top: 30px;
    line-height: 1.9;
  }
  .success-overview__img {
    margin-top: 80px;
  }
  .success-overview__title {
    margin: 80px 0 0;
    text-align: center;
  }
  .success-overview__text {
    margin: 60px 0 0;
  }
}
/* 株式投資ナビ（違い）
------------------------------------------------------ */
.success-difference {
  padding-top: 60px;
  padding-bottom: 80px;
  color: #9B8452;
  background: #F4F5F6;
}

.success-difference__col-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin: 0 20px;
}
.success-difference__col-block + .success-difference__col-block {
  margin-top: 40px;
}

.success-difference__body {
  max-width: 500px;
}

.success-difference__title {
  text-align: left;
}
.success-difference__title + * {
  margin-top: 30px;
}

.success-difference__text {
  letter-spacing: 0.04em;
}
.success-difference__text > * + * {
  margin-top: 1.75em;
}

.success-difference__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 520px;
}

@media (min-width: 768px) {
  .success-difference {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .success-difference__title + * {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .success-difference__col-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
  .success-difference__col-block._reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .success-difference__col-block + .success-difference__col-block {
    margin-top: 60px;
  }
  .success-difference__img {
    width: calc(50% - 30px);
  }
}
/* サービス内容
------------------------------------------------------ */
.service {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #314154 linear-gradient(93deg, #2B5FB5 8%, #07409F 29%, #083786 59%, #072F71 77%);
  background-blend-mode: overlay;
}

@media (min-width: 768px) {
  .service {
    margin-top: 200px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* サービス内容専用コンポーネント */
.service-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 25px;
  max-width: 745px;
  margin: 40px auto 0;
}

.service-card__thumb {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.service-card__thumb::before {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  pointer-events: none;
}
.service-card__thumb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  aspect-ratio: 1/1;
}
.service-card__thumb a img {
  position: absolute;
  z-index: -1;
  inset: 0;
  -webkit-transition: opacity ease-out 0.3s, -webkit-transform ease-out 0.3s;
  transition: opacity ease-out 0.3s, -webkit-transform ease-out 0.3s;
  transition: opacity ease-out 0.3s, transform ease-out 0.3s;
  transition: opacity ease-out 0.3s, transform ease-out 0.3s, -webkit-transform ease-out 0.3s;
}
@media (any-hover: hover) {
  .service-card__thumb a:hover img, .service-card__thumb a:focus-visible img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
}

.service-card__title {
  z-index: 1;
  display: block;
  width: 100%;
  padding: 4px 5px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.6);
}

.service-card__text {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.5384615385;
}

@media (min-width: 768px) {
  .service-card-list {
    gap: 40px 30px;
    max-width: 750px;
  }
  .service-card__title {
    z-index: 1;
    display: block;
    width: 100%;
    padding: 15px 80px 19px 15px;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.6) url("../images/icon_service_arrow.svg") right 15px center/50px 50px no-repeat;
  }
  .service-card__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.75;
  }
}
@media (min-width: 1200px) {
  .service-card-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 100%;
  }
}
/* コース内容
------------------------------------------------------ */
.course {
  margin-top: 80px;
}
.course:last-of-type {
  margin-bottom: 80px;
}

.course__title {
  max-width: 1000px;
  margin-inline: auto;
}
.course__title + * {
  margin-top: 10px;
}

.course__lead {
  max-width: 1000px;
  margin-inline: auto;
  font-size: 18px;
  text-align: center;
  line-height: 1.3333333333;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.course__lead + .course__img {
  margin-top: 30px;
}

.course__text {
  max-width: 1000px;
  margin: 30px auto 0;
  letter-spacing: 0.04em;
}
.course__text + * {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .course {
    margin-top: 140px;
  }
  .course:last-of-type {
    margin-bottom: 140px;
  }
  .course__title + * {
    margin-top: 40px;
  }
  .course__lead {
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 1.5833333333;
  }
  .course__lead + .course__img {
    margin-top: 30px;
  }
}
/* お問い合わせ
------------------------------------------------------ */
.contact {
  margin-top: 80px;
  margin-bottom: 35px;
}

.contact__title {
  margin: 0 -10px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}

.contact__lead {
  margin: 40px 20px 0;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .contact {
    margin-top: 100px;
    margin-bottom: 50px;
  }
  .contact__title {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .contact__lead {
    margin: 30px 0 0;
    text-align: center;
  }
}
/* お問い合わせフォーム
------------------------------------------------------ */
.contact-form {
  margin-top: 80px;
  margin-bottom: 80px;
}

.contact-form-inner {
  padding: 0 20px;
}

.contact-form__title + * {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .contact-form {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .contact-form-inner {
    max-width: 800px;
    padding: 0;
  }
  .contact-form__title + * {
    margin-top: 50px;
  }
}
/* お問い合わせ項目 */
.form-item:not(:first-child) {
  margin-top: 30px;
}

.input-field {
  margin-top: 10px;
}

.input-label {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.04em;
}

.error-text {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #DF5656;
}

.input-field.is-error .error-text {
  display: block;
}

.privacy-check {
  margin-top: 30px;
  font-size: 0.875em;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.privacy-check label {
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .form-item:not(:first-child) {
    margin-top: 60px;
  }
  .privacy-check {
    margin-top: 60px;
  }
}
/* システムメッセージ
------------------------------------------------------ */
.message {
  max-width: 1000px;
  margin: 40px auto 60px;
}

.message__text {
  margin-top: 40px;
  letter-spacing: 0.04em;
}
.message__text > * + * {
  margin-top: 1.75em;
}

@media (min-width: 768px) {
  .message {
    margin: 120px auto 100px;
  }
  .message__text {
    text-align: center;
  }
}
/* アクセスマップ
------------------------------------------------------ */
.access {
  margin-top: 100px;
  padding-bottom: 60px;
  border-bottom: 1px solid;
}

.access__address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

.access__map {
  margin: 15px 10px 0;
}
.access__map iframe {
  width: 100%;
  aspect-ratio: 325/150;
}

@media (min-width: 768px) {
  .access {
    margin-top: 120px;
    padding-bottom: 100px;
  }
  .access__address {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 2;
  }
  .access__map {
    margin: 20px 0 0;
  }
  .access__map iframe {
    aspect-ratio: 1000/400;
  }
}
/* よくある質問
------------------------------------------------------ */
.faq {
  margin-top: 80px;
  margin-bottom: 100px;
}

.faq__title + * {
  margin-top: 40px;
}

.faq__heading {
  margin-top: 80px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: #C6AF7E;
}
.faq__heading + * {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .faq {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .faq__heading {
    margin-top: 100px;
    font-size: 24px;
  }
  .faq__heading + * {
    margin-top: 45px;
  }
}
/* 実績
------------------------------------------------------ */
.award {
  max-width: 1000px;
  margin: 40px auto 60px;
}

.award__title {
  margin-inline: -15px;
  font-family: "Cormorant", serif;
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #D3DDF0;
  opacity: 0.3;
}
.award__title + * {
  margin-top: -20px;
}

.award__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.award__list--3col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 13px;
}
.award__list--3col .award__item {
  max-width: 166px;
}
.award__list--3col .award__item:first-child {
  grid-column: 1/3;
  margin: 0 auto;
}
.award__list--3col .award__item:nth-of-type(2n) {
  margin-left: auto;
}
.award__list--4col {
  gap: 10px 6px;
}
.award__list--4col .award__item {
  width: 160px;
}

@media (min-width: 768px) {
  .award {
    margin: 100px auto;
  }
  .award__title {
    margin-inline: calc(-1200px + 1000px);
    font-size: min(12.5vw, 180px);
    line-height: 1.2111111111;
  }
  .award__title + * {
    margin-top: min(-3.6111111111vw, -52px);
  }
  .award__list--3col {
    gap: 46px;
  }
  .award__list--3col .award__item {
    max-width: 303px;
  }
  .award__list--4col {
    gap: 15px 9px;
  }
  .award__list--4col .award__item {
    width: 243px;
  }
}
@media (min-width: 992px) {
  .award__list--3col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .award__list--3col .award__item {
    width: calc((100% - 92px) / 3);
    margin: 0 !important;
  }
}
/* お客様からの声
------------------------------------------------------ */
.voice {
  padding-top: 100px;
  padding-bottom: 100px;
  color: #9B8452;
  background: #F4F5F6;
}

.voice__title {
  color: inherit;
}

@media (min-width: 768px) {
  .voice {
    margin-top: 120px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/* お客様からの声専用コンポーネント */
.voice-card {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 28px 18px;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #9B8452;
}

.voice-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.voice-card__profile {
  width: 92px;
  margin: 0 auto;
}

.voice-card__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 16px;
  letter-spacing: 0.04em;
}

.voice-card__caption {
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (min-width: 768px) {
  .voice-card {
    padding: 48px 58px 48px;
    border-radius: 10px;
  }
  .voice-card__profile {
    width: 158px;
  }
  .voice-card__text {
    padding-top: 30px;
  }
  .voice-card__caption {
    font-size: 18px;
  }
}
/* slickの設定 */
#voiceSlider .slick-list {
  padding: 0 !important;
  margin-inline: -15px;
}

#voiceSlider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#voiceSlider .slick-slide {
  height: auto !important;
  margin-left: 15px;
  margin-right: 15px;
}

#voiceSlider .slick-dots {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
#voiceSlider .slick-dots li button {
  display: block;
  outline: none;
  width: 40px;
  height: 10px;
  margin: -5px 0;
  padding: 0;
  color: transparent;
  background: #D5D5D5;
  cursor: pointer;
}
#voiceSlider .slick-dots li.slick-active button {
  background: #9B8452;
}

@media (min-width: 768px) {
  #voiceSlider .slick-list {
    margin-inline: calc(50% - 50vw);
  }
  #voiceSlider .slick-dots {
    margin-top: 60px;
  }
}
/* メインビジュアル
------------------------------------------------------ */
.mv {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding-top: 166px;
}
.mv::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/bg_mv.jpg") center top/cover;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0.7;
}

.mv-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.mv__copy {
  font-size: 36px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.mv__copy span {
  display: block;
}
.mv__copy span + span {
  margin-top: 4px;
}

.mv__img {
  width: 375px;
}

.mv__caption {
  position: absolute;
  top: 67px;
  right: 15px;
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .mv {
    padding-bottom: 0;
  }
  .mv__copy {
    font-size: 45px;
  }
  .mv__img {
    width: 460px;
  }
  .mv__caption {
    top: 80px;
    right: 30px;
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .mv {
    padding-top: 100px;
  }
  .mv-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .mv__copy {
    font-size: min(4.6031746032vw, 58px);
    margin-bottom: min(11.9047619048vw, 150px);
  }
  .mv__img {
    width: min(46.5079365079vw, 586px);
  }
}
/* 投資顧問について（トップページ）
------------------------------------------------------ */
.top-advisor {
  margin: 80px 0;
}

.top-advisor__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

.top-advisor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 25px;
  width: 345px;
  margin: 30px auto 0;
}

.top-advisor__item {
  width: 160px;
}
.top-advisor__item:nth-of-type(even) {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.top-advisor__text {
  margin-top: 10px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

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

@media (min-width: 768px) {
  .top-advisor {
    margin: 180px 0 120px;
  }
  .top-advisor__title {
    font-size: 32px;
  }
  .top-advisor__list {
    gap: 60px;
    width: 580px;
    margin: 60px auto 0;
  }
  .top-advisor__item {
    width: 260px;
  }
  .top-advisor__text {
    font-size: 24px;
  }
  .top-advisor__button {
    margin-top: 90px;
  }
}
@media (min-width: 992px) {
  .top-advisor__list {
    width: auto;
  }
  .top-advisor__item {
    width: calc((100% - 120px) / 3);
  }
  .top-advisor__item:nth-of-type(even) {
    margin-top: 90px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* サービス（トップページ）
------------------------------------------------------ */
.top-service {
  overflow: hidden;
  position: relative;
  padding-top: 20px;
  padding-bottom: 80px;
}
.top-service::before, .top-service::after {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
}
.top-service::before {
  z-index: -2;
  background: #000;
  opacity: 0.3;
}
.top-service::after {
  z-index: -1;
  background: #0D0D67 url("../images/bg_top_service.jpg") center/cover;
  opacity: 0.12;
}
.top-service--support::before {
  display: none;
}
.top-service--support::after {
  background: url("../images/bg_top_support.jpg") center/cover;
  opacity: 0.25;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.top-service__heading {
  margin-top: 30px;
}

.top-service__lead {
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
  line-height: 1.3333333333;
}

.top-service__text {
  max-width: 800px;
  margin: 20px auto 0;
  letter-spacing: 0.04em;
}
.top-service__text > * + * {
  margin-top: 1.75em;
}
.top-service__text + * {
  margin-top: 40px;
}

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

@media (min-width: 768px) {
  .top-service {
    padding-top: 10px;
    padding-bottom: 100px;
  }
  .top-service__title .page-title__main {
    font-size: 32px;
  }
  .top-service__heading {
    margin-top: 40px;
  }
  .top-service__lead {
    font-size: 24px;
    line-height: 1.5;
  }
  .top-service__text {
    margin: 60px auto 0;
    text-align: center;
  }
  .top-service__text + * {
    margin-top: 60px;
  }
  .top-service__button {
    margin-top: 80px;
  }
}
/* 日本株成功ナビ（トップページ）
------------------------------------------------------ */
.top-success {
  padding-top: 80px;
  padding-bottom: 80px;
}

.top-success-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding: 0 10px;
}

.top-success__title {
  text-align: left;
}

.top-success__lead {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.3333333333;
}

.top-success__text {
  margin-top: 20px;
  letter-spacing: 0.04em;
}
.top-success__text > * + * {
  margin-top: 1.75em;
}

.top-success__img {
  max-width: 620px;
}

@media (min-width: 768px) {
  .top-success {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .top-success-inner {
    padding: 0;
    gap: 50px;
  }
  .top-success__lead {
    margin-top: 40px;
    font-size: 24px;
    line-height: 1.5;
  }
  .top-success__text {
    margin-top: 40px;
  }
  .top-success__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 620px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .top-success-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-success__body {
    max-width: 480px;
  }
  .top-success__img {
    width: calc(50% + 20px);
    margin-right: -90px;
  }
}
/* 戦略銘柄レポート（トップページ）
------------------------------------------------------ */
.top-report {
  position: relative;
  z-index: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}
.top-report::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #314154 linear-gradient(-95deg, #2B5FB5 9%, #07409F 29%, #083786 59%, #072F71 77%);
  background-blend-mode: overlay;
  opacity: 0.6;
}

.top-report-inner {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.top-report__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 620px;
  margin: 0 auto;
}

.top-report__title {
  text-align: left;
}

.top-report__text {
  margin-top: 30px;
  letter-spacing: 0.04em;
}
.top-report__text > * + * {
  margin-top: 1.75em;
}

.top-report__s-img {
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .top-report {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .top-report-inner {
    padding: 0;
    gap: 50px;
  }
  .top-report__text {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .top-report-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 100px 50px;
  }
  .top-report__body {
    max-width: 480px;
  }
  .top-report__img {
    width: calc(100% + 20px);
    margin-left: -90px;
  }
  .top-report__s-img {
    grid-column: 1/3;
    grid-row: 2/3;
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px);
  }
}
/* 売買サポートシリーズ（トップページ）
------------------------------------------------------ */
.top-trade {
  position: relative;
  z-index: 0;
  padding-bottom: 80px;
  background: #314154 linear-gradient(115deg, #2B5FB5 9%, #07409F 29%, #083786 59%, #072F71 77%);
  background-blend-mode: overlay;
}
.top-trade::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/bg_advisor_about.jpg") center/cover;
  opacity: 0.119;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

.top-trade-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 10px;
  gap: 20px;
}

.top-trade__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 278px;
  margin: 0 auto;
  -webkit-transform: translateX(-24px);
          transform: translateX(-24px);
}

.top-trade__title {
  text-align: left;
}

.top-trade__lead {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.3333333333;
}

.top-trade__text {
  margin-top: 30px;
  letter-spacing: 0.04em;
}
.top-trade__text > * + * {
  margin-top: 1.75em;
}

@media (min-width: 768px) {
  .top-trade-inner {
    padding: 0;
    gap: 50px;
  }
  .top-trade__img {
    width: 415px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .top-trade__lead {
    margin-top: 40px;
    font-size: 24px;
    line-height: 1.5;
  }
  .top-trade__text {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .top-trade {
    padding-bottom: 0;
  }
  .top-trade-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 80px;
  }
}
/* コンテンツ（トップページ）
------------------------------------------------------ */
.top-contents {
  padding-top: 60px;
  padding-bottom: 60px;
  color: #9B8452;
  background: #F4F5F6;
}
.top-contents--bg {
  position: relative;
  z-index: 0;
  background: url("../images/bg_mv.jpg") center/cover;
}
.top-contents--bg::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #F4F5F6;
  opacity: 0.9;
}

.top-contents__text {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}
.top-contents__text + * {
  margin-top: 40px;
}

.top-contents__title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

.top-contents__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.top-contents__item {
  display: grid;
  place-content: center;
  width: 100%;
  padding: 28px 18px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.875;
  background: #fff;
  border: 2px solid;
}

@media (min-width: 768px) {
  .top-contents {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .top-contents__text {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
  }
  .top-contents__title {
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
  }
  .top-contents__list {
    gap: 20px;
  }
  .top-contents__item {
    border-radius: 10px;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: center;
  }
  .top-contents__item > * {
    max-width: 120px;
  }
  .top-contents__item--50 {
    width: calc((100% - 20px) / 2);
  }
}
/* 資産形成をサポート（トップページ）
------------------------------------------------------ */
.top-support {
  margin-top: 60px;
  margin-bottom: 60px;
}

.top-support__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding: 40px 10px;
  color: #333333;
  background: #F4F5F6;
}

.top-support__title {
  margin-right: -20px;
}

.top-support__text {
  margin-top: 30px;
  letter-spacing: 0.04em;
}
.top-support__text > * + * {
  margin-top: 1.75em;
}

.top-support__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 680px;
  margin-bottom: -40px;
}

@media (min-width: 768px) {
  .top-support__contents {
    gap: 50px;
    padding: 40px 50px;
  }
  .top-support__title {
    margin: 0;
  }
  .top-support__text {
    margin-top: 40px;
  }
  .top-support__img {
    max-width: 680px;
  }
}
@media (min-width: 992px) {
  .top-support__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 40px 100px;
  }
  .top-support__title {
    text-align: left;
    margin-right: -2em;
  }
  .top-support__body {
    max-width: 460px;
  }
  .top-support__img {
    width: calc(50% + 180px);
    margin-right: -220px;
    margin-bottom: 0;
  }
}
/* 資産形成をサポート（トップページ）
------------------------------------------------------ */
.top-message {
  position: relative;
  z-index: 0;
  padding-top: 60px;
  padding-bottom: 80px;
}
.top-message::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #314154 linear-gradient(-95deg, #2B5FB5 9%, #07409F 29%, #083786 59%, #072F71 77%);
  background-blend-mode: overlay;
  opacity: 0.6;
}
.top-message .award {
  margin: 0 !important;
}

.top-message-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 70px;
  padding: 0 10px;
}

.top-message__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 322px;
  margin: 0 auto;
}

.top-message__text {
  letter-spacing: 0.04em;
}
.top-message__text > * + * {
  margin-top: 1.75em;
}

@media (min-width: 768px) {
  .top-message {
    padding-top: 80px;
  }
  .top-message-inner {
    gap: 50px;
    padding: 0;
  }
  .top-message__img {
    width: 430px;
  }
}
@media (min-width: 992px) {
  .top-message {
    padding-bottom: 0;
  }
  .top-message-inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-message__text {
    width: 50%;
  }
}
/*------------------------------------------------------------------------
// Utilities
------------------------------------------------------------------------*/
/* スクリーンリーダーから隠す */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

/* フル幅 */
.full-width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* 表示切り替え */
.pc-hidden {
  display: block;
}
@media (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

.sp-hidden {
  display: none;
}
@media (min-width: 768px) {
  .sp-hidden {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */