@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Noto+Sans+JP:wght@400;700&family=Oswald:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  box-sizing: border-box;
  object-fit: cover;
}

em {
  font-style: normal;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --green: #188049;
  --yellow: #f8f120;
  --red: #e83433;
  --leading-trim: calc((1em - 1lh) / 2);
  --notosans: "Noto Sans JP", sans-serif;
  --mincho: "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "YuMincho",
    "MS Mincho", "Meiryo", serif;
  --gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "游ゴシック体", "YuGothic", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
  --oswald: "Oswald", sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

html {
  font-size: 62.5%;
  /* @include mq(xlpc) {
    font-size: calc(10 / (1920 / 100) * 1vw);
  } */
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.8571428571vw;
  }
}

body {
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #F6F6F0;
  color: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--black);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    transition: 0.5s;
  }
}

.palt {
  font-feature-settings: "palt";
}

p,
h2,
h3,
h4,
span {
  font-weight: 500;
  color: var(--black);
}

svg {
  width: 100%;
  height: 100%;
}

.header {
  padding-inline: 5rem;
  padding-block: 1rem;
  height: 11.5rem;
  width: 100%;
  background: var(--white);
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    height: 5.7rem;
    position: absolute;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__inner {
    justify-content: center;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 2.3rem;
}
.header__logo img {
  width: 33.5rem;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 17.5rem;
  }
}
.header__logo a {
  transition: 0.5s;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo p {
  display: flex;
  gap: 1.1rem;
  flex-direction: column;
  font-size: 2rem;
}
.header__logo p span {
  font-weight: 700;
  color: var(--green);
}
@media screen and (max-width: 768px) {
  .header__logo p {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header__nav ul li a {
  transition: 0.5s;
}
.header__nav ul li a:hover {
  transform: translateY(3px);
}
.header__nav-item--phone a {
  padding: 0.8rem 1.6rem;
  width: fit-content;
  background: #e83433;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 4.8rem;
  letter-spacing: 0.05em;
  font-family: var(--oswald);
  color: var(--white);
  pointer-events: none;
}
.header__nav-item--phone a svg {
  width: 5.6rem;
  height: 5.6rem;
}
@media screen and (max-width: 768px) {
  .header__nav-item--phone a {
    pointer-events: auto;
  }
}
.header__nav-item--line a img {
  width: 26rem;
}

.footer {
  background: var(--green);
  padding-block: 4rem 1.6rem;
  padding-inline: 5rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-block: 2.4rem 1.6rem;
    padding-inline: 3.7rem;
  }
}
.footer__company-info {
  display: flex;
  align-items: center;
}
.footer__company-details {
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .footer__company-details {
    padding-bottom: 2.4rem;
  }
}
.footer__heading, .footer__address {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 160%;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .footer__heading, .footer__address {
    font-size: 1.4rem;
  }
}
.footer__address {
  font-style: normal;
}
.footer__copyright {
  padding-top: 1.6rem;
  text-align: center;
}
.footer__copyright-text {
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .footer__copyright-text {
    font-size: 1.2rem;
  }
}

.green-bg {
  background-image: url("../images/pc/green-bg.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-bottom: 29.6rem;
}
@media screen and (max-width: 768px) {
  .green-bg {
    background-image: url("../images/sp/green-bg.webp");
    padding-bottom: 10.6rem;
  }
}
.green-bg::before {
  content: "";
  display: block;
  width: 92.8rem;
  height: 44.1rem;
  background-image: url("../images/pc/reason-title-bg.svg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .green-bg::before {
    width: 32.2rem;
    height: 15.5rem;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.u-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.footer-fixed-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 100;
  padding-block: 0.5rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .footer-fixed-sp {
    display: block;
  }
}
.footer-fixed-sp .header__nav {
  display: block;
}
.footer-fixed-sp .header__nav ul {
  justify-content: center;
}
.footer-fixed-sp .header__nav-item--phone svg {
  width: 2.4rem;
  height: 2.4rem;
}
.footer-fixed-sp .header__nav-item--phone a {
  font-size: 2rem;
}
.footer-fixed-sp .header__nav-item--line a img {
  width: 13.6rem;
}

.cta {
  background: url("../images/pc/cta-bg.webp") no-repeat center center/cover;
  padding-block: 4rem;
}
@media screen and (max-width: 768px) {
  .cta {
    padding-block: 1.3rem;
    background: url("../images/sp/cta-bg.webp") no-repeat center center/cover;
  }
}
.cta__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin: 0 auto;
  max-width: 144rem;
  padding-inline: 2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cta__inner {
    gap: 0.8rem;
    padding-inline: 0.5rem;
  }
}
.cta__main {
  align-items: center;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta__main {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.cta__image-left, .cta__image-right {
  flex-shrink: 0;
  position: absolute;
  bottom: 0;
  height: 27.7rem;
}
@media screen and (max-width: 768px) {
  .cta__image-left, .cta__image-right {
    display: none;
  }
}
.cta__image-left {
  width: 16.8rem;
  left: -14.8rem;
}
.cta__image-right {
  width: 17.5rem;
  right: -15.5rem;
}
.cta__content {
  width: 89.2rem;
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  background-color: var(--white);
  display: flex;
}
@media screen and (max-width: 768px) {
  .cta__content {
    width: 100%;
  }
}
.cta__header {
  align-items: center;
  background-color: var(--yellow);
  display: flex;
  width: 100%;
  gap: 0.8rem;
  justify-content: center;
  padding-block: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cta__header {
    gap: 0rem;
    padding: 0.8rem;
  }
}
.cta__header-line {
  border-left: 0.4rem solid #202020;
  height: 4.8rem;
  width: 0.4rem;
}
.cta__header-line:nth-of-type(1) {
  transform: rotate(-30deg);
  margin-right: 0.8rem;
}
.cta__header-line:nth-of-type(2) {
  transform: rotate(30deg);
  margin-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .cta__header-line {
    border-left: 0.1rem solid #202020;
    height: 1.65rem;
    width: 0.1rem;
  }
  .cta__header-line:nth-of-type(1) {
    margin-right: 0.6rem;
  }
  .cta__header-line:nth-of-type(2) {
    margin-left: 0.6rem;
  }
}
.cta__title {
  color: #202020;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
}
.cta__title em {
  color: #e83433;
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 1.6rem;
  }
}
.cta__phone-area {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding-inline: 4rem;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .cta__phone-area {
    padding-inline: 0.6rem;
    padding-bottom: 1.1rem;
  }
}
.cta__phone-wrapper {
  align-items: center;
  display: flex;
  gap: 0;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cta__phone-wrapper {
    flex-wrap: wrap;
  }
}
.cta__phone-icon-wrapper {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cta__phone-icon-wrapper {
    width: 3.8rem;
    height: 3.8rem;
    display: grid;
    place-items: center;
  }
}
.cta__phone-icon {
  display: block;
  width: 7.6rem;
  height: 7.6rem;
  margin-right: 1.8rem;
}
@media screen and (max-width: 768px) {
  .cta__phone-icon {
    margin-right: 0.6rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}
.cta__phone-number {
  color: var(--red);
  font-family: var(--oswald);
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: normal;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .cta__phone-number {
    font-size: 4rem;
    pointer-events: auto;
  }
}
.cta__phone-number:hover {
  opacity: 0.8;
}
.cta__phone-number:focus {
  outline: 2px solid #e83433;
  outline-offset: 4px;
}
.cta__phone-label {
  margin-left: 1.6rem;
  color: #202020;
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cta__phone-label {
    font-size: 1.4rem;
    margin-left: 0;
  }
}
.cta__business-hours {
  align-self: stretch;
  color: #202020;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.cta__business-hours span {
  color: #202020;
  font-family: var(--oswald);
}
@media screen and (max-width: 768px) {
  .cta__business-hours {
    font-size: 1.6rem;
  }
}
.cta__bottom {
  align-items: center;
  display: flex;
  gap: 2.7rem;
  justify-content: center;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .cta__bottom {
    flex-direction: column;
    gap: 1.1rem;
    width: 100%;
  }
}
.cta__button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 32rem;
  box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .cta__button {
    border-width: 0.2rem;
    padding: 0;
    width: 24rem;
    box-shadow: 0 3px 7.5px 0 rgba(0, 0, 0, 0.5);
  }
}
.cta__button:hover {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}
.cta__button:active {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
}
.cta__button:focus {
  outline: 3px solid #f8f120;
  outline-offset: 4px;
}
.cta__button-icon {
  display: block;
  flex-shrink: 0;
  height: auto;
  width: 6rem;
}
@media screen and (max-width: 768px) {
  .cta__button-icon {
    width: 4rem;
  }
}
.cta__button-text {
  color: var(--white);
  font-family: var(--notosans);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .cta__button-text {
    font-size: 1.8rem;
  }
}

.cta-anshin {
  margin-top: -15rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta-anshin {
    margin-top: -9rem;
  }
}
.cta-anshin__title {
  margin-bottom: 5.3rem;
}
@media screen and (max-width: 768px) {
  .cta-anshin__title {
    margin-bottom: 4rem;
  }
}
.cta-anshin__title img {
  width: 133rem;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .cta-anshin__title img {
    width: 35rem;
  }
}

.wrapper {
  max-width: 124rem;
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}

.fdc--row {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (min-width: 769px) {
  .fdc--row {
    flex-direction: row;
  }
}

.dib {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.mt3 {
  margin-top: 0.3rem;
}

.mt7 {
  margin-top: 0.7rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.mobile {
  display: block;
}
@media screen and (min-width: 769px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media screen and (min-width: 769px) {
  .desktop {
    display: block;
  }
}

.bread_crumb {
  padding-block: 1.3rem;
  background-color: #f7f7f7;
}
.bread_crumb ol {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.bread_crumb ol > li {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.bread_crumb ol > li > a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .bread_crumb {
    padding-block: 0.4rem;
  }
  .bread_crumb ol {
    gap: 0.8rem;
  }
  .bread_crumb ol > li {
    font-size: 1.3rem;
    line-height: 1.8461538462;
  }
}

.fv {
  margin-top: 11.5rem;
  max-width: 144rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 5.7rem;
    z-index: 1;
  }
}
.fv__inner {
  display: flex;
  position: relative;
  max-width: 134rem;
  width: 100%;
  height: 78rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    height: auto;
  }
}
.fv__content {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding-top: 2.1rem;
  background: url("../images/pc/fv-bg.webp") no-repeat center center;
  background-size: cover;
  border-radius: 4rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fv__content {
    padding-top: 0rem;
    background: url("../images/sp/fv-bg.webp") no-repeat center center;
    background-size: 100% 54.5rem;
    background-position: top left;
    border-radius: 0rem;
  }
  .fv__content::before {
    position: absolute;
    top: 54.5rem;
    left: 0;
    width: 100%;
    height: 58.9rem;
    background: url("../images/sp/items-bg.webp") no-repeat center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 3;
    content: "";
    display: block;
  }
}
.fv__items {
  display: flex;
  margin-top: 0.9rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .fv__items {
    flex-direction: column;
    margin-top: 17.6rem;
    gap: 0.95rem;
  }
}
.fv__items-img {
  width: 62.2rem;
}
@media screen and (max-width: 768px) {
  .fv__items-img {
    width: 35.2rem;
  }
}
.fv__items-text {
  width: 45.3rem;
  height: auto;
  margin-left: -3rem;
  margin-top: 22.6rem;
}
@media screen and (max-width: 768px) {
  .fv__items-text {
    width: 34.7rem;
    margin-left: 1.1rem;
    margin-top: 0;
  }
}
.fv__catch-wrapper {
  display: flex;
  margin-left: calc(50% - 50vw);
  width: calc(99.5rem + (100vw - 144rem) / 2);
  background: rgba(24, 128, 73, 0.8);
}
@media screen and (max-width: 768px) {
  .fv__catch-wrapper {
    width: 100%;
    margin-left: 0;
    width: 100%;
  }
}
.fv__catch {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 3rem 27.4rem 3rem 5.8rem;
  width: fit-content;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__catch {
    padding: 1.4rem 0rem 1.4rem 1.3rem;
    gap: 0.2rem;
    margin: 0;
  }
}
.fv__catch-upper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .fv__catch-upper {
    gap: 0.4rem;
  }
}
.fv__catch-area {
  background-color: var(--white);
  border-radius: 6.25em;
  padding: 0.5rem 3rem;
  width: 51.3rem;
}
@media screen and (max-width: 768px) {
  .fv__catch-area {
    width: 25.4rem;
    padding: 0.25rem 2.4rem;
  }
}
.fv__catch-area-text {
  font-family: var(--notosans);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv__catch-area-text {
    font-size: 1.5rem;
    line-height: 1.2666666667;
  }
}
.fv__catch-title {
  width: 66.3rem;
}
@media screen and (max-width: 768px) {
  .fv__catch-title {
    width: 32.9rem;
  }
}
.fv__catch-lower {
  display: flex;
  align-items: center;
}
.fv__catch-message {
  font-family: var(--notosans);
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}
.fv__catch-message span {
  color: #F8F120;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .fv__catch-message {
    font-size: 2.8rem;
    line-height: 1.1785714286;
  }
}
.fv__main-image {
  position: absolute;
  top: -3.2rem;
  right: 0.7rem;
  width: 64rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fv__main-image {
    width: 31.6rem;
    top: 13.2rem;
    right: -2.4rem;
  }
}
.fv__bunner {
  display: flex;
  position: relative;
  max-width: 128rem;
  width: 100%;
  width: calc(100% - 16rem);
  margin: 0 auto;
  padding-left: 6.9rem;
  z-index: 3;
  margin-top: -8.7rem;
}
.fv__bunner.u-desktop {
  display: flex;
}
.fv__bunner.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv__bunner.u-desktop {
    display: none;
  }
  .fv__bunner.u-sp {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .fv__bunner {
    max-width: 32rem;
    width: 100%;
    margin-inline: auto;
    padding-left: 0;
    margin-top: 2.2rem;
  }
}
.fv__bunner-inner {
  display: flex;
  width: 100%;
  border-radius: 2.2rem;
  border: 0.75rem solid #fff;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5.422px 13.556px 0 rgba(0, 0, 0, 0.25);
  height: 19.8rem;
}
@media screen and (max-width: 768px) {
  .fv__bunner-inner {
    height: 21.8rem;
    border-radius: 1.4rem;
    border: 0.4rem solid #fff;
    box-shadow: 0 3.259px 8.147px 0 rgba(0, 0, 0, 0.25);
    padding-top: 12.8rem;
  }
}
.fv__bunner-image {
  width: 73.4rem;
  flex-shrink: 0;
  margin-left: -6.9rem;
  margin-top: -0.2rem;
}
@media screen and (max-width: 768px) {
  .fv__bunner-image {
    position: absolute;
    width: 31.7rem;
    left: 0.1rem;
    top: -2.2rem;
    margin-left: 0;
    margin-top: 0;
  }
}
.fv__bunner-text {
  margin-top: 3.65rem;
  margin-left: 1.8rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .fv__bunner-text {
    margin-top: 0rem;
    width: fit-content;
    margin-inline: auto;
    font-size: 1.9rem;
    text-align: center;
  }
}
.fv__bunner-text b {
  font-size: 4.8rem;
  font-weight: 700;
  color: #e83433;
  background: linear-gradient(to bottom, transparent 0% 1em, #f8f120 1em 1.2916666667em, transparent 1.2916666667em 100%);
}
@media screen and (max-width: 768px) {
  .fv__bunner-text b {
    font-size: 2.9rem;
    background: linear-gradient(to bottom, transparent 0% 1em, #f8f120 1em 1.2857142857em, transparent 1.2857142857em 100%);
  }
}

.purchased-items {
  padding: 6.4rem 0rem;
}
@media screen and (max-width: 768px) {
  .purchased-items {
    padding: 0rem 0rem 4rem;
  }
}
.purchased-items__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4rem;
  max-width: 134rem;
  width: calc(100% - 10rem);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .purchased-items__inner {
    gap: 2.4rem;
    width: calc(100% - 3rem);
  }
}
.purchased-items__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.purchased-items__title {
  position: relative;
  font-family: var(--notosans);
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.203125;
  color: #188049;
  padding: 0rem 1.3rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .purchased-items__title {
    font-size: 4rem;
    line-height: 1.2;
    padding: 0rem 1.15rem 0.8rem;
  }
}
.purchased-items__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.6rem;
  background-color: #f8f120;
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .purchased-items__title::after {
    height: 1.2rem;
    bottom: 0rem;
  }
}
.purchased-items__list {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem 1.4rem;
  padding: 6.4rem 2.4rem;
  background-color: var(--white);
  border: 2px solid #188049;
  border-radius: 1.6rem;
  list-style: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .purchased-items__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.4rem 1.6rem;
    gap: 1.6rem 0.8rem;
  }
}
.purchased-items__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -0.4rem;
}
@media screen and (max-width: 768px) {
  .purchased-items__item {
    margin-top: -0.2rem;
  }
}
.purchased-items__item--other {
  gap: 0;
}
.purchased-items__image {
  display: block;
  object-fit: cover;
  width: 17.6rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .purchased-items__image {
    width: 8.8rem;
  }
}
.purchased-items__label {
  background-color: #188049;
  border-radius: 0.8rem;
  padding: 6.4rem 4rem 1.6rem;
  width: 31.2rem;
  margin-top: -6rem;
}
@media screen and (max-width: 768px) {
  .purchased-items__label {
    padding: 3.2rem 1.2rem 0.8rem;
    width: 14rem;
    margin-top: -3rem;
  }
}
.purchased-items__text {
  font-family: var(--notosans);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  width: 23.2rem;
  height: 8rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .purchased-items__text {
    width: 11.6rem;
    height: 4rem;
    font-size: 1.6rem;
  }
}
.purchased-items__text--small {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .purchased-items__text--small {
    font-size: 1.2rem;
  }
}
.purchased-items__other {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 4rem;
  background-color: #b1e8ca;
  border: 0.4rem solid #188049;
  border-radius: 0.8rem;
  height: 27.2rem;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .purchased-items__other {
    padding: 0.8rem 1.2rem;
    gap: 0.8rem;
    height: 16.2rem;
    border: 2px solid #188049;
  }
}
.purchased-items__other-title {
  font-family: var(--notosans);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #188049;
}
@media screen and (max-width: 768px) {
  .purchased-items__other-title {
    font-size: 1.6rem;
  }
}
.purchased-items__other-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 23.2rem;
}
@media screen and (max-width: 768px) {
  .purchased-items__other-list {
    width: 11.6rem;
  }
}
.purchased-items__other-item {
  font-family: var(--notosans);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #188049;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .purchased-items__other-item {
    font-size: 1.2rem;
  }
}
.purchased-items__badges {
  display: flex;
  align-items: center;
  margin-top: -14.4rem;
}
@media screen and (max-width: 768px) {
  .purchased-items__badges {
    margin-top: -2.4rem;
  }
}
.purchased-items__badge {
  flex-shrink: 0;
  width: 31.6rem;
}
@media screen and (max-width: 768px) {
  .purchased-items__badge {
    width: 12.4rem;
    margin-inline: -0.5rem;
  }
}
.purchased-items__badge-image {
  display: block;
}

.flow {
  padding: 8rem 5rem;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 4rem 1.5rem;
  }
}
.flow__inner {
  margin-inline: auto;
  max-width: 134rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow__inner {
    max-width: 100%;
  }
}
.flow__title {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  font-size: 6.4rem;
  font-weight: 700;
  color: var(--green);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .flow__title {
    font-size: 4rem;
    text-align: center;
  }
}
.flow__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.6rem;
  background-color: var(--yellow);
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .flow__title::after {
    bottom: 0rem;
  }
}
.flow__list {
  margin-top: 8.7rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12.2rem;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .flow__list {
    margin-top: 2.4rem;
    gap: 6.4rem;
  }
}
.flow__item {
  width: 100%;
  background: var(--white);
  position: relative;
}
.flow__item::before {
  content: "";
  display: block;
  background: url("../images/pc/flow-triangle.webp") no-repeat center center/contain;
  width: 23rem;
  height: 7.4rem;
  position: absolute;
  bottom: -9.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.flow__item:last-child::before {
  content: none;
}
@media screen and (max-width: 768px) {
  .flow__item::before {
    width: 15rem;
    height: 4.8rem;
    bottom: -5.6rem;
  }
  .flow__item:nth-child(4) .flow__step-title {
    font-size: 2.2rem;
    white-space: nowrap;
  }
}
.flow__item-inner {
  border: 0.4rem solid var(--green);
  display: flex;
  gap: 2.4rem;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .flow__item-inner {
    flex-wrap: wrap;
    gap: 0rem;
    padding: 2.5rem 1.5rem;
  }
}
.flow__image-wrapper {
  flex-shrink: 0;
  width: 35.4rem;
}
@media screen and (max-width: 768px) {
  .flow__image-wrapper {
    width: 10rem;
    margin-right: 0.8rem;
  }
}
.flow__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .flow__content {
    display: contents;
  }
}
.flow__step-header {
  align-items: center;
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .flow__step-header {
    gap: 0.8rem;
    flex-direction: column;
    width: calc(100% - 10.8rem);
  }
}
.flow__badge {
  align-items: center;
  background-color: var(--green);
  display: flex;
  gap: 0.8rem;
  padding-inline: 3.2rem;
}
@media screen and (max-width: 768px) {
  .flow__badge {
    gap: 0.4rem;
    padding-inline: 1.6rem;
    width: 100%;
    justify-content: center;
  }
}
.flow__badge-label {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .flow__badge-label {
    font-size: 1.6rem;
  }
}
.flow__badge-number {
  color: var(--white);
  font-family: var(--oswald);
  font-size: 6.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .flow__badge-number {
    font-size: 3.2rem;
  }
}
.flow__step-title {
  color: var(--green);
  font-family: var(--oswald);
  font-size: 6.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .flow__step-title {
    font-size: 2.8rem;
    text-align: center;
  }
}
.flow__text {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .flow__text {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }
}

.items {
  position: relative;
  background: url("../images/pc/items-bg.webp");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 67.3rem;
  padding-top: 26.5rem;
  padding-bottom: 8rem;
  margin-top: -20.9rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .items {
    background: none;
    padding-top: 9.6rem;
    padding-bottom: 4rem;
    margin-top: -9rem;
    z-index: 3;
  }
}
.items__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 144rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .items__inner {
    margin-top: 2.4rem;
  }
}
.items__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 768px) {
  .items__header {
    margin-bottom: 12.4rem;
  }
}
.items__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.items__title-text {
  font-family: var(--notosans);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .items__title-text {
    font-size: 2.4rem;
  }
}
.items__title-main {
  width: 68.6rem;
  margin-top: -2rem;
}
@media screen and (max-width: 768px) {
  .items__title-main {
    width: 32.4rem;
    margin-top: -1rem;
  }
}
.items__title-question {
  font-family: var(--notosans);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #202020;
  text-align: center;
  margin: 0;
  margin-top: -0.2rem;
}
@media screen and (max-width: 768px) {
  .items__title-question {
    font-size: 2.4rem;
  }
}
.items__figure {
  position: absolute;
  display: block;
}
.items__figure--left {
  top: 5.7rem;
  left: -20.8rem;
  width: 15rem;
  height: 26.8rem;
}
@media screen and (max-width: 768px) {
  .items__figure--left {
    top: 12.8rem;
    left: -1.2rem;
    width: 10.4rem;
    height: 18rem;
  }
}
.items__figure--right {
  top: 5.1rem;
  right: -23.5rem;
  width: 19.7rem;
  height: 29.4rem;
}
@media screen and (max-width: 768px) {
  .items__figure--right {
    top: 10.9rem;
    right: -4.3rem;
    width: 13.7rem;
    height: 20.5rem;
  }
}
.items__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  max-width: 134rem;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 5.8rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .items__list {
    gap: 0.8rem;
    margin-bottom: 2.4rem;
  }
}
.items__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25.9rem;
}
@media screen and (max-width: 768px) {
  .items__item {
    width: fit-content;
  }
  .items__item:nth-child(3) .items__item-text small {
    line-height: 1.1;
  }
  .items__item:nth-child(4) .items__item-label, .items__item:nth-child(5) .items__item-label {
    width: 12rem;
  }
}
.items__item-image {
  display: block;
  width: 25.9rem;
  height: 26rem;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .items__item-image {
    width: 10.6rem;
    height: 9.9rem;
  }
}
.items__item-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #188049;
  padding: 1rem 0;
  width: 24rem;
  margin-top: -4rem;
}
@media screen and (max-width: 768px) {
  .items__item-label {
    width: fit-content;
    margin-top: -1.6rem;
    padding: 0.4rem 0rem;
    min-width: 10.6rem;
    min-height: 4.2rem;
  }
}
.items__item-text {
  font-family: var(--notosans);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin: 0;
  margin-top: -0.3rem;
}
.items__item-text span {
  color: var(--white);
  display: inline-block;
}
.items__item-text .u-desktop {
  display: inline-block;
}
.items__item-text .u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .items__item-text .u-desktop {
    display: none;
  }
  .items__item-text .u-sp {
    display: inline-block;
  }
}
.items__item-text small {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .items__item-text {
    font-size: 1.6rem;
  }
  .items__item-text small {
    font-size: 1.2rem;
  }
}
.items__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .items__footer {
    gap: 0.8rem;
  }
}
.items__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--notosans);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .items__message {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
@media screen and (max-width: 768px) {
  .items__message-text:nth-child(2) {
    letter-spacing: 0.1em;
  }
}
.items__message-text b {
  font-weight: 900;
  color: #e83433;
}
.items__action {
  display: flex;
  justify-content: center;
}
.items__action-image {
  display: block;
  width: 116.9rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .items__action-image {
    width: 33.2rem;
  }
}

.reason {
  display: flex;
  flex-direction: column;
  gap: 5.2rem;
}
@media screen and (max-width: 768px) {
  .reason {
    gap: 1.4rem;
  }
}

.reason__header {
  display: flex;
  flex-direction: column;
  width: 57.9rem;
  margin-inline: auto;
  margin-top: -4rem;
}
@media screen and (max-width: 768px) {
  .reason__header {
    width: 29rem;
    margin-top: -2.8rem;
  }
}

.reason__pop {
  width: 45.2rem;
  height: 10.9rem;
}
@media screen and (max-width: 768px) {
  .reason__pop {
    width: 22.6rem;
    height: 5.5rem;
  }
}

.reason__title {
  width: 53.9rem;
  height: 18.2rem;
}
@media screen and (max-width: 768px) {
  .reason__title {
    width: 27rem;
    height: 8.5rem;
  }
}

.reason__inner {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  max-width: 118rem;
  width: calc(100% - 10rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .reason__inner {
    width: calc(100% - 3rem);
    gap: 1.6rem;
  }
}

.reason__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 8rem;
  background-color: var(--white);
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .reason__item {
    padding: 1.5rem 1rem;
    gap: 0.8rem;
  }
}

.reason__item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .reason__item-content {
    gap: 1.1rem;
  }
}

.reason__item-header {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: fit-content;
  height: 13.8rem;
  padding-right: 4rem;
  background: linear-gradient(to right, transparent 0% 4rem, #188049 4rem 100%);
}
@media screen and (max-width: 768px) {
  .reason__item-header {
    gap: 1.4rem;
    height: 4.7rem;
    padding-right: 1.4rem;
    background: linear-gradient(to right, transparent 0% 1.4rem, #188049 1.4rem 100%);
  }
}

.reason__item-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 24rem;
  height: 9.5rem;
  border-block: 0.6rem solid #188049;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .reason__item-label {
    width: 8.5rem;
    height: 3.6rem;
    border-block: 0.2rem solid #188049;
  }
}

.reason__item-label-text {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.2;
  text-align: center;
  color: #188049;
}
@media screen and (max-width: 768px) {
  .reason__item-label-text {
    font-size: 1.4rem;
  }
}

.reason__item-number {
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 1.48;
  text-align: center;
  color: #188049;
  font-family: var(--oswald);
}
@media screen and (max-width: 768px) {
  .reason__item-number {
    font-size: 2.4rem;
  }
}

.reason__item-title {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.2;
  color: var(--white);
  position: relative;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .reason__item-title {
    font-size: 1.6rem;
  }
}

.reason__item-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  max-width: 80rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .reason__item-description {
    gap: 1.4rem;
  }
}

.reason__item-image {
  width: 72rem;
  height: 48.1rem;
  margin-inline: auto;
  box-shadow: 16px 16px 0 0 #188049;
}
@media screen and (max-width: 768px) {
  .reason__item-image {
    width: 25.4rem;
    height: 17rem;
    box-shadow: 6px 6px 0 0 #188049;
  }
}
.reason__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason__item-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .reason__item-text {
    gap: 0.7rem;
  }
}
.reason__item-text p {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.6;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .reason__item-text p {
    font-size: 1.6rem;
  }
}

.reason__item-catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reason__item-catch {
    gap: 0.8rem;
  }
}

.reason__item-catch-bg {
  width: 35.6rem;
  height: 7.4rem;
  margin-inline: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .reason__item-catch-bg {
    width: 12.6rem;
    height: 2.6rem;
  }
}
.reason__item-catch-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason__item-catch-text {
  position: relative;
  z-index: 2;
}
.reason__item-catch-text--01 {
  width: 83.7rem;
  height: 14.5rem;
}
@media screen and (max-width: 768px) {
  .reason__item-catch-text--01 {
    width: 26.9rem;
    height: 5.5rem;
  }
}
.reason__item-catch-text--02 {
  width: 75.1rem;
  height: 35.1rem;
}
@media screen and (max-width: 768px) {
  .reason__item-catch-text--02 {
    width: 28.3rem;
    height: 10.5rem;
  }
}
.reason__item-catch-text--03 {
  width: 91.9rem;
  height: 14.5rem;
}
@media screen and (max-width: 768px) {
  .reason__item-catch-text--03 {
    width: 33.5rem;
    height: 5.8rem;
  }
}

.reason__item-highlight {
  position: relative;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  letter-spacing: 0.1em;
}
.reason__item-highlight::after {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  left: 0;
  right: 0;
  height: 2.7rem;
  background-color: #F8F120;
  z-index: -1;
}

.works {
  padding-top: 18.5rem;
  padding-bottom: 8rem;
  margin-top: -11.5rem;
}
@media screen and (max-width: 768px) {
  .works {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 0rem;
  }
}
.works__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.works__title {
  font-family: var(--notosans);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.4285714286;
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(to bottom, transparent 0% 5.6rem, #F8F120 5.6rem 7.2rem, transparent 7.2rem 100%);
}
@media screen and (max-width: 768px) {
  .works__title {
    font-size: 3.2rem;
    line-height: 1.8125;
    background: linear-gradient(to bottom, transparent 0% 4.3rem, #F8F120 4.3rem 5.5rem, transparent 5.5rem 100%);
  }
}
.works__title b {
  font-size: 6.4rem;
  line-height: 1.453125;
  font-weight: 700;
  color: #188049;
}
@media screen and (max-width: 768px) {
  .works__title b {
    font-size: 4rem;
    line-height: 1.45;
  }
}
.works-splide {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .works-splide {
    margin-top: 2.4rem;
  }
}
.works-splide__list {
  display: flex;
  align-items: flex-end;
}
.works-splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: 33rem;
}
@media screen and (max-width: 768px) {
  .works-splide__slide {
    width: 17.6rem;
    gap: 0.8rem;
  }
}
.works-splide__slide-image {
  width: 100%;
  position: relative;
  border: 0.4rem solid #188049;
}
@media screen and (max-width: 768px) {
  .works-splide__slide-image {
    border: 0.2rem solid #188049;
  }
}
.works-splide__slide-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.works-splide__slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works-splide__slide-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.works-splide__slide-name {
  font-family: var(--notosans);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works-splide__slide-name {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
.works-splide__slide-price {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .works-splide__slide-price {
    gap: 0.4rem;
  }
}
.works-splide__slide-price-number {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  color: #E83433;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .works-splide__slide-price-number {
    font-size: 2.4rem;
  }
}
.works-splide__slide-price-unit {
  font-family: var(--notosans);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .works-splide__slide-price-unit {
    font-size: 1.4rem;
  }
}
.works .splide__pagination {
  width: 43rem;
  position: static;
  margin-top: 5.6rem;
  margin-inline: auto;
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .works .splide__pagination {
    width: 31.2rem;
    margin-top: 2.4rem;
  }
}
.works .splide__pagination li {
  flex: 1;
}
.works .splide__arrows {
  display: contents;
}
.works .splide__arrows .splide__arrow--prev {
  display: none;
}
.works .splide__arrows .splide__arrow--next {
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 3.2rem;
  right: 5.1rem;
  transform: none;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .works .splide__arrows {
    display: none;
  }
}
.works .splide__pagination__page {
  width: 100%;
  border-radius: 0;
  transition: 0.4s;
  background: var(--white);
}
.works .splide__pagination__page.is-active {
  transform: scale(1);
  background: #188049;
}
.works__button {
  display: flex;
  justify-content: center;
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .works__button {
    margin-top: 2.4rem;
  }
}
.works__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 8rem;
  background-color: var(--white);
  border: 0.4rem solid #188049;
  border-radius: 10rem;
  box-shadow: 0 0.6rem 1.5rem 0 rgb(179, 178, 163);
  font-family: var(--notosans);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #188049;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works__link {
    padding: 1.2rem 8.4rem;
    font-size: 2.4rem;
    border: 0.2rem solid #188049;
  }
}
.works__link:hover {
  background-color: #188049;
  color: var(--white);
}
.works__link:hover .works__link-icon path {
  stroke: var(--white);
}
.works__link-icon {
  display: block;
  width: 0.7rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.works__link-icon path {
  transition: stroke 0.3s ease;
}

.works-archive {
  padding-top: 7rem;
  padding-bottom: 8rem;
  margin-top: 11.5rem;
}
@media screen and (max-width: 768px) {
  .works-archive {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 5.7rem;
  }
}
.works-archive__inner {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .works-archive__inner {
    padding: 0;
  }
}
.works-archive__header {
  text-align: center;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 768px) {
  .works-archive__header {
    margin-bottom: 2.4rem;
  }
}
.works-archive__title {
  font-family: var(--notosans);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.4285714286;
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(to bottom, transparent 0% 5.6rem, #F8F120 5.6rem 7.2rem, transparent 7.2rem 100%);
}
@media screen and (max-width: 768px) {
  .works-archive__title {
    font-size: 3.2rem;
    line-height: 1.8125;
    background: linear-gradient(to bottom, transparent 0% 4.3rem, #F8F120 4.3rem 5.5rem, transparent 5.5rem 100%);
  }
}
.works-archive__title b {
  font-size: 6.4rem;
  line-height: 1.453125;
  font-weight: 700;
  color: #188049;
}
@media screen and (max-width: 768px) {
  .works-archive__title b {
    font-size: 4rem;
    line-height: 1.45;
  }
}
.works-archive__description {
  font-family: var(--notosans);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .works-archive__description {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    padding: 0 1.6rem;
  }
}
.works-archive__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .works-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 1.6rem;
    padding: 0 1.6rem;
  }
}
.works-archive__list .works-splide__slide {
  width: auto;
}
.works-archive__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  background: var(--white);
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 0.4rem 1.2rem 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.works-archive__item:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 0.8rem 2rem 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .works-archive__item {
    padding: 1.6rem;
  }
}
.works-archive__item-image {
  width: 100%;
  position: relative;
}
.works-archive__item-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.works-archive__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}
.works-archive__item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.works-archive__item-title {
  font-family: var(--notosans);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .works-archive__item-title {
    font-size: 1.8rem;
  }
}
.works-archive__item-price {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.works-archive__item-price-number {
  font-family: var(--oswald);
  font-size: 3.2rem;
  color: #E83433;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .works-archive__item-price-number {
    font-size: 2.8rem;
  }
}
.works-archive__item-price-unit {
  font-family: var(--notosans);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .works-archive__item-price-unit {
    font-size: 1.8rem;
  }
}
.works-archive__item-content {
  font-family: var(--notosans);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
.works-archive__item-content p {
  margin-bottom: 0.8rem;
}
.works-archive__item-content p:last-child {
  margin-bottom: 0;
}
.works-archive__empty {
  text-align: center;
  padding: 8rem 0;
}
.works-archive__empty-message {
  font-family: var(--notosans);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}

.promise {
  margin-top: 6.8rem;
  max-width: 118rem;
  width: calc(100% - 10rem);
  margin-inline: auto;
  background: #188049;
  position: relative;
  border-top-right-radius: 14rem;
}
@media screen and (max-width: 768px) {
  .promise {
    width: calc(100% - 3rem);
    margin-top: 4.5rem;
    border-top-right-radius: 11%;
  }
}
.promise__inner {
  display: flex;
  flex-direction: column;
}
.promise__title {
  font-size: 6.4rem;
  line-height: 1.453125;
  font-weight: 700;
  padding: 1.6rem 8rem;
  padding-right: 0;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .promise__title {
    font-size: 1.8rem;
    padding: 0.8rem 1.4rem;
  }
}
.promise__title-sub {
  font-weight: 700;
  color: #F8F120;
}
.promise__person {
  position: absolute;
  top: -9.3rem;
  right: -1.8rem;
  width: 18.6rem;
}
@media screen and (max-width: 768px) {
  .promise__person {
    width: 5.1rem;
    top: -1.7rem;
    right: -0.5rem;
  }
}
.promise__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 4rem 5.9rem;
}
@media screen and (max-width: 768px) {
  .promise__list {
    padding: 0rem 0.8rem 0.8rem;
    gap: 0.6rem;
  }
}
.promise__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-radius: 1.6rem;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .promise__item {
    border-radius: 0.4rem;
    padding: 1.6rem 0;
  }
}
.promise__item-content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .promise__item-content {
    gap: 0.8rem;
  }
}
.promise__item-title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4583333333;
  color: #188049;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .promise__item-title {
    font-size: 2.4rem;
  }
}
.promise__item-text {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .promise__item-text {
    font-size: 1.6rem;
  }
}
.promise__item-text span {
  font-weight: 500;
  color: #E83433;
}

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