.adlp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(48 / 1080 * 100vw), 48px);
  padding: min(calc(80 / 1080 * 100vw), 80px) 0 min(calc(162 / 1080 * 100vw), 162px);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .adlp-footer {
    gap: calc(72 / 750 * 100vw);
    padding: calc(80 / 750 * 100vw) 0 calc(212 / 750 * 100vw);
  }
}
.adlp-footer__menu__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: min(calc(110 / 1080 * 100vw), 110px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__menu__wrapper {
    flex-direction: column;
    width: 100%;
    gap: calc(56 / 750 * 100vw);
  }
}
.adlp-footer__menu {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #165e58;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .adlp-footer__menu {
    font-size: calc(24 / 750 * 100vw);
  }
}
.adlp-footer__menu a {
  color: inherit;
  text-decoration: none;
}
.adlp-footer__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .adlp-footer__text {
    font-size: calc(20 / 750 * 100vw);
  }
}

.adlp-floating {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  background: var(--main-accent-base1, #fff);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: min(calc(16 / 1080 * 100vw), 16px) 0;
  z-index: 90;
  box-shadow: 0 max(calc(-4 / 1080 * 100vw), -4px) min(calc(16 / 1080 * 100vw), 16px) rgba(0, 0, 0, 0.1);
}
.adlp-floating.--show {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .adlp-floating {
    padding: calc(33 / 750 * 100vw) 0;
    box-shadow: 0 calc(-4 / 750 * 100vw) calc(16 / 750 * 100vw) rgba(0, 0, 0, 0.1);
  }
}
.adlp-floating__inner {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: min(calc(1080 / 1080 * 100vw), 1080px);
}
@media screen and (max-width: 767px) {
  .adlp-floating__inner {
    width: 100%;
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.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 {
  background: #fff;
}
.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;
}

.swiper .swiper-slide {
  height: auto;
}

.swiper .swiper-slide-item {
  height: 100%;
}

.cv01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: min(calc(30 / 1080 * 100vw), 30px) 0 min(calc(38 / 1080 * 100vw), 38px);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .cv01 {
    padding: calc(64 / 750 * 100vw) calc(30 / 750 * 100vw) calc(77 / 750 * 100vw);
  }
}
.cv01 .cv01__gift {
  position: relative;
  width: min(calc(567 / 1080 * 100vw), 567px);
  height: min(calc(203 / 1080 * 100vw), 203px);
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift {
    width: 100%;
    height: calc(309 / 750 * 100vw);
  }
}
.cv01 .cv01__gift::before {
  content: "";
  position: absolute;
  left: 0;
  top: min(calc(62 / 1080 * 100vw), 62px);
  width: 100%;
  height: min(calc(141 / 1080 * 100vw), 141px);
  background: #fef8ee;
  border-radius: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift::before {
    top: calc(56 / 750 * 100vw);
    height: calc(253 / 750 * 100vw);
    border-radius: calc(20 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-img {
  position: absolute;
  left: min(calc(17.14 / 1080 * 100vw), 17.14px);
  top: max(calc(-4.26 / 1080 * 100vw), -4.26px);
  width: min(calc(163.4 / 1080 * 100vw), 163.4px);
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-img {
    left: calc(-13.39 / 750 * 100vw);
    top: calc(-6.08 / 750 * 100vw);
    width: calc(233.54 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-img img {
  width: 100%;
  height: auto;
}
.cv01 .cv01__gift-badge {
  position: absolute;
  left: min(calc(229 / 1080 * 100vw), 229px);
  top: min(calc(20 / 1080 * 100vw), 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(236 / 1080 * 100vw), 236px);
  height: min(calc(71 / 1080 * 100vw), 71px);
  background: #00a496;
  border-radius: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-badge {
    left: calc(220 / 750 * 100vw);
    top: calc(12 / 750 * 100vw);
    width: calc(416 / 750 * 100vw);
    height: calc(115 / 750 * 100vw);
    border-radius: calc(20 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-badge::after {
  content: "";
  position: absolute;
  left: min(calc(88 / 1080 * 100vw), 88px);
  top: min(calc(48 / 1080 * 100vw), 48px);
  width: min(calc(70 / 1080 * 100vw), 70px);
  height: min(calc(42 / 1080 * 100vw), 42px);
  background: #00a496;
  clip-path: polygon(0% 100%, 34.286% 6.857%, 100% 0%);
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-badge::after {
    left: calc(173 / 750 * 100vw);
    top: calc(99 / 750 * 100vw);
    width: calc(70 / 750 * 100vw);
    height: calc(42 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-badge-text {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cv01 .cv01__gift-badge-a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-badge-a {
    font-size: calc(30 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-badge-b {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-badge-b {
    font-size: calc(34 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-list {
  position: absolute;
  left: min(calc(209 / 1080 * 100vw), 209px);
  top: min(calc(118 / 1080 * 100vw), 118px);
  display: flex;
  flex-direction: column;
  gap: min(calc(6 / 1080 * 100vw), 6px);
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-list {
    left: calc(196 / 750 * 100vw);
    top: calc(163 / 750 * 100vw);
    gap: calc(6 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-item {
  display: flex;
  align-items: flex-start;
  gap: min(calc(6 / 1080 * 100vw), 6px);
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-item {
    gap: calc(6 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-check {
  flex-shrink: 0;
  width: min(calc(26 / 1080 * 100vw), 26px);
  height: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-check {
    width: calc(40 / 750 * 100vw);
    height: calc(46 / 750 * 100vw);
  }
}
.cv01 .cv01__gift-check img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cv01 .cv01__gift-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .cv01 .cv01__gift-text {
    font-size: calc(24 / 750 * 100vw);
  }
}
.cv01 .cv-body {
  margin-top: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .cv01 .cv-body {
    margin-top: calc(33 / 750 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .cv01 .cv-body .cv-body__note {
    margin-top: min(calc(40 / 1080 * 100vw), 40px);
  }
}

.cv-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cv-body .cv-body__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cv-body .cv-body__catch {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0;
  }
}
.cv-body .cv-btn {
  margin-top: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .cv-body .cv-btn {
    margin-top: calc(22 / 750 * 100vw);
  }
}
.cv-body .cv-body__note {
  position: relative;
  width: min(calc(409 / 1080 * 100vw), 409px);
  margin-top: min(calc(29 / 1080 * 100vw), 29px);
  padding-bottom: min(calc(22.8 / 1080 * 100vw), 22.8px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cv-body .cv-body__note {
    width: calc(566 / 750 * 100vw);
    margin-top: calc(30 / 750 * 100vw);
    padding-bottom: calc(14.8 / 750 * 100vw);
  }
}
.cv-body .cv-body__note::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(calc(413 / 1080 * 100vw), 413px);
  height: min(calc(4 / 1080 * 100vw), 4px);
  background: url(../img/pc/cv_style1.webp) 50% 50%/100% 100% no-repeat;
}
@media screen and (max-width: 767px) {
  .cv-body .cv-body__note::after {
    width: calc(566 / 750 * 100vw);
    height: calc(6 / 750 * 100vw);
    background-image: url(../img/sp/cv_style1.webp);
  }
}
.cv-body .cv-body__note-a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .cv-body .cv-body__note-a {
    font-size: calc(26 / 750 * 100vw);
  }
}
.cv-body .cv-body__note-b {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #00a496;
}
@media screen and (max-width: 767px) {
  .cv-body .cv-body__note-b {
    font-size: calc(36 / 750 * 100vw);
  }
}

.cv-btn-wrapper {
  display: flex;
  justify-content: center;
  padding: min(calc(40 / 1080 * 100vw), 40px) 0;
}
@media screen and (max-width: 767px) {
  .cv-btn-wrapper {
    padding: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}

.cv-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(567 / 1080 * 100vw), 567px);
  background: linear-gradient(90deg, rgb(0, 168, 154) 55%, rgb(75, 220, 158) 100%);
  border-radius: min(calc(8 / 1080 * 100vw), 8px);
  box-shadow: 0px min(calc(8 / 1080 * 100vw), 8px) min(calc(24 / 1080 * 100vw), 24px) 0px rgba(22, 94, 88, 0.3);
  padding: min(calc(12 / 1080 * 100vw), 12px) 0 min(calc(18 / 1080 * 100vw), 18px);
  text-decoration: none;
  overflow: hidden;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 767px) {
  .cv-btn {
    width: 100%;
    max-width: calc(690 / 750 * 100vw);
    border-radius: calc(6 / 750 * 100vw);
    box-shadow: 0px calc(6 / 750 * 100vw) calc(18 / 750 * 100vw) 0px rgba(22, 94, 88, 0.3);
    padding: calc(16 / 750 * 100vw) 0 calc(24 / 750 * 100vw);
  }
}
.cv-btn:hover {
  filter: brightness(110%);
}
.cv-btn.--a {
  width: min(calc(596 / 1080 * 100vw), 596px);
  height: min(calc(85 / 1080 * 100vw), 85px);
  padding: 0;
  border-radius: min(calc(16 / 1080 * 100vw), 16px);
  background: linear-gradient(90deg, rgba(0, 168, 154, 0.5) 54.958%, rgba(75, 220, 158, 0.5) 100%), linear-gradient(90deg, rgb(0, 164, 150) 0%, rgb(0, 164, 150) 100%);
  box-shadow: 0 min(calc(4 / 1080 * 100vw), 4px) min(calc(4 / 1080 * 100vw), 4px) 0 rgba(0, 0, 0, 0.25);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .cv-btn.--a {
    width: calc(690 / 750 * 100vw);
    max-width: none;
    height: calc(151 / 750 * 100vw);
    border-radius: calc(20 / 750 * 100vw);
    box-shadow: 0 calc(4 / 750 * 100vw) calc(4 / 750 * 100vw) 0 rgba(0, 0, 0, 0.25);
  }
}
.cv-btn.--a::after {
  content: "";
  position: absolute;
  right: min(calc(25 / 1080 * 100vw), 25px);
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(11 / 1080 * 100vw), 11px);
  height: min(calc(19 / 1080 * 100vw), 19px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='19' viewBox='0 0 11 19' fill='none'%3E%3Cpath d='M0.730692 18.2693L9.49993 9.50007L0.730692 0.730836' stroke='white' stroke-width='2.06693'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
}
@media screen and (max-width: 767px) {
  .cv-btn.--a::after {
    right: calc(33 / 750 * 100vw);
    width: calc(25 / 750 * 100vw);
    height: calc(29 / 750 * 100vw);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='29' viewBox='0 0 25 29' fill='none'%3E%3Cpath d='M8.94842 27.5502L21.9985 14.5001L8.94842 1.45007' stroke='white' stroke-width='4.10123'/%3E%3C/svg%3E");
  }
}
.cv-btn.--b {
  width: min(calc(567 / 1080 * 100vw), 567px);
  height: min(calc(90 / 1080 * 100vw), 90px);
  padding: 0;
  border-radius: min(calc(6 / 1080 * 100vw), 6px);
  background: linear-gradient(90deg, rgba(0, 168, 154, 0.5) 54.958%, rgba(75, 220, 158, 0.5) 100%), linear-gradient(90deg, rgb(0, 164, 150) 0%, rgb(0, 164, 150) 100%);
  box-shadow: 0 min(calc(3 / 1080 * 100vw), 3px) min(calc(3 / 1080 * 100vw), 3px) 0 rgba(0, 0, 0, 0.25), 0 min(calc(6 / 1080 * 100vw), 6px) min(calc(18 / 1080 * 100vw), 18px) 0 rgba(22, 94, 88, 0.3);
}
@media screen and (max-width: 767px) {
  .cv-btn.--b {
    width: calc(690 / 750 * 100vw);
    max-width: none;
    height: calc(120 / 750 * 100vw);
    border-radius: calc(8 / 750 * 100vw);
    box-shadow: 0 calc(4 / 750 * 100vw) calc(4 / 750 * 100vw) 0 rgba(0, 0, 0, 0.25), 0 calc(8 / 750 * 100vw) calc(24 / 750 * 100vw) 0 rgba(22, 94, 88, 0.3);
  }
}
.cv-btn.--b::after {
  content: "";
  position: absolute;
  right: min(calc(34.5 / 1080 * 100vw), 34.5px);
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(15 / 1080 * 100vw), 15px);
  height: min(calc(21 / 1080 * 100vw), 21px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='21' viewBox='0 0 15 21' fill='none'%3E%3Cpath d='M0.954009 1.21412L13.3069 10.9199L0.954009 19.7434' stroke='white' stroke-width='3.08821' stroke-linejoin='round'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
}
@media screen and (max-width: 767px) {
  .cv-btn.--b::after {
    right: calc(27 / 750 * 100vw);
    width: calc(20 / 750 * 100vw);
    height: calc(28 / 750 * 100vw);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='28' viewBox='0 0 20 28' fill='none'%3E%3Cpath d='M1.27168 1.61888L17.7422 14.56L1.27168 26.3247' stroke='white' stroke-width='4.11764' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
.cv-btn.--b .cv-btn__label {
  left: min(calc(12 / 1080 * 100vw), 12px);
  top: max(calc(-24.75 / 1080 * 100vw), -24.75px);
  width: min(calc(76.5 / 1080 * 100vw), 76.5px);
  height: min(calc(98.25 / 1080 * 100vw), 98.25px);
  padding: 0 0 min(calc(14.75 / 1080 * 100vw), 14.75px);
  border-radius: min(calc(3 / 1080 * 100vw), 3px);
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  line-height: 1.45;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .cv-btn.--b .cv-btn__label {
    left: calc(16 / 750 * 100vw);
    top: calc(-33 / 750 * 100vw);
    width: calc(102 / 750 * 100vw);
    height: calc(131 / 750 * 100vw);
    padding: 0 0 calc(19 / 750 * 100vw);
    border-radius: calc(4 / 750 * 100vw);
    font-size: calc(40 / 750 * 100vw);
  }
}
.cv-btn.--b .cv-btn__text {
  position: absolute;
  left: min(calc(294 / 1080 * 100vw), 294px);
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: min(calc(27 / 1080 * 100vw), 27px);
  line-height: 1.2;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .cv-btn.--b .cv-btn__text {
    left: calc(345 / 750 * 100vw);
    font-size: calc(40 / 750 * 100vw);
    line-height: 1.2;
  }
}
.cv-btn.--b .cv-btn__text-line {
  font-size: inherit;
  letter-spacing: 0.08em;
}

.cv-btn.--a .cv-btn__text {
  position: absolute;
  left: min(calc(126 / 1080 * 100vw), 126px);
  top: min(calc(18 / 1080 * 100vw), 18px);
  display: block;
  width: min(calc(394 / 1080 * 100vw), 394px);
  font-size: inherit;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .cv-btn.--a .cv-btn__text {
    left: calc(230 / 750 * 100vw);
    top: calc(22 / 750 * 100vw);
    width: calc(342 / 750 * 100vw);
    line-height: 1.45;
  }
}

.cv-btn__text-a {
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .cv-btn__text-a {
    font-size: calc(32 / 750 * 100vw);
  }
}

.cv-btn__text-b {
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .cv-btn__text-b {
    font-size: calc(32 / 750 * 100vw);
  }
}

.cv-btn__text-c {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 700;
  letter-spacing: 0.055em;
}
@media screen and (max-width: 767px) {
  .cv-btn__text-c {
    font-size: calc(42 / 750 * 100vw);
    letter-spacing: 0.08em;
  }
}

.cv-btn__label {
  position: absolute;
  top: 0;
  left: min(calc(12 / 1080 * 100vw), 12px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(calc(76 / 1080 * 100vw), 76px);
  padding-bottom: min(calc(12 / 1080 * 100vw), 12px);
  background-color: #4bdc9e;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  font-weight: 700;
  line-height: 1;
  padding: min(calc(25 / 1080 * 100vw), 25px) 0 min(calc(25 / 1080 * 100vw), 25px);
  border-radius: 0 0 min(calc(4 / 1080 * 100vw), 4px) min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .cv-btn__label {
    width: calc(102 / 750 * 100vw);
    left: calc(16 / 750 * 100vw);
    padding: calc(30 / 750 * 100vw) 0 calc(30 / 750 * 100vw);
    font-size: calc(40 / 750 * 100vw);
    border-radius: 0 0 calc(4 / 750 * 100vw) calc(4 / 750 * 100vw);
  }
}

.cv-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cv-btn__text {
    font-size: calc(30 / 750 * 100vw);
    line-height: 1.2;
  }
}

.cv-btn__text-line {
  display: block;
}
.cv-btn__text-line:last-child {
  font-size: min(calc(27 / 1080 * 100vw), 27px);
}
@media screen and (max-width: 767px) {
  .cv-btn__text-line:last-child {
    font-size: calc(36 / 750 * 100vw);
  }
}

.cv-btn__arrow {
  position: absolute;
  right: min(calc(29 / 1080 * 100vw), 29px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(16 / 1080 * 100vw), 16px);
  aspect-ratio: 15/21;
}
@media screen and (max-width: 767px) {
  .cv-btn__arrow {
    right: calc(36 / 750 * 100vw);
    width: calc(20 / 750 * 100vw);
  }
}
.cv-btn__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cv02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: min(calc(31 / 1080 * 100vw), 31px) 0;
}
@media screen and (max-width: 767px) {
  .cv02 {
    padding: calc(33 / 750 * 100vw) 0;
  }
}
.cv02 .cv02__caution {
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin-top: min(calc(40 / 1080 * 100vw), 40px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #666;
}
@media screen and (max-width: 767px) {
  .cv02 .cv02__caution {
    width: calc(702 / 750 * 100vw);
    margin-top: calc(27 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.3;
  }
}

.sec01 {
  width: 100%;
  overflow: hidden;
}

.sec01__main {
  position: relative;
  width: 100%;
}

.sec01__main-bg {
  width: 100%;
}
.sec01__main-bg picture,
.sec01__main-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.sec01__main-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: min(calc(1080 / 1080 * 100vw), 1080px);
  margin: 0 auto;
  padding: min(calc(42 / 1080 * 100vw), 42px) min(calc(80 / 1080 * 100vw), 80px) 0;
}
@media screen and (max-width: 767px) {
  .sec01__main-inner {
    max-width: none;
    padding: calc(80 / 750 * 100vw) calc(30 / 750 * 100vw) 0;
  }
}

.sec01__head-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(797 / 1080 * 100vw), 797px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec01__head-outer {
    width: 100%;
    flex-direction: column;
  }
}

.sec01__eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec01__eyebrow-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sec01__eyebrow-text {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec01__eyebrow-line {
  margin-top: min(calc(2 / 1080 * 100vw), 2px);
}
@media screen and (max-width: 767px) {
  .sec01__eyebrow-line {
    margin-top: calc(4 / 750 * 100vw);
  }
}
.sec01__eyebrow-line img {
  width: min(calc(248 / 1080 * 100vw), 248px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec01__eyebrow-line img {
    width: calc(330 / 750 * 100vw);
  }
}

.sec01__title {
  display: flex;
  flex-direction: column;
  margin-top: min(calc(42 / 1080 * 100vw), 42px);
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec01__title {
    margin-top: calc(8 / 750 * 100vw);
  }
}

.sec01__title-dots {
  display: flex;
  justify-content: center;
  gap: min(calc(37 / 1080 * 100vw), 37px);
  margin-bottom: min(calc(4 / 1080 * 100vw), 4px);
  width: fit-content;
  margin-left: min(calc(20 / 1080 * 100vw), 20px);
  margin-bottom: max(calc(-8 / 1080 * 100vw), -8px);
}
@media screen and (max-width: 767px) {
  .sec01__title-dots {
    gap: calc(50 / 750 * 100vw);
    margin-left: calc(30 / 750 * 100vw);
    margin-bottom: calc(-6 / 750 * 100vw);
  }
}
.sec01__title-dots span {
  width: min(calc(8 / 1080 * 100vw), 8px);
  height: min(calc(8 / 1080 * 100vw), 8px);
  border-radius: 50%;
  background-color: #165e58;
}
@media screen and (max-width: 767px) {
  .sec01__title-dots span {
    width: calc(10 / 750 * 100vw);
    height: calc(10 / 750 * 100vw);
  }
}

.sec01__title-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(42 / 1080 * 100vw), 42px);
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sec01__title-text {
    font-size: calc(56 / 750 * 100vw);
  }
}
.sec01__title-text span {
  color: var(--main-accent-2-sub, #165e58);
  transform: skew(-15deg);
  display: inline-block;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
}
@media screen and (max-width: 767px) {
  .sec01__title-text span {
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec01__lead {
  display: flex;
  align-items: flex-start;
  width: min(calc(486 / 1080 * 100vw), 486px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01__lead {
    flex-direction: column;
    align-items: flex-end;
    margin-left: 0;
    width: 100%;
  }
}
.sec01__lead:before {
  content: "";
  position: absolute;
  top: -11%;
  left: 47%;
  transform: translateX(-50%);
  z-index: 1;
  width: min(calc(514 / 1080 * 100vw), 514px);
  aspect-ratio: 1028/719;
  background: url(../img/pc/sec01__lead-bg.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .sec01__lead:before {
    top: -19%;
    left: 52%;
    width: calc(732 / 750 * 100vw);
    aspect-ratio: 732/464;
    background: url(../img/sp/sec01__lead-bg.webp) center/cover no-repeat;
  }
}

.sec01__lead-text {
  width: min(calc(266 / 1080 * 100vw), 266px);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #165e58;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sec01__lead-text {
    width: calc(316 / 750 * 100vw);
    font-size: calc(42 / 750 * 100vw);
  }
}
.sec01__lead-text strong {
  color: #165e58;
}

.sec01__lists {
  display: flex;
  flex-direction: column;
  gap: min(calc(34 / 1080 * 100vw), 34px);
  background-color: #fff;
  box-shadow: 0px 0px min(calc(20 / 1080 * 100vw), 20px) 0px rgba(0, 0, 0, 0.1);
  padding: min(calc(30 / 1080 * 100vw), 30px) min(calc(80 / 1080 * 100vw), 80px);
  margin: min(calc(20 / 1080 * 100vw), 20px) auto 0;
  position: relative;
  z-index: 2;
  width: min(calc(797 / 1080 * 100vw), 797px);
}
@media screen and (max-width: 767px) {
  .sec01__lists {
    width: 100%;
    gap: calc(24 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) calc(23 / 750 * 100vw) calc(40 / 750 * 100vw) calc(29 / 750 * 100vw);
    margin-top: calc(40 / 750 * 100vw);
  }
}

.sec01__list {
  display: flex;
  align-items: center;
  gap: min(calc(11 / 1080 * 100vw), 11px);
}
@media screen and (max-width: 767px) {
  .sec01__list {
    align-items: flex-start;
    gap: calc(11 / 750 * 100vw);
  }
}

.sec01__list-icon {
  flex-shrink: 0;
  width: min(calc(34 / 1080 * 100vw), 34px);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .sec01__list-icon {
    width: calc(34 / 750 * 100vw);
    margin-top: calc(10 / 750 * 100vw);
  }
}
.sec01__list-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec01__list-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec01__list-text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec01__list-text b {
  font-weight: 700;
  color: #165e58;
}
@media screen and (max-width: 767px) {
  .sec01__list-text b span {
    font-weight: 400;
    color: #333;
  }
}

.sec01__conjuction {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: min(calc(40 / 1080 * 100vw), 40px);
  padding-bottom: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec01__conjuction {
    margin-top: calc(40 / 750 * 100vw);
  }
}

.sec01__conjuction-eyebrow {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sec01__conjuction-eyebrow {
    font-size: calc(34 / 750 * 100vw);
  }
}

.sec01__conjuction-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: min(calc(4 / 1080 * 100vw), 4px) auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01__conjuction-main {
    flex-wrap: wrap;
    margin-top: calc(3 / 750 * 100vw);
  }
}

.sec01__conjuction-bracket {
  display: block;
  width: min(calc(34 / 1080 * 100vw), 34px);
  height: min(calc(34 / 1080 * 100vw), 34px);
  background: url(../img/common/sec01__footer-rect.svg) center/contain no-repeat;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .sec01__conjuction-bracket {
    width: calc(45 / 750 * 100vw);
    height: calc(45 / 750 * 100vw);
    border-width: calc(2 / 750 * 100vw);
  }
}
.sec01__conjuction-bracket.--left {
  border-right: none;
  border-bottom: none;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
@media screen and (max-width: 767px) {
  .sec01__conjuction-bracket.--left {
    margin-right: calc(0 / 750 * 100vw);
    margin-bottom: calc(-35 / 750 * 100vw);
    align-self: flex-start;
  }
}
.sec01__conjuction-bracket.--right {
  border-left: none;
  border-top: none;
  margin-left: min(calc(12 / 1080 * 100vw), 12px);
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .sec01__conjuction-bracket.--right {
    margin-left: calc(0 / 750 * 100vw);
    margin-top: calc(-35 / 750 * 100vw);
    align-self: flex-end;
  }
}

.sec01__conjuction-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(38 / 1080 * 100vw), 38px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  padding: min(calc(18 / 1080 * 100vw), 18px) 0;
  display: inline-block;
  filter: drop-shadow(min(calc(3 / 1080 * 100vw), 3px) min(calc(3 / 1080 * 100vw), 3px) 0px rgb(41, 166, 155));
}
@media screen and (max-width: 767px) {
  .sec01__conjuction-title {
    font-size: calc(48 / 750 * 100vw);
    padding: calc(24 / 750 * 100vw) 0;
    filter: drop-shadow(calc(3 / 750 * 100vw) calc(3 / 750 * 100vw) 0px rgb(41, 166, 155));
  }
}

.sec01__conjuction-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  margin-top: min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .sec01__conjuction-text {
    font-size: calc(34 / 750 * 100vw);
    margin-top: calc(3 / 750 * 100vw);
  }
}

.sec01__footer {
  position: relative;
}

.sec01__footer-bg {
  width: 100%;
}
.sec01__footer-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.sec01__footer-inner {
  position: absolute;
  inset: 0;
  padding-top: min(calc(140 / 1080 * 100vw), 140px);
  display: flex;
  flex-direction: column;
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec01__footer-inner {
    width: 100%;
    padding: calc(142 / 750 * 100vw) calc(30 / 750 * 100vw) 0;
    align-items: flex-start;
  }
}

.sec01__footer-eyebrow {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--main-accent-2-sub, #165e58);
}
@media screen and (max-width: 767px) {
  .sec01__footer-eyebrow {
    font-size: calc(34 / 750 * 100vw);
  }
}

.sec01__footer-copy {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0;
  color: #165e58;
  margin-top: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec01__footer-copy {
    font-size: calc(34 / 750 * 100vw);
    line-height: 1.8;
    margin-top: 0;
  }
}
.sec01__footer-copy strong {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  background: linear-gradient(90deg, #00a699 0%, #25bf9a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .sec01__footer-copy strong {
    font-size: calc(42 / 750 * 100vw);
  }
}

.sec01__footer-title {
  background-color: #fff;
  box-shadow: 0px 0px min(calc(15 / 1080 * 100vw), 15px) 0px rgba(0, 0, 0, 0.15);
  border-radius: min(calc(6 / 1080 * 100vw), 6px);
  padding: min(calc(2 / 1080 * 100vw), 2px) min(calc(26 / 1080 * 100vw), 26px);
  margin-top: min(calc(30 / 1080 * 100vw), 30px);
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .sec01__footer-title {
    box-shadow: 0px 0px calc(20 / 750 * 100vw) 0px rgba(0, 0, 0, 0.15);
    border-radius: calc(8 / 750 * 100vw);
    padding: calc(8 / 750 * 100vw) calc(26 / 750 * 100vw);
    margin-top: calc(52 / 750 * 100vw);
  }
}
.sec01__footer-title p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(52 / 1080 * 100vw), 52px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #165e58;
}
@media screen and (max-width: 767px) {
  .sec01__footer-title p {
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: min(calc(30 / 1080 * 100vw), 30px) 0;
  background-color: #fef8ee;
}
@media screen and (max-width: 767px) {
  .sec02 {
    padding: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}

.sec02__deco {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec02__deco {
    width: 100%;
  }
}
.sec02__deco.--bottom {
  transform: scaleY(-1);
}

.sec02__deco-left,
.sec02__deco-right {
  width: min(calc(58 / 1080 * 100vw), 58px);
  height: min(calc(59 / 1080 * 100vw), 59px);
}
@media screen and (max-width: 767px) {
  .sec02__deco-left,
  .sec02__deco-right {
    width: calc(58 / 750 * 100vw);
    height: calc(59 / 750 * 100vw);
  }
}

.sec02__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec02__content {
    width: 100%;
    gap: calc(40 / 750 * 100vw);
  }
}

.sec02__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec02__main {
    gap: calc(24 / 750 * 100vw);
  }
}

.sec02__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
  width: min(calc(630 / 1080 * 100vw), 630px);
}
@media screen and (max-width: 767px) {
  .sec02__header {
    gap: calc(24 / 750 * 100vw);
    width: calc(630 / 750 * 100vw);
  }
}
.sec02__header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec02__header-top {
    gap: calc(16 / 750 * 100vw);
  }
}

.sec02__eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec02__eyebrow-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec02__eyebrow-text {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec02__eyebrow-line {
  margin-top: min(calc(5 / 1080 * 100vw), 5px);
}
@media screen and (max-width: 767px) {
  .sec02__eyebrow-line {
    margin-top: 0;
  }
}
.sec02__eyebrow-line img {
  width: min(calc(247 / 1080 * 100vw), 247px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec02__eyebrow-line img {
    width: calc(330 / 750 * 100vw);
  }
}

.sec02__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec02__title {
    font-size: calc(56 / 750 * 100vw);
  }
}
.sec02__title span {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
}
@media screen and (max-width: 767px) {
  .sec02__title span {
    font-size: calc(48 / 750 * 100vw);
  }
}

.sec02__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec02__lead {
    font-size: calc(26 / 750 * 100vw);
    text-align: justify;
  }
}
.sec02__lead strong {
  font-weight: 700;
  color: var(--main-accent-2-sub, #165e58);
}

.sec02__table-wrap {
  width: min(calc(780 / 1080 * 100vw), 780px);
}
@media screen and (max-width: 767px) {
  .sec02__table-wrap {
    width: 100%;
  }
}

.sec02__table {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  background-color: #fff;
  padding: min(calc(30 / 1080 * 100vw), 30px) min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .sec02__table {
    gap: calc(16 / 750 * 100vw);
    padding: calc(30 / 750 * 100vw);
  }
}

.sec02__table-row {
  display: flex;
  align-items: center;
  gap: min(calc(120 / 1080 * 100vw), 120px);
  padding-bottom: min(calc(8 / 1080 * 100vw), 8px);
  border-bottom: 2px solid #ddd;
}
@media screen and (max-width: 767px) {
  .sec02__table-row {
    gap: 0;
    justify-content: space-between;
    padding-bottom: calc(16 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .sec02__table-row.--header {
    justify-content: flex-end;
    gap: calc(48 / 750 * 100vw);
  }
}
.sec02__table-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sec02__table-cell {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  white-space: nowrap;
}
.sec02__table-cell.--label {
  width: min(calc(200 / 1080 * 100vw), 200px);
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sec02__table-cell.--label {
    width: calc(208 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec02__table-cell.--kodate {
  width: min(calc(140 / 1080 * 100vw), 140px);
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #bd9b50;
}
@media screen and (max-width: 767px) {
  .sec02__table-cell.--kodate {
    width: auto;
    min-width: calc(174 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
  }
}
.sec02__table-cell.--mansion {
  width: min(calc(160 / 1080 * 100vw), 160px);
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #666;
}
@media screen and (max-width: 767px) {
  .sec02__table-cell.--mansion {
    width: auto;
    min-width: calc(174 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec02__table-row.--header .sec02__table-cell.--label {
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .sec02__table-row.--header .sec02__table-cell.--label {
    display: none;
  }
}

.sec02__notes {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  width: min(calc(780 / 1080 * 100vw), 780px);
}
@media screen and (max-width: 767px) {
  .sec02__notes {
    width: 100%;
    gap: calc(8 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.sec02__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec02__note {
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: min(calc(56 / 1080 * 100vw), 56px) min(calc(30 / 1080 * 100vw), 30px);
  gap: min(calc(32 / 1080 * 100vw), 32px);
  background: linear-gradient(45deg, rgba(137, 221, 243, 0.3) 0%, rgba(207, 249, 233, 0.3) 50%, rgba(238, 238, 255, 0.3) 100%);
}
@media screen and (max-width: 767px) {
  .sec03 {
    padding: calc(96 / 750 * 100vw) calc(30 / 750 * 100vw);
    gap: calc(64 / 750 * 100vw);
  }
}

.sec03__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .sec03__title {
    padding-bottom: min(calc(43 / 1080 * 100vw), 43px);
  }
}
@media screen and (max-width: 767px) {
  .sec03__title {
    gap: calc(16 / 750 * 100vw);
  }
}
.sec03__title strong {
  font-size: min(calc(86 / 1080 * 100vw), 86px);
  font-family: "Oswald", sans-serif;
  background: var(--main-accent-3-accent, linear-gradient(90deg, #00a699 0%, #25bf9a 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec03__title strong {
    font-size: calc(100 / 750 * 100vw);
  }
}
.sec03__title span {
  font-size: min(calc(38 / 1080 * 100vw), 38px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sec03__title span {
    font-size: calc(48 / 750 * 100vw);
  }
}

.sec03__title-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec03__title-eyebrow-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec03__title-eyebrow-text {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec03__title-eyebrow-line {
  width: min(calc(112 / 1080 * 100vw), 112px);
  height: min(calc(30 / 1080 * 100vw), 30px);
  margin-top: min(calc(13 / 1080 * 100vw), 13px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 112 30' fill='none'%3E%3Cpath d='M0 9.75H46.293' stroke='%2350C0B7' stroke-width='1.5'/%3E%3Cpath d='M56 9.75H112' stroke='%2350C0B7' stroke-width='1.5'/%3E%3Cpath d='M58.736 0L48.022 30' stroke='%2350C0B7' stroke-width='1.5'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
}
@media screen and (max-width: 767px) {
  .sec03__title-eyebrow-line {
    width: calc(190 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
    margin-top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 40' fill='none'%3E%3Cpath d='M0 13H82' stroke='%2350C0B7' stroke-width='2'/%3E%3Cpath d='M95 13H190' stroke='%2350C0B7' stroke-width='2'/%3E%3Cpath d='M98.663 0L84.315 40' stroke='%2350C0B7' stroke-width='2'/%3E%3C/svg%3E");
  }
}

.sec03__title-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(46 / 1080 * 100vw), 46px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec03__title-main {
    font-size: calc(56 / 750 * 100vw);
  }
}

.sec03__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec03__cards {
    width: 100%;
    gap: calc(80 / 750 * 100vw);
  }
}

.sec03__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  width: 100%;
  padding: min(calc(32 / 1080 * 100vw), 32px) min(calc(30 / 1080 * 100vw), 30px) min(calc(16 / 1080 * 100vw), 16px);
  background-color: #fff;
  border-top: min(calc(4 / 1080 * 100vw), 4px) solid #50c0b7;
  box-shadow: 0px 0px min(calc(20 / 1080 * 100vw), 20px) 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .sec03__card {
    align-items: flex-end;
    gap: calc(48 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw);
    border-top-width: calc(4 / 750 * 100vw);
    box-shadow: 0px 0px calc(20 / 750 * 100vw) 0px rgba(0, 0, 0, 0.15);
  }
}

.sec03__card-badge {
  position: absolute;
  top: max(calc(-12 / 1080 * 100vw), -12px);
  left: min(calc(30 / 1080 * 100vw), 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(75 / 1080 * 100vw), 75px);
  height: min(calc(90 / 1080 * 100vw), 90px);
  background: linear-gradient(90deg, rgb(0, 166, 153) 0%, rgb(37, 191, 154) 100%);
}
@media screen and (max-width: 767px) {
  .sec03__card-badge {
    top: calc(-20 / 750 * 100vw);
    left: calc(30 / 750 * 100vw);
    width: calc(100 / 750 * 100vw);
    height: calc(120 / 750 * 100vw);
  }
}

.sec03__card-badge-num {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec03__card-badge-num {
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec03__card-heading {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(28 / 1080 * 100vw), 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  text-align: left;
  padding-left: min(calc(100 / 1080 * 100vw), 100px);
}
@media screen and (max-width: 767px) {
  .sec03__card-heading {
    width: calc(506 / 750 * 100vw);
    font-size: calc(38 / 750 * 100vw);
    padding-left: 0;
  }
}
.sec03__card-heading sup {
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .sec03__card-heading sup {
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec03__card-content {
  display: flex;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
  width: min(calc(857 / 1080 * 100vw), 857px);
}
@media screen and (max-width: 767px) {
  .sec03__card-content {
    flex-direction: column;
    width: 100%;
    gap: calc(24 / 750 * 100vw);
  }
}

.sec03__card-img {
  flex-shrink: 0;
  width: min(calc(400 / 1080 * 100vw), 400px);
  height: min(calc(247 / 1080 * 100vw), 247px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec03__card-img {
    width: 100%;
    height: calc(400 / 750 * 100vw);
  }
}
.sec03__card-img picture,
.sec03__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec03__card-body {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  width: min(calc(421 / 1080 * 100vw), 421px);
}
@media screen and (max-width: 767px) {
  .sec03__card-body {
    width: 100%;
    gap: calc(24 / 750 * 100vw);
  }
}

.sec03__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec03__card-text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec03__card-text b {
  font-weight: 700;
  color: var(--main-accent-2-sub, #165e58);
}
.sec03__card-text span {
  font-size: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .sec03__card-text span {
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec03__card-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec03__card-note {
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec04 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: min(calc(75 / 1080 * 100vw), 75px);
  background-color: #f5fdfb;
  padding: min(calc(76 / 1080 * 100vw), 76px) 0 min(calc(33 / 1080 * 100vw), 33px);
  background-image: url(../img/pc/sec04_head-bg.webp);
  background-repeat: no-repeat;
  background-size: min(calc(702 / 1080 * 100vw), 702px) auto;
  background-position: 50% min(calc(56 / 1080 * 100vw), 56px);
}
@media screen and (max-width: 767px) {
  .sec04 {
    padding: calc(123 / 750 * 100vw) 0 calc(96 / 750 * 100vw);
    gap: calc(102 / 750 * 100vw);
    background-image: url(../img/sp/sec04_head-bg.webp);
    background-size: calc(654 / 750 * 100vw) auto;
    background-position: calc(48 / 750 * 100vw) calc(56 / 750 * 100vw);
  }
}

.sec04__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(calc(702 / 1080 * 100vw), 702px);
}
@media screen and (max-width: 767px) {
  .sec04__header {
    width: calc(654 / 750 * 100vw);
  }
}

.sec04__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(calc(630 / 1080 * 100vw), 630px);
}
@media screen and (max-width: 767px) {
  .sec04__title {
    width: calc(630 / 750 * 100vw);
  }
}

.sec04__title-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec04__title-eyebrow-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec04__title-eyebrow-text {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec04__title-eyebrow-line {
  width: min(calc(137 / 1080 * 100vw), 137px);
  height: min(calc(30 / 1080 * 100vw), 30px);
  margin-top: min(calc(21 / 1080 * 100vw), 21px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='137' height='30' viewBox='0 0 137 30' fill='none'%3E%3Cg stroke='%2350C0B7' stroke-width='1.5'%3E%3Cpath d='M0 9.75h58.79'/%3E%3Cpath d='M68.5 9.75H137'/%3E%3Cpath d='M71.42 0 60.7 30'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .sec04__title-eyebrow-line {
    width: calc(210 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
    margin-top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='210' height='40' viewBox='0 0 210 40' fill='none'%3E%3Cg stroke='%2350C0B7' stroke-width='2'%3E%3Cpath d='M0 13h92'/%3E%3Cpath d='M105 13H210'/%3E%3Cpath d='M108.92 0 94.57 40'/%3E%3C/g%3E%3C/svg%3E");
  }
}

.sec04__title-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec04__title-logo {
    margin-top: calc(16 / 750 * 100vw);
  }
}

.sec04__title-logo-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec04__title-logo-label {
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec04__title-logo-img {
  width: min(calc(460 / 1080 * 100vw), 460px);
  margin-top: max(calc(-10 / 1080 * 100vw), -10px);
}
@media screen and (max-width: 767px) {
  .sec04__title-logo-img {
    width: calc(460 / 750 * 100vw);
    margin-top: calc(-10 / 750 * 100vw);
  }
}
.sec04__title-logo-img img {
  width: 100%;
  height: auto;
}

.sec04__title-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec04__title-main {
    margin-top: calc(32 / 750 * 100vw);
    font-size: calc(56 / 750 * 100vw);
  }
}

.sec04__catch {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(15 / 1080 * 100vw), 15px);
  width: 100%;
  margin-top: min(calc(1 / 1080 * 100vw), 1px);
}
@media screen and (max-width: 767px) {
  .sec04__catch {
    gap: calc(15 / 750 * 100vw);
    margin-top: calc(16 / 750 * 100vw);
  }
}

.sec04__catch-line {
  flex-shrink: 0;
  width: min(calc(15 / 1080 * 100vw), 15px);
}
@media screen and (max-width: 767px) {
  .sec04__catch-line {
    width: calc(20 / 750 * 100vw);
  }
}
.sec04__catch-line:last-child {
  transform: scaleX(-1);
}
.sec04__catch-line img {
  width: 100%;
  height: auto;
}

.sec04__catch-text {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(28 / 1080 * 100vw), 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, rgb(0, 166, 153) 0%, rgb(37, 191, 154) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec04__catch-text {
    font-size: calc(38 / 750 * 100vw);
  }
}

.sec04__cards {
  display: flex;
  flex-direction: column;
  gap: min(calc(32 / 1080 * 100vw), 32px);
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec04__cards {
    width: 100%;
    gap: calc(63 / 750 * 100vw);
  }
}

.sec04__card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sec04__card {
    flex-direction: column;
  }
}

.sec04__card-visual {
  position: relative;
  flex-shrink: 0;
  width: min(calc(442 / 1080 * 100vw), 442px);
}
@media screen and (max-width: 767px) {
  .sec04__card-visual {
    width: 100%;
  }
}

.sec04__card-img {
  width: min(calc(462 / 1080 * 100vw), 462px);
  margin: max(calc(-10 / 1080 * 100vw), -10px);
}
@media screen and (max-width: 767px) {
  .sec04__card-img {
    width: 100%;
    margin: 0;
  }
}
.sec04__card-img picture,
.sec04__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sec04__card-body {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .sec04__card-body {
    display: block;
    width: 100%;
    margin-top: calc(22 / 750 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .sec04__card.--a .sec04__card-img {
    width: calc(770 / 750 * 100vw);
    margin-left: calc(-20 / 750 * 100vw);
  }
}
.sec04__card.--a .sec04__card-body {
  width: min(calc(478 / 1080 * 100vw), 478px);
  height: min(calc(269 / 1080 * 100vw), 269px);
}
@media screen and (max-width: 767px) {
  .sec04__card.--a .sec04__card-body {
    width: 100%;
    height: auto;
    padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw) 0;
  }
}
.sec04__card.--b .sec04__card-body {
  align-items: flex-start;
  width: min(calc(439 / 1080 * 100vw), 439px);
}
@media screen and (max-width: 767px) {
  .sec04__card.--b .sec04__card-body {
    width: 100%;
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.sec04__card-text {
  width: min(calc(442 / 1080 * 100vw), 442px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec04__card-text {
    width: 100%;
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec04__card-text strong {
  color: #165e58;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec04__card-text-em {
    color: #165e58;
    font-weight: 700;
  }
}

.sec04__card-box {
  position: relative;
  width: 100%;
  margin-top: min(calc(35.7 / 1080 * 100vw), 35.7px);
  padding: min(calc(27.3 / 1080 * 100vw), 27.3px) min(calc(10 / 1080 * 100vw), 10px) min(calc(13.7 / 1080 * 100vw), 13.7px) min(calc(13 / 1080 * 100vw), 13px);
  border: min(calc(2 / 1080 * 100vw), 2px) solid #50c0b7;
}
@media screen and (max-width: 767px) {
  .sec04__card-box {
    margin-top: calc(14 / 750 * 100vw);
    padding: calc(53 / 750 * 100vw) calc(28 / 750 * 100vw) calc(26 / 750 * 100vw);
    border-width: calc(2 / 750 * 100vw);
  }
}

.sec04__card-box-title {
  position: absolute;
  top: max(calc(-27.7 / 1080 * 100vw), -27.7px);
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(406 / 1080 * 100vw), 406px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(28 / 1080 * 100vw), 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #50c0b7;
  background-color: #f5fdfb;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec04__card-box-title {
    top: calc(-24 / 750 * 100vw);
    width: calc(583 / 750 * 100vw);
    font-size: calc(38 / 750 * 100vw);
  }
}

.sec04__card-list {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec04__card-list {
    gap: calc(16 / 750 * 100vw);
  }
}

.sec04__card-list-item {
  display: flex;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec04__card-list-item {
    align-items: flex-start;
    gap: calc(16 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .sec04__card-list-item:nth-child(n+2) .sec04__card-list-text strong {
    font-size: calc(28 / 750 * 100vw);
  }
}

.sec04__card-list-icon {
  flex-shrink: 0;
  width: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .sec04__card-list-icon {
    width: calc(33 / 750 * 100vw);
    margin-top: calc(11 / 750 * 100vw);
  }
}
.sec04__card-list-icon img {
  width: 100%;
  height: auto;
}

.sec04__card-list-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sec04__card-list-text {
    flex: 1;
    font-size: calc(26 / 750 * 100vw);
    text-align: justify;
  }
}
.sec04__card-list-text strong {
  color: #165e58;
  font-weight: 700;
}

.sec05 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: min(calc(80 / 1080 * 100vw), 80px) min(calc(30 / 1080 * 100vw), 30px) min(calc(64 / 1080 * 100vw), 64px);
  gap: min(calc(40 / 1080 * 100vw), 40px);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sec05 {
    padding: calc(80 / 750 * 100vw) calc(30 / 750 * 100vw) calc(64 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
  }
}

.sec05__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .sec05__title {
    gap: calc(8 / 750 * 100vw);
  }
}

.sec05__title-deco {
  flex-shrink: 0;
  width: min(calc(27 / 1080 * 100vw), 27px);
}
@media screen and (max-width: 767px) {
  .sec05__title-deco {
    width: calc(36 / 750 * 100vw);
  }
}
.sec05__title-deco img {
  width: 100%;
  height: auto;
}
.sec05__title-deco:last-child {
  transform: scaleX(-1);
}

.sec05__title-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(54 / 1080 * 100vw), 54px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #333;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sec05__title-main {
    font-size: calc(64 / 750 * 100vw);
    letter-spacing: 0.04em;
  }
}
.sec05__title-main span {
  font-size: min(calc(48 / 1080 * 100vw), 48px);
}
@media screen and (max-width: 767px) {
  .sec05__title-main span {
    font-size: calc(48 / 750 * 100vw);
  }
}

.sec05__cards {
  display: flex;
  justify-content: stretch;
  gap: min(calc(32 / 1080 * 100vw), 32px);
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec05__cards {
    flex-direction: column;
    width: calc(690 / 750 * 100vw);
    gap: calc(56 / 750 * 100vw);
  }
}

.sec05__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  flex: 1;
}
@media screen and (max-width: 767px) {
  .sec05__card {
    flex-direction: row;
    align-items: center;
    gap: calc(24 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .sec05__card.--a {
    align-items: flex-start;
  }
}

.sec05__card-icon {
  flex-shrink: 0;
  width: min(calc(105 / 1080 * 100vw), 105px);
  height: min(calc(105 / 1080 * 100vw), 105px);
  filter: drop-shadow(0 0 min(calc(15 / 1080 * 100vw), 15px) rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 767px) {
  .sec05__card-icon {
    width: calc(140 / 750 * 100vw);
    height: calc(140 / 750 * 100vw);
    filter: drop-shadow(0 0 calc(20 / 750 * 100vw) rgba(0, 0, 0, 0.15));
  }
}
.sec05__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec05__card-body {
  display: flex;
  flex-direction: column;
  gap: min(calc(16 / 1080 * 100vw), 16px);
  flex: 1;
}
@media screen and (max-width: 767px) {
  .sec05__card-body {
    gap: calc(24 / 750 * 100vw);
  }
}

.sec05__card-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: min(calc(4 / 1080 * 100vw), 4px);
  border-bottom: 2px solid #bd9b50;
}
@media screen and (max-width: 767px) {
  .sec05__card-heading {
    padding-bottom: calc(8 / 750 * 100vw);
  }
}

.sec05__card-heading-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(28 / 1080 * 100vw), 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #bd9b50;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec05__card-heading-text {
    width: calc(483 / 750 * 100vw);
    font-size: calc(38 / 750 * 100vw);
    text-align: left;
  }
}
.sec05__card-heading-text span {
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .sec05__card-heading-text span {
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec05__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec05__card-text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec05__card-text span {
  font-size: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .sec05__card-text span {
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec05__notes {
  display: flex;
  flex-direction: column;
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec05__notes {
    width: calc(690 / 750 * 100vw);
  }
}

.sec05__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec05__note {
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec06 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  padding: min(calc(32 / 1080 * 100vw), 32px) min(calc(29 / 1080 * 100vw), 29px) min(calc(80 / 1080 * 100vw), 80px) min(calc(30 / 1080 * 100vw), 30px);
  background-color: #fef8ee;
}
@media screen and (max-width: 767px) {
  .sec06 {
    gap: calc(48 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
  }
}

.sec06__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(604 / 1080 * 100vw), 604px);
  height: min(calc(142 / 1080 * 100vw), 142px);
}
@media screen and (max-width: 767px) {
  .sec06__title {
    width: calc(604 / 750 * 100vw);
    height: calc(142 / 750 * 100vw);
  }
}

.sec06__title-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sec06__title-bg picture,
.sec06__title-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec06__title-text {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec06__title-text {
    font-size: calc(56 / 750 * 100vw);
  }
}
.sec06__title-text-s {
  font-size: min(calc(38 / 1080 * 100vw), 38px);
}
@media screen and (max-width: 767px) {
  .sec06__title-text-s {
    font-size: calc(48 / 750 * 100vw);
  }
}

.sec06__cards {
  display: flex;
  flex-direction: column;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec06__cards {
    width: calc(690 / 750 * 100vw);
    gap: calc(48 / 750 * 100vw);
  }
}

.sec06__card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: min(calc(48 / 1080 * 100vw), 48px);
}
@media screen and (max-width: 767px) {
  .sec06__card {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 750 * 100vw);
  }
}

.sec06__card-avatar {
  flex-shrink: 0;
  width: min(calc(176 / 1080 * 100vw), 176px);
  height: min(calc(176 / 1080 * 100vw), 176px);
}
@media screen and (max-width: 767px) {
  .sec06__card-avatar {
    width: calc(200 / 750 * 100vw);
    height: calc(200 / 750 * 100vw);
  }
}
.sec06__card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec06__card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  width: min(calc(674 / 1080 * 100vw), 674px);
  padding: min(calc(24 / 1080 * 100vw), 24px) min(calc(32 / 1080 * 100vw), 32px);
  background-color: #fff;
  border-radius: min(calc(24 / 1080 * 100vw), 24px);
  box-shadow: 0 0 min(calc(20 / 1080 * 100vw), 20px) 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .sec06__card-body {
    gap: calc(24 / 750 * 100vw);
    width: calc(630 / 750 * 100vw);
    padding: calc(24 / 750 * 100vw) calc(64 / 750 * 100vw);
    border-radius: calc(24 / 750 * 100vw);
    box-shadow: 0 0 calc(20 / 750 * 100vw) 0 rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 768px) {
  .sec06__card:first-child .sec06__card-body {
    padding-right: min(calc(40 / 1080 * 100vw), 40px);
    padding-left: min(calc(40 / 1080 * 100vw), 40px);
  }
}
.sec06__card-body::before {
  content: "";
  position: absolute;
  top: 50%;
  left: max(calc(-24.5 / 1080 * 100vw), -24.5px);
  width: min(calc(39.75 / 1080 * 100vw), 39.75px);
  height: min(calc(45.9 / 1080 * 100vw), 45.9px);
  background-color: #fff;
  transform: translateY(-50%);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
@media screen and (max-width: 767px) {
  .sec06__card-body::before {
    top: calc(-31 / 750 * 100vw);
    left: 50%;
    width: calc(45.9 / 750 * 100vw);
    height: calc(39.75 / 750 * 100vw);
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}

.sec06__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .sec06__card-header {
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 750 * 100vw);
  }
}

.sec06__card-profile {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: min(calc(5 / 1080 * 100vw), 5px);
  width: min(calc(442 / 1080 * 100vw), 442px);
  height: min(calc(55 / 1080 * 100vw), 55px);
  padding-bottom: min(calc(15 / 1080 * 100vw), 15px);
  padding-left: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .sec06__card-profile {
    gap: calc(5 / 750 * 100vw);
    width: calc(442 / 750 * 100vw);
    height: calc(70 / 750 * 100vw);
    padding-bottom: calc(10 / 750 * 100vw);
    padding-left: calc(10.5 / 750 * 100vw);
  }
}

.sec06__card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #165e58;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sec06__card-name {
    font-size: calc(28 / 750 * 100vw);
  }
}
.sec06__card-name span {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec06__card-name span {
    font-size: calc(40 / 750 * 100vw);
  }
}

.sec06__card-slash {
  position: relative;
  flex-shrink: 0;
  width: min(calc(13 / 1080 * 100vw), 13px);
  height: min(calc(32 / 1080 * 100vw), 32px);
}
@media screen and (max-width: 767px) {
  .sec06__card-slash {
    width: calc(13 / 750 * 100vw);
    height: calc(32 / 750 * 100vw);
  }
}
.sec06__card-slash::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(calc(2 / 1080 * 100vw), 2px);
  height: min(calc(34 / 1080 * 100vw), 34px);
  background-color: #165e58;
  transform: translate(-50%, -50%) rotate(20deg);
}
@media screen and (max-width: 767px) {
  .sec06__card-slash::before {
    width: calc(2 / 750 * 100vw);
    height: calc(34 / 750 * 100vw);
  }
}

.sec06__card-income {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #165e58;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sec06__card-income {
    font-size: calc(28 / 750 * 100vw);
  }
}
.sec06__card-income span {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(36 / 1080 * 100vw), 36px);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec06__card-income span {
    font-size: calc(56 / 750 * 100vw);
  }
}

.sec06__card-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translate(-50%, 50%);
}
.sec06__card-line span {
  flex-shrink: 0;
  display: inline-block;
  width: min(calc(442 / 1080 * 100vw), 442px);
  height: min(calc(2 / 1080 * 100vw), 2px);
  background-color: #165e58;
}
@media screen and (max-width: 767px) {
  .sec06__card-line span {
    width: calc(442 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
  }
}
.sec06__card-line::before, .sec06__card-line::after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: min(calc(8 / 1080 * 100vw), 8px);
  height: min(calc(8 / 1080 * 100vw), 8px);
  background-color: #165e58;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .sec06__card-line::before, .sec06__card-line::after {
    width: calc(8 / 750 * 100vw);
    height: calc(8 / 750 * 100vw);
  }
}

.sec06__card-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(127 / 1080 * 100vw), 127px);
  height: min(calc(55 / 1080 * 100vw), 55px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  background-color: #165e58;
}
@media screen and (max-width: 767px) {
  .sec06__card-badge {
    width: calc(447 / 750 * 100vw);
    height: calc(47 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec06__card-text {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec06__card-text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec06__card-text strong {
  font-weight: 700;
}

.sec06__others {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec06__others {
    width: calc(690 / 750 * 100vw);
  }
}

.sec06__others-header {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: min(calc(10 / 1080 * 100vw), 10px);
  margin-bottom: max(calc(-27 / 1080 * 100vw), -27px);
  background-color: #fef8ee;
}
@media screen and (max-width: 767px) {
  .sec06__others-header {
    padding: calc(10 / 750 * 100vw);
    margin-bottom: calc(-41 / 750 * 100vw);
  }
}

.sec06__others-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #bd9b50;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec06__others-title {
    font-size: calc(42 / 750 * 100vw);
  }
}

.sec06__others-list {
  display: flex;
  justify-content: center;
  gap: min(calc(84 / 1080 * 100vw), 84px);
  width: 100%;
  padding: min(calc(50 / 1080 * 100vw), 50px) min(calc(40 / 1080 * 100vw), 40px) min(calc(30 / 1080 * 100vw), 30px);
  border: 2px solid #bd9b50;
}
@media screen and (max-width: 767px) {
  .sec06__others-list {
    flex-direction: column;
    gap: calc(20 / 750 * 100vw);
    padding: calc(56 / 750 * 100vw) calc(30 / 750 * 100vw) calc(55 / 750 * 100vw);
  }
}

.sec06__others-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(32 / 1080 * 100vw), 32px);
  width: min(calc(250 / 1080 * 100vw), 250px);
}
@media screen and (max-width: 767px) {
  .sec06__others-item {
    flex-direction: row;
    gap: calc(32 / 750 * 100vw);
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec06__others-item:last-child {
    align-items: flex-start;
  }
}

.sec06__others-avatar {
  flex-shrink: 0;
  width: min(calc(176 / 1080 * 100vw), 176px);
  height: min(calc(176 / 1080 * 100vw), 176px);
}
@media screen and (max-width: 767px) {
  .sec06__others-avatar {
    width: calc(200 / 750 * 100vw);
    height: calc(200 / 750 * 100vw);
  }
}
.sec06__others-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec06__others-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec06__others-text {
    width: calc(398 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
    text-align: justify;
  }
}
@media screen and (min-width: 768px) {
  .sec06__others-item:last-child .sec06__others-text {
    width: min(calc(296 / 1080 * 100vw), 296px);
    text-align: justify;
  }
}

.sec07 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(50 / 1080 * 100vw), 50px);
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sec07 {
    gap: calc(50 / 750 * 100vw);
    padding: calc(80 / 750 * 100vw) 0;
  }
}

.sec07__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec07__head {
    width: calc(630 / 750 * 100vw);
  }
}

.sec07__lead {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(calc(512 / 1080 * 100vw), 512px);
  height: min(calc(101 / 1080 * 100vw), 101px);
  padding-top: min(calc(33 / 1080 * 100vw), 33px);
  background-color: #00a496;
  border-radius: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .sec07__lead {
    width: calc(630 / 750 * 100vw);
    height: calc(120 / 750 * 100vw);
    padding-top: calc(41 / 750 * 100vw);
    border-radius: calc(12 / 750 * 100vw);
  }
}
.sec07__lead::after {
  content: "";
  position: absolute;
  top: min(calc(86 / 1080 * 100vw), 86px);
  left: min(calc(215 / 1080 * 100vw), 215px);
  width: min(calc(70 / 1080 * 100vw), 70px);
  height: min(calc(42 / 1080 * 100vw), 42px);
  background-color: #00a496;
  clip-path: polygon(0% 100%, 34.286% 6.857%, 100% 0%);
}
@media screen and (max-width: 767px) {
  .sec07__lead::after {
    top: calc(116 / 750 * 100vw);
    left: calc(274 / 750 * 100vw);
    width: calc(70 / 750 * 100vw);
    height: calc(42 / 750 * 100vw);
  }
}

.sec07__lead-en {
  position: relative;
  display: inline-block;
}

.sec07__lead-sub {
  position: absolute;
  top: max(calc(-14 / 1080 * 100vw), -14px);
  left: 50%;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .sec07__lead-sub {
    top: calc(-23 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec07__lead-title {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec07__lead-title {
    font-size: calc(42 / 750 * 100vw);
  }
}

.sec07__title {
  margin-top: min(calc(31 / 1080 * 100vw), 31px);
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec07__title {
    margin-top: calc(42 / 750 * 100vw);
    font-size: calc(56 / 750 * 100vw);
  }
}

.sec07__slider {
  position: relative;
  width: 100%;
  padding: min(calc(20 / 1080 * 100vw), 20px) 0 min(calc(60 / 1080 * 100vw), 60px);
  margin: max(calc(-20 / 1080 * 100vw), -20px) 0;
}
@media screen and (max-width: 767px) {
  .sec07__slider {
    padding: calc(20 / 750 * 100vw) 0 calc(64 / 750 * 100vw);
    margin: calc(-20 / 750 * 100vw) 0;
  }
}
.sec07__slider .swiper-slide {
  width: min(calc(856 / 1080 * 100vw), 856px);
  padding: 0 min(calc(22 / 1080 * 100vw), 22px);
}
@media screen and (max-width: 767px) {
  .sec07__slider .swiper-slide {
    width: calc(585 / 750 * 100vw);
    padding: 0 calc(22.5 / 750 * 100vw);
  }
}

.sec07__item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: min(calc(30 / 1080 * 100vw), 30px);
  padding: min(calc(40 / 1080 * 100vw), 40px);
  background-color: #f5fdfb;
  box-shadow: 0 0 min(calc(20 / 1080 * 100vw), 20px) 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .sec07__item {
    flex-direction: column;
    align-items: center;
    gap: calc(30 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw);
    box-shadow: 0 0 calc(20 / 750 * 100vw) 0 rgba(0, 0, 0, 0.25);
  }
}

.sec07__item-img {
  flex-shrink: 0;
  width: min(calc(369 / 1080 * 100vw), 369px);
  height: min(calc(322 / 1080 * 100vw), 322px);
}
@media screen and (max-width: 767px) {
  .sec07__item-img {
    width: calc(460 / 750 * 100vw);
    height: calc(402 / 750 * 100vw);
  }
}
.sec07__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec07__item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(18 / 1080 * 100vw), 18px);
  width: min(calc(326 / 1080 * 100vw), 326px);
}
@media screen and (max-width: 767px) {
  .sec07__item-body {
    gap: calc(30 / 750 * 100vw);
    width: calc(460 / 750 * 100vw);
  }
}

.sec07__item-table {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec07__item-table {
    gap: calc(14 / 750 * 100vw);
  }
}

.sec07__item-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.sec07__item-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(116 / 1080 * 100vw), 116px);
  height: min(calc(42 / 1080 * 100vw), 42px);
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  background-color: #165e58;
}
@media screen and (max-width: 767px) {
  .sec07__item-label {
    width: calc(160 / 750 * 100vw);
    height: calc(56 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec07__item-value {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: min(calc(210 / 1080 * 100vw), 210px);
  height: min(calc(42 / 1080 * 100vw), 42px);
  padding-left: min(calc(60 / 1080 * 100vw), 60px);
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  background-color: #fff;
  border: 1px solid #165e58;
}
@media screen and (max-width: 767px) {
  .sec07__item-value {
    width: calc(300 / 750 * 100vw);
    height: calc(56 / 750 * 100vw);
    padding-left: calc(60 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
  }
}

.sec07__item-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.sec07__item-profit {
  width: 100%;
  text-align: center;
}
.sec07__item-profit-lead {
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .sec07__item-profit-lead {
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec07__item-profit-num {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #00a496;
}
@media screen and (max-width: 767px) {
  .sec07__item-profit-num {
    font-size: calc(56 / 750 * 100vw);
  }
}
.sec07__item-profit-unit {
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #00a496;
}
@media screen and (max-width: 767px) {
  .sec07__item-profit-unit {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec07__item-tax {
  display: flex;
  align-items: center;
  gap: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .sec07__item-tax {
    gap: calc(12 / 750 * 100vw);
  }
}
.sec07__item-tax-icon {
  flex-shrink: 0;
  width: min(calc(32 / 1080 * 100vw), 32px);
  height: min(calc(32 / 1080 * 100vw), 32px);
}
@media screen and (max-width: 767px) {
  .sec07__item-tax-icon {
    width: calc(46 / 750 * 100vw);
    height: calc(46 / 750 * 100vw);
  }
}
.sec07__item-tax-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sec07__item-tax-text {
  padding: min(calc(10 / 1080 * 100vw), 10px) 0;
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #00a496;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec07__item-tax-text {
    padding: calc(10 / 750 * 100vw) 0;
    font-size: calc(36 / 750 * 100vw);
  }
}

.sec07__pagination {
  bottom: min(calc(20 / 1080 * 100vw), 20px) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .sec07__pagination {
    bottom: calc(20 / 750 * 100vw) !important;
  }
}
.sec07__pagination .swiper-pagination-bullet {
  width: min(calc(6 / 1080 * 100vw), 6px);
  height: min(calc(6 / 1080 * 100vw), 6px);
  margin: 0 min(calc(6 / 1080 * 100vw), 6px) !important;
  background-color: #ccc;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .sec07__pagination .swiper-pagination-bullet {
    width: calc(10 / 750 * 100vw);
    height: calc(10 / 750 * 100vw);
    margin: 0 calc(9 / 750 * 100vw) !important;
  }
}
.sec07__pagination .swiper-pagination-bullet-active {
  background-color: #00a496;
}

.sec07__prev,
.sec07__next {
  position: absolute;
  top: min(calc(210 / 1080 * 100vw), 210px);
  width: min(calc(42 / 1080 * 100vw), 42px);
  height: min(calc(42 / 1080 * 100vw), 42px);
  margin-top: 0;
  background-color: #00a496;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='23' viewBox='0 0 13 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9377 11.5L1.43773 23L0.000236286 21.5625L10.0626 11.5001L0 1.4375L1.4375 0L12.9377 11.5Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(calc(13 / 1080 * 100vw), 13px) min(calc(23 / 1080 * 100vw), 23px);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .sec07__prev,
  .sec07__next {
    top: calc(234 / 750 * 100vw);
    width: calc(54 / 750 * 100vw);
    height: calc(54 / 750 * 100vw);
    background-size: calc(13 / 750 * 100vw) calc(23 / 750 * 100vw);
  }
}
.sec07__prev::after,
.sec07__next::after {
  display: none;
}

.sec07__prev {
  left: min(calc(532 / 1080 * 100vw), 532px);
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .sec07__prev {
    left: calc(71 / 750 * 100vw);
  }
}

.sec07__next {
  right: min(calc(532 / 1080 * 100vw), 532px);
}
@media screen and (max-width: 767px) {
  .sec07__next {
    right: calc(71 / 750 * 100vw);
  }
}

.sec07__note {
  width: min(calc(726 / 1080 * 100vw), 726px);
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec07__note {
    width: calc(630 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

.sec08 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.sec08__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sec08__bg picture,
.sec08__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec08__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(30 / 1080 * 100vw), 30px);
  padding: min(calc(56 / 1080 * 100vw), 56px) min(calc(30 / 1080 * 100vw), 30px) min(calc(61 / 1080 * 100vw), 61px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec08__content {
    gap: calc(26 / 750 * 100vw);
    padding: calc(80 / 750 * 100vw) 0 calc(85 / 750 * 100vw);
  }
}

.sec08__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec08__title {
    gap: calc(16 / 750 * 100vw);
  }
}

.sec08__title-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec08__title-eyebrow-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec08__title-eyebrow-text {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec08__title-eyebrow-line img {
  width: min(calc(232 / 1080 * 100vw), 232px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec08__title-eyebrow-line img {
    width: calc(310 / 750 * 100vw);
  }
}

.sec08__title-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec08__title-main {
    font-size: calc(56 / 750 * 100vw);
  }
}

.sec08__main {
  display: flex;
  align-items: center;
  gap: min(calc(32 / 1080 * 100vw), 32px);
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec08__main {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}

.sec08__img {
  width: min(calc(460 / 1080 * 100vw), 460px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec08__img {
    width: 100%;
  }
}
.sec08__img picture,
.sec08__img img {
  width: 100%;
  height: auto;
}

.sec08__checklist {
  display: flex;
  flex-direction: column;
  gap: min(calc(16 / 1080 * 100vw), 16px);
  width: min(calc(428 / 1080 * 100vw), 428px);
}
@media screen and (max-width: 767px) {
  .sec08__checklist {
    width: 100%;
    gap: calc(24 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
    margin-top: calc(-5 / 750 * 100vw);
  }
}

.sec08__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: min(calc(13.1 / 1080 * 100vw), 13.1px);
}
@media screen and (max-width: 767px) {
  .sec08__checklist-item {
    gap: calc(17 / 750 * 100vw);
  }
}
.sec08__checklist-item span {
  flex: 1;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec08__checklist-item span {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec08__checklist-icon {
  flex-shrink: 0;
  width: min(calc(21.5 / 1080 * 100vw), 21.5px);
  height: auto;
  margin: min(calc(5.7 / 1080 * 100vw), 5.7px) 0 0 min(calc(3.8 / 1080 * 100vw), 3.8px);
}
@media screen and (max-width: 767px) {
  .sec08__checklist-icon {
    width: calc(34 / 750 * 100vw);
    margin: calc(9 / 750 * 100vw) 0 0 calc(6 / 750 * 100vw);
  }
}

.sec09 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(48 / 1080 * 100vw), 48px);
  padding: min(calc(40 / 1080 * 100vw), 40px) min(calc(10 / 1080 * 100vw), 10px);
  background-color: #f5fdfb;
}
@media screen and (max-width: 767px) {
  .sec09 {
    gap: calc(48 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) calc(10 / 750 * 100vw);
  }
}

.sec09__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec09__title {
    gap: calc(16 / 750 * 100vw);
  }
}

.sec09__title-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec09__title-eyebrow-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #50c0b7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec09__title-eyebrow-text {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec09__title-eyebrow-line {
  margin-top: min(calc(5 / 1080 * 100vw), 5px);
}
@media screen and (max-width: 767px) {
  .sec09__title-eyebrow-line {
    margin-top: 0;
  }
}
.sec09__title-eyebrow-line img {
  height: auto;
}
.sec09__title-eyebrow-line img.pc {
  width: min(calc(57.5 / 1080 * 100vw), 57.5px);
}
.sec09__title-eyebrow-line img.sp {
  width: calc(130 / 750 * 100vw);
}

.sec09__title-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(46 / 1080 * 100vw), 46px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec09__title-main {
    font-size: calc(56 / 750 * 100vw);
  }
}

.sec09__accordion {
  width: min(calc(920 / 1080 * 100vw), 920px);
  gap: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec09__accordion {
    width: calc(690 / 750 * 100vw);
    gap: calc(40 / 750 * 100vw);
  }
}

.sec09__item {
  border-radius: min(calc(14 / 1080 * 100vw), 14px);
  box-shadow: 0px 0px min(calc(20 / 1080 * 100vw), 20px) 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec09__item {
    border-radius: calc(14 / 750 * 100vw);
    box-shadow: 0px 0px calc(20 / 750 * 100vw) 0px rgba(0, 0, 0, 0.15);
  }
}

.sec09__header {
  display: flex;
  align-items: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  padding: 0 min(calc(54 / 1080 * 100vw), 54px) 0 min(calc(64 / 1080 * 100vw), 64px);
}
@media screen and (max-width: 767px) {
  .sec09__header {
    gap: calc(24 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw);
  }
}
.sec09__header::after {
  display: none;
}

.sec09__header-inner {
  flex: 1;
  padding: min(calc(20 / 1080 * 100vw), 20px) 0;
  gap: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .sec09__header-inner {
    align-items: flex-start;
    padding: 0;
    gap: calc(24 / 750 * 100vw);
  }
}
.sec09__header-inner .text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #165e58;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec09__header-inner .text {
    font-size: calc(28 / 750 * 100vw);
  }
}

.sec09__toggle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: min(calc(74 / 1080 * 100vw), 74px);
  height: min(calc(74 / 1080 * 100vw), 74px);
}
@media screen and (max-width: 767px) {
  .sec09__toggle-icon {
    width: calc(74 / 750 * 100vw);
    height: calc(74 / 750 * 100vw);
  }
}
.sec09__toggle-icon img {
  width: min(calc(31 / 1080 * 100vw), 31px);
  height: auto;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .sec09__toggle-icon img {
    width: calc(42 / 750 * 100vw);
  }
}

.sec09__header.--open .sec09__toggle-icon img {
  transform: rotate(180deg);
}

.sec09__qa-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: min(calc(55.5 / 1080 * 100vw), 55.5px);
  height: min(calc(55.5 / 1080 * 100vw), 55.5px);
  border: 1px solid #50c0b7;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sec09__qa-badge {
    width: calc(74 / 750 * 100vw);
    height: calc(74 / 750 * 100vw);
  }
}
.sec09__qa-badge span {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #50c0b7;
  margin: 0 0 0 min(calc(2 / 1080 * 100vw), 2px);
}
@media screen and (max-width: 767px) {
  .sec09__qa-badge span {
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec09__qa-badge.--answer {
  background-color: #50c0b7;
  border-color: #50c0b7;
}
.sec09__qa-badge.--answer span {
  color: #fff;
}

.sec09__body {
  padding: 0 min(calc(64 / 1080 * 100vw), 64px);
}
@media screen and (max-width: 767px) {
  .sec09__body {
    padding: 0 calc(40 / 750 * 100vw);
  }
}

.sec09__body-inner {
  padding: min(calc(20 / 1080 * 100vw), 20px) 0;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  align-items: center;
  border-top: min(calc(2 / 1080 * 100vw), 2px) solid #ccc;
}
@media screen and (max-width: 767px) {
  .sec09__body-inner {
    padding: calc(40 / 750 * 100vw) 0;
    gap: calc(24 / 750 * 100vw);
    align-items: flex-start;
    border-top-width: calc(2 / 750 * 100vw);
  }
}
.sec09__body-inner .text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec09__body-inner .text {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec10 {
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
}
@media screen and (max-width: 767px) {
  .sec10 {
    padding: calc(80 / 750 * 100vw) 0;
  }
}
.sec10 .section__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) {
  .sec10 .section__inner {
    width: 100%;
    padding: 0 calc(30 / 750 * 100vw);
  }
}
.sec10 #timerex_calendar,
.sec10 #timerex_calendar > div {
  background: transparent !important;
}

.sec11 {
  background-color: #fff;
  padding: min(calc(51 / 1080 * 100vw), 51px) 0 min(calc(52 / 1080 * 100vw), 52px);
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .sec11 {
    padding: calc(80 / 750 * 100vw) 0;
  }
}
.sec11 .sec11__inner {
  display: flex;
  flex-direction: column;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  width: min(calc(677 / 1080 * 100vw), 677px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__inner {
    gap: calc(24 / 750 * 100vw);
    width: auto;
    padding: 0 calc(60 / 750 * 100vw);
  }
}
.sec11 .sec11__block {
  display: flex;
  flex-direction: column;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__block {
    gap: calc(16 / 750 * 100vw);
  }
}
.sec11 .sec11__block.--a {
  gap: min(calc(2 / 1080 * 100vw), 2px);
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__block.--a {
    gap: calc(16 / 750 * 100vw);
  }
}
.sec11 .sec11__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #444;
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__title {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec11 .sec11__risks {
  display: flex;
  flex-direction: column;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__risks {
    gap: calc(16 / 750 * 100vw);
  }
}
.sec11 .sec11__risk {
  display: flex;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__risk {
    flex-direction: column;
    gap: calc(8 / 750 * 100vw);
  }
}
.sec11 .sec11__risk-label {
  flex-shrink: 0;
  width: min(calc(155 / 1080 * 100vw), 155px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #444;
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__risk-label {
    width: auto;
    font-size: calc(20 / 750 * 100vw);
  }
}
.sec11 .sec11__risk-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #444;
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__risk-text {
    font-size: calc(20 / 750 * 100vw);
    text-align: justify;
  }
}
.sec11 .sec11__costs {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__costs {
    gap: calc(8 / 750 * 100vw);
  }
}
.sec11 .sec11__costs-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #444;
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__costs-heading {
    font-size: calc(24 / 750 * 100vw);
  }
}
.sec11 .sec11__costs-columns {
  display: flex;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__costs-columns {
    flex-direction: column;
    gap: calc(20 / 750 * 100vw);
  }
}
.sec11 .sec11__costs-column:first-child {
  flex-shrink: 0;
  width: min(calc(232 / 1080 * 100vw), 232px);
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__costs-column:first-child {
    width: auto;
  }
}
.sec11 .sec11__costs-column:last-child {
  flex: 1;
  min-width: 0;
}
.sec11 .sec11__costs-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #444;
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__costs-text {
    font-size: calc(20 / 750 * 100vw);
  }
}
.sec11 .sec11__costs-list {
  padding-left: min(calc(18 / 1080 * 100vw), 18px);
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__costs-list {
    padding-left: calc(30 / 750 * 100vw);
  }
}
.sec11 .sec11__costs-list li {
  list-style: disc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #444;
}
@media screen and (max-width: 767px) {
  .sec11 .sec11__costs-list li {
    font-size: calc(20 / 750 * 100vw);
  }
}
/*# sourceMappingURL=lp.css.map */
