@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --------------------
  HTMLタグのベース設定
-------------------- */
@font-face {
  font-family: "KeiFont";
  src: url("../fonts/KeiFont.woff2") format("woff2"), url("../fonts/KeiFont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* 全体に適用（例） */
html {
  font-size: 0.2666666667vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (min-width: 560px) {
  html {
    font-size: 0.1302083333vw;
  }
}
@media (min-width: 960px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "KeiFont", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: #5c3a21;
  background-color: #fff;
  word-break: break-word;
}

/* --------------------
  リンクスタイル
-------------------- */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* --------------------
  見出し・テキスト
-------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}

p {
  margin-bottom: 1em;
}

/* --------------------
  画像
-------------------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------
  リスト
-------------------- */
ul,
ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

/* --------------------
  フォーム要素
-------------------- */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
}

/* --------------------
  ボタンの初期化
-------------------- */
button {
  cursor: pointer;
  background: none;
}

li {
  list-style: none;
}

/* --------------------
  レスポンシブ設定
-------------------- */
.no-sp {
  display: none;
}
@media (min-width: 560px) {
  .no-sp {
    display: block;
  }
}
@media (min-width: 960px) {
  .no-sp {
    display: block;
  }
}

.no-sp-tablet {
  display: none;
}
@media (min-width: 560px) {
  .no-sp-tablet {
    display: none;
  }
}
@media (min-width: 960px) {
  .no-sp-tablet {
    display: block;
  }
}

.no-tablet-pc {
  display: block;
}
@media (min-width: 560px) {
  .no-tablet-pc {
    display: none;
  }
}
@media (min-width: 960px) {
  .no-tablet-pc {
    display: none;
  }
}

.not-pc {
  display: block;
}
@media (min-width: 560px) {
  .not-pc {
    display: block;
  }
}
@media (min-width: 960px) {
  .not-pc {
    display: none;
  }
}

.swiper {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  max-width: 320px;
}
@media (min-width: 560px) {
  .swiper {
    max-width: 650px;
  }
}
@media (min-width: 960px) {
  .swiper {
    max-width: 1160px;
  }
}

.swiper-wrapper {
  position: relative;
  margin-top: 40px;
}
@media (min-width: 960px) {
  .swiper-wrapper {
    padding: 7.4rem 3rem;
  }
}

.swiper-slide {
  padding: 16px 30px 24px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fee3ec, #fadce2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin: 0 auto;
  width: 320px;
}
@media (min-width: 560px) {
  .swiper-slide {
    padding: 30px 40px;
    min-height: 350px;
    width: 400px;
  }
}
@media (min-width: 960px) {
  .swiper-slide {
    padding: 5rem 3rem;
    min-height: 500px;
    width: 500px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  position: absolute;
  content: "";
  display: block;
  top: 60%;
  width: 20px;
  height: 20px;
  color: transparent;
  border-radius: 1px;
  background-color: blue;
}
@media (min-width: 960px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    top: -65%;
    width: 3rem;
    height: 4rem;
    color: transparent;
    border-radius: 1px;
    background-color: blue;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}

.swiper-button-next::after {
  right: -30%;
  -webkit-clip-path: polygon(0 0, 70% 50%, 0 100%);
          clip-path: polygon(0 0, 70% 50%, 0 100%);
}

.swiper-button-prev::after {
  left: -40%;
  -webkit-clip-path: polygon(0 0, 70% 50%, 0 100%);
          clip-path: polygon(0 0, 70% 50%, 0 100%);
  transform: rotate(180deg);
}
@media (min-width: 960px) {
  .swiper-button-prev::after {
    left: 100%;
  }
}

input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: 15px;
  height: 15px;
  accent-color: #007bff;
  border: 1px solid #996644;
  margin: 0 10px 0;
  border-radius: 5px;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**


[



/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.l-header {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0px 8px 19px 0px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  z-index: 5000;
}
@media (min-width: 560px) {
  .l-header {
    height: 60px;
  }
}
@media (min-width: 960px) {
  .l-header {
    height: 74px;
    background: rgba(255, 255, 255, 0.5);
  }
}
.l-header__title {
  text-align: center;
  font-size: 24px;
  line-height: 1.75;
}
@media (min-width: 560px) {
  .l-header__title {
    font-size: 24px;
  }
}
@media (min-width: 960px) {
  .l-header__title {
    font-size: 30px;
  }
}
@media (min-width: 1260px) {
  .l-header__title {
    font-size: 3.5rem;
  }
}

.l-main {
  background-attachment: fixed;
  background-image: url("../../img/pc-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.p-mainvisual {
  background-image: none;
}
@media (min-width: 560px) {
  .p-mainvisual {
    position: absolute;
    background-image: url("../../../img/mv_img-sp.png");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 500px;
    top: 0;
  }
}
@media (min-width: 960px) {
  .p-mainvisual {
    height: 900px;
  }
}
.p-mainvisual__contents {
  text-align: center;
}
@media (min-width: 560px) {
  .p-mainvisual__contents {
    background-color: rgba(255, 245, 247, 0.85);
    max-width: 600px;
    width: 85%;
    height: 361.45px;
    flex-shrink: 0;
    border-radius: 50px;
    z-index: 50;
    padding: 37px 0 45px;
    margin: 4rem auto 3.5rem auto;
  }
}
@media (min-width: 960px) {
  .p-mainvisual__contents {
    max-width: 1160px;
    width: 85%;
    min-height: 543px;
    padding: 5rem 6.6rem 4rem 6.6rem;
    margin: 12rem auto 0 auto;
  }
}
.p-mainvisual__subtitle {
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  line-height: 2;
  margin-bottom: 15px;
}
@media (min-width: 560px) {
  .p-mainvisual__subtitle {
    font-size: 20px;
    line-height: 1.8; /* 180% */
  }
}
@media (min-width: 960px) {
  .p-mainvisual__subtitle {
    font-size: 32px;
    line-height: 1.625;
    margin-bottom: 40px;
  }
}
.p-mainvisual__title {
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-size: 20px;
  line-height: 2; /* 200% */
}
@media (min-width: 560px) {
  .p-mainvisual__title {
    font-size: 24px;
    line-height: 1.7333333333;
  }
}
@media (min-width: 720px) {
  .p-mainvisual__title {
    font-size: 30px;
    line-height: 1.75;
  }
}
@media (min-width: 960px) {
  .p-mainvisual__title {
    font-size: 36px;
    line-height: 1.25;
  }
}
@media (min-width: 1260px) {
  .p-mainvisual__title {
    font-size: 4rem;
  }
}
.p-mainvisual__bottom-text {
  margin-bottom: 27px;
  font-size: 18px;
}
@media (min-width: 560px) {
  .p-mainvisual__bottom-text {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
@media (min-width: 960px) {
  .p-mainvisual__bottom-text {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.p-mainvisual__logo {
  margin-bottom: 24px;
  font-size: 24px;
}
@media (min-width: 560px) {
  .p-mainvisual__logo {
    font-size: 30px;
  }
}
@media (min-width: 960px) {
  .p-mainvisual__logo {
    font-size: 52px;
  }
}
.p-mainvisual__img-sp {
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .p-mainvisual__img-sp {
    display: none;
  }
}
@media (min-width: 960px) {
  .p-mainvisual__img-sp {
    display: none;
  }
}
.p-mainvisual__img-sp img {
  max-width: none;
  width: 100%;
}

.p-features {
  scroll-margin-top: 80px;
}
@media (min-width: 560px) {
  .p-features {
    padding-top: 500px;
  }
}
@media (min-width: 960px) {
  .p-features {
    padding-top: 900px;
  }
}

.p-about__content {
  gap: 20px;
  background: linear-gradient(145deg, rgba(255, 239, 219, 0.7), rgba(255, 214, 165, 0.5));
  border-radius: 20px;
  padding: 20px 10px;
  margin: 0 0 60px 0;
}
@media (min-width: 560px) {
  .p-about__content {
    gap: 50px;
  }
}
@media (min-width: 960px) {
  .p-about__content {
    max-width: 1160px;
    gap: 2rem;
    width: 85%;
    padding: 3rem 2rem;
    margin: 0 auto;
  }
}
.p-about__media-intro {
  gap: 15px;
}
@media (min-width: 960px) {
  .p-about__media-intro {
    width: 43%;
  }
}
.p-about__img {
  width: 150px;
  height: 150px;
}
@media (min-width: 960px) {
  .p-about__img {
    width: 20rem;
    height: 20rem;
  }
}
.p-about__media-map {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 0;
}
@media (min-width: 560px) {
  .p-about__media-map {
    width: 100%;
    max-width: 960px;
  }
}
@media (min-width: 960px) {
  .p-about__media-map {
    max-width: none;
  }
}
@media (min-width: 960px) {
  .p-about__desc {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.p-about__text {
  margin: 15px 0 0 0;
  font-size: 14px;
  line-height: 1.25;
}
@media (min-width: 560px) {
  .p-about__text {
    font-size: 20px;
    margin: 30px 0 0 0;
  }
}
.p-about__heading--sub {
  margin: 0 0 15px 0;
}
.p-about__info-contents {
  gap: 10px;
  margin-bottom: 15px;
}
@media (min-width: 560px) {
  .p-about__info-contents {
    gap: 50px;
  }
}
.p-about__info-contents:last-of-type {
  margin-bottom: 0;
}
.p-about__info-title {
  width: 60px;
}
.p-about__info-text {
  flex: 1;
}

.p-contact {
  scroll-margin-top: 80px;
}
.p-contact__checkbox {
  gap: 0.5rem;
  margin: 10px 0;
}

.p-course {
  scroll-margin-top: 80px;
}

.p-flow {
  scroll-margin-top: 80px;
}

.p-work {
  scroll-margin-top: 80px;
}

.p-faq {
  scroll-margin-top: 80px;
}
.p-faq__contact-message {
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  line-height: 1.8;
}
.p-faq__note {
  margin-bottom: 1.5rem;
}
@media (min-width: 560px) {
  .p-faq__note {
    font-size: 20px;
  }
}
@media (min-width: 960px) {
  .p-faq__note {
    font-size: 24px;
  }
}
.p-faq__note a.c-link {
  text-decoration: underline;
  color: #e5738d;
  font-weight: bold;
}
.p-faq__note a.c-link:hover {
  text-decoration: none;
  color: #d45c75;
}
.p-faq__mail-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #f28aa0;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.p-faq__mail-button:hover {
  background-color: #ec6c88;
}

.p-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.p-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

.c-wrapper, .c-wrapper__contact, .c-wrapper__about, .c-wrapper__faq, .c-wrapper__work, .c-wrapper__flow, .c-wrapper__course {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1160px;
}
.c-wrapper__header {
  padding: 0 20px;
}
.c-wrapper__mainvisual {
  padding: 72px 24px 0 24px;
}
@media (min-width: 560px) {
  .c-wrapper__mainvisual {
    padding: 72px 24px 0 24px;
  }
}
.c-wrapper__features {
  margin: 60px 28px;
}
@media (min-width: 960px) {
  .c-wrapper__features {
    margin: 65px auto;
    max-width: 1160px;
  }
}
.c-wrapper__course {
  margin: 60px auto 0;
}
.c-wrapper__flow {
  margin: 60px auto;
}
.c-wrapper__work {
  margin: 60px auto;
  padding: 0 40px;
}
.c-wrapper__faq {
  margin: 0 auto 60px auto;
}
.c-wrapper__contact {
  padding: 0 30px 60px 30px;
}
@media (min-width: 960px) {
  .c-wrapper__contact {
    margin-top: 60px;
  }
}

.c-hamburger {
  display: block;
  width: 25px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 6000;
}
@media (min-width: 960px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #5c3a21;
  border-radius: 4px;
  transition: 0.3s;
  display: block;
}
.c-hamburger span:nth-child(1) {
  top: 8px;
}
.c-hamburger span:nth-child(2) {
  top: 0;
}
.c-hamburger span:nth-child(3) {
  bottom: 0;
}
.c-hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}
.c-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

.c-hamburger-nav {
  position: fixed;
  background: #f5f5f5;
  z-index: 4000;
  overflow: hidden;
  max-height: 0;
  background-color: #fff;
  transition: max-height 0.5s ease;
  left: 0;
  width: 70%;
  padding: 50px 0 0 0;
}
@media (min-width: 960px) {
  .c-hamburger-nav {
    display: none;
  }
}
.c-hamburger-nav__list {
  padding: 30px 20px;
}
.c-hamburger-nav__item {
  margin-bottom: 20px;
  cursor: pointer;
}
.c-hamburger-nav__item a {
  font-size: 20px;
}
.c-hamburger-nav__item:hover {
  opacity: 0.8;
}

.c-hamburger-nav.is-open {
  max-height: 800px;
}

.c-button, .c-button__faq, .c-button__contact, .c-button__flow, .c-button__mv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #f2f4f5;
  border-radius: 100px;
  background: #f78da7;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
  opacity: 1;
}
.c-button__icon {
  position: relative;
  display: block;
  background-color: #f2f4f5;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
@media (min-width: 560px) {
  .c-button__icon {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 960px) {
  .c-button__icon {
    width: 3rem;
    height: 3rem;
    margin-right: 20px;
  }
}
.c-button__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #f78da7;
}
@media (min-width: 960px) {
  .c-button__icon::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #f78da7;
  }
}
.c-button__mv {
  width: 300px;
  height: 50px;
  padding: 10px 10px 10px 0px;
  margin: 30px auto 50px auto;
}
@media (min-width: 560px) {
  .c-button__mv {
    max-width: 450px;
    width: 100%;
    height: 60px;
    margin: 20px auto;
  }
}
@media (min-width: 960px) {
  .c-button__mv {
    max-width: 820px;
    width: 100%;
    height: 80px;
    margin: 40px auto;
  }
}
@media (min-width: 560px) {
  .c-button__text {
    font-size: 24px;
  }
}
@media (min-width: 960px) {
  .c-button__text {
    font-size: 36px;
  }
}
@media (min-width: 1260px) {
  .c-button__text {
    font-size: 40px;
  }
}
.c-button__flow {
  width: 300px;
  height: 50px;
  padding: 10px 10px 10px 0px;
  margin: 30px auto 0 auto;
}
@media (min-width: 560px) {
  .c-button__flow {
    width: 500px;
    height: 60px;
    margin: 40px auto;
  }
}
@media (min-width: 960px) {
  .c-button__flow {
    width: 820px;
    height: 80px;
    margin: 74px auto 0;
  }
}
.c-button__faq, .c-button__contact {
  width: 300px;
  height: 50px;
  padding: 10px 10px 10px 0;
  margin: 30px auto 0 auto;
}
@media (min-width: 560px) {
  .c-button__faq, .c-button__contact {
    width: 500px;
    height: 60px;
    margin: 40px auto;
  }
}
@media (min-width: 960px) {
  .c-button__faq, .c-button__contact {
    width: 820px;
    height: 80px;
    margin: 30px auto 0;
  }
}
.c-button__text-faq {
  font-size: 16px;
  text-decoration: none;
}
@media (min-width: 560px) {
  .c-button__text-faq {
    font-size: 20px;
  }
}
@media (min-width: 960px) {
  .c-button__text-faq {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

.c-nav__list {
  gap: 2rem;
}
.c-nav__item {
  font-size: 18px;
}
@media (min-width: 560px) {
  .c-nav__item {
    font-size: 16px;
  }
}
@media (min-width: 960px) {
  .c-nav__item {
    font-size: 16px;
  }
}
@media (min-width: 1260px) {
  .c-nav__item {
    font-size: 24px;
  }
}

.js-nav {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.js-nav.is-open {
  max-height: 500px;
}

.c-media__features {
  margin-top: 27px;
  gap: 25px;
  background: linear-gradient(145deg, rgba(255, 239, 219, 0.7), rgba(255, 214, 165, 0.5));
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px 20px;
}
@media (min-width: 560px) {
  .c-media__features {
    padding: 30px;
  }
}
.c-media__left {
  width: 40%;
  margin: 0 auto;
  justify-content: center;
}
@media (min-width: 560px) {
  .c-media__left {
    width: 31%;
  }
}
@media (min-width: 960px) {
  .c-media__left {
    width: 18%;
  }
}
.c-media__left img {
  max-width: 100%;
  width: 100%;
  height: 100px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .c-media__left img {
    max-width: 100%;
    height: 100%;
  }
}
.c-media__img-name {
  font-size: 24px;
  text-align: center;
}
.c-media__contents-features {
  width: 100%;
}
@media (min-width: 560px) {
  .c-media__contents-features {
    width: 67%;
  }
}
@media (min-width: 960px) {
  .c-media__contents-features {
    width: 67%;
  }
}
.c-media__contents-text {
  font-size: 16px;
  line-height: 1.25;
}
@media (min-width: 560px) {
  .c-media__contents-text {
    font-size: 24px;
  }
}
.c-media__list-features {
  margin: 40px 0;
  gap: 40px;
}
.c-media__item-features, .c-media__item-features-rev {
  margin-bottom: 35px;
  gap: 35px;
}
.c-media__item-features:last-child {
  margin-bottom: 0;
}
.c-media__left-features {
  width: 135px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .c-media__left-features {
    width: 20%;
  }
}
.c-media__right-features {
  width: 100%;
  background: linear-gradient(145deg, rgba(227, 246, 255, 0.6), rgba(179, 221, 242, 0.4));
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px 20px 40px 20px;
}
@media (min-width: 560px) {
  .c-media__right-features {
    width: 75%;
  }
}
.c-media__title-features {
  text-align: center;
  font-family: Keifont;
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 24px;
}
@media (min-width: 560px) {
  .c-media__title-features {
    margin-bottom: 16px;
  }
}
@media (min-width: 960px) {
  .c-media__title-features {
    font-size: 36px;
  }
}
.c-media__text-features {
  font-size: 18px;
  line-height: 1.3333333333; /* 133.333% */
}
@media (min-width: 960px) {
  .c-media__text-features {
    font-size: 24px;
  }
}

.c-title {
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 560px) {
  .c-title {
    font-size: 30px;
  }
}
@media (min-width: 960px) {
  .c-title {
    font-size: 40px;
  }
}

.c-card__list, .c-card__list-skill {
  gap: 30px;
  margin: 60px 0 0 0;
}
@media (min-width: 560px) {
  .c-card__list, .c-card__list-skill {
    gap: 40px;
  }
}
.c-card__item, .c-card__item-skill {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.c-card__item-skill {
  padding: 30px 10px 60px 10px;
  background: linear-gradient(to bottom, #f5e1c0, #d8bfa3);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (min-width: 560px) {
  .c-card__item-skill {
    width: 43%;
    padding: 30px 24px;
  }
}
@media (min-width: 960px) {
  .c-card__item-skill {
    padding: 5rem 4rem;
  }
}
.c-card__title-skill {
  font-size: 24px;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 960px) {
  .c-card__title-skill {
    font-size: 3rem;
    line-height: 1.7;
  }
}
.c-card__icon {
  margin: 20px auto;
  gap: 25px;
}
@media (min-width: 960px) {
  .c-card__icon {
    margin: 3rem auto;
  }
}
.c-card__icon img {
  width: 62px;
}
@media (min-width: 960px) {
  .c-card__icon img {
    width: 10rem;
  }
}
.c-card__text-skill {
  font-size: 18px;
  line-height: 1.3333333333;
}
@media (min-width: 960px) {
  .c-card__text-skill {
    font-size: 2.4rem;
  }
}

.c-list__flow {
  margin: 30px 0 0 0;
  max-width: 1160px;
}
@media (min-width: 560px) {
  .c-list__flow {
    margin: 44px 0 0 0;
  }
}
@media (min-width: 960px) {
  .c-list__flow {
    margin: 50px 0 0 0;
  }
}
.c-list__item-flow {
  width: 100%;
  border-radius: 20px;
  background: #fff;
  flex-shrink: 0;
  padding: 7px 22px;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 560px) {
  .c-list__item-flow {
    padding: 19px 22px;
    width: 80%;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.7;
  }
}
@media (min-width: 960px) {
  .c-list__item-flow {
    font-size: 35px;
  }
}
.c-list__no {
  margin-right: 10px;
}

.c-arrow {
  line-height: 1;
  position: relative;
  background: #996644;
  margin: 10px 0 10px;
}
@media (min-width: 560px) {
  .c-arrow {
    margin: 20px 0 20px;
  }
}
.c-arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 4px solid #996644;
  position: absolute;
  box-sizing: border-box;
}
@media (min-width: 560px) {
  .c-arrow::before {
    width: 20px;
    height: 20px;
    border: 6px solid #996644;
  }
}

.c-arrow.-bottom {
  width: 4px;
  height: 20px;
  left: 50%;
}
@media (min-width: 560px) {
  .c-arrow.-bottom {
    width: 8px;
    height: 30px;
  }
}

.c-arrow.-bottom::before {
  border-right: 0;
  border-top: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  bottom: -7%;
  left: 50%;
}
@media (min-width: 560px) {
  .c-arrow.-bottom::before {
    bottom: -10%;
  }
}

.c-slide__img {
  flex-shrink: 0;
  width: 100px; /* 画像のサイズを調整 */
  overflow: hidden;
}
@media (min-width: 560px) {
  .c-slide__img {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 960px) {
  .c-slide__img {
    width: 35rem;
  }
}
.c-slide__contents {
  flex: 1;
}
@media (min-width: 960px) {
  .c-slide__contents {
    margin-left: 50px;
  }
}
.c-slide__name {
  font-size: 16px;
}
@media (min-width: 560px) {
  .c-slide__name {
    font-size: 18px;
  }
}
@media (min-width: 960px) {
  .c-slide__name {
    font-size: 2.4rem;
  }
}
.c-slide__title {
  font-size: 18px;
  line-height: 1.7;
}
@media (min-width: 560px) {
  .c-slide__title {
    font-size: 20px;
  }
}
@media (min-width: 960px) {
  .c-slide__title {
    font-size: 3rem;
  }
}
.c-slide__cat {
  gap: 10px;
  margin-top: 8px;
}
.c-slide__cat-list {
  font-size: 10px;
  font-family: serif;
  display: flex;
  border: 1px solid #2c3e50;
  padding: 3px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #fff;
}
@media (min-width: 960px) {
  .c-slide__cat-list {
    font-size: 1.4rem;
    padding: 0.5rem;
  }
}

.c-ac {
  background: rgba(255, 255, 255, 0.75);
  max-width: 375px;
  margin: 0 auto 30px auto;
}
@media (min-width: 560px) {
  .c-ac {
    max-width: none;
    width: 80%;
    margin: 0 auto 48px auto;
  }
}
@media (min-width: 960px) {
  .c-ac {
    margin: 0 auto 8rem auto;
  }
}
.c-ac:first-of-type {
  margin-top: 30px;
}
@media (min-width: 560px) {
  .c-ac:first-of-type {
    margin-top: 70px;
  }
}
@media (min-width: 960px) {
  .c-ac:first-of-type {
    margin-top: 7rem;
  }
}
.c-ac__title {
  cursor: pointer;
  position: relative;
}
.c-ac__title-text {
  width: 260px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  padding: 10px 30px;
  white-space: normal; /* 折り返しを許可 */
  word-break: break-word; /* 長い単語でも折り返し */
  transition: background-color 0.3s;
}
@media (min-width: 560px) {
  .c-ac__title-text {
    width: 600px;
    font-size: 20px;
    padding: 20px 40px;
  }
}
@media (min-width: 960px) {
  .c-ac__title-text {
    font-size: 2.4rem;
    padding: 2rem 4rem;
    width: 60%;
  }
}
.c-ac__title-text::before {
  content: "Q: ";
  position: absolute;
  left: 0;
  top: 15%;
}
@media (min-width: 560px) {
  .c-ac__title-text::before {
    top: 30%;
    font-size: 20px;
  }
}
@media (min-width: 960px) {
  .c-ac__title-text::before {
    font-size: 2.4rem;
    top: 25%;
  }
}
.c-ac__icon {
  width: 30px;
  height: 30px;
  padding-top: 5px;
}
.c-ac__icon::before {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  right: 5%;
  transform: rotate(90deg);
  background-color: #5c3a21;
  transition: 0.3s ease;
}
@media (min-width: 560px) {
  .c-ac__icon::before {
    width: 3px;
    height: 30px;
  }
}
.c-ac__icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 20px;
  right: 5%;
  background-color: #5c3a21;
  transition: 0.8s ease;
}
@media (min-width: 560px) {
  .c-ac__icon::after {
    width: 3px;
    height: 30px;
  }
}
.c-ac__title-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.c-ac__text {
  overflow: hidden;
  max-height: 0;
  border-top: 1px solid #996644;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  position: relative;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 560px) {
  .c-ac__text {
    font-size: 20px;
    padding: 0 40px;
  }
}
@media (min-width: 960px) {
  .c-ac__text {
    font-size: 2.4rem;
    padding: 0 4rem;
  }
}
.c-ac__text::before {
  content: "A: ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 560px) {
  .c-ac__text::before {
    font-size: 20px;
  }
}
@media (min-width: 960px) {
  .c-ac__text::before {
    font-size: 2.4rem;
  }
}

.js-ac.active .c-ac__icon::after {
  transform: rotate(90deg);
}

.js-ac.active .c-ac__icon::before {
  transform: rotate(-90deg);
  height: 0;
  opacity: 0;
}

/* 開いたときだけ表示 */
.js-ac.active .c-ac__text {
  max-height: 1000px;
  padding: 10px 30px;
}
@media (min-width: 560px) {
  .js-ac.active .c-ac__text {
    padding: 20px 40px;
  }
}
@media (min-width: 960px) {
  .js-ac.active .c-ac__text {
    padding: 2rem 4rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-map {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .c-map {
    width: 100%;
    height: 400px;
  }
}
@media (min-width: 960px) {
  .c-map {
    width: 100%;
    height: 30rem;
  }
}

.c-link {
  color: blue;
  text-decoration: underline;
}

.u-flex, .u-flex__start, .u-flex__column-center, .u-flex__column-reverse, .u-flex__row-column, .u-flex__row-start, .u-flex__column-wrap, .u-flex__column-rowBetween, .u-flex__column-row, .u-flex__column-row-rev, .u-flex__column-between, .u-flex__center, .u-flex__between-center, .u-flex__start-wrap {
  display: flex;
}
.u-flex__column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.u-flex__start-wrap {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.u-flex__between-center {
  justify-content: space-between;
  align-items: center;
}
.u-flex__center {
  justify-content: center;
  align-items: center;
}
.u-flex__column-between {
  flex-direction: column;
  align-items: center;
}
@media (min-width: 560px) {
  .u-flex__column-between {
    flex-direction: row;
    align-items: center;
  }
}
.u-flex__column-row, .u-flex__column-row-rev {
  flex-direction: column;
  align-items: center;
}
@media (min-width: 560px) {
  .u-flex__column-row, .u-flex__column-row-rev {
    flex-direction: row;
  }
}
@media (min-width: 560px) {
  .u-flex__column-row-rev {
    flex-direction: row-reverse;
  }
}
.u-flex__column-rowBetween {
  flex-direction: column;
  align-items: center;
}
@media (min-width: 560px) {
  .u-flex__column-rowBetween {
    flex-direction: row;
    justify-content: space-between;
  }
}
.u-flex__column-wrap {
  flex-direction: column;
  align-items: center;
}
@media (min-width: 560px) {
  .u-flex__column-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.u-flex__row-start {
  justify-content: flex-start;
  align-items: first baseline;
}
.u-flex__row-column {
  flex-direction: row;
}
@media (min-width: 560px) {
  .u-flex__row-column {
    flex-direction: column;
  }
}
.u-flex__column-reverse {
  flex-direction: column;
}
@media (min-width: 560px) {
  .u-flex__column-reverse {
    flex-direction: column;
  }
}
@media (min-width: 960px) {
  .u-flex__column-reverse {
    flex-direction: row-reverse;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.u-flex__column-center {
  flex-direction: column;
  align-items: center;
}
@media (min-width: 560px) {
  .u-flex__column-center {
    flex-direction: row;
    align-items: start;
  }
}
@media (min-width: 960px) {
  .u-flex__column-center {
    flex-direction: column;
    align-items: center;
  }
}
.u-flex__start {
  justify-content: flex-start;
}