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

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

.cv01__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) {
  .cv01__catch {
    font-size: calc(32 / 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: opacity 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 {
  opacity: 0.85;
}

.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;
}

.fv01 {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

.fv01__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/600;
}
@media screen and (max-width: 767px) {
  .fv01__main {
    aspect-ratio: 750/1299;
  }
}

.fv01__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.fv01__bg picture,
.fv01__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.fv01__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fv01__logo {
  position: absolute;
  top: min(calc(14 / 1080 * 100vw), 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(316 / 1080 * 100vw), 316px);
}
@media screen and (max-width: 767px) {
  .fv01__logo {
    top: calc(24 / 750 * 100vw);
    left: calc(0 / 750 * 100vw);
    transform: none;
    width: calc(460 / 750 * 100vw);
  }
}
.fv01__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.fv01__title {
  position: absolute;
  top: min(calc(100 / 1080 * 100vw), 100px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(54 / 1080 * 100vw), 54px);
  font-weight: 700;
  line-height: 1.22;
  color: #333;
  text-align: center;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .fv01__title {
    top: calc(287 / 750 * 100vw);
    font-size: calc(72 / 750 * 100vw);
  }
}
.fv01__title-line {
  display: block;
}
.fv01__title-em.--green1 {
  color: #0c7153;
}
.fv01__title-em.--green2 {
  color: #086c52;
}

.fv01__subs {
  position: absolute;
  top: min(calc(252 / 1080 * 100vw), 252px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: min(calc(44 / 1080 * 100vw), 44px);
}
@media screen and (max-width: 767px) {
  .fv01__subs {
    top: calc(498 / 750 * 100vw);
    left: calc(72 / 750 * 100vw);
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(60 / 750 * 100vw);
  }
}

.fv01__sub {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  padding-bottom: min(calc(6 / 1080 * 100vw), 6px);
}
@media screen and (max-width: 767px) {
  .fv01__sub {
    gap: calc(9 / 750 * 100vw);
    padding-bottom: calc(9 / 750 * 100vw);
  }
}
.fv01__sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(calc(-14 / 1080 * 100vw), -14px);
  height: min(calc(6 / 1080 * 100vw), 6px);
  background-image: url("data:image/svg+xml,%3Csvg width='612' height='6' viewBox='0 0 612 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3L609 2.99995' stroke='%2350C0B7' stroke-width='6' stroke-linecap='round' stroke-dasharray='0.1 18'/%3E%3C/svg%3E%0A");
  background-size: min(calc(612 / 1080 * 100vw), 612px) min(calc(6 / 1080 * 100vw), 6px);
  background-repeat: repeat-x;
  background-position: left center;
}
@media screen and (max-width: 767px) {
  .fv01__sub::after {
    background-image: url("data:image/svg+xml,%3Csvg width='689' height='8' viewBox='0 0 689 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4L685 4.00006' stroke='url(%23paint0_linear_14912_2764)' stroke-width='8' stroke-linecap='round' stroke-dasharray='0.1 24'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_14912_2764' x1='4' y1='4.5' x2='685' y2='4.50006' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2300A699'/%3E%3Cstop offset='1' stop-color='%2325BF9A'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    height: calc(8 / 750 * 100vw);
    bottom: calc(-14 / 750 * 100vw);
    background-size: calc(689 / 750 * 100vw) calc(8 / 750 * 100vw);
  }
}
.fv01__sub-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
.fv01__sub.--sub1 .fv01__sub-icon {
  width: min(calc(47 / 1080 * 100vw), 47px);
  height: min(calc(31 / 1080 * 100vw), 31px);
}
@media screen and (max-width: 767px) {
  .fv01__sub.--sub1 .fv01__sub-icon {
    width: calc(61 / 750 * 100vw);
    height: calc(38 / 750 * 100vw);
  }
}
.fv01__sub.--sub2 .fv01__sub-icon {
  width: min(calc(47 / 1080 * 100vw), 47px);
  height: min(calc(52 / 1080 * 100vw), 52px);
}
@media screen and (max-width: 767px) {
  .fv01__sub.--sub2 .fv01__sub-icon {
    width: calc(61 / 750 * 100vw);
    height: calc(62 / 750 * 100vw);
  }
}
.fv01__sub-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fv01__sub-text {
  display: flex;
  align-items: baseline;
  gap: min(calc(6 / 1080 * 100vw), 6px);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .fv01__sub-text {
    gap: calc(8 / 750 * 100vw);
  }
}
.fv01__sub-label {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  font-weight: 700;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 767px) {
  .fv01__sub-label {
    font-size: calc(48 / 750 * 100vw);
  }
}
.fv01__sub-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(80 / 1080 * 100vw), 80px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #00a699 0%, #25bf9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .fv01__sub-num {
    font-size: calc(100 / 750 * 100vw);
  }
}
.fv01__sub-accent {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #00a699 0%, #25bf9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .fv01__sub-accent {
    font-size: calc(56 / 750 * 100vw);
  }
}
.fv01__sub-note {
  align-self: flex-start;
  margin-left: max(calc(-12 / 1080 * 100vw), -12px);
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  line-height: 1.3;
  color: #666;
}
@media screen and (max-width: 767px) {
  .fv01__sub-note {
    margin-left: calc(-6 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .fv01__sub.--sub2 {
    align-items: flex-start;
  }
  .fv01__sub.--sub2 .fv01__sub-text {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(14 / 750 * 100vw);
  }
}

.fv01__badges {
  position: absolute;
  top: min(calc(372 / 1080 * 100vw), 372px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: min(calc(21 / 1080 * 100vw), 21px);
}
@media screen and (max-width: 767px) {
  .fv01__badges {
    top: calc(982 / 750 * 100vw);
    gap: calc(28 / 750 * 100vw);
  }
}

.fv01__badge {
  position: relative;
  width: min(calc(207 / 1080 * 100vw), 207px);
  height: min(calc(207 / 1080 * 100vw), 207px);
  padding: min(calc(6 / 1080 * 100vw), 6px);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 min(calc(6 / 1080 * 100vw), 6px) min(calc(18 / 1080 * 100vw), 18px) rgba(189, 155, 80, 0.3);
}
@media screen and (max-width: 767px) {
  .fv01__badge {
    box-shadow: 0 calc(8 / 750 * 100vw) calc(24 / 750 * 100vw) rgba(189, 155, 80, 0.3);
    width: calc(276 / 750 * 100vw);
    height: calc(276 / 750 * 100vw);
    padding: calc(8 / 750 * 100vw);
  }
}

.fv01__badge-circle {
  width: 100%;
  height: 100%;
  background: #fff;
  border: min(calc(6 / 1080 * 100vw), 6px) solid #bd9b50;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: max(calc(0 / 1080 * 100vw), 0px);
}
@media screen and (max-width: 767px) {
  .fv01__badge-circle {
    border-width: calc(8 / 750 * 100vw);
    padding-top: calc(4 / 750 * 100vw);
  }
}

.fv01__badge-icon {
  width: min(calc(40 / 1080 * 100vw), 40px);
  height: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .fv01__badge-icon {
    width: calc(54 / 750 * 100vw);
    height: calc(54 / 750 * 100vw);
  }
}
.fv01__badge-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fv01__badge-label {
  margin-top: min(calc(6 / 1080 * 100vw), 6px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 767px) {
  .fv01__badge-label {
    margin-top: calc(8 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
  }
}

.fv01__badge-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: min(calc(8 / 1080 * 100vw), 8px);
}
.fv01__badge-value.--item02 {
  margin-top: max(calc(0 / 1080 * 100vw), 0px);
}
@media screen and (max-width: 767px) {
  .fv01__badge-value {
    margin-top: calc(10 / 750 * 100vw);
  }
}

.fv01__badge-num {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(60 / 1080 * 100vw), 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #bd9b50;
}
@media screen and (max-width: 767px) {
  .fv01__badge-num {
    font-size: calc(82 / 750 * 100vw);
  }
}
.fv01__badge:nth-child(2) .fv01__badge-num {
  font-size: min(calc(75 / 1080 * 100vw), 75px);
}
@media screen and (max-width: 767px) {
  .fv01__badge:nth-child(2) .fv01__badge-num {
    font-size: calc(100 / 750 * 100vw);
  }
}

.fv01__badge-unit {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: min(calc(6 / 1080 * 100vw), 6px);
  margin-bottom: min(calc(4 / 1080 * 100vw), 4px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fv01__badge-unit {
    margin-left: calc(8 / 750 * 100vw);
    margin-bottom: calc(6 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
  }
}
.fv01__badge-unit span:first-child {
  color: #bd9b50;
  margin-bottom: min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .fv01__badge-unit span:first-child {
    margin-bottom: calc(6 / 750 * 100vw);
  }
}
.fv01__badge-unit span:last-child {
  color: #333;
}
.fv01__badge:nth-child(2) .fv01__badge-unit {
  font-size: min(calc(27 / 1080 * 100vw), 27px);
}
@media screen and (max-width: 767px) {
  .fv01__badge:nth-child(2) .fv01__badge-unit {
    font-size: calc(36 / 750 * 100vw);
  }
}
.fv01__badge:nth-child(2) .fv01__badge-unit span:first-child {
  color: #333;
}

.fv01__badge-note {
  position: absolute;
  bottom: min(calc(24 / 1080 * 100vw), 24px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(15 / 1080 * 100vw), 15px);
  font-weight: 400;
  line-height: 1.3;
  color: #555;
}
@media screen and (max-width: 767px) {
  .fv01__badge-note {
    bottom: calc(28 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

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

.fv01__cta-title {
  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) {
  .fv01__cta-title {
    font-size: calc(32 / 750 * 100vw);
  }
}

.fv01__cta-btn {
  margin-top: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .fv01__cta-btn {
    margin-top: calc(32 / 750 * 100vw);
    width: 100%;
  }
}
.fv01__cta-btn .cv-btn-wrapper {
  padding: 0;
}

.fv01__cta-note {
  margin-top: min(calc(30 / 1080 * 100vw), 30px);
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  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) {
  .fv01__cta-note {
    margin-top: calc(37 / 750 * 100vw);
    max-width: none;
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.3;
  }
}

.fv02 {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

.fv02__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/600;
}
@media screen and (max-width: 767px) {
  .fv02__main {
    aspect-ratio: 750/1267;
  }
}

.fv02__kv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv02__kv {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.fv02__kv picture,
.fv02__kv img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .fv02__kv picture,
  .fv02__kv img {
    height: 100%;
    object-fit: cover;
  }
}

.fv02__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fv02__logo {
  position: absolute;
  top: min(calc(16 / 1080 * 100vw), 16px);
  left: min(calc(488 / 1080 * 100vw), 488px);
  width: min(calc(316 / 1080 * 100vw), 316px);
}
@media screen and (max-width: 767px) {
  .fv02__logo {
    top: calc(20 / 750 * 100vw);
    left: 0;
    width: calc(460 / 750 * 100vw);
  }
}
.fv02__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.fv02__copy {
  position: absolute;
  top: min(calc(75 / 1080 * 100vw), 75px);
  left: min(calc(500 / 1080 * 100vw), 500px);
}
@media screen and (max-width: 767px) {
  .fv02__copy {
    top: calc(117 / 750 * 100vw);
    left: calc(40 / 750 * 100vw);
  }
}

.fv02__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #333;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fv02__lead {
    font-size: calc(42 / 750 * 100vw);
  }
}
.fv02__lead-em {
  color: #bd9b50;
}
.fv02__lead-note {
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 400;
  color: #666;
}
@media screen and (max-width: 767px) {
  .fv02__lead-note {
    font-size: calc(20 / 750 * 100vw);
  }
}

.fv02__title {
  margin-top: min(calc(20 / 1080 * 100vw), 20px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(52 / 1080 * 100vw), 52px);
  font-weight: 700;
  line-height: 1.22;
  color: #333;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fv02__title {
    margin-top: calc(30 / 750 * 100vw);
    font-size: calc(72 / 750 * 100vw);
  }
}
.fv02__title .dot {
  position: relative;
  display: inline-block;
}
.fv02__title .dot::before {
  content: "";
  display: block;
  position: absolute;
  width: min(calc(8 / 1080 * 100vw), 8px);
  height: min(calc(8 / 1080 * 100vw), 8px);
  border-radius: 50%;
  background-color: #086C52;
  left: 50%;
  transform: translateX(-50%);
  top: max(calc(-10 / 1080 * 100vw), -10px);
}
@media screen and (max-width: 767px) {
  .fv02__title .dot::before {
    width: calc(10 / 750 * 100vw);
    height: calc(10 / 750 * 100vw);
    top: calc(-12 / 750 * 100vw);
  }
}
.fv02__title-line {
  display: block;
}
.fv02__title-line.--large {
  font-size: min(calc(60 / 1080 * 100vw), 60px);
  line-height: 1.18;
}
@media screen and (max-width: 767px) {
  .fv02__title-line.--large {
    font-size: calc(80 / 750 * 100vw);
  }
}
.fv02__title-line.--green2 {
  color: #086c52;
}
.fv02__title-em.--green1 {
  color: #0c7153;
}

.fv02__diff {
  position: absolute;
  top: min(calc(395 / 1080 * 100vw), 395px);
  left: min(calc(1087 / 1080 * 100vw), 1087px);
  display: flex;
  align-items: flex-end;
  color: #165e58;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fv02__diff {
    top: calc(940 / 750 * 100vw);
    left: calc(268 / 750 * 100vw);
  }
}
.fv02__diff-label {
  font-size: min(calc(46 / 1080 * 100vw), 46px);
  line-height: 1.3;
  padding-bottom: min(calc(18 / 1080 * 100vw), 18px);
}
@media screen and (max-width: 767px) {
  .fv02__diff-label {
    font-size: calc(64 / 750 * 100vw);
    padding-bottom: calc(24 / 750 * 100vw);
  }
}
.fv02__diff-num {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(190 / 1080 * 100vw), 190px);
  font-weight: 700;
  line-height: 1;
  margin: 0 min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .fv02__diff-num {
    font-size: calc(240 / 750 * 100vw);
    margin: 0 calc(6 / 750 * 100vw);
  }
}
.fv02__diff-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .fv02__diff-unit {
    padding-bottom: calc(14 / 750 * 100vw);
  }
}
.fv02__diff-unit-yen {
  font-size: min(calc(54 / 1080 * 100vw), 54px);
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .fv02__diff-unit-yen {
    font-size: calc(76 / 750 * 100vw);
  }
}
.fv02__diff-unit-bottom {
  display: flex;
  align-items: baseline;
}
.fv02__diff-unit-of {
  font-size: min(calc(42 / 1080 * 100vw), 42px);
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .fv02__diff-unit-of {
    font-size: calc(56 / 750 * 100vw);
  }
}
.fv02__diff-unit-diff {
  font-size: min(calc(54 / 1080 * 100vw), 54px);
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .fv02__diff-unit-diff {
    font-size: calc(76 / 750 * 100vw);
  }
}

.fv02__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: min(calc(24 / 1080 * 100vw), 24px) min(calc(30 / 1080 * 100vw), 30px) min(calc(30 / 1080 * 100vw), 30px);
  background-color: #fff;
  box-shadow: 0 0 min(calc(120 / 1080 * 100vw), 120px) #a6cdca;
}
@media screen and (max-width: 767px) {
  .fv02__cta {
    padding: calc(33 / 750 * 100vw) calc(30 / 750 * 100vw) calc(37 / 750 * 100vw);
    box-shadow: 0 0 calc(240 / 750 * 100vw) #a6cdca;
  }
}

.fv02__cta-title {
  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;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .fv02__cta-title {
    font-size: calc(32 / 750 * 100vw);
  }
}

.fv02__cta-btn {
  margin-top: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .fv02__cta-btn {
    margin-top: calc(32 / 750 * 100vw);
    width: 100%;
  }
}
.fv02__cta-btn .cv-btn-wrapper {
  padding: 0;
}

.fv02__cta-note {
  margin-top: min(calc(30 / 1080 * 100vw), 30px);
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  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) {
  .fv02__cta-note {
    margin-top: calc(37 / 750 * 100vw);
    max-width: none;
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.3;
  }
}

.fv03 {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

.fv03__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/600;
}
@media screen and (max-width: 767px) {
  .fv03__main {
    aspect-ratio: 750/1300;
  }
}

.fv03__kv {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv03__kv picture,
.fv03__kv img {
  display: block;
  width: 100%;
  height: auto;
}

.fv03__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fv03__logo {
  position: absolute;
  top: min(calc(14 / 1080 * 100vw), 14px);
  left: min(calc(510 / 1080 * 100vw), 510px);
  width: min(calc(316 / 1080 * 100vw), 316px);
}
@media screen and (max-width: 767px) {
  .fv03__logo {
    top: calc(24 / 750 * 100vw);
    left: calc(0 / 750 * 100vw);
    transform: none;
    width: calc(460 / 750 * 100vw);
  }
}
.fv03__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.fv03__badges {
  position: absolute;
  top: min(calc(372 / 1080 * 100vw), 372px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: min(calc(21 / 1080 * 100vw), 21px);
}
@media screen and (max-width: 767px) {
  .fv03__badges {
    top: calc(982 / 750 * 100vw);
    gap: calc(28 / 750 * 100vw);
  }
}

.fv03__badge {
  position: relative;
  width: min(calc(207 / 1080 * 100vw), 207px);
  height: min(calc(207 / 1080 * 100vw), 207px);
  padding: min(calc(6 / 1080 * 100vw), 6px);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 min(calc(6 / 1080 * 100vw), 6px) min(calc(18 / 1080 * 100vw), 18px) rgba(189, 155, 80, 0.3);
}
@media screen and (max-width: 767px) {
  .fv03__badge {
    box-shadow: 0 calc(8 / 750 * 100vw) calc(24 / 750 * 100vw) rgba(189, 155, 80, 0.3);
    width: calc(276 / 750 * 100vw);
    height: calc(276 / 750 * 100vw);
    padding: calc(8 / 750 * 100vw);
  }
}

.fv03__badge-circle {
  width: 100%;
  height: 100%;
  background: #fff;
  border: min(calc(6 / 1080 * 100vw), 6px) solid #bd9b50;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: max(calc(0 / 1080 * 100vw), 0px);
}
@media screen and (max-width: 767px) {
  .fv03__badge-circle {
    border-width: calc(8 / 750 * 100vw);
    padding-top: calc(4 / 750 * 100vw);
  }
}

.fv03__badge-icon {
  width: min(calc(40 / 1080 * 100vw), 40px);
  height: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .fv03__badge-icon {
    width: calc(54 / 750 * 100vw);
    height: calc(54 / 750 * 100vw);
  }
}
.fv03__badge-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fv03__badge-label {
  margin-top: min(calc(6 / 1080 * 100vw), 6px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 767px) {
  .fv03__badge-label {
    margin-top: calc(8 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
  }
}

.fv03__badge-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: min(calc(8 / 1080 * 100vw), 8px);
}
.fv03__badge-value.--item02 {
  margin-top: max(calc(0 / 1080 * 100vw), 0px);
}
@media screen and (max-width: 767px) {
  .fv03__badge-value {
    margin-top: calc(10 / 750 * 100vw);
  }
}

.fv03__badge-num {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(60 / 1080 * 100vw), 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #bd9b50;
}
@media screen and (max-width: 767px) {
  .fv03__badge-num {
    font-size: calc(82 / 750 * 100vw);
  }
}
.fv03__badge:nth-child(2) .fv03__badge-num {
  font-size: min(calc(75 / 1080 * 100vw), 75px);
}
@media screen and (max-width: 767px) {
  .fv03__badge:nth-child(2) .fv03__badge-num {
    font-size: calc(100 / 750 * 100vw);
  }
}

.fv03__badge-unit {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: min(calc(6 / 1080 * 100vw), 6px);
  margin-bottom: min(calc(4 / 1080 * 100vw), 4px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fv03__badge-unit {
    margin-left: calc(8 / 750 * 100vw);
    margin-bottom: calc(6 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
  }
}
.fv03__badge-unit span:first-child {
  color: #bd9b50;
  margin-bottom: min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .fv03__badge-unit span:first-child {
    margin-bottom: calc(6 / 750 * 100vw);
  }
}
.fv03__badge-unit span:last-child {
  color: #333;
}
.fv03__badge:nth-child(2) .fv03__badge-unit {
  font-size: min(calc(27 / 1080 * 100vw), 27px);
}
@media screen and (max-width: 767px) {
  .fv03__badge:nth-child(2) .fv03__badge-unit {
    font-size: calc(36 / 750 * 100vw);
  }
}
.fv03__badge:nth-child(2) .fv03__badge-unit span:first-child {
  color: #333;
}

.fv03__badge-note {
  position: absolute;
  bottom: min(calc(24 / 1080 * 100vw), 24px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(15 / 1080 * 100vw), 15px);
  font-weight: 400;
  line-height: 1.3;
  color: #555;
}
@media screen and (max-width: 767px) {
  .fv03__badge-note {
    bottom: calc(28 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
  }
}

.fv03__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: min(calc(24 / 1080 * 100vw), 24px) min(calc(30 / 1080 * 100vw), 30px) min(calc(30 / 1080 * 100vw), 30px);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .fv03__cta {
    padding: calc(33 / 750 * 100vw) calc(30 / 750 * 100vw) calc(37 / 750 * 100vw);
  }
}

.fv03__cta-title {
  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;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .fv03__cta-title {
    font-size: calc(32 / 750 * 100vw);
  }
}

.fv03__cta-btn {
  margin-top: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .fv03__cta-btn {
    margin-top: calc(32 / 750 * 100vw);
    width: 100%;
  }
}
.fv03__cta-btn .cv-btn-wrapper {
  padding: 0;
}

.fv03__cta-note {
  margin-top: min(calc(30 / 1080 * 100vw), 30px);
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  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) {
  .fv03__cta-note {
    margin-top: calc(37 / 750 * 100vw);
    max-width: none;
    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(40 / 1080 * 100vw), 40px);
  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: flex-start;
  gap: min(calc(11 / 1080 * 100vw), 11px);
}
@media screen and (max-width: 767px) {
  .sec01__list {
    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;
}

.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-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: #165e58;
  margin-top: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec01__footer-copy {
    font-size: calc(34 / 750 * 100vw);
    margin-top: max(calc(-20 / 1080 * 100vw), -20px);
  }
}
.sec01__footer-copy strong {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(100 / 1080 * 100vw), 100px);
  background: var(--main-accent-3-accent, linear-gradient(90deg, #00a699 0%, #25bf9a 100%));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .sec01__footer-copy strong {
    font-size: calc(100 / 750 * 100vw);
  }
}
.sec01__footer-copy span {
  font-size: min(calc(28 / 1080 * 100vw), 28px);
  background: var(--main-accent-3-accent, 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 span {
    font-size: calc(38 / 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(5 / 1080 * 100vw), 5px) min(calc(17 / 1080 * 100vw), 17px);
  margin-top: min(calc(10 / 1080 * 100vw), 10px);
  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(12 / 750 * 100vw);
    margin-top: calc(20 / 750 * 100vw);
  }
}
.sec01__footer-title p {
  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.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__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec02__header {
    gap: calc(24 / 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(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .sec02__eyebrow-line {
    margin-top: calc(4 / 750 * 100vw);
  }
}
.sec02__eyebrow-line img {
  width: min(calc(248 / 1080 * 100vw), 248px);
  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(42 / 1080 * 100vw), 42px);
  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);
    padding: 0 calc(30 / 750 * 100vw);
    text-align: left;
  }
}
.sec02__lead strong {
  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: calc(0 / 750 * 100vw);
    justify-content: space-between;
    padding-bottom: calc(16 / 750 * 100vw);
  }
}
.sec02__table-row.--header {
  border-bottom: none;
  border-bottom: 2px solid #ddd;
}

.sec02__table-cell {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.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.01em;
  color: #333;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sec02__table-cell.--label {
    width: calc(216 / 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.01em;
  color: #bd9b50;
}
@media screen and (max-width: 767px) {
  .sec02__table-cell.--kodate {
    width: calc(190 / 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: calc(190 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec02__table-row.--header .sec02__table-cell.--label {
  visibility: hidden;
}

.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: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec03__title {
    gap: calc(16 / 750 * 100vw);
  }
}
.sec03__title strong {
  font-size: min(calc(100 / 1080 * 100vw), 100px);
  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: 600;
}
@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: 500;
  line-height: 1.6;
  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 {
  margin-top: min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .sec03__title-eyebrow-line {
    margin-top: calc(4 / 750 * 100vw);
  }
}
.sec03__title-eyebrow-line img {
  width: min(calc(173 / 1080 * 100vw), 173px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec03__title-eyebrow-line img {
    width: calc(230 / 750 * 100vw);
  }
}

.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 {
  vertical-align: baseline;
}

.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-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(67 / 1080 * 100vw), 67px) 0 min(calc(80 / 1080 * 100vw), 80px);
  background-image: url(../img/pc/sec04_head-bg.webp);
  background-repeat: no-repeat;
  background-size: 36.5%;
  background-position: 50% 7%;
}
@media screen and (max-width: 767px) {
  .sec04 {
    padding: calc(123 / 750 * 100vw) 0 calc(96 / 750 * 100vw);
    gap: calc(100 / 750 * 100vw);
    background-image: url(../img/sp/sec04_head-bg.webp);
    background-size: 87%;
    background-position: 80% 2%;
  }
}

.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__header-deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(267 / 1080 * 100vw), 267px);
  z-index: 0;
  opacity: 0.12;
}
@media screen and (max-width: 767px) {
  .sec04__header-deco {
    width: calc(409 / 750 * 100vw);
  }
}
.sec04__header-deco img {
  width: 100%;
  height: auto;
}

.sec04__catch {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: min(calc(15 / 1080 * 100vw), 15px);
}
.sec04__catch-line {
  width: min(calc(14 / 1080 * 100vw), 14px);
}
@media screen and (max-width: 767px) {
  .sec04__catch-line {
    width: calc(18 / 750 * 100vw);
  }
}
.sec04__catch-line:last-child {
  transform: scaleX(-1);
}
.sec04__catch-line img {
  width: 100%;
  height: auto;
}

.sec04__catch-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.01em;
  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__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 {
  margin-top: min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .sec04__title-eyebrow-line {
    margin-top: calc(4 / 750 * 100vw);
  }
}
.sec04__title-eyebrow-line img {
  width: min(calc(218 / 1080 * 100vw), 218px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec04__title-eyebrow-line img {
    width: calc(290 / 750 * 100vw);
  }
}

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

.sec04__title-logo-label {
  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: 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);
}
@media screen and (max-width: 767px) {
  .sec04__title-logo-img {
    width: calc(460 / 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(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) {
  .sec04__title-main {
    font-size: calc(56 / 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: calc(750 / 750 * 100vw);
    gap: calc(34 / 750 * 100vw);
  }
}

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

.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: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec04__card-img {
    width: calc(770 / 750 * 100vw);
    margin-left: calc(-20 / 750 * 100vw);
  }
}
.sec04__card-img picture,
.sec04__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sec04__card-labels {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  margin-top: max(calc(-114 / 1080 * 100vw), -114px);
  margin-left: max(calc(-25 / 1080 * 100vw), -25px);
}
@media screen and (max-width: 767px) {
  .sec04__card-labels {
    gap: calc(8 / 750 * 100vw);
    margin-top: calc(-123 / 750 * 100vw);
    margin-left: calc(-30 / 750 * 100vw);
  }
}

.sec04__card-label {
  display: inline-flex;
  align-items: center;
  padding: min(calc(4 / 1080 * 100vw), 4px) min(calc(16 / 1080 * 100vw), 16px) min(calc(4 / 1080 * 100vw), 4px) min(calc(8 / 1080 * 100vw), 8px);
  background-color: #fff;
  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;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .sec04__card-label {
    padding: calc(8 / 750 * 100vw) calc(24 / 750 * 100vw) calc(8 / 750 * 100vw) calc(40 / 750 * 100vw);
    font-size: calc(42 / 750 * 100vw);
  }
}

.sec04__card-body {
  display: flex;
  align-items: center;
  flex: 1;
  padding: min(calc(10 / 1080 * 100vw), 10px) 0;
}
@media screen and (max-width: 767px) {
  .sec04__card-body {
    width: 100%;
    padding: 0 calc(30 / 750 * 100vw) calc(10 / 750 * 100vw);
    justify-content: flex-end;
  }
}

.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: var(--main-accent-2-sub, #165e58);
  font-weight: 700;
}

.sec04__card-box {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  width: min(calc(458 / 1080 * 100vw), 458px);
  padding: min(calc(36 / 1080 * 100vw), 36px) min(calc(14 / 1080 * 100vw), 14px);
  border: 2px solid #50c0b7;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec04__card-box {
    width: 100%;
    gap: calc(24 / 750 * 100vw);
    padding: calc(50 / 750 * 100vw) calc(20 / 750 * 100vw) calc(28 / 750 * 100vw);
    margin-top: calc(20 / 750 * 100vw);
    border-width: 1px;
  }
}

.sec04__card-box-title {
  width: 100%;
  padding: 0 min(calc(16 / 1080 * 100vw), 16px);
  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.01em;
  color: #50c0b7;
  background-color: #f5fdfb;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
}
@media screen and (max-width: 767px) {
  .sec04__card-box-title {
    padding: 0 calc(24 / 750 * 100vw);
    font-size: calc(38 / 750 * 100vw);
    width: 84%;
  }
}

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

.sec04__card-list-item {
  display: flex;
  align-items: center;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec04__card-list-item {
    gap: calc(16 / 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);
  }
}
.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 {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec04__card-list-text strong {
  color: var(--main-accent-2-sub, #165e58);
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec04__card-list-text strong {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec05 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: min(calc(72 / 1080 * 100vw), 72px) min(calc(30 / 1080 * 100vw), 30px) min(calc(56 / 1080 * 100vw), 56px);
  gap: min(calc(32 / 1080 * 100vw), 32px);
  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(16 / 1080 * 100vw), 16px);
  width: min(calc(630 / 1080 * 100vw), 630px);
}
@media screen and (max-width: 767px) {
  .sec05__title {
    gap: calc(24 / 750 * 100vw);
    width: calc(630 / 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.04em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec05__title-main {
    font-size: calc(64 / 750 * 100vw);
  }
}
.sec05__title-main span {
  font-size: min(calc(38 / 1080 * 100vw), 38px);
}
@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);
  }
}

.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 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);
  }
}
.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);
    justify-content: flex-start;
  }
}

.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 {
    font-size: calc(38 / 750 * 100vw);
    text-align: left;
  }
}

.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 sup {
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .sec05__card-text sup {
    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(30 / 1080 * 100vw), 30px) min(calc(108 / 1080 * 100vw), 108px);
  background-color: #fef8ee;
}
@media screen and (max-width: 767px) {
  .sec06 {
    gap: calc(48 / 750 * 100vw);
    padding: calc(32 / 750 * 100vw) calc(60 / 750 * 100vw) 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(46 / 1080 * 100vw), 46px);
  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__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: 100%;
    gap: calc(48 / 750 * 100vw);
  }
}

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

.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;
  justify-content: center;
  align-items: center;
  width: min(calc(674 / 1080 * 100vw), 674px);
  padding: min(calc(16 / 1080 * 100vw), 16px) min(calc(32 / 1080 * 100vw), 32px);
  background-color: #fff;
  border-radius: min(calc(16 / 1080 * 100vw), 16px);
  box-shadow: 0px 0px min(calc(20 / 1080 * 100vw), 20px) 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .sec06__card-body {
    width: 100%;
    padding: calc(24 / 750 * 100vw) calc(64 / 750 * 100vw);
    border-radius: calc(24 / 750 * 100vw);
    box-shadow: 0px 0px calc(20 / 750 * 100vw) 0px rgba(0, 0, 0, 0.15);
  }
}
.sec06__card-body::before {
  content: "";
  position: absolute;
  top: min(calc(61 / 1080 * 100vw), 61px);
  left: max(calc(-30 / 1080 * 100vw), -30px);
  width: min(calc(53 / 1080 * 100vw), 53px);
  height: min(calc(53 / 1080 * 100vw), 53px);
  background-color: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
@media screen and (max-width: 767px) {
  .sec06__card-body::before {
    top: calc(-30 / 750 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(53 / 750 * 100vw);
    height: calc(53 / 750 * 100vw);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}
@media screen and (max-width: 767px) {
  .sec06__card:nth-child(even) .sec06__card-body::before {
    right: max(calc(-30 / 1080 * 100vw), -30px);
    transform: scale(-1, 1);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}

.sec06__card-header {
  display: flex;
  justify-content: center;
  padding: 0 min(calc(45 / 1080 * 100vw), 45px) min(calc(16 / 1080 * 100vw), 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec06__card-header {
    padding-bottom: calc(16 / 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;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec06__card-name {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1;
  }
}
.sec06__card-name p {
  line-height: 1;
}
.sec06__card-name span {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec06__card-name span {
    font-size: calc(40 / 750 * 100vw);
  }
}

.card-header-line {
  width: min(calc(34 / 1080 * 100vw), 34px);
  position: relative;
}
.card-header-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0) rotate(15deg);
  width: min(calc(2 / 1080 * 100vw), 2px);
  height: min(calc(34 / 1080 * 100vw), 34px);
  background: #165e58;
}
@media screen and (max-width: 767px) {
  .card-header-line::before {
    bottom: calc(-2 / 750 * 100vw);
    width: calc(2 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
    transform: translate(-50%, -25%) rotate(15deg);
  }
}

.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;
  text-align: center;
}
@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(56 / 1080 * 100vw), 56px);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec06__card-income span {
    font-size: calc(56 / 750 * 100vw);
  }
}

.sec06__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;
  position: relative;
  padding-top: min(calc(20 / 1080 * 100vw), 20px);
  margin-top: max(calc(-10 / 1080 * 100vw), -10px);
}
@media screen and (max-width: 767px) {
  .sec06__card-text {
    font-size: calc(26 / 750 * 100vw);
    margin-top: calc(-10 / 750 * 100vw);
    padding-top: calc(30 / 750 * 100vw);
  }
}
.sec06__card-text .card-text__line {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec06__card-text .card-text__line span {
  width: min(calc(442 / 1080 * 100vw), 442px);
  height: min(calc(2 / 1080 * 100vw), 2px);
  background: #165e58;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sec06__card-text .card-text__line span {
    width: calc(442 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
  }
}
.sec06__card-text .card-text__line::after, .sec06__card-text .card-text__line::before {
  content: "";
  width: min(calc(8 / 1080 * 100vw), 8px);
  height: min(calc(8 / 1080 * 100vw), 8px);
  background-color: #165e58;
  transform: rotate(45deg);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sec06__card-text .card-text__line::after, .sec06__card-text .card-text__line::before {
    width: calc(8 / 750 * 100vw);
    height: calc(8 / 750 * 100vw);
  }
}

.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 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 min(calc(10 / 1080 * 100vw), 10px);
  background-color: #fef8ee;
  margin-bottom: max(calc(-20 / 1080 * 100vw), -20px);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec06__others-header {
    padding: calc(10 / 750 * 100vw) 0;
    margin-bottom: calc(-30 / 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(36 / 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(24 / 1080 * 100vw), 24px);
  border: 2px solid #bd9b50;
}
@media screen and (max-width: 767px) {
  .sec06__others-list {
    gap: calc(85 / 750 * 100vw);
    padding: calc(60 / 750 * 100vw) calc(50 / 750 * 100vw) calc(40 / 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 {
    gap: calc(24 / 750 * 100vw);
    width: 100%;
  }
}

.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 {
    font-size: calc(26 / 750 * 100vw);
    text-align: left;
  }
}

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

.sec07__title {
  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) {
  .sec07__title {
    width: 100%;
    gap: calc(16 / 750 * 100vw);
  }
}

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

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

.sec07__title-eyebrow-line {
  margin-top: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec07__title-eyebrow-line {
    margin-top: calc(8 / 750 * 100vw);
  }
}
.sec07__title-eyebrow-line img {
  width: min(calc(173 / 1080 * 100vw), 173px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec07__title-eyebrow-line img {
    width: calc(230 / 750 * 100vw);
  }
}

.sec07__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) {
  .sec07__title-main {
    font-size: calc(56 / 750 * 100vw);
  }
}

.sec07__timeline {
  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) {
  .sec07__timeline {
    width: 100%;
    gap: calc(32 / 750 * 100vw);
  }
}

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

.sec07__step-icon {
  flex-shrink: 0;
  width: min(calc(120 / 1080 * 100vw), 120px);
  height: min(calc(120 / 1080 * 100vw), 120px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec07__step-icon {
    width: calc(140 / 750 * 100vw);
    height: calc(140 / 750 * 100vw);
  }
}
.sec07__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 2;
}
.sec07__step-icon::after {
  content: "";
  position: absolute;
  width: min(calc(4 / 1080 * 100vw), 4px);
  height: min(calc(260 / 1080 * 100vw), 260px);
  background: linear-gradient(90deg, #00a699 0%, #fff 100%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec07__step-icon::after {
    width: calc(4 / 750 * 100vw);
    height: calc(416 / 750 * 100vw);
  }
}
.sec07__step:last-child .sec07__step-icon::after {
  height: 0;
}

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

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

.sec07__step-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(60 / 1080 * 100vw), 60px);
  height: min(calc(26 / 1080 * 100vw), 26px);
  background-color: #165e58;
  transform: skew(-15deg);
}
@media screen and (max-width: 767px) {
  .sec07__step-label {
    width: calc(120 / 750 * 100vw);
    height: calc(51 / 750 * 100vw);
    border-radius: calc(4 / 750 * 100vw);
  }
}
.sec07__step-label span {
  font-family: "Oswald", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  transform: skew(15deg);
}
@media screen and (max-width: 767px) {
  .sec07__step-label span {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec07__step-heading {
  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;
}
@media screen and (max-width: 767px) {
  .sec07__step-heading {
    font-size: calc(42 / 750 * 100vw);
    letter-spacing: 0.01em;
    margin-right: -1em;
  }
}

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

.sec07__step-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) {
  .sec07__step-text {
    font-size: calc(26 / 750 * 100vw);
  }
}

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

.sec07__divider {
  display: flex;
  align-items: center;
  padding-left: min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .sec07__divider {
    padding-left: calc(70 / 750 * 100vw);
  }
}

.sec07__divider-line {
  width: min(calc(79 / 1080 * 100vw), 79px);
  height: 0;
  border-top: 2px dashed #333;
}
@media screen and (max-width: 767px) {
  .sec07__divider-line {
    width: calc(100 / 750 * 100vw);
  }
}

.sec07__divider-period {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(calc(480 / 1080 * 100vw), 480px);
  padding: min(calc(10 / 1080 * 100vw), 10px);
  border: 2px solid #666;
  border-radius: min(calc(16 / 1080 * 100vw), 16px);
  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: #666;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec07__divider-period {
    flex: 1;
    padding: calc(10 / 750 * 100vw);
    border-radius: calc(16 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
    border-width: 1px;
  }
}

.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(32 / 1080 * 100vw), 32px);
  padding: min(calc(56 / 1080 * 100vw), 56px) min(calc(30 / 1080 * 100vw), 30px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec08__content {
    gap: calc(48 / 750 * 100vw);
    padding: calc(80 / 750 * 100vw) 0;
  }
}

.sec08__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@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 {
  margin-top: min(calc(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .sec08__title-eyebrow-line {
    margin-top: calc(4 / 750 * 100vw);
  }
}
.sec08__title-eyebrow-line img {
  width: min(calc(173 / 1080 * 100vw), 173px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec08__title-eyebrow-line img {
    width: calc(230 / 750 * 100vw);
  }
}

.sec08__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;
  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(35 / 1080 * 100vw), 35px);
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec08__main {
    flex-direction: column;
    gap: calc(32 / 750 * 100vw);
    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(420 / 1080 * 100vw), 420px);
}
@media screen and (max-width: 767px) {
  .sec08__checklist {
    width: 100%;
    gap: calc(24 / 750 * 100vw);
    padding: 0 calc(36 / 750 * 100vw);
  }
}

.sec08__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: min(calc(12 / 1080 * 100vw), 12px);
  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;
}
@media screen and (max-width: 767px) {
  .sec08__checklist-item {
    gap: calc(12 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec08__checklist-icon {
  flex-shrink: 0;
  width: min(calc(24 / 1080 * 100vw), 24px);
  height: auto;
  margin-top: min(calc(6 / 1080 * 100vw), 6px);
}
@media screen and (max-width: 767px) {
  .sec08__checklist-icon {
    width: calc(32 / 750 * 100vw);
    margin-top: calc(8 / 750 * 100vw);
  }
}

.sec09 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  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(4 / 1080 * 100vw), 4px);
}
@media screen and (max-width: 767px) {
  .sec09__title-eyebrow-line {
    margin-top: calc(4 / 750 * 100vw);
  }
}
.sec09__title-eyebrow-line img {
  width: min(calc(97 / 1080 * 100vw), 97px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec09__title-eyebrow-line img {
    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(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 {
    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: left;
}
@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(56 / 1080 * 100vw), 56px);
  height: min(calc(56 / 1080 * 100vw), 56px);
}
@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(56 / 1080 * 100vw), 56px);
  height: min(calc(56 / 1080 * 100vw), 56px);
  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: max(calc(-8 / 1080 * 100vw), -8px) 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;
  }
}
.sec09__body-inner::before {
  left: min(calc(64 / 1080 * 100vw), 64px);
  right: min(calc(64 / 1080 * 100vw), 64px);
  height: 2px;
  background-color: #ccc;
}
@media screen and (max-width: 767px) {
  .sec09__body-inner::before {
    left: calc(40 / 750 * 100vw);
    right: calc(40 / 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: left;
}
@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(60 / 1080 * 100vw), 60px);
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .sec11 {
    padding: calc(52 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
  }
}

.sec11__inner {
  display: flex;
  flex-direction: column;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  width: min(calc(680 / 1080 * 100vw), 680px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec11__inner {
    gap: calc(24 / 750 * 100vw);
    width: auto;
    padding: 0 calc(60 / 750 * 100vw);
  }
}

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

.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__title {
    font-size: calc(26 / 750 * 100vw);
  }
}

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

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

.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__risk-label {
    width: auto;
    font-size: calc(20 / 750 * 100vw);
  }
}

.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.04em;
  color: #444;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec11__risk-text {
    font-size: calc(20 / 750 * 100vw);
  }
}

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

.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__costs-heading {
    font-size: calc(24 / 750 * 100vw);
  }
}

.sec11__costs-columns {
  display: flex;
  gap: min(calc(59 / 1080 * 100vw), 59px);
}
@media screen and (max-width: 767px) {
  .sec11__costs-columns {
    flex-direction: column;
    gap: 0;
  }
}

.sec11__costs-column:first-child {
  width: min(calc(240 / 1080 * 100vw), 240px);
}
@media screen and (max-width: 767px) {
  .sec11__costs-column:first-child {
    width: auto;
  }
}
.sec11__costs-column:last-child {
  flex: 1;
}

.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__costs-text {
    font-size: calc(20 / 750 * 100vw);
  }
}
/*# sourceMappingURL=lp.css.map */
