@charset "UTF-8";
/* モダンなCSSリセット + テキスト要素のmargin/paddingリセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: sans-serif;
  color: #333;
}

/* テキスト関連要素の余白をリセット */
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
blockquote, figure,
dl, dd {
  margin: 0;
  padding: 0;
}

/* リストスタイルを初期化 */
ul, ol {
  list-style: none;
}

/* メディア類の表示調整 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム系 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.site-header {
  padding: 15px;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
  background-color: white;
}
.site-header.is-fixed {
  position: fixed;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.site-header .header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.site-header .header-inner .logo img {
  height: 40px;
  position: relative;
  z-index: 9999;
}
@media (max-width: 468px) {
  .site-header .header-inner .logo img {
    height: 26px;
  }
}
.site-header .header-inner .main-nav {
  margin-left: 32px;
  flex: 1;
}
.site-header .header-inner .main-nav .nav-list {
  display: flex;
  gap: clamp(0.875rem, -4.184rem + 10.53vw, 1.5rem);
}
.site-header .header-inner .main-nav .nav-list li a {
  color: #333333;
  font-weight: bold;
  font-size: clamp(0.75rem, -1.274rem + 4.21vw, 1rem);
}
.site-header .header-inner .main-nav .nav-list li a:hover {
  color: #8FB83F;
}
.site-header .header-inner .btn-consult {
  background-color: #F34B4B;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 468px) {
  .site-header .header-inner .btn-consult {
    font-size: 12px;
  }
}
.site-header .header-inner .btn-consult:hover {
  background-color: rgb(239.8125, 27.1875, 27.1875);
}
.site-header .mobile-nav {
  display: none;
}
.site-header .hamburger {
  display: none;
}
@media (max-width: 768px) {
  .site-header .main-nav {
    display: none;
  }
  .site-header .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 7px;
    cursor: pointer;
    z-index: 1000;
    justify-content: center;
    background-color: #8FB83F;
  }
  .site-header .hamburger span {
    display: block;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 100%;
  }
  .site-header .hamburger.active {
    background-color: inherit;
  }
  .site-header .hamburger.active span {
    background: #F34B4B;
  }
  .site-header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .site-header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .site-header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .site-header .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .site-header .mobile-nav.active {
    transform: translateY(0);
    padding: 100px 30px;
  }
  .site-header .mobile-nav ul {
    margin-bottom: 24px;
  }
  .site-header .mobile-nav ul li {
    margin: 16px 0;
    border-bottom: 1px solid;
    padding-bottom: 16px;
  }
  .site-header .mobile-nav ul li:first-child {
    border-top: 1px solid;
    padding-top: 16px;
  }
  .site-header .mobile-nav ul li a {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    display: block;
    padding: 16px 0;
  }
  .site-header .mobile-nav .btn-consult {
    background-color: #F34B4B;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
  }
}

.site-footer {
  background-color: #FFFFFF;
  padding: 30px 15px 15px;
}
.site-footer .footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-footer .logo img {
  height: 40px;
}
.site-footer .footer-nav {
  flex: 1;
  margin-left: 32px;
}
@media (max-width: 468px) {
  .site-footer .footer-nav {
    margin-left: 0;
    width: 100%;
  }
}
.site-footer .footer-nav .nav-list {
  display: flex;
  gap: 24px;
}
@media (max-width: 468px) {
  .site-footer .footer-nav .nav-list li {
    width: calc((100% - 20px) / 2);
  }
}
.site-footer .footer-nav .nav-list li a {
  color: #333333;
  font-weight: bold;
}
.site-footer .footer-nav .nav-list li a:hover {
  color: #8FB83F;
}
.site-footer .btn-consult {
  background-color: #F34B4B;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  white-space: nowrap;
}
.site-footer .btn-consult:hover {
  background-color: rgb(239.8125, 27.1875, 27.1875);
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer .footer-nav .nav-list {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) and (max-width: 468px) {
  .site-footer .footer-nav .nav-list {
    flex-wrap: wrap;
    flex-direction: row;
    margin: 30px 0;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .site-footer .btn-consult {
    align-self: stretch;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
.site-footer .footer-bottom {
  margin-top: 50px;
  text-align: center;
}
.site-footer .footer-bottom ul.sub-menu {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 468px) {
  .site-footer .footer-bottom ul.sub-menu {
    flex-wrap: wrap;
  }
}
.site-footer .footer-bottom ul.sub-menu li a {
  font-size: 12px;
}
.site-footer .footer-bottom p.copy {
  font-size: 12px;
}

.what__wrapper .what__inner .what__imgarea {
  display: none;
}
@media (max-width: 468px) {
  .what__wrapper .what__inner .what__imgarea {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.what__wrapper .what__inner .what__flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: center;
}
@media (max-width: 1042px) {
  .what__wrapper .what__inner .what__flex {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .what__wrapper .what__inner .what__flex {
    flex-direction: column-reverse;
  }
}
@media (max-width: 468px) {
  .what__wrapper .what__inner .what__flex {
    display: none;
  }
}
.what__wrapper .what__inner .what__flex:last-child {
  margin-bottom: 0;
}
.what__wrapper .what__inner .what__flex:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .what__wrapper .what__inner .what__flex:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.what__wrapper .what__inner .what__flex .what__textbox {
  width: calc((100% - 80px) / 2);
}
@media (max-width: 1042px) {
  .what__wrapper .what__inner .what__flex .what__textbox {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 768px) {
  .what__wrapper .what__inner .what__flex .what__textbox {
    width: 100%;
  }
}
.what__wrapper .what__inner .what__flex .what__textbox span {
  position: relative;
  padding-left: 30px;
  font-weight: bold;
  padding-top: 5px;
  display: block;
}
.what__wrapper .what__inner .what__flex .what__textbox span::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #F34B4B;
  top: 50%;
  left: 0%;
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
}
.what__wrapper .what__inner .what__flex .what__textbox h3 {
  font-size: 28px;
  margin: 20px 0 35px;
}
.what__wrapper .what__inner .what__flex .what__textbox h3 span {
  display: inline;
  background-image: linear-gradient(#FFDC11, #FFDC11);
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: 0 100%;
  line-height: 1.5;
  padding: 0;
  position: inherit;
}
.what__wrapper .what__inner .what__flex .what__textbox h3 span::before {
  content: none;
}
@media (max-width: 468px) {
  .what__wrapper .what__inner .what__flex .what__textbox h3 {
    font-size: 26px;
  }
}
.what__wrapper .what__inner .what__flex .what__textbox p {
  line-height: 1.8;
}

.value__wrapper {
  margin-top: 150px;
}
.value__wrapper .value__inner .value__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
}
@media (max-width: 468px) {
  .value__wrapper .value__inner .value__flex {
    margin-top: 50px;
  }
}
.value__wrapper .value__inner .value__flex .value__box {
  position: relative;
  text-align: center;
  width: calc((100% - 40px) / 3);
  background-color: #FFFFFF;
  padding: 80px 30px 30px;
}
@media (max-width: 768px) {
  .value__wrapper .value__inner .value__flex .value__box {
    width: calc((100% - 20px) / 2);
    padding: 50px 20px 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 468px) {
  .value__wrapper .value__inner .value__flex .value__box {
    width: 100%;
  }
}
.value__wrapper .value__inner .value__flex .value__box span {
  position: absolute;
  content: "";
  width: 70%;
  border-radius: 9999px;
  padding: 8px;
  background-color: #8FB83F;
  color: #FFFFFF;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-weight: bold;
}
.value__wrapper .value__inner .value__flex .value__box h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.approach__wrapper .approach__inner p {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 468px) {
  .approach__wrapper .approach__inner p {
    font-size: 14px;
  }
}
.approach__wrapper .approach__inner .approach__point {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 70px;
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__point {
    flex-direction: column;
    gap: 40px;
  }
}
.approach__wrapper .approach__inner .approach__point .approach__pointbox {
  width: calc((100% - 70px) / 2);
  position: relative;
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__point .approach__pointbox {
    width: 100%;
  }
}
.approach__wrapper .approach__inner .approach__point .approach__pointbox:first-child .point_title h3 {
  background-color: #FFFFFF;
  border: 1px solid #8FB83F;
}
.approach__wrapper .approach__inner .approach__point .approach__pointbox:last-child .point_title h3 {
  background-color: #8FB83F;
  border: 1px solid #8FB83F;
  color: #FFFFFF;
}
.approach__wrapper .approach__inner .approach__point .approach__pointbox .point_title h3 {
  font-size: 18px;
  padding: 18px;
}
@media (max-width: 468px) {
  .approach__wrapper .approach__inner .approach__point .approach__pointbox .point_title h3 {
    padding: 10px;
  }
}
.approach__wrapper .approach__inner .approach__point .approach__pointbox .point_title span {
  text-align: center;
  font-weight: bold;
  display: block;
  margin: 10px 0;
}
.approach__wrapper .approach__inner .approach__point .approach__pointbox img {
  width: 100%;
  height: auto;
  margin-top: 30px;
}
.approach__wrapper .approach__inner .approach__point::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ccc;
  transform: translateX(-0.5px);
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__point::before {
    content: none;
  }
}
.approach__wrapper .approach__inner h3 {
  font-size: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner h3 {
    font-size: clamp(1.25rem, 0.074rem + 4.01vw, 2rem);
    line-height: 2;
  }
}
@media (max-width: 468px) {
  .approach__wrapper .approach__inner h3 {
    font-size: 16px;
  }
}
.approach__wrapper .approach__inner p.sub-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.approach__wrapper .approach__inner .approach__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__flex {
    gap: 15px;
    justify-content: space-between;
  }
}
.approach__wrapper .approach__inner .approach__flex:not(.sub_flex) .approach__box:nth-child(2) {
  width: calc((100% - 30px) * 0.33);
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__flex:not(.sub_flex) .approach__box:nth-child(2) {
    width: calc(50% - 8px);
  }
}
.approach__wrapper .approach__inner .approach__flex:not(.sub_flex) .approach__box:nth-child(1) {
  width: calc((100% - 30px) * 0.67);
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__flex:not(.sub_flex) .approach__box:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 468px) {
  .approach__wrapper .approach__inner .approach__flex:not(.sub_flex) .approach__box:nth-child(1) {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.approach__wrapper .approach__inner .approach__flex:not(.sub_flex) .approach__box:nth-child(n+3) {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__flex:not(.sub_flex) .approach__box:nth-child(n+3) {
    width: calc(50% - 8px);
  }
}
.approach__wrapper .approach__inner .approach__flex:not(.sub_flex) img {
  height: 235px;
  object-fit: cover;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__flex:not(.sub_flex) img {
    height: auto;
  }
}
.approach__wrapper .approach__inner .approach__flex:not(.sub_flex) .approach__box p {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
}
.approach__wrapper .approach__inner .approach__flex.sub_flex {
  justify-content: center;
  gap: 30px;
  margin: 50px 0 80px;
}
.approach__wrapper .approach__inner .approach__flex.sub_flex .approach__box {
  width: calc((100% - 30px) / 2);
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__flex.sub_flex .approach__box {
    width: 100%;
  }
}
.approach__wrapper .approach__inner .approach__flex.sub_flex .approach__box span {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}
.approach__wrapper .approach__inner .approach__flex.sub_flex .approach__box:nth-child(3) {
  width: calc((100% - 30px) / 2);
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__flex.sub_flex .approach__box:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 468px) {
  .approach__wrapper .approach__inner .approach__flex .approach__box {
    width: 100%;
  }
}
.approach__wrapper .approach__inner .approach__img {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .approach__wrapper .approach__inner .approach__img {
    margin-top: 30px;
  }
}

.reason__wrapper .reason__inner .reason__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .reason__wrapper .reason__inner .reason__flex {
    gap: 15px;
  }
}
.reason__wrapper .reason__inner .reason__flex .reason__box {
  width: calc((100% - 60px) / 3);
  position: relative;
  background-color: #FFFFFF;
  padding: 30px;
}
@media (max-width: 1042px) {
  .reason__wrapper .reason__inner .reason__flex .reason__box {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .reason__wrapper .reason__inner .reason__flex .reason__box {
    width: calc((100% - 30px) / 2);
  }
}
.reason__wrapper .reason__inner .reason__flex .reason__box span {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: #8FB83F;
  color: #FFFFFF;
  width: 100px;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  font-weight: bold;
  padding-top: 10px;
  padding-left: 10px;
}
@media (max-width: 1042px) {
  .reason__wrapper .reason__inner .reason__flex .reason__box span {
    font-size: 12px;
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 468px) {
  .reason__wrapper .reason__inner .reason__flex .reason__box span {
    width: 100px;
    height: 100px;
    font-size: 16px;
  }
}
.reason__wrapper .reason__inner .reason__flex .reason__box h3 {
  padding-left: 60px;
  font-size: 20px;
  min-height: 80px;
}
@media (max-width: 1042px) {
  .reason__wrapper .reason__inner .reason__flex .reason__box h3 {
    font-size: clamp(1rem, 0.648rem + 0.73vw, 1.125rem);
    padding-left: 40px;
    min-height: 60px;
  }
}
@media (max-width: 468px) {
  .reason__wrapper .reason__inner .reason__flex .reason__box h3 {
    font-size: 20px;
    padding-left: 80px;
    min-height: 80px;
    line-height: 1.8;
  }
}
.reason__wrapper .reason__inner .reason__flex .reason__box p {
  line-height: 32px;
}
@media (max-width: 468px) {
  .reason__wrapper .reason__inner .reason__flex .reason__box p {
    font-size: 16px;
  }
}
@media (max-width: 468px) {
  .reason__wrapper .reason__inner .reason__flex {
    gap: 10px;
  }
  .reason__wrapper .reason__inner .reason__flex .reason__box {
    width: 100%;
  }
}

.voice__wrapper_sp {
  display: none;
}
@media (max-width: 468px) {
  .voice__wrapper_sp {
    display: block;
  }
}
.voice__wrapper .voice__inner .catch-title h3 {
  font-weight: 400;
  font-size: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .voice__wrapper .voice__inner .catch-title h3 {
    font-size: clamp(1.25rem, 0.074rem + 4.01vw, 2rem);
  }
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .catch-title h3 {
    font-size: 18px;
  }
}
.voice__wrapper .voice__inner .catch-title h3 span {
  font-weight: bold;
}
.voice__wrapper .voice__inner .voice__list {
  margin-bottom: 50px;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list {
    margin-bottom: 0;
  }
}
.voice__wrapper .voice__inner .voice__list ul li .voice__pc {
  display: flex;
  gap: 30px;
  margin-bottom: 45px;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list ul li .voice__pc {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.voice__wrapper .voice__inner .voice__list ul li:last-child .voice__pc {
  margin-bottom: 0;
}
.voice__wrapper .voice__inner .voice__list ul li:nth-child(2) .voice__pc {
  flex-direction: row-reverse;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list ul li:nth-child(2) .voice__pc {
    flex-direction: row;
  }
}
.voice__wrapper .voice__inner .voice__list ul li:nth-child(2) .voice__pc .voice__text::before {
  right: 0;
  left: inherit;
  transform: rotate(-55deg);
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list ul li:nth-child(2) .voice__pc .voice__text::before {
    right: inherit;
    left: -10px;
    transform: rotate(105deg);
  }
}
.voice__wrapper .voice__inner .voice__list ul li img {
  width: 100px;
  object-fit: contain;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list ul li img {
    width: 100%;
    height: auto;
  }
}
.voice__wrapper .voice__inner .voice__list ul li .voice__text {
  background-color: #FFFFFF;
  border-radius: 9999px;
  padding: 25px 50px;
  width: calc(100% - 100px);
  position: relative;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list ul li .voice__text {
    padding: 10px 30px;
    border-radius: 14px;
  }
}
.voice__wrapper .voice__inner .voice__list ul li .voice__text::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 15px 0 15px;
  border-color: #ffffff transparent transparent transparent;
  bottom: 0;
  left: 0px;
  transform: rotate(55deg);
  z-index: -1;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list ul li .voice__text::before {
    bottom: 10px;
    left: -10px;
    transform: rotate(105deg);
  }
}
.voice__wrapper .voice__inner .voice__list ul li .voice__text p {
  font-size: 18px;
}
@media (max-width: 768px) {
  .voice__wrapper .voice__inner .voice__list ul li .voice__text p {
    font-size: 16px;
  }
}
.voice__wrapper .voice__inner .voice__list ul li .voice__pc {
  display: flex;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list ul li .voice__pc {
    display: none;
  }
}
.voice__wrapper .voice__inner .voice__list ul li .voice__sp {
  display: none;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__list ul li .voice__sp {
    display: block;
  }
}
.voice__wrapper .voice__inner .voice__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.voice__wrapper .voice__inner .voice__flex .voice__box {
  width: calc((100% - 120px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.voice__wrapper .voice__inner .voice__flex .voice__box p {
  font-size: 14px;
  font-weight: bold;
  min-height: 63px;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__flex .voice__box p {
    min-height: auto;
    text-align: left;
  }
}
.voice__wrapper .voice__inner .voice__flex .voice__box span {
  font-size: 13px;
  color: #797979;
}
@media (max-width: 768px) {
  .voice__wrapper .voice__inner .voice__flex {
    gap: 20px;
  }
  .voice__wrapper .voice__inner .voice__flex .voice__box {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__flex {
    display: none;
  }
  .voice__wrapper .voice__inner .voice__flex .voice__box {
    width: 100%;
  }
}
@media (max-width: 468px) and (max-width: 468px) {
  .voice__wrapper .voice__inner .voice__flex .voice__box {
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #b0b0b0;
  }
}

.price__wrapper .price__inner h3 {
  font-size: 28px;
  text-align: center;
  font-size: clamp(1.375rem, 0.787rem + 2.01vw, 1.75rem);
}
.price__wrapper .price__item {
  background-color: #FFFFFF;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 4%;
  position: relative;
  margin-top: 20px;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .price__wrapper .price__item {
    display: grid;
  }
}
.price__wrapper .price__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  background-color: #707070;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .price__wrapper .price__item::before {
    width: 90%;
    height: 1px;
    top: 45%;
  }
}
.price__wrapper .price__item .price__box {
  width: 48%;
}
@media (max-width: 768px) {
  .price__wrapper .price__item .price__box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .price__wrapper .price__item .price__box:first-child {
    height: auto;
  }
}
.price__wrapper .price__item .price__box:nth-child(2) {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .price__wrapper .price__item .price__box:nth-child(2) {
    padding-left: 0;
    padding-top: 20px;
  }
}
.price__wrapper .price__item .price__box h4 {
  font-size: clamp(1.25rem, -0.339rem + 3.31vw, 1.5rem);
}
@media (max-width: 468px) {
  .price__wrapper .price__item .price__box h4 {
    font-size: 18px;
  }
}
.price__wrapper .price__item .price__box p {
  font-size: clamp(1.25rem, -0.339rem + 3.31vw, 1.5rem);
  font-weight: bold;
}
.price__wrapper .price__item .price__box p span {
  color: #F34B4B;
}
.price__wrapper .price__item .price__box p span.text-price {
  font-size: 52px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .price__wrapper .price__item .price__box p span.text-price {
    font-size: 42px;
  }
}
@media (max-width: 468px) {
  .price__wrapper .price__item .price__box p span.text-price {
    font-size: 38px;
  }
}
.price__wrapper .price__item .price__box .catch-title {
  margin-bottom: 20px;
}
.price__wrapper .price__item .price__box .catch-title h4 {
  position: relative;
  padding-left: 35px;
}
.price__wrapper .price__item .price__box .catch-title h4::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #F34B4B;
  top: 50%;
  left: 0%;
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
}
.price__wrapper .price__item .price__box .catch-title p {
  font-size: 16px;
  font-weight: 400;
}
.price__wrapper p.caution {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.faq__wrapper .faq__inner {
  background-color: #FFFFFF;
  padding: 30px 40px 60px;
}
.faq__wrapper .faq__inner .faq__item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}
.faq__wrapper .faq__inner .faq__item .faq-question {
  font-weight: bold;
  color: #F34B4B;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq__wrapper .faq__inner .faq__item .faq-question span {
  display: inline-block;
  font-weight: bold;
  margin-right: 8px;
  font-size: 20px;
}
.faq__wrapper .faq__inner .faq__item .faq-answer {
  color: #333;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq__wrapper .faq__inner .faq__item .faq-answer span {
  display: inline-block;
  font-weight: bold;
  color: #000;
  margin-right: 8px;
  font-size: 20px;
}

#anxiety {
  background-color: white;
}
#anxiety .title-area h2 {
  display: inline;
  background-image: linear-gradient(#FFDC11, #FFDC11);
  background-repeat: no-repeat;
  background-size: 100% 0.3em; /* 下線の太さ */
  background-position: 0 100%;
  line-height: 1.5;
  font-size: 28px;
}
@media (max-width: 768px) {
  #anxiety .title-area h2 {
    font-size: 24px;
  }
}
@media (max-width: 468px) {
  #anxiety .title-area h2 {
    font-size: 20px;
  }
}

.anxiety__flex {
  display: none;
}
@media (max-width: 468px) {
  .anxiety__flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
}
.anxiety__flex-pc {
  display: block;
}
@media (max-width: 468px) {
  .anxiety__flex-pc {
    display: none;
  }
}
.anxiety__flex img {
  width: 25%;
}
@media (max-width: 468px) {
  .anxiety__flex img {
    width: calc(50% - 15px);
    height: auto;
  }
}

.anxiety__text-area {
  margin-top: 50px;
}
.anxiety__text-title {
  text-align: center;
}
.anxiety__text-title h3 {
  font-size: 28px;
  margin-top: 50px;
}
.anxiety__text-title p {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .anxiety__text-title p {
    font-size: 24px;
  }
}
@media (max-width: 468px) {
  .anxiety__text-title p {
    font-size: 18px;
  }
}
.anxiety__text-title span {
  display: inline;
  background-image: linear-gradient(#FFDC11, #FFDC11);
  background-repeat: no-repeat;
  background-size: 100% 0.3em; /* 下線の太さ */
  background-position: 0 100%;
  line-height: 1.5;
}

.arrow-down {
  background-size: contain; /* ← これが重要 */
  width: 85px;
  height: 26px;
  margin: 25px auto;
}

.triangle-section::after {
  content: "";
  display: block;
  margin: 0px auto -100px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 20px solid #ffffff;
}
@media (max-width: 468px) {
  .triangle-section::after {
    content: "";
    display: block;
    margin: 50px auto -60px;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 20px solid #ffffff;
  }
}

.anxiety__wrapper {
  padding-bottom: 50px;
}
@media (max-width: 468px) {
  .anxiety__wrapper {
    padding-bottom: 0;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F0EFE7;
  color: #333333;
  font-size: 16px;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 468px) {
  body {
    font-size: 14px;
  }
}

/* common */
.sectionBg {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .sectionBg {
    padding: 60px 0;
  }
}
@media (max-width: 468px) {
  .sectionBg {
    padding: 40px 0;
  }
}

.content {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1120px;
}

.min-content {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
  max-width: 960px;
}

.title-area {
  text-align: center;
  position: relative;
  padding-top: 32px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .title-area {
    margin-bottom: 35px;
  }
}
@media (max-width: 468px) {
  .title-area {
    margin-bottom: 25px;
  }
}
.title-area::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 100px;
  background-color: #F34B4B;
  border-radius: 9999px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.title-area h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .title-area h2 {
    font-size: clamp(1.75rem, 1.358rem + 1.34vw, 2rem);
  }
}
@media (max-width: 468px) {
  .title-area h2 {
    font-size: 24px;
  }
}
.title-area p {
  font-weight: bold;
}

.sp_br {
  display: none;
}
@media (max-width: 468px) {
  .sp_br {
    display: block;
  }
}

.bg-white {
  background-color: white;
}

.cv__wrapper {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .cv__wrapper {
    margin-top: 50px;
  }
}
.cv__wrapper .cv__inner .cv__btn {
  width: 300px;
  margin: 0 auto;
}
.cv__wrapper .cv__inner .cv__btn a.btn {
  background-color: #F34B4B;
  border: 1px solid #F34B4B;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  display: block;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  transition: all 0.6s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.cv__wrapper .cv__inner .cv__btn a.btn:hover {
  background-color: #FFFFFF;
  color: #F34B4B;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.6);
}
.cv__wrapper .cv__inner .cv__btn a.btn.btn_radius {
  border-radius: 9999px;
}

.mainvisual {
  padding-bottom: 100px;
  background-color: #d9e5d8;
}
.mainvisual .cv__wrapper {
  margin-top: 40px;
}
.mainvisual .cv__wrapper .cv__inner .cv__btn {
  margin: 0 auto 0 0;
}
@media (max-width: 768px) {
  .mainvisual .cv__wrapper .cv__inner .cv__btn {
    margin: 0 auto;
  }
  .mainvisual {
    padding-bottom: 50px;
padding-top: 30px;
  }
}
.mainvisual .main_inner .main_flex {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: flex-end;
  min-height: 500px;
}
@media (max-width: 1042px) {
  .mainvisual .main_inner .main_flex {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.mainvisual .main_inner .main_flex .main_img {
  width: calc((100% - 60px) / 1.35);
  margin: 0 auto;
}
.mainvisual .main_inner .main_flex p {
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 100px;
    background-color: #90b83d;
    color: #FFF;
    padding: 10px 30px;
}

@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex p {
    position: inherit;
    font-size: 18px;
    top: inherit;
    left: inherit;
    transform: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    margin: 30px auto 0;
  }
}
  .mainvisual .main_inner .main_flex .main_img.sp {
    display: none;
  }
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex .main_img {
    display: none;
  }
  .mainvisual .main_inner .main_flex .main_img.sp {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
  
}
.mainvisual .main_inner .main_flex .main_text {
  width: calc((100% - 60px) / 0.9);
}
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex .main_text {
    width: 100%;
  }
}
.mainvisual .main_inner .main_flex .main_text .main_img-flex {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.mainvisual .main_inner .main_flex .main_text .main_img-flex img {
  width: 30%;
  object-fit: contain;
}
@media (max-width: 468px) {
  .mainvisual .main_inner .main_flex .main_text .main_img-flex img {
    width: 40%;
  }
}
.mainvisual .main_inner .main_flex .main_text .main_img-flex img:first-child {
  display: none;
}
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex .main_text .main_img-flex img:first-child {
    display: block;
  }
}
.mainvisual .main_inner .main_flex .main_text h1 {
  color: #8FB83F;
  font-size: 14px;
  border: 1px solid #8FB83F;
  width: fit-content;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex .main_text h1 {
    margin: 0 auto;
  }
}
.mainvisual .main_inner .main_flex .main_text p {
  font-size: 24px;
  margin-top: 10px;
  padding-top: 10px;
}
@media (max-width: 1042px) {
  .mainvisual .main_inner .main_flex .main_text p {
    font-size: clamp(1.25rem, 0.546rem + 1.47vw, 1.5rem);
  }
}
.mainvisual .main_inner .main_flex .main_text p span {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-top: 10px;
}
.mainvisual .main_inner .main_flex .main_text p span::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background-color: #EFB22F;
  border-radius: 50%;
}
.mainvisual .main_inner .main_flex .main_text img.logo {
  display: block;
}
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex .main_text img.logo {
    display: none;
  }
}
.mainvisual .main_inner .main_flex .main_text img.sp-moneysol {
  display: none;
}
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex .main_text img.sp-moneysol {
    display: block;
    width: 40%;
    margin: 30px auto;
  }
}
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex .main_text img {
    margin: 0 auto;
  }
}
.mainvisual .main_inner .main_flex .main_text h2 {
  font-size: 24px;
  margin: 10px 0 40px;
}
@media (max-width: 1042px) {
  .mainvisual .main_inner .main_flex .main_text h2 {
    font-size: 18px;
  }
}
.mainvisual .main_inner .main_flex .main_text span {
  font-size: 52px;
  font-weight: bold;
  color: #F34B4B;
}
.mainvisual .main_inner .main_flex .main_text .main__list {
  margin-top: 10px;
}
.mainvisual .main_inner .main_flex .main_text .main__list span {
  font-size: 20px;
  color: #333;
}
.mainvisual .main_inner .main_flex .main_text .main__list ul {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .mainvisual .main_inner .main_flex .main_text .main__list ul {
    justify-content: center;
  }
  .mainvisual .main_inner .main_flex .main_text span {
    font-size: 32px;
  }
}
.mainvisual .main_inner .main_flex .main_text .main__list ul li img {
  width: 80px;
}

.promo {
  background-color: white;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.promo__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .promo__inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 468px) {
  .promo__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.promo__image {
  width: 40%;
}
@media (max-width: 468px) {
  .promo__image {
    width: 100%;
  }
}
.promo__image img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 468px) {
  .promo__image img {
    width: 200px;
    margin: 0 auto;
  }
}
.promo__content {
  width: 60%;
}
@media (max-width: 468px) {
  .promo__content {
    width: 100%;
  }
}
@media (max-width: 468px) {
  .promo__content {
    text-align: center;
  }
}
.promo__copy {
  font-size: 20px;
  line-height: 1.4;
  color: #333;
  font-weight: bold;
}
@media (max-width: 468px) {
  .promo__copy {
    font-size: 15px;
    line-height: 1;
  }
}
.promo__copy .highlight {
  display: inline-block;
  margin: 8px 0;
}
.promo__copy .highlight .red {
  color: #c8342f;
}
.promo__copy .highlight .orange {
  color: #e96a3c;
}
.promo__copy .highlight .blue {
  color: #3f88c5;
}
.promo__copy strong {
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
}
.promo__button {
  display: inline-block;
  background-color: #e94235;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 12px;
  transition: background-color 0.3s;
}
@media (max-width: 468px) {
  .promo__button {
    position: relative;
    z-index: 1;
  }
}
.promo__button:hover {
  background-color: #cc3a2d;
}
.promo::before, .promo::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #a3c13b;
  z-index: 0;
}
.promo::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.promo::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
}/*# sourceMappingURL=style.css.map */


/* --- PC/スマホ共通: 初期は非表示（下からスライドイン用） --- */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -120px;               /* 初期は画面外 */
  opacity: 0;
  transform: translateY(100%);
  transition: transform .35s ease, opacity .35s ease;
  z-index: 9999;
  pointer-events: none;          /* 非表示時にクリック不可 */
}
.floating-cta.is-visible {
  transform: translateY(0);
  bottom: 0;
  opacity: 1;
  pointer-events: auto;          /* 表示時のみクリック可 */
background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
}

/* ボタン外観（ブランド色に合わせて） */
.floating-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 16px;
    margin: 0 auto;
    max-width: 960px;
    background: #F34B4B; /* ボタンの基本色 (赤) */
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 18px;
    
    /* === ここから変更・追加 === */
    box-shadow: 
        /* 1. 内側の上側に明るいシャドウ (光が当たる表現) */
        inset 0 2px 4px rgba(255, 255, 255, 0.5), 
        /* 2. 内側の下側に暗いシャドウ (影の表現) */
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        /* 3. 既存の外側のシャドウ */
        0 3px 6px rgba(0, 0, 0, .5);
    /* === ここまで変更・追加 === */
}
/* iOSセーフエリア対応 */
@supports (padding: max(0px)) {
  .floating-cta__btn {
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
}

/* スマホでのみ表示、PCでは出さない */
@media (min-width: 769px) {
  .floating-cta { display: none; }
}

/* スマホ時：ヘッダー内のCTAは非表示にする */
@media (max-width: 768px) {
  .site-header .btn-consult { display: none; }
  /* コンテンツが被らないよう下側に余白を常時確保（必要に応じて値調整） */
  body { padding-bottom: 80px; }
}

/* モバイルナビ開閉時はCTAを隠す（JSで .is-open を付与想定） */
.mobile-nav.is-open ~ .floating-cta,
.floating-cta.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

/* ================================
   拡大アニメ＋シャイニ―エフェクトつきボタン
================================ */
.cv__wrapper .cv__inner .cv__btn a.btn {
    background-color: rgb(243, 75, 75);
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 4px;
    border: 1px solid rgb(243, 75, 75);
    border-radius: 5px;
    padding: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.6s;
    
    /* パルス（拡大縮小） */
    animation: cvPulse 1.8s cubic-bezier(0.25, 0.7, 0.3, 1) infinite;
}

/* hoverでパルス停止＋少し拡大 */
.cv__wrapper .cv__inner .cv__btn a.btn:hover {
    animation-play-state: paused;
    transform: scale(1.12);
}

/* ---- パルスアニメ ---- */
@keyframes cvPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ================================
   シャイニー（光の筋）アニメーション
================================ */

/* 光の筋（白〜透明のグラデーション） */
.cv__wrapper .cv__inner .cv__btn a.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%; /* 左の外側から始まる */
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: shinyMove 2.8s infinite;
}

/* 光がキラッと流れる動き */
@keyframes shinyMove {
    0%   { left: -80%; }
    40%  { left: 120%; } /* ボタンの右の外側まで通過 */
    100% { left: 120%; }
}
