@charset "UTF-8";

:root {
  --color-main: rgba(57, 179, 130, 1);
  --color-main-shadow: rgba(57, 179, 130, 0.25);
  --color-accent: rgba(251, 129, 128, 1);
  --color-accent-shadow: rgba(251, 129, 128, 0.25);
  --bg-gray: rgba(248, 248, 248, 1);
  --bg-green: rgba(225, 238, 231, 1);
}

/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 62.5%;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 959px) and (min-width: 751px) {
  .tb-none {
    display: none !important;
  }
}

@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}

.c-fadein {
  opacity: 0;
  transition:
    transform ease 1s,
    opacity ease 1s;
}

.c-fadein.to-top {
  transform: translateY(50px);
}

.c-fadein.to-bottom {
  transform: translateY(-50px);
}

.c-fadein.to-right {
  transform: translateX(-50px);
}

.c-fadein.to-left {
  transform: translateX(50px);
}

.c-fadein.to-rt {
  transform: translate(-50px, 50px);
}

.c-fadein.to-rb {
  transform: translate(-50px, -50px);
}

.c-fadein.to-lt {
  transform: translate(50px, 50px);
}

.c-fadein.to-lb {
  transform: translate(50px, -50px);
}

.c-fadein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-slidein {
  opacity: 0;
  transition:
    transform ease-out 0.5s,
    opacity ease-out 0.5s;
}

@media screen and (max-width: 750px) {
  .c-slidein {
    transition-duration: 0.4s;
  }
}

.c-slidein.to-top {
  transform: translateY(100vh);
}

.c-slidein.to-bottom {
  transform: translateY(-100vh);
}

.c-slidein.to-right {
  transform: translateX(-100vw);
}

.c-slidein.to-left {
  transform: translateX(100vw);
}

.c-slidein.to-rt {
  transform: translate(-100vw, 100vh);
}

.c-slidein.to-rb {
  transform: translate(-100vw, -100vh);
}

.c-slidein.to-lt {
  transform: translate(100vw, 100vh);
}

.c-slidein.to-lb {
  transform: translate(100vw, -100vh);
}

.c-slidein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-reveal {
  opacity: 0;
  transition:
    clip-path 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}

@media screen and (max-width: 750px) {
  .c-reveal {
    transition-duration: 0.4s;
  }
}

.c-reveal.to-right {
  clip-path: inset(0 100% 0 0);
}

.c-reveal.to-left {
  clip-path: inset(0 0 0 100%);
}

.c-reveal.to-top {
  clip-path: inset(100% 0 0 0);
}

.c-reveal.to-bottom {
  clip-path: inset(0 0 100% 0);
}

.c-reveal.inview {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

@media screen and (min-width: 960px) {
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
}

@media screen and (max-width: 750px) {
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
}

body {
  color: #555;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 2;
  min-width: 375px;
  scroll-behavior: auto !important;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 15px;
  }
}

.c-ttl {
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  line-height: calc(41 / 27);
}

.c-ttl span {
  color: #f24d1e;
}

.body {
  display: grid;
  grid-template-columns: 1fr 375px 1fr;
  grid-template-areas: "left . right";
  width: 100%;
  height: 100vh;
  background: url(../img/common/bg-image.jpg?v=2) center/cover no-repeat;
  position: fixed;
  top: 0;
  left: 0;
}

.body__content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.body__content--left {
  grid-area: left;
}

.body__content--right {
  grid-area: right;
}

.body__logo {
  padding-bottom: 4px;
}

.body__logo-image {
  display: block;
  margin: 0 auto 32.5px;
}

.body__logo-text {
  margin-right: 4px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.05em;
}

.body__logo-text span {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
}

.body__info {
  padding: 0 16px 41px 0;
}

.body__info .c-contact-bnr {
  margin: 45px 2px 0 0;
}

.body__info .c-contact-bnr__title {
  margin-bottom: 8px;
}

.body__info .c-contact-bnr__item::before {
  top: 2.5px;
}

.body__info-title {
  margin-bottom: 48px;
}

.body__info-title p {
  display: block;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
  padding: 0.25em 0.7em;
  background: #fff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 29px 0.2068965517em;
  text-align: center;
}

.body__info-title p + * {
  margin-top: 0.75em;
}

.body__info-title p span {
  background: var(--color-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body__info-text p {
  font-size: 16px;
  line-height: 180%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #333333;
}

.body__info-text p + * {
  margin-top: 0.9375em;
}

.body__info-text p span {
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .body__info {
    padding-right: 0;
  }

  .body__info .c-contact-bnr {
    margin-top: 25px;
  }

  .body__info-title p {
    font-size: 14px;
  }

  .body__info-text p {
    font-size: 14px;
  }
}

@media screen and (max-width: 959px) {
  .body__logo-image {
    max-width: 44px;
    margin-bottom: 15px;
  }

  .body__logo-text {
    margin-right: 0;
    font-size: 14px;
  }

  .body__logo-text span {
    margin-bottom: 2px;
    font-size: 10px;
  }

  .body__info .c-contact-bnr__title {
    font-size: 12px;
  }

  .body__info .c-contact-bnr__item {
    font-size: 12px;
  }

  .body__info-title p {
    font-size: 12px;
  }

  .body__info-text p {
    font-size: 12px;
  }
}

@media screen and (max-width: 750px) {
  .body__content {
    display: none;
  }
}

.main-content {
  max-width: 440px;
  margin-inline: auto;
  background: #fff;
  position: relative;
}
.header {
  position: absolute;
  width: 100%;
  z-index: 2;
}
.header.fixed,
.nav-open .header {
  position: fixed;
  background: #fff;
}
.header__content {
  display: flex;
  justify-content: space-between;
  padding: 10px 10px 8px;
  position: relative;
  z-index: 3;
}
.header__logo a {
  display: flex;
  align-items: center;
  padding-top: 6px;
}
.header__logo img {
  width: 37px;
  height: 28px;
}

.header__logo-text {
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  padding: 2px 0 0 5px;
}

.header__logo-text span {
  font-size: 9px;
  line-height: 1;
  display: block;
  padding-bottom: 3px;
}

.header__toggle {
  width: 62px;
  height: 62px;
  background: #ffb000;
  border-radius: 31px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  position: relative;
}
.header__toggle::after {
  content: "menu";
  font-weight: bold;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 26px;
}
.nav-open .header__toggle::after {
	content: "close";
}

.header__toggle span {
  width: 34px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  transition: 0.2s;
}
.header__toggle span:nth-of-type(1) {
  top: 17px;
}

.header__toggle span:nth-of-type(2) {
  top: 27px;
}

.nav-open .header__toggle span:nth-of-type(1) {
  transform: translate(-50%) rotate(30deg);
  top: 22px;
}

.nav-open .header__toggle span:nth-of-type(2) {
  transform: translate(-50%) rotate(-30deg);
  top: 22px;
}

.header__nav {
  padding: 0 10px 55px;
  position: fixed;
  top: -100vh;
  width: 100%;
  background: #fff;
  transition: 0.2s;
}

.nav-open .header__nav {
  top: 80px;
}

.header__menu {
  border-radius: 8px;
  background: #fff3cc;
  padding: 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__menu li a {
  display: block;
  border-radius: 8px;
  background: #fff;
  font-weight: bold;
  padding: 10px 16px 12px;
  letter-spacing: 0.11em;
  position: relative;
}

.header__menu li a::after {
  content: url(../img/header-icon.svg);
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.header .c-contact-bnr {
  padding: 24px 22px 0;
}

.header .c-contact-bnr__item span {
  width: 63%;
}

.c-contact-bnr__ttl {
  font-weight: bold;
  color: #f24d1e;
  text-align: center;
  padding-bottom: 3px;
}

.c-contact-bnr__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-contact-bnr__item {
  border-radius: 38px;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 21px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  padding: 7px 0 13px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  position: relative;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.24);
}

.c-contact-bnr__item::after {
  content: url(../img/button-icon.svg);
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
}

.c-contact-bnr__item span {
  display: flex;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 38px;
  width: 76%;
  align-items: center;
  justify-content: center;
  line-height: calc(24 / 14);
  letter-spacing: 0.22em;
}

.c-contact-bnr__item span strong {
  font-size: 16px;
  line-height: 1;
}

.c-contact-bnr__item--web {
  background: linear-gradient(#ffb000, #f24d1e);
}

.c-contact-bnr__item--tel {
  background: linear-gradient(#00b1ff, #1e3ff2);
}

.mv {
  padding-bottom: 22px;
}

.mv__fig {
  margin-bottom: 15px;
}

.mv__reserve {
  padding: 0 12px;
}

.worry {
  padding-bottom: 23px;
}

.worry__content {
  padding: 0 10px;
}

.worry__content::after {
  content: "";
  display: block;
  background: #e9e9e9;
  width: 255px;
  height: 34px;
  margin: 16px auto 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.worry__ttl {
  width: 339px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.worry__list {
  margin-top: -12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.worry__list li {
  font-size: 16px;
  font-weight: bold;
  background: #fff3cc;
  line-height: 1.4;
  border-radius: 8px;
  text-align: center;
  position: relative;
  padding: 8.7px 0;
}

.worry__list li:nth-of-type(2n) {
  background: #ffeea9;
}

.worry__list li::after {
  position: absolute;
  z-index: 1;
}

.worry__list li:nth-of-type(1)::after {
  content: url(../img/worry-icon-01.svg);
  right: 11px;
  top: 39px;
}

.worry__list li:nth-of-type(3)::after {
  content: url(../img/worry-icon-02.svg);
  left: 0;
  top: 18px;
}

.worry__list li:nth-of-type(4)::after {
  content: url(../img/worry-icon-03.svg);
  right: 19px;
  top: 49px;
}

.worry__inner {
  padding: 0 10px;
}

.worry__check-list {
  border: 3px solid #ffeea9;
  border-radius: 8px;
  padding: 16px 20px 17px 33px;
}

.worry__check-list li {
  font-size: 18px;
  font-weight: bold;
  line-height: calc(22.4 / 18);
  display: flex;
  align-items: center;
  letter-spacing: 0.04em;
}

.worry__check-list li::before {
  content: url(../img/worry-check.svg);
  display: inline-block;
  padding: 10px 7px 0 0;
}

.worry__text {
  color: #ffb000;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(to bottom, transparent 50%, #fff3cc 50%);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.45;
  padding: 17px 0 24px;
}

.worry__text span {
  font-size: 25px;
}

.worry-intro {
  display: flex;
  padding: 8px 10px 0;
  justify-content: space-between;
  align-items: flex-end;
}

.worry-intro__txt {
  font-size: 18px;
  font-weight: bold;
}

.worry-intro__img {
  flex: 0 0 107px;
}

.worry-intro__txt {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 12px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.worry-intro__large {
  font-size: 42px;
  color: #f24d1e;
}

.worry-intro__medium {
  font-size: 27px;
}

.worry__reserve {
  padding: 16px 12px 0;
}

.gain {
  background: #fff3cc;
  padding: 31px 10px 58px;
}

.gain__list {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: number;
}

.gain-item__ttl {
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding: 22px 0 5px;
}

.gain-item__ttl::before {
  counter-increment: number;
  content: "その" counter(number);
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gain-item:nth-of-type(1) .gain-item__ttl::before {
  background: url(../img/gain-bg-01.svg) center/cover no-repeat;
  width: 87px;
  height: 57px;
}

.gain-item:nth-of-type(2) .gain-item__ttl::before {
  background: url(../img/gain-bg-02.svg) center/cover no-repeat;
  width: 85px;
  height: 55px;
}

.gain-item:nth-of-type(3) .gain-item__ttl::before {
  background: url(../img/gain-bg-03.svg) center/cover no-repeat;
  width: 81px;
  height: 54px;
}

.gain-item:nth-of-type(4) .gain-item__ttl::before {
  background: url(../img/gain-bg-04.svg) center/cover no-repeat;
  width: 87px;
  height: 57px;
}

.gain-item:nth-of-type(5) .gain-item__ttl::before {
  background: url(../img/gain-bg-05.svg) center/cover no-repeat;
  width: 85px;
  height: 55px;
}

.gain-item__img img {
  border-radius: 24px;
}

.gain-item__detail {
  line-height: 2;
  padding: 0 5px;
}

.voice {
  position: relative;
  padding: 61px 0 40px;
}

.voice__ttl {
  background: url(../img/voice-bg.png) center/cover no-repeat;
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 277px;
  height: 83px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 19px;
}

.voice__tabs {
  display: flex;
  padding: 0 0 0 15px;
  gap: 3px;
}

.voice__tab button {
  border: 1px solid #e9e9e9;
  border-radius: 13px;
  background: #fff;
  color: #838383;
  font-size: 12px;
  display: block;
  line-height: calc(21 / 12);
  line-height: calc(23 / 12);
  padding: 0 12px;
}

.voice__tab--active button {
  border: 1px solid #f24d1e;
  background: #f24d1e;
  color: #fff;
}
.voice__panel{
	display: none;
	overflow: hidden;
	padding-bottom: 9px;
}
.voice__panel.voice__panel--active{
	display: block;
}
.voice__list .slick-list{
	overflow: visible;
	width: 318px;
}

.voice__list .slick-track{
	display: flex !important;
}

.voice__list .slick-slide {
	height: auto;
}

.voice__list .slick-dots{
	display: flex;
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translate(-50%);
	gap: 8px;
}

.voice__list .slick-dots li{
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #E9E9E9;
}
.voice__list .slick-dots li.slick-active{
	background: #FFB000;
}

.voice__list .slick-dots button{
	display: none;
}

.voice-item {
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  width: 300px;
  margin: 16px 8px;
  padding: 16px 16px;
}

.voice-user {
  display: flex;
  align-items: center;
  padding-bottom: 9px;
}

.voice-user__icon {
  background: #fff3cc;
  width: 77px;
  border-radius: 77px;
}

.voice-user__data {
  font-size: 13px;
  padding-left: 16px;
}

.voice-head {
  font-weight: bold;
  font-size: 16px;
  line-height: calc(25.6 / 16);
  padding-bottom: 7px;
}
.voice-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice-detail__title {
  font-size: 13px;
  color: #fff;
  background: #ffb000;
  border-radius: 15px;
  width: fit-content;
  padding: 0 12px;
}

.voice-detail__text {
  font-size: 14px;
  line-height: calc(22.4 / 14);
  padding: 8px 0 0;
}

.achievements {
  background: #ffb000;
  padding: 25px 30px 39px;
}

.achievements__ttl {
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
}

.achievements__list {
  padding-top: 23px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.achievements-item {
  background: #fff;
  border: 3px solid #ffeea9;
  border-radius: 8px;
  position: relative;
  padding: 38px 21px 12px;
}

.achievements-item__ttl {
  font-size: 16px;
  background: #ffeea9;
  border-radius: 16px;
  font-weight: bold;
  position: absolute;
  padding: 0 12px;
  top: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.achievements-item__txt {
  color: #838383;
  font-size: 10px;
  line-height: 1.4;
}

.achievements-item__img {
  width: 200px;
  margin: 0 auto 10px;
}

.roadmap {
  background: #fff3cc url(../img/roadmap-bg.png) center/cover no-repeat;
  padding: 31px 10px 40px;
}

.roadmap__txt {
  padding: 18px 5px 12px;
}

.roadmap__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.roadmap__note {
  font-size: 10px;
  color: #707070;
  line-height: 1.4;
  padding: 16px 5px 0;
}

.roadmap-item {
  background: #fff;
  border-radius: 8px;
  display: flex;
  position: relative;
}

.roadmap-item::after {
  content: "";
  width: 41px;
  height: 12px;
  background: #f4c500;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%, 100%);
}

.roadmap-item:last-of-type:after {
  content: none;
}

.roadmap-item__step {
  width: 66px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background: #ffb000;
  border-radius: 8px 0 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.roadmap-item__step span {
  font-size: 41px;
}

.roadmap-item__cont {
  width: calc(100% - 66px);
  padding: 8px 16px;
}

.roadmap-item__ttl {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.roadmap-item__txt {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.04em;
}

.roadmap-item__goal {
  background: #fff3cc;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin: 7px 0 4px;
  padding: 0 12px 1px;
}

.first {
  padding: 32px 10px 40.5px;
}

.first__list {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.first-item__ttl {
  font-size: 21px;
  font-weight: bold;
  color: #f24d1e;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  gap: 12px;
}

.first-item__ttl::before {
  content: url(../img/first-icon01.svg);
}

.first-item__ttl::after {
  content: url(../img/first-icon01.svg);
  transform: scale(-1, 1);
}

.first-item__txt {
  padding: 10px 0 11px;
}

.first-item__txt span {
  font-weight: bold;
  background: linear-gradient(to bottom, transparent 50%, #ffeea9 50%);
  padding-bottom: 5px;
}

.first-item__list {
  display: flex;
  padding-top: 14px;
  gap: 10px;
  counter-reset: step;
}

.first-item__item {
  background: #fff3cc;
  width: calc((100% / 3) - (10px / 3));
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  position: relative;
}

.first-item__item::before {
  counter-increment: step;
  content: "Step.0" counter(step);
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: calc(26 / 14);
  text-align: center;
  color: #fff;
  background: #ffb000;
  border-radius: 8px 8px 0 0;
}

.first-item__item::after {
  content: url(../img/first-icon02.svg);
  position: absolute;
  right: 0;
  top: 68%;
  transform: translate(100%, -50%);
}

.first-item__item:last-of-type::after {
  content: "";
}

.first-item__item span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: calc(19.6 / 14);
  padding: 6.5px 0;
}

.first-item__head {
  font-size: 17px;
  font-weight: bold;
  color: #f24d1e;
}

.first-item__note {
  font-size: 10px;
  color: #707070;
  line-height: 1.4;
  padding-top: 9px;
}

.first-item__note a {
  color: #f24d1e;
  text-decoration: underline;
}

.first-fee {
  display: flex;
  background: #fff3cc;
  padding: 6px 8px 5px;
  gap: 8px;
  border-radius: 8px;
}

.first-fee__item:first-of-type {
  width: 28.6%;
}

.first-fee__item:last-of-type {
  flex: 1;
}

.first-fee__ttl {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #ffb000;
  line-height: calc(24 / 14);
  text-align: center;
}

.first-fee__item:first-of-type .first-fee__ttl {
  border-radius: 0 13px 13px 0;
}

.first-fee__item:last-of-type .first-fee__ttl {
  border-radius: 13px 0 0 13px;
}

.first-fee__cont {
  font-weight: bold;
  font-size: 14px;
  line-height: calc(19.5 / 14);
  text-align: center;
  padding-top: 4px;
}

.first-fee__cont span {
  color: #f24d1e;
  font-size: 26px;
}

.first-table {
  background: #fff3cc;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.first-table__row {
  background: #fff;
  border-radius: 8px;
  display: flex;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 16px 6.5px;
}

.first-table__row dt {
  flex: 0 0 50%;
  font-size: 14px;
  line-height: calc(19.6 / 14);
}

.first-table__row dd {
  flex: 0 0 50%;
  text-align: right;
  line-height: 1.73;
}

.first-table__row dd span {
  font-size: 22px;
  color: #f24d1e;
}

.faq {
  background: #fff3cc;
  padding: 31px 10px;
}

.faq__list {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border-radius: 5px;
}

.faq-item__question {
  font-size: 16px;
  font-weight: bold;
  padding: 14px 35px 10px 41px;
  min-height: 67px;
  max-height: 69px;
  line-height: calc(22.4 / 16);
  display: flex;
  align-items: center;
  position: relative;
}

.faq-item__question::before,
.faq-item__ttl::before {
  content: "Q";
  font-size: 24px;
  color: #f24d1e;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.faq-item__question::after {
  content: "＋";
  font-size: 16px;
  color: #f24d1e;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.faq-item__question.is-active::after {
  content: "ー";
}

.faq-item__answer {
  border-top: 1px solid #e9e9e9;
  padding: 16px 16px 15px 0;
  display: none;
}

.faq-item__ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: calc(22.4 / 16);
  padding-left: 41px;
  position: relative;
}

.faq-item__ttl::before {
  content: "A";
}

.faq-item__txt {
  font-size: 14px;
  line-height: calc(22.4 / 14);
  padding: 8px 0 0 41px;
}
.footer {
  background: #fff3cc url(../img/footer-bg-01.svg) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  background: url(../img/footer-bg-02.png) center/cover no-repeat;
  width: 201px;
  height: 219px;
  position: absolute;
  top: 72px;
  left: 230px;
}
.footer__content {
  padding: 61px 0 32px;
}

.footer__ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: calc(28.8 / 18);
  padding-bottom: 27px;
}

.footer__txt {
  font-size: 16px;
  text-align: center;
  line-height: 2;
  padding-bottom: 23px;
}

.footer__txt span {
  font-weight: bold;
  background: linear-gradient(to bottom, transparent 50%, #ffeea9 50%);
  padding-bottom: 5px;
}

.footer .c-contact-bnr {
  padding: 0 32px;
}

.footer .c-contact-bnr__item span {
  width: 63%;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 17px 0 24px;
  gap: 28px;
  background: #fff3cc;
}
.footer__logo a {
  display: flex;
  align-items: center;
  padding-top: 6px;
}
.footer__logo img {
  width: 37px;
  height: 28px;
}

.footer__logo-text {
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  padding: 2px 0 0 5px;
}

.footer__logo-text span {
  font-size: 9px;
  line-height: 1;
  display: block;
  padding-bottom: 3px;
}

.footer__bottom-text {
  font-size: 12px;
  text-align: center;
  line-height: calc(16.8 / 12);
}
