/* reset.css */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
    font-family: 'Shippori Mincho', serif;
}


/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
    list-style: none;
}

/* For images to not exceed container width */
img {
    max-width: 100%;
}

/* Remove spacing between table cells */
table {
    border-collapse: collapse;
}

/* Safari fix for user-select */
input, textarea {
    -webkit-user-select: auto;
}

/* Safari textarea fix */
textarea {
    white-space: revert;
}

/* Minimal meter styling */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* Reset placeholder opacity */
::placeholder {
    color: unset;
}

/* Hidden attribute fix */
:where([hidden]) {
    display: none;
}

/* Contenteditable fixes */
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* Draggable feature */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* ===== base typography reset override ===== */

html {
    font-size: 16px;
}

body {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

/* 既存の要素指定CSSを無効化 */
body,
body * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
	font-family: 'Shippori Mincho', serif;
}

/* 本体 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600;700&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

/* 調整 */
.Gnav_Container li a, .Main_Header_Contact a, .Bread li, .FooterNav a {
    font-size: 1rem;
	font-family: 'Shippori Mincho', serif;
}
.FooterNav a {
    font-size: 0.9rem;
}
.Bread {
    background: #f0f0f0;
    padding: 25px 0 30px 20px;
}

/* ============================================================
   animetion
   ============================================================ */
.fadeHeader {
    animation: fadeHeader 1s ease 0s 1 normal;
}
@keyframes fadeHeader {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
  }
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* common */
br.sp_br {
    display: none;
}

/* ============================================================
   mv
   ============================================================ */

.mv {
  position: relative;
  background-color: #012746;
  overflow: hidden;
  padding: 3rem 1.25rem 2.5rem;
}
section.mv:after {
    content: "";
    width: 100%;
    height: 250px;
    background: url(https://coachcontribution.com/app/wp-content/themes/coachc2018/assets/img/svg/waves.svg) no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: cover;
    pointer-events: none;
}

.mv__bg {
  position: absolute;
  inset: 0;
}

.mv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(1,39,70,0.65) 0%, rgba(2,96,172,0.45) 100%);
}

.mv__inner {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mv__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #fff;
}

.mv__catch {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.mv__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.mv__desc {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  line-height: 1.9;
}

.mv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 24px 12px;
  background-color: #cc9e4b;
  border-radius: 60px;
  width: 200px;
  box-shadow: 0 0 20px rgba(204,158,75,0.2);
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
a.mv__btn:hover {
    background-color: #a67928;
}

.mv__btn-icon {
  font-size: 1rem;
  color: #fff;
}

.mv__btn-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.5;
  white-space: nowrap;
}

.mv__mock {
  position: relative;
  display: flex;
  justify-content: center;
}

.mv__mock-pc img {
  width: 100%;
  max-width: 480px;
  display: block;
}

.mv__mock-sp {
  position: absolute;
  left: 0;
  bottom: 0;
}

.mv__mock-sp img {
  width: 90px;
  display: block;
}

/* ============================================================
   problem
   ============================================================ */

.problem {
  background-color: #f0f0f0;
  padding: 2.5rem 1.25rem 3.75rem;
}

.problem__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.problem__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  text-align: center;
}

.problem__heading-sub {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.045em;
  color: #4d4d4d;
}

.problem__heading-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

.problem__heading-en {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #cc9e4b;
  line-height: 1.4;
}

.problem__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.problem__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  border-top: 3px solid #FFF;
}

.problem__tab--active {
  background-color: #002542;
  border-top: 3px solid #cc9e4b;
}

.problem__tab-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 70px;
  background-color: #f9f9f9;
  width: 140px;
  transition: 0.3s;
}

.problem__tab--active .problem__tab-badge {
  background-color: #fff;
}
.problem__tab:hover .problem__tab-badge span {
    color: #002542;
}

.problem__tab-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #999;
  text-align: center;
  white-space: nowrap;
  line-height: 1.4;
  transition: 0.3s;
}

.problem__tab--active .problem__tab-label {
  color: #002542;
}

.problem__tab-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #999;
  line-height: 1.6;
  text-align: center;
}

.problem__tab--active .problem__tab-text {
  color: #fff;
}

.problem__tab-arrow {
  display: none;
}

.problem__panel {
  display: none;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

.problem__panel--active {
  display: flex;
}

.problem__panel-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.problem__panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.problem__panel-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
}

.problem__panel-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: -18px;
}

.problem__panel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px 6px;
    border-radius: 9999px;
    background-color: #002542;
    width: fit-content;
}

.problem__panel-badge-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
  line-height: 1.4;
}

.problem__panel-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #002542;
  line-height: 1.6;
}

.problem__panel-desc {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #000;
  line-height: 1.8;
}

.problem__summary {
  background-color: #fff;
  border-radius: 5px;
  padding: 1.25rem 0.625rem 1.625rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.problem__summary-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #002542;
  line-height: 1.7;
  text-align: center;
}

/* ============================================================
   about
   ============================================================ */

.about {
  background-color: #fbfcff;
  padding: 5rem 0;
  position: relative;
}
section.about:after {
    content: "";
    width: 100%;
    height: 900px;
    background: url(https://coachcontribution.com/app/wp-content/uploads/2026/03/bacluod.png) no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    object-fit: cover;
    background-position-x: right;
}

.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  position: relative;
  z-index: 1;
}

.about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  text-align: center;
}

.about__heading-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

.about__heading-en {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #cc9e4b;
  line-height: 1.4;
}

.about__vis {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about__vis-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__vis-kicker, .about__vis-lead {
    font-size: 2.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #002542;
    line-height: 1.3;
}

.about__vis-lead {
    margin-top: -8px;
}

.about__vis-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1.8;
}

.about__vis-mock img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 40px;
}

.about__features-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #002542;
  text-align: center;
  line-height: 1.5;
}

.about__feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__feature-item {
  background-color: #fff;
  border-radius: 5px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  border: solid 1px #eee;
}

.about__feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about__feature-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #002542;
  line-height: 1.4;
}

.about__feature-text {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #444;
  line-height: 1.8;
}


.about__vis-mock {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  overflow: hidden;
  height: 600px;
  position: relative;
}
.about__vis-mock:before {
    content: "";
    width: 95%;
    height: 1px;
    background: #707070;
    position: absolute;
    bottom: 0;
    z-index: 2;
}
.about__vis-mock:after {
    content: "";
    width: 100%;
    height: 400px;
    position: absolute;
    bottom: 0px;
    border: solid 1px #707070;
    border-radius: 5px;
	background: #fff;
}

/* ===== phone mock ===== */
.phone-mock {
    width: min(100%, 360px);
    position: relative;
    z-index: 1;
}

.phone-mock__device {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  background: #0f1115;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    0 20px 60px rgba(0, 0, 0, 0.12);
}

.phone-mock__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f5f5f5;
}

.phone-mock__speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 110px;
  height: 26px;
  transform: translateX(-50%);
  background: #0b0d10;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

.phone-mock__camera {
  position: absolute;
  top: 18px;
  left: calc(50% - 18px);
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 35% 35%, #253553, #0c1320 70%);
  border-radius: 50%;
  z-index: 6;
  box-shadow: 18px 0 0 #0f1115;
}

/* ===== chat ui ===== */
.chat-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f3f3f3;
}

.chat-ui__header {
  position: relative;
  height: 64px;
  padding: 16px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f3f3;
  z-index: 2;
}

.chat-ui__title {
  font-size: 18px;
  font-weight: 700;
  color: #2f3a54;
  letter-spacing: 0.02em;
}

.chat-ui__menu,
.chat-ui__close,
.chat-ui__mic {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: default;
}

.chat-ui__menu {
  width: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.chat-ui__menu span {
  display: block;
  width: 18px;
  height: 2px;
  background: #6b7280;
  border-radius: 999px;
}

.chat-ui__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #7f8896;
  background: #ffffff;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-ui__viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  padding: 6px 14px 0;
  background: #fff;
}

.chat-ui__track {
  will-change: transform;
}

.chat-row {
  margin-bottom: 20px;
}

.chat-row--user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-row--bot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.chat-meta {
  font-size: 11px;
  color: #8d919a;
  margin-bottom: 8px;
}

.chat-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #6f7278;
  font-size: 13px;
  font-weight: 500;
}

.chat-author__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #fff;
}

.chat-bubble {
  max-width: 82%;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.chat-bubble--user {
  background: #e8f9ff;
  color: #555;
  border-top-right-radius: 8px;
}

.chat-bubble--bot {
  background: #e9f8e4;
  color: #555;
  border-top-left-radius: 8px;
}

.chat-ui__input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 18px;
  background: #f3f3f3;
}

.chat-ui__inputbox {
  flex: 1;
  height: 42px;
  border-radius: 999px;
  background: #ececec;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 14px;
}

.chat-ui__mic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ff4f78;
  display: inline-grid;
  place-items: center;
  background: transparent;
}

/* ===== animation assist ===== */
.chat-ui__track {
  will-change: transform;
}

/* ============================================================
   functions
   ============================================================ */

.functions {
  background-color: #fbfcff;
  padding: 4rem 0 0;
  overflow: hidden;
}

.functions__intro {
  text-align: center;
  padding: 0 1.25rem 3rem;
}

.functions__intro-sub {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #cc9e4b;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.functions__intro-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #002542;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.functions__intro-lead {
  font-size: 1.5rem;
  font-weight: 800;
  color: #002542;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  margin-top: 3.5rem;
}

.functions__intro-desc {
  font-size: 0.9375rem;
  color: #4d4d4d;
  line-height: 1.8;
}

.functions__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 140px;
	padding-bottom: 120px;
}

.functions__item {
  position: relative;
}

.functions__item-band {
    position: relative;
}
.functions__item-band:after {
    content: "";
    width: 65%;
    height: 280px;
    background: linear-gradient(90deg, #002542 0%, #005394 100%);
    position: absolute;
    right: 0;
    bottom: -30px;
}
li.functions__item.functions__item--reverse .functions__item-band:after {
    right: auto;
    left: 0;
}

.functions__item-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.functions__item-mock {
  width: 100%;
  max-width: 320px;
  background: #fff;
}
.functions__item-mock img {
    width: 100%;
    display: block;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.functions__item-content {
  text-align: center;
}

.functions__item-label {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #002542;
    position: absolute;
    top: 0;
}

.functions__item-label .fas {
  margin-right: 0.4em;
}

.functions__item-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #cc9e4b;
}

.functions__item-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

/* ============================================================
   cta
   ============================================================ */

.cta {
    background: url(https://coachcontribution.com/app/wp-content/uploads/2026/03/bgs.jpg) no-repeat;
    padding: 1.2rem 0 0.8rem;
    position: relative;
    background-size: cover;
}

.cta__inner {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta__catch {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #002542;
  line-height: 1;
}

.cta__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: #002542;
  line-height: 1.4;
}

.cta__desc {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #002542;
  line-height: 1.9;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 24px 12px;
  background-color: #cc9e4b;
  border-radius: 60px;
  width: 200px;
  box-shadow: 0 0 20px rgba(204,158,75,0.2);
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
a.cta__btn:hover {
    background-color: #a67928;
}

.cta__btn-icon {
  font-size: 1rem;
  color: #fff;
}

.cta__btn-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.5;
  white-space: nowrap;
}

.cta__mock img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}

/* ============================================================
   habit
   ============================================================ */

.habit {
  background-color: #fff;
  padding: 5rem 0 6.25rem;
}

.habit__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.habit__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  text-align: center;
}

.habit__heading-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

.habit__heading-en {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #cc9e4b;
  line-height: 1.4;
}

.habit__lead {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1.8;
  text-align: center;
}

.habit__timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 6px solid #002542;
  border-radius: 10px;
  overflow: hidden;
}

.habit__block {
  display: flex;
  flex-direction: column;
}

.habit__block-img {
  height: 200px;
  overflow: hidden;
}

.habit__block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.habit__block-body {
  padding: 1.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.habit__block-mock {
  width: 100px;
}

.habit__block-mock img {
  width: 100%;
  display: block;
}

.habit__block-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #002542;
  line-height: 1.4;
  text-align: center;
}

.habit__block-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1.8;
  text-align: center;
}

/* ============================================================
   timeline
   ============================================================ */

.habits__timelineBlock {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: solid 10px #002542;
    border-radius: 10px;
    padding: 60px 65px;
}
ul.habits__timelines {
    display: flex;
    flex-direction: column;
}
li.habits__timeline {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    padding-bottom: 65px;
}
li.habits__timeline:last-child {
    padding-bottom: 0;
}
li.habits__timeline:before {
    content: "";
    width: 28px;
    height: 28px;
    background: #CC9E4B;
    left: 0;
    position: absolute;
    top: 0;
    border-radius: 9999px;
}
li.habits__timeline:after {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: 14px;
    top: 0;
    background: #CC9E4B;
}
li.habits__timeline:last-child:after {
    content: none;
}
li.habits__timeline h3 {
    color: #002542;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
}
.habits__timeline--img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}
.habits__timeline--img img {
    width: 100%;
    object-fit: contain;
    vertical-align: bottom;
}

/* ============================================================
   models
   ============================================================ */

.models {
    background: url(https://coachcontribution.com/app/wp-content/uploads/2026/03/dots.png) no-repeat;
    padding: 5rem 0 6rem;
    background-size: cover;
}

.models__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.models__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  text-align: center;
}

.models__heading-sub {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

.models__heading-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

.models__heading-en {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #cc9e4b;
  line-height: 1.4;
}

.models__desc {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1.8;
  text-align: center;
}

.models__comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 3rem 3.3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  align-items: center;
}

.models__box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 3px;
  width: 100%;
  align-items: center;
  text-align: center;
}

.models__box--ai {
  border: 2px solid #002542;
}

.models__box--cl {
  border: 2px solid #cc9e4b;
}

.models__box-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: #002542;
  line-height: 1.4;
}

.models__box-desc {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1.7;
  margin-bottom: 9px;
}

.models__box-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px 9px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    width: 280px;
}

.models__box-badge--dark {
  background-color: #002542;
  color: #fff;
}

.models__box-badge--gold {
  background-color: #cc9e4b;
  color: #fff;
}

.models__arrow {
    transform: rotate(90deg);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.models__arrow img {
    width: 60px;
    height: 60px;
}

.models__result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: #FFF;
    border-radius: 3px;
    padding: 1.6rem 1.5rem 2rem;
    width: 100%;
    border: solid 1px #ddd;
}

.models__result-title {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: #333;
    line-height: 1.4;
}

.models__result-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.models__result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 10px;
  background-color: #4d4d4d;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.4;
}

/* ============================================================
   plan
   ============================================================ */

.plan {
  background-color: #fff;
  padding: 6rem 0;
}

.plan__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
}

.plan__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  text-align: center;
}

.plan__heading-sub {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

.plan__heading-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

.plan__heading-en {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #cc9e4b;
  line-height: 1.4;
}

.plan__cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  align-items: center;
}

.plan__card {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.plan__card-label {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
  line-height: 1.4;
}

.plan__card-price {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: #cc9e4b;
  line-height: 1.2;
}
p.plan__card-price span {
    font-size: 1.5rem;
    padding-left: 4px;
    letter-spacing: 2px;
}

.plan__card-note {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: #666;
  line-height: 1.6;
}

.plan__separator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan__separator img {
    width: 60px;
    height: 60px;
}

.plan__note {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 1.3rem 2.5rem 1.8rem;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan__note-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #002542;
  line-height: 1.5;
}

.plan__note-example {
    background-color: #fff;
    border-radius: 3px;
    padding: 1.05rem 1.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    color: #333;
    line-height: 1.8;
    width: fit-content;
    margin: 0 auto;
}

.plan__note-caption {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

/* ============================================================
   question
   ============================================================ */

.question {
  background-color: #fff;
  padding: 4rem 1.25rem 4rem;
}

.question__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.question__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.question__heading-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4d4d4d;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.question__heading-en {
  font-size: 1.25rem;
  font-weight: 600;
  color: #cc9e4b;
  letter-spacing: 0.04em;
}

.question__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.question__item {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.question__q {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.question__badge {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.question__badge--q {
  background-color: #222;
}

.question__badge--a {
  background-color: #cc9e4b;
}

.question__q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.question__toggle {
  color: #cc9e4b;
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.question__q[aria-expanded="true"] .question__toggle {
  transform: rotate(180deg);
}

.question__a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 1.25rem 1.25rem;
  transition: max-height 0.3s ease;
}

.question__a-text {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #222;
  line-height: 1.9;
  letter-spacing: 0.05em;
  padding-bottom: 25px;
}

/* ============================================================
   foundation
   ============================================================ */

.foundation {
  background-color: #f0f0f0;
  padding: 5rem 1.25rem 3.75rem;
  position: relative;
  overflow: hidden;
}

.foundation::before {
  content: 'FOUNDATION';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: rgba(204,158,75,0.07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.1em;
}

.foundation__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.foundation__intro {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.foundation__intro-text {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: #333;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.foundation__intro span {
    color: #cc9e4b;
    font-size: 7rem;
    opacity: 0.15;
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
}

.foundation__profile {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.foundation__profile-header {
  background: linear-gradient(to right, #002542, #005394);
  padding: 0.75rem 1.5rem;
}

.foundation__profile-label {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.foundation__profile-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.foundation__profile-img {
  width: 160px;
  margin: 0 auto;
}

.foundation__profile-img img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.foundation__profile-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: calc(100% - 240px - 2.5rem);
}

.foundation__profile-name-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.foundation__profile-name {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: #002542;
}

.foundation__profile-role {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #666;
}

.foundation__profile-credential {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #002542;
  line-height: 1.5;
}

.foundation__profile-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.25rem;
}

.foundation__profile-list li {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1.8;
  list-style: disc;
}

.foundation__book {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 1rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foundation__book-label {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: #002542;
}

.foundation__book-body {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.foundation__book-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: calc(100% - 1rem - 140px);
}

.foundation__book-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1.7;
}

.foundation__book-author {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #555;
  line-height: 1.6;
}

.foundation__book-cover {
    width: 140px;
    flex-shrink: 0;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    justify-content: center;
}
.foundation__book-cover img {
    width: 80px;
    transform: scale(1.3) translateY(-15px) translateX(10px);
    box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.25);
}

.foundation__message {
  padding-top: 1.5rem;
  border-top: 1px dashed #ccc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.foundation__message-label {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #cc9e4b;
  line-height: 1.4;
}

.foundation__message-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1.9;
}

.foundation__company {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.foundation__company-header {
  background: linear-gradient(to right, #002542, #005394);
  padding: 0.75rem 1.5rem 1rem;
  text-align: center;
}

.foundation__company-label {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.foundation__company-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
}
.foundation__company-bodyLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
}

.foundation__company-logo {
  max-width: 280px;
}

.foundation__company-logo img {
  width: 100%;
  display: block;
}

.foundation__company-name {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #002542;
  text-align: center;
  line-height: 1.5;
}

.foundation__book-info.bottomBook {
    width: 350px;
}
.foundation__book-cover.bottomBook {
    position: relative;
    right: auto;
    bottom: auto;
}

/* ============================================================
   Desktop (min-width: 768px)
   ============================================================ */

@media (min-width: 768px) {
  /* 768px以上 */

  /* ----- mv ----- */

  .mv {
    min-height: 725px;
    padding: 0;
    display: flex;
    align-items: stretch;
  }

  .mv__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding: 11.75rem 0 1.25rem;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    justify-content: space-between;
  }

  .mv__content {
    width: 100%;
    flex-shrink: 0;
  }

  .mv__catch { font-size: 2rem; }
  .mv__title { font-size: 3.475rem; }
  .mv__desc { font-size: 1.125rem; margin-bottom: 12px;}
  .mv__btn { width: 240px; }
  .mv__btn-icon { font-size: 1.25rem; }
  .mv__btn-text { font-size: 1.125rem; }

  .mv__mock {
    flex: 1;
    flex: 1;
    align-items: flex-end;
    justify-content: flex-start;
    position: absolute;
    right: -80px;
    bottom: 0;
  }

  .mv__mock-pc img { max-width: 763px; }
  .mv__mock-sp img { width: 162px; }
  .mv__mock-sp { left: 0; bottom: 0; }

  /* ----- problem ----- */

  .problem { padding: 4rem 0 6.25rem }
  .problem__inner { gap: 4rem; }
  .problem__heading-sub { font-size: 1.125rem; }
  .problem__heading-title { font-size: 1.75rem; }
  .problem__heading-en { font-size: 1.5rem; }

  .problem__tabs {
    flex-direction: row;
    gap: 1.875rem;
  }

  .problem__tab {
    flex: 1 0 0;
    padding: 1.875rem 1.25rem 1.75rem;
    gap: 1rem;
  }

  .problem__tab-badge { width: 160px; }
  .problem__tab-text { font-size: 1.125rem; }

  .problem__tab-arrow {
    display: block;
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid transparent;
  }

  .problem__tab--active .problem__tab-arrow {
    border-top-color: #002542;
  }

  .problem__panel {
    flex-direction: row;
    align-items: stretch;
    min-height: 420px;
  }

  .problem__panel-img { width: 50%; height: auto; flex-shrink: 0; }
  .problem__panel-body { flex: 1; padding: 5rem 2.5rem 2.5rem; }
  .problem__panel-title { font-size: 1.5rem; }
  .problem__panel-desc { font-size: 1.125rem; }
  .problem__summary-text { font-size: 1.5rem; white-space: nowrap; }

  /* ----- about ----- */

  .about { padding: 6.25rem 0; }
  .about__heading-title { font-size: 1.75rem; }
  .about__heading-en { font-size: 1.5rem; }

  .about__vis {
    flex-direction: row;
    align-items: center;
    gap: 3.75rem;
	margin-top: -4rem;
  }

  .about__vis-content { flex: 1; }
  .about__vis-body { font-size: 1.125rem; }
  .about__vis-mock { flex: 1; }
  .about__vis-mock img { max-width: none; }

  .about__feature-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .about__feature-item { width: calc(100% / 3 - 1.35rem); }
  .about__feature-icon { width: 80px; height: 80px; }

 /* ----- functions ----- */

  .functions { padding: 5rem 0 0; }

  .functions__intro { padding: 0 2rem 4rem; }
  .functions__intro-title { font-size: 1.5rem; }
  .functions__intro-lead { font-size: 2.75rem; }
  .functions__intro-desc { font-size: 1.125rem; }

  .functions__item-inner {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }

  .functions__item--reverse .functions__item-inner {
    flex-direction: row-reverse;
  }

  .functions__item-mock { 
	width: 50%;
	max-width: 550px;
    border-radius: 5px;
    overflow: hidden;
    border: solid 1px #002542;	
  }

  .functions__item-content {
    width: 55%;
    text-align: left;
	padding-top: 80px;
  }

  .functions__item-title { font-size: 2rem; }

  .functions__item-desc { font-size: 1.125rem; }	
	
  /* ----- cta ----- */

  .cta__inner {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }

  .cta__content { max-width: 557px; flex-shrink: 0; }
  .cta__catch { font-size: 1.75rem; }
  .cta__title { font-size: 3rem; }
  .cta__desc { font-size: 1.125rem; }
  .cta__btn { width: 240px; }
  .cta__btn-icon { font-size: 1.25rem; }
  .cta__btn-text { font-size: 1.125rem; }
  .cta__mock { flex: 1; }
  .cta__mock img { max-width: none; transform: scale(1.1); }

  /* ----- habit ----- */

  .habit__heading-title { font-size: 1.75rem; }
  .habit__heading-en { font-size: 1.5rem; }
  .habit__lead { font-size: 1.125rem; }

  .habit__timeline {
    flex-direction: row;
    border-width: 9px;
  }

  .habit__block {
    flex: 1 0 0;
    border-right: 6px solid #002542;
  }

  .habit__block:last-child { border-right: none; }
  .habit__block-img { height: 280px; }
  .habit__block-title { font-size: 1.25rem; }
  .habit__block-text { font-size: 1rem; }

  /* ----- models ----- */

  .models__heading-sub { font-size: 1.125rem; }
  .models__heading-title { font-size: 1.75rem; }
  .models__heading-en { font-size: 1.5rem; }
  .models__desc { font-size: 1.125rem; }

  .models__comparison {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem 3.5rem;
    flex-wrap: wrap;
  }

  .models__box { flex: 1 0 0; }
  .models__arrow { transform: rotate(0deg); }

  /* ----- plan ----- */

  .plan__heading-sub { font-size: 1.125rem; }
  .plan__heading-title { font-size: 1.75rem; }
  .plan__heading-en { font-size: 1.5rem; }

  .plan__cards {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .plan__card { max-width: none; flex: 1; }
  .plan__card-label { font-size: 1.375rem; }
  .plan__card-price { font-size: 9.6rem; letter-spacing: -8px; }
  .plan__note-title { font-size: 1.375rem; }

   /* ----- question ----- */

  .question { padding: 5rem 2rem; }

  .question__heading { margin-bottom: 3rem; }
  .question__heading-title { font-size: 1.75rem; }

  .question__list { max-width: 900px; margin: 0 auto; gap: 2.25rem; }

  .question__q { padding: 1.25rem 1.5625rem; gap: 1.125rem; }

  .question__q-text { font-size: 1.125rem; }

  .question__a { padding: 0 1.5625rem 0; gap: 1.125rem; }

  .question__a-text { font-size: 1.125rem; }	
	
  /* ----- foundation ----- */

  .foundation::before { font-size: 8rem; }
  .foundation__intro-text { font-size: 1.125rem; }

  .foundation__profile-body {
    flex-direction: row;
    align-items: flex-start;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
  }

  .foundation__profile-img { width: 240px; margin: 0; }
  .foundation__profile-name { font-size: 2.5rem; }
  .foundation__profile-credential { font-size: 1.125rem; }

  .foundation__company-body {
    flex-direction: row;
    justify-content: flex-start;
    padding: 2.5rem;
  }

  .foundation__company-name { text-align: left; }
}

/* 補助 */
@media only screen and (min-width: 767px) and (max-width: 1280px) {
	/* header */
	.Main_Header {
    min-width: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
	}
	.Main_Header_Inner {
    width: auto;
    gap: 40px;
    display: flex;
    margin-right: 0;
    padding-right: 0;
	}
	.Gnav {
    width: auto;
	}
	footer {
    overflow: hidden;
	}
	.wrap {
    width: 100%;
	min-width: auto;
	}
	.Main_Header_Inner {
    padding: 0;
	}
}

@media screen and (max-width: 1250px) {
/* （ここに1250px以下のスタイルを記述） */
	/* mv */
	.mv__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.mv__mock {
    right: 0;
    width: 52%;
	}
	.cta__mock img {
    transform: none;
	}
}

@media screen and (max-width: 1100px) {
/* （ここに1100px以下のスタイルを記述） */
	/* mv */
	section.mv {
    min-height: auto;
	}
	.mv__inner {
    flex-direction: column;
    gap: 35px;
    padding-bottom: 0;
	}
	.mv__content {
    flex-direction: column;
    align-items: center;
	}
	.mv__mock {
    position: relative;
    margin: 0 auto -10px;
    width: fit-content;
    display: flex;
	}
	/* その他 */
	.problem__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.about__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.cta__inner {
    padding-left: 4%;
    padding-right: 4%;
    flex-direction: column;
    gap: 0;
    padding-top: 40px;
	}
	.cta__mock img {
    width: 80%;
	}
	.functions__intro {
    padding-left: 4%;
    padding-right: 4%;
	}
	.functions__item-band {
    padding-left: 4%;
    padding-right: 4%;
	}
	.plan__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
	br.sp_br {
    display: block;
	}
	/* header */
	p.Gnav_MenuText.Open {
    font-size: 0.7rem;
	white-space: nowrap;
	}
	.Main_Header_Contact a span {
    display: block;
    font-size: 0.5rem;
	}	
	/* mv */
	section.mv {
    padding-left: 0;
    padding-right: 0;
	padding-top: 70px;
	padding-bottom: 0;
	}
	.mv__title {
    font-size: 2.6rem;
	}
	section.problem {
    padding-left: 0;
    padding-right: 0;
	}
	section.about {
    padding-top: 3rem;
    padding-bottom: 4rem;
	}
	p.about__vis-kicker, p.about__vis-lead {
    text-align: center;
    font-size: 2.2rem;
	}
	section.cta {
    padding-bottom: 0;
	}
	.cta__inner {
    gap: 20px;
	}
	p.cta__catch, h2.cta__title {
    text-align: center;
	}
	.cta__content a.cta__btn {
    margin: 0 auto;
	}
	.cta__mock {
    margin-left: -4%;
    margin-right: -4%;
    margin-bottom: -30px;
	}
	.cta__mock img {
    width: 100%;
	}
	.habit {
    padding-bottom: 3rem;
	}
	.habit__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.habits__timelineBlock {
    padding: 2rem 1.2rem;
	}
	.habits__timeline--img img {
    object-fit: cover;
    height: 400px;
	}
	li.habits__timeline {
    padding-left: 42px;
	}
	li.habits__timeline p {
    line-height: 1.93;
	}
	.functions__list {
    gap: 90px;
	}
	.functions__item-mock {
    border: solid 1px #002542;
    overflow: hidden;
    border-radius: 5px;
	}
	p.functions__item-label {
    position: relative;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.2rem;
	}
	.functions__item-inner {
    gap: 1rem;
	}
	.functions__item-band:after {
    width: 100%;
	height: 280px;
	}
	.models {
    padding: 3rem 0 3rem;
	}
	.models__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.models__comparison {
    padding: 0.9rem 1rem;
	}
	.plan {
    padding: 3rem 0;
	}
	.plan__card-price {
    font-size: 5.6rem;
	}
	.plan__card {
    padding: 1.3rem 1rem;
	}
	.plan__note {
    padding: 1.3rem 1.5rem 1.8rem;
	}
	.plan__note-title {
    text-align: center;
	}
	.foundation {
    padding: 3.5rem 1.25rem 3.15rem;
	}
	.foundation__profile-img {
    width: 100%;
	}
	.foundation__profile-info {
    width: 100%;
	}
	.foundation__book-body {
    flex-wrap: wrap;
	}
	.foundation__book-info {
    width: 100%;
	}
	.foundation__book-cover {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
	}	
	.foundation__book-cover img {
    width: 100%;
    transform: none;
    max-width: 120px;
	}
	.foundation__company-body.bottomBooks {
    padding: 1.5rem;
    box-sizing: border-box;
	}
	.foundation__book.bottomBooks {
    width: 100%;
	}
}