@charset "UTF-8";
.adlp-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 100;
  box-shadow: 0 min(calc(4 / 1080 * 100vw), 4px) min(calc(8 / 1080 * 100vw), 8px) 0 rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .adlp-header {
    box-shadow: 0 calc(4 / 750 * 100vw) calc(4 / 750 * 100vw) 0 rgba(0, 0, 0, 0.08);
  }
}
.adlp-header__inner {
  width: min(calc(993 / 1080 * 100vw), 993px);
  padding: min(calc(20 / 1080 * 100vw), 20px) 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .adlp-header__inner {
    width: 100%;
    padding: calc(20 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.adlp-header__logo {
  width: min(calc(172 / 1080 * 100vw), 172px);
}
@media screen and (max-width: 767px) {
  .adlp-header__logo {
    width: calc(145 / 750 * 100vw);
  }
}
.adlp-header__btn-wrapper {
  display: flex;
  gap: min(calc(21 / 1080 * 100vw), 21px);
}
@media screen and (max-width: 767px) {
  .adlp-header__btn-wrapper {
    gap: calc(16 / 750 * 100vw);
  }
}
.adlp-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(200 / 1080 * 100vw), 200px);
  height: min(calc(38 / 1080 * 100vw), 38px);
  border-radius: min(calc(40 / 1080 * 100vw), 40px);
  box-shadow: min(calc(2 / 1080 * 100vw), 2px) min(calc(2 / 1080 * 100vw), 2px) min(calc(6 / 1080 * 100vw), 6px) 0 rgba(0, 0, 0, 0.25);
  position: relative;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .adlp-header__btn {
    width: calc(250 / 750 * 100vw);
    height: calc(60 / 750 * 100vw);
    border-radius: calc(40 / 750 * 100vw);
    box-shadow: calc(2 / 750 * 100vw) calc(2 / 750 * 100vw) calc(6 / 750 * 100vw) 0 rgba(0, 0, 0, 0.25);
  }
}
@media screen and (min-width: 768px) {
  .adlp-header__btn:hover {
    opacity: 0.8;
  }
}
.adlp-header__btn.--btn01 {
  background: #fc8b28;
}
@media screen and (max-width: 767px) {
  .adlp-header__btn.--btn01 {
    order: 2;
  }
}
.adlp-header__btn.--btn02 {
  background: #14b4b4;
}
@media screen and (max-width: 767px) {
  .adlp-header__btn.--btn02 {
    order: 1;
  }
}
.adlp-header__btn-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(30 / 1080 * 100vw), 30px);
  height: min(calc(30 / 1080 * 100vw), 30px);
  border-radius: 50%;
  font-size: min(calc(11 / 1080 * 100vw), 11px);
  font-weight: 500;
  letter-spacing: 0.04em;
  position: absolute;
  left: min(calc(5 / 1080 * 100vw), 5px);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .adlp-header__btn-badge {
    width: calc(46 / 750 * 100vw);
    height: calc(46 / 750 * 100vw);
    font-size: calc(18 / 750 * 100vw);
    left: calc(8 / 750 * 100vw);
  }
}
.adlp-header__btn-text {
  color: #fff;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-left: min(calc(15 / 1080 * 100vw), 15px);
}
@media screen and (max-width: 767px) {
  .adlp-header__btn-text {
    font-size: calc(20 / 750 * 100vw);
    padding-left: calc(20 / 750 * 100vw);
  }
}

.adlp-footer {
  background-color: #E9F1F1;
}
.adlp-footer__inner {
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
  padding: min(calc(62 / 1080 * 100vw), 62px) 0 min(calc(54 / 1080 * 100vw), 54px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__inner {
    width: 100%;
    padding: calc(72 / 750 * 100vw) calc(56 / 750 * 100vw) calc(50 / 750 * 100vw);
  }
}
.adlp-footer__main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: min(calc(133 / 1080 * 100vw), 133px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__main {
    flex-direction: column;
    align-items: center;
    gap: calc(55 / 750 * 100vw);
  }
}
.adlp-footer__logo {
  width: min(calc(234 / 1080 * 100vw), 234px);
  margin-top: min(calc(77 / 1080 * 100vw), 77px);
  margin-left: min(calc(25 / 1080 * 100vw), 25px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__logo {
    width: calc(300 / 750 * 100vw);
    margin: 0 auto;
  }
}
.adlp-footer__logo img {
  width: 100%;
  height: auto;
}
.adlp-footer__info {
  display: flex;
  flex-direction: column;
  gap: min(calc(10 / 1080 * 100vw), 10px);
  width: min(calc(546 / 1080 * 100vw), 546px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__info {
    width: 100%;
    gap: calc(4 / 750 * 100vw);
  }
}
.adlp-footer__info-item {
  display: flex;
  align-items: flex-start;
  gap: min(calc(50 / 1080 * 100vw), 50px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__info-item {
    gap: calc(30 / 750 * 100vw);
  }
}
.adlp-footer__info-label {
  flex-shrink: 0;
  width: min(calc(90 / 1080 * 100vw), 90px);
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .adlp-footer__info-label {
    width: calc(118 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}
.adlp-footer__info-value {
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .adlp-footer__info-value {
    font-size: calc(20 / 750 * 100vw);
  }
}
.adlp-footer__copyright {
  margin-top: min(calc(54 / 1080 * 100vw), 54px);
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 767px) {
  .adlp-footer__copyright {
    margin-top: calc(57 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

.adlp-accordion {
  background: #fff;
}
.adlp-accordion__wrapper {
  display: flex;
  flex-direction: column;
  gap: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__wrapper {
    gap: calc(30 / 750 * 100vw);
  }
}
.adlp-accordion__header {
  position: relative;
  cursor: pointer;
}
.adlp-accordion__header__inner {
  display: flex;
  align-items: center;
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(80 / 1080 * 100vw), 80px) min(calc(20 / 1080 * 100vw), 20px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header__inner {
    padding: calc(40 / 750 * 100vw) calc(112 / 750 * 100vw) calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__header__inner .lead {
  line-height: 1;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  margin-right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header__inner .lead {
    font-size: calc(48 / 750 * 100vw);
    margin-right: calc(20 / 750 * 100vw);
  }
}
.adlp-accordion__header::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(12 / 1080 * 100vw), 12px);
  right: min(calc(45 / 1080 * 100vw), 45px);
  transition: all 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 11.5L0.47372 0.25L19.5263 0.250002L10 11.5Z' fill='%23012F83'/%3E%3C/svg%3E%0A");
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header::after {
    width: calc(28 / 750 * 100vw);
    height: calc(17 / 750 * 100vw);
    right: calc(35 / 750 * 100vw);
  }
}
.adlp-accordion__header.--open::after {
  transform: translateY(-50%) rotate(180deg);
}
.adlp-accordion__header.--open::before {
  opacity: 0;
}
.adlp-accordion__header.--img::after {
  display: none;
}
.adlp-accordion__header.--img > span:last-child {
  display: none;
}
.adlp-accordion__header.--img.--open > span:first-child {
  display: none;
}
.adlp-accordion__header.--img.--open > span:last-child {
  display: block;
}
.adlp-accordion__header.--plus::before {
  content: "";
  display: block;
  background-image: none;
  background: #012F83;
  position: absolute;
  height: min(calc(20 / 1080 * 100vw), 20px);
  width: min(calc(2 / 1080 * 100vw), 2px);
  right: min(calc(49 / 1080 * 100vw), 49px);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header.--plus::before {
    height: calc(20 / 750 * 100vw);
    width: calc(2 / 750 * 100vw);
    right: calc(49 / 750 * 100vw);
  }
}
.adlp-accordion__header.--plus::after {
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(2 / 1080 * 100vw), 2px);
  right: min(calc(40 / 1080 * 100vw), 40px);
  background-image: none;
  background: #012F83;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header.--plus::after {
    width: calc(20 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
    right: calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__body {
  display: none;
}
.adlp-accordion__body__inner {
  display: flex;
  align-items: flex-start;
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__body__inner {
    padding: 0 calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__body__inner .lead {
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  margin-right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__body__inner .lead {
    margin-right: calc(20 / 750 * 100vw);
  }
}
.js-toggle {
  cursor: pointer;
}
.js-toggle + * {
  display: none;
}

.adlp-card {
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
  padding: min(calc(20 / 1080 * 100vw), 20px);
  gap: min(calc(20 / 1080 * 100vw), 20px);
}
.adlp-card__wrapper {
  display: flex;
  justify-content: center;
  gap: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .adlp-card {
    max-width: min(calc(350 / 1080 * 100vw), 350px);
  }
}
@media screen and (max-width: 767px) {
  .adlp-card {
    width: 100%;
  }
}
.adlp-card__head {
  display: flex;
  align-items: center;
  gap: min(calc(20 / 1080 * 100vw), 20px);
}
.adlp-card__no {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(80 / 1080 * 100vw), 80px);
  height: min(calc(80 / 1080 * 100vw), 80px);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .adlp-card__no {
    width: calc(80 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
  }
}
.adlp-card__no .text01 {
  text-align: center;
  line-height: 1;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__no .text01 {
    font-size: calc(20 / 750 * 100vw);
  }
}
.adlp-card__no .text02 {
  text-align: center;
  line-height: 1;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-card__no .text02 {
    font-size: calc(32 / 750 * 100vw);
  }
}
.adlp-card__title {
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  background: #fff;
  flex: 1;
  padding: 0 min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__title {
    font-size: calc(38 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }
}
.adlp-card__body {
  display: flex;
  align-items: flex-start;
  gap: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__body {
    gap: calc(20 / 750 * 100vw);
  }
}
.adlp-card__text {
  flex: 1;
  background: #fff;
  padding: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__text {
    padding: calc(20 / 750 * 100vw);
  }
}
.adlp-card__img {
  width: min(calc(50 / 1080 * 100vw), 50px);
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .adlp-card__img {
    width: calc(80 / 750 * 100vw);
  }
}

.adlp-circle {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(calc(150 / 1080 * 100vw), 150px);
  height: min(calc(150 / 1080 * 100vw), 150px);
  background: #f1f1f1;
}
.adlp-circle__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-circle__wrapper {
    width: 100%;
    gap: calc(10 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-circle {
    width: calc(150 / 750 * 100vw);
    height: calc(150 / 750 * 100vw);
  }
}
.adlp-circle__text {
  text-align: center;
}
.adlp-circle__text .text01 {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .adlp-circle__text .text01 {
    font-size: calc(32 / 750 * 100vw);
  }
}
.adlp-circle__text .text02 {
  font-size: min(calc(18 / 1080 * 100vw), 18px);
}
@media screen and (max-width: 767px) {
  .adlp-circle__text .text02 {
    font-size: calc(20 / 750 * 100vw);
  }
}

.adlp-fadein {
  opacity: 0;
}

.fadeInUp {
  opacity: 0;
  animation-name: fadein-up;
  animation-duration: 0.7s;
  animation-delay: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .fadeInUp {
    animation-name: fadein-up-sp;
  }
}

@keyframes fadein-up {
  0% {
    opacity: 0;
    transform: translateY(min(calc(60 / 1080 * 100vw), 60px));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein-up-sp {
  0% {
    opacity: 0;
    transform: translateY(calc(60 / 750 * 100vw));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.adlp-flow {
  display: flex;
  grid-gap: min(calc(47 / 1080 * 100vw), 47px);
  align-items: center;
  z-index: 1;
}
.adlp-flow__wrapper {
  display: flex;
  flex-direction: column;
  background: #fff;
  margin: 0 auto;
  grid-gap: min(calc(20 / 1080 * 100vw), 20px);
  padding: min(calc(40 / 1080 * 100vw), 40px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .adlp-flow__wrapper {
    width: calc(690 / 750 * 100vw);
    margin: calc(70 / 750 * 100vw) auto 0;
    grid-gap: calc(50 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.adlp-flow__wrapper::after {
  content: "";
  display: block;
  width: min(calc(4 / 1080 * 100vw), 4px);
  height: calc(100% - min(calc(80 / 1080 * 100vw), 80px));
  position: absolute;
  top: min(calc(40 / 1080 * 100vw), 40px);
  left: min(calc(132 / 1080 * 100vw), 132px);
  background: #95B6CE;
}
@media screen and (max-width: 767px) {
  .adlp-flow__wrapper::after {
    width: calc(5 / 750 * 100vw);
    height: calc(100% - calc(90 / 750 * 100vw));
    top: calc(40 / 750 * 100vw);
    left: calc(125 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-flow {
    grid-gap: calc(30 / 750 * 100vw);
  }
}
.adlp-flow__img {
  width: min(calc(185 / 1080 * 100vw), 185px);
}
@media screen and (max-width: 767px) {
  .adlp-flow__img {
    width: calc(190 / 750 * 100vw);
  }
}
.adlp-flow__body {
  width: min(calc(528 / 1080 * 100vw), 528px);
}
@media screen and (max-width: 767px) {
  .adlp-flow__body {
    width: calc(410 / 750 * 100vw);
  }
}
.adlp-flow__head {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.adlp-flow__head .--no {
  font-size: min(calc(42 / 1080 * 100vw), 42px);
  margin-right: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-flow__head .--no {
    font-size: calc(50 / 750 * 100vw);
    margin-right: calc(12 / 750 * 100vw);
  }
}
.adlp-flow__head .--title {
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .adlp-flow__head .--title {
    font-size: calc(32 / 750 * 100vw);
  }
}

.adlp-flow02 {
  gap: min(calc(10 / 1080 * 100vw), 10px);
  display: flex;
  align-items: center;
  z-index: 1;
}
.adlp-flow02__wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: min(calc(80 / 1080 * 100vw), 80px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .adlp-flow02__wrapper {
    flex-direction: column;
    width: calc(690 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) auto 0;
    gap: calc(50 / 750 * 100vw);
  }
}
.adlp-flow02__wrapper::after {
  content: "";
  display: block;
  height: min(calc(4 / 1080 * 100vw), 4px);
  width: 100%;
  position: absolute;
  top: min(calc(70 / 1080 * 100vw), 70px);
  left: 50%;
  transform: translateX(-50%);
  background: #95B6CE;
}
@media screen and (max-width: 767px) {
  .adlp-flow02__wrapper::after {
    width: calc(5 / 750 * 100vw);
    height: calc(100% - calc(90 / 750 * 100vw));
    top: calc(40 / 750 * 100vw);
    left: calc(125 / 750 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .adlp-flow02 {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .adlp-flow02 {
    grid-gap: calc(30 / 750 * 100vw);
  }
}
.adlp-flow02__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .adlp-flow02__img {
    width: calc(240 / 750 * 100vw);
  }
}
.adlp-flow02__body {
  width: min(calc(140 / 1080 * 100vw), 140px);
}
@media screen and (max-width: 767px) {
  .adlp-flow02__body {
    flex: 1;
  }
}
.adlp-flow02__head {
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .adlp-flow02__head {
    font-size: calc(30 / 750 * 100vw);
    text-align: left;
  }
}
.adlp-flow02__text {
  font-size: min(calc(18 / 1080 * 100vw), 18px);
}
@media screen and (max-width: 767px) {
  .adlp-flow02__text {
    font-size: calc(24 / 750 * 100vw);
  }
}

.adlp-head {
  text-align: center;
}
.adlp-head::after {
  content: "";
  display: block;
  width: min(calc(50 / 1080 * 100vw), 50px);
  height: min(calc(5 / 1080 * 100vw), 5px);
  background: #E75B18;
  margin: min(calc(10 / 1080 * 100vw), 10px) auto 0;
}
.adlp-head .text01 {
  font-size: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-head .text01 {
    font-size: calc(30 / 750 * 100vw);
  }
}
.adlp-head .text02 {
  font-size: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-head .text02 {
    font-size: calc(46 / 750 * 100vw);
  }
}

.adlp-list {
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 12.5C25 19.4036 19.4036 25 12.5 25C5.59644 25 0 19.4036 0 12.5C0 5.59644 5.59644 0 12.5 0C19.4036 0 25 5.59644 25 12.5ZM7.02857 10.1124L11.5604 14.6443L17.9714 8.23335L20.4948 10.7567L14.0839 17.1677L11.5604 19.6911L9.03705 17.1677L4.50519 12.6359L7.02857 10.1124Z' fill='orange'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: min(calc(20 / 1080 * 100vw), 20px) min(calc(20 / 1080 * 100vw), 20px);
  background-position: left top min(calc(4 / 1080 * 100vw), 4px);
  padding-left: min(calc(30 / 1080 * 100vw), 30px);
}
.adlp-list__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-list__wrapper {
    gap: calc(10 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-list {
    padding-left: calc(40 / 750 * 100vw);
    background-size: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
    background-position: left top calc(8 / 750 * 100vw);
  }
}
.adlp-list.--check {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.891075 2.52926C1.08634 2.334 1.40292 2.334 1.59818 2.52926L3.36595 4.29703L6.90148 0.761492C7.09674 0.56623 7.41333 0.56623 7.60859 0.761492C7.80385 0.956754 7.80385 1.27334 7.60859 1.4686L3.7195 5.35769C3.52424 5.55295 3.20766 5.55295 3.0124 5.35769L0.891075 3.23637C0.695813 3.0411 0.695813 2.72452 0.891075 2.52926Z' fill='black'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: min(calc(16 / 1080 * 100vw), 16px) min(calc(16 / 1080 * 100vw), 16px);
  background-position: left min(calc(5 / 1080 * 100vw), 5px) top min(calc(8 / 1080 * 100vw), 8px);
  padding-left: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-list.--check {
    padding-left: calc(40 / 750 * 100vw);
    background-size: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
    background-position: left top calc(8 / 750 * 100vw);
  }
}

.adlp-logo {
  animation: infinity-scroll-left 35s infinite linear 0.5s both;
  width: min(calc(2296 / 1080 * 100vw), 2296px);
}
.adlp-logo__wrapper {
  display: flex;
  width: min(calc(4592 / 1080 * 100vw), 4592px);
}
@media screen and (max-width: 767px) {
  .adlp-logo__wrapper {
    width: calc(4592 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-logo {
    width: calc(2296 / 750 * 100vw);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.adlp-swiper {
  position: relative;
  padding-bottom: min(calc(50 / 1080 * 100vw), 50px);
  width: 100%;
  /* ページネーションの余白 */
}
@media screen and (max-width: 767px) {
  .adlp-swiper {
    padding-bottom: calc(80 / 750 * 100vw);
  }
}
.adlp-swiper.--hide {
  overflow: hidden;
}
.adlp-swiper .swiper-slide {
  padding: 0 min(calc(40 / 1080 * 100vw), 40px);
}
.adlp-swiper .swiper-button-next,
.adlp-swiper .swiper-button-prev {
  width: min(calc(24 / 1080 * 100vw), 24px);
  height: min(calc(84 / 1080 * 100vw), 84px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-next,
  .adlp-swiper .swiper-button-prev {
    width: calc(30 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-button-next::after,
.adlp-swiper .swiper-button-prev::after {
  display: none;
}
.adlp-swiper .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='84' viewBox='0 0 24 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='84' fill='%234A453B'/%3E%3Cpath d='M18 51L8 42L18 33' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  left: 0;
}
.adlp-swiper .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='84' viewBox='0 0 24 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='84' fill='%234A453B'/%3E%3Cpath d='M8 33L18 42L8 51' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  right: 0;
}
.adlp-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.adlp-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .adlp-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 calc(8 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-pagination-bullet {
  height: min(calc(10 / 1080 * 100vw), 10px);
  width: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-pagination-bullet {
    width: calc(16 / 750 * 100vw);
    height: calc(16 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-pagination-bullet-active {
  background-color: #E0BF23;
}
.adlp-swiper__wrapper {
  padding-bottom: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper__wrapper {
    width: 100%;
    padding-bottom: calc(60 / 750 * 100vw);
  }
}

.adlp-tab__head {
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: min(calc(10 / 1080 * 100vw), 10px) min(calc(30 / 1080 * 100vw), 30px);
  background: #f1f1f1;
}
.adlp-tab__head__wrapper {
  display: flex;
  align-items: flex-end;
  gap: min(calc(5 / 1080 * 100vw), 5px);
}
@media screen and (max-width: 767px) {
  .adlp-tab__head__wrapper {
    gap: calc(5 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-tab__head {
    padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.adlp-tab__head.--active {
  background: #E75B18;
  color: #fff;
}
.adlp-tab__content {
  display: none;
  border: min(calc(3 / 1080 * 100vw), 3px) solid #f1f1f1;
  padding: min(calc(30 / 1080 * 100vw), 30px);
}
.adlp-tab__content.--active {
  display: block;
}

.adlp-text__label {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  padding: min(calc(10 / 1080 * 100vw), 10px) min(calc(30 / 1080 * 100vw), 30px);
  background: #fff;
  width: fit-content;
  margin: 0 auto min(calc(30 / 1080 * 100vw), 30px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .adlp-text__label {
    font-size: calc(24 / 750 * 100vw);
    padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
    margin: 0 auto calc(30 / 750 * 100vw);
  }
}
.adlp-text__label::after {
  content: "";
  display: block;
  width: min(calc(35 / 1080 * 100vw), 35px);
  height: min(calc(20 / 1080 * 100vw), 20px);
  clip-path: polygon(50% 100%, 0 0, 100% 0%);
  background: #fff;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 767px) {
  .adlp-text__label::after {
    width: calc(50 / 750 * 100vw);
    height: calc(20 / 750 * 100vw);
  }
}
.adlp-text__label.--top::after {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: auto;
  top: 1px;
  transform: translate(-50%, -100%);
}
.adlp-text__label.--round {
  border-radius: 1000px;
}
.adlp-text__label.--txt {
  color: #fff;
  background: #333;
}
.adlp-text__label.--txt::after {
  background: #333;
}
.adlp-text__label.--white {
  color: #fff;
  background: #fff;
}
.adlp-text__label.--white::after {
  background: #fff;
}
.adlp-text__label.--silver {
  color: #fff;
  background: #f1f1f1;
}
.adlp-text__label.--silver::after {
  background: #f1f1f1;
}
.adlp-text__label.--accent {
  color: #fff;
  background: #E75B18;
}
.adlp-text__label.--accent::after {
  background: #E75B18;
}
.adlp-text__label.--base02 {
  color: #fff;
  background: #E9F1F1;
}
.adlp-text__label.--base02::after {
  background: #E9F1F1;
}

.adlp-text__label__para {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  padding: min(calc(10 / 1080 * 100vw), 10px) min(calc(30 / 1080 * 100vw), 30px);
  min-width: min(calc(200 / 1080 * 100vw), 200px);
  margin: 0 auto min(calc(30 / 1080 * 100vw), 30px);
  width: fit-content;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .adlp-text__label__para {
    font-size: calc(24 / 750 * 100vw);
    padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
    margin: 0 auto calc(30 / 750 * 100vw);
    min-width: calc(200 / 750 * 100vw);
  }
}
.adlp-text__label__para .text01 {
  z-index: 1;
  position: relative;
}
.adlp-text__label__para::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: skew(-15deg);
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.adlp-text__label__para.--txt {
  color: #fff;
}
.adlp-text__label__para.--txt::after {
  background: #333;
}
.adlp-text__label__para.--white {
  color: #fff;
}
.adlp-text__label__para.--white::after {
  background: #fff;
}
.adlp-text__label__para.--silver {
  color: #fff;
}
.adlp-text__label__para.--silver::after {
  background: #f1f1f1;
}
.adlp-text__label__para.--accent {
  color: #fff;
}
.adlp-text__label__para.--accent::after {
  background: #E75B18;
}
.adlp-text__label__para.--base02 {
  color: #fff;
}
.adlp-text__label__para.--base02::after {
  background: #E9F1F1;
}

.adlp-stroke {
  position: relative;
  font-size: min(calc(110 / 1080 * 100vw), 110px);
  font-weight: 700;
  filter: drop-shadow(0px min(calc(5 / 1080 * 100vw), 5px) min(calc(10 / 1080 * 100vw), 10px) rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 767px) {
  .adlp-stroke {
    font-size: calc(110 / 750 * 100vw);
    filter: drop-shadow(0px calc(5 / 750 * 100vw) calc(10 / 750 * 100vw) rgba(0, 0, 0, 0.15));
  }
}
.adlp-stroke .text01 {
  z-index: 10;
  position: relative;
  color: #E75B18;
}
.adlp-stroke::after {
  content: attr(data-text);
  position: absolute;
  z-index: 5;
  white-space: nowrap;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: min(calc(10 / 1080 * 100vw), 10px) #fff;
}
@media screen and (max-width: 767px) {
  .adlp-stroke::after {
    -webkit-text-stroke: calc(10 / 750 * 100vw) #fff;
  }
}

.adlp-ba-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.adlp-ba-slider__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.adlp-ba-slider__before, .adlp-ba-slider__after {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.adlp-ba-slider__after {
  margin-left: -100%;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: none;
}
.adlp-ba-slider__divider {
  position: absolute;
  top: 0;
  left: 0%;
  width: 4px;
  height: 100%;
  background: white;
  transform: translateX(-2px);
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: none;
  cursor: ew-resize;
  pointer-events: none;
}
.adlp-ba-slider__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.adlp-ba-slider__divider::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #333;
  font-weight: bold;
  z-index: 1;
}
.adlp-ba-slider__handle {
  position: absolute;
  top: 0;
  left: -20px;
  width: 44px;
  height: 100%;
  z-index: 11;
  cursor: ew-resize;
  pointer-events: auto;
}

.adlp-video-slider {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .adlp-video-slider {
    padding: calc(70 / 750 * 100vw) 0;
  }
}
.adlp-video-slider .video-swiper {
  overflow: visible;
}
.adlp-video-slider .video-swiper .swiper-wrapper .swiper-slide .video-container {
  width: 100%;
  border-radius: 8%;
  overflow: hidden;
  scale: 0.85;
  opacity: 0.3;
  transition: scale 0.4s ease-in-out;
}
.adlp-video-slider .video-swiper .swiper-wrapper .swiper-slide .video-container video {
  width: 100%;
  display: block;
  scale: 0.9;
}
.adlp-video-slider .video-swiper .swiper-wrapper .swiper-slide-active .video-container {
  scale: 1;
  opacity: 1;
}
.adlp-video-slider .video-swiper .swiper-button-prev,
.adlp-video-slider .video-swiper .swiper-button-next {
  width: min(calc(70 / 1080 * 100vw), 70px);
  height: min(calc(70 / 1080 * 100vw), 70px);
  background: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='35' cy='35' r='35' transform='matrix(-1 0 0 1 70 0)' fill='%230491FE'/%3E%3Cpath d='M39 24L27 35.5238L39 46' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") 0 0/100% no-repeat;
}
@media screen and (max-width: 767px) {
  .adlp-video-slider .video-swiper .swiper-button-prev,
  .adlp-video-slider .video-swiper .swiper-button-next {
    width: calc(70 / 750 * 100vw);
    height: calc(70 / 750 * 100vw);
  }
}
.adlp-video-slider .video-swiper .swiper-button-prev::after,
.adlp-video-slider .video-swiper .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .adlp-video-slider .video-swiper .swiper-button-prev {
    left: 0;
  }
}
.adlp-video-slider .video-swiper .swiper-button-next {
  transform: scale(-1, 1);
}
.adlp-video-slider .video-swiper .swiper-pagination {
  bottom: max(calc(-70 / 1080 * 100vw), -70px);
}
@media screen and (max-width: 767px) {
  .adlp-video-slider .video-swiper .swiper-pagination {
    bottom: calc(-70 / 750 * 100vw);
  }
}
.adlp-video-slider .video-swiper .swiper-pagination .swiper-pagination-bullet {
  width: min(calc(180 / 1080 * 100vw), 180px);
  height: min(calc(10 / 1080 * 100vw), 10px);
  border-radius: min(calc(8 / 1080 * 100vw), 8px);
  background: #fff;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .adlp-video-slider .video-swiper .swiper-pagination .swiper-pagination-bullet {
    width: calc(180 / 750 * 100vw);
    height: calc(10 / 750 * 100vw);
    border-radius: calc(8 / 750 * 100vw);
  }
}
.adlp-video-slider .video-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

.sec01 {
  position: relative;
}
.sec01__head {
  background: var(--base02, #e9f1f1);
  padding: min(calc(51 / 1080 * 100vw), 51px) 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01__head {
    padding: calc(50 / 750 * 100vw) 0 0;
  }
}
.sec01__head-inner {
  width: min(calc(1080 / 1080 * 100vw), 1080px);
  padding: 0 min(calc(80 / 1080 * 100vw), 80px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec01__head-inner {
    width: 100%;
    padding: 0 calc(30 / 750 * 100vw);
  }
}
.sec01__subtitle {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: max(calc(-20 / 1080 * 100vw), -20px);
}
@media screen and (max-width: 767px) {
  .sec01__subtitle {
    margin-bottom: calc(24 / 750 * 100vw);
  }
}
.sec01__subtitle-item {
  position: relative;
  line-height: 1;
}
.sec01__subtitle-item.--left {
  padding: min(calc(27 / 1080 * 100vw), 27px) min(calc(48 / 1080 * 100vw), 48px) min(calc(41 / 1080 * 100vw), 41px);
  background: url(../img/pc/sec01_head_baoon_left.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .sec01__subtitle-item.--left {
    padding: calc(27 / 750 * 100vw) calc(48 / 750 * 100vw) calc(48 / 750 * 100vw);
    background: url(../img/sp/sec01_head_baoon_left.svg) center/contain no-repeat;
  }
}
.sec01__subtitle-item.--right {
  padding: min(calc(27 / 1080 * 100vw), 27px) min(calc(34 / 1080 * 100vw), 34px) min(calc(41 / 1080 * 100vw), 41px);
  background: url(../img/pc/sec01_head_baoon_right.svg) center/contain no-repeat;
  margin: min(calc(26 / 1080 * 100vw), 26px) 0 0 max(calc(-30 / 1080 * 100vw), -30px);
}
@media screen and (max-width: 767px) {
  .sec01__subtitle-item.--right {
    padding: calc(27 / 750 * 100vw) calc(27 / 750 * 100vw) calc(48 / 750 * 100vw);
    background: url(../img/sp/sec01_head_baoon_right.svg) center/contain no-repeat;
    margin: calc(26 / 750 * 100vw) 0 0 calc(-30 / 750 * 100vw);
  }
}
.sec01__subtitle-text {
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  font-weight: 700;
  color: #141d3d;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec01__subtitle-text {
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec01__title {
  text-align: center;
  margin-top: min(calc(30 / 1080 * 100vw), 30px);
}
.sec01__title-row {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec01__title-row {
    gap: calc(8 / 750 * 100vw);
  }
}
.sec01__title-row.--highlight {
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01__title-row.--highlight {
    margin-top: calc(10 / 750 * 100vw);
  }
}
.sec01__title-text {
  font-size: min(calc(44 / 1080 * 100vw), 44px);
  font-weight: 900;
  color: #141d3d;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec01__title-text {
    font-size: calc(55 / 750 * 100vw);
  }
}
.sec01__title-highlight {
  font-size: min(calc(54 / 1080 * 100vw), 54px);
  font-weight: 900;
  color: #141d3d;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  background: #ffe041;
  padding: 0 min(calc(9 / 1080 * 100vw), 9px);
}
@media screen and (min-width: 768px) {
  .sec01__title-highlight:first-child {
    padding-right: 0;
  }
  .sec01__title-highlight:nth-child(2) {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec01__title-highlight {
    font-size: calc(64 / 750 * 100vw);
    display: inline-block;
    text-align: center;
  }
  .sec01__title-highlight:nth-child(2) {
    margin-top: calc(8 / 750 * 100vw);
  }
}
.sec01__quote {
  width: min(calc(22 / 1080 * 100vw), 22px);
  height: auto;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .sec01__quote {
    width: calc(22 / 750 * 100vw);
  }
}
.sec01__quote.--left {
  top: max(calc(0 / 1080 * 100vw), 0px);
  left: 0;
  transform: translate(-150%, 100%);
}
.sec01__quote.--right {
  bottom: max(calc(0 / 1080 * 100vw), 0px);
  right: 0;
  transform: translate(150%, -80%);
}
.sec01__balloon {
  position: absolute;
  z-index: 2;
  width: min(calc(295 / 1080 * 100vw), 295px);
  aspect-ratio: 294/158;
  left: 50%;
  top: min(calc(53 / 1080 * 100vw), 53px);
  transform: translate(-50%, 0);
  background: url("../img/pc/baloon_bg.svg") no-repeat center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec01__balloon {
    width: calc(369 / 750 * 100vw);
    aspect-ratio: 369/198;
    background-image: url("../img/sp/baloon_bg.svg");
  }
}
.sec01__balloon-text {
  font-weight: 900;
  color: #000;
  text-align: center;
  line-height: 1;
  margin-bottom: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec01__balloon-text {
    margin-bottom: calc(8 / 750 * 100vw);
  }
}
.sec01__balloon-text span {
  font-size: min(calc(44 / 1080 * 100vw), 44px);
  letter-spacing: 0.01em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sec01__balloon-text span {
    font-size: calc(56 / 750 * 100vw);
  }
}
.sec01__balloon-text span.--dot {
  font-size: min(calc(36 / 1080 * 100vw), 36px);
}
@media screen and (max-width: 767px) {
  .sec01__balloon-text span.--dot {
    font-size: calc(46 / 750 * 100vw);
  }
}
.sec01__body {
  background: linear-gradient(180deg, #454854 0%, #141d3d 100%);
  padding: min(calc(235 / 1080 * 100vw), 235px) 0 min(calc(150 / 1080 * 100vw), 150px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01__body {
    padding: calc(260 / 750 * 100vw) 0 calc(171 / 750 * 100vw);
  }
}
.sec01__body::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  aspect-ratio: 1920/137;
  background: var(--base02, #e9f1f1);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .sec01__body::before {
    width: 100%;
    aspect-ratio: 750/140;
  }
}
.sec01__copy {
  text-align: center;
  margin-bottom: min(calc(50 / 1080 * 100vw), 50px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec01__copy {
    margin-bottom: calc(60 / 750 * 100vw);
  }
}
.sec01__copy-text {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 min(calc(2 / 1080 * 100vw), 2px) 0 rgba(0, 0, 0, 0.16);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec01__copy-text {
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec01__copy-text:first-child {
  width: 100%;
}
.sec01__copy-text .--accent {
  color: #fbff3e;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec01__copy-text .--accent {
    font-size: calc(50 / 750 * 100vw);
  }
}
.sec01__copy-text .--accent.--large {
  font-family: "Roboto", sans-serif;
  font-size: min(calc(50 / 1080 * 100vw), 50px);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .sec01__copy-text .--accent.--large {
    font-size: calc(64 / 750 * 100vw);
  }
}
.sec01__copy-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  font-size: min(calc(50 / 1080 * 100vw), 50px);
  font-weight: 900;
  color: #fbff3e;
  letter-spacing: 0.08em;
  text-shadow: 0 min(calc(2 / 1080 * 100vw), 2px) 0 rgba(0, 0, 0, 0.16);
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01__copy-highlight {
    flex-wrap: wrap;
    font-size: calc(60 / 750 * 100vw);
    gap: calc(8 / 750 * 100vw);
  }
}
.sec01__copy-highlight span > span {
  position: relative;
  z-index: 1;
}
.sec01__copy-highlight span > span::before {
  content: "";
  position: absolute;
  bottom: min(calc(5 / 1080 * 100vw), 5px);
  left: 0;
  width: 100%;
  height: min(calc(20 / 1080 * 100vw), 20px);
  background: rgba(255, 255, 255, 0.16);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec01__copy-highlight span > span::before {
    bottom: calc(5 / 750 * 100vw);
    height: calc(25 / 750 * 100vw);
  }
}
.sec01__copy-quote {
  width: min(calc(27 / 1080 * 100vw), 27px);
  height: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sec01__copy-quote {
    width: calc(28 / 750 * 100vw);
  }
  .sec01__copy-quote.--left {
    transform: translate(-50%, -250%);
  }
  .sec01__copy-quote.--right {
    position: relative;
    left: calc(-170 / 750 * 100vw);
    margin-top: calc(60 / 750 * 100vw);
  }
}
.sec01__graph-card {
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto min(calc(24 / 1080 * 100vw), 24px);
  background: #fff;
  border-radius: min(calc(12 / 1080 * 100vw), 12px);
  box-shadow: 0 0 min(calc(14 / 1080 * 100vw), 14px) 0 rgba(0, 0, 0, 0.25);
  padding: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec01__graph-card {
    width: calc(690 / 750 * 100vw);
    margin: 0 auto calc(24 / 750 * 100vw);
    border-radius: calc(15 / 750 * 100vw);
    box-shadow: 0 0 calc(17.5 / 750 * 100vw) 0 rgba(0, 0, 0, 0.25);
    padding: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw) calc(60 / 750 * 100vw);
  }
}
.sec01__graph-inner {
  display: flex;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec01__graph-inner {
    flex-direction: column;
    gap: calc(30 / 750 * 100vw);
  }
}
.sec01__graph-image {
  width: min(calc(392 / 1080 * 100vw), 392px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec01__graph-image {
    width: calc(490 / 750 * 100vw);
  }
}
.sec01__graph-legend {
  flex: 1;
}
.sec01__graph-list {
  margin-bottom: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .sec01__graph-list {
    margin-bottom: calc(20 / 750 * 100vw);
  }
}
.sec01__graph-item {
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.08em;
  padding-left: min(calc(26 / 1080 * 100vw), 26px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01__graph-item {
    font-size: calc(28 / 750 * 100vw);
    padding-left: calc(33 / 750 * 100vw);
  }
}
.sec01__graph-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(14 / 1080 * 100vw), 14px);
  height: min(calc(14 / 1080 * 100vw), 14px);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .sec01__graph-item::before {
    width: calc(18 / 750 * 100vw);
    height: calc(18 / 750 * 100vw);
  }
}
.sec01__graph-item.--primary::before {
  background: #14b4b4;
}
.sec01__graph-item.--secondary::before {
  background: #ccc;
}
.sec01__graph-note {
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  color: #666;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .sec01__graph-note {
    font-size: calc(20 / 750 * 100vw);
  }
}
.sec01__footer {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec01__footer {
    padding: calc(0 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.sec01__footer-text {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec01__footer-text {
    font-size: calc(30 / 750 * 100vw);
  }
}
.sec01__footer-text .--accent {
  color: #fbff3e;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .sec01__footer-text .--accent {
    font-size: calc(40 / 750 * 100vw);
  }
}

.sec02 {
  position: relative;
  background: linear-gradient(180deg, #454854 0%, #141d3d 100%);
  padding: min(calc(118 / 1080 * 100vw), 118px) 0 0;
}
@media screen and (max-width: 767px) {
  .sec02 {
    padding: calc(140 / 750 * 100vw) 0 0;
  }
}
.sec02__balloon {
  z-index: 2;
  width: min(calc(295 / 1080 * 100vw), 295px);
  aspect-ratio: 295/162;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/pc/baloon_bg.svg") no-repeat center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec02__balloon {
    width: calc(369 / 750 * 100vw);
    aspect-ratio: 369/198;
    background-image: url("../img/sp/baloon_bg.svg");
  }
}
.sec02__balloon-text {
  font-size: min(calc(44 / 1080 * 100vw), 44px);
  font-weight: 900;
  color: #000;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec02__balloon-text {
    font-size: calc(56 / 750 * 100vw);
  }
}
.sec02__head-inner {
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec02__head-inner {
    width: calc(690 / 750 * 100vw);
  }
}
.sec02__copy {
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec02__copy {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 750 * 100vw);
  }
}
.sec02__copy-text {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 min(calc(2 / 1080 * 100vw), 2px) 0 rgba(0, 0, 0, 0.16);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec02__copy-text {
    font-size: calc(40 / 750 * 100vw);
    margin-bottom: calc(10 / 750 * 100vw);
  }
}
.sec02__copy-text .--accent {
  color: #fbff3e;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec02__copy-text .--accent {
    font-size: calc(50 / 750 * 100vw);
  }
}
.sec02__copy-text .--accent.--large {
  font-family: "Roboto", sans-serif;
  font-size: min(calc(50 / 1080 * 100vw), 50px);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .sec02__copy-text .--accent.--large {
    font-size: calc(64 / 750 * 100vw);
  }
}
.sec02__copy-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  font-size: min(calc(50 / 1080 * 100vw), 50px);
  font-weight: 900;
  color: #fbff3e;
  letter-spacing: 0.08em;
  text-shadow: 0 min(calc(2 / 1080 * 100vw), 2px) 0 rgba(0, 0, 0, 0.16);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec02__copy-highlight {
    font-size: calc(60 / 750 * 100vw);
    gap: calc(8 / 750 * 100vw);
  }
}
.sec02__copy-highlight span {
  position: relative;
  z-index: 1;
}
.sec02__copy-highlight span::before {
  content: "";
  position: absolute;
  bottom: min(calc(5 / 1080 * 100vw), 5px);
  left: 0;
  width: 100%;
  height: min(calc(20 / 1080 * 100vw), 20px);
  background: rgba(255, 255, 255, 0.16);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec02__copy-highlight span::before {
    bottom: calc(5 / 750 * 100vw);
    height: calc(25 / 750 * 100vw);
  }
}
.sec02__quote {
  width: min(calc(27 / 1080 * 100vw), 27px);
  height: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sec02__quote {
    width: calc(28 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .sec02__quote.--left {
    transform: translate(-50%, -100%);
  }
}
@media screen and (max-width: 767px) {
  .sec02__quote.--right {
    position: relative;
    right: calc(-10 / 750 * 100vw);
    top: calc(40 / 750 * 100vw);
  }
}
.sec02__body {
  margin: min(calc(38 / 1080 * 100vw), 38px) auto 0;
  padding-bottom: min(calc(78 / 1080 * 100vw), 78px);
}
@media screen and (max-width: 767px) {
  .sec02__body {
    margin: calc(50 / 750 * 100vw) auto 0;
  }
}
.sec02__graph-card {
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto min(calc(30 / 1080 * 100vw), 30px);
  background: #fff;
  border-radius: min(calc(12 / 1080 * 100vw), 12px);
  box-shadow: 0 0 min(calc(14 / 1080 * 100vw), 14px) 0 rgba(0, 0, 0, 0.25);
  padding: min(calc(22 / 1080 * 100vw), 22px) min(calc(126 / 1080 * 100vw), 126px) min(calc(23 / 1080 * 100vw), 23px) min(calc(200 / 1080 * 100vw), 200px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec02__graph-card {
    width: calc(690 / 750 * 100vw);
    margin: 0 auto calc(40 / 750 * 100vw);
    border-radius: calc(15 / 750 * 100vw);
    box-shadow: 0 0 calc(17.5 / 750 * 100vw) 0 rgba(0, 0, 0, 0.25);
    padding: calc(58 / 750 * 100vw) calc(30 / 750 * 100vw) calc(60 / 750 * 100vw);
  }
}
.sec02__desc {
  text-align: center;
}
.sec02__desc-text {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec02__desc-text {
    font-size: calc(30 / 750 * 100vw);
  }
}
.sec02__desc-text .--accent {
  color: #fbff3e;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .sec02__desc-text .--accent {
    font-size: calc(38 / 750 * 100vw);
  }
}
.sec02__desc-text .--accent-small {
  color: #fbff3e;
}
.sec02__desc-text .--small {
  font-size: min(calc(14 / 1080 * 100vw), 14px);
}
@media screen and (max-width: 767px) {
  .sec02__desc-text .--small {
    font-size: calc(20 / 750 * 100vw);
  }
}
.sec02__footer {
  background: #14b4b4;
  padding: min(calc(70 / 1080 * 100vw), 70px) 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec02__footer {
    padding: calc(45 / 750 * 100vw) 0 0 calc(30 / 750 * 100vw);
  }
}
.sec02__footer::before {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  width: 100%;
  aspect-ratio: 1920/96;
  transform: translateX(-50%);
  background: #FFF;
  clip-path: polygon(0 0, 36.9791666667% 0, 50% 100%, 64.21875% 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .sec02__footer::before {
    aspect-ratio: 750/121;
    clip-path: polygon(0 0, 15.0666666667% 0, 50% 100%, 84.8% 0, 100% 0, 100% 100%, 0 100%);
  }
}
.sec02__footer-inner {
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
  padding-bottom: min(calc(38 / 1080 * 100vw), 38px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec02__footer-inner {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    position: static;
    padding-bottom: calc(48 / 750 * 100vw);
  }
}
.sec02__footer-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-left: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec02__footer-text {
    margin: 0;
    align-items: flex-start;
  }
}
.sec02__footer-lead {
  font-size: min(calc(38 / 1080 * 100vw), 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 min(calc(4 / 1080 * 100vw), 4px) 0 rgba(0, 0, 0, 0.14);
  line-height: 1.6;
  margin-bottom: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec02__footer-lead {
    font-size: calc(48 / 750 * 100vw);
    margin-bottom: calc(15 / 750 * 100vw);
  }
}
.sec02__footer-cta {
  font-size: min(calc(38 / 1080 * 100vw), 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 min(calc(4 / 1080 * 100vw), 4px) 0 rgba(0, 0, 0, 0.14);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec02__footer-cta {
    font-size: calc(48 / 750 * 100vw);
  }
}
.sec02__footer-cta .--accent {
  color: #fbff3e;
  font-size: min(calc(50 / 1080 * 100vw), 50px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec02__footer-cta .--accent {
    font-size: calc(64 / 750 * 100vw);
  }
}
.sec02__footer-image {
  position: absolute;
  right: max(calc(-206 / 1080 * 100vw), -206px);
  bottom: min(calc(96 / 1080 * 100vw), 96px);
  width: min(calc(414 / 1080 * 100vw), 414px);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec02__footer-image {
    right: calc(-167 / 750 * 100vw);
    bottom: 0;
    width: calc(518 / 750 * 100vw);
  }
}
.sec02__footer-supplement {
  margin-top: min(calc(74 / 1080 * 100vw), 74px);
}
@media screen and (max-width: 767px) {
  .sec02__footer-supplement {
    margin-top: calc(200 / 750 * 100vw);
  }
}
.sec02__footer-supplement-text {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .sec02__footer-supplement-text {
    font-size: calc(40 / 750 * 100vw);
  }
}

.sec03 {
  overflow: hidden;
  padding-top: min(calc(19 / 1080 * 100vw), 19px);
}
@media screen and (max-width: 767px) {
  .sec03 {
    padding-top: calc(40 / 750 * 100vw);
  }
}
.sec03__head {
  width: 100%;
  margin-bottom: min(calc(113 / 1080 * 100vw), 113px);
}
.sec03__head-eyebrow {
  text-align: center;
  padding: min(calc(11 / 1080 * 100vw), 11px) 0 min(calc(38 / 1080 * 100vw), 38px);
  clip-path: polygon(0 0, min(calc(658 / 1080 * 100vw), 658px) 0, 50% min(calc(130 / 1080 * 100vw), 130px), min(calc(1307 / 1080 * 100vw), 1307px) 0, 100% 0, 100% 100%, 0 100%);
  background: white;
}
.sec03__head-eyebrow-text {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-bottom: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .sec03__head-eyebrow-text {
    font-size: calc(40 / 750 * 100vw);
    padding-bottom: calc(30 / 750 * 100vw);
  }
}
.sec03__head-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: min(calc(47 / 1080 * 100vw), 47px);
}
@media screen and (max-width: 767px) {
  .sec03__head-title {
    flex-direction: column;
    align-items: center;
    margin-bottom: calc(40 / 750 * 100vw);
  }
}
.sec03__head-logo {
  width: min(calc(242 / 1080 * 100vw), 242px);
  margin-right: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec03__head-logo {
    width: calc(300 / 750 * 100vw);
    margin-right: 0;
    margin-bottom: calc(10 / 750 * 100vw);
  }
}
.sec03__head-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.sec03__head-title-text {
  display: flex;
  align-items: baseline;
  position: relative;
}
.sec03__head-title-text::after {
  content: "";
  position: absolute;
  bottom: max(calc(-5 / 1080 * 100vw), -5px);
  left: min(calc(40 / 1080 * 100vw), 40px);
  right: 0;
  height: min(calc(20 / 1080 * 100vw), 20px);
  background: #fbff3e;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec03__head-title-text::after {
    bottom: calc(-5 / 750 * 100vw);
    left: calc(50 / 750 * 100vw);
    height: calc(25 / 750 * 100vw);
  }
}
.sec03__head-title-no {
  font-size: min(calc(34 / 1080 * 100vw), 34px);
  font-weight: 900;
  color: #333;
  letter-spacing: 0.24em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec03__head-title-no {
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec03__head-title-check {
  font-size: min(calc(54 / 1080 * 100vw), 54px);
  font-weight: 900;
  color: #14b4b4;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec03__head-title-check {
    font-size: calc(64 / 750 * 100vw);
  }
}
.sec03__head-copy {
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec03__head-copy {
    flex-direction: column;
    text-align: left;
    gap: calc(80 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
  }
}
.sec03__head-copy-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec03__head-copy-line {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .sec03__head-copy-line.--line02 {
    justify-content: flex-start;
    padding-left: calc(192 / 750 * 100vw);
  }
}
.sec03__head-copy-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #14b4b4;
  color: #fff;
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 0 min(calc(20 / 1080 * 100vw), 20px);
  margin-right: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec03__head-copy-free {
    font-size: calc(40 / 750 * 100vw);
    padding: 0 calc(24 / 750 * 100vw);
    height: calc(64 / 750 * 100vw);
  }
}
.sec03__head-copy-text {
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  font-weight: 700;
  color: #141d3d;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec03__head-copy-text {
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec03__head-copy-visible {
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  font-weight: 700;
  color: #14b4b4;
  letter-spacing: 0.08em;
  line-height: 1.3;
  position: relative;
  margin-left: min(calc(48 / 1080 * 100vw), 48px);
}
@media screen and (max-width: 767px) {
  .sec03__head-copy-visible {
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec03__head-copy-visible::before {
  position: absolute;
  content: "";
  display: block;
  width: min(calc(216 / 1080 * 100vw), 216px);
  aspect-ratio: 432/366;
  background: url(../img/pc/sec03_magnifier.webp) no-repeat center/contain;
  right: max(calc(-25 / 1080 * 100vw), -25px);
  top: max(calc(-51 / 1080 * 100vw), -51px);
}
@media screen and (max-width: 767px) {
  .sec03__head-copy-visible::before {
    width: calc(260 / 750 * 100vw);
    right: calc(-30 / 750 * 100vw);
    top: calc(-60 / 750 * 100vw);
    background-image: url(../img/sp/sec03_magnifier.webp);
  }
}
.sec03__head-copy-visible::after {
  content: "";
  position: absolute;
  bottom: min(calc(5 / 1080 * 100vw), 5px);
  left: 0;
  width: 100%;
  height: min(calc(12 / 1080 * 100vw), 12px);
  background: #fbff3e;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec03__head-copy-visible::after {
    bottom: calc(5 / 750 * 100vw);
    height: calc(15 / 750 * 100vw);
  }
}
.sec03__head-copy-shimasu {
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  font-weight: 700;
  color: #141d3d;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec03__head-copy-shimasu {
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec03__main {
  display: flex;
  flex-direction: column;
  gap: min(calc(74 / 1080 * 100vw), 74px);
  padding-bottom: min(calc(120 / 1080 * 100vw), 120px);
}
@media screen and (max-width: 767px) {
  .sec03__main {
    margin-top: calc(182 / 750 * 100vw);
    padding-bottom: calc(80 / 750 * 100vw);
    gap: calc(80 / 750 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sec03__main-block.--b01 {
    background: url("../img/pc/sec03_bg_img_card_01.webp") no-repeat center top/contain;
  }
  .sec03__main-block.--b02 {
    background: url("../img/pc/sec03_bg_img_card_02.webp") no-repeat center/contain;
    padding-bottom: min(calc(40 / 1080 * 100vw), 40px);
  }
}
.sec03__card {
  display: flex;
  align-items: stretch;
  position: relative;
  width: min(calc(1080 / 1080 * 100vw), 1080px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec03__card {
    flex-direction: column;
    margin-bottom: calc(80 / 750 * 100vw);
  }
}
.sec03__card:last-child {
  margin-bottom: 0;
}
.sec03__card.--card01 {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .sec03__card.--card01 {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .sec03__card.--card01 .sec03__card-img {
    width: 100%;
    min-height: auto;
    background: none;
    border-radius: calc(15 / 750 * 100vw);
    margin-bottom: calc(30 / 750 * 100vw);
  }
}
.sec03__card.--card01 .sec03__card-body {
  flex: 1;
  padding-left: min(calc(565 / 1080 * 100vw), 565px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec03__card.--card01 .sec03__card-body {
    padding: 0 calc(60 / 750 * 100vw);
  }
}
.sec03__card.--card02 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .sec03__card.--card02 {
    flex-direction: column;
  }
}
.sec03__card.--card02 .sec03__card-img {
  width: min(calc(550 / 1080 * 100vw), 550px);
  min-height: min(calc(350 / 1080 * 100vw), 350px);
  background: url("../img/pc/sec03_bg_img_card_02.webp") no-repeat center/contain;
  border-radius: min(calc(12 / 1080 * 100vw), 12px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec03__card.--card02 .sec03__card-img {
    width: 100%;
    min-height: auto;
    background: none;
    border-radius: calc(15 / 750 * 100vw);
    margin-bottom: calc(30 / 750 * 100vw);
  }
}
.sec03__card.--card02 .sec03__card-body {
  flex: 1;
  padding-right: min(calc(567 / 1080 * 100vw), 567px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec03__card.--card02 .sec03__card-body {
    padding: 0 calc(60 / 750 * 100vw);
  }
}
.sec03__card-img {
  position: relative;
}
.sec03__card-img img {
  display: block;
}
.sec03__card-num {
  display: flex;
  align-items: baseline;
  margin-bottom: min(calc(15 / 1080 * 100vw), 15px);
}
@media screen and (max-width: 767px) {
  .sec03__card-num {
    margin-bottom: calc(15 / 750 * 100vw);
  }
}
.sec03__card-point {
  font-family: "Roboto", sans-serif;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  font-weight: 700;
  color: #14b4b4;
  letter-spacing: 0.05em;
  margin-right: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec03__card-point {
    font-size: calc(33 / 750 * 100vw);
    margin-right: calc(4 / 750 * 100vw);
  }
}
.sec03__card-number {
  font-family: "Roboto", sans-serif;
  font-size: min(calc(70 / 1080 * 100vw), 70px);
  font-weight: 700;
  color: #14b4b4;
  line-height: 0.7;
}
@media screen and (max-width: 767px) {
  .sec03__card-number {
    font-size: calc(88 / 750 * 100vw);
  }
}
.sec03__card-eyebrow {
  display: inline-block;
  margin-bottom: min(calc(18 / 1080 * 100vw), 18px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec03__card-eyebrow {
    margin-bottom: calc(24 / 750 * 100vw);
  }
}
.sec03__card-eyebrow-text {
  position: relative;
  display: block;
  width: fit-content;
  padding: min(calc(12 / 1080 * 100vw), 12px) min(calc(54 / 1080 * 100vw), 54px) min(calc(12 / 1080 * 100vw), 12px) min(calc(20 / 1080 * 100vw), 20px);
  background: var(--accnent-fc-8-b-28, #fc8b28);
  mask: url("../img/common/sec03_eyebrow_mask.svg") no-repeat center right/cover;
  overflow: hidden;
  color: #fff;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec03__card-eyebrow-text {
    font-size: calc(30 / 750 * 100vw);
    padding: calc(16 / 750 * 100vw) calc(60 / 750 * 100vw) calc(12 / 750 * 100vw) calc(33 / 750 * 100vw);
  }
}
.sec03__card-eyebrow-text span {
  font-size: min(calc(34 / 1080 * 100vw), 34px);
  line-height: 0.7;
  font-family: Roboto;
}
@media screen and (max-width: 767px) {
  .sec03__card-eyebrow-text span {
    font-size: calc(42 / 750 * 100vw);
  }
}
.sec03__card-title {
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  font-weight: 700;
  color: var(--text, #11a0a0);
  line-height: 1.5;
  margin-bottom: min(calc(24 / 1080 * 100vw), 24px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec03__card-title {
    font-size: calc(48 / 750 * 100vw);
    margin-bottom: calc(20 / 750 * 100vw);
  }
}
.sec03__card-text {
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 400;
  color: var(--accent-141-d-3-d, #141d3d);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec03__card-text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec03__footer {
  position: relative;
  background: #14b4b4;
  padding: min(calc(76 / 1080 * 100vw), 76px) 0 min(calc(120 / 1080 * 100vw), 120px);
  clip-path: polygon(0 0, 100% 0, 100% 81%, 50% 100%, 0 81%);
}
@media screen and (max-width: 767px) {
  .sec03__footer {
    padding: calc(68 / 750 * 100vw) 0 calc(509 / 750 * 100vw);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  }
}
.sec03__footer-desc {
  text-align: center;
  z-index: 2;
  position: relative;
  width: min(calc(840 / 1080 * 100vw), 840px);
  left: min(calc(120 / 1080 * 100vw), 120px);
  background: linear-gradient(to bottom, #fff 0%, #fff 18%, #f6ff4d 18%, #f6ff4d 56%, #fff 56%, #fff 100%);
  margin: 0 auto;
  position: relative;
  left: min(calc(180 / 1080 * 100vw), 180px);
  padding: min(calc(35 / 1080 * 100vw), 35px) 0;
  transform: skewX(-10deg);
  border-radius: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .sec03__footer-desc {
    width: calc(660 / 750 * 100vw);
    position: static;
    transform: skewX(-5deg);
    padding: calc(40 / 750 * 100vw) 0;
    background: linear-gradient(to bottom, #fff 0%, #fff 15%, #f6ff4d 15%, #f6ff4d 52%, #fff 52%, #fff 100%);
  }
}
.sec03__footer-desc-inner {
  transform: skewX(10deg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec03__footer-desc-inner {
    transform: skewX(5deg);
  }
}
.sec03__footer-label {
  margin-bottom: min(calc(6 / 1080 * 100vw), 6px);
  width: fit-content;
  padding: min(calc(4 / 1080 * 100vw), 4px) min(calc(73 / 1080 * 100vw), 73px);
  background: #141d3d;
  border-radius: min(calc(4 / 1080 * 100vw), 4px);
  transform: skew(-8deg);
}
@media screen and (max-width: 767px) {
  .sec03__footer-label {
    margin-bottom: 0;
    padding: 0 calc(108 / 750 * 100vw);
    border-radius: calc(8 / 750 * 100vw);
  }
}
.sec03__footer-label-inner {
  transform: skew(8deg);
}
.sec03__footer-label-check {
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  font-weight: 700;
  color: #fbff3e;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec03__footer-label-check {
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec03__footer-label-text {
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec03__footer-label-text {
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec03__footer-free-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: min(calc(47 / 1080 * 100vw), 47px);
}
@media screen and (max-width: 767px) {
  .sec03__footer-free-wrap {
    margin-bottom: calc(52 / 750 * 100vw);
  }
}
.sec03__footer-free {
  font-size: min(calc(74 / 1080 * 100vw), 74px);
  font-weight: 900;
  color: #11a0a0;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sec03__footer-free {
    font-size: calc(93 / 750 * 100vw);
  }
}
.sec03__footer-cta {
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 900;
  color: #141d3d;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec03__footer-cta {
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec03__footer-cta-highlight {
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  font-weight: 900;
  color: #11a0a0;
}
@media screen and (max-width: 767px) {
  .sec03__footer-cta-highlight {
    font-size: calc(46 / 750 * 100vw);
  }
}
.sec03__footer-cta-highlight span {
  font-size: min(calc(26 / 1080 * 100vw), 26px);
}
@media screen and (max-width: 767px) {
  .sec03__footer-cta-highlight span {
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec03__footer-obj {
  position: absolute;
  left: min(calc(295 / 1080 * 100vw), 295px);
  bottom: 0;
  width: min(calc(647.5 / 1080 * 100vw), 647.5px);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .sec03__footer-obj {
    width: 100%;
    left: 0;
  }
}

.sec04 {
  background: var(--base02, #e9f1f1);
}
.sec04__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: min(calc(96 / 1080 * 100vw), 96px) 0 min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .sec04__head {
    padding: calc(85 / 750 * 100vw) 0 calc(144 / 750 * 100vw);
  }
}
.sec04__lead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(432 / 1080 * 100vw), 432px);
  height: min(calc(62 / 1080 * 100vw), 62px);
  background-color: #141d3d;
}
@media screen and (max-width: 767px) {
  .sec04__lead {
    width: calc(540 / 750 * 100vw);
    height: calc(78 / 750 * 100vw);
  }
}
.sec04__lead::after {
  content: "";
  position: absolute;
  bottom: max(calc(-20 / 1080 * 100vw), -20px);
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(34 / 1080 * 100vw), 34px);
  aspect-ratio: 34/26;
  background-color: #141d3d;
  clip-path: polygon(10% 0, 100% 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .sec04__lead::after {
    bottom: calc(-22 / 750 * 100vw);
    width: calc(42 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
}
.sec04__lead-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  color: #fbff3e;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec04__lead-text {
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec04__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  margin-top: min(calc(20 / 1080 * 100vw), 20px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec04__title {
    flex-direction: column;
    align-items: center;
    margin-top: calc(44 / 750 * 100vw);
  }
}
.sec04__title-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.sec04__title-normal {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: min(calc(54 / 1080 * 100vw), 54px);
  color: #11a0a0;
  letter-spacing: 0.07em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec04__title-normal {
    font-size: calc(56 / 750 * 100vw);
  }
}
.sec04__title-emphasis {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: min(calc(64 / 1080 * 100vw), 64px);
  color: #11a0a0;
  letter-spacing: 0.07em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec04__title-emphasis {
    font-size: calc(64 / 750 * 100vw);
  }
}
.sec04__title-marker {
  position: relative;
}
.sec04__title-marker::before {
  content: "";
  position: absolute;
  bottom: min(calc(5 / 1080 * 100vw), 5px);
  left: 0;
  width: min(calc(403 / 1080 * 100vw), 403px);
  height: min(calc(20 / 1080 * 100vw), 20px);
  background-color: #fbff3e;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec04__title-marker::before {
    bottom: calc(8 / 750 * 100vw);
    width: calc(533 / 750 * 100vw);
    height: calc(26 / 750 * 100vw);
  }
}
.sec04__title-marker > span {
  padding: relative;
  z-index: 2;
}
.sec04__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 min(calc(40 / 1080 * 100vw), 40px) min(calc(120 / 1080 * 100vw), 120px);
  gap: min(calc(38 / 1080 * 100vw), 38px);
}
@media screen and (max-width: 767px) {
  .sec04__cards {
    padding: 0 calc(30 / 750 * 100vw) calc(153 / 750 * 100vw);
    gap: calc(48 / 750 * 100vw);
  }
}
.sec04__card-item {
  position: relative;
  width: min(calc(1080 / 1080 * 100vw), 1080px);
  background-color: #fff;
  border-radius: min(calc(16 / 1080 * 100vw), 16px);
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  padding: min(calc(40 / 1080 * 100vw), 40px) min(calc(40 / 1080 * 100vw), 40px) min(calc(40 / 1080 * 100vw), 40px) min(calc(80 / 1080 * 100vw), 80px);
}
@media screen and (max-width: 767px) {
  .sec04__card-item {
    width: 100%;
    border-radius: calc(20 / 750 * 100vw);
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.16);
    padding: calc(80 / 750 * 100vw) calc(30 / 750 * 100vw) calc(48 / 750 * 100vw);
  }
  .sec04__card-item:not(:first-child) {
    margin-top: calc(56 / 750 * 100vw);
  }
}
.sec04__card-num {
  position: absolute;
  top: max(calc(-64 / 1080 * 100vw), -64px);
  left: min(calc(38 / 1080 * 100vw), 38px);
  width: min(calc(125 / 1080 * 100vw), 125px);
  height: min(calc(128 / 1080 * 100vw), 128px);
  background: url(../img/common/sec04_num_img.webp) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .sec04__card-num {
    top: calc(-80 / 750 * 100vw);
    left: calc(30 / 750 * 100vw);
    width: calc(156 / 750 * 100vw);
    height: calc(160 / 750 * 100vw);
  }
}
.sec04__card-num img {
  display: block;
  width: 100%;
  height: auto;
}
.sec04__card-num-text {
  position: absolute;
  top: min(calc(22 / 1080 * 100vw), 22px);
  right: min(calc(21 / 1080 * 100vw), 21px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec04__card-num-text {
    top: calc(28 / 750 * 100vw);
    right: calc(26 / 750 * 100vw);
  }
}
.sec04__card-num-step {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  color: #11a0a0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec04__card-num-step {
    font-size: calc(30 / 750 * 100vw);
  }
}
.sec04__card-num-number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(calc(42 / 1080 * 100vw), 42px);
  color: #11a0a0;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .sec04__card-num-number {
    font-size: calc(52 / 750 * 100vw);
  }
}
.sec04__card-content {
  display: flex;
  gap: min(calc(32 / 1080 * 100vw), 32px);
}
@media screen and (max-width: 767px) {
  .sec04__card-content {
    flex-direction: column;
    gap: calc(64 / 750 * 100vw);
  }
}
.sec04__card-desc {
  display: flex;
  flex-direction: column;
  gap: min(calc(14 / 1080 * 100vw), 14px);
  width: min(calc(428 / 1080 * 100vw), 428px);
  margin-top: min(calc(28 / 1080 * 100vw), 28px);
}
@media screen and (max-width: 767px) {
  .sec04__card-desc {
    width: 100%;
    gap: calc(16 / 750 * 100vw);
  }
}
.sec04__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  color: #11a0a0;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .sec04__card-title {
    font-size: calc(48 / 750 * 100vw);
  }
}
.sec04__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #141d3d;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .sec04__card-text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec04__card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: auto;
  width: min(calc(404 / 1080 * 100vw), 404px);
  height: min(calc(70 / 1080 * 100vw), 70px);
  background: #fc8b28;
  border-radius: min(calc(50 / 1080 * 100vw), 50px);
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.25));
  text-decoration: none;
  transition: transform 0.2s;
}
@media screen and (max-width: 767px) {
  .sec04__card-cta {
    margin-top: calc(16 / 750 * 100vw);
    width: 100%;
    height: calc(120 / 750 * 100vw);
    border-radius: calc(80 / 750 * 100vw);
  }
}
.sec04__card-cta:hover {
  transform: translateY(min(calc(3 / 1080 * 100vw), 3px));
}
@media screen and (max-width: 767px) {
  .sec04__card-cta:hover {
    transform: translateY(calc(4 / 750 * 100vw));
  }
}
.sec04__card-cta-badge {
  position: absolute;
  left: min(calc(5 / 1080 * 100vw), 5px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(60 / 1080 * 100vw), 60px);
  height: min(calc(60 / 1080 * 100vw), 60px);
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .sec04__card-cta-badge {
    left: calc(13 / 750 * 100vw);
    width: calc(94 / 750 * 100vw);
    height: calc(94 / 750 * 100vw);
  }
}
.sec04__card-cta-badge-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  color: #fc8b28;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec04__card-cta-badge-text {
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec04__card-cta-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-left: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec04__card-cta-text {
    font-size: calc(30 / 750 * 100vw);
    margin-left: calc(20 / 750 * 100vw);
  }
}
.sec04__card-cta-icon {
  position: absolute;
  top: 50%;
  right: min(calc(16 / 1080 * 100vw), 16px);
  transform: translateY(-50%);
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(20 / 1080 * 100vw), 20px);
  background: url("../img/common/cta-icon_orange.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .sec04__card-cta-icon {
    right: calc(24 / 750 * 100vw);
    width: calc(30 / 750 * 100vw);
    height: calc(30 / 750 * 100vw);
  }
}
.sec04__video {
  width: min(calc(500 / 1080 * 100vw), 500px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec04__video {
    width: 100%;
  }
}
.sec04__video video {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .sec04__video video {
    border-radius: calc(5 / 750 * 100vw);
  }
}
.sec04__card-annotation {
  display: flex;
  align-items: center;
  width: min(calc(920 / 1080 * 100vw), 920px);
  gap: min(calc(40 / 1080 * 100vw), 40px);
  margin-top: min(calc(60 / 1080 * 100vw), 60px);
  padding: min(calc(24 / 1080 * 100vw), 24px) min(calc(71 / 1080 * 100vw), 71px) min(calc(24 / 1080 * 100vw), 24px);
  background-color: #14b4b4;
  border-radius: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .sec04__card-annotation {
    flex-direction: row;
    gap: calc(26 / 750 * 100vw);
    margin-top: calc(64 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(40 / 750 * 100vw);
    border-radius: calc(25 / 750 * 100vw);
  }
}
.sec04__card-annotation-icon {
  flex-shrink: 0;
  width: min(calc(40 / 1080 * 100vw), 40px);
  aspect-ratio: 40/75;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .sec04__card-annotation-icon {
    width: calc(43 / 750 * 100vw);
    aspect-ratio: 43/87;
  }
}
.sec04__card-annotation-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec04__card-annotation-text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec04__card-arrow {
  display: flex;
  justify-content: center;
}
.sec04__card-arrow img {
  width: min(calc(225 / 1080 * 100vw), 225px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec04__card-arrow img {
    width: calc(282 / 750 * 100vw);
  }
}
.sec04__annotation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: min(calc(78 / 1080 * 100vw), 78px) 0 min(calc(59 / 1080 * 100vw), 59px);
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec04__annotation {
    padding: calc(90 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
  }
}
.sec04__annotation-icon {
  display: flex;
  justify-content: center;
  margin-bottom: min(calc(22 / 1080 * 100vw), 22px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .sec04__annotation-icon {
    margin-bottom: calc(24 / 750 * 100vw);
  }
}
.sec04__annotation-icon img {
  width: min(calc(113 / 1080 * 100vw), 113px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec04__annotation-icon img {
    width: calc(140 / 750 * 100vw);
  }
}
.sec04__annotation-heading {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: min(calc(54 / 1080 * 100vw), 54px);
  color: #141d3d;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec04__annotation-heading {
    width: calc(690 / 750 * 100vw);
    font-size: calc(64 / 750 * 100vw);
  }
}
.sec04__annotation-text {
  display: inline;
}
.sec04__annotation-highlight {
  position: relative;
  display: inline;
  background: var(--accent-ffe-041, #ffe041);
  padding: 0 min(calc(4 / 1080 * 100vw), 4px);
}

.sec05 {
  position: relative;
  background: var(--base01, #14b4b4);
  padding: 0 0 min(calc(120 / 1080 * 100vw), 120px);
}
@media screen and (max-width: 767px) {
  .sec05 {
    padding: 0 0 calc(346 / 750 * 100vw);
  }
}
.sec05__label {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.sec05__label::after {
  content: "";
  display: block;
  background: var(--main-14-b-4-b-4, #14b4b4);
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, min(calc(715 / 1080 * 100vw), 715px) 0, 50% 100%, min(calc(1210 / 1080 * 100vw), 1210px) 0, 100% 0, 100% 105%, 0 105%);
}
@media screen and (max-width: 767px) {
  .sec05__label::after {
    clip-path: polygon(0 0, calc(60 / 750 * 100vw) 0, 50% 100%, calc(689 / 750 * 100vw) 0, 100% 0, 100% 105%, 0 105%);
  }
}
.sec05__label-text {
  display: block;
  color: var(--text, #11a0a0);
  padding: min(calc(9 / 1080 * 100vw), 9px) max(calc(0 / 1080 * 100vw), 0px) min(calc(38 / 1080 * 100vw), 38px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec05__label-text {
    padding: calc(11 / 750 * 100vw) 0 calc(46 / 750 * 100vw);
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec05__card {
  max-width: min(calc(1080 / 1080 * 100vw), 1080px);
  margin: min(calc(50 / 1080 * 100vw), 50px) auto 0;
  background: #fff;
  border-radius: min(calc(20 / 1080 * 100vw), 20px);
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec05__card {
    margin: calc(76 / 750 * 100vw) auto 0;
    border-radius: calc(20 / 750 * 100vw);
    width: calc(690 / 750 * 100vw);
  }
}
.sec05__card-header {
  padding: min(calc(38 / 1080 * 100vw), 38px) 0 min(calc(26 / 1080 * 100vw), 26px);
}
@media screen and (max-width: 767px) {
  .sec05__card-header {
    padding: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw) calc(18 / 750 * 100vw);
  }
}
.sec05__card-title {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text, #11a0a0);
  font-weight: 900;
  font-size: min(calc(64 / 1080 * 100vw), 64px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec05__card-title {
    font-size: calc(72 / 750 * 100vw);
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
.sec05__card-title-text {
  font-size: min(calc(42 / 1080 * 100vw), 42px);
  color: var(--accent-141-d-3-d, #141d3d);
  background: none;
}
@media screen and (max-width: 767px) {
  .sec05__card-title-text {
    font-size: calc(52 / 750 * 100vw);
  }
}
.sec05__card-title-highlight {
  position: relative;
  display: inline;
  background: linear-gradient(transparent 80%, var(--accent-ffe-041, #fbff3e) 80%);
}
@media screen and (max-width: 767px) {
  .sec05__card-title-highlight {
    background: linear-gradient(transparent 70%, var(--accent-ffe-041, #fbff3e) 80%);
  }
}
.sec05__card-subtitle {
  margin-top: min(calc(8 / 1080 * 100vw), 8px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  color: #141d3d;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec05__card-subtitle {
    margin-top: calc(16 / 750 * 100vw);
    font-size: calc(50 / 750 * 100vw);
    text-align: center;
  }
}
.sec05__card-list {
  display: flex;
  flex-direction: column;
  gap: min(calc(50 / 1080 * 100vw), 50px);
  background: #ddf3f3;
  padding: min(calc(43 / 1080 * 100vw), 43px) 0 min(calc(70 / 1080 * 100vw), 70px);
  border-radius: 0 0 min(calc(20 / 1080 * 100vw), 20px) min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .sec05__card-list {
    padding: calc(56 / 750 * 100vw) calc(30 / 750 * 100vw) calc(250 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
    border-radius: 0 0 calc(15 / 750 * 100vw) calc(15 / 750 * 100vw);
  }
}
.sec05__card-list-item {
  display: flex;
  align-items: center;
  gap: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .sec05__card-list-item {
    gap: calc(16 / 750 * 100vw);
    align-items: flex-start;
  }
}
.sec05__list-number {
  position: relative;
  display: flex;
  align-items: center;
  width: min(calc(166 / 1080 * 100vw), 166px);
  aspect-ratio: 166/70;
  background: #333;
  mask: url("../img/common/sec05_title-mask.svg") no-repeat center right/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec05__list-number {
    width: calc(208 / 750 * 100vw);
    aspect-ratio: 208/88;
  }
}
.sec05__list-number span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(calc(50 / 1080 * 100vw), 50px);
  font-style: italic;
  color: var(--accent-fbff-3-e, #fbff3e);
  line-height: 1;
  margin-left: min(calc(22 / 1080 * 100vw), 22px);
}
@media screen and (max-width: 767px) {
  .sec05__list-number span {
    font-size: calc(62 / 750 * 100vw);
    margin-left: calc(26 / 750 * 100vw);
  }
}
.sec05__list-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  color: #141d3d;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec05__list-text {
    font-size: calc(45 / 750 * 100vw);
    flex: 1;
  }
}
.sec05__list-text.--s {
  font-size: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .sec05__list-text.--s {
    font-size: calc(36 / 750 * 100vw);
  }
}
.sec05__list-text-highlight {
  color: var(--accnent-fc-8-b-28, #11a0a0);
  font-size: min(calc(36 / 1080 * 100vw), 36px);
}
@media screen and (max-width: 767px) {
  .sec05__list-text-highlight {
    font-size: calc(45 / 750 * 100vw);
  }
}
.sec05__card-img {
  flex-shrink: 0;
  width: min(calc(358 / 1080 * 100vw), 358px);
  position: absolute;
  right: max(calc(-28 / 1080 * 100vw), -28px);
  bottom: max(calc(-90 / 1080 * 100vw), -90px);
}
@media screen and (max-width: 767px) {
  .sec05__card-img {
    width: calc(448 / 750 * 100vw);
    text-align: center;
    right: inherit;
    left: 50%;
    bottom: calc(-254 / 750 * 100vw);
    transform: translate(-50%, 0);
  }
}
.sec05__card-img img {
  width: 100%;
  height: auto;
}

.sec06 {
  background: var(--base02, #e9f1f1);
  padding: min(calc(66 / 1080 * 100vw), 66px) 0;
}
@media screen and (max-width: 767px) {
  .sec06 {
    padding: calc(80 / 750 * 100vw) 0;
  }
}
.sec06__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  color: var(--text, #11a0a0);
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: min(calc(45 / 1080 * 100vw), 45px);
}
@media screen and (max-width: 767px) {
  .sec06__title {
    font-size: calc(56 / 750 * 100vw);
    margin-bottom: calc(32 / 750 * 100vw);
  }
}
.sec06__main {
  width: min(calc(1080 / 1080 * 100vw), 1080px);
  margin: 0 auto;
  border-radius: min(calc(16 / 1080 * 100vw), 16px);
  background: #fff;
  box-shadow: min(calc(4 / 1080 * 100vw), 4px) min(calc(4 / 1080 * 100vw), 4px) min(calc(16 / 1080 * 100vw), 16px) 0 rgba(0, 0, 0, 0.16);
  padding: min(calc(110 / 1080 * 100vw), 110px) min(calc(60 / 1080 * 100vw), 60px) min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .sec06__main {
    width: calc(690 / 750 * 100vw);
    padding: calc(122 / 750 * 100vw) calc(30 / 750 * 100vw) calc(48 / 750 * 100vw);
  }
}
.sec06__cards {
  display: flex;
  flex-direction: column;
  gap: min(calc(113 / 1080 * 100vw), 113px);
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec06__cards {
    gap: calc(96 / 750 * 100vw);
    width: 100%;
  }
}
.sec06__row {
  display: flex;
  gap: min(calc(22 / 1080 * 100vw), 22px);
}
@media screen and (max-width: 767px) {
  .sec06__row {
    flex-direction: column;
    gap: calc(24 / 750 * 100vw);
  }
}
.sec06__row.--row-3 {
  gap: min(calc(54 / 1080 * 100vw), 54px);
}
@media screen and (max-width: 767px) {
  .sec06__row.--row-3 {
    gap: calc(96 / 750 * 100vw);
  }
}
.sec06__row.--row-3 .sec06__card {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .sec06__row.--row-4 {
    flex-wrap: wrap;
    flex-direction: row;
    gap: calc(96 / 750 * 100vw) calc(24 / 750 * 100vw);
  }
}
.sec06__row.--row-4 .sec06__card {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .sec06__row.--row-4 .sec06__card {
    flex: auto;
    width: calc(50% - calc(12 / 750 * 100vw));
  }
}
.sec06__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: min(calc(70 / 1080 * 100vw), 70px) min(calc(20 / 1080 * 100vw), 20px) min(calc(30 / 1080 * 100vw), 30px);
  background: #fff;
  border: min(calc(3 / 1080 * 100vw), 3px) solid var(--base01, #14b4b4);
  border-radius: min(calc(8 / 1080 * 100vw), 8px);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec06__card {
    padding: calc(80 / 750 * 100vw) 0 calc(48 / 750 * 100vw);
    border-width: calc(4 / 750 * 100vw);
    border-radius: calc(10 / 750 * 100vw);
  }
}
.sec06__card-icon {
  width: min(calc(110 / 1080 * 100vw), 110px);
  height: min(calc(110 / 1080 * 100vw), 110px);
  margin-bottom: min(calc(8 / 1080 * 100vw), 8px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .sec06__card-icon {
    width: calc(140 / 750 * 100vw);
    height: calc(140 / 750 * 100vw);
    margin-bottom: calc(12 / 750 * 100vw);
  }
}
.sec06__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sec06__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  color: var(--sub01-11-a-0-a-0, #11a0a0);
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec06__card-title {
    font-size: calc(32 / 750 * 100vw);
    margin-bottom: calc(4 / 750 * 100vw);
  }
}
.sec06__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .sec06__card-list {
    display: block;
  }
}
.sec06__card-list li {
  display: flex;
  align-items: center;
  gap: min(calc(6 / 1080 * 100vw), 6px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #141d3d;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .sec06__card-list li {
    gap: calc(8 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
    display: inline-flex;
    margin: 0 calc(4 / 750 * 100vw);
  }
}
.sec06__card-check {
  display: inline-block;
  width: min(calc(18 / 1080 * 100vw), 18px);
  height: min(calc(18 / 1080 * 100vw), 18px);
  background: var(--sub01-11-a-0-a-0, #11a0a0);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec06__card-check {
    width: calc(24 / 750 * 100vw);
    height: calc(24 / 750 * 100vw);
  }
}
.sec06__card-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: min(calc(5 / 1080 * 100vw), 5px);
  height: min(calc(9 / 1080 * 100vw), 9px);
  border-right: min(calc(2 / 1080 * 100vw), 2px) solid #fff;
  border-bottom: min(calc(2 / 1080 * 100vw), 2px) solid #fff;
}
@media screen and (max-width: 767px) {
  .sec06__card-check::after {
    width: calc(7 / 750 * 100vw);
    height: calc(12 / 750 * 100vw);
    border-right-width: calc(3 / 750 * 100vw);
    border-bottom-width: calc(3 / 750 * 100vw);
  }
}
.sec06__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #141d3d;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec06__card-text {
    font-size: calc(24 / 750 * 100vw);
  }
}
.sec06__card-text-link {
  color: var(--sub01-11-a-0-a-0, #11a0a0);
}

.sec07 {
  background: #fff;
  padding: min(calc(70 / 1080 * 100vw), 70px) 0 min(calc(102 / 1080 * 100vw), 102px);
}
@media screen and (max-width: 767px) {
  .sec07 {
    padding: calc(80 / 750 * 100vw) 0;
  }
}
.sec07__label {
  text-align: center;
  margin-bottom: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec07__label {
    margin-bottom: calc(16 / 750 * 100vw);
  }
}
.sec07__label-text {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  color: var(--text, #11a0a0);
  letter-spacing: 0.08em;
  line-height: 1.6;
  border-bottom: min(calc(3 / 1080 * 100vw), 3px) solid var(--text, #11a0a0);
  padding-bottom: min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .sec07__label-text {
    font-size: calc(32 / 750 * 100vw);
    border-bottom-width: calc(4 / 750 * 100vw);
    padding-bottom: calc(4 / 750 * 100vw);
  }
}
.sec07__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: min(calc(57 / 1080 * 100vw), 57px);
}
@media screen and (max-width: 767px) {
  .sec07__title {
    font-size: calc(56 / 750 * 100vw);
    margin-bottom: calc(40 / 750 * 100vw);
  }
}
.sec07__list {
  display: flex;
  flex-direction: column;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  width: min(calc(1000 / 1080 * 100vw), 1000px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec07__list {
    gap: calc(32 / 750 * 100vw);
    width: calc(690 / 750 * 100vw);
  }
}
.sec07__item {
  background: #f5f5f5;
  border-radius: min(calc(10 / 1080 * 100vw), 10px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec07__item {
    border-radius: calc(10 / 750 * 100vw);
  }
}
.sec07__header {
  position: relative;
  cursor: pointer;
}
.sec07__header::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: min(calc(65 / 1080 * 100vw), 65px);
  transform: translateY(-50%);
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(12 / 1080 * 100vw), 12px);
  background-image: url("../img/common/icon_arrow_green.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .sec07__header::after {
    right: calc(30 / 750 * 100vw);
    width: calc(24 / 750 * 100vw);
    height: calc(14 / 750 * 100vw);
  }
}
.sec07__header.--open::after {
  transform: translateY(-50%) rotate(180deg);
}
.sec07__header-inner {
  display: flex;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
  padding: min(calc(34 / 1080 * 100vw), 34px) min(calc(85 / 1080 * 100vw), 85px) min(calc(34 / 1080 * 100vw), 34px) min(calc(64 / 1080 * 100vw), 64px);
}
@media screen and (max-width: 767px) {
  .sec07__header-inner {
    gap: calc(16 / 750 * 100vw);
    padding: calc(30 / 750 * 100vw) calc(100 / 750 * 100vw) calc(30 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}
.sec07__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(44 / 1080 * 100vw), 44px);
  height: min(calc(44 / 1080 * 100vw), 44px);
  background: var(--base01, #14b4b4);
  border-radius: 50%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  color: #fff;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec07__icon {
    width: calc(55 / 750 * 100vw);
    height: calc(55 / 750 * 100vw);
    font-size: calc(37 / 750 * 100vw);
  }
}
.sec07__question {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec07__question {
    font-size: calc(24 / 750 * 100vw);
  }
}
.sec07__body {
  display: none;
  padding: 0 min(calc(64 / 1080 * 100vw), 64px) min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .sec07__body {
    padding: 0 calc(64 / 750 * 100vw) calc(34 / 750 * 100vw);
  }
}
.sec07__body-inner {
  padding: min(calc(24 / 1080 * 100vw), 24px) 0 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .sec07__body-inner {
    padding: calc(24 / 750 * 100vw) 0 0;
  }
}
.sec07__answer {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec07__answer {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec08 {
  position: relative;
  overflow: hidden;
}
.sec08__bg {
  position: static;
  width: 100%;
}
.sec08__bg img {
  display: block;
  width: 100%;
  height: auto;
}
.sec08__main {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: min(calc(1080 / 1080 * 100vw), 1080px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec08__main {
    justify-content: center;
    align-items: flex-end;
    width: 100%;
  }
}
.sec08__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(calc(540 / 1080 * 100vw), 540px);
}
@media screen and (max-width: 767px) {
  .sec08__inner {
    width: calc(630 / 750 * 100vw);
    align-items: center;
    padding-bottom: calc(80 / 750 * 100vw);
  }
}
.sec08__title {
  display: flex;
  flex-direction: column;
  margin-bottom: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .sec08__title {
    align-items: center;
    margin-bottom: calc(24 / 750 * 100vw);
  }
}
.sec08__title-line {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: min(calc(44 / 1080 * 100vw), 44px);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 767px) {
  .sec08__title-line {
    font-size: calc(52 / 750 * 100vw);
    text-align: center;
  }
}
.sec08__title-line.--txt-small {
  font-size: min(calc(38 / 1080 * 100vw), 38px);
}
@media screen and (max-width: 767px) {
  .sec08__title-line.--txt-small {
    font-size: calc(48 / 750 * 100vw);
  }
}
.sec08__title-line.--highlight {
  position: relative;
  display: inline-block;
  color: #fbff3e;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-size: min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .sec08__title-line.--highlight {
    font-size: calc(72 / 750 * 100vw);
  }
}
.sec08__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: min(calc(20 / 1080 * 100vw), 20px);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 767px) {
  .sec08__subtitle {
    font-size: calc(32 / 750 * 100vw);
    text-align: center;
    margin-bottom: calc(40 / 750 * 100vw);
  }
}
.sec08__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: min(calc(490 / 1080 * 100vw), 490px);
  height: min(calc(86 / 1080 * 100vw), 86px);
  background: #fc8b28;
  border-radius: min(calc(60 / 1080 * 100vw), 60px);
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.25));
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media screen and (max-width: 767px) {
  .sec08__cta {
    width: calc(630 / 750 * 100vw);
    height: calc(120 / 750 * 100vw);
    border-radius: calc(80 / 750 * 100vw);
    filter: drop-shadow(0 2.5px 17.5px rgba(0, 0, 0, 0.25));
  }
}
.sec08__cta:hover {
  transform: translateY(min(calc(4 / 1080 * 100vw), 4px));
  box-shadow: 0 min(calc(4 / 1080 * 100vw), 4px) 0 0 #bd5f0e;
}
@media screen and (max-width: 767px) {
  .sec08__cta:hover {
    transform: translateY(calc(5 / 750 * 100vw));
    box-shadow: 0 calc(5 / 750 * 100vw) 0 0 #bd5f0e;
  }
}
.sec08__cta:active {
  transform: translateY(min(calc(8 / 1080 * 100vw), 8px));
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .sec08__cta:active {
    transform: translateY(calc(10 / 750 * 100vw));
  }
}
.sec08__cta-badge {
  position: absolute;
  left: min(calc(6 / 1080 * 100vw), 6px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(74 / 1080 * 100vw), 74px);
  height: min(calc(74 / 1080 * 100vw), 74px);
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .sec08__cta-badge {
    left: calc(13 / 750 * 100vw);
    width: calc(94 / 750 * 100vw);
    height: calc(94 / 750 * 100vw);
  }
}
.sec08__cta-badge-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  color: #fc8b28;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec08__cta-badge-text {
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec08__cta-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-left: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .sec08__cta-text {
    font-size: calc(30 / 750 * 100vw);
    margin-left: calc(26 / 750 * 100vw);
  }
}
.sec08__cta-icon {
  position: absolute;
  top: 50%;
  right: min(calc(20 / 1080 * 100vw), 20px);
  transform: translateY(-50%);
  width: min(calc(24.5 / 1080 * 100vw), 24.5px);
  height: min(calc(24.5 / 1080 * 100vw), 24.5px);
  background: url("../img/common/cta-icon_orange.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .sec08__cta-icon {
    right: calc(28 / 750 * 100vw);
    width: calc(30 / 750 * 100vw);
    height: calc(30 / 750 * 100vw);
  }
}

.cv01 {
  background-color: #fff;
  padding: min(calc(48 / 1080 * 100vw), 48px) 0 min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .cv01 {
    padding: calc(64 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
  }
}
.cv01__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(calc(1080 / 1080 * 100vw), 1080px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cv01__inner {
    width: 100%;
    padding: 0 calc(30 / 750 * 100vw);
  }
}
.cv01__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  color: #11a0a0;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .cv01__heading {
    font-size: calc(40 / 750 * 100vw);
  }
}
.cv01__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: min(calc(27 / 1080 * 100vw), 27px);
  width: min(calc(490 / 1080 * 100vw), 490px);
  height: min(calc(86 / 1080 * 100vw), 86px);
  background: #FC8B28;
  border-radius: min(calc(60 / 1080 * 100vw), 60px);
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.25));
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media screen and (max-width: 767px) {
  .cv01__cta {
    margin-top: calc(32 / 750 * 100vw);
    width: calc(630 / 750 * 100vw);
    height: calc(120 / 750 * 100vw);
    border-radius: calc(80 / 750 * 100vw);
    filter: drop-shadow(0 2.5px 17.5px rgba(0, 0, 0, 0.25));
  }
}
.cv01__cta:hover {
  transform: translateY(min(calc(4 / 1080 * 100vw), 4px));
  box-shadow: 0 min(calc(4 / 1080 * 100vw), 4px) 0 0 #bd5f0e;
}
@media screen and (max-width: 767px) {
  .cv01__cta:hover {
    transform: translateY(calc(5 / 750 * 100vw));
    box-shadow: 0 calc(5 / 750 * 100vw) 0 0 #bd5f0e;
  }
}
.cv01__cta:active {
  transform: translateY(min(calc(8 / 1080 * 100vw), 8px));
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .cv01__cta:active {
    transform: translateY(calc(10 / 750 * 100vw));
  }
}
.cv01__cta-badge {
  position: absolute;
  left: min(calc(6 / 1080 * 100vw), 6px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(74 / 1080 * 100vw), 74px);
  height: min(calc(74 / 1080 * 100vw), 74px);
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .cv01__cta-badge {
    left: calc(13 / 750 * 100vw);
    width: calc(94 / 750 * 100vw);
    height: calc(94 / 750 * 100vw);
  }
}
.cv01__cta-badge-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  color: #fc8b28;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .cv01__cta-badge-text {
    font-size: calc(32 / 750 * 100vw);
  }
}
.cv01__cta-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-left: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .cv01__cta-text {
    font-size: calc(30 / 750 * 100vw);
    margin-left: calc(26 / 750 * 100vw);
  }
}
.cv01__cta-icon {
  position: absolute;
  top: 50%;
  right: min(calc(20 / 1080 * 100vw), 20px);
  transform: translateY(-50%);
  width: min(calc(24.5 / 1080 * 100vw), 24.5px);
  height: min(calc(24.5 / 1080 * 100vw), 24.5px);
  background: url("../img/common/cta-icon_orange.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv01__cta-icon {
    right: calc(28 / 750 * 100vw);
    width: calc(30 / 750 * 100vw);
    height: calc(30 / 750 * 100vw);
  }
}
/*# sourceMappingURL=lp.css.map */
