@charset "UTF-8";

/* ===============================================================
  投稿系スタイリング
=============================================================== */

/* ===============================================================
  見出し
=============================================================== */
/* H2：メインセクション見出し */
.content h2 {
  font-size: 1.75rem;
  margin: 2.5em 0 1.2em;
  padding: .5em 0 .5em 1em;
  border-left: 4px solid var(--mstyle-main-color);
  background: linear-gradient(to right, var(--mstyle-light-green-color), #fff);
  font-weight: 600;
  color: var(--mstyle-text-color);
}

/* H3：サブセクション（下線にグラデーション） */
.content h3 {
  font-size: 1.5rem;
  margin: 2.3em 0 1em;
  padding-bottom: 0.3em;
  border-bottom: 3px solid transparent;
  background-image: linear-gradient(to right, var(--mstyle-main-color), #fff);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 3px;
  /* 下線の高さに合わせる */
  color: var(--mstyle-text-color);
  font-weight: 600;
}

/* H4：小見出し（やさしい左線） */
.content h4 {
  font-size: 1.25rem;
  margin: 2em 0 .8em;
  padding-left: .75em;
  border-left: 3px solid var(--mstyle-sub-color);
  color: var(--mstyle-text-color);
  font-weight: 500;
}

/* H5：補足タイトル */
.content h5 {
  font-size: 1.1rem;
  margin: 1.8em 0 .5em;
  color: #555;
  font-weight: 500;
}

/* H6：注釈レベル */
.content h6 {
  font-size: 1rem;
  margin: 1.5em 0 .5em;
  color: #777;
  font-weight: 400;
  font-style: italic;
}


/* ===============================================================
  その他ブロック
=============================================================== */
main {
  margin: var(--main-mar-last);
}

.content {
  line-height: 1.8;
  color: var(--mstyle-text-color);
  font-size: 1rem;
  margin: 0 0 200px 0;
}

/* 段落 */
.content p {
  margin: 1.2em 0;
}

.content :is(h2, h3, h4, h5, h6, )+p {
  margin: .5em 0 1.2em;
}

/* 画像 */
.content img {
  max-width: 75%;
  height: auto;
  display: block;
  margin: 1.5em auto;
  border-radius: 8px;
}

/* WordPressの画像ブロック */
.content .wp-block-image {
  margin: 2em 0;
  text-align: center;
}

/* リスト */
.content ul,
.content ol {
  margin: 1.5em 0 1.5em 1.5em;
  padding-left: 1em;
}

.content li {
  margin-bottom: 0.5em;
  position: relative;
}

.content li::before {
  position: absolute;
  content: "";
  display: block;
  width: 1.25em;
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%235A9C6E' d='M12.733 20.687l11.518-11.518q0.297-0.298 0.696-0.304t0.709 0.304 0.31 0.713-0.31 0.713l-12.079 12.1q-0.362 0.361-0.844 0.361t-0.844-0.361l-5.567-5.567q-0.297-0.298-0.293-0.707t0.314-0.719 0.713-0.31 0.713 0.31l4.964 4.985z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  top: .3em;
  left: -1.3125em;
}

/* リンク */
.content a {
  color: var(--mstyle-main-color);
  text-decoration: underline;
  transition: var(--transition-main);
}

@media (hover: hover) {
  .content a:hover {
    color: var(--mstyle-sub-color);
  }
}

/* 引用（レビューやお客様の声などにも使える） */
.content blockquote {
  border-left: 4px solid var(--mstyle-sub-color);
  background: var(--mstyle-light-green-color);
  padding: 1em 1.5em;
  margin: 2em 0;
  color: #444;
  font-style: italic;
  position: relative;
}

.content blockquote::after {
  position: absolute;
  content: "＜引用文＞";
  display: block;
  color: #777;
  bottom: .5em;
  right: 2.15em;
  font-size: .75em;
}

/* テーブル */
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}

.content th,
.content td {
  border: 1px solid #ccc;
  padding: 0.8em;
  text-align: left;
}

.content th {
  background-color: var(--mstyle-light-green-color);
  color: var(--mstyle-text-color);
  font-weight: 600;
}

/* iframe（YouTubeなど） */
.content iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
}

/* 強調 */
.content strong {
  font-weight: 700;
  color: var(--mstyle-main-color);
}


/* ===============================================================
  レスポンシブ
=============================================================== */
@media screen and (max-width: 768px) {
  .content {
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0 0 150px 0;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content h3 {
    font-size: 1.3rem;
  }

  .content h4 {
    font-size: 1.15rem;
  }

  .content h5 {
    font-size: 1rem;
  }

  .content h6 {
    font-size: 0.95rem;
  }

  .content table,
  .content iframe,
  .content img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .content ul,
  .content ol {
    margin-left: 1em;
  }

  .content blockquote {
    font-size: 0.95rem;
    padding: 1em;
  }
}


/* ===============================================================
  投稿日とカテゴリー   ■ BEGIN ■
=============================================================== */
.entry-header {
  margin: 0 0 50px 0;
}

.entry-header .meta {
  text-align: right;
}

.entry-header .date {
  display: inline-block;
  margin: 0 0 4px 0;
}

.entry-header .date svg {
  --svg-va: -2.5px;
  margin: 0 10px 0 0;
}

.entry-header .categories {
  display: flex;
  justify-content: flex-end;
  gap: 8px 16px;
}

.entry-header .categories a {
  display: block;
  color: var(--mstyle-text-color);
  font-size: var(--fz-12);
  line-height: normal;
  text-align: center;
  text-decoration: none;
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  padding: 6px 26px;
  transition: var(--transition-main);
}

@media (hover: hover) {
  .entry-header .categories a:hover {
    opacity: .75;
  }
}
/* ===============================================================
  投稿日とカテゴリー   ■ END ■
=============================================================== */


/* ==============================================================================
  はじめての不動産購入ガイド（/column/first-home-buying-guide/）   ■ BEGIN ■
============================================================================== */
.main-fhb-guide {
  --btn-large-any-color: var(--white-color);
  --btn-large-any-bgcolor: var(--mstyle-sub-color);
}

.main-fhb-guide .page-header-title {
  margin: 0;
}

.main-fhb-guide h2 {
  font-size: var(--fz-24);
  font-weight: 700;
  padding: 0 0 0 44px;
  margin: 0 0 50px 0;
  position: relative;
}

.main-fhb-guide h2::before {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 80px;
  border-radius: 5px;
  background: var(--mstyle-main-color);
  left: 0;
  bottom: 50%;
  transform: translate(0, 50%);
}

@media screen and (max-width:768px) {
  .main-fhb-guide h2 {
    width: var(--inner-width-sp);
    font-size: var(--fz-20);
    padding: 0 0 0 17px;
    margin: 0 auto 17px auto;
  }
  .main-fhb-guide h2::before {
    width: 8px;
    height: 40px;
  }
}


/* ------------------ fv ------------------ */

.main-fhb-guide .sec-fv {
  background: url(../../images/pictures/pic-white-wallpaper.webp) repeat-y center / 100%;
  padding: 68px 0 100px 0;
  margin: 0 0 65px 0;
}

.main-fhb-guide .sec-fv .fv-text {
  width: 82%;
  margin: 0 0 40px 0;
}

.main-fhb-guide .sec-fv .fv-pic {
  width: 62%;
  border-radius: var(--base-radius);
  margin: 0 0 20px 0;
  overflow: hidden;
}

.main-fhb-guide .sec-fv .categories {
  display: flex;
  gap: 8px 16px;
}

.main-fhb-guide .sec-fv .categories a {
  display: block;
  color: var(--mstyle-text-color);
  font-size: var(--fz-12);
  line-height: normal;
  text-align: center;
  text-decoration: none;
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  padding: 6px 26px;
  transition: var(--transition-main);
}

@media (hover: hover) {
  .main-fhb-guide .sec-fv .categories a:hover {
    opacity: .75;
  }
}

@media screen and (max-width:768px) {
  .main-fhb-guide .sec-fv {
    padding: 26px 0 50px 0;
  }
  .main-fhb-guide .sec-fv .fv-text {
    width: 100%;
    margin: 0 0 15px 0;
  }
}

/* ------------------ sec-buy-flow ------------------ */
.main-fhb-guide .sec-buy-flow {
  margin: var(--sec-mar-base);
}

.main-fhb-guide .sec-buy-flow :is(.buy-flow-start, .buy-flow-end) {
  display: none;
}

.main-fhb-guide .sec-buy-flow .below-title {
  background: url(../../images/pages/illust-buy-flow-start.webp) no-repeat center bottom 40px / 115%;
  padding: 0 0 200px 0;
}

.main-fhb-guide .sec-buy-flow .buy-flow {
  background: url(../../images/pages/illust-buy-flow-end.webp) no-repeat center bottom 40px / 115%;
  padding: 0 0 200px 0;
}

.main-fhb-guide .sec-buy-flow .buy-flow > div {
  display: flex;
  gap: 0 50px;
  margin: 0 0 56px 0;
}

.main-fhb-guide .sec-buy-flow .buy-flow .pic-area {
  position: relative;
}

.main-fhb-guide .sec-buy-flow .buy-flow .pic-area .step {
  position: absolute;
  width: 125px;
  top: -46px;
  left: -45px;
}

.main-fhb-guide .sec-buy-flow .buy-flow .pic-area .pic {
  width: 250px;
  height: 100%;
  border-radius: var(--base-radius);
  overflow: hidden;
}

.main-fhb-guide .sec-buy-flow .buy-flow .text {
  position: relative;
}

.main-fhb-guide .sec-buy-flow .buy-flow .title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 5px 0;
}

.main-fhb-guide .sec-buy-flow .buy-flow .title-area h3 {
  --svg-width: 32px;
  --svg-va: -7px;
  font-size: var(--fz-24);
  font-weight: 700;
}

.main-fhb-guide .sec-buy-flow .buy-flow .text p {
  margin: 0 0 20px 0;
}

.main-fhb-guide .sec-buy-flow .buy-flow .text p .loan-link {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 2px;
}

.main-fhb-guide .sec-buy-flow .buy-flow .tips {
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  padding: 25px 20px;
}

.main-fhb-guide .sec-buy-flow .buy-flow .tips h4 {
  display: inline-block;
  font-weight: 700;
  background: var(--white-color);
  border-radius: var(--base-radius);
  padding: 4px 16px;
  margin: 0 0 8px 0;
}

.main-fhb-guide .sec-buy-flow .buy-flow .tips h4 svg {
  --svg-width: 28px;
  --svg-color: var(--mstyle-main-color);
  --svg-va: -7px;
  margin: 0 7px 0 0;
}

.main-fhb-guide .sec-buy-flow .buy-flow .tips li {
  padding: 0 0 0 38px;
  position: relative;
}

.main-fhb-guide .sec-buy-flow .buy-flow .tips li::before {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mstyle-text-color);
  left: 20px;
  bottom: 50%;
  transform: translate(0, 50%);
}

.main-fhb-guide .sec-buy-flow .buy-flow .lined-btn-area {
  margin: 20px 0 0 0;
}

.main-fhb-guide .sec-buy-flow .after-flow {
  display: flex;
  gap: 0 50px;
  margin: 0 0 56px 0;
}

.main-fhb-guide .sec-buy-flow .after-flow .pic-area .pic {
  width: 376px;
  height: 100%;
  border-radius: var(--base-radius);
  overflow: hidden;
}

.main-fhb-guide .sec-buy-flow .after-flow .text {
  position: relative;
}

.main-fhb-guide .sec-buy-flow .after-flow .title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 5px 0;
}

.main-fhb-guide .sec-buy-flow .after-flow .title-area h3 {
  --svg-width: 32px;
  --svg-va: -7px;
  font-size: var(--fz-24);
  font-weight: 700;
}

.main-fhb-guide .sec-buy-flow .after-flow .text p {
  margin: 0 0 20px 0;
}

.main-fhb-guide .sec-buy-flow .after-flow .tips {
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  padding: 25px 20px;
}

.main-fhb-guide .sec-buy-flow .after-flow .tips h4 {
  display: inline-block;
  font-weight: 700;
  background: var(--white-color);
  border-radius: var(--base-radius);
  padding: 4px 16px;
  margin: 0 0 8px 0;
}

.main-fhb-guide .sec-buy-flow .after-flow .tips h4 svg {
  --svg-width: 28px;
  --svg-color: var(--mstyle-main-color);
  --svg-va: -7px;
  margin: 0 7px 0 0;
}

.main-fhb-guide .sec-buy-flow .after-flow .tips li {
  padding: 0 0 0 38px;
  position: relative;
}

.main-fhb-guide .sec-buy-flow .after-flow .tips li::before {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mstyle-text-color);
  left: 20px;
  top: 12px;
}

.main-fhb-guide .sec-buy-flow .after-flow .lined-btn-area {
  margin: 20px 0 0 0;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .main-fhb-guide .sec-buy-flow .buy-flow>div {
    gap: 0 25px;
    margin: 0 0 78px 0;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow>div:last-child {
    margin: 0;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .pic-area .step {
    width: 108px;
    top: -50px;
    left: -17px;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .pic-area .pic {
    width: 228px;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .text::after {
    width: 130px;
    bottom: -30px;
    right: 0;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .lined-btn-area {
    flex-direction: column;
    gap: 16px 0;
  }
}

@media screen and (max-width:768px) {
  .sec-buy-flow>.inner {
    display: contents;
  }
  .main-fhb-guide .sec-buy-flow .below-title {
    background: none;
    padding: 0;
  }
  .main-fhb-guide .sec-buy-flow :is(.buy-flow-start, .buy-flow-end) {
    display: block;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow-end {
    margin: -55px 0 20px 0;
  }
  .main-fhb-guide .sec-buy-flow .h2-title,
  .main-fhb-guide .sec-buy-flow .below-title {
    width: var(--inner-width-sp);
    margin: 0 auto 30px auto;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow {
    --btn-large-any-color: var(--white-color);
    --btn-large-any-bgcolor: var(--mstyle-text-color);
    width: 100%;
    max-width: 348px;
    background: none;
    padding: 0;
    margin: 0 auto 0 auto;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow>div {
    align-items: center;
    flex-direction: column;
    background: var(--mstyle-main-color);
    border-radius: var(--base-radius);
    padding: 0 0 60px 0;
    margin: 0 0 125px 0;
    position: relative;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow>div::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 360 / 119;
    background-image: url(../../images/illust/illust-step-back-sp.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: -100px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow>div::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 360 / 119;
    background-image: var(--step-bg-bottom);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    bottom: -77px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .flow-1 {
    --step-bg-bottom: url(../../images/illust/illust-step-1-sp.webp);
    padding: 56px 0 45px 0;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .flow-2 {
    --step-bg-bottom: url(../../images/illust/illust-step-2-sp.webp);
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .flow-3 {
    --step-bg-bottom: url(../../images/illust/illust-step-3-sp.webp);
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .flow-4 {
    --step-bg-bottom: url(../../images/illust/illust-step-4-sp.webp);
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .flow-5 {
    --step-bg-bottom: url(../../images/illust/illust-step-5-sp.webp);
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .flow-1::before {
    content: none;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .pic-area .step {
    display: none;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .pic-area {
    width: 80%;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .pic-area .pic {
    width: 100%;
    overflow: visible;
    position: relative;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .pic-area .pic img {
    border-radius: inherit;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .pic-area .pic::before {
    position: absolute;
    content: var(--period-sp);
    display: block;
    color: var(--mstyle-main-color);
    font-size: var(--fz-12);
    font-weight: 700;
    line-height: normal;
    background: var(--white-color);
    border-radius: var(--base-radius);
    padding: 4px 16px;
    top: -30px;
    right: 0;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .text {
    width: 80%;
    padding: 30px 0 10px 0;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .text::after {
    content: none;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .text p {
    width: 100%;
    color: var(--white-color);
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .tips {
    font-size: var(--fz-14);
    padding: 20px 15px;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .tips h4 svg {
    --svg-width: 20px;
    --svg-va: -5px;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .tips li {
    line-height: normal;
    padding: 0 0 0 26px;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .tips li + li {
    margin: 8px 0 0 0;
  }
  .main-fhb-guide .sec-buy-flow .buy-flow .tips li::before {
    top: 8px;
    left: 12px;
    bottom: auto;
    transform: none;
  }

  .main-fhb-guide .sec-buy-flow .buy-flow .title-area h3 {
    --svg-width: 28px;
    --svg-color: var(--white-color);
    color: var(--white-color);
    font-size: var(--fz-20);
  }

  .main-fhb-guide .sec-buy-flow .cong-text-1 {
    display: none;
  }
  .main-fhb-guide .sec-buy-flow .after-flow {
    flex-direction: column;
    width: var(--inner-width-sp);
    margin: 0 auto 50px auto;
  }
  .main-fhb-guide .sec-buy-flow .after-flow .pic-area {
    margin: 0 0 20px 0;
  }
  .main-fhb-guide .sec-buy-flow .after-flow .pic-area .pic {
    width: auto;
  }
  .main-fhb-guide .sec-buy-flow .after-flow .title-area h3 {
    --svg-width: 28px;
    font-size: var(--fz-20);
    margin: 0 0 8px 0;
  }
  .main-fhb-guide .sec-buy-flow .after-flow .tips {
    font-size: var(--fz-14);
    padding: 20px 15px;
  }
  .main-fhb-guide .sec-buy-flow .after-flow .tips h4 svg {
    --svg-width: 20px;
    --svg-va: -5px;
  }
  .main-fhb-guide .sec-buy-flow .after-flow .tips li {
    line-height: normal;
    padding: 0 0 0 26px;
  }
  .main-fhb-guide .sec-buy-flow .after-flow .tips li::before {
    top: 8px;
    left: 12px;
    bottom: auto;
    transform: none;
  }
}

@media screen and (max-width:375px) {
  .main-fhb-guide .sec-buy-flow .buy-flow>div::after {
    bottom: -70px;
  }
}

/* ------------------ sec-simulation ------------------ */
.main-fhb-guide .sec-simulation {
  background: url(../../images/pictures/pic-white-wallpaper.webp) repeat-y center / 100%;
  padding: var(--sec-pad-image);
  margin: var(--sec-mar-image);
}

.main-fhb-guide .sec-simulation .below-title {
  margin: 0 0 50px 0;
}

.main-fhb-guide .sec-simulation .loan-simulation {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 100px 0;
}

.main-fhb-guide .sec-simulation .loan-simulation ul {
  flex-shrink: 0;
  width: 455px;
}

.main-fhb-guide .sec-simulation .loan-simulation ul .description {
  font-size: var(--fz-14);
  font-weight: 700;
  text-align: center;
  padding: 8px 0;
  background: var(--mstyle-sub-grey-color);
  border-radius: 8px 8px 0 0;
}

.main-fhb-guide .sec-simulation .loan-simulation li:not(.description) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
}

.main-fhb-guide .sec-simulation .loan-simulation li .wrapper {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.main-fhb-guide .sec-simulation .loan-simulation li .numbering {
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  color: var(--white-color);
  font-size: 1.2em;
  font-weight: 700;
  background: var(--mstyle-text-color);
  border-radius: 50%;
}

.main-fhb-guide .sec-simulation .loan-simulation li .input-wrapper span {
  display: inline-block;
  width: 32px;
  font-weight: 700;
}

.main-fhb-guide .sec-simulation .loan-simulation li input {
  width: 135px;
  font-size: var(--fz-24);
  font-weight: 700;
  text-align: center;
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  border: 2px solid var(--mstyle-main-color);
  margin: 0 8px 0 0;
}

.main-fhb-guide .sec-simulation .loan-simulation ul li:not(.description):nth-child(2n) {
  background: var(--mstyle-light-grey-color);
}

.main-fhb-guide .sec-simulation .loan-simulation ul li:not(.description):nth-child(2n+1) {
  background: var(--white-color);
}

.main-fhb-guide .sec-simulation .loan-simulation li:last-child {
  border-radius: 0 0 8px 8px;
}

.main-fhb-guide .sec-simulation .loan-simulation input[type=number]::-webkit-outer-spin-button,
.main-fhb-guide .sec-simulation .loan-simulation input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.main-fhb-guide .sec-simulation .loan-simulation input[type=number] {
  -moz-appearance: textfield;  /* Firefox のスピンボタン非表示 */
}

.main-fhb-guide .sec-simulation .simulation-result {
  --svg-width: 40px;
  --svg-color: var(--white-color);
  width: 384px;
  color: var(--white-color);
  background: var(--mstyle-main-color);
  border-radius: var(--base-radius);
  padding: 38px 38px 46px 38px;
  position: relative;
}

.main-fhb-guide .sec-simulation .simulation-result .icon-double-arrow {
  --svg-width: 80px;
  --svg-color: var(--mstyle-text-color);
  position: absolute;
  bottom: 50%;
  left: -136px;
  transform: translate(0, 50%);
}

.main-fhb-guide .sec-simulation .simulation-result .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: var(--fz-24);
  font-weight: 700;
  margin: 0 0 20px 0;
}

.main-fhb-guide .sec-simulation .simulation-result .result {
  width: 307px;
  color: var(--mstyle-text-color);
  font-weight: 700;
  text-align: center;
  background: var(--white-color);
  border-radius: 80px;
  padding: 22px 0 14px 0;
  margin: 0 auto 13px auto;
}

.main-fhb-guide .sec-simulation .simulation-result .result .amount {
  font-size: var(--fz-40);
  margin: 0 6px 0 0;
}

.main-fhb-guide .sec-simulation .simulation-result .result .unit {
  font-size: var(--fz-24);
  vertical-align: 2.5px;
}

.main-fhb-guide .sec-simulation .simulation-result .attention {
  font-size: var(--fz-14);
  line-height: 130%;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .main-fhb-guide .sec-simulation .loan-simulation {
    align-items: center;
    flex-direction: column;
    gap: 120px 0;
  }
  .main-fhb-guide .sec-simulation .simulation-result .icon-double-arrow {
    top: -108px;
    bottom: initial;
    left: 50%;
    transform: translate(0, 50%);
    rotate: 90deg;
  }
}

@media screen and (max-width:768px) {
  .main-fhb-guide .sec-simulation {
    padding: 35px 0 50px 0;
  }
  .main-fhb-guide .sec-simulation .loan-simulation {
    align-items: center;
    flex-direction: column;
    gap: 120px 0;
    margin: 0 0 50px 0;
  }
  .main-fhb-guide .sec-simulation .loan-simulation ul {
    width: 96%;
    margin: 0 auto;
  }
  .main-fhb-guide .sec-simulation .loan-simulation li:not(.description) {
    padding: 18px 22px;
  }
  .main-fhb-guide .sec-simulation .loan-simulation li .wrapper {
    gap: 0 10px;
  }
  .main-fhb-guide .sec-simulation .loan-simulation li .numbering {
    flex-shrink: 0;
    width: 24px;
    line-height: normal;
    font-size: var(--fz-14);
  }
  .main-fhb-guide .sec-simulation .loan-simulation li .input-name {
    flex-shrink: 0;
    line-height: normal;
  }
  .main-fhb-guide .sec-simulation .loan-simulation li .input-name .small {
    display: block;
    font-size: var(--fz-12);
    margin: 0 0 0 -7px;
  }
  .main-fhb-guide .sec-simulation .loan-simulation li input {
    width: 112px;
    margin: 0 4px 0 0;
  }
  .main-fhb-guide .sec-simulation .loan-simulation li .input-wrapper span {
    width: 28px;
    font-size: var(--fz-14);
  }
  .main-fhb-guide .sec-simulation .simulation-result .icon-double-arrow {
    --svg-width: 60px;
    top: -99px;
    bottom: initial;
    left: 50%;
    transform: translate(0, 50%);
    rotate: 90deg;
  }
  .main-fhb-guide .sec-simulation .simulation-result {
    --svg-width: 32px;
    width: 96%;
    padding: 25px 32px 30px 32px;
    margin: 0 auto;
  }
  .main-fhb-guide .sec-simulation .simulation-result .wrapper {
    font-size: var(--fz-20);
    margin: 0 0 15px 0;
  }
  .main-fhb-guide .sec-simulation .simulation-result .result {
    width: 250px;
    padding: 16px 0 10px 0;
    margin: 0 auto 10px auto;
  }
  .main-fhb-guide .sec-simulation .simulation-result .attention {
    font-size: var(--fz-12);
  }
  .main-fhb-guide .sec-simulation .simulation-result .result .amount {
    font-size: var(--fz-32);
  }
  .main-fhb-guide .sec-simulation .simulation-result .result .unit {
    font-size: var(--fz-16);
  }
}


/* ------------------ sec-faq ------------------ */
.main-fhb-guide .sec-faq {
  margin: 0 0 100px 0;
}

.main-fhb-guide .sec-faq h2 {
  display: inline-block;
}

.main-fhb-guide .sec-faq h2::after {
  position: absolute;
  content: "";
  display: block;
  width: 150px;
  aspect-ratio: 1;
  background: url(../../images/illust/illust-g-man-question.webp) no-repeat center / contain;
  bottom: -50px;
  right: -188px;
}

.main-fhb-guide .sec-faq .faq-list {
  margin: 0 0 90px 0;
}

.main-fhb-guide .sec-faq .faq-list .faq-item {
  width: 850px;
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  box-shadow: var(--box-shadow-n1);
  padding: 0;
  margin: 0 auto 25px auto;
  position: relative;
}

.main-fhb-guide .sec-faq .faq-list .faq-item::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 55px;
  background: var(--mstyle-light-green-color);
  clip-path: polygon(50% 0%,
      0% 100%,
      100% 100%);
  border-radius: 1px 1px 0 0;
  top: 33px;
  left: -33px;
  rotate: -115deg;
}

.main-fhb-guide .sec-faq .faq-question {
  --svg-width: 24px;
  --svg-color: var(--mstyle-text-color);
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 700;
  line-height: normal;
  background: none;
  cursor: pointer;
  position: relative;
  padding: 20px 65px 20px 35px;
  margin: 0;
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-fhb-guide .sec-faq .faq-question[aria-expanded="true"] {
  margin: 0 0 25px 0;
  position: relative;
}

.main-fhb-guide .sec-faq .faq-question span {
  flex-shrink: 0;
  width: 96px;
  color: var(--mstyle-main-color);
  font-size: var(--fz-32);
  font-family: var(--font-family-lato);
  padding: 0 70px 0 0;
  position: relative;
}

.main-fhb-guide .sec-faq .faq-question span::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: var(--mstyle-main-color);
  bottom: 50%;
  right: 34px;
  transform: translate(0, 50%);
}

.main-fhb-guide .sec-faq .faq-question svg {
  position: absolute;
  right: 25px;
  bottom: 35%;
  transform: rotate(90deg);
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-fhb-guide .sec-faq .faq-question[aria-expanded="true"] svg {
  transform: rotate(-90deg)
}

.main-fhb-guide .sec-faq .faq-item .faq-answer {
  display: flex;
  max-height: 0;
  opacity: 0;
  padding: 0 65px 0 35px;
  position: relative;
  transition: 
    max-height .4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity .4s cubic-bezier(0.23, 1, 0.32, 1),
    padding 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-fhb-guide .sec-faq .faq-item .faq-answer::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 55px;
  background: var(--mstyle-light-green-color);
  clip-path: polygon(50% 0%,
      0% 100%,
      100% 100%);
  border-radius: 1px 1px 0 0;
  bottom: -3px;
  right: -34px;
  rotate: 115deg;
}

.main-fhb-guide .sec-faq .faq-item .faq-answer::after {
  position: absolute;
  content: "";
  display: block;
  width: 96%;
  height: 2px;
  background: var(--white-color);
  top: -24px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.main-fhb-guide .sec-faq .faq-item .faq-answer.is-open {
  max-height: 600px;
  /* 十分大きな値にしておく */
  padding: 0 65px 20px 35px;
  opacity: 1;
}

.main-fhb-guide .sec-faq .faq-item .faq-answer span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 96px;
  color: var(--mstyle-red-color);
  font-size: var(--fz-32);
  font-family: var(--font-family-lato);
  padding: 0 70px 0 0;
  position: relative;
}

.main-fhb-guide .sec-faq .faq-item .faq-answer span::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: var(--mstyle-red-color);
  bottom: 50%;
  right: 34px;
  transform: translate(0, 50%);
}

.main-fhb-guide .sec-faq .faq-item .faq-answer p {
  font-size: var(--fz-14);
  line-height: 165%;
}

.main-fhb-guide .sec-faq .btn-area {
  position: relative;
}

.main-fhb-guide .sec-faq .btn-area::before {
  position: absolute;
  content: "";
  display: block;
  width: 150px;
  aspect-ratio: 1;
  background: url(../../images/illust/illust-g-woman-inspiration.webp) no-repeat center / contain;
  bottom: -39px;
  left: calc(50% - 350px);
}

@media (max-width: 1023px) and (min-width: 769px) {
  .main-fhb-guide .sec-faq .faq-list {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .main-fhb-guide .sec-faq .faq-list .faq-item {
    width: 92%;
  }
}

@media screen and (max-width:768px) {
  .main-fhb-guide .sec-faq {
    overflow: hidden;
  }
  .main-fhb-guide .sec-faq h2::after {
    content: none;
  }
  .main-fhb-guide .sec-faq .faq-list {
    margin: 0 0 50px 0;
  }
  .main-fhb-guide .sec-faq .faq-list .faq-item {
    width: 95%;
    margin: 0 auto 25px auto;
  }
  .main-fhb-guide .sec-faq .faq-list .faq-item::before {
    top: 33px;
    left: -26px;
  }
  .main-fhb-guide .sec-faq .faq-question {
    gap: 0 32px;
    font-size: var(--fz-14);
    padding: 20px 42px 20px 18px;
    position: relative;
  }
  .main-fhb-guide .sec-faq .faq-question::before {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: calc(100% - 20px * 2);
    background: var(--mstyle-main-color);
    bottom: 50%;
    left: 49px;
    transform: translate(0, 50%);
  }
  .main-fhb-guide .sec-faq .faq-question span {
    width: auto;
    font-size: var(--fz-24);
    padding: 0;
  }
  .main-fhb-guide .sec-faq .faq-question svg {
    right: 8px;
    bottom: 50%;
    translate: 0 50%;
  }
  .main-fhb-guide .sec-faq .faq-question span::after {
    content: none;
  }
  .main-fhb-guide .sec-faq .faq-item .faq-answer {
    gap: 32px;
    padding: 0 42px 0 18px;
  }
  .main-fhb-guide .sec-faq .faq-item .faq-answer::before {
    right: -24px;
  }
  .main-fhb-guide .sec-faq .faq-item .faq-answer span {
    width: auto;
    font-size: var(--fz-24);
    padding: 0;
  }
  .main-fhb-guide .sec-faq .faq-item .faq-answer span::after {
    right: -16.5px;
  }
  .main-fhb-guide .sec-faq .faq-item .faq-answer.is-open {
    padding: 0 42px 20px 18px;
  }
}

/* ------------------ sec-contact ------------------ */
.main-fhb-guide .sec-contact {
  background: url(../../images/pictures/pic-white-wallpaper.webp) repeat-y center / 100%;
  padding: var(--sec-pad-image);
}

.main-fhb-guide .sec-contact .below-title {
  margin: 0 0 75px 0;
}

/* ------------------ sec-recommended-column ------------------ */
.main-fhb-guide .sec-recommended-column {
  margin: 65px 0 0 0;
}

.main-fhb-guide .column-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 50px;
  margin: 0 0 100px 0;
}

.main-fhb-guide .column-list a {
  transition: var(--transition-main);
}

.main-fhb-guide .column-list li {
  width: 30%;
  border-radius: 8px;
  box-shadow: var(--box-shadow-card);
  overflow: hidden;
}

.main-fhb-guide .column-list .blog-pic {
  height: 197px;
  text-align: center;
  border-radius: 8px 8px 0 0;
  background: var(--mstyle-light-green-color);
  overflow: hidden;
}

.main-fhb-guide .column-list .blog-pic .img-contain {
  width: 60%;
}

.main-fhb-guide .column-list .blog-title {
  display: grid;
  place-items: center;
  height: 100px;
  color: var(--white-color);
  font-weight: 700;
  line-height: 145%;
  background: var(--mstyle-main-color);
  padding: 18px 10% 18px 10%;
}

.main-fhb-guide .column-list .blog-title div {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-fhb-guide .column-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 220px;
  font-size: var(--fz-14);
  line-height: 150%;
  letter-spacing: .03em;
  background: var(--white-color);
  padding: 20px 10% 20px 10%;
  margin: 0 auto;
}

.main-fhb-guide .column-list .wrapper .blog-content {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 180%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-fhb-guide .column-list .wrapper .blog-author {
  --svg-width: 15px;
  --svg-va: -3px;
  font-size: .857em;
  margin: 0 0 3px 0;
}

.main-fhb-guide .column-list .wrapper .blog-date {
  --svg-width: 15px;
  --svg-va: -3px;
  font-size: .857em;
  line-height: 150%;
  letter-spacing: .02em;
}

.main-fhb-guide .column-list .wrapper svg {
  margin: 0 5px 0 0;
}

.main-fhb-guide .column-list .blog-link {
  --svg-width: 20px;
  --svg-va: -2px;
  display: block;
  font-weight: 700;
  line-height: normal;
  letter-spacing: .03em;
  text-align: center;
  background: var(--mstyle-sub-grey-color);
  padding: 16px 0;
}

.main-fhb-guide .column-list .blog-link span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 2px;
}

@media (hover: hover) {
  .main-fhb-guide .column-list .card-wrapper:hover {
    opacity: .75;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .main-fhb-guide .column-list li {
    width: 45%;
  }
}

@media screen and (max-width:768px) {
  .main-fhb-guide .column-list {
    flex-wrap: wrap;
    margin: 0 0 50px 0;
  }
  .main-fhb-guide .column-list li {
    width: 90%;
    margin: 0 auto;
  }
  .main-fhb-guide .column-list .blog-pic a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .main-fhb-guide .column-list .store-link a {
    --svg-va: -4px;
    font-size: var(--fz-14);
    padding: 9px 0;
  }
}












/* ==============================================================================
  はじめての不動産購入ガイド（/column/first-home-buying-guide/）   ■ END ■
============================================================================== */