/* 2025/07/26 */

@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

/*@media(max-width: 599px) {
  p br {
    display: none;
  }
}*/

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

strong {
  font-weight: 700;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* 文字色
======================================================================= */

body {
  color: #331e0f;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 808px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -24px;
  margin-left: -24px;
  padding-right: 24px;
  padding-left: 24px;
}

/* 間隔 */

.l-margin {
  margin: 24px auto;
}

.l-padding {
  padding: 24px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 24px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 24px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 599px) {
  .l-columns-2,
  .l-columns-3 {
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }
}
/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

@media(max-width: 599px) {
  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

/* 形状 */

.is-shadow-s {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.is-shadow-l {
  filter: drop-shadow(0 16px 16px rgb(0 0 0 / .15));
}

.is-round {
  border-radius: 8px;
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */
/* =======================================================================
  メイン
======================================================================= */

.main {
  padding-bottom: 24px;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]), .main ul, .main ol {
  font-size: 1.1em;
}

/* 小見出し H3
======================================================================= */

.h3 {
  position: relative;
  display: block;
  margin: 24px auto 52px;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
}

.h3:before {
  content: '';
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 60px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #f58b1b;
  border-radius: 2px;
}

.h3:first-child {
  margin-top: 0;
  }

/* =======================================================================
  スマホファースト
======================================================================= */

/* --- PC側の背景設定 --- */
.background-wrapper {
  width: 100%;
  min-height: 100vh; /* 画面の高さいっぱいに広げる */
  background-color: #e0e0e0; /* 背景色（画像にすることも可能） */
}

/* --- スマホLP本体の設定 --- */
.lp-container {
  width: 100%;
  max-width: 599px; /* スマホの最大幅 */
  min-height: 100vh;
  background-color: #fff;

  /* PCで見たときに、背景とLPの境界をわかりやすくする影（お好みで） */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); 
}

/* =======================================================================
  ヘッダー
======================================================================= */

.header {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 auto;
  width: 100%;
  max-width: 599px; /* スマホの最大幅 */
}

.header h2 {
  display: flex;
  align-items: center;
  padding: 22px;
  background-color: #fff;
}

/* =======================================================================
  CTA
======================================================================= */

.cta__btn {
  padding-top: 24px;
}

.cta .is-shadow-l:hover {
  filter: none;
}

/* =======================================================================
  リード文
======================================================================= */

.lead__head {
  display: inline-block;
  margin-bottom: 7px;
  background-color: #f58b1b;
  color: #fff;
  padding: 1px 12px 3px;
}

.lead__img {
  display: block;
  margin: 0 auto 24px;
  width: 180px;
}

/* =======================================================================
  おすすめ（推薦）
======================================================================= */

.recommend h3 img {
  width: 70%;
}

.recommend__item {
  background-color: #f2efe6;
}

.recommend__img {
  display: block;
  margin: 0 auto 22px;
  width: 150px;
}

.recommend__txt {
  text-align: center;
  margin-bottom: 22px;
}

.recommend__company {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.33;
}

.recommend__post {
  font-size: 14px;
  font-weight: bold;
}

.recommend__name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
}

.recommend__title {
  font-size: 14px;
}

.recommend__class {
  width: 100%;
  margin-bottom: 22px;
  text-align: center;
}

.recommend__inner {
  padding: 0 0.5em 0.5em;
  margin-bottom: 0;

  /* 行ごとの罫線（ノートの線）を作る設定 */
  background-image: linear-gradient(#ccc 1px, transparent 1px);
  background-size: 100% 2em; /* 2em は行間の高さ。line-heightに合わせます */
  line-height: 2em; /* 線と文字の高さを一致させる */
  /* 最後の行にも線を出すための調整 */
  background-attachment: local;
}

/* =======================================================================
  実績（推薦）
======================================================================= */

.results__img {
  margin: 24px auto;
}

.results__item {
  background-color: #f2efe6;
  border: 4px solid #f58b1b;
}

.results__h4 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.33;
}

.results__img-2 {
  margin: 24px auto;
}

.results__img-3 {
  margin: 24px auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* =======================================================================
  悩み
======================================================================= */

.problem {
  background: url("img/problem__bg.jpg") #4d4d4d no-repeat top center;
  background-size: contain;
  overflow: visible;

  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 93%, 0 90%);
  padding-bottom: 130px;
  margin-bottom: -70px;
}

.problem__head {
  background-color: #333;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 93%, 0 70%);
  padding-bottom: 60px;

  position: relative;
  display: block;
  margin: 24px auto 52px;
  padding-top: 24px;
  text-align: center;
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
}

.problem__head:before {
  content: '';
  position: absolute;
  bottom: 36px;
  display: inline-block;
  width: 60px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #f58b1b;
  border-radius: 2px;
}

.problem__small {
  font-size: 21px;
}

.problem__txt-1 {
  margin-top: 160px;
  margin-bottom: 24px;
  background-color: #4d4d4d;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 93%, 0 80%);
  padding-bottom: 90px;
  margin-bottom: -70px;
  position: relative;
  z-index: 2;
}

.problem__item {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.main .problem__item p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-top: 45px;
}

.problem__ul {
  background-color: #fff;
  padding-inline-start: 0;
  line-height: 1.33;
}

.problem__ul li {
  list-style-type: none;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding: 14px 0 14px 25px;
  position: relative;
}

.problem__ul li:first-child {
  border-top: 1px solid #ccc;
}

.problem__ul li::before {
  position: absolute;
  top: 18px;
  left: 0;

  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(img/check-mark.jpg);
  background-size: contain;
  vertical-align: middle;
}

.problem ul {
    margin-bottom: 0;
}

.problem__red {
  display: block;
  width: fit-content;
  background-color: #d93600;
  color: #fff;
  padding: 2px 24px;
  font-size: 24px;
  font-weight: bold;
  margin: 24px auto 8px;
}

.problem__txt-2 {
  font-size: 23px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

/* =======================================================================
  オファー
======================================================================= */

.offer__head {
  font-size: 21px;
  font-weight: bold;
  border: 4px solid #f58b1b;
  text-align: center;
  padding: 12px;
  margin-bottom: 22px;
}

/* =======================================================================
  なぜ改善できるか
======================================================================= */

.point {
  background-color: #f5d1ab;
}

.point__item {
  background-color: #fff;
}

.point__head {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

.point__head-num {
  margin-right: 10px;
  width: 40px;
  flex-shrink: 0;
}

.point__img {
  margin-bottom: 22px;
}

/* =======================================================================
  選ばれる理由
======================================================================= */

.reason__head {
  display: flex;
}

.reason__head-num {
  padding: 1em;

  background-color: #331e0f;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.reason__head-txt {
  padding: 1em .5em;
  align-content: center;
  width: 100%;
  background-color: #f58b1b;
  color: #fff;
  font-size: 22px;
}

.reason__item {
  background-color: #f2efe6;
}

.reason .l-margin:last-child {
  margin-bottom: 0;
}

/* =======================================================================
  お客様の声
======================================================================= */

.voc__item {
  background-color: #f2efe6;
}

.voc__inner {}

.video {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  margin-bottom: 22px;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.voc__head {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 22px;
}

.voc__name {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
  margin-bottom: 22px;
}

/* =======================================================================
  流れ
======================================================================= */

.step {
  background-color: #f5d1ab;
}

.step__item {
  background-color: #fff;
  display: flex;
  gap: 10px;
}

.step__head {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1;
}

.step__inner {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.step__inner img {
  width: 100%;
}

.step__num {
  margin-top: 4px;
  margin-bottom: 30px;
}

.step__icon {
  display: block;
  margin: 10px auto 8px;
  width: 25px;
}

/* =======================================================================
  FAQ
======================================================================= */

.faq__item:last-child {
  margin-bottom: 0;
}

/* Q */
.faq__q {
  padding: 22px;
  border: 1px solid #ccc;
  background: #f7f5f0;

  display: flex;
  align-items: flex-start;
  font-size: 18px;
}

.faq__q::before {
  color: #f58b1b;
  content: "\f059";
  font-size: 21px;
  font-family: FontAwesome;
  line-height: 1;
  margin-right: 10px;
  margin-top: 3px;
}


/* A */
.faq__a {
  padding: 22px;
  border: 1px solid #ccc;
  border-top-width: 0;
  background: #fff;
}
  .main .faq__a > *:last-child {
    margin-bottom: 0;
  }

/* =======================================================================
  アクセス
======================================================================= */

.access__map {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  margin-bottom: 24px;
}

.access__table {
  width: 100%;
  margin-bottom: 24px;
}

.access__table th, td {
  border: 1px solid #ccc;
  padding: 1em;
  text-align: left;
}

.access__table th {
  width: 30%;
  background-color: #f9f9f9;
  font-weight: bold;
}


.access__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.access__img {
  margin-bottom: 15px;
}

.access__txt {
  display: flex;
  font-size: 18px;
  font-weight: bold;
}

.access__txt img {
  width: 41px;
  height: 41px;
  margin-right: 15px;
}

.access__note {
  font-size: 16px;
  padding-left: 1em;
  text-indent: -1em;
}

/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #f58b1b;
  color: #fff;
}

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

.footer__logo {
  margin-bottom: 30px;
}

.footer__navi {
  text-align: right;
}

.footer__navi p {
  margin-bottom: 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
}

.footer__nav ul li {
  font-size: .9em;
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #fff;
}

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

.footer a:hover {
  text-decoration: underline;
}

.footer__copy {
  font-size: 1em;
  text-align: right;
}

@media(max-width: 599px) {
  .footer {
    padding: 24px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__logo img {
    max-width: 50%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

/* =======================================================================
  ページ下部常駐ボタン
======================================================================= */

.sticky-footer-btn {
  display: flex;
  gap: 15px;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 999;

  padding: 16px;
  width: 100%;
  height: auto;
  background: rgb(0 0 0 / .3);
  text-align: center;
  transform: translate(-50%);

  line-height: 1;
}

.sticky-footer-btn img {
  height: auto;
}

.footer {
  padding-bottom: 124px;
}

/* =======================================================================
  色囲み
======================================================================= */

.color-box {
  background-color: #f2efe6;
}

.main .color-box *:last-child {
  margin-bottom: 0;
}

/* =======================================================================
  線囲み
======================================================================= */

.border-box {
  border: 1px solid #ddd;
}

.main .border-box *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .border-box {
  }
}

/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: 700;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #fbdc8b;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #d93600;
}

.a-orange,
p.a-orange {
  color: #f58b1b;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */