/* _global.scss */
html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

main {
  max-width: 750px;
  margin: 0 auto;
}

/* assets/scss/base.scss */
/*
  Andy Bell's Modern CSS Reset
  https://piccalil.li/blog/a-modern-css-reset/
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and scroll-behavior for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Remove list styles on ul, ol elements with a role of list */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* _typography.scss */
html {
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}

.h0 {
  font-weight: 700;
  font-size: min(6.4vw, 48px);
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.h1 {
  font-weight: 600;
  font-size: min(4.8vw, 36px);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.h2 {
  font-weight: 400;
  font-size: min(3.4666666667vw, 26px);
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.h3 {
  font-weight: 700;
  font-size: min(3.4666666667vw, 26px);
  line-height: 2;
  letter-spacing: 0.05em;
}

.h4 {
  font-weight: 400;
  font-size: min(2.9333333333vw, 22px);
  line-height: 1.5;
}

.h5 {
  font-weight: 400;
  font-size: min(2.1333333333vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: var(--space-sm);
}

/* _variables.scss */
:root {
  --font-base: "Noto Serif JP", sans-serif;
  --font-source-serif: "Source Serif Pro", serif;
  --radius-base: 0.5rem;
  --color-beige: #f7efe6;
  --color-beige-light: #f8ebde;
  --color-black: #000;
  --color-blue: #295c78;
  --color-waterblue-base: #bcd4d9;
}

footer {
  background-color: var(--color-waterblue-base);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 50px;
  color: var(--color-blue);
}
footer ul,
footer li {
  list-style: none;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 70px;
  margin-bottom: 0;
  padding: 0;
}
footer img {
  width: min(16.6666666667vw, 125px);
  height: auto;
}
footer p {
  font-family: var(--font-source-serif);
  margin-top: 50px;
  font-size: min(2vw, 15px);
  letter-spacing: 0.07em;
}

.lp {
  padding-top: min(17.3333333333vw, 130px);
}
.lp .bg-beige {
  background-color: var(--color-beige);
}
.lp .text-blue {
  color: var(--color-blue);
}
.lp p {
  text-align: center;
}

.lp-header__top {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(4vw, 30px) min(4vw, 30px) min(4vw, 30px) min(6.6666666667vw, 50px);
}
.lp-header__logo {
  width: min(24.5333333333vw, 184px);
}
.lp-header__btn {
  width: min(33.3333333333vw, 250px);
}

.lp-section01 {
  padding-bottom: min(12.6666666667vw, 95px);
}
.lp-section01__btns {
  display: flex;
  justify-content: center;
  gap: min(4vw, 30px);
  margin-top: min(4vw, 30px);
  margin-bottom: min(9.3333333333vw, 70px);
}
.lp-section01__btns img {
  width: min(44vw, 330px);
  height: auto;
}
.lp-section01__merit {
  display: flex;
  gap: min(4vw, 30px);
  margin-bottom: min(5.3333333333vw, 40px);
  justify-content: center;
}
.lp-section01__merit img {
  width: min(36vw, 270px);
}
.lp-section01__h3 {
  color: var(--color-blue);
}
.lp-section01__underline {
  color: #bea26f;
  border-bottom: 1px solid #bea26f;
  font-weight: 700;
}

.lp-section02__inner {
  padding: min(13.3333333333vw, 100px) min(4vw, 30px);
}
.lp-section02__kv {
  margin-top: min(6.6666666667vw, 50px);
  margin-bottom: min(13.3333333333vw, 100px);
}
.lp-section02__btns {
  display: flex;
  justify-content: center;
  gap: min(6.6666666667vw, 50px);
  margin-top: min(13.3333333333vw, 100px);
}
.lp-section02__btns img {
  width: min(40vw, 300px);
  height: auto;
}
.lp-section02__text01 {
  color: var(--color-blue);
}
.lp-section02__logo {
  margin: min(13.3333333333vw, 100px) auto min(6.6666666667vw, 50px);
  display: block;
  width: min(8vw, 60px);
}

.lp-section03 {
  background-color: var(--color-waterblue-base);
  padding: min(13.3333333333vw, 100px) min(4vw, 30px);
}
.lp-section03__inner {
  background-color: #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  margin-top: min(4vw, 30px);
  padding-bottom: min(13.3333333333vw, 100px);
}
.lp-section03__images {
  display: flex;
  justify-content: center;
  gap: min(4vw, 30px);
  margin: min(13.3333333333vw, 100px) min(4vw, 30px) 0;
}
.lp-section03__image01 {
  width: min(12.2666666667vw, 92px);
}
.lp-section03__image02 {
  width: min(19.7333333333vw, 148px);
}
.lp-section03__item {
  background-color: rgba(188, 212, 217, 0.3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  flex: 1;
  padding: min(2.6666666667vw, 20px) min(4vw, 30px) min(3.3333333333vw, 25px);
  text-align: center;
  height: min(40vw, 300px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-section03__item img {
  display: block;
  margin: 0 auto;
}
.lp-section03__text01 {
  font-weight: 500;
}
.lp-section03__text02 {
  margin-top: min(6.6666666667vw, 50px);
  margin-bottom: min(1.3333333333vw, 10px);
  color: var(--color-blue);
}
.lp-section03__text03 {
  margin-bottom: min(6.6666666667vw, 50px);
}

.lp-section04 {
  padding: min(13.3333333333vw, 100px) min(4vw, 30px);
}
.lp-section04__table {
  padding: 0 min(2vw, 15px);
  margin-top: min(13.3333333333vw, 100px);
}
.lp-section04__contact {
  margin: min(13.3333333333vw, 100px) auto min(20vw, 150px);
  width: min(52vw, 390px);
  height: auto;
  display: block;
}
.lp-section04__step {
  margin-bottom: min(4vw, 30px);
  background-color: #dee9ec;
  border-radius: 8px;
  display: flex;
  gap: min(8.5333333333vw, 64px);
  align-items: center;
  padding: min(4vw, 30px) min(12vw, 90px) min(4.6666666667vw, 35px) min(7.3333333333vw, 55px);
}
.lp-section04__step-left {
  text-align: center;
}
.lp-section04__step-title {
  color: var(--color-blue);
  margin-bottom: min(2.6666666667vw, 20px);
}
.lp-section04__step:nth-of-type(1) .lp-section04__step-icon {
  width: min(11.6vw, 87px);
}
.lp-section04__step:nth-of-type(2) .lp-section04__step-icon {
  width: min(11.3333333333vw, 85px);
}
.lp-section04__step:nth-of-type(3) .lp-section04__step-icon {
  width: min(11.2vw, 84px);
}
.lp-section04__features {
  display: flex;
  justify-content: center;
  gap: min(8vw, 60px);
}
.lp-section04__features img {
  width: min(21.7333333333vw, 163px);
}
.lp-section04__text01 {
  margin-bottom: min(6.6666666667vw, 50px);
}
.lp-section04__text02 {
  margin-top: min(1.3333333333vw, 10px);
  margin-bottom: min(6.6666666667vw, 50px);
}
.lp-section04__text03 {
  color: #c6ad81;
  margin-top: min(6.6666666667vw, 50px);
  margin-bottom: min(2.6666666667vw, 20px);
}
.lp-section04__text04 {
  margin-bottom: min(0.6666666667vw, 5px);
}
.lp-section04__image01 {
  margin-bottom: min(13.3333333333vw, 100px);
}

.lp-section05 {
  padding: min(13.3333333333vw, 100px) min(4vw, 30px) min(9.3333333333vw, 70px);
}
.lp-section05 h1 {
  letter-spacing: 0.1em;
}
.lp-section05__cardWrap {
  margin-top: min(12vw, 90px);
}
.lp-section05__card {
  background-color: hsla(0, 0%, 100%, 0.5);
  padding: min(4vw, 30px) min(5.3333333333vw, 40px) min(3.7333333333vw, 28px) min(5.3333333333vw, 40px);
  margin: 0 auto min(4vw, 30px);
  width: min(86.6666666667vw, 650px);
  position: relative;
}
.lp-section05__card p {
  text-align: left;
  font-weight: 500;
}
.lp-section05__quote--top {
  position: absolute;
  width: min(6.2666666667vw, 47px);
  height: min(3.7333333333vw, 28px);
  top: min(-0.6666666667vw, -5px);
  left: min(-1.8666666667vw, -14px);
}
.lp-section05__quote--bottom {
  position: absolute;
  width: min(6.2666666667vw, 47px);
  height: min(3.7333333333vw, 28px);
  bottom: min(-0.6666666667vw, -5px);
  right: min(-0.9333333333vw, -7px);
  transform: rotate(180deg);
}
.lp-section05__quote--who {
  margin-top: min(4vw, 30px);
  margin-bottom: min(0.6666666667vw, 5px);
  text-align: right !important;
  color: var(--color-blue);
}
.lp-section05__image01 {
  margin: min(6.6666666667vw, 50px) auto min(12vw, 90px);
}

.lp-section06 {
  padding: min(13.3333333333vw, 100px) min(6.6666666667vw, 50px);
}
.lp-section06 a {
  margin-bottom: min(4vw, 30px);
  display: block;
}
.lp-section06 a:last-of-type {
  margin-bottom: 0;
}
.lp-section06 img {
  width: min(86.6666666667vw, 650px);
  height: auto;
}
.lp-section06__text01 {
  margin-bottom: min(13.3333333333vw, 100px);
}

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