@charset "UTF-8";
/* icon */
.c-ico-chevron {
  aspect-ratio: 1/1;
  width: 26px;
  height: 26px;
  background-color: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.c-ico-chevron::before {
  content: "";
  mask-image: url(../img/components/c_ico_chevron_mask.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 6px;
  height: 10px;
  background-color: #fff;
  transition: 0.3s;
  margin: 0 0 0 2px;
}

/* button */
.c-btn-01 {
  max-width: 100%;
  width: 500px;
  margin-inline: auto;
  height: 80px;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  background-color: #fff;
  border-radius: 40px;
  border: 2px solid #222;
  position: relative;
  z-index: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-btn-01 {
    font-size: 18px;
    max-width: 345px;
    width: 100%;
  }
}
.c-btn-01__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 40px;
}
.c-btn-01__inner:before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 40px;
  background: #222;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn-01:hover .c-btn-01__inner:before {
    width: 100%;
  }
  .c-btn-01:hover {
    color: #fff;
  }
  .c-btn-01:hover .c-btn-01__chara-img {
    top: 0;
    right: 2px;
    transform: rotate(-10deg);
  }
  .c-btn-01:hover .c-ico-chevron {
    background: #fff;
  }
  .c-btn-01:hover .c-ico-chevron::before {
    background-color: #222;
  }
}
.c-btn-01__chara {
  width: 106px;
  height: 88px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-btn-01__chara {
    width: 60px;
    height: 78px;
    border-radius: 0 0 0 40px;
  }
}
.c-btn-01__chara-img {
  transition: 0.3s;
  position: absolute;
  top: 22px;
  right: 16px;
  width: 111px;
}
@media screen and (max-width: 767px) {
  .c-btn-01__chara-img {
    width: 99px;
    right: 2px;
    top: 15px;
    max-width: initial;
  }
}
.c-btn-01 .c-ico-chevron {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.c-btn02 {
  max-width: 100%;
  width: 484px;
  padding: 12px 10px;
  position: relative;
  z-index: 0;
  border-radius: 38px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-height: 68px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    max-width: 305px;
    width: 100%;
  }
}
.c-btn02:before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 38px;
  background: #222;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn02:hover:before {
    width: 100%;
  }
}
.c-btn02--ver01 {
  color: #222;
  background-color: #fff;
  border: 2px solid #222;
}
.c-btn02--ver01:before {
  background: #222;
}
.c-btn02--ver01 .c-ico-chevron {
  background: #222;
}
.c-btn02--ver01 .c-ico-chevron:before {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-btn02--ver01:hover {
    color: #fff;
  }
  .c-btn02--ver01:hover .c-ico-chevron {
    background: #fff;
  }
  .c-btn02--ver01:hover .c-ico-chevron::before {
    background-color: #222;
  }
}
.c-btn02--ver02 {
  background: #222;
  color: #fff;
  border: 2px solid #222;
}
.c-btn02--ver02:before {
  background: #fff;
}
.c-btn02--ver02 .c-ico-chevron {
  background: #fff;
}
.c-btn02--ver02 .c-ico-chevron:before {
  background: #222;
}
@media screen and (min-width: 768px) {
  .c-btn02--ver02:hover {
    color: #222;
  }
  .c-btn02--ver02:hover .c-ico-chevron {
    background: #222;
  }
  .c-btn02--ver02:hover .c-ico-chevron::before {
    background-color: #fff;
  }
}
.c-btn02--small {
  width: 286px;
}
@media screen and (max-width: 767px) {
  .c-btn02--small {
    max-width: 305px;
    width: 100%;
  }
}
.c-btn02--medium {
  width: 330px;
}
@media screen and (max-width: 767px) {
  .c-btn02--medium {
    max-width: 305px;
    width: 100%;
  }
}
.c-btn02--rows {
  padding: 10px;
}
.c-btn02 .c-ico-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn02 .c-ico-chevron {
    right: 16px;
    width: 20px;
    height: 20px;
  }
  .c-btn02 .c-ico-chevron:before {
    width: 5px;
    height: 8px;
  }
}

.c-cv-btn01 {
  width: 334px;
  max-width: 100%;
  margin-inline: auto;
  height: 52px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 62px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-cv-btn01 {
    max-width: 345px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    font-size: 18px;
  }
}
.c-cv-btn01__txt {
  position: relative;
  z-index: 1;
}
.c-cv-btn01--ver01 {
  color: #fff;
}
.c-cv-btn01--ver01:before {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 62px;
}
.c-cv-btn01--ver01:after {
  background: #fff;
  height: calc(100% - 4px);
  border-radius: 62px;
  top: 2px;
  left: 2px;
  z-index: -1;
  width: 0;
}
.c-cv-btn01--ver01 .c-ico-chevron {
  background: #fff;
}
.c-cv-btn01--ver01 .c-ico-chevron::before {
  background-color: #FF9509;
}
.c-cv-btn01--ver01:hover {
  color: #FF622E;
}
.c-cv-btn01--ver01:hover:after {
  width: calc(100% - 4px);
}
.c-cv-btn01--ver01:hover .c-ico-chevron {
  background: #FF9509;
}
.c-cv-btn01--ver01:hover .c-ico-chevron::before {
  background-color: #fff;
}
.c-cv-btn01--ver02 {
  color: #FF622E;
}
.c-cv-btn01--ver02:before {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 62px;
}
.c-cv-btn01--ver02:after {
  background: #fff;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 62px;
  top: 2px;
  left: 2px;
  z-index: -1;
}
.c-cv-btn01--ver02 .c-ico-chevron {
  background: #FF9509;
}
.c-cv-btn01--ver02 .c-ico-chevron::before {
  background-color: #fff;
}
.c-cv-btn01--ver02:hover {
  color: #fff;
}
.c-cv-btn01--ver02:hover:before {
  left: 100%;
}
.c-cv-btn01--ver02:hover .c-ico-chevron {
  background: #fff;
}
.c-cv-btn01--ver02:hover .c-ico-chevron::before {
  background-color: #FF9509;
}
.c-cv-btn01 .c-ico-chevron {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-cv-btn01 .c-ico-chevron {
    width: 22px;
    height: 22px;
    right: 15px;
  }
}
.c-cv-btn01:before, .c-cv-btn01:after {
  content: "";
  position: absolute;
  transition: 0.3s;
}

.c-cv-btn02 {
  width: 180px;
  max-width: 100%;
  margin-inline: auto;
  height: 46px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 23px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.c-cv-btn02__txt {
  position: relative;
  z-index: 1;
}
.c-cv-btn02--ver01 {
  color: #fff;
}
.c-cv-btn02--ver01:before {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 23px;
}
.c-cv-btn02--ver01:after {
  background: #fff;
  height: calc(100% - 4px);
  border-radius: 23px;
  top: 2px;
  left: 2px;
  z-index: -1;
  width: 0;
}
.c-cv-btn02--ver01 .c-ico-chevron {
  background: #fff;
}
.c-cv-btn02--ver01 .c-ico-chevron::before {
  background-color: #FF9509;
}
.c-cv-btn02--ver01:hover {
  color: #FF622E;
}
.c-cv-btn02--ver01:hover:after {
  width: calc(100% - 4px);
}
.c-cv-btn02--ver01:hover .c-ico-chevron {
  background: #FF9509;
}
.c-cv-btn02--ver01:hover .c-ico-chevron::before {
  background-color: #fff;
}
.c-cv-btn02--ver02 {
  color: #FF622E;
  padding: 4px;
  background: linear-gradient(to right, #FE5E31, #FF9607);
}
.c-cv-btn02--ver02:before {
  background: #fff;
  z-index: -1;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 23px;
}
.c-cv-btn02--ver02:after {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  width: 0;
  height: 100%;
  border-radius: 23px;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-cv-btn02--ver02 .c-ico-chevron {
  background: #FF9509;
}
.c-cv-btn02--ver02 .c-ico-chevron::before {
  background-color: #fff;
}
.c-cv-btn02--ver02:hover {
  color: #fff;
}
.c-cv-btn02--ver02:hover:after {
  width: 100%;
}
.c-cv-btn02--ver02:hover .c-ico-chevron {
  background: #fff;
}
.c-cv-btn02--ver02:hover .c-ico-chevron::before {
  background-color: #FF9509;
}
.c-cv-btn02 .c-ico-chevron {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
}
.c-cv-btn02:before, .c-cv-btn02:after {
  content: "";
  position: absolute;
  transition: 0.3s;
}

.c-cv-btn03 {
  width: 292px;
  max-width: 100%;
  margin-inline: auto;
  height: 52px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 62px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-cv-btn03 {
    width: 295px;
  }
}
.c-cv-btn03__txt {
  position: relative;
  z-index: 1;
}
.c-cv-btn03--ver01 {
  color: #fff;
}
.c-cv-btn03--ver01:before {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 62px;
}
.c-cv-btn03--ver01:after {
  background: #fff;
  height: calc(100% - 4px);
  border-radius: 62px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 0;
}
.c-cv-btn03--ver01 .c-ico-chevron {
  background: #fff;
}
.c-cv-btn03--ver01 .c-ico-chevron::before {
  background-color: #FF9509;
}
.c-cv-btn03--ver01:hover {
  color: #FF622E;
}
.c-cv-btn03--ver01:hover:after {
  width: calc(100% - 4px);
}
.c-cv-btn03--ver01:hover .c-ico-chevron {
  background: #FF9509;
}
.c-cv-btn03--ver01:hover .c-ico-chevron::before {
  background-color: #fff;
}
.c-cv-btn03--ver02 {
  color: #FF622E;
  background: linear-gradient(to right, #FE5E31, #FF9607);
}
.c-cv-btn03--ver02:before {
  background: #fff;
  z-index: -1;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 23px;
}
.c-cv-btn03--ver02:after {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  width: 0;
  height: 100%;
  border-radius: 23px;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-cv-btn03--ver02 .c-ico-chevron {
  background: #FF9509;
}
.c-cv-btn03--ver02 .c-ico-chevron::before {
  background-color: #fff;
}
.c-cv-btn03--ver02:hover {
  color: #fff;
}
.c-cv-btn03--ver02:hover:after {
  width: 100%;
}
.c-cv-btn03--ver02:hover .c-ico-chevron {
  background: #fff;
}
.c-cv-btn03--ver02:hover .c-ico-chevron::before {
  background-color: #FF9509;
}
.c-cv-btn03 .c-ico-chevron {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-cv-btn03 .c-ico-chevron {
    width: 22px;
    height: 22px;
    right: 15px;
  }
}
.c-cv-btn03:before, .c-cv-btn03:after {
  content: "";
  position: absolute;
  transition: 0.3s;
}

.c-cv-btn-icon {
  width: 444px;
  max-width: 100%;
  margin-inline: auto;
  height: 80px;
  font-size: 24px;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 40px;
  position: relative;
  z-index: 0;
  margin-top: 35px;
}
.c-cv-btn-icon__inner {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon__inner {
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon {
    width: 315px;
    height: 60px;
    border-radius: 30px;
    font-size: 18px;
  }
}
.c-cv-btn-icon__txt {
  position: relative;
  z-index: 1;
  padding-left: 165px;
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon__txt {
    padding-left: 0;
  }
}
.c-cv-btn-icon__imgbox {
  position: absolute;
  left: 30px;
  bottom: 15px;
  width: 100px;
  height: 100px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon__imgbox {
    width: 60px;
    height: 60px;
    left: 18px;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon__imgbox--apply {
    bottom: 7px;
  }
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon__imgbox--document .c-cv-btn-icon__img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.c-cv-btn-icon__img {
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 0;
}
.c-cv-btn-icon__img--on {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon__img--on {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon__img--off {
    opacity: 0;
  }
}
.c-cv-btn-icon:hover .c-cv-btn-icon__img--off {
  opacity: 0;
}
.c-cv-btn-icon:hover .c-cv-btn-icon__img--on {
  opacity: 1;
}
.c-cv-btn-icon--ver01 {
  color: #fff;
}
.c-cv-btn-icon--ver01 .c-cv-btn-icon__inner:before {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 62px;
}
.c-cv-btn-icon--ver01 .c-cv-btn-icon__inner:after {
  background: #fff;
  height: calc(100% - 4px);
  border-radius: 62px;
  top: 2px;
  left: 2px;
  z-index: -1;
  width: 0;
}
.c-cv-btn-icon--ver01 .c-ico-chevron {
  background: #fff;
}
.c-cv-btn-icon--ver01 .c-ico-chevron::before {
  background-color: #FF9509;
}
.c-cv-btn-icon--ver01:hover {
  color: #FF622E;
}
.c-cv-btn-icon--ver01:hover .c-cv-btn-icon__inner:after {
  width: calc(100% - 4px);
}
.c-cv-btn-icon--ver01:hover .c-ico-chevron {
  background: #FF9509;
}
.c-cv-btn-icon--ver01:hover .c-ico-chevron::before {
  background-color: #fff;
}
.c-cv-btn-icon--ver02 {
  color: #FF622E;
  background: linear-gradient(to right, #FE5E31, #FF9607);
}
.c-cv-btn-icon--ver02 .c-cv-btn-icon__inner:before {
  background: #fff;
  z-index: -1;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 40px;
}
.c-cv-btn-icon--ver02 .c-cv-btn-icon__inner:after {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  width: 0;
  height: 100%;
  border-radius: 40px;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-cv-btn-icon--ver02 .c-ico-chevron {
  background: #FF9509;
}
.c-cv-btn-icon--ver02 .c-ico-chevron::before {
  background-color: #fff;
}
.c-cv-btn-icon--ver02:hover {
  color: #fff;
}
.c-cv-btn-icon--ver02:hover .c-cv-btn-icon__inner:after {
  width: 100%;
}
.c-cv-btn-icon--ver02:hover .c-ico-chevron {
  background: #fff;
}
.c-cv-btn-icon--ver02:hover .c-ico-chevron::before {
  background-color: #FF9509;
}
.c-cv-btn-icon .c-ico-chevron {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-cv-btn-icon .c-ico-chevron {
    width: 22px;
    height: 22px;
    right: 15px;
  }
}
.c-cv-btn-icon__inner:before, .c-cv-btn-icon__inner:after {
  content: "";
  position: absolute;
  transition: 0.3s;
}

/* card */
.c-card01 {
  display: block;
  max-width: 100%;
  max-width: 382px;
  width: 100%;
  height: 160px;
  background-color: #fff;
  border: 2px solid #222;
  border-radius: 80px;
  position: relative;
  z-index: 0;
  transition: 0.3s;
  text-decoration: none;
  padding: 20px 30px;
  box-sizing: border-box;
  overflow: hidden;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-card01 {
    max-width: 345px;
    width: 100%;
    min-height: 110px;
    height: auto;
    padding: 15px;
    border-radius: 60px;
  }
}
.c-card01:before {
  content: "";
  width: 106px;
  height: 88px;
  background-image: url(../img/components/c_card01_chara.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -106px;
  bottom: -88px;
  z-index: -1;
  transition: 0.3s;
}
.c-card01:after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #222;
  transition: 0.3s;
}
.c-card01__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-card01__inner {
    gap: 15px;
  }
}
.c-card01__icon {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-card01__icon {
    width: 80px;
    height: 80px;
  }
}
.c-card01__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-card01__title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin: 0 0 14px;
  line-height: 1.6;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-card01__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.c-card01__more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 !important;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-card01__more {
    font-size: 14px;
  }
}
.c-card01__more .c-ico-chevron {
  width: 20px;
  height: 20px;
  background-color: #222;
  position: relative;
}
.c-card01__more .c-ico-chevron::before {
  width: 5px;
  height: 8px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-card01__more .c-ico-chevron {
    width: 18px;
    height: 18px;
  }
}
.c-card01__chara {
  width: 106px;
  height: 88px;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-card01__chara {
    width: 60px;
    height: 78px;
  }
}
.c-card01__chara-img {
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  top: 50px;
  right: 16px;
  width: 111px;
}
@media screen and (max-width: 767px) {
  .c-card01__chara-img {
    width: 90px;
    right: 4px;
    top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .c-card01:hover:after {
    width: 100%;
  }
  .c-card01:hover:before {
    bottom: 0;
    right: 0;
  }
  .c-card01:hover .c-card01__title,
  .c-card01:hover .c-card01__more {
    color: #fff;
  }
  .c-card01:hover .c-ico-chevron {
    background-color: #fff;
  }
  .c-card01:hover .c-ico-chevron::before {
    background-color: #222;
  }
  .c-card01:hover .c-card01__chara-img {
    top: 0;
    right: 2px;
    transform: rotate(-10deg);
  }
}

.c-card02 {
  max-width: 400px;
  position: relative;
  z-index: 0;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .c-card02 {
    padding-top: 50px;
  }
}
.c-card02:before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #fff;
  z-index: -1;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-card02:before {
    width: 100px;
    height: 100px;
    top: 0;
    box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.08);
  }
}
.c-card02:after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #fff;
  z-index: 0;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-card02:after {
    width: 100px;
    height: 100px;
    top: 0;
  }
}
.c-card02__icon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-card02__icon {
    width: 50px;
    top: 15px;
  }
}
.c-card02__inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 0px 20px 0 rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-card02__inner {
    padding: 25px 15px 15px;
    box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.08);
  }
}
.c-card02__badge {
  width: fit-content;
  padding: 1px 10px;
  border: 1px solid #222;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 10px;
  color: #222;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-card02__badge {
    font-size: 14px;
    padding: 3px 10px;
  }
}
.c-card02__title {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 600;
  color: #1A9BF3;
  margin: 0 0 20px !important;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-card02__title {
    font-size: 20px;
    margin: 0 0 10px !important;
  }
}
.c-card02__list {
  width: 100%;
  margin-bottom: 20px;
  padding-inline-start: 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .c-card02__list {
    margin: 0 0 15px;
  }
}
.c-card02:has(.c-note-1) .c-card02__list {
  margin-bottom: 10px;
}
.c-card02 .c-note-1 {
  margin: 0 0 34px;
}
@media screen and (max-width: 767px) {
  .c-card02 .c-note-1 {
    margin: 0 0 20px;
  }
}
.c-card02 .c-note-1__item {
  font-size: 10px;
}
.c-card02__item {
  display: flex;
  font-size: 15px;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 6em 1fr;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .c-card02__item {
    font-size: 14px;
  }
}
.c-card02__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-card02__item--sp-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .c-card02__item--sp-wrap .c-card02__label {
    width: fit-content;
  }
}
.c-card02__label {
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 6em;
  line-height: 1.6;
}
.c-card02__label:after {
  content: "：";
}
.c-card02__value {
  line-height: 1.6;
}
.c-card02__total {
  width: 100%;
  background: #FFF8D8;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.6;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .c-card02__total {
    padding: 10px;
    gap: 10px;
    border-radius: 6px;
  }
}
.c-card02__total-badge {
  writing-mode: vertical-rl;
  border: 1px solid #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  background: transparent;
  width: 30px;
  height: 50px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-card02__total-badge {
    font-size: 14px;
    width: 26px;
    height: 52px;
  }
}
.c-card02__total-price {
  font-size: 32px;
  font-weight: 600;
  color: #FF622E;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .c-card02__total-price {
    font-size: 28px;
  }
}
.c-card02__total-price span {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-card02__total-price span {
    font-size: 16px;
  }
}

/* box */
.c-box-01 {
  padding: 55px 15px;
  position: relative;
  z-index: 0;
  background: #FFF8D8;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .c-box-01 {
    padding: 45px 35px;
    margin-inline: -15px;
  }
}
.c-box-01:before, .c-box-01:after {
  content: "";
  position: absolute;
}
.c-box-01:before {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  left: 15px;
  top: 15px;
  border-radius: 15px;
  border: 2px dashed #FF622E;
  pointer-events: none;
}
.c-box-01:after {
  bottom: -16px;
  right: 60px;
  background: url(../img/components/chara01.svg) no-repeat center center/contain;
  width: 58px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .c-box-01:after {
    right: 30px;
    bottom: -12px;
    width: 43px;
    height: 60px;
  }
}
.c-box-01 p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
  margin: 0 !important;
}
.c-box-01__text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
  color: #222222;
}
.c-box-01__text .em {
  color: #1A9BF3;
}
.c-box-01__text .em02 {
  color: #FF622E;
}

/* title */
.c-ttl-1 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin: 0 0 50px;
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 0;
  padding: 0 0 28px;
}
@media screen and (max-width: 767px) {
  .c-ttl-1 {
    padding: 0 0 24px;
    margin: 0 0 40px;
  }
}
.c-ttl-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 56px;
  height: 8px;
  background-image: radial-gradient(circle 4px, #1A9BF3 100%, transparent 100%), radial-gradient(circle 4px, #1A9BF3 100%, transparent 100%), radial-gradient(circle 4px, #1A9BF3 100%, transparent 100%);
  background-size: 8px 8px;
  background-position: 0 0, 24px 0, 48px 0;
  background-repeat: no-repeat;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-ttl-1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.c-ttl-1__logo {
  display: inline-block;
  margin: 0 16px 0 0;
  width: 266px;
}
@media screen and (max-width: 767px) {
  .c-ttl-1__logo {
    width: 230px;
    margin: 0 8px 0 0;
  }
}
.c-ttl-1--left {
  text-align: left;
}
.c-ttl-1--left::before {
  left: 0;
  transform: none;
}
@media screen and (min-width: 768px) {
  .c-ttl-1--pc-left {
    text-align: left;
  }
  .c-ttl-1--pc-left::before {
    left: 0;
    transform: none;
  }
}

.c-ttl-2 {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 600;
  color: #222;
  width: fit-content;
  margin: 0 auto 30px;
  text-align: center;
  padding: 0 0 23px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-ttl-2 {
    font-size: 20px;
    padding: 0 0 18px;
    margin: 0 auto 20px;
  }
}
.c-ttl-2:after {
  content: "";
  width: 480px;
  height: 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/components/c_ttl_2_arrow.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-ttl-2:after {
    width: 100%;
    height: 12px;
    background: url(../img/components/sp/c_ttl_2_arrow.svg) no-repeat center center/contain;
  }
}
.c-ttl-2 .em {
  color: #1A9BF3;
  font-size: 36px;
  position: relative;
  z-index: 0;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-ttl-2 .em {
    font-size: 26px;
  }
}
.c-ttl-2 .circle {
  position: relative;
  z-index: 0;
}
.c-ttl-2 .circle:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: -10px;
  background: #1A9BF3;
}

/* link */
.c-link {
  font-size: 16px;
  line-height: 1.6;
  color: #1A9BF3;
  text-decoration: underline;
  display: block;
  width: fit-content;
}
.c-link:hover {
  text-decoration: none;
}
.c-link:after {
  content: "";
  aspect-ratio: 1/1;
  width: 16px;
  background: url(../img/components/c_link_ico.svg) no-repeat center center/contain;
  display: inline-block;
  margin: 0 0 0 10px;
  transform: translateY(3px);
}

/* text */
.c-marker {
  background: radial-gradient(circle at calc(100% - 4px) calc(100% - 4px), #FFE356 4px, transparent 4px), radial-gradient(circle at 4px calc(100% - 4px), #FFE356 4px, transparent 4px), linear-gradient(to bottom, #fff calc(100% - 8px), transparent calc(100% - 8px)), linear-gradient(to right, transparent 4px, #FFE356 4px, #FFE356 calc(100% - 4px), transparent calc(100% - 4px));
}

/* note */
.c-note-1 {
  list-style-type: none;
  padding-inline-start: 0;
  padding: 0;
  margin: 10px 0 0;
}
.c-note-1__item {
  font-size: 12px;
  line-height: 1.6;
  color: #222;
  display: flex;
}
.c-note-1__item:before {
  content: "※";
}

/* parts */
.c-functions-panels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(287px, 1fr));
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .c-functions-panels {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.c-functions-panels__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 20px;
  position: relative;
  z-index: 0;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .c-functions-panels__item {
    padding: 20px 15px;
  }
}
.c-functions-panels__item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background: #fff;
  border-radius: 10px;
}
.c-functions-panels__ttl {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-functions-panels__ttl {
    font-size: 16px;
  }
}
.c-functions-panels__img {
  text-align: center;
}

.c-functions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .c-functions {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.c-functions__item {
  background: #fff;
  border-radius: 10px;
  padding: 40px 50px;
}
@media screen and (max-width: 767px) {
  .c-functions__item {
    padding: 20px;
    border-radius: 10px;
  }
}
.c-functions__item .c-btn02 {
  margin: auto auto 0;
}
.c-functions__item--full {
  grid-column: span 6;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-functions__item--full {
    grid-column: span 1;
  }
}
.c-functions__item--full .c-btn02 {
  margin: 25px auto 0;
}
@media screen and (max-width: 767px) {
  .c-functions__item--full .c-btn02 {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .c-functions__item--full {
    display: block;
  }
}
.c-functions__item--half {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-functions__item--half {
    grid-column: span 1;
  }
}
.c-functions__item--third {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-functions__item--third {
    grid-column: span 1;
  }
}
.c-functions__item--panel {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
}
.c-functions__item-ttl {
  font-size: 24px;
  font-weight: 600;
  color: #1A9BF3;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
  position: relative;
  padding-bottom: 15px;
}
.c-functions__item-ttl:before {
  content: "";
  width: 6px;
  height: 32px;
  background: #1A9BF3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 2px;
  display: none;
}
@media screen and (max-width: 767px) {
  .c-functions__item-ttl:before {
    height: 30px;
    display: block;
  }
}
.c-functions__item-ttl:after {
  content: "";
  width: 30px;
  height: 4px;
  background: #1A9BF3;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .c-functions__item-ttl:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-functions__item-ttl {
    font-size: 24px;
    text-align: left;
    padding-left: 18px;
    padding-bottom: 0;
    color: #1A9BF3;
  }
}
.c-functions__item--full .c-functions__item-ttl {
  text-align: left;
  padding-left: 21px;
  padding-bottom: 0;
  color: #1A9BF3;
  position: relative;
  z-index: 0;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .c-functions__item--full .c-functions__item-ttl {
    font-size: 24px;
    padding-left: 18px;
  }
}
.c-functions__item--full .c-functions__item-ttl:before {
  content: "";
  width: 6px;
  height: 32px;
  background: #1A9BF3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 2px;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-functions__item--full .c-functions__item-ttl:before {
    height: 30px;
  }
}
.c-functions__item--full .c-functions__item-ttl:after {
  display: none;
}
.c-functions__item--full .c-functions__item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .c-functions__item--full .c-functions__item-inner {
    gap: 15px;
    flex-direction: column;
  }
}
.c-functions__item-text {
  font-size: 16px;
  line-height: 1.6;
}
.c-functions__item:has(.c-btn02) .c-functions__item-text {
  margin: 0 0 20px;
}
.c-functions__item-img {
  margin: 0 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-functions__item-img {
    margin: 0 0 15px;
  }
}
.c-functions__item-img img {
  max-width: 100%;
  height: auto;
}
.c-functions__item--full .c-functions__item-img {
  flex: 0 0 500px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-functions__item--full .c-functions__item-img {
    margin: 20px 0;
    width: 100%;
  }
}
.c-functions__item-content {
  flex: 1;
}
.c-functions__item-box {
  background: #D7F2FF;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-functions__item-box {
    margin-bottom: 20px;
  }
}
.c-functions__item-box-ttl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}
.c-functions__item-box-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-functions__item-box-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-functions__item-box-list li:before {
  content: "";
  background: #1A9BF3;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-functions__item-box-list {
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .c-functions__item--chara {
    position: relative;
    z-index: 0;
  }
  .c-functions__item--chara:before {
    content: "";
    position: absolute;
  }
}
@media screen and (min-width: 768px) {
  .c-functions__item--right-chara01:before {
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 58px;
    height: 80px;
    background: url(../img/components/chara01.svg) no-repeat center center/contain;
    right: -52px;
  }
}
@media screen and (min-width: 768px) {
  .c-functions__item--left-chara01:before {
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    width: 58px;
    height: 80px;
    background: url(../img/components/chara01.svg) no-repeat center center/contain;
    left: -52px;
  }
}
@media screen and (min-width: 768px) {
  .c-functions__item--right-chara02:before {
    width: 60px;
    height: 163px;
    background: url(../img/components/chara02.svg) no-repeat center center/contain;
    bottom: 0;
    right: -52px;
  }
}

.c-customers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 34px;
}
.c-customers__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 20px;
  color: #222222;
}
.c-customers__item * {
  transition: 0.3s;
}
.c-customers__item:hover .c-customers__img {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .c-customers__item:hover .c-btn02:before {
    width: 100%;
  }
  .c-customers__item:hover .c-btn02 {
    color: #fff;
  }
  .c-customers__item:hover .c-btn02 .c-ico-chevron {
    background: #fff;
  }
  .c-customers__item:hover .c-btn02 .c-ico-chevron::before {
    background-color: #222;
  }
}
.c-customers__img {
  margin: 0 -20px;
  aspect-ratio: 370/234;
  overflow: hidden;
  border-radius: 10px;
}
.c-customers__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-customers__body {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  margin-top: -50px;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
  flex: 1 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-customers__body {
    margin-top: -35px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
  }
}
.c-customers__ttl {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px;
  line-height: 1.6;
}
.c-customers__name {
  font-size: 14px;
  line-height: 1.6;
  color: #666A6C;
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #D1D5D7;
}
.c-customers__text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .c-customers__text {
    margin: 0 0 15px;
  }
}
.c-customers__text p {
  margin: 0 !important;
}
.c-customers .c-btn02 {
  margin-top: auto;
}

.c-price-cards {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  padding-top: 80px;
}
@media screen and (max-width: 1080px) {
  .c-price-cards {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-price-cards {
    flex-direction: column;
    gap: 30px;
  }
}

.c-price-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  padding: 15px 10px 10px;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
  flex: 1 1;
}
@media screen and (max-width: 1080px) {
  .c-price-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}
.c-price-card--light {
  background: linear-gradient(to right, #0694F6, #2BBBFF);
}
.c-price-card--light:before {
  width: 110px;
  height: 102px;
  background: url(../img/components/price-chara01.svg) no-repeat center center/contain;
}
.c-price-card--light .c-price-card__btn {
  margin-top: 165px;
}
@media screen and (max-width: 767px) {
  .c-price-card--light .c-price-card__btn {
    margin-top: 20px;
  }
}
.c-price-card--standard {
  background: linear-gradient(to right, #FE5E31, #FF9607);
  flex: 0 1 414px;
}
.c-price-card--standard .c-price-card__price-val {
  font-size: 20px;
}
@media screen and (max-width: 1080px) {
  .c-price-card--standard .c-price-card__price-val {
    font-size: 18px;
  }
}
.c-price-card--standard .c-price-card__price-val span {
  font-size: 38px;
}
@media screen and (max-width: 1080px) {
  .c-price-card--standard .c-price-card__price-val span {
    font-size: 32px;
  }
}
@media screen and (max-width: 1080px) {
  .c-price-card--standard {
    order: -1;
  }
}
.c-price-card--standard .c-price-card__head {
  font-size: 32px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1080px) {
  .c-price-card--standard .c-price-card__head {
    font-size: 28px;
  }
}
.c-price-card--standard .c-price-card__price {
  padding-bottom: 13px;
}
@media screen and (max-width: 1080px) {
  .c-price-card--standard .c-price-card__price {
    padding-bottom: 15px;
  }
}
.c-price-card--standard .c-price-card__body {
  padding: 25px 20px 30px;
}
@media screen and (max-width: 1080px) {
  .c-price-card--standard .c-price-card__body {
    padding: 15px;
  }
}
.c-price-card--pro {
  background: linear-gradient(to right, #0694F6, #2BBBFF);
}
.c-price-card--pro .c-price-card__btn {
  margin-top: 75px;
}
@media screen and (max-width: 1080px) {
  .c-price-card--pro .c-price-card__btn {
    margin-top: 20px;
  }
}
.c-price-card--pro:before {
  width: 110px;
  height: 54px;
  background: url(../img/components/price-chara02.svg) no-repeat center center/contain;
}
.c-price-card--light, .c-price-card--pro {
  position: relative;
  z-index: 0;
}
.c-price-card--light:before, .c-price-card--pro:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 90px;
}
@media screen and (max-width: 1080px) {
  .c-price-card--light:before, .c-price-card--pro:before {
    display: none;
  }
}
.c-price-card--light .c-price-card__price-val, .c-price-card--pro .c-price-card__price-val {
  font-size: 16px;
}
.c-price-card--light .c-price-card__price-val span, .c-price-card--pro .c-price-card__price-val span {
  font-size: 32px;
}
.c-price-card__head {
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 26px;
  margin: 0 0 15px;
}
@media screen and (max-width: 1080px) {
  .c-price-card__head {
    font-size: 24px;
  }
}
.c-price-card__head span {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: normal;
}
.c-price-card__body {
  padding: 25px 20px 30px;
  background: #fff;
  border-radius: 15px;
  min-height: 586px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1080px) {
  .c-price-card__body {
    min-height: auto;
    padding: 15px;
  }
}
.c-price-card__price {
  border-bottom: 1px solid #D1D5D7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.c-price-card__price-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1080px) {
  .c-price-card__price-row {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .c-price-card__price-row {
    justify-content: flex-start;
  }
}
.c-price-card__price-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #707070;
  padding: 2px 10px;
  font-size: 16px;
  vertical-align: middle;
  writing-mode: vertical-rl;
  width: 30px;
  height: 58px;
}
.c-price-card__price-val {
  display: inline-block;
  font-weight: 600;
  color: #FF622E;
  vertical-align: middle;
}
.c-price-card__spec {
  margin-bottom: 20px;
}
.c-price-card__spec dl {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}
.c-price-card__spec dl dt {
  font-weight: 600;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: calc(30px + 7em);
}
.c-price-card__spec dl dt span:before {
  content: "";
  aspect-ratio: 1/1;
  width: 20px;
  display: inline-block;
  margin-right: 10px;
}
.c-price-card__spec dl dt span.c-icon-user::before {
  background: url(../img/components/ico-user.svg) no-repeat center center/contain;
}
.c-price-card__spec dl dt span.c-icon-apps::before {
  background: url(../img/components/ico-app.svg) no-repeat center center/contain;
}
.c-price-card__spec dl dd {
  flex: 1;
}
.c-price-card__spec dl dd:before {
  content: "：";
  font-weight: 600;
}
.c-price-card__detail {
  border: 1px solid #D1D5D7;
  border-radius: 8px;
  padding: 23px 20px 15px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1080px) {
  .c-price-card__detail {
    padding: 25px 15px 15px;
  }
}
.c-price-card__detail-ttl {
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  position: absolute;
  z-index: 1;
  background: #fff;
  padding: 0 10px;
  left: 50%;
  top: -1em;
  transform: translateX(-50%);
  white-space: nowrap;
}
.c-price-card__detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.c-price-card__detail-list li {
  padding-left: 14px;
  position: relative;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
.c-price-card__detail-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  aspect-ratio: 1/1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #222;
}
.c-price-card__message {
  text-align: center;
  font-weight: 600;
  margin: 20px auto 15px;
  font-size: 18px;
  line-height: 1.6;
  width: fit-content;
  position: relative;
  z-index: 0;
  padding: 0 40px;
}
@media screen and (max-width: 1080px) {
  .c-price-card__message {
    padding: 0 31px;
  }
}
.c-price-card__message span {
  color: #FF622E;
}
.c-price-card__message:before, .c-price-card__message:after {
  content: "";
  position: absolute;
  bottom: 4px;
  background: #FFD117;
  mask: url(../img/components/ico-flare.svg) no-repeat center center/contain;
  aspect-ratio: 53/44;
  width: 28px;
}
@media screen and (max-width: 1080px) {
  .c-price-card__message:before, .c-price-card__message:after {
    bottom: 4px;
    width: 28px;
  }
}
.c-price-card__message:before {
  left: 0;
}
.c-price-card__message:after {
  right: 0;
  transform: scaleX(-1);
}
.c-price-card__btn {
  text-align: center;
  margin-top: auto;
}
.c-price-card__btn .c-cv-btn01 {
  width: 100%;
  height: 50px;
  font-size: 16px;
}
.c-price-card__recommend-badge {
  position: absolute;
  display: none;
}

.c-price-card--recommend {
  overflow: visible;
}
.c-price-card--recommend .c-price-card__recommend-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  height: 80px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.c-price-card--recommend .c-price-card__recommend-badge:before {
  content: "";
  width: 68px;
  height: 80px;
  background: url(../img/components/chara03.svg) no-repeat center center/contain;
}
.c-price-card--recommend .c-price-card__recommend-badge span {
  padding: 0 0 0 10px;
  position: relative;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  width: 161px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  mask: url(../img/components/ico-baloon.svg) no-repeat center center/contain;
  background: linear-gradient(to right, #FE5E31, #FF9607);
}

.c-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px 34px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-columns {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.c-columns__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
}
.c-columns__item:hover .c-columns__item-img {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .c-columns__item:hover .c-btn02:before {
    width: 100%;
  }
  .c-columns__item:hover .c-btn02 {
    color: #fff;
  }
  .c-columns__item:hover .c-btn02 .c-ico-chevron {
    background: #fff;
  }
  .c-columns__item:hover .c-btn02 .c-ico-chevron::before {
    background-color: #222;
  }
}
.c-columns__item-imgbox {
  aspect-ratio: 370/234;
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.c-columns__item-img {
  transition: 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-columns__item-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-columns__item-body {
    padding: 20px;
  }
}
.c-columns__item-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 10px;
}
.c-columns__item-cat {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  background: #1BB4D3;
  border-radius: 4px;
  padding: 0 10px;
}
.c-columns__item-time {
  font-size: 14px;
  line-height: 1.6;
  color: #666A6C;
}
.c-columns__item-ttl {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0 0 20px;
  color: #222;
}
.c-columns__item-btn {
  margin-top: auto;
}

/* cta */
.c-cta {
  margin: 120px auto 0;
  width: 1178px;
  max-width: 100%;
  padding: 40px 10px 10px;
  background: linear-gradient(to right, #FE5E31, #FF9607);
  border-radius: 20px;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .c-cta {
    margin: 70px auto 0;
    padding: 40px 15px;
  }
}
.c-cta__heading {
  margin: 0 0 30px;
  font-weight: 600;
  color: #fff;
}
.c-cta__heading-ttl {
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: -5px;
}
@media screen and (max-width: 767px) {
  .c-cta__heading-ttl {
    font-size: 20px;
  }
}
.c-cta__heading-read {
  font-size: 44px;
  line-height: 1.6;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  .c-cta__heading-read {
    padding: 0 35px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-cta__heading-read {
    font-size: 28px;
  }
}
.c-cta__heading-read .underline {
  position: relative;
  z-index: 0;
}
.c-cta__heading-read .underline:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: radial-gradient(circle, #FFE356 50%, transparent 50%);
  background-size: 9px 5px;
  background-repeat: repeat-x;
  background-position: left bottom;
  bottom: -15px;
}
@media screen and (max-width: 767px) {
  .c-cta__heading-read .sp-underline {
    position: relative;
    z-index: 0;
  }
  .c-cta__heading-read .sp-underline:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: radial-gradient(circle, #FFE356 50%, transparent 50%);
    background-size: 9px 5px;
    background-repeat: repeat-x;
    background-position: left bottom;
    bottom: -15px;
  }
}
.c-cta__heading-read .min {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .c-cta__heading-read .min {
    font-size: 22px;
  }
}
.c-cta__heading-read .large {
  font-size: 52px;
}
@media screen and (max-width: 767px) {
  .c-cta__heading-read .large {
    font-size: 34px;
  }
}
.c-cta__heading-read:before, .c-cta__heading-read:after {
  content: "";
  position: absolute;
  bottom: 22px;
  background: #FFD117;
  mask: url(../img/components/ico-flare.svg) no-repeat center center/contain;
  aspect-ratio: 53/44;
  width: 53px;
}
@media screen and (max-width: 767px) {
  .c-cta__heading-read:before, .c-cta__heading-read:after {
    bottom: 9px;
    width: 30px;
  }
}
.c-cta__heading-read:before {
  left: 0;
}
.c-cta__heading-read:after {
  right: 0;
  transform: scaleX(-1);
}
.c-cta__body {
  background: #fff;
  border-radius: 15px;
  padding: 50px 15px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-cta__body {
    padding: 30px 15px;
  }
}
.c-cta__body:before, .c-cta__body:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 50px;
  width: 80px;
  height: 102px;
  background: url(../img/components/chara04.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-cta__body:before, .c-cta__body:after {
    bottom: -40px;
    width: 47px;
    height: 60px;
  }
}
.c-cta__body:before {
  left: 25px;
}
@media screen and (max-width: 767px) {
  .c-cta__body:before {
    left: 5px;
  }
}
.c-cta__body:after {
  right: 20px;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .c-cta__body:after {
    right: 5px;
  }
}
.c-cta__body-txt {
  font-size: 26px;
  text-align: center;
  font-weight: 600;
  color: #FF622E;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .c-cta__body-txt {
    font-size: 22px;
    margin: 0 0 20px;
  }
}
.c-cta__body-btnbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-cta__body-btnbox {
    flex-direction: column;
    gap: 15px;
  }
}
.c-cta__body-btn {
  margin: 0;
}

/* faq */
.c-faq {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-faq {
    gap: 15px;
  }
}
.c-faq__item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .c-faq__item {
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    padding: 0 20px;
  }
}
.c-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 25px 0 30px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-faq__trigger {
    padding: 20px 0;
    align-items: flex-start;
  }
}
.c-faq__trigger:before {
  content: "";
  width: 77px;
  height: 65px;
  background: url(../img/components/faq-chara.svg) no-repeat center center/contain;
  margin-right: 6px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-faq__trigger:before {
    display: none;
  }
}
.c-faq__icon-q {
  width: 60px;
  height: 60px;
  background-color: #2EA7E0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  margin-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-faq__icon-q {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-right: 15px;
  }
}
.c-faq__question-txt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #222;
  flex-grow: 1;
  padding-right: 62px;
}
@media screen and (max-width: 767px) {
  .c-faq__question-txt {
    font-size: 16px;
    padding-right: 32px;
  }
}
.c-faq__toggle {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-faq__toggle {
    top: 25px;
    transform: translateY(0);
    right: 0;
    width: 20px;
    height: 20px;
  }
}
.c-faq__toggle:before, .c-faq__toggle:after {
  content: "";
  position: absolute;
  background-color: #1A9BF3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 4px;
}
.c-faq__toggle:before {
  width: 100%;
  height: 4px;
}
@media screen and (max-width: 767px) {
  .c-faq__toggle:before {
    width: 100%;
    height: 2px;
  }
}
.c-faq__toggle:after {
  width: 4px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-faq__toggle:after {
    width: 2px;
    height: 100%;
  }
}
.c-faq__trigger[aria-expanded=true] .c-faq__toggle:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-faq__answer {
  border-top: 1px solid #E0E6E8;
}
.c-faq__answer[hidden] {
  display: none;
}
.c-faq__answer-inner {
  padding: 30px 40px 40px 83px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-faq__answer-inner {
    padding: 20px 0;
  }
}
.c-faq__icon-a {
  width: 60px;
  height: 60px;
  border: 2px solid #2EA7E0;
  color: #2EA7E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  margin-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-faq__icon-a {
    display: none;
  }
}
.c-faq__answer-txt {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .c-faq__answer-txt {
    line-height: 1.6;
  }
}

/* その他の機能 */
.c-other-function {
  padding: 120px 15px 0;
}
@media screen and (max-width: 767px) {
  .c-other-function {
    padding: 80px 15px 0;
  }
}
.c-other-function .c-card01 {
  margin: 0;
}
.c-other-function__inner {
  max-width: 1178px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-other-function__inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* scrollhint */
.scroll-hint-icon {
  width: 176px;
  height: 176px;
  position: absolute;
  top: 245px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border-radius: 20px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scroll-hint-text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 53px;
  height: 70px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/components/ico_scroll_hint.svg);
}

.scroll-hint-icon:after {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }
  .u-pc-i {
    display: inline;
  }
  .u-pc-ib {
    display: inline-block;
  }
  .u-pc-f {
    display: flex;
  }
  .u-pc-if {
    display: inline-flex;
  }
  .u-sp {
    display: none;
  }
  .u-sp-i, .u-sp-ib, .u-sp-f, .u-sp-if {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
  .u-pc-i, .u-pc-ib, .u-pc-f, .u-pc-if {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .u-sp-i {
    display: inline;
  }
  .u-sp-ib {
    display: inline-block;
  }
  .u-sp-f {
    display: flex;
  }
  .u-sp-if {
    display: inline-flex;
  }
}

/*# sourceMappingURL=components.css.map */
