@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --base-col: #FFF;
  --primary-col: #4E7192;
  --black-col: #000000;
  --gray-col: #878788;
  --light-gray-col: #B4B4B4;
  --blown-col: #C5C5BF;
  --light-blown-col: #DDDDD9;
  --font-size: 15px;
  --red-col: #CC392B;
  --cream-col: #efe6de;
  --blue-col: #78e4ef;
  --txt-col: #40210f;
  --note-col: #f3ebe3;
  --inner: 1920px;
  --inner-pad: 80px;
  --font-primary: "Gothic A1", sans-serif;
}

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

html,
body {
  font-family: var(--font-primary);
  color: var(--txt-col);
  font-weight: 500;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

.contents__inner {
  width: 100%;
  max-width: var(--inner);
  margin-inline: auto;
  padding-inline: var(--inner-pad);
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

fieldset {
  border: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red-col);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  box-sizing: border-box;
  padding: 0 80px;
}

@media screen and (max-width: 767px) {
  .header__inner {
    min-height: 64px;
    padding: 0 20px;
  }
}
.header__logo {
  width: clamp(140px, 18.75vw, 360px);
  flex-shrink: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.5vw, 28px);
}

.header__nav-link {
  color: #fff;
  font-size: clamp(13px, 1.5vw, 28px);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ハンバーガー（SPのみ） */
.header__open {
  display: none;
  width: 32px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.header-icon__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all 0.3s;
}

.header-icon__bar:nth-of-type(1) {
  top: 0;
}

.header-icon__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header-icon__bar:nth-of-type(3) {
  bottom: 0;
}

.drawer-icon.is-open .header-icon__bar:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.drawer-icon.is-open .header-icon__bar:nth-of-type(2) {
  opacity: 0;
}

.drawer-icon.is-open .header-icon__bar:nth-of-type(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .header__open {
    display: block;
  }
  .header__nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--red-col);
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }
  .header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 24px;
  }
  .header__nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
  }
}
.mv {
  overflow: hidden;
}

.mv__inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.mv__visual {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  margin-top: -75px;
  justify-content: center;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .mv__visual {
    margin-top: -30px;
  }
}
.mv__chara-sub {
  width: 180px;
  margin-top: 200px;
}

.mv__chara-main {
  width: 525px;
}

.mv__badge {
  width: 480px;
}

.mv__badge img {
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .mv__visual {
    gap: 0;
  }
  .mv__catch {
    padding: 0;
  }
  .mv__chara-sub {
    width: 140px;
    margin-top: 0;
  }
  .mv__chara-main {
    width: 360px;
  }
  .mv__badge {
    width: 380px;
  }
  .mv__needle {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 0;
  }
  .mv__catch {
    font-size: clamp(15px, 4.5vw, 20px);
    padding: 0;
    white-space: normal;
    text-align: center;
  }
  .mv__catch::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .mv__visual {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
    margin-top: 16px;
  }
  .mv__badge {
    order: 1;
    flex-basis: 100%;
    width: auto;
    margin: 0 0 16px;
    text-align: center;
  }
  .mv__badge img {
    width: 58%;
  }
  .mv__chara-sub {
    order: 2;
    width: 30%;
    margin-top: 0;
  }
  .mv__chara-main {
    order: 3;
    width: 56%;
  }
  .mv__needle {
    width: 90px;
    top: 14px;
    left: 14px;
  }
}
.cta {
  background: var(--cream-col);
  padding: 32px 0;
}

@media screen and (max-width: 767px) {
  .cta {
    --inner-pad: 20px;
  }
}
.cta__inner {
  display: flex;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .cta__inner {
    flex-direction: column;
    gap: 16px;
  }
}
.cta__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 50px 70px;
  background: #fff;
  border: 4px solid var(--txt-col);
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .cta__item {
    padding: 20px 30px;
  }
}
.cta__item-title {
  display: block;
  font-size: clamp(16px, 2.9vw, 56.6px);
  font-weight: 500;
  line-height: 1.4;
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .cta__item-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cta__item-title {
    font-size: 16px;
  }
}
.cta__item-sub {
  display: block;
  margin-top: 4px;
  color: var(--red-col);
  font-size: clamp(20px, 2.9vw, 56.6px);
  font-weight: 900;
  line-height: 1.4;
  font-feature-settings: "palt";
}

.cta__item-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  background: var(--red-col);
  border-radius: 50%;
}

.cta__item-arrow img {
  width: 40px;
}

@media screen and (max-width: 767px) {
  .cta__item-arrow {
    width: 45px;
    height: 45px;
  }
  .cta__item-arrow img {
    width: 20px;
  }
}
.consult {
  background: var(--cream-col);
  padding: 56px 0 64px;
}

@media screen and (max-width: 767px) {
  .consult {
    --inner-pad: 20px;
  }
}
.consult__inner {
  max-width: 1600px;
  margin: 0 auto;
}

.consult__title {
  color: var(--red-col);
  text-align: center;
  font-size: clamp(24px, 4.6vw, 88px);
  line-height: 1.4;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .consult__title {
    margin-bottom: 28px;
  }
}
.consult__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70;
}

.consult__body-img {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.consult__body-img img {
  width: 100%;
  height: auto;
}

.consult__chara {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .consult__chara {
    width: 150px;
    order: -1;
    margin-inline: auto;
  }
}
.consult__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult__item {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  color: var(--txt-col);
  font-size: 40px;
  line-height: 1.5;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  width: 480px;
  margin-inline: auto;
  max-width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .consult__item {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .consult__item {
    font-size: 18px;
    padding: 16px;
  }
}
.consult__item span {
  color: var(--red-col);
}

.intro {
  background: var(--cream-col);
  padding: 16px 0 72px;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .intro {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .intro {
    --inner-pad: 20px;
  }
}
.intro__inner {
  max-width: 1760px;
  margin: 0 auto;
}

.intro__lead {
  font-size: 72px;
  line-height: 1.4;
  font-weight: 900;
  text-align: left;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .intro__lead {
    font-size: 28px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .intro__lead {
    font-size: 19px;
    text-align: center;
  }
}
.intro__lead-red {
  color: var(--red-col);
}

/* マーカー（水色のハイライト） */
.intro__marker {
  background-color: #78e4ef;
  padding: 0 4px;
  font-style: normal;
  color: inherit;
}

.intro__movie {
  width: 100%;
  height: auto;
  margin: 36px auto 28px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 767px) {
  .intro__movie {
    margin: 24px auto 20px;
  }
}
.intro__movie iframe {
  width: 100%;
  height: 100%;
}

.intro__text {
  font-size: clamp(16px, 2.1vw, 40px);
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .intro__text {
    font-size: 14px;
    text-align: left;
  }
}
.scene {
  background: var(--red-col);
  color: #fff;
  padding: 160px 0 160px;
}

@media screen and (max-width: 767px) {
  .scene {
    --inner-pad: 20px;
    padding: 60px 0 60px;
  }
}
.scene__title {
  text-align: center;
  font-size: clamp(24px, 4.6vw, 88px);
  line-height: 1.4;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .scene__title {
    font-size: 30px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .scene__title {
    margin-bottom: 28px;
  }
}
.scene__inner {
  margin: 0 auto;
}

.scene__body {
  display: flex;
  justify-content: center;
}

.scene__body-img {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.scene__body-img img {
  width: 100%;
  height: auto;
}

.scene__chara {
  width: clamp(280px, 52vw, 1000px);
  justify-self: center;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .scene__chara {
    order: -1;
    width: 280px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .scene__chara {
    order: -1;
    width: 200px;
    margin-inline: auto;
  }
}
.scene__notes {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .scene__notes {
    align-items: center;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .scene__notes {
    align-items: center;
    gap: 16px;
  }
}
.scene__notes--left {
  align-items: flex-end;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .scene__notes--left {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .scene__notes--left {
    align-items: center;
  }
}
.scene__notes--right {
  align-items: flex-start;
  gap: 56px;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .scene__notes--right {
    align-items: center;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .scene__notes--right {
    align-items: center;
    gap: 16px;
  }
}
.scene__note {
  position: relative;
  max-width: 330px;
  width: 100%;
  min-height: clamp(120px, 9vw, 180px);
  background: var(--note-col);
  color: var(--txt-col);
  padding: clamp(14px, 1.5vw, 20px) 16px;
  text-align: center;
  font-size: clamp(15px, 2.1vw, 40px);
  line-height: 1.5;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scene__note span {
  font-size: clamp(12px, 1.3vw, 24px);
  font-weight: 500;
}

.scene__note::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--blue-col);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .scene__note {
    width: 100%;
    max-width: 480px;
    padding: 16px 12px;
    font-size: 16px;
    transform: none !important;
  }
}
@media screen and (max-width: 767px) {
  .scene__note {
    width: 100%;
    max-width: 480px;
    padding: 14px 10px;
    font-size: 14px;
    transform: none !important;
  }
}
/* PCのみ：付箋を散らす */
.scene__notes--left .scene__note:nth-child(1) {
  transform: translateX(8px) rotate(-2deg);
}

.scene__notes--left .scene__note:nth-child(2) {
  transform: translateX(130px) rotate(1.5deg);
}

.scene__notes--left .scene__note:nth-child(3) {
  transform: translateX(15px) rotate(-1.5deg);
}

.scene__notes--right .scene__note:nth-child(1) {
  transform: translateX(-33px) rotate(2deg);
}

.scene__notes--right .scene__note:nth-child(2) {
  transform: translateX(-155px) rotate(-1.5deg);
}

/* 吹き出し */
.scene__balloon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 44px;
}

@media screen and (max-width: 767px) {
  .scene__balloon {
    flex-direction: column;
    gap: 8px;
  }
}
.scene__balloon-text {
  position: relative;
  background: #fff;
  color: var(--txt-col);
  border-radius: 16px;
  padding: 16px 24px;
  font-size: clamp(15px, 1.5vw, 28px);
  font-weight: 700;
}

.scene__balloon-text::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #fff;
}

@media screen and (max-width: 767px) {
  .scene__balloon-text::after {
    right: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(50%);
    border-left-color: transparent;
    border-top-color: #fff;
  }
}
.scene__balloon-chara {
  width: 170px;
  flex-shrink: 0;
}

.scene__flow {
  text-align: center;
  margin-top: 32px;
  font-size: clamp(14px, 2.1vw, 40px);
  font-weight: 700;
}

.works {
  background: var(--red-col);
  color: #fff;
  padding: 140px 0 64px;
}

@media screen and (max-width: 767px) {
  .works {
    --inner-pad: 20px;
    padding: 60px 0 60px;
  }
}
.works__inner {
  max-width: 1960px;
  margin: 0 auto;
}

.works__title {
  text-align: center;
  font-size: clamp(24px, 4.6vw, 88px);
  line-height: 1.4;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .works__title {
    margin-bottom: 28px;
  }
}
.works__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.works__item {
  display: flex;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .works__item {
    flex-direction: column;
    gap: 16px;
  }
}
.works__img {
  width: 60%;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .works__img {
    width: 100%;
  }
}
.works__body {
  flex: 1;
}

.works__name {
  font-size: clamp(19px, 3.9vw, 56px);
  margin-bottom: 14px;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
  font-feature-settings: "palt";
}

.works__spec {
  font-size: clamp(15px, 1.9vw, 36px);
  line-height: 1.6;
  margin-bottom: 20px;
  font-feature-settings: "palt";
}

.works__spec-row {
  display: flex;
}

.works__spec-row dt {
  flex-shrink: 0;
}

.works__spec-row dt::after {
  content: "：";
}

.works__spec-row dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.works__text {
  font-size: clamp(14px, 1.7vw, 32px);
  line-height: 1.8;
  font-feature-settings: "palt";
}

.works__more {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 2px solid #fff;
}

.works__more-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .works__more-head {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .works__more-head {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.works__more-badge img {
  width: 300px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .works__more-badge img {
    width: 150px;
  }
}
.works__more-text {
  font-size: clamp(14px, 2.1vw, 40px);
  line-height: 1.9;
  padding-top: 8px;
  font-feature-settings: "palt";
}

.works__more-imgs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .works__more-imgs {
    flex-direction: column;
    gap: 20px;
  }
}
.works__more-fig {
  width: 37.5%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .works__more-fig {
    width: 100%;
  }
}
.works__more-illust {
  padding: 12px;
}

.works__more-label {
  position: relative;
  display: inline-block;
  padding: 10px 34px;
  background: #fff;
  color: var(--txt-col);
  font-size: clamp(18px, 2.5vw, 48px);
  line-height: 1.4;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%, 14px 50%);
}

.works__more-photo {
  width: 56.8%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .works__more-photo {
    width: 100%;
  }
}
.flow {
  background: var(--cream-col);
  padding: 160px 0 90px;
}

@media screen and (max-width: 767px) {
  .flow {
    --inner-pad: 20px;
    padding: 60px 0 60px;
  }
}
.flow__title {
  text-align: center;
  font-size: clamp(24px, 4.6vw, 88px);
  line-height: 1.4;
  color: var(--red-col);
  margin-bottom: 44px;
}

@media screen and (max-width: 767px) {
  .flow__title {
    margin-bottom: 28px;
  }
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .flow__list {
    gap: 20px;
  }
}
.flow__item {
  position: relative;
  padding-left: 120px;
}

@media screen and (max-width: 767px) {
  .flow__item {
    padding-left: 60px;
  }
}
/* ステップ円 */
.flow__step {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 9.4vw, 180px);
  height: clamp(64px, 9.4vw, 180px);
  background: #40210f;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
}

.flow__step-en {
  font-size: clamp(11px, 1.9vw, 36px);
  letter-spacing: 0.08em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .flow__step-en {
    font-size: 11px;
  }
}
.flow__step-num {
  font-size: clamp(20px, 3.5vw, 68px);
  line-height: 1;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .flow__step-num {
    font-size: 20px;
  }
}
/* 白ボックス */
.flow__box {
  flex: 1;
  background: #fff;
  border-radius: 30px;
  padding: 50px 28px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  padding-left: 102px;
}

@media screen and (max-width: 767px) {
  .flow__box {
    padding: 16px 18px;
  }
}
.flow__box-title {
  font-size: clamp(16px, 2.5vw, 48px);
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .flow__box-title {
    font-size: 16px;
  }
}
.flow__box-text {
  font-size: clamp(14px, 1.7vw, 32px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -1px;
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .flow__box-text {
    font-size: 14px;
  }
}
.flow__chara {
  position: absolute;
  left: -280px;
  top: 50%;
  transform: translateY(-50%);
  width: 330px;
}

.type {
  background: var(--cream-col);
  padding: 0 0 140px;
}

@media screen and (max-width: 767px) {
  .type {
    --inner-pad: 20px;
    padding: 0 0 60px;
  }
}
.type__inner {
  max-width: 1760px;
  margin: 0 auto;
}

/* 見出し＋吹き出し */
.type__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .type__head {
    flex-direction: column;
    gap: 12px;
  }
}
.type__title {
  padding-top: 50px;
  position: relative;
  padding-right: 50px;
}

.type__title h2 {
  color: var(--red-col);
  font-size: clamp(19px, 2.9vw, 56px);
  position: relative;
  z-index: 2;
}

.type__title-check {
  color: var(--blue-col);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 30px;
}

.type__title-check img {
  width: 80px;
}

@media screen and (max-width: 767px) {
  .type__title-check img {
    width: 40px;
  }
}
.type__head-balloon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.type__head-text {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: clamp(14px, 1.5vw, 28px);
}

.type__head-text::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: #fff;
}

.type__head-chara {
  width: 800px;
  max-width: 100%;
}

.type__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  margin-top: -60px;
}

@media screen and (max-width: 767px) {
  .type__list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -30px;
  }
}
.type__card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}

.type__card-title {
  background: var(--blue-col);
  color: #40210f;
  font-weight: 900;
  text-align: center;
  font-size: clamp(15px, 1.9vw, 37px);
  padding: 6px;
}

.type__card-body {
  display: flex;
  gap: 16px;
  padding: 30px 40px;
}

@media screen and (max-width: 767px) {
  .type__card-body {
    gap: 12px;
    padding: 20px;
  }
}
.type__card-text {
  flex: 1;
  font-size: clamp(14px, 1.5vw, 28px);
  font-weight: 500;
  line-height: 1.4;
}

.type__card-note {
  margin-top: 8px;
  font-size: clamp(12px, 1.4vw, 26px);
  font-weight: 400;
}

.type__card-img {
  position: relative;
  width: 35%;
  flex-shrink: 0;
  align-self: center;
}

.type__card-check {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 30px;
}

.price {
  background: var(--cream-col);
  padding: 64px 0;
}

@media screen and (max-width: 767px) {
  .price {
    --inner-pad: 20px;
    padding: 30px 0;
  }
}
.price__inner {
  margin: 0 auto;
}

.price__block {
  max-width: 1600px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.price__heading {
  color: var(--red-col);
  font-size: clamp(18px, 2.9vw, 56px);
  margin-bottom: 12px;
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .price__heading {
    text-align: center;
  }
}
.price__lead {
  font-size: clamp(14px, 2.1vw, 40px);
  line-height: 1.9;
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .price__lead {
    text-align: center;
  }
}
/* CTAの上下に余白 */
.price .cta__inner {
  margin: 28px 0 40px;
}

.price__delivery {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .price__delivery {
    flex-direction: column;
    align-items: stretch;
  }
}
.price__text {
  font-size: clamp(14px, 2.1vw, 40px);
}

@media screen and (max-width: 767px) {
  .price__text {
    text-align: center;
  }
}
.price__chara {
  position: relative;
  flex-shrink: 0;
  width: 220px;
}

.price__chara img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .price__chara {
    align-self: flex-end;
    width: 150px;
  }
}
.price__chara-balloon {
  position: absolute;
  top: 20px;
  right: calc(100% - 33px);
  margin: 0;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: clamp(14px, 1.5vw, 28px);
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.price__chara-balloon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}

.faq {
  background: var(--red-col);
  padding: 56px 0 64px;
}

@media screen and (max-width: 767px) {
  .faq {
    --inner-pad: 20px;
    padding: 30px 0 60px;
  }
}
.faq__inner {
  max-width: 1920px;
  margin: 0 auto;
}

.faq__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.faq__title {
  color: #fff;
  text-align: center;
  font-size: clamp(24px, 4.6vw, 88px);
  line-height: 1.4;
}

.faq__chara {
  width: clamp(145px, 16.4vw, 315px);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* 質問行（ボタン） */
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .faq__q {
    padding: 16px;
    gap: 10px;
  }
}
.faq__q-text {
  flex: 1;
  font-size: clamp(14px, 2.5vw, 48px);
}

/* Q / A アイコン */
.faq__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(32px, 4.7vw, 91px);
  height: clamp(32px, 4.7vw, 91px);
  border-radius: 50%;
  color: #fff;
  font-size: clamp(15px, 1.9vw, 36px);
}

.faq__icon--q {
  background: #40210f;
}

.faq__icon--a {
  background: var(--blue-col);
}

/* 矢印（円＋シェブロン） */
.faq__arrow {
  flex-shrink: 0;
  position: relative;
  width: clamp(32px, 4.7vw, 91px);
  height: clamp(32px, 4.7vw, 91px);
  border: 2px solid #40210f;
  border-radius: 50%;
}

.faq__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56%;
  height: 30%;
  background-image: url(../img/faq-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

/* 回答（初期は閉じる） */
.faq__a {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px 22px;
}

@media screen and (max-width: 767px) {
  .faq__a {
    padding: 0 16px 18px;
    gap: 10px;
  }
}
.faq__a-text {
  font-size: clamp(14px, 1.7vw, 32px);
  line-height: 1.8;
  padding-top: 6px;
}

/* 開いた状態 */
.faq__item.is-open .faq__a {
  display: flex;
}

.faq__item.is-open .faq__arrow::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.message {
  background: var(--cream-col);
  padding: 64px 0;
}

@media screen and (max-width: 767px) {
  .message {
    --inner-pad: 20px;
    padding: 30px 0 60px;
  }
}
.message__inner {
  margin: 0 auto;
}

.message__title {
  color: var(--red-col);
  font-size: clamp(23px, 3.75vw, 72px);
  max-width: 1630px;
  margin: 0 auto;
  margin-bottom: 36px;
}

.message__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1630px;
  margin: 0 auto;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .message__body {
    flex-direction: column;
  }
}
.message__texts {
  font-size: clamp(14px, 1.9vw, 36px);
}

.message__texts p + p {
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  .message__texts {
    text-align: center;
  }
}
.message__chara {
  position: relative;
  flex-shrink: 0;
  width: clamp(180px, 14vw, 270px);
  text-align: center;
}

.message__chara img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .message__chara {
    width: 180px;
    padding-top: 36px;
  }
}
.message__chara-balloon {
  position: absolute;
  top: 60px;
  right: calc(100% - 33px);
  margin: 0;
  padding: 8px 16px;
  background: #fff;
  border-radius: 999px;
  font-size: clamp(14px, 1.5vw, 28px);
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.message__chara-balloon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}

@media screen and (max-width: 767px) {
  .message__chara-balloon {
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .message__chara-balloon::after {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left-color: transparent;
    border-top-color: #fff;
  }
}
/* お急ぎの場合（赤ボックス） */
.message__urgent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
  padding: 24px 32px;
  background: var(--red-col);
  border-radius: 30px;
  color: #fff;
  border: solid 4px #000000;
}

@media screen and (max-width: 767px) {
  .message__urgent {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px;
  }
}
.message__urgent-lead {
  flex-shrink: 0;
  font-size: clamp(17px, 3vw, 56px);
}

.message__urgent-label {
  font-size: clamp(18px, 2.1vw, 40px);
}

.message__urgent-num {
  font-size: clamp(22px, 2.1vw, 40px);
  line-height: 1.3;
}

.message__urgent-num a {
  color: #fff;
}

.message__urgent-num span {
  font-size: clamp(14px, 1.5vw, 28px);
  font-weight: 700;
  margin-left: 6px;
}

.message__urgent-note {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: clamp(13px, 1.4vw, 26px);
}

.contact-sec {
  background: var(--cream-col);
  padding: 56px 0 160px;
}

@media screen and (max-width: 767px) {
  .contact-sec {
    --inner-pad: 20px;
    padding: 30px 0 60px;
  }
}
.contact-sec__inner {
  max-width: 1600px;
  margin: 0 auto;
}

/* 見出し */
.contact-sec__head {
  position: relative;
  text-align: center;
  margin-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .contact-sec__head {
    margin-bottom: 30px;
  }
}
.contact-sec__chara {
  position: absolute;
  left: -90px;
  top: 240px;
  width: clamp(90px, 11.3vw, 217px);
}

@media screen and (max-width: 767px) {
  .contact-sec__chara {
    position: static;
    width: 90px;
    margin-bottom: 8px;
  }
}
.contact-sec__title {
  color: var(--red-col);
  text-align: center;
  font-size: clamp(24px, 4.6vw, 88px);
  line-height: 1.4;
  margin-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .contact-sec__title {
    margin-bottom: 30px;
  }
}
.contact-sec__lead {
  font-size: clamp(14px, 2.1vw, 40px);
  line-height: 1.9;
}

/* フォーム白カード */
.form__card {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .form__card {
    padding: 24px 18px;
  }
}
.form__group {
  margin-bottom: 40px;
}

.form__group-title {
  color: var(--red-col);
  font-size: clamp(20px, 2.1vw, 40px);
  margin-bottom: 16px;
}

.form__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
  .form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
}
.form__row--textarea {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .form__row--textarea {
    align-items: start;
  }
}
.form__label {
  flex-shrink: 0;
  width: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: clamp(15px, 1.5vw, 28px);
  color: var(--txt-col);
}

@media screen and (max-width: 767px) {
  .form__label {
    width: fit-content;
  }
}
.form__required {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(32px, 2.9vw, 56px);
  height: clamp(32px, 2.9vw, 56px);
  background: var(--red-col);
  border-radius: 50%;
  color: #fff;
  font-size: clamp(12px, 1vw, 20px);
  font-weight: 700;
  line-height: 1;
}

.form__field {
  flex: 1;
  width: 100%;
}

.form__field input,
.form__field textarea {
  width: 100%;
  background: #f1e3de;
  border: none;
  border-radius: 6px;
  padding: 14px 16px;
  font: inherit;
}

.form__field input:focus,
.form__field textarea:focus {
  outline: 2px solid var(--blue-col);
}

.form__field input,
.form__field textarea {
  width: 100%;
  background: #ece2dc;
  border: none;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: clamp(16px, 1.5vw, 28px);
}

.form__field input:focus,
.form__field textarea:focus {
  outline: 2px solid var(--blue-col);
}

.form__field textarea {
  min-height: 250px;
  resize: vertical;
}

.form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding-top: 4px;
}

@media screen and (max-width: 767px) {
  .form__checks {
    gap: 12px 20px;
  }
}
.form__check,
.form__privacy-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(15px, 1.5vw, 28px);
  font-weight: 700;
  color: var(--txt-col);
  cursor: pointer;
}

.form__check input,
.form__privacy-check input {
  width: clamp(20px, 1.7vw, 32px);
  height: clamp(20px, 1.7vw, 32px);
  accent-color: var(--red-col);
}

.form__privacy {
  position: relative;
  text-align: center;
  margin-top: 160px;
}

@media screen and (max-width: 767px) {
  .form__privacy {
    margin-top: 30px;
  }
}
.form__privacy-title {
  color: var(--txt-col);
  font-size: clamp(17px, 2.9vw, 56px);
  margin-bottom: 12px;
}

.form__privacy-text {
  font-size: clamp(14px, 2.1vw, 40px);
  margin-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .form__privacy-text {
    margin-bottom: 30px;
  }
}
.form__privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(14px, 2.1vw, 40px);
  font-weight: 700;
  cursor: pointer;
}

.form__privacy-check input {
  width: clamp(18px, 1.4vw, 26px);
  height: clamp(18px, 1.4vw, 26px);
  accent-color: var(--red-col);
}

.form__privacy-link {
  margin-top: 8px;
  font-size: clamp(14px, 1.5vw, 28px);
}

.form__privacy-link a {
  text-decoration: none;
}

/* 送信ボタン */
.form__submit {
  position: relative;
  text-align: center;
  margin-top: 110px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .form__submit {
    margin-top: 30px;
    flex-direction: column;
  }
}
.form__submit input[type=button],
.form__submit input[type=submit],
.form__submit button {
  width: 800px;
  min-width: 340px;
  padding: clamp(18px, 1.3vw, 24px);
  background: #40210f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: clamp(18px, 3.75vw, 72px);
  cursor: pointer;
  transition: opacity 0.2s;
}

.form__submit input[type=button]:hover,
.form__submit input[type=submit]:hover,
.form__submit button:hover {
  opacity: 0.85;
}

.form__submit input[type=button]:disabled,
.form__submit input[type=submit]:disabled,
.form__submit button:disabled {
  opacity: 0.3;
}

@media screen and (max-width: 767px) {
  .form__submit input[type=button],
  .form__submit input[type=submit],
  .form__submit button {
    min-width: 0;
    width: 100%;
  }
}
.form__submit-chara {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(150px, 10.4vw, 200px);
}

@media screen and (max-width: 767px) {
  .form__submit-chara {
    position: static;
    display: block;
    width: 150px;
    margin: 16px auto 0;
  }
}
.wpcf7-list-item {
  display: flex;
  align-items: center;
  grid-area: 10px;
}

.contact-sec__inner > .wpcf7 {
  margin-top: -100px;
  padding-top: 100px;
}

.screen-reader-response ul {
  display: none;
}

.screen-reader-response p:not(:empty) {
  text-align: center;
  padding: 80px 0 80px;
  font-size: 24px;
  background-color: #FFF;
  max-width: 1280px;
  margin: 0 auto 80px;
}

.contact-form-thanks {
  font-size: 30px;
  text-align: center;
}

.footer {
  background: var(--red-col);
}

.footer__inner {
  position: relative;
  text-align: center;
  padding: 40px 0;
}

.footer__top {
  background-color: #FFF;
  text-align: left;
}

.footer__top .footer__inner {
  text-align: left;
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer__top .footer__inner {
    padding: 40px 20px;
  }
}
.footer__top .footer__inner p {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .footer__top .footer__inner p {
    font-size: 11px;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-bottom: 28px;
}

.footer__nav-list a {
  color: #fff;
  font-size: clamp(14px, 1.5vw, 28px);
}

.footer__logo {
  width: clamp(160px, 10.4vw, 200px);
  margin: 0 auto;
}

/* TOPボタン（円） */
.footer__pagetop {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 5.7vw, 110px);
  height: clamp(72px, 5.7vw, 110px);
  background: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  color: #333;
  font-weight: 900;
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  .footer__pagetop {
    position: static;
    margin: 24px auto 0;
  }
}
.footer__pagetop-arrow {
  font-size: clamp(14px, 0.9vw, 18px);
}

.footer__pagetop-text {
  font-size: clamp(14px, 0.9vw, 18px);
  letter-spacing: 0.05em;
}