@charset "UTF-8";
/******************************************************************
 * 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;
  }
}

.c-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 0;
}
.c-title span {
  color: #FBA123;
}
.c-title::before {
  content: attr(data-title);
  font: 700 60px "Mohave", sans-serif;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  color: #FFF7EB;
  position: absolute;
  top: calc(50% + 3px);
  left: calc(50% + 3px);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.c-contact-bnr__title {
  margin-bottom: 5px;
  padding-left: 2px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #FBA123;
}
.c-contact-bnr__list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.c-contact-bnr__list--row {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 11px;
       column-gap: 11px;
}
.c-contact-bnr__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 316.5px;
  height: 60px;
  margin: 0 auto;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  position: relative;
  transition: 0.2s;
}
.c-contact-bnr__item::after {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 30px;
  position: absolute;
  top: 3px;
  left: 3px;
}
.c-contact-bnr__item--web {
  background: linear-gradient(91.35deg, #FFD000 0.14%, #FF7B00 99.24%);
  box-shadow: 0px 0px 30px rgba(255, 123, 0, 0.25);
}
.c-contact-bnr__item--tel {
  background: linear-gradient(91.35deg, #91E402 0.14%, #00CC6D 99.24%);
  box-shadow: 0px 0px 30px rgba(0, 204, 109, 0.25);
}
.c-contact-bnr__item:hover {
  opacity: 0.8;
}

body {
  color: #555;
  font-family: "Noto Sans JP", 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;
  }
}

.inner {
  width: 100%;
  max-width: calc(1200px + 30px);
  margin: 0 auto;
  padding: 0 15px;
}

.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) 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 {
  max-width: 316px;
}
.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: linear-gradient(135deg, #FFD000, #FF7B00);
  -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 {
  width: 100%;
  padding-top: 50px;
  display: block;
}
.header__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  padding: 2px 10px 7px 12.43px;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 100;
  transform: translateX(-50%);
}
.header__logo a {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.header__logo img {
  max-width: 23.7px;
  margin-top: 8px;
}
.header__logo-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.05em;
  padding-bottom: 1px;
}
.header__logo-text span {
  font-weight: 400;
  font-size: 8px;
  line-height: 10px;
  letter-spacing: 0.05em;
}
.header__toggle {
  width: 100%;
  max-width: 31px;
  position: relative;
}
.header__toggle span {
  width: 31px;
  height: 3px;
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  border-radius: 100px;
  position: absolute;
  left: auto;
  right: 0;
}
.header__toggle span:nth-child(1) {
  top: 11px;
}
.header__toggle span:nth-child(2) {
  width: 27px;
  top: 21px;
}
.header__toggle span:nth-child(3) {
  width: 23px;
  top: 31px;
}
.header__nav {
  width: 100%;
  max-width: 375px;
  background: #fff;
  position: fixed;
  top: -100vh;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  transition: 0.2s;
}
.header__nav .c-contact-bnr {
  padding: 20px 0 19px;
}
.header__nav .c-contact-bnr__title {
  margin-bottom: 10px;
}
.header__menu {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #333333;
}
.header__menu li {
  border-bottom: 1px solid #e1e1e1;
}
.header__menu li a {
  display: block;
  padding: 16px 16px 16px 20px;
  position: relative;
}
.header__menu li a::before {
  content: "";
  width: 9px;
  height: 12px;
  display: block;
  background: url(../img/common/menu-arrow.svg) center/cover no-repeat;
  position: absolute;
  top: 20.5px;
  right: 16px;
}
.header__menu li:first-child {
  border-top: 1px solid #e1e1e1;
}
.header__bnr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 100%;
  max-width: 355px;
  height: 60px;
  padding: 8px 23px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: 0.2s;
}
.header__bnr:not(.show), .header__bnr.hide {
  visibility: hidden !important;
  opacity: 0 !important;
}
.header__bnr::before {
  content: "";
  width: 2px;
  height: 44px;
  background: #eee;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.header__bnr a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
}
.header__bnr .tel {
  padding: 0 12px 0 32px;
  color: #00CC6D;
  background: url(../img/common/tel-icon.svg) left/20px no-repeat;
}
.header__bnr .web {
  padding: 0 12px 0 29px;
  color: #FF7B00;
  background: url(../img/common/web-icon.svg) 12px 50%/17px no-repeat;
}

.fixed .header__content {
  position: fixed;
}

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

.mv {
  width: 100%;
  height: clamp(694px, 185vw, 814px);
  padding-top: 16px;
  position: relative;
  z-index: 0;
}
.mv::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 193px);
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.mv__intro {
  display: block;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 16px;
  padding: 6px 25px;
  background: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  border-radius: 100px;
}
.mv__intro span {
  color: #FF9500;
}
.mv__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: clamp(487px, 130vw, 572px);
  padding: 30px 0 25px;
  position: relative;
  z-index: 0;
}
.mv__content::before {
  content: "";
  aspect-ratio: 345/487;
  width: 100%;
  max-width: calc(100% - 30px);
  background: url(../img/mv.jpg) center/cover no-repeat;
  border-radius: 30px 0 0 30px;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  z-index: -1;
}
.mv__text {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 29px;
}
.mv__text p {
  display: block;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 8px 13px;
  background: #fff;
}
.mv__text p + * {
  margin-top: 15px;
}
.mv__text p span {
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mv__data {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  color: #fff;
  position: absolute;
  top: auto;
  right: 16px;
  bottom: 6px;
  left: auto;
}
.mv__reserve {
  padding: 3px 0 30px;
}
.mv__reserve .c-contact-bnr__title {
  margin-bottom: 3px;
}

.mv-rate {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.mv-rate__content {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mv-rate__text {
  position: absolute;
  top: calc(50% + 8px);
  left: calc(50% + 2px);
  transform: translate(-50%, -50%);
}
.mv-rate__title {
  margin-bottom: -3px;
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.1em;
}
.mv-rate__percent {
  margin-right: 4px;
  font: 700 20px "Mohave", sans-serif;
  line-height: 28px;
}
.mv-rate__percent span {
  font-size: 50px;
  line-height: 70px;
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.mv2__fig {
  background: url('../img/mv2-bg.webp') center / cover;
}

.mv2__data {
  text-align: right;
  font-size: 12px;
  line-height: 1;
  padding: 8px;
}


.worry__content {
  margin-bottom: 23px;
  padding: 15px;
  background: #FBA123;
  position: relative;
}
.worry__content-decoration {
  position: absolute;
  left: calc(50% + 0.5px);
  bottom: -23px;
  transform: translateX(-50%);
}
.worry__inner {
  background: #fff;
  padding: 21px 20px 25.5px;
  border-radius: 10px;
}
.worry__check-list {
  margin-top: -3.5px;
}
.worry__check-list li {
  padding: 7px 0 0 29px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #000000;
  position: relative;
}
.worry__check-list li::before {
  content: "";
  width: 21px;
  height: 18px;
  background: url(../img/common/check-box.svg) center/contain no-repeat;
  position: absolute;
  top: 8.5px;
  left: 0;
}
.worry__check-list li:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.worry__detail {
  padding: 25px 15px 35px;
}
.worry__intro {
  margin-bottom: 21.5px;
  font-size: 16px;
  line-height: 180%;
  text-align: center;
  letter-spacing: 0.05em;
}
.worry__intro span {
  font-weight: 700;
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 0;
}
.worry__intro span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 7px;
  background: #FFE6C4;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.worry__list {
  margin-bottom: 21px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.worry__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  text-align: center;
  letter-spacing: 0.05em;
}
.worry__text p:not(:first-child) {
  margin-top: 12px;
}
.worry__text span {
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 0;
}
.worry__text span::before {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: #FFE6C4;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.worry .c-contact-bnr {
  margin-top: 17px;
}

.worry-item {
  width: 100px;
  height: 108px;
  padding: 0 5px;
  background: #FFF5D9;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  color: #613800;
}
.worry-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65.5px;
}
.worry-item:nth-child(1) .worry-item__icon svg {
  margin-top: 7px;
}
.worry-item:nth-child(2) .worry-item__icon svg {
  margin-top: 3px;
}
.worry-item:nth-child(3) .worry-item__icon svg {
  margin-top: 9px;
}

.strength {
  padding: 31px 0 29.5px;
  background: #FBA123;
}
.strength__title {
  margin-bottom: 6px;
  padding-left: 3px;
  color: #fff;
}
.strength__title::before {
  color: rgba(255, 255, 255, 0.17);
}
.strength__text {
  margin-bottom: 13.5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.05em;
  color: #fff;
}
.strength__text span {
  font-weight: 700;
}
.strength__list {
  counter-reset: name;
}

.strength-item {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}
.strength-item + .strength-item {
  margin-top: 25px;
}
.strength-item__heading {
  position: relative;
  margin-bottom: 9px;
}
.strength-item__heading::before {
  content: "強み";
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #FBA123;
  position: absolute;
  top: 0;
  left: 4px;
}
.strength-item__heading::after {
  counter-increment: name;
  content: counter(name, decimal-leading-zero);
  font: 600 40px "Mohave", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FBA123;
  position: absolute;
  top: 22px;
  left: 0;
}
.strength-item__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 57px;
  margin-left: 47px;
  padding: 5px 0 5px 11px;
  font-weight: 700;
  font-size: 17px;
  line-height: 140%;
  letter-spacing: 0.1em;
  border-left: 2px solid #FBA123;
}
.strength-item__title span {
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.strength-item__img {
  margin-bottom: 13px;
}
.strength-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}
.strength-item__detail {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.strength-item__detail span {
  font-weight: 700;
  color: #FBA123;
}
.strength-item__detail * + * {
  margin-top: 10px;
}

.strength-exsample {
  margin: 15px -20px -20px;
  padding: 15px 10px 20px;
  background: #FFF5D8;
  border-radius: 0 0 10px 10px;
}
.strength-exsample__title {
  margin-bottom: 8.5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #613800;
}
.strength-exsample__list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "list list list" "prev dots next";
  overflow: hidden;
  row-gap: 10px;
}
.strength-exsample .slick-track {
  display: flex !important;
}
.strength-exsample .slick-list {
  width: 100%;
  grid-area: list;
}
.strength-exsample .slick-arrow {
  width: 78px;
  height: 26px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  text-indent: 0;
  font-size: 0;
  position: relative;
}
.strength-exsample .slick-prev {
  grid-area: prev;
  margin-inline: 10px auto;
  background-image: url(../img/common/prev-arrow.svg);
}
.strength-exsample .slick-next {
  grid-area: next;
  margin-inline: auto 10px;
  background-image: url(../img/common/next-arrow.svg);
}
.strength-exsample .slick-dots {
  grid-area: dots;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.strength-exsample .slick-dots li {
  width: 7px;
  height: 7px;
  background: #FBA123;
  border-radius: 50%;
}
.strength-exsample .slick-dots li:not(.slick-active) {
  opacity: 0.3;
}
.strength-exsample .slick-dots button {
  display: none;
}

.strength-exsample-item {
  display: flex !important;
  align-items: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin: 0 10px;
}
.strength-exsample-item__img {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 78px;
}
.strength-exsample-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.strength-exsample-item__text {
  padding-top: 1.5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #333333;
}
.strength-exsample-item__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #FF9500;
}
.strength-exsample-item__detail {
  margin-top: 1.5px;
}

.achievement {
  padding: 31px 0 14px;
}
.achievement__title {
  margin-bottom: 8.5px;
  padding-left: 3px;
}
.achievement__title::before {
  color: #FFF7EB;
}

.achievement-rate__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.1em;
}
.achievement-rate__title::before, .achievement-rate__title::after {
  content: "";
  width: 129px;
  height: 13px;
  display: block;
  background: url(../img/common/title-decorateion.svg) center/cover no-repeat;
  margin-bottom: 2px;
}
.achievement-rate__title::after {
  transform: scale(-1, 1);
  margin-bottom: 1px;
}
.achievement-rate__title span {
  flex: 1;
  padding: 2px 5px 0px 8px;
  transform: translateY(-1px);
}
.achievement-rate__note {
  font-size: 10px;
  line-height: 14px;
  color: #A2A2A2;
  text-align: right;
  letter-spacing: 0;
}
.achievement-rate__note p + p {
  margin-top: 1px;
}
.achievement-rate + .achievement-rate {
  margin-top: 15px;
}

.achievement-rate:nth-child(1) .achievement-graph {
  margin-bottom: 5px;
}
.achievement-rate:nth-child(1) .achievement-graph::before {
  aspect-ratio: 1/2;
  width: 100%;
  max-width: 71px;
  background-image: url(../img/achievement-character-01-1.png);
  left: 9px;
  bottom: -4px;
}
.achievement-rate:nth-child(1) .achievement-graph::after {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 130px;
  background-image: url(../img/achievement-character-01-2.png);
  right: -15px;
  bottom: -2px;
}
.achievement-rate:nth-child(1) .achievement-graph__content:nth-of-type(1) {
  position: absolute;
  right: calc(50% - 37px);
  bottom: 24px;
  transform: translateX(50%);
}
.achievement-rate:nth-child(1) .achievement-graph__content:nth-of-type(2) {
  position: absolute;
  top: 14px;
  left: calc(50% - 52px);
  transform: translateX(-50%);
}

.achievement-rate:nth-child(2) .achievement-rate__note {
  margin-top: 12px;
}
.achievement-rate:nth-child(2) .achievement-graph {
  margin: 18px 0 12px;
}
.achievement-rate:nth-child(2) .achievement-graph::before {
  aspect-ratio: 45/83;
  width: 100%;
  max-width: 67.09px;
  background-image: url(../img/achievement-character-02-1.png);
  left: 0;
  bottom: 5px;
}
.achievement-rate:nth-child(2) .achievement-graph::after {
  aspect-ratio: 107/175;
  width: 100%;
  max-width: 107px;
  background-image: url(../img/achievement-character-02-2.png);
  right: -15px;
  bottom: -12px;
}
.achievement-rate:nth-child(2) .achievement-graph__content:nth-of-type(1) {
  position: absolute;
  right: calc(50% - 14px);
  bottom: 8px;
  transform: translateX(50%);
}
.achievement-rate:nth-child(2) .achievement-graph__content:nth-of-type(1) .graph-percent span {
  padding-right: 2px;
}
.achievement-rate:nth-child(2) .achievement-graph__content:nth-of-type(2) {
  position: absolute;
  top: -3px;
  left: calc(50% - 21px);
  transform: translateX(-50%);
}
.achievement-rate:nth-child(2) .achievement-graph__content:nth-of-type(2) .graph-title {
  padding-left: 2px;
}

.achievement-graph {
  margin-top: 15.5px;
  position: relative;
  z-index: 0;
}
.achievement-graph::before, .achievement-graph::after {
  content: "";
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
}
.achievement-graph .graph-title {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}
.achievement-graph .graph-percent {
  font: 700 20px "Mohave", sans-serif;
  line-height: 28px;
  color: #fff;
}
.achievement-graph .graph-percent span {
  font-size: 60px;
  line-height: 1;
}
.achievement-graph__content:nth-of-type(1) .graph-title {
  font-weight: 700;
}
.achievement-graph__content:nth-of-type(1) .graph-percent {
  padding-top: 7px;
}
.achievement-graph__content:nth-of-type(2) .graph-title {
  font-size: 12px;
  color: #000;
}
.achievement-graph__content:nth-of-type(2) .graph-percent {
  padding-top: 5px;
  font-size: 12px;
  color: #FBA123;
}
.achievement-graph__content:nth-of-type(2) .graph-percent span {
  font-size: 25px;
}
.achievement-graph svg {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  max-width: 195px;
  margin: 0 auto;
}

.voice {
  margin-bottom: 30px;
}

.voice__title {
  padding-left: 4px;
}
.voice__list {
  width: 100%;
  overflow: hidden;
}
.voice__list .slick-track {
  display: flex !important;
  justify-content: center;
  padding: 18px 0 30px;
}
.voice__list .slick-list {
  width: 100%;
}
.voice__list .slick-arrow {
  width: 78px;
  height: 26px;
  background: #fff;
  border-radius: 5px;
  text-indent: 0;
  font-size: 0;
}
.voice__list .slick-prev {
  margin-inline: 10px auto;
}
.voice__list .slick-next {
  margin-inline: auto 10px;
}
.voice__list .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.voice__list .slick-dots li {
  width: 7px;
  height: 7px;
  background: #FBA123;
  border-radius: 50%;
}
.voice__list .slick-dots li:not(.slick-active) {
  opacity: 0.3;
}
.voice__list .slick-dots button {
  display: none;
}


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

.voice__tab {
  flex: 1 0 auto;
}

.voice__tab > button {
  width: 100%;
  background: none;
  color: #555;
  border-radius: 100px;
  font-size: 12px;
  line-height: 1.8;
  border: solid 1px #ebebeb;
}

.voice__tab--active > button {
  background: #FBA123;
  border: solid 1px #FBA123;
  color: #fff;
}

.voice__panel {
  display: none;
}

.voice__panel--active {
  display: block;
}


.voice-item {
  width: 100%;
  max-width: calc(100% - 100px);
  margin: 0 12px;
  padding: 13px 0 19px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0px 20px 20px 20px;
}

.voice-user {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 0 15px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.voice-user__icon {
  flex: 0 0 50px;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  background: linear-gradient(135deg, #FFD000 0%, #FF7B00 100%);
  border-radius: 50%;
  position: relative;
  z-index: 0;
}
.voice-user__icon::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 44px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
.voice-user__icon img {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 44px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.voice-user__title {
  flex: 1;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: #FF9500;
}
.voice-user__data {
  margin-top: 3px;
  font-size: 10px;
  line-height: 140%;
  letter-spacing: 0.03em;
  color: #888888;
}

.voice-detail__content + * {
  margin-top: 15px;
}
.voice-detail__title {
  display: block;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  background: #FBA123;
  padding: 3px 16px 4px 15px;
  border-radius: 0px 5px 5px 0px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #fff;
}
.voice-detail__text {
  margin-top: 7px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.voice-detail__text span {
  font-weight: 700;
  color: #FBA123;
}

.fee {
  padding: 28px 0 28px;
  background: linear-gradient(135deg, #FFD000, #FF7B00);
}
.fee__title {
  padding-left: 3px;
  color: #fff;
}
.fee__title::before {
  color: rgba(255, 255, 255, 0.17);
  top: calc(50% + 6px);
  left: calc(50% + 1px);
  letter-spacing: 0.05em;
}
.fee__intro {
  margin-top: 13px;
  margin-bottom: 17px;
}
.fee__intro-title {
  padding: 16px 20px 18px;
  background: #FFFFFF;
  border-radius: 5px;
  font-weight: 700;
  font-size: 25px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.05em;
}
.fee__intro-title span {
  padding: 0 2px 0 4px;
  position: relative;
  z-index: 0;
}
.fee__intro-title span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 12px;
  background: #FFE6C4;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.fee__intro-title strong {
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fee__intro-text {
  margin-top: 17px;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #fff;
}
.fee__intro-note {
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.fee-item__title {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  display: block;
  padding: 0 4px 3px 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
}
.fee-item__title::before {
  content: "";
  width: calc(100% + 15px);
  height: 2px;
  background: #fff;
  position: absolute;
  left: -15px;
  bottom: 0;
}
.fee-item__text {
  margin-top: 11px;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #fff;
}
.fee-item__text span {
  font-weight: 700;
}
.fee-item__text p + p {
  margin-top: 5px;
}
.fee-item + .fee-item {
  margin-top: 18px;
}

.fee-table {
  width: 100%;
  display: table;
  margin-top: 11px;
  padding: 15px 15px 15.5px;
  background: #fff;
  border-radius: 5px;
}
.fee-table__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.05em;
}
.fee-table__row:not(:first-child) {
  padding-top: 6px;
}
.fee-table__row:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
}
.fee-table dd {
  padding-top: 3px;
  font-weight: 700;
  text-align: right;
}
.fee-table dd span {
  font-size: 20px;
  color: #FBA123;
}

.flow {
  padding: 30px 15px 0 18px;
}
.flow__list {
  margin-top: 11px;
  counter-reset: number;
}

.flow-item:last-child .flow-item__body {
  padding-bottom: 30px;
}
.flow-item__head {
  display: flex;
  align-items: center;
  -moz-column-gap: 17px;
       column-gap: 17px;
  position: relative;
}
.flow-item__head::before {
  counter-increment: number;
  content: counter(number);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  font: 700 14px "Mohave", sans-serif;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: -4px;
}
.flow-item__head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 60px;
  background: #FFF0DB;
  border-radius: 50%;
}
.flow-item__head-title {
  padding-bottom: 2px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.flow-item__body {
  margin-top: -1px;
  padding: 0 0 32px 77px;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
  position: relative;
}
.flow-item__body::before {
  content: "";
  width: 4px;
  height: calc(100% - 21px);
  background: linear-gradient(180deg, #FBAC23 0%, #FC8200 100%);
  border-radius: 100px;
  position: absolute;
  top: 11px;
  left: 28px;
}
.flow-item__body p:not(:first-child) {
  margin-top: 10px;
}
.flow-item__body p span {
  font-weight: 700;
  color: #FBA123;
}
.flow-item .c-contact-bnr {
  margin-top: 21px;
}
.flow-item .c-contact-bnr__item {
  padding: 0 22px 0 58px;
}
.flow-item .c-contact-bnr__item--web::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/web-bnr-icon.svg) center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
}
.flow-item .c-contact-bnr__item--tel::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/tel-bnr-icon.svg) center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 27px;
  transform: translateY(-50%);
}

.faq {
  padding: 28px 0 40px;
  background: #FBA123;
  overflow: hidden;
}
.faq__title {
  padding-left: 4px;
  color: #fff;
}
.faq__title::before {
  color: rgba(255, 255, 255, 0.17);
  top: calc(50% + 6px);
}
.faq__list {
  margin-top: 13px;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.faq__question {
  max-width: 315px;
  margin-right: auto;
  margin-left: 20px;
  padding: 16px 15px 16px 46px;
  background: #FFF3E3;
  border-radius: 10px 10px 10px 0;
  font-weight: 700;
  color: #7D6647;
  position: relative;
  filter: drop-shadow(10px 10px 0 rgba(221, 133, 11, 0.68));
}
.faq__question::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../img/common/question.svg) center/cover no-repeat;
  position: absolute;
  top: 15px;
  left: 15px;
}
.faq__question::after {
  content: "";
  display: inline-block;
  border-top: 10px solid rgba(0, 0, 0, 0);
  border-right: 10px solid #FFF3E3;
  position: absolute;
  bottom: 0;
  left: -10px;
}
.faq__question + * {
  margin-top: 15px;
}
.faq__answer {
  max-width: 315px;
  margin-right: 15px;
  margin-left: auto;
  padding: 16px 15px 16px 46px;
  background: #fff;
  border-radius: 10px 10px 0 10px;
  position: relative;
  filter: drop-shadow(10px 10px 0 rgba(221, 133, 11, 0.68));
}
.faq__answer span {
  font-weight: 700;
  color: #FBAC3D;
}
.faq__answer::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../img/common/answer.svg) center/cover no-repeat;
  position: absolute;
  top: 15px;
  left: 15px;
}
.faq__answer::after {
  content: "";
  display: inline-block;
  border-top: 10px solid rgba(0, 0, 0, 0);
  border-left: 10px solid #fff;
  position: absolute;
  bottom: 0;
  right: -10px;
}
.faq__answer + .faq__question {
  margin-top: 30px;
}

.footer__content {
  padding: 40px 20px;
}
.footer__text {
  margin-bottom: 29px;
  font-size: 16px;
  line-height: 180%;
  text-align: center;
  letter-spacing: 0.05em;
}
.footer__text span {
  font-weight: 700;
  background: linear-gradient(135deg, #FFD000, #FF7B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__text > * + * {
  margin-top: 25px;
}
.footer__bottom {
  padding: 24px 20px 32px;
  background: #FBA123;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.1em;
}
.footer__bottom-text {
  margin-top: 18.6px;
}
.footer__logo {
  display: block;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
.footer__logo a {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  padding-left: 1px;
}
.footer__logo img {
  max-width: 23px;
  margin-top: 8px;
}
.footer__logo-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-align: left;
  padding-bottom: 1px;
  color: #fff;
}
.footer__logo-text span {
  font-weight: 400;
  font-size: 8px;
  line-height: 10px;
  letter-spacing: 0.05em;
}
.footer .c-contact-bnr__title {
  margin-bottom: 10px;
}
.footer .c-contact-bnr__list {
  row-gap: 12px;
}


.flow2 {
  padding: 30px 0;
}

.flow2__title {
  margin-bottom: 20px;
}

.flow2-persona {
  padding: 0 20px;
  margin-bottom: 35px;
}

.flow2-persona__cont1 {
  margin-bottom: 28px;
}

.flow2-persona__fig {
  width: 75px;
  height: 75px;
  margin: 0 auto;
}

.flow2-persona__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow2-persona__target {
  text-align: center;
  font-size: 14px;
}

.flow2-persona__trouble {
  background: #FFF4D8;
  border-radius: 0 20px 0 0;
  padding: 19px 0 20px 0;
}

.flow2-persona__trouble-ttl {
  background: #FBA123;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 122px;
  text-align: center;
  border-radius: 0px 5px 5px 0px;
  margin-bottom: 10px;
}

.flow2-persona__trouble-list {
  padding: 0 23px;
  font-size: 14px;
}

.flow2-persona__trouble-item {
  padding-left: 1em;
  position: relative;
}

.flow2-persona__trouble-item::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}


.flow2-item {
  border-radius: 10px;
  box-shadow: 0 0 26px rgba(0,0,0,0.12);
  position: relative;
}

.flow2-item + .flow2-item,
.flow2-item + .flow2-item2 {
  margin-top: 84px;
}

.flow2-item + .flow2-item::before,
.flow2-item + .flow2-item2::before {
  content: '';
  position: absolute;
  width: 125px;
  height: 18px;
  background: url('../img/flow2-arrow.png') center / contain no-repeat;
  top: -47px;
  left: 50%;
  transform: translateX(-50%);
}

.flow2-item2 {
  position: relative;
}

.flow2-item2__txt {
  text-align: center;
  max-width: 262px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFA500, #FFBF4A);
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  margin: 0 auto;
  letter-spacing: .34em;
  padding: 12px 0px;
}


.flow2-item-header {
  background: #FBA123;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 5px;
  border-radius: 10px 10px 0 0;
}

.flow2-item-header__num {
  flex: 0 0 80px;
  text-align: center;
  font-family: "Mohave", sans-serif;
  line-height: 1;
  font-weight: 500;
  padding: 18px 0 8px;
  position: relative;
}

.flow2-item-header__num::after {
  content: '';
  position: absolute;
  height: 60px;
  width: 1px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
}

.flow2-item-header__num-txt {
  font-size: 15px;
  letter-spacing: .1em;
  margin-bottom: 3px;
}

.flow2-item-header__num-no {
  font-size: 48px;
  letter-spacing: .1em;
}

.flow2-item-header__txt {
  flex: 1 0 0px;
  line-height: 1.2;
  padding-left: 15px;
}

.flow2-item-header__ttl {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.flow2-item-header__desc {
  font-size: 15px;
}


.flow2-item-body {
  padding: 15px 10px;
}

.flow2-item-body__desc {
  text-align: center;
  font-size: 17px;
  margin-bottom: 5px;
}

.flow2-item-body__schedule {
  text-align: center;
}


.flow2-item-footer {
  background: #FFF4D8;
  color: #FBA123;
  padding: 10px 20px 14px;
  border-radius: 0 0 10px 10px;
}

.flow2-item-footer__ttl {
  font-size: 15px;
  font-weight: 700;
}

.flow2-item-footer__desc {
  font-size: 13px;
  line-height: 1.5;
}