@charset "UTF-8";

/* =========================
   Base
========================= */
html {
  font-size: 100%;
}

body {
  color: #0D2000;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html, body {
  overflow-x: hidden;
}


main {
  padding-top: 70px;
  flex: 1;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.nowrap {
  white-space: nowrap;
}

/* =========================
   Header
========================= */
#header {
  width: 100%;
  padding: 0 2%;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background-color: #fff;
  box-shadow: 1px 0 5px 1px #999;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#header ul {
  display: flex;
  align-items: center;
  justify-content: right;
}

#header li {
  margin-left: 30px;
  line-height: 0;
}

#header li img {
  width: 230px;
}

#header li a {
  display: block;
}

#header li a:hover {
  opacity: 0.7;
}

#header li.cta-js a:hover {
  opacity: 1;
}

#header li:first-child {
  line-height: 7px;
}

#header .tel {
  font-weight: 500;
  font-size: 22px;
  flex-shrink: 0;
  white-space: nowrap;
}

#header .tel a {
  color: #64894B;
}

#header .tel-logo img {
  width: 28px;
  margin: 0 2px -5px -3px;
}

#header .time {
  color: #6A6A6A;
  font-weight: 500;
  font-size: 12px;
}

.site-title {
  width: 250px;
  line-height: 0;
}

.site-title a {
  display: block;
}

/* ------------------------
phone-modal
------------------------ */

.phone-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.phone-modal.is-open {
    display: block;
}

.phone-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.phone-modal__dialog {
    position: relative;
    width: min(92vw, 460px);
    margin: 18vh auto 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    padding: 18px 18px 16px;
}

.phone-modal__title {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #111;
}

.phone-modal__text {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.phone-modal__actions {
    display: flex;
    gap: 10px;
}

.phone-modal__btn {
    appearance: none;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    padding: 12px 12px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    width: 100%;
    user-select: none;
}

.phone-modal__btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phone-modal__btn:active {
    transform: translateY(1px);
}

.phone-modal__btn--sub {
    background: #fff;
}

.phone-modal__btn--main {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* =========================
   Mainvisual / CTA
========================= */
.mainvisual {
  position: relative;
  margin: 0 auto;
}

.mainvisual-img {
  display: block;
  width: 100%;
  height: auto;
}

/* 画像の上に載せるボタン */
.main-cta {
  position: absolute;
  bottom: -45px;
  right: 5%;
  width: 400px; /* 既存挙動（後勝ち）を採用 */
}

.main-cta,
.cta,
.return_top {
  line-height: 0;
}

.main-cta a,
.cta a,
.return_top a {
  display: block;
}

.mainvisual-cta a {
  display: block;
}

.mainvisual-cta img {
  width: 100%;
  height: auto;
}

.return_top a:hover {
  opacity: 0.7;
}

.cta,
.return_top {
  width: 40%;
  margin: 10px auto;
}

.about-jump-btn {
  width: 40%;
  margin: 40px auto;
}

/* =========================
   Gr-set
========================= */
.gr-set ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.gr-set li {
  width: 22%;
  margin-left: 5%;
  margin-top: 8%;
}

.gr-set li:nth-last-child(2) {
  margin-right: 5%;
}

.gr-set li:last-child {
  width: 35%;
  margin-top: 3%;
  margin-bottom: -3%;
}

/* =========================
   Headings / layout helpers
========================= */
.h2-wrap,
.h3-wrap {
  position: relative;
  text-align: center;
}

.h2-wrap img {
  position: absolute;
  left: 0;
  padding: 6% 2% 0;
}

.fullwide {
  width: 100%;
}

.fullwide .wrapper {
  max-width: 960px;
  padding: 70px 0;
  margin: 0 auto;
}

.channel-title {
  background-color: #f3ff79;
}

/* =========================
   Video
========================= */
#video {
  text-align: center;
}

#video p {
  font-size: 1.9em;
  font-weight: 600;
  background-color: #ebf5e5;
  margin-bottom: 2em;
}

/* =========================
   Worries
========================= */
.worries-back {
  position: relative;
  overflow: hidden;
}

/* 画像自体を「セクションの背景っぽく」扱う */
.worries-bg {
  display: block;
  width: 100%;
  height: auto;
}

/* テキストを画像の上に重ねる */
.worries-inner {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 83px 0 52px;
  pointer-events: none;
  align-items: center;
  flex-direction: row-reverse;
}

#worries .worries-txt {
  width: 100%;
}

#worries .h2-wrap {
  width: 100%;
}

/* 画像 */
.worries-img {
  display: block;
  width: 80%;
  height: auto;
  margin-top: -22%;
  margin-left: 7%;
}

.catch-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -125%);
  width: 100%;
  text-align: center;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #0D2000;
  letter-spacing: 0.08em;
  line-height: 1.4;
  box-sizing: border-box;
  padding: 0 5%;
}

.catch-big {
  font-size: 1.8em;
  font-weight: 700;
}

.worries-back2 {
  padding-bottom: 2em;
  background-image: url(../img/pc_worries_back2.webp);
  background-size: cover;
  margin-top: -1px;
}

#worries-back2 .catch-big.uline {
  color: #F87E3D;
  text-shadow: 0 0 6px #fff;
  font-weight: 600;
}

#worries-back2 .h2-wrap {
  text-shadow: 0 0 4px #9c9494;
}

.tenth-comment {
  text-align: center;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  background-color: #2D6E0026;
  padding: 1em 0;
  color: #fff;
  font-size: 1.4em;
  text-shadow: 0 0 4px #9c9494;
}

.tenth-comment-big {
  font-size: 1.6em;
}

.tenth-comment-big:nth-of-type(2) {
  text-shadow: 0 0 4px #fff;
  color: #F87E3D;
  font-weight: 600;
}

.tenth-comment-check {
  display: inline-block;
  margin-top: 1em;
}

.tenth-comment .tenth-comment-check p {
  position: relative;
  padding-left: 1em;
  text-align: justify;
}

.tenth-comment .tenth-comment-check p:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/check.webp) no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(-120%);
}

/* =========================
   Yet / Explanation
========================= */
.yet-back {
  background-image: url(../img/CTA0_back.png);
  background-size: cover;
}

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

.yet-content h2 img {
  width: 40%;
  margin: 10px;
}

.explanation p {
  padding: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 1.3px;
  text-align: center;
}

.explanation ul {
  width: fit-content;
  text-align: initial;
  margin: 20px auto;
  font-size: 15px;
  line-height: 2em;
  letter-spacing: 1.3px;
}

.orange p {
  font-size: 18px;
  color: #F87E3D;
}

#worries-back2 .h2-wrap .explanation p {
  font-size: clamp(17px, 2.6vw, 25px);
  color: #FFFFFF;
  margin-bottom: -10px;
  margin-top: -40px;
}

#worries-back2 .h2-wrap .con-title {
  font-size: clamp(15px, 3.6vw, 26px);
  line-height: 1.6;
  text-align: center;
}

.wor-title {
  color: #FFFFFF;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 1.2em;
}

.wor-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2vw;
}

.wor-items li {
  border-radius: 20px;
  width: 90%;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 1px 0 10.5px 1px #0000001A;
  margin: 10px;
  padding: 20px;
  flex-direction: column;
}

.wor-items li img {
  width: 90%;
  margin-top: 5%;
  margin-bottom: 10%;
}

.wor-items li div {
  text-align: center;
}

.wor-items .about-title {
  font-size: 35px;
  margin-top: 18px;
  margin-bottom: 0;
  color: #0D2000;
  font-weight: 400;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.wor-items .about-title:before {
  display: none;
}

/* =========================
   Reason
========================= */
.reason-back {
  background: linear-gradient(to bottom right, #E3E971, #85A736);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.reason-back .wrapper {
  margin-top: -1px;
  width: 100%;
  max-width: none;
}

#reason .h2-wrap img {
  padding: 5% 25% 2% 25%;
}

#reason .sec-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  padding-top: 12%;
  color: #fff;
  font-size: 2.1em;
  font-weight: 600;
}

#reason .sec-title::before {
  display: none;
}

.item1,
.item2,
.item3 {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: end;
  justify-content: center;
  margin: 10px;
}

.item2 {
  flex-wrap: wrap;
}

.item1 img,
.item2 img,
.item3 img {
  width: 40%;
  margin: 10px;
}

.item-text1,
.item-text2,
.item-text3 {
  width: 40%;
  margin: 30px;
}

.item-text1 p,
.item-text2 p,
.item-text3 p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #fff;
}

.item-title1,
.item-title2,
.item-title3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 85px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.item-title1 p,
.item-title2 p,
.item-title3 p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-top: -15px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* =========================
   CTA Space
========================= */
.cta-space-back {
  background-image: url(../img/CTA1_back.png);
  background-size: cover;
  background-position: bottom;
  text-align: center;
}

.cta-space-back2 {
  background-image: url(../img/pc_cta2.webp);
  background-size: cover;
  background-position: bottom;
  text-align: center;
}

#cta-space .explanation p {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #FFFFFF;
  text-shadow: 4px 4px 4px #00000040;
}

.cta-mc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 70%;
  margin-left: 14%;
  margin-top: 30px;
}

.cta-mc2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 70%;
  margin-left: 14%;
}

.cta-image {
  width: 20%;
  margin: 0 auto -15px auto;
}

/* =========================
   Debt consolidation
========================= */
.debt-consolidation-back {
  background-image: url(../img/Debtconsolidation_back.png);
  background-size: cover;
}

#debt-consolidation .h2-wrap img {
  padding: 6% 0 0;
}

#debt-consolidation .text {
  margin: 0 auto;
}

#debt-consolidation .sec-title::before {
  display: none;
}

#debt-consolidation .sec-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  padding-top: 10%;
}

#debt-consolidation .catch-big {
  font-size: 1.4em;
  font-weight: 500;
}

.debt-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.debt-items li {
  width: 35%;
  background-color: #fff;
  box-shadow: 1px 0 10.5px 1px #0000001A;
  margin: 20px;
  height: fit-content;
}

.debt-items-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 30px 10px 30px;
}

.debt-title {
  width: 100%;
  font-size: 20px;
  color: #AACF53;
  font-weight: 800;
  letter-spacing: 2px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.debt-items-wrap p {
  width: 100%;
  position: relative;
  display: inline-block;
  color: #6A6A6A;
  font-size: 15px;
  margin-bottom: 1em;
}

.debt-p-space {
  padding: 10.3px;
}

.debt-p-space2 {
  padding: 2px;
}

.debt-items img {
  width: 60%;
}

.debt-items-btn {
  background-color: #87C000;
  padding: 20px;
}

.debt-items-btn:hover {
  opacity: 0.7;
}

.debt-items-btn p {
  position: relative;
  color: #fff;
  font-weight: 700;
}

.debt-items-btn p:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/arrow1.png) no-repeat;
  background-size: contain;
  margin-left: 20px;
}

/* =========================
   Interview
========================= */
.interview-back {
  background-color: #F2F2F2;
}

#interview .h2-wrap img {
  padding: 3% 0;
  width: 50%;
  margin-left: 25%;
}

#interview .sec-title::before {
  display: none;
}

#interview .sec-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  padding-top: 8%;
  font-weight: 600;
}

.interview-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  width: 98%;
  margin: 0 auto;
}

.int-fotter {
  display: block;
  width: 100%;
}

/* 左側の画像エリア */
.interview-block__img {
  flex: 0 0 50%;
}

.interview-block__img img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-block__text p {
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.bold {
  font-weight: 700;
}

.green-orange {
  margin: 20px 0;
}

.green-orange p {
  font-size: 18px;
  font-weight: 700;
  color: #F65F0D;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.green-orange .bold {
  font-size: 20px;
  font-weight: 800;
}

/* =========================
   Flow
========================= */
.flow-back {
  background-color: #FBFFF4;
}

#flow .h2-wrap img {
  padding: 3% 0;
  width: 40%;
  margin-left: 31%;
}

#flow .sec-title::before {
  display: none;
}

#flow .sec-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  padding-top: 12%;
  font-size: 2.3em;
}

#flow .flow-items {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  column-gap: 16px;
  row-gap: 0;
  margin: 0 auto;
}

#flow .flow-items > li {
  width: auto;
  margin: 0;
}

#flow .flow-items-wrap {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

#flow .flow-items-wrap > img {
  width: 110px;
  height: auto;
  margin: 0 auto 10px;
}

.flow-items li p {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

.arrow {
  color: #AACF53;
}

.flow-items .arrow p {
  font-weight: 700;
  font-size: 40px;
  margin: 60% 40%;
}

.flow-title {
  width: 100%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
  color: #276100;
}

#flow .cta-image {
  width: 18%;
  margin: 0 auto;
}

/* =========================
   Profile
========================= */
.h2-wrap-image {
  text-align: center;
}

.profile-back {
  background-image: url(../img/Profile_back.png);
  background-size: cover;
}

#profile .h2-wrap img {
  padding: 0 10% 10% 10%;
}

#profile .sec-title {
  padding-top: 19%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
}

#profile .sec-title::before {
  display: none;
}

.profile-wrap {
  display: flex;
  flex-wrap: wrap-reverse;
  margin-top: 50px;
}

.profile-wrap dt {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  width: 100%;
  color: #317B00;
  font-weight: 700;
  letter-spacing: 1px;
}

.profile-wrap dd {
  width: 100%;
}

.comment-wrap {
  width: 50%;
}

.profile-contents-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

.profile-image-wrap {
  display: inline-block;
  text-align: center;
  padding: 30px;
}

.profile-text-wrap {
  padding: 0 30px 0 70px;
}

.profile-text-wrap dl {
  margin-bottom: 20px;
}

.profile-image-wrap p {
  letter-spacing: 3px;
}

.small {
  font-size: 13px;
  margin-left: 5px;
}

/* =========================
   Question / QA
========================= */
.question-content {
  margin: 20px;
}

.profile-text-wrap .explanation p,
#profile .explanation p {
  font-size: 15px;
  text-align: left;
}

#question .h2-wrap img {
  padding: 3% 15% 0;
}

#question .sec-title::before {
  display: none;
}

#question .sec-title {
  padding-top: 12%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  font-size: 2em;
}

#qa-menu li {
  box-shadow: 1px 0 10.5px 1px #0000001A;
  font-size: 18px;
  margin: 15px;
  text-align: justify;
}

.label {
  background: #AACF53;
  color: #fff;
  padding: 20px 20px 20px 80px;
  position: relative;
}

.label:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/Q.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.label:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/plus.png) no-repeat;
  background-size: contain;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.label.open:after {
  background: url(../img/minus.png) no-repeat;
  background-size: contain;
}

.detail {
  background: #fff;
  padding: 20px 20px 20px 80px;
  position: relative;
  display: none;
}

.detail:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/A.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

#cta-space .last-cta h3 {
  font-size: 1.6em;
  font-weight: 600;
  color: #276100;
  text-shadow: 0 0 5px 0 #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

#cta-space .last-cta .explanation p {
  font-size: 20px;
  margin-bottom: 5%;
  font-weight: 400;
  letter-spacing: 0;
  color: #000;
  text-shadow: none;
}

#cta-space .last-cta .cta-mc {
  margin-top: 0;
}

/* =========================
   Contact form
========================= */
#contact-form .h2-wrap img {
  padding: 3% 5%;
}

#contact-form .sec-title {
  padding-top: 12%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

#contact-form .text {
  margin: 0 auto 50px auto;
}

#contact-form .text p {
  letter-spacing: 1px;
}

#contact-form form .annotation-text {
  text-align: center;
  color: #FF6039;
  font-size: 14px;
}

.asterisk {
  color: #FF6039;
}

.rei {
  font-size: 14px;
}

#contact-form form .definition dt {
  padding: 24px 40px;
}

#contact-form form .definition dd {
  padding: 15px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#contact-form form .definition dd.mg label {
  margin-right: 20px;
  margin-left: 3px;
}

.input-txt,
textarea {
  width: 100%;
  border: solid 1px #9A9A9A;
  padding: 0.5em 1em;
}

.input-txt#name,
.input-txt#name2 {
  width: 44%;
  margin: 0 1%;
}

.consent-wrap {
  text-align: center;
  line-height: 2em;
  margin-top: 40px;
}

.consent-wrap a {
  text-decoration: underline;
}

.consent-wrap p,
.gray p {
  font-size: 15px;
  color: #6A6A6A;
}

.button {
  width: 40%;
  margin: 40px auto 0 auto;
}

.button:hover {
  opacity: 0.7;
}

.error-msg {
  color: #FF6039;
  font-size: 0.9em;
  display: block;
  margin-top: 4px;
}

.privacy-policy-text {
  padding: 2em;
  margin: 40px 10% 0 10%;
  border: 1px solid #9a9a9a;
  font-size: 14px;
  max-height: 100px;
  overflow-y: scroll;
  background-color: #f6faed;
}

.privacy-policy-text-box ul {
  padding-left: 1.5em;
}

.privacy-policy-text-box li {
  list-style: initial;
}

/* =========================
   Information
========================= */
#information .sec-title {
  padding-top: 15%;
  font-size: 33px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

#information .sec-title::before {
  display: none;
}

.information-wrap {
  margin: 3%;
  padding: 2em;
  border: 1px solid #30680b;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 #00000026 inset;
}

.information-box {
  max-height: 350px;
  overflow-y: scroll;
}

.wrapper .information-box dl {
  display: flex;
  flex-wrap: wrap;
}

.information-box dt {
  width: 30%;
  padding: 10px;
}

.information-box dd {
  width: 70%;
  padding: 10px;
}

.information-bold {
  font-weight: 600;
}

.information-line {
  border-bottom: 3px solid #ffc679;
}

.information-box dd img {
  padding-top: 1em;
}

.dot-line {
  margin: 0 auto;
  width: 100%;
}

.dot-line span {
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 2px dotted #B6B6B6;
}

/* =========================
   Office (overflow fix included)
========================= */
.office-back {
  background-image: url(../img/Office_back.png);
  background-size: cover;
}

#office .h2-wrap img {
  padding: 0% 27%;
}

#office .sec-title {
  padding-top: 11%;
  font-size: 33px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

#office .sec-title::before {
  display: none;
}

.office-content-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#office dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

#office dt {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  width: 30%;
  border-bottom: solid 1px #c8c8c8;
  padding: 30px 0 30px 80px;
  font-weight: 700;
  letter-spacing: 2px;
}

#office dt:last-of-type {
  border-bottom: none;
}

#office dd {
  width: 70%;
  border-bottom: solid 1px #c8c8c8;
  padding: 30px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

#office dd:last-of-type {
  border-bottom: none;
  text-align: justify;
}

.kome {
  color: #595959;
  font-size: 14px;
}

.route {
  display: inline-block;
  margin-top: 2em;
  white-space: nowrap;
  color: #276100;
}

/* ✅ 横はみ出し対策：width:100% + margin が合算されてオーバーフローしていたため、padding方式に変更 */
.map {
  box-sizing: border-box;
  width: 100%;
  height: 360px;
  padding: 0 40px;
  margin: 0;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.br-sp {
  display: none;
}

/* =========================
   Common sections
========================= */
#saimu-seiri .sec-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.sec-title,
.about-title {
  position: relative;
  display: inline-block;
  padding-top: 14%;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 2em;
}

.sec-title:before,
.about-title:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 100px;
  height: 2.5px;
  -webkit-transform: translateX(-50%);
  background-color: #AACF53;
}

.text {
  max-width: 960px;
  margin: 0 auto 90px auto;
  padding: 0 10%;
}

.text p,
.about-txt p {
  padding: 7px;
  font-weight: 400;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 1.5px;
  text-align: center;
}

.wrapper {
  max-width: 960px;
  padding: 0 4%;
  margin: 0 auto 90px auto;
}

.wrapper dl {
  display: flex;
  flex-wrap: wrap;
}

.about-title {
  color: #AACF53;
  font-weight: 500;
  padding-top: 0;
}

.about-txt p {
  letter-spacing: 0;
}

.content {
  max-width: 960px;
  padding: 0 20px;
  margin: 30px auto;
}

.content dt {
  width: 15%;
}

.content dd {
  width: 85%;
  color: #565656;
}

.definition dl {
  border: solid 1px #9A9A9A;
  margin: 15px 0;
}

.definition dt {
  width: 30%;
  border-right: solid 1px #9A9A9A;
  border-bottom: solid 1px #9A9A9A;
  padding: 15px 15px 15px 40px;
  background-color: #EFEFEF;
}

.definition dd {
  width: 70%;
  border-bottom: solid 1px #9A9A9A;
  padding: 15px 15px 15px 40px;
  color: #0D2000;
}

.definition dt:last-of-type {
  border-bottom: none;
}

.definition dd:last-child {
  border-bottom: none;
}

.annotation {
  font-size: 10px;
  color: #FF6039;
  vertical-align: top;
  margin-right: 2px;
}

.annotation-text {
  font-size: 13px;
  text-align: right;
  margin-top: -15px;
  margin-bottom: 15px;
}

.attention {
  padding-left: 1em;
  text-indent: -1em;
  text-align: justify;
}

.attention p {
  color: #565656;
  font-size: 15px;
  margin-bottom: 5px;
}

.cta-set ul {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
}

.cta-set li {
  width: 50%;
  line-height: 0;
  padding: 20px;
}

.cta-set li a {
  display: block;
}

.cta-set li a:hover {
  opacity: 0.7;
}

/* =========================
   Privacy
========================= */
#privacypolicy h2 {
  margin: 40px 0;
  text-align: center;
  color: #7AA85C;
}

#privacypolicy h3 {
  margin: 10px 0;
  color: #7AA85C;
}

#privacypolicy .explanation p {
  text-align: justify;
  letter-spacing: normal;
  padding: 0;
  margin: 20px;
}

#privacypolicy .explanation ul {
  font-size: medium;
  line-height: normal;
  padding-left: 1em;
}

#privacypolicy .explanation li {
  list-style: disc;
}

#privacypolicy .cta {
  margin-top: 40px;
}

/* =========================
   Footer / misc
========================= */
#sp-hidden {
  display: block;
}

#hidden {
  display: none;
}

#fixed-btn {
  width: 90px;
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 20;
}

#footer {
  width: 100%;
  padding: 0 2%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background-color: #555E4F;
  color: #FFFFFF;
}

#footer .pp-jump {
  font-size: 11px;
  margin-top: 15px;
  color: #fff;
}

#footer p {
  font-size: 11px;
  margin-top: 15px;
}

.sp-toggle-start {
  display: none;
}

/* =========================
   SP fixed CTA (base hidden)
========================= */
#sp-fixed-cta {
  display: none;
}

#sp-fixed-cta a { 
	display: none;
}

#sp-fixed-cta img {
	display: none;
}

/* =========================
   サンクスページ
========================= */

.main-thanks {
  background-color: #FBFFF4;
}

#thanks {
  text-align: center;
}

.top {
  line-height: 40px;
}

.top img {
  width: 10%;
}

#thanks h2, .tel-info p {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

#thanks h2 {
  color: #0D2000;
}

.medium {
  margin: 2em 0 3em 0;
}

.tel-info {
  font-size: 1.3em;
}

.tel-info a {
  display: inline-block;
  border: 1px solid #276100;
  border-radius: 10px;
  padding: 0.2em 1.5em;
  color: #276100;
  background-color: #fff;
}

.medium > p {
  font-size: 0.9em;
  color: #787F72;
  margin-top: 0.5em;
}

.bottom {
  box-sizing: border-box;
  width: 800px;
  height: 150px;
  margin: 0 auto;
}

.bottom p {
  color: #276100;
  font-size: 1.3em;
  font-weight: 500;
}

.bottom a {
  display: inline-block;
  margin: 1em;
}

.bottom a:hover {
  margin-top: 1.5em;
}

.bottom img {
  width: 50%;
  box-shadow: 0 4px 25px #00000026;
  border-radius: 25px;
}

.return-top {
  display: inline-block;
  color: #0D2000;
  border-bottom: 1px solid #0D2000;
  margin-top: 4em;
}

/* =========================
   Media queries (集約)
========================= */

/* ---- <= 1024px ---- */
@media screen and (max-width: 1024px) {
  .route {
    white-space: normal;
    font-size: 0.9em;
  }

  .top {
    padding: 0 2em;
  }
}

/* ---- Tablet: 768px - 1024px ---- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .worries-inner {
    padding: 130px 0 52px;
  }

  #flow .flow-items {
    margin: 0 12px;
  }

  .flow-items .arrow {
    transform: rotate(0deg);
  }

  .interview-bg {
    content: url(../img/sp/sp2_interview_back.webp);
  }
}

/* ---- <= 768px (SP) ---- */
@media screen and (max-width: 768px) {
  .site-title {
    width: 40%;
    max-width: 158px;
  }

  .sec-title {
    padding-top: 7%;
    font-size: 1.2em;
  }

  #header nav {
    width: 60%;
  }

  #header li {
    margin-left: 0;
  }

  #header li:first-child {
    line-height: 0.4em;
  }

  #header li:last-child img {
    display: none;
  }

  #header .tel {
    font-size: 1em;
    font-weight: 400;
  }

  #header .tel a {
    display: inline-block;
  }

  #header .tel-logo img {
    width: 26px;
  }

  #header .time {
    font-size: 8.5px;
  }

  .mainvisual-img {
    content: url("../img/sp_fv.webp");
    position: relative;
  }

  .gr-set ul {
    margin: 100% 10% 0 10%;
  }

  .gr-set li {
    width: 100%;
    margin-top: 5%;
  }

  .gr-set li:nth-last-child(2) {
    margin-right: 0;
    margin-bottom: 5%;
  }

  .main-cta {
    width: 84%;
    bottom: -35px;
  }

  .mainvisual-back .cta {
    position: absolute;
    bottom: 35px;
    right: 15px;
  }

  .wrapper {
    margin: 0 auto 80px auto;
  }

  .h2-wrap img {
    padding: 0;
  }

  #saimu-seiri .sec-title {
    padding-top: 16%;
  }

  #saimu-seiri .h2-wrap img {
    padding: 9% 2% 0;
  }

  .fullwide .h2-wrap img {
    width: 100%;
    padding: 0 5%;
  }

  .worries-bg {
    content: url(../img/sp/sp_worries_back1.webp);
  }

  .worries-back .wrapper {
    padding: 50px 10px;
  }

  #worries {
    flex-direction: column-reverse;
  }

  #worries .worries-txt {
    width: 100%;
  }

  #worries .worries-txt p {
    padding: 8px 20px;
    text-align: center;
    font-size: 0.94em;
  }

  #worries picture {
    width: 95%;
  }

  #worries .worries-txt .h2-wrap {
    text-align: center;
  }

  #worries .catch-copy {
    font-size: 100%;
    transform: translate(-50%, -164%);
  }

  .worries-inner {
    justify-content: center;
  }

  .catch-big {
    font-size: 1.3em;
  }

  .tenth-comment {
    font-size: 1em;
  }

  .tenth-comment-big {
    font-size: 1.3em;
  }

  #worries-back2.wrapper {
    padding: 70px 0 20px 0;
  }

  #video p {
    font-size: 0.9em;
  }

  .fullwide .wrapper#video {
    padding-bottom: 40px;
  }

  video {
    border: 1px solid #cfcfcf;
  }

  .input-txt#name,
  .input-txt#name2 {
    width: 42%;
    margin: 0 1%;
  }

  .definition dt:last-of-type {
    border-bottom: solid 1px #9A9A9A;
  }

  #worries-back2 .h2-wrap img {
    padding: 0 5%;
  }

  #worries-back2 .sec-title {
    padding-top: 9%;
  }

  .wor-title-inline {
    font-size: 20px;
    margin-bottom: -10px;
  }

  .wor-items li {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }

  .wor-items li div {
    width: 100%;
  }

  .wor-items .about-title {
    font-size: 20px;
    margin-top: 5%;
    letter-spacing: 0;
  }

  .wor-items p {
    font-size: 13px;
    margin-bottom: 3%;
  }

  .yet-back {
    background-image: url(../img/MB/CTA0_backpng_MB.png);
  }

  .yet-content h2 img {
    width: 70%;
    margin: 20px;
  }

  .center {
    text-align: initial;
  }

  .yet-content .explanation ul {
    padding-left: 2em;
    text-indent: -1em;
  }

  .explanation p {
    padding: 8px 20px;
  }

  #yet .explanation p {
    letter-spacing: 1px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .reason-back .wrapper {
    background: linear-gradient(to bottom right, #E3E971, #85A736);
    background-size: cover;
    background-position: center;
    margin-top: -5px;
  }

  #reason .h2-wrap img {
    padding: 0 5%;
  }

  #reason .sec-title {
    margin-left: 2%;
    padding-top: 0;
    font-size: 1.6em;
  }

  #reason .sec-title,
  #interview .sec-title,
  #profile .sec-title {
    padding-top: 12%;
  }

  #reason .sec-title {
    margin-bottom: 0;
  }

  .item1 img,
  .item2 img,
  .item3 img {
    width: 100%;
    padding: 20px;
  }

  .item-text1,
  .item-text2,
  .item-text3 {
    width: 100%;
    margin: 30px 30px 0 30px;
  }

  .item-text1 {
    margin: 0 30px;
  }

  #hidden .explanation p {
    text-align: center;
    letter-spacing: 3px;
  }

  .debt-consolidation-back {
    background-image: url(../img/MB/Debtconsolidation_back_MB.png);
  }

  .debt-consolidation-back .wrapper {
    padding: 70px 0 30px 0;
  }

  #debt-consolidation .h2-wrap img {
    padding: 0 2%;
  }

  #debt-consolidation .text p {
    text-align: center;
  }

  #debt-consolidation .sec-title {
    padding-top: 4%;
    font-size: 1em;
  }

  .debt-items li {
    width: 40%;
    margin: 10px;
  }

  .debt-title {
    font-size: 18px;
    letter-spacing: 0;
  }

  .debt-title::before {
    display: none;
  }

  .debt-items-wrap {
    padding: 10px 5px;
  }

  .debt-items-wrap p {
    font-size: 9px;
  }

  .debt-items img {
    width: 50%;
  }

  .debt-items-btn {
    padding: 10px;
  }

  .debt-items-btn p {
    font-size: 12px;
  }

  .debt-items-btn p:after {
    margin-left: 3px;
    top: 50%;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
  }

  .interview-back {
    background-image: url(../img/sp/sp_interview_back1.webp);
  }

  .interview-back .wrapper {
    padding: 69px 0 25px 0;
  }

  #interview .h2-wrap {
    text-align: center;
  }

  #interview .h2-wrap img {
    margin-top: -56px;
    padding: 3% 0;
    width: 100%;
    margin-left: 0;
  }

  #interview .sec-title {
    margin-top: -51px;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: -10px;
  }

  .interview-bg {
    content: url(../img/sp/sp_interview_back1.webp);
  }

  .interview-block {
    flex-direction: column;
    padding: 56px 30px 0;
    gap: 20px;
  }

  .interview-block__img,
  .interview-block__text {
    flex: 0 0 auto;
    width: 100%;
  }

  .interview-block__text p {
    font-size: 13px;
  }

  .green-orange p {
    color: #F65F0D;
    padding: 8px;
    font-size: 15px;
  }

  .h2-wrap img.worries-img,
  .h2-wrap img {
    display: block;
  }

  #flow .sec-title {
    padding-top: 9%;
    font-size: 1.6em;
    font-weight: 600;
  }

  #flow .flow-items {
    display: block;
  }

  .flow-items li {
    width: 60%;
  }

  .flow-title {
    font-size: 19px;
    margin-bottom: 1em;
  }

  .flow-items-wrap > img {
    width: 70%;
  }

  .flow-items li p {
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
  }

  .flow-items .arrow {
    transform: rotate(90deg);
  }

  .flow-items .arrow p {
    margin: 5% 40%;
    font-weight: inherit;
  }

  .profile-back {
    background-image: url(../img/MB/Profile_back_MB.png);
  }

  .profile-wrap {
    margin-top: 0;
  }

  #profile .h2-wrap img {
    padding: 0 14%;
  }

  .profile-wrap .explanation p {
    padding: 8px;
  }

  .comment-wrap {
    width: 100%;
    padding: 0 30px;
  }

  .profile-contents-wrap {
    width: 100%;
  }

  .profile-text-wrap {
    padding: 0 30px;
  }

  .profile-text-wrap .explanation p {
    font-size: 16px;
  }

  .sp-toggle {
    display: none;
  }

  .sp-toggle.open {
    display: block;
  }

  .sp-toggle-start {
    display: block;
  }

  .sp-toggle-start.none {
    display: none;
  }

  .comment-toggle-btn {
    color: #317B00;
    font-weight: 700;
    background-color: #fff;
    border: 1px solid #317B00;
    border-radius: 20px;
    padding: 5px 10px;
    margin: 0 auto;
  }

  #question .h2-wrap img {
    padding: 0 5%;
  }

  #question .sec-title {
    padding-top: 10%;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: 600;
    font-size: 1.5em;
  }

  #qa-menu li {
    font-size: 16px;
    margin: 10px;
  }

  #cta-space .last-cta h3 {
    font-size: 1.4em;
  }

  .cta-space-back2 {
    background-image: url(../img/sp/sp_cta2.webp);
    background-size: cover;
    background-position: bottom;
    text-align: center;
  }

  #information .sec-title {
    font-weight: 600;
    padding-top: 10%;
    font-size: 25px;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  }

  .label {
    padding: 20px 60px;
  }

  .label:before {
    left: 5%;
  }

  .label:after {
    right: 5%;
  }

  .label.open:after {
    right: 5%;
  }

  .detail {
    padding: 20px 20px 20px 60px;
  }

  .detail:before {
    left: 5%;
  }

  .cta-space-back {
    background-image: url(../img/sp/sp_cta2.webp);
  }

  #cta-space .last-cta .explanation p {
    font-size: 15px;
    letter-spacing: 0;
    padding: 20px 8px;
  }

  #cta-space .last-cta .no {
    font-size: 20px;
    margin-bottom: 5%;
    font-weight: 400;
    letter-spacing: 0;
    color: #000;
  }

  #cta-space .last-cta h3:before {
    width: 50%;
    background-color: #fff;
  }

  .cta-mc2 {
    flex-direction: column;
  }

  #contact-form .h2-wrap img {
    padding: 0;
  }

  #contact-form .sec-title {
    padding-top: 10%;
  }

  #contact-form .text {
    margin: 0 auto 40px auto;
  }

  #contact-form .text p {
    font-size: 0.9em;
    text-align: center;
  }

  #contact-form form .annotation-text {
    padding-left: 0;
  }

  #contact-form form .definition dl {
    margin: 10px;
  }

  #contact-form form .definition dt {
    width: 100%;
    padding: 15px;
    border-right: none;
  }

  #contact-form form .definition dd {
    width: 100%;
    padding: 15px;
  }

  #contact-form form .definition dd:last-child label {
    margin-left: 0;
  }

  .consent-wrap {
    margin-top: 20px;
    padding: 10px;
    line-height: initial;
  }

  .consent-wrap p {
    margin: 10px;
  }

  input[type="checkbox"] {
    transform: scale(1.3);
  }

  .button {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }

  .privacy-policy-text {
    padding: 1em;
    margin: 40px 7% 0 7%;
    font-size: 12px;
  }

  .information-wrap {
    padding: 1em;
    margin: 1em;
  }

  .wrapper .information-box dl {
    display: initial;
    flex-wrap: initial;
  }

  .information-box dl {
    font-size: 14px;
  }

  .information-box dt,
  .information-box dd {
    width: 100%;
    padding: 5px;
  }

  .information-box dd {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .office-back {
    background-image: url(../img/MB/Office_back_MB.png);
  }

  .office-back .wrapper {
    padding: 30px 0;
  }

  #office .h2-wrap img {
    padding: 0 20%;
  }

  #office dl {
    margin: 10px 15px 30px 15px;
  }

  #office dt {
    width: 100%;
    border-bottom: none;
    padding: 20px 20px 0 20px;
  }

  #office dd {
    width: 100%;
    padding: 3px 20px 10px 20px;
  }

  /* ✅ SP側も padding 方式に統一して横はみ出しを防止 */
  .map {
    padding: 0 20px;
  }

  .cta,
  .about-jump-btn,
  .return_top {
    width: 60%;
  }

  .br-sp {
    display: block;
  }

  .text {
    padding: 0 4%;
    margin: 0 auto 60px auto;
  }

  .text p,
  .about-txt p {
    text-align: left;
    line-height: 1.7em;
    padding: 2%;
  }

  .about-title {
    font-size: 22px;
  }

  .about-title:before {
    width: 70px;
    height: 1.5px;
  }

  .about-txt p {
    letter-spacing: 1.5px;
    text-align: justify;
  }

  .content {
    padding: 0 8px;
  }

  .content dt {
    width: 100%;
    margin-bottom: 10px;
  }

  .content dd {
    width: 100%;
    font-size: 14px;
  }

  .rei {
    font-size: 12px;
  }

  .definition {
    font-size: 15px;
  }

  .definition dt {
    width: 40%;
    padding: 10px;
    margin-bottom: 0;
  }

  .definition dd {
    width: 60%;
    padding: 10px;
  }

  .sp-small {
    font-size: 12px;
  }

  .annotation-text {
    font-size: 10px;
    padding-left: 3em;
  }

  .attention p {
    font-size: 14px;
  }

  .br-pc {
    display: none;
  }

  .cta-set li {
    width: 100%;
    padding: 2% 7%;
  }

  .cta-set li:first-child {
    padding: 2% 15%;
  }

  #kabaraikin-seikyu.wrapper {
    margin: 0 auto 50px auto;
  }

  #privacypolicy h3 {
    text-align: center;
    margin: 30px 0;
  }

  #privacypolicy .explanation ul {
    text-align: justify;
    margin: 20px;
  }

  #sp-hidden {
    display: none;
  }

  #hidden {
    display: block;
  }

  #footer .pp-jump,
  #footer p {
    font-size: 8px;
  }

  /* スマホだけ表示＆2枚横並び（現状維持：コメントアウトはそのまま） */
  #sp-fixed-cta {
    /*display: flex;*/
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
  }

  .cta-wrap {
    display: none;
  }

  #sp-fixed-cta a {
    display: block;
  }

  #sp-fixed-cta img {
    display: block;
    width: 100%;
    height: auto;
  }

  #sp-fixed-cta > img {
  	position: absolute;
    top: -28px;
  }

  #thanks {
    font-size: 0.9em;
  }

  .top img {
    width: 20%;
  }

  .top h2 {
    font-size: 1.1em;
    margin-bottom: 0.5em;
  }

  .top {
    line-height: 25px;
    padding: 0 1em;
  }

  .bottom {
    width: 350px;
    height: 120px;
  }

  .bottom p {
    font-size: 1em;
  }

  .bottom img {
    width: 100%;
  }
}
