* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  line-height: 1.8;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.header {
  width: 100%;
  height: 80px;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.header_inner {
  width: 100%;
  max-width: 1920px;
  padding: 0 56px;
  margin: 0 auto;
}
.header_logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  white-space: pre;
  color: #0e6163;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .header {
    height: 64px;
    justify-content: center;
    padding: 0;
    background: transparent;
    text-align: center;
    position: absolute;
    z-index: 1;
  }
  .header_logo {
    font-size: 1.2rem;
    color: #8e9e9c;
    margin: 0;
  }
}
.footer {
  background: #0e6163;
  padding: 96px 40px 80px;
  color: #ffffff;
}
.footer_inner {
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
}
.footer_logo {
  margin-bottom: 48px;
}
.footer_logo img {
  width: 320px;
  height: auto;
  margin: 0 auto;
}
.footer_privacy {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 48px;
}
.footer_link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer_link:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.footer_copyright {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .footer {
    padding: 56px 20px 72px;
  }
  .footer_logo img {
    width: 220px;
  }
  .footer_privacy {
    font-size: 1.3rem;
  }
  .footer_copyright {
    font-size: 1.15rem;
  }
}
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.button_icon {
  position: absolute;
  right: 56px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.button_icon-small {
  position: absolute;
  right: 16px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.button_icon-left {
  position: absolute;
  left: 56px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.button_icon-right {
  position: absolute;
  right: 56px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.button-primary {
  background: #ffffff;
  color: #0e6163;
  box-shadow: -4px 4px 4px 0 rgba(0, 0, 0, 0.4);
  min-width: 320px;
  height: 64px;
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: -4px 6px 6px 0 rgba(0, 0, 0, 0.4);
}
.button-primary-dark {
  background: #0e6163;
  color: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  min-width: 320px;
  height: 64px;
}
.button-primary-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.25);
}
.button-dark {
  background: #352e2d;
  color: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  min-width: 320px;
  height: 64px;
}
.button-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.25);
}
.button-outline {
  background: #ffffff;
  color: #0e6163;
  border: 1px solid #0e6163;
  border-radius: 4px;
  min-width: 210px;
  height: 44px;
  font-size: 1.4rem;
}
.button-outline:hover {
  background: #0e6163;
  color: #ffffff;
}
.button-outline:hover .button_icon-small {
  filter: brightness(0) invert(1);
}
.button-submit {
  background: #a9823f;
  color: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  height: 80px;
  font-size: 1.8rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
.button-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.1);
}
.button-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button-submit:disabled:hover {
  transform: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .button-primary, .button-primary-dark, .button-dark {
    min-width: 280px;
    height: 50px;
    font-size: 1.5rem;
  }
  .button-outline {
    width: 190px;
    height: 34px;
    min-width: auto;
    font-size: 1.25rem;
  }
  .button-submit {
    width: 260px;
    height: 50px;
    font-size: 1.35rem;
    font-weight: 400;
  }
  .button_icon-left {
    width: 15px;
    height: 15px;
    left: 32px;
  }
  .button_icon-right {
    width: 15px;
    height: 15px;
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 873px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 94px 40px;
  background: url("../images/hero_bg-pc.jpg") no-repeat center center/cover;
  background-image: -webkit-image-set(url("../images/hero_bg-pc.webp") type("image/webp"), url("../images/hero_bg-pc.jpg") type("image/jpg"));
  background-image: image-set(url("../images/hero_bg-pc.webp") type("image/webp"), url("../images/hero_bg-pc.jpg") type("image/jpg"));
}
.hero_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (min-width: 769px) {
  .hero_inner {
    display: grid;
    grid-template-columns: auto 512px;
    grid-template-rows: auto auto auto;
    gap: 0 100px;
    align-items: flex-start;
    justify-content: center;
  }
  .hero_inner .hero_title {
    grid-column: 2;
    grid-row: 1;
  }
  .hero_inner .hero_copy {
    grid-column: 2;
    grid-row: 2;
  }
  .hero_inner .hero_book {
    grid-column: 1;
    grid-row: 1/4;
  }
  .hero_inner .hero_cta {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (min-width: 1200px) {
  .hero_inner {
    grid-template-rows: 160px 210px auto;
  }
}
.hero_book {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.hero_book-cover {
  width: 360px;
  height: auto;
  opacity: 0.9;
  box-shadow: -4px 6px 4px 6px rgba(0, 0, 0, 0.2);
}
.hero_book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 1px;
  display: block;
}
.hero_book-info {
  margin-top: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: #8e9e9c;
  opacity: 0.8;
}
.hero_book-info p {
  margin: 0;
}
.hero_title {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero_title-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
}
.hero_title-sub p {
  margin: 0;
}
.hero_title-main {
  font-family: "Noto Serif JP", serif;
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
  white-space: pre;
  margin: 0;
}
.hero_copy {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
}
.hero_copy-text1 {
  line-height: 2;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
  margin-bottom: 4px;
}
.hero_copy-text1 p {
  margin: 0;
}
.hero_copy-text1-part1, .hero_copy-text1-part3 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.hero_copy-text1-part2 {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}
.hero_copy-highlight {
  line-height: 1.3;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
  margin: 0 0 4px 0;
}
.hero_copy-highlight-text1 {
  font-size: 2.2rem;
  letter-spacing: 0.3em;
}
.hero_copy-highlight-text2 {
  font-size: 3rem;
  letter-spacing: 0.3em;
}
.hero_copy-highlight-text3 {
  font-size: 1.5rem;
}
.hero_copy-highlight-text4 {
  font-size: 2.2rem;
}
.hero_copy-text2 {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.3em;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
  white-space: pre;
  margin: 0 0 6px 0;
}
.hero_copy-text3 {
  font-size: 2.6rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
  white-space: pre;
  margin: 0;
}
.hero_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero_cta-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.hero_cta-text p {
  margin: 0;
}
.hero_cta-line {
  width: 220px;
  height: 1px;
  background: #ffffff;
  margin-bottom: 32px;
  opacity: 0.5;
}
.hero_cta-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: normal;
  color: #d5d9d8;
  letter-spacing: 0.06em;
  white-space: pre;
  margin: 16px 0 0 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .hero {
    min-height: auto;
    padding: 72px 40px;
  }
  .hero_inner {
    gap: 0 60px;
  }
}
@media (max-width: 1200px) and (min-width: 769px) {
  .hero_inner {
    grid-template-columns: auto 440px;
  }
}
@media (max-width: 1200px) {
  .hero_book-cover {
    width: 300px;
    height: 440px;
  }
  .hero_book-info {
    margin-top: 28px;
    font-size: 1.3rem;
  }
  .hero_title {
    margin-bottom: 24px;
  }
  .hero_title-sub {
    font-size: 1.8rem;
  }
  .hero_title-main {
    font-size: 4rem;
  }
  .hero_copy {
    margin-bottom: 40px;
  }
  .hero_copy-text1 {
    line-height: 2;
  }
  .hero_copy-text1-part1, .hero_copy-text1-part3 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  .hero_copy-text1-part2 {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
  }
  .hero_copy-highlight {
    line-height: 1.4;
  }
  .hero_copy-highlight-text1 {
    font-size: 2rem;
    letter-spacing: 0.5em;
  }
  .hero_copy-highlight-text2 {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }
  .hero_copy-highlight-text3 {
    font-size: 1.4rem;
  }
  .hero_copy-highlight-text4 {
    font-size: 2rem;
  }
  .hero_copy-text2 {
    font-size: 1.4rem;
    letter-spacing: 0.4em;
  }
  .hero_copy-text3 {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
  .hero_cta-text {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .hero_cta-line {
    width: 200px;
    margin-bottom: 30px;
  }
  .hero_cta-note {
    font-size: 1.3rem;
    margin-top: 18px;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 64px 20px;
    background: url("../images/hero_bg-sp.jpg") no-repeat center center/cover;
    background-image: -webkit-image-set(url("../images/hero_bg-sp.webp") type("image/webp"), url("../images/hero_bg-sp.jpg") type("image/jpg"));
    background-image: image-set(url("../images/hero_bg-sp.webp") type("image/webp"), url("../images/hero_bg-sp.jpg") type("image/jpg"));
  }
  .hero_inner {
    gap: 0 40px;
  }
}
@media (max-width: 900px) and (min-width: 769px) {
  .hero_inner {
    grid-template-columns: auto 360px;
  }
}
@media (max-width: 900px) {
  .hero_book-cover {
    width: 240px;
    height: 350px;
  }
  .hero_book-info {
    margin-top: 20px;
    font-size: 1.2rem;
  }
  .hero_title {
    margin-bottom: 20px;
  }
  .hero_title-sub {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
  }
  .hero_title-main {
    font-size: 3.2rem;
    letter-spacing: 0.5em;
  }
  .hero_copy {
    margin-bottom: 32px;
  }
  .hero_copy-text1 {
    line-height: 1.9;
    margin-bottom: 4px;
  }
  .hero_copy-text1-part1, .hero_copy-text1-part3 {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  .hero_copy-text1-part2 {
    font-size: 1.3rem;
    letter-spacing: 0.18em;
  }
  .hero_copy-highlight {
    line-height: 1.33;
    margin-bottom: 4px;
  }
  .hero_copy-highlight-text1 {
    font-size: 1.8rem;
    letter-spacing: 0.5em;
  }
  .hero_copy-highlight-text2 {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
  }
  .hero_copy-highlight-text3 {
    font-size: 1.3rem;
  }
  .hero_copy-highlight-text4 {
    font-size: 1.8rem;
  }
  .hero_copy-text2 {
    font-size: 1.3rem;
    letter-spacing: 0.35em;
    margin-bottom: 6px;
  }
  .hero_copy-text3 {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  .hero_cta-text {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  .hero_cta-line {
    width: 180px;
    margin-bottom: 28px;
  }
  .hero_cta-note {
    font-size: 1.2rem;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
    min-height: 800px;
    padding: 64px 20px 56px;
  }
  .hero_book {
    width: 170px;
  }
  .hero_book-cover {
    width: 100%;
    height: auto;
  }
  .hero_book-info {
    font-size: 1.15rem;
    margin-top: 18px;
  }
  .hero_title {
    margin-bottom: 12px;
  }
  .hero_title-sub {
    font-size: 1.4rem;
    letter-spacing: 0.16em;
    margin-bottom: 0;
  }
  .hero_title-main {
    font-size: 2.8rem;
    letter-spacing: 0.3em;
  }
  .hero_copy {
    margin-bottom: 32px;
    opacity: 0.8;
  }
  .hero_copy-text1 {
    margin-bottom: 0;
    line-height: 1.65;
  }
  .hero_copy-text1-part1, .hero_copy-text1-part3 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
  .hero_copy-text1-part2 {
    font-size: 1.25rem;
    letter-spacing: 0.16em;
  }
  .hero_copy-highlight {
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .hero_copy-highlight-text1 {
    font-size: 1.7rem;
    letter-spacing: 0.5em;
  }
  .hero_copy-highlight-text2 {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
  .hero_copy-highlight-text3 {
    font-size: 1.25rem;
  }
  .hero_copy-highlight-text4 {
    font-size: 1.7rem;
  }
  .hero_copy-text2 {
    margin-bottom: 0;
    font-size: 1.25rem;
    letter-spacing: 0.28em;
    line-height: 1.9;
  }
  .hero_copy-text3 {
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
  .hero_book {
    width: 50%;
    max-width: 180px;
    margin-bottom: 42px;
  }
  .hero_book-info {
    display: none;
  }
  .hero_cta-text {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  .hero_cta-line {
    width: 210px;
    margin-bottom: 28px;
  }
  .hero_button {
    width: 260px;
    height: 52px;
    margin-bottom: 14px;
  }
  .hero_button-text {
    font-size: 1.4rem;
  }
  .hero_cta-note {
    font-size: 1.15rem;
  }
}
.benefits-intro {
  background: linear-gradient(180deg, #ffffff 50%, #d5e2e2 100%);
  padding: 96px 40px 120px;
}
.benefits-intro_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits-intro_subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0e6163;
  text-align: center;
  white-space: pre;
  margin: 0 0 8px 0;
}
.benefits-intro_title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0e6163;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 48px 0;
}
.benefits-intro_lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 64px 0;
}
.benefits-intro_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
  width: 100%;
}
.benefits-intro_item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  width: auto;
  padding: 0 1em;
}
.benefits-intro_number {
  position: absolute;
  top: 40%;
  left: -5%;
  transform: translateY(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: 9rem;
  font-weight: 700;
  color: #c1d4d4;
  line-height: normal;
  flex-shrink: 0;
}
.benefits-intro_name {
  position: relative;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 3.3;
  color: #222222;
  white-space: nowrap;
  margin: 0;
}
.benefits-intro_note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 28px 0;
}

@media (max-width: 1200px) {
  .benefits-intro {
    padding: 56px 20px 72px;
  }
  .benefits-intro_list {
    max-width: 900px;
  }
  .benefits-intro_item {
    max-width: 400px;
    padding: 0 0.5em;
  }
  .benefits-intro_subtitle {
    font-size: 1.5rem;
  }
  .benefits-intro_title {
    font-size: 2.3rem;
    white-space: normal;
  }
  .benefits-intro_lead {
    font-size: 1.7rem;
    line-height: 1.5;
    white-space: normal;
  }
  .benefits-intro_note {
    white-space: normal;
  }
  .benefits-intro_list {
    gap: 24px 64px;
    margin-bottom: 40px;
  }
  .benefits-intro_number {
    font-size: 6.4rem;
  }
  .benefits-intro_name {
    font-size: 2.4rem;
  }
  .benefits-intro_note {
    font-size: 1.6rem;
  }
  .benefits-intro_button {
    width: 320px;
    height: 56px;
  }
}
@media (max-width: 900px) {
  .benefits-intro_list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .benefits-intro_number {
    font-size: 5.6rem;
  }
  .benefits-intro_name {
    font-size: 2rem;
  }
  .benefits-intro_note {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .benefits-intro {
    padding: 36px 20px 50px;
  }
  .benefits-intro_inner {
    transform: scale(1);
  }
  .benefits-intro_subtitle {
    font-size: 1.25rem;
  }
  .benefits-intro_title {
    font-size: 1.9rem;
  }
  .benefits-intro_lead {
    font-size: 1.35rem;
    line-height: 1.85;
    margin-bottom: 36px;
  }
  .benefits-intro_list {
    gap: 16px;
  }
  .benefits-intro_item {
    min-width: auto;
    padding: 0 0.25em;
  }
  .benefits-intro_number {
    font-size: 4rem;
  }
  .benefits-intro_name {
    font-size: 1.8rem;
  }
  .benefits-intro_note {
    font-size: 1.2rem;
  }
  .benefits-intro_button {
    width: 320px;
    height: 56px;
  }
  .benefits-intro_button-text {
    font-size: 1.5rem;
  }
}
.message {
  position: relative;
  width: 100%;
  background: url("../images/message_bg-pc.jpg") no-repeat center center/cover;
  background-image: -webkit-image-set(url("../images/message_bg-pc.webp") type("image/webp"), url("../images/message_bg-pc.jpg") type("image/jpg"));
  background-image: image-set(url("../images/message_bg-pc.webp") type("image/webp"), url("../images/message_bg-pc.jpg") type("image/jpg"));
  overflow: hidden;
  padding: 96px 40px 120px;
}
.message_inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.message_subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  white-space: pre;
  margin: 0 0 6px 0;
}
.message_title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 40px 0;
}
.message_lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 56px 0;
}
.message_card {
  background: #ffffff;
  color: #222222;
  width: 100%;
  max-width: 800px;
  padding: 80px 96px 96px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.message_card:not(:first-of-type) {
  margin-top: 64px;
}
.message_card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0e6163;
  margin: 0 0 32px 0;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.message_card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #222222;
  letter-spacing: 0.05em;
}
.message_card-text p {
  margin: 0 0 1.5em 0;
}
.message_card-text p:last-child {
  margin-bottom: 0;
}
.message_quote {
  font-size: 1.7rem;
  font-weight: 600;
  color: #0e6163;
  margin: 0 0 1.5em 0;
  padding-left: 0;
  font-style: italic;
  line-height: 1.8;
}

@media (min-width: 900px) {
  .message_card:last-of-type p:last-of-type {
    letter-spacing: -0.001em;
  }
}
@media (max-width: 900px) {
  .message {
    background: url("../images/message_bg-sp.jpg") no-repeat center center/cover;
    background-image: -webkit-image-set(url("../images/message_bg-sp.webp") type("image/webp"), url("../images/message_bg-sp.jpg") type("image/jpg"));
    background-image: image-set(url("../images/message_bg-sp.webp") type("image/webp"), url("../images/message_bg-sp.jpg") type("image/jpg"));
  }
  .message_subtitle {
    font-size: 1.5rem;
  }
  .message_title {
    font-size: 2.3rem;
  }
  .message_lead {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .message_card {
    padding: 56px 96px 64px;
  }
  .message_card-title {
    font-size: 2rem;
  }
  .message_card-text {
    font-size: 1.5rem;
  }
  .message_card-title, .message_card-text {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .message {
    padding: 36px 20px 50px;
    padding-left: 0;
    padding-right: 0;
  }
  .message_subtitle {
    font-size: 1.25rem;
  }
  .message_title {
    font-size: 1.9rem;
  }
  .message_lead {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .message_card {
    padding: 48px 32px 56px;
  }
  .message_card:not(:first-of-type) {
    margin-top: 48px;
  }
  .message_card-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  .message_card-text {
    font-size: 1.5rem;
    line-height: 1.9;
  }
  .message_card-title, .message_card-text {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
.profile {
  background: linear-gradient(136.173deg, rgba(255, 255, 255, 0.16) 5.4304%, rgba(146, 146, 146, 0.16) 94.57%), linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  padding: 96px 40px 120px;
}
.profile_inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile_subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0e6163;
  text-align: center;
  white-space: pre;
  margin: 0 0 6px 0;
}
.profile_title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0e6163;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 40px 0;
}
.profile_author {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.profile_image {
  width: 280px;
  height: 280px;
  overflow: hidden;
  margin: 0 0 32px 0;
}
.profile_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile_name {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #222222;
  text-align: center;
  white-space: pre;
  margin: 0 0 10px 0;
}
.profile_name-en {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #222222;
  text-align: center;
  white-space: pre;
  margin: 0 0 16px 0;
}
.profile_position {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}
.profile_summary {
  background: #ffffff;
  width: 100%;
  max-width: 640px;
  padding: 40px 48px 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #222222;
  text-align: left;
}
.profile_summary p {
  margin: 0 0 1em 0;
}
.profile_summary p:last-child {
  margin-bottom: 0;
}
.profile_bullet {
  color: #0e6163;
  margin-right: 0.5em;
}

@media (max-width: 1200px) {
  .profile {
    padding: 56px 20px 72px;
  }
  .profile_subtitle {
    font-size: 1.5rem;
  }
  .profile_title {
    font-size: 2.3rem;
  }
}
@media (max-width: 768px) {
  .profile {
    padding: 36px 20px 50px;
  }
  .profile_subtitle {
    font-size: 1.25rem;
  }
  .profile_title {
    font-size: 1.9rem;
  }
  .profile_image {
    width: 200px;
    height: 200px;
    margin-bottom: 32px;
  }
  .profile_position {
    white-space: normal;
    font-size: 1.3rem;
  }
  .profile_summary {
    max-width: 400px;
    padding: 32px 24px;
  }
}
.contents {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url("../images/contents-bg.jpg") no-repeat center center/cover;
  background-image: -webkit-image-set(url("../images/contents-bg.webp") type("image/webp"), url("../images/contents-bg.jpg") type("image/jpg"));
  background-image: image-set(url("../images/contents-bg.webp") type("image/webp"), url("../images/contents-bg.jpg") type("image/jpg"));
  padding: 96px 40px 120px;
}
.contents_inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contents_subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0e6163;
  text-align: center;
  white-space: pre;
  margin: 0 0 6px 0;
}
.contents_title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0e6163;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 40px 0;
}
.contents_lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 56px 0;
}
.contents_list {
  display: flex;
  justify-content: center;
  gap: 80px;
  width: 100%;
  padding: 14px 0 28px;
  position: relative;
}
.contents_list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  border-left: 1px solid #ccc;
}
.contents_column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contents_column:first-child {
  width: 512px;
  transform: translateX(44px);
}
.contents_column:last-child {
  width: 640px;
  transform: translateX(52px);
}
.contents_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  height: 40px;
}
.contents_chapter {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: #a9823f;
  line-height: normal;
  white-space: pre;
  margin: 14px 0 0 0;
}
.contents_number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: #a9823f;
  line-height: 1.7;
  white-space: pre;
  margin: 0;
  min-width: 29px;
}
.contents_name {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #222222;
  line-height: normal;
  margin: 7px 0 0 0;
}

@media (max-width: 1440px) {
  .contents_inner {
    max-width: 100%;
  }
  .contents_name {
    font-size: 1.8rem;
  }
}
@media (max-width: 1200px) {
  .contents {
    padding: 56px 20px 72px;
  }
  .contents_subtitle {
    font-size: 1.5rem;
  }
  .contents_title {
    font-size: 2.3rem;
  }
  .contents_lead {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .contents_list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0;
  }
  .contents_list::before {
    display: none;
  }
  .contents_column {
    width: 100%;
    transform: none;
    margin: 0 auto;
    gap: 24px;
  }
  .contents_column:first-child, .contents_column:last-child {
    width: 540px;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .contents {
    padding: 36px 20px 50px;
  }
  .contents_inner {
    max-width: 320px;
    margin: 0 auto;
  }
  .contents_subtitle {
    font-size: 1.25rem;
  }
  .contents_title {
    font-size: 1.9rem;
  }
  .contents_lead {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .contents_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 340px;
    padding: 0;
    margin: 0 auto;
  }
  .contents_column {
    width: 100% !important;
    transform: none !important;
    gap: 0;
  }
  .contents_column:first-child {
    margin-bottom: 20px;
  }
  .contents_item {
    position: relative;
    height: auto;
    margin-bottom: 20px;
    gap: 0;
  }
  .contents_item:last-child {
    margin-bottom: 0;
  }
  .contents_chapter {
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 9px;
    margin: 0;
  }
  .contents_number {
    font-size: 2.4rem;
    position: absolute;
    left: 47px;
    top: 0;
    line-height: 1;
    margin: 0;
  }
  .contents_name {
    font-size: 1.7rem;
    font-weight: 600;
    position: relative;
    padding-left: 1px;
    margin-top: 38px;
    margin-left: 0;
    line-height: 1.68;
  }
}
.features {
  background: linear-gradient(130.406deg, rgba(255, 255, 255, 0.37) 3.117%, rgba(243, 244, 246, 0.37) 71.868%), linear-gradient(90deg, #f3f4f6 0%, #f3f4f6 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15) inset;
  padding: 96px 40px 120px;
}
.features_inner {
  max-width: 690px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features_subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0e6163;
  text-align: center;
  white-space: pre;
  margin: 0 0 6px 0;
}
.features_title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0e6163;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 40px 0;
}
.features_lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 48px 0;
}
.features_list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 96px;
  width: 100%;
  max-width: 630px;
}
.features_item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  padding: 32px 36px 36px 22px;
  border-radius: 4px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
}
.features_item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid #0e6163;
  background: transparent;
  margin-top: 12px;
}
.features_item-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features_item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: #222222;
}
.features_item-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.85;
  color: #222222;
  margin: 0;
}

@media (max-width: 1200px) {
  .features {
    padding: 56px 20px 72px;
  }
  .features_subtitle {
    font-size: 1.5rem;
  }
  .features_title {
    font-size: 2.3rem;
  }
  .features_lead {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .features_list {
    max-width: 600px;
    gap: 24px;
  }
  .features_item {
    min-height: 200px;
    padding: 24px 16px;
  }
  .features_item-icon {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 6px;
  }
  .features_item-title {
    font-size: 1.8rem;
    margin: 0;
  }
  .features_item-text {
    font-size: 1.6rem;
  }
}
@media (max-width: 900px) {
  .features_list {
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .features {
    padding: 36px 20px 50px;
  }
  .features_subtitle {
    font-size: 1.25rem;
  }
  .features_title {
    font-size: 1.9rem;
  }
  .features_lead {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .features_list {
    gap: 24px;
    margin-bottom: 40px;
  }
  .features_item {
    width: 100%;
    max-width: 340px;
    min-height: 200px;
    padding: 24px 16px;
    margin: 0 auto;
    gap: 16px;
  }
  .features_item-icon {
    width: 15px;
    min-width: 15px;
    height: 15px;
    border: 3px solid #0e6163;
    margin-top: 6px;
  }
  .features_item-title {
    font-size: 1.6rem;
    margin: 0;
  }
  .features_item-text {
    font-size: 1.4rem;
  }
}
.benefits-detail {
  position: relative;
  width: 100%;
  background: url("../images/benefits-detail-bg.jpg") no-repeat center center/cover;
  background-image: -webkit-image-set(url("../images/benefits-detail-bg.webp") type("image/webp"), url("../images/benefits-detail-bg.jpg") type("image/jpg"));
  background-image: image-set(url("../images/benefits-detail-bg.webp") type("image/webp"), url("../images/benefits-detail-bg.jpg") type("image/jpg"));
  overflow: hidden;
  padding: 96px 40px 120px;
}
.benefits-detail_inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits-detail_title {
  white-space: nowrap;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  padding-bottom: 20px;
  margin: 0 0 40px 0;
  position: relative;
}
.benefits-detail_title::after {
  content: "";
  display: block;
  width: 50%;
  min-width: 90px;
  height: 1px;
  background: #222222;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.benefits-detail_lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 56px 0;
}
.benefits-detail_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 32px;
  margin-bottom: 96px;
  width: 100%;
}
.benefits-detail_item {
  background: #ffffff;
  border-top: 6px solid #3d8081;
  border-radius: 4px;
  padding: 24px 32px 32px;
  text-align: left;
  min-width: 360px;
  height: 272px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefits-detail_badge {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.75;
  background: linear-gradient(90deg, #ceb086 0%, #ceb086 100%);
  color: #ffffff;
  margin-bottom: 0;
}
.benefits-detail_subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0e6163;
  letter-spacing: 0.045em;
  line-height: 1.75;
  margin: 18px 0 0px;
}
.benefits-detail_name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0e6163;
  letter-spacing: 0.055em;
  line-height: 1.75;
  margin: 0 0 14px 0;
}
.benefits-detail_text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
  color: #222222;
  margin: 0;
}

@media (min-width: 901px) {
  .benefits-detail_item-large {
    width: 390px;
    padding: 25px 32px 34px;
  }
  .benefits-detail_item-large .benefits-detail_subtitle {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  .benefits-detail_item-large .benefits-detail_name {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  .benefits-detail_item-large .benefits-detail_text {
    font-size: 1.8rem;
  }
}
@media (max-width: 1200px) {
  .benefits-detail {
    padding: 56px 20px 72px;
  }
  .benefits-detail_title {
    font-size: 2.8rem;
  }
  .benefits-detail_lead {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .benefits-detail_list {
    grid-template-columns: 1fr;
    gap: 36px 28px;
  }
  .benefits-detail_list .benefits-detail_item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
@media (max-width: 900px) {
  .benefits-detail_list {
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .benefits-detail {
    padding: 36px 20px 50px;
  }
  .benefits-detail_title {
    font-size: 1.9rem;
  }
  .benefits-detail_lead {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .benefits-detail_list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .benefits-detail_item {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-width: auto;
    border-top: 4px solid #0e6163;
    padding: 24px 20px;
    margin: auto;
  }
  .benefits-detail_badge {
    padding: 6px 16px;
    border-radius: 18px;
    margin-bottom: 24px;
  }
  .benefits-detail_subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: #0e6163;
    letter-spacing: 0.048em;
    line-height: 1.9;
    margin: 0;
  }
  .benefits-detail_name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.9;
    margin: 0 0 24px 0;
  }
  .benefits-detail_text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.9;
  }
  .benefits-detail_item:last-child .benefits-detail_text {
    font-size: 1.5rem;
  }
}
.flow {
  position: relative;
  background: linear-gradient(124.004deg, rgba(255, 255, 255, 0) 5.7411%, rgba(121, 121, 121, 0.2) 96.715%), linear-gradient(90deg, #f6f4f3 0%, #f6f4f3 100%);
  padding: 96px 40px 120px;
}
.flow_inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.flow_title {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  padding-bottom: 20px;
  margin: 0 0 40px 0;
  position: relative;
}
.flow_title::after {
  content: "";
  display: block;
  width: 50%;
  min-width: 90px;
  height: 1px;
  background: #222222;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.flow_lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 40px 0;
}
.flow_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.flow_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.flow_item:nth-child(1) .flow_content {
  min-height: 230px;
}
.flow_item:nth-child(2) .flow_content {
  min-height: 218px;
}
.flow_item:nth-child(3) {
  margin-bottom: 0;
}
.flow_item:nth-child(3) .flow_content {
  min-height: 218px;
}
.flow_item .button {
  transform: scale(0.9);
}
.flow_step {
  flex-shrink: 0;
  width: 145px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flow_step-01::after {
  content: "";
  display: block;
  width: 100%;
  height: 288px;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  background-color: #c8beab;
  position: absolute;
  top: 0;
  left: 0;
}
.flow_step-02::after {
  content: "";
  display: block;
  width: 100%;
  height: 266px;
  clip-path: polygon(100% 0, 100% 82%, 50% 100%, 0 82%, 0 0, 50% 18%);
  background-color: #D7D0c3;
  position: absolute;
  top: 0;
  left: 0;
}
.flow_step-03::after {
  content: "";
  display: block;
  width: 100%;
  height: 218.864px;
  clip-path: polygon(50% 18%, 100% 0, 100% 100%, 0 100%, 0 0);
  background-color: #dedad2;
  position: absolute;
  top: 0;
  left: 0;
}
.flow_step-label {
  position: absolute;
  left: 50%;
  top: 64px;
  transform: translateX(-50%);
  z-index: 1;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #5b5b5b;
  line-height: 1.9;
  white-space: nowrap;
}
.flow_step-number {
  position: absolute;
  left: 50%;
  top: 88px;
  transform: translateX(-50%);
  z-index: 1;
  font-weight: 700;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: #5b5b5b;
  letter-spacing: 0.05em;
  line-height: 1.9;
  white-space: nowrap;
}
.flow_content {
  background: #ffffff;
  text-align: center;
  flex: 1;
  max-width: 600px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flow_content-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
  color: #222222;
  margin: 0 0 14px 0;
}
.flow_content-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  color: #222222;
  margin: 0 0 20px 0;
}
.flow_content-text:last-child {
  margin-bottom: 0;
}
.flow .button {
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .flow {
    padding: 56px 20px 72px;
  }
  .flow_title {
    font-size: 2.8rem;
  }
  .flow_lead {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .flow_step {
    width: 90px;
  }
  .flow_step_label {
    font-size: 1.4rem;
  }
  .flow_step_number {
    font-size: 1.4rem;
  }
  .flow_step_content {
    padding: 16px 20px;
  }
  .flow_content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .flow {
    padding: 36px 20px 50px;
  }
  .flow_inner {
    max-width: 340px;
    margin: 0 auto;
  }
  .flow_title {
    font-size: 1.9rem;
  }
  .flow_lead {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .flow_list {
    max-width: 360px;
    margin-bottom: 40px;
    gap: 18px;
  }
  .flow_item {
    gap: 12px;
  }
  .flow_item:nth-child(1) .flow_content {
    min-height: 221px;
    padding: 19px 20px 34px;
  }
  .flow_item:nth-child(2) .flow_content {
    min-height: 218px;
    padding: 34px 20px;
  }
  .flow_item:nth-child(3) {
    margin-bottom: 0;
  }
  .flow_item:nth-child(3) .flow_content {
    min-height: 218px;
    padding: 29px 20px;
  }
  .flow_step {
    width: 48px;
  }
  .flow_step-01::after {
    height: 276px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 92%, 0 80%);
  }
  .flow_step-02::after {
    height: 264px;
    clip-path: polygon(100% 0, 100% 82%, 50% 94%, 0 82%, 0 0, 50% 14%);
  }
  .flow_step-03::after {
    clip-path: polygon(50% 14%, 100% 0, 100% 100%, 0 100%, 0 0);
  }
  .flow_step-label {
    font-size: 1.4rem;
  }
  .flow_step-number {
    font-size: 1.8rem;
  }
  .flow_step-content {
    padding: 16px 20px;
  }
  .flow_content-title {
    font-size: 1.6rem;
  }
  .flow_content-text {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}
.form {
  background: linear-gradient(130.406deg, rgba(255, 255, 255, 0.37) 3.117%, rgba(243, 244, 246, 0.37) 71.868%), linear-gradient(90deg, #f3f4f6 0%, #f3f4f6 100%);
  padding: 96px 40px 120px;
}
.form_inner {
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
}
.form_title {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: #0e6163;
  text-align: center;
  padding-bottom: 20px;
  margin: 0 0 40px 0;
  position: relative;
}
.form_title::after {
  content: "";
  display: block;
  width: 50%;
  min-width: 90px;
  height: 1px;
  background: #0e6163;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.form_lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 56px 0;
}
.form_content {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px 30px;
}
.form_body {
  border: 1px solid #0e6163;
  padding: 48px 40px 56px;
}
.form_note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  margin-bottom: 28px;
  text-align: left;
}
.form_group {
  margin-bottom: 22px;
}
.form_label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0e6163;
  line-height: 1.75;
  margin-bottom: 7px;
  text-align: left;
}
.form_input {
  width: 100%;
  height: 50px;
  background: #f7f7f7;
  border: 1px solid #efefef;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
.form_input:focus {
  outline: none;
  border-color: #0e6163;
}
.form_input::placeholder {
  color: #888;
}
.form_checkbox {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 32px;
  text-align: left;
}
.form_checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  background: #f7f7f7;
  border: 1px solid #efefef;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}
.form_checkbox input[type=checkbox]:checked {
  background: #0e6163;
  border-color: #0e6163;
}
.form_checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form_checkbox input[type=checkbox]:focus {
  outline: 2px solid #0e6163;
  outline-offset: 2px;
}
.form_checkbox-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0e6163;
  line-height: 1.75;
  cursor: pointer;
}
.form_link {
  text-decoration: underline;
  color: #0e6163;
}
.form_link:hover {
  opacity: 0.8;
}
.form .button-submit {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: flex;
}
.form_honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .form {
    padding: 56px 20px 72px;
  }
  .form_title {
    font-size: 2.8rem;
  }
  .form_lead {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .form {
    padding: 36px 20px 50px;
    padding-left: 0;
    padding-right: 0;
  }
  .form_title {
    font-size: 1.9rem;
  }
  .form_lead {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .form_content {
    padding: 20px 15px;
  }
  .form_body {
    max-width: 360px;
    padding: 24px 16px 32px;
    margin: 0 auto;
  }
  .form_note {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  .form_label {
    font-size: 1.4rem;
  }
  .form_input {
    height: 48px;
    font-size: 1.4rem;
  }
  .form_checkbox-label {
    font-size: 1.4rem;
  }
}
.is-sp {
  display: inline !important;
}
@media (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}

.is-pc {
  display: none !important;
}
@media (min-width: 769px) {
  .is-pc {
    display: inline !important;
  }
}

.is-sp-block {
  display: block !important;
}
@media (min-width: 769px) {
  .is-sp-block {
    display: none !important;
  }
}

.is-pc-block {
  display: none !important;
}
@media (min-width: 769px) {
  .is-pc-block {
    display: block !important;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.pb-64 {
  padding-bottom: 64px !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

@media (max-width: 768px) {
  .text-sp-left {
    text-align: left !important;
  }
  .text-sp-center {
    text-align: center !important;
  }
  .text-sp-right {
    text-align: right !important;
  }
}
@media (min-width: 769px) {
  .text-pc-left {
    text-align: left !important;
  }
  .text-pc-center {
    text-align: center !important;
  }
  .text-pc-right {
    text-align: right !important;
  }
}
.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.letter-spacing--0-001 {
  letter-spacing: -0.001em !important;
}

.text-xs {
  font-size: 1.2rem !important;
}

.text-sm {
  font-size: 1.4rem !important;
}

.text-base {
  font-size: 1.6rem !important;
}

.text-lg {
  font-size: 1.8rem !important;
}

.text-xl {
  font-size: 2rem !important;
}

.text-2xl {
  font-size: 2.4rem !important;
}

.text-3xl {
  font-size: 2.8rem !important;
}

.text-4xl {
  font-size: 3.2rem !important;
}

.text-primary {
  color: #0e6163 !important;
}

.text-accent {
  color: #a9823f !important;
}

.text-dark {
  color: #352e2d !important;
}

.text-gray {
  color: #8e9e9c !important;
}

.text-white {
  color: #ffffff !important;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.items-center {
  align-items: center !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-between {
  justify-content: space-between !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-24 {
  gap: 24px !important;
}

.gap-32 {
  gap: 32px !important;
}

.w-full {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.max-w-full {
  max-width: 100% !important;
}

.nowrap {
  white-space: nowrap !important;
}

.wrap {
  white-space: normal !important;
}

.truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

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