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

body {
  line-height: 1;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 管理バーがある時だけ少し下げる */
body.admin-bar .header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}
/* メイン側はヘッダー分の余白を確保（margin の相殺回避のため padding 推奨） */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

/* ---common--- */
html {
  font-size: 2.6666666667vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1;
}

/* ログイン中だけヘッダーを 32px 下げる */
.admin-bar .header {
  top: 32px;
}

.is-scroll {
  overflow: hidden;
}

.content__wrap {
  max-width: 750px;
  width: 100%;
  margin: auto;
}

.font__en {
  font-family: "EB Garamond", sans-serif;
}

.color-org {
  color: #f84004;
}

/* --- header --- */
header {
  max-width: 750px;
  width: 100%;
  max-height: 120px;
  height: 6rem;
  background-color: #fff;
  position: fixed;
  z-index: 1000;
}

.header__inner {
  width: 100%;
  max-height: 120px;
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.headerLogo__wrap {
  max-width: 168px;
  width: 8.4rem;
  position: absolute;
  left: 20px;
}

.header__logo {
  width: 100%;
}

.header_nav {
  max-width: 750px;
  width: 100%;
  height: 100vh;
  overflow: auto;
  padding-bottom: 6rem;
  position: fixed;
  top: 6rem;
  left: 0;
  z-index: 990;
  background-color: #627962;
  transform: translateX(100vw);
  transition: all 0.3s linear;
}

.header_nav.is-active {
  transform: translateX(0);
  position: absolute;
}

.headerNav_list {
  width: 100%;
  padding: 5.24rem 5rem 0;
}

.headerNav_item {
  width: 100%;
}

.headerNav_link {
  display: block;
  padding-bottom: 2.725rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.56rem;
  color: #fff;
}

.headerNav_icon {
  max-width: 100px;
  width: 5rem;
  max-height: 100px;
  height: 5rem;
  position: absolute;
  right: 20px;
}

.headerNav_icon img {
  width: 100%;
  height: 100%;
}

@media (min-width: 751px) {
  header {
    width: 750px;
    height: 120px;
  }
  .header__inner {
    height: 120px;
  }
  .headerLogo__wrap {
    width: 168px;
  }
  .header_nav {
    padding-bottom: 120px;
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 990;
  }
  .headerNav_list {
    width: 100%;
    padding: 104.8px 100px 0;
  }
  .headerNav_link {
    padding-bottom: 54.5px;
    font-size: 51.2px;
  }
  .headerNav_icon {
    width: 100px;
    height: 100px;
    position: absolute;
    right: 20px;
  }
  .headerNav_icon img {
    width: 100%;
    height: 100%;
  }
}
/* 離脱防止ポップアップ */
.banner-exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.banner-exit-popup {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.popup-banner {
  display: block;
  margin: 0 auto;
  width: 70%;
  height: auto;
}

/* 下部テキストの閉じる */
.banner-close-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* bottom: calc(12px + env(safe-area-inset-bottom, 0)); iOSの下部バー回避 */
  padding: 15px;
  /* タップ領域を確保 */
  background: transparent;
  color: #fff;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  border: none;
  font-size: clamp(12px, 1.2rem, 15px);
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  /* ポップアップより前面に */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (min-width: 751px) {
  .banner-close-text {
    font-size: 15px;
  }
}
/* もし下の背景が明るくて見えづらいなら影を足す */
.banner-close-text {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* --- main --- */
main {
  scroll-margin-top: 6rem;
  /* ヘッダーの高さに合わせる */
  padding-top: 6rem;
  overflow: hidden;
}

@media (min-width: 751px) {
  main {
    scroll-margin-top: 120px;
    padding-top: 120px;
  }
}
.cta {
  background-image: url(../images/bg__cta--bonus.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}

.cta__eyebrow {
  background: linear-gradient(90deg, #ff6238, #f7a44d);
  color: #fff;
  text-shadow: 0 0 130px rgb(248, 64, 4), 0 0 130px rgb(248, 64, 4), 0 0 70px rgba(248, 64, 4, 0.8), 0 0 70px rgba(248, 64, 4, 0.8), 0 0 40px rgba(248, 64, 4, 0.6), 0 0 10px rgba(248, 64, 4, 0.4);
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  font-family: "EB Garamond", sans-serif;
  padding: 1.5rem 0 3rem;
}

/* 無料 or 無料 の帯 */
.cta__freeband {
  margin: -2rem 1rem 0.75rem;
  display: flex;
  background-image: url(../images/bg__counseling.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 0.1rem solid #f84004;
}

.cta__freetraining {
  text-align: center;
  padding: 1rem 0 1rem 1rem;
  color: #f84004;
}
.cta__freetraining p {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.cta__freetraining .cta__sublabel {
  border-bottom: 0.08rem solid #f84004;
}
.cta__freetraining .font__en {
  font-size: 2rem;
  font-weight: 500;
}
.cta__freetraining .font__smoll {
  font-size: 1.3rem;
}

.cta__counseling {
  text-align: center;
  padding: 1rem 1rem 1rem 0;
}
.cta__counseling p {
  color: #fff;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.cta__counseling .cta__sublabel {
  border-bottom: 0.08rem solid #fff;
}
.cta__counseling .font__en {
  font-size: 2rem;
  font-weight: 500;
}
.cta__counseling .font__smoll {
  font-size: 1.3rem;
}

.cta__sublabel {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.cta__free {
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-size: 5.5rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  padding: 6px 8px;
}

.cta__or {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.8rem;
  color: #fff;
  align-self: center;
  letter-spacing: 0.08em;
}

/* 追加特典 */
.cta__plus {
  text-align: center;
  color: #f84004;
  font-size: 2.4rem;
}

.cta__bonus {
  margin: 0 1rem;
  border: 0.1rem solid #f84004;
  padding: 1.2rem;
  background-color: #fff;
  color: #f84004;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  position: relative;
}

.circle-list {
  margin: 0;
  list-style: none;
}
.circle-list li {
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  position: relative;
}
.circle-list li + li {
  margin-top: 6px;
}
.circle-list li .font__en {
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 100;
}

.cta__accent {
  border-bottom: 0.08rem solid #f84004;
  font-size: 2.5rem;
  font-weight: 800;
}

.cta__bonusimg {
  position: absolute;
  bottom: 0;
  right: 0.7rem;
  z-index: 1;
  width: 5.03rem;
  height: auto;
}

/* CTAボタン */
.cta__btn {
  display: block;
  margin: 1.3rem 0 0 1rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.3rem;
  letter-spacing: 0.06em;
  text-shadow: 1px 1px 10px rgb(246, 95, 45), 1px 1px 20px rgb(246, 95, 45), 1px 1px 50px rgb(180, 69, 32);
  /* 背景画像（SP全幅前提） */
  background: url(../images/bg__button--shadow.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 1.8rem 0 3rem;
  /* テキストの上下余白 */
  /* 押下/フォーカス */
}
.cta__btn:active {
  transform: translateY(1px);
}

/* メディア掲載 */
.cta__press {
  position: relative;
  padding: 2rem 0.8rem 0.6rem;
  overflow: hidden;
  /* 円がはみ出してもスクロールバーが出ないように */
  /* 背景のペールオレンジの丸 (#fee0c3) */
}
.cta__press::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  width: 20.75rem;
  /* 画面に合わせて可変 */
  aspect-ratio: 1/1;
  /* 正円 */
  background: #fee0c3;
  border-radius: 50%;
  transform: translateX(-50%);
  /* 画像の位置に合わせて微調整 */
  z-index: 0;
}

.cta__press--inner {
  position: relative;
  z-index: 1;
  /* 円より前面に */
}

/* リボン：背景を画像にしてテキストを上に載せる */
.cta__press--ribbon {
  display: inline-block;
  margin: 2rem 0 0.5rem 53%;
  transform: rotate(10deg);
  /* デザインに合わせて傾ける（任意） */
  /* 重要：歪まないように全面フィット */
  width: 10.7rem;
  height: 1.45rem;
  /* 画像の縦横比に合わせる */
  background: url("../images/cta__press--ribbon.png") no-repeat center/100% 100%;
}
.cta__press--ribbon span {
  display: grid;
  place-items: center;
  height: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* 見出し */
.press__headline {
  margin: 0 0 0.5rem 55.5%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
  transform: rotate(10deg);
}
.press__headline .press__brand {
  color: #f84004;
  font-size: 2rem;
  font-weight: bold;
}
.press__headline::before {
  content: "";
  background-image: url(../images/press__headline--left.png);
  background-repeat: no-repeat;
  position: absolute;
  left: -12%;
  top: 30%;
  width: 3rem;
  /* 画面に合わせて可変 */
  aspect-ratio: 1/1;
  z-index: 0;
}
.press__headline::after {
  content: "";
  background-image: url(../images/press__headline--right.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 60%;
  top: 30%;
  width: 3rem;
  /* 画面に合わせて可変 */
  aspect-ratio: 1/1;
  z-index: 0;
}

.cta__pressimgs {
  height: 20.5rem;
  margin-top: -6.5rem;
}
.cta__pressimgs .cta__press-imageCover {
  width: 11.9rem;
  height: auto;
  transform: rotate(-9deg);
  position: absolute;
  left: 5.8rem;
}
.cta__pressimgs .cta__press-imageArticle {
  width: 8.2rem;
  height: auto;
  transform: rotate(9deg);
  position: absolute;
  right: 23.6%;
  bottom: 3.4rem;
}

/* 751px以上は背景だけ伸びる（SP前提） */
@media (min-width: 751px) {
  .cta__eyebrow {
    font-size: 60px;
    line-height: 1;
    font-family: "EB Garamond", sans-serif;
    padding: 30px 0 60px;
  }
  /* 無料 or 無料 の帯 */
  .cta__freeband {
    margin: -40px 20px 15px;
    border-bottom: 2px solid #f84004;
  }
  .cta__freetraining {
    padding: 20px 0 20px 20px;
  }
  .cta__freetraining .cta__sublabel {
    border-bottom: 1.6px solid #f84004;
  }
  .cta__freetraining .font__en {
    font-size: 40px;
  }
  .cta__freetraining .font__smoll {
    font-size: 26px;
  }
  .cta__counseling {
    padding: 20px 20px 20px 0;
  }
  .cta__counseling .cta__sublabel {
    border-bottom: 1.6px solid #fff;
  }
  .cta__counseling .font__en {
    font-size: 40px;
  }
  .cta__counseling .font__smoll {
    font-size: 26px;
  }
  .cta__sublabel {
    font-size: 32px;
  }
  .cta__free {
    font-weight: 500;
    font-size: 110px;
  }
  .cta__or {
    font-size: 56px;
  }
  /* 追加特典 */
  .cta__plus {
    font-size: 48px;
  }
  .cta__bonus {
    margin: 0 20px;
    border: 2px solid #f84004;
    padding: 24px;
  }
  .circle-list li {
    line-height: 1.5;
    font-size: 36px;
    letter-spacing: -0.03em;
    position: relative;
  }
  .circle-list li .font__en {
    font-style: italic;
    font-size: 44px;
  }
  .cta__accent {
    border-bottom: 1.6px solid #f84004;
    font-size: 50px;
  }
  .cta__bonusimg {
    position: absolute;
    bottom: 0;
    right: 14px;
    z-index: 1;
    width: 106px;
    height: auto;
  }
  /* CTAボタン */
  .cta__btn {
    display: block;
    width: 100%;
    margin: 26px 20px 0;
    font-size: 46px;
    letter-spacing: 0.06em;
    padding: 36px 0 60px;
    /* テキストの上下余白 */
  }
  /* メディア掲載 */
  .cta__press {
    position: relative;
    padding: 40px 16px 12px;
    /* 背景のペールオレンジの丸 (#fee0c3) */
  }
  .cta__press::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 22px;
    width: 415px;
  }
  .cta__press--inner {
    position: relative;
    z-index: 1;
    /* 円より前面に */
  }
  /* リボン：背景を画像にしてテキストを上に載せる */
  .cta__press--ribbon {
    display: inline-block;
    margin: 40px 0 10px 53%;
    transform: rotate(10deg);
    /* デザインに合わせて傾ける（任意） */
    /* 重要：歪まないように全面フィット */
    width: 214px;
    height: 29px;
  }
  /* 見出し */
  .press__headline {
    margin: 0 0 10px 55.5%;
    font-size: 24px;
  }
  .press__headline .press__brand {
    color: #f84004;
    font-size: 40px;
    font-weight: bold;
  }
  .press__headline::before {
    width: 60px;
  }
  .press__headline::after {
    width: 60px;
  }
  .cta__pressimgs {
    height: 266px;
    margin-top: -13px;
  }
  .cta__pressimgs .cta__press-imageCover {
    width: 240px;
    left: 116px;
    bottom: 50px;
  }
  .cta__pressimgs .cta__press-imageArticle {
    width: 164px;
    bottom: 52px;
  }
}
.features {
  background-image: url(../images/bg__features--ems.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5.4rem 0 9.7rem;
}

.features__title {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.features__title .features__em {
  color: #363427;
  font-size: 4.6rem;
  line-height: 1.3em;
}

/* ====== 悩みカード ====== */
.trouble__item {
  position: relative;
  margin: 1.7rem 0 3.4rem;
}

.trouble__item:last-child .trouble__text {
  width: 96%;
  letter-spacing: -0.05em;
}

/* 左上の写真（交互配置も可） */
.trouble__image {
  width: 16rem;
  margin: 0;
  position: relative;
  z-index: 1;
}
.trouble__image img {
  width: 100%;
  height: auto;
  display: block;
}

.trouble__item.is-reverse .trouble__image {
  margin-left: auto;
}

.trouble__content {
  position: relative;
  margin: -9rem 0 0 1rem;
  z-index: 0;
  background: #f1eceb;
  width: 33.5rem;
  border-radius: 0 3.5rem 0 0;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  padding: 0.7rem 0 0.8rem 0.7rem;
}

.trouble__item.is-reverse .trouble__content {
  margin-left: 0;
  margin-right: 28%;
  border-radius: 16px 16px 16px 28px;
}

.trouble__lead {
  margin-left: 15rem;
  letter-spacing: -0.1em;
}

/* タイトル・著者 */
.trouble__point {
  margin: 1.5rem 0 0;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: #627962;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
}

.trouble__author {
  margin: 1rem 0;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: #868484;
  font-size: 1.2rem;
}

/* 本文 */
.trouble__text {
  width: 96%;
  margin: 1.5rem 0 0;
  color: #363427;
  font-size: 1.5rem;
  line-height: 1.9;
}

.trouble__item.is-reverse .trouble__image {
  margin-left: auto;
}
.trouble__item.is-reverse .trouble__content {
  position: relative;
  margin: -9rem 0 0 3rem;
  z-index: 0;
  background: #f1eceb;
  width: 33.5rem;
  border-radius: 3.5rem 0 0 0;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  padding: 0.7rem 0 0.8rem 1.5rem;
}
.trouble__item.is-reverse .trouble__content .trouble__lead {
  margin: 0;
}

@media (min-width: 751px) {
  .features {
    padding: 108px 0 196px;
  }
  .features__title {
    font-size: 60px;
  }
  .features__title .features__em {
    font-size: 92px;
  }
  /* ====== 悩みカード ====== */
  .trouble__item {
    position: relative;
    margin: 34px 0 68px;
  }
  .trouble__item:last-child .trouble__text {
    width: 96%;
    letter-spacing: -0.05em;
  }
  /* 左上の写真（交互配置も可） */
  .trouble__image {
    width: 320px;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .trouble__image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .trouble__item.is-reverse .trouble__image {
    margin-left: auto;
  }
  .trouble__content {
    position: relative;
    margin: -180px 0 0 20px;
    z-index: 0;
    background: #f1eceb;
    width: 670px;
    border-radius: 0 70px 0 0;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    padding: 14px 0 16px 14px;
  }
  .trouble__item.is-reverse .trouble__content {
    margin-left: 0;
    margin-right: 28%;
    border-radius: 16px 16px 16px 28px;
  }
  .trouble__lead {
    margin-left: 300px;
    letter-spacing: -0.1em;
  }
  /* タイトル・著者 */
  .trouble__point {
    margin: 30px 0 0;
    font-size: 32px;
  }
  .trouble__author {
    margin: 20px 0;
    font-size: 24px;
  }
  /* 本文 */
  .trouble__text {
    width: 96%;
    margin: 30px 0 0;
    color: #363427;
    font-size: 30px;
    line-height: 1.9;
  }
  .trouble__item.is-reverse .trouble__image {
    margin-left: auto;
  }
  .trouble__item.is-reverse .trouble__content {
    position: relative;
    margin: -180px 0 0 60px;
    z-index: 0;
    background: #f1eceb;
    width: 670px;
    border-radius: 70px 0 0 0;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    padding: 14px 0 16px 30px;
  }
  .trouble__item.is-reverse .trouble__content .trouble__lead {
    margin: 0;
  }
}
.voice {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.voice__title {
  background-image: url(../images/bg__voice--title.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.2rem 0 4rem;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.3;
  font-size: 2.6rem;
}
.voice__title .voice__subtitle {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  color: #fff;
}

.voice__list {
  margin: 0.3rem 0 0;
  padding: 0;
}

/* ===== 各アイテム ===== */
.voice__item {
  position: relative;
  padding-bottom: 2rem;
}

/* ラベル */
.voice__label {
  position: absolute;
  top: -1.8rem;
  left: 1rem;
  background: #627962;
  color: #fff;
  padding: 2.4rem 0.5rem;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* 写真 */
.voice__media {
  display: block;
  width: 21.65rem;
  height: auto;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  margin: 1.8rem 1rem 0 5.5rem;
  position: relative;
  z-index: 1;
}

/* 吹き出し風テキスト */
.voice__text {
  position: relative;
  margin: -7rem 0 0 11.5rem;
  background: #fff;
  border-radius: 1.5rem 0 0 0;
  width: 25rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  padding: 1.9rem 1.8rem;
  color: #363427;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  line-height: 1.9;
  z-index: 1;
}
.voice__text strong {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627962;
  font-weight: bold;
}
.voice__text::after {
  content: "";
  position: absolute;
  right: -0.95rem;
  bottom: -0.2rem;
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 1.5rem solid #627962;
  transform: rotate(-45deg);
}

/* ===== 偶数アイテムは左右反転 ===== */
.voice__item:nth-child(even) {
  margin: 0;
  /* ラベル */
  /* 写真 */
  /* 吹き出し風テキスト */
}
.voice__item:nth-child(even) .voice__label {
  left: auto;
  right: 12px;
}
.voice__item:nth-child(even) .voice__text::after {
  left: auto;
  right: 14px;
}
.voice__item:nth-child(even) .voice__label {
  position: absolute;
  top: -1.8rem;
  left: auto;
  right: 1rem;
}
.voice__item:nth-child(even) .voice__media {
  margin: 1.8rem 0 0 10.5rem;
}
.voice__item:nth-child(even) .voice__text {
  position: relative;
  margin: -10.5rem 0 0 1rem;
  background: #fff;
  border-radius: 0 1.5rem 0 0;
  width: 25rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  padding: 1.9rem 1.4rem;
  color: #363427;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  line-height: 1.9;
  z-index: 1;
}
.voice__item:nth-child(even) .voice__text strong {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627962;
  font-weight: bold;
}
.voice__item:nth-child(even) .voice__text::after {
  content: "";
  position: absolute;
  left: -0.95rem;
  bottom: -0.2rem;
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 1.5rem solid #627962;
  transform: rotate(45deg);
}

@media (min-width: 751px) {
  .voice__title {
    padding: 24px 0 80px;
    font-size: 52px;
  }
  .voice__title .voice__subtitle {
    display: block;
    font-size: 30px;
  }
  .voice__list {
    margin: 6px 0 0;
  }
  /* ===== 各アイテム ===== */
  .voice__item {
    position: relative;
    padding-bottom: 40px;
  }
  /* ラベル */
  .voice__label {
    position: absolute;
    top: -36px;
    left: 20px;
    padding: 48px 10px;
    font-size: 30px;
  }
  /* 写真 */
  .voice__media {
    display: block;
    width: 433px;
    height: auto;
    margin: 36px 20px 0 110px;
  }
  /* 吹き出し風テキスト */
  .voice__text {
    position: relative;
    margin: -140px 0 0 230px;
    background: #fff;
    border-radius: 30px 0 0 0;
    width: 500px;
    padding: 38px 36px;
    font-size: 24px;
    line-height: 1.9;
    z-index: 1;
  }
  .voice__text::after {
    content: "";
    position: absolute;
    right: -19px;
    bottom: -4px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #627962;
    transform: rotate(-45deg);
  }
  /* ===== 偶数アイテムは左右反転 ===== */
  .voice__item:nth-child(even) {
    margin: 0;
    /* ラベル */
    /* 写真 */
    /* 吹き出し風テキスト */
  }
  .voice__item:nth-child(even) .voice__label {
    left: auto;
    right: 12px;
  }
  .voice__item:nth-child(even) .voice__text::after {
    left: auto;
    right: 14px;
  }
  .voice__item:nth-child(even) .voice__label {
    position: absolute;
    top: -36px;
    left: auto;
    right: 20px;
  }
  .voice__item:nth-child(even) .voice__media {
    margin: 36px 0 0 210px;
  }
  .voice__item:nth-child(even) .voice__text {
    position: relative;
    margin: -210px 0 0 20px;
    background: #fff;
    border-radius: 0 30px 0 0;
    width: 500px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    padding: 38px 28px;
    font-size: 24px;
    line-height: 1.9;
    z-index: 1;
  }
  .voice__item:nth-child(even) .voice__text::after {
    content: "";
    position: absolute;
    left: -19px;
    bottom: -4px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #627962;
    transform: rotate(45deg);
  }
}
/* --- faq --- */
.faq {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #f1eceb;
  padding: 2rem 0 5.25rem;
}

.faq__title {
  max-width: 301px;
  width: 15.05rem;
  max-height: 97px;
  height: 4.705rem;
  display: block;
  margin: 0 auto 3.3rem;
}

.qa__item {
  max-width: 707px;
  width: 94.26%;
  margin: 0 auto;
  margin-bottom: 2.2rem;
  background-color: #627962;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.qa__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 2.5rem 1rem 3.5rem;
  font-size: 1.67em;
  color: #fff;
  cursor: pointer;
  line-height: 1.4;
  list-style: none;
}

.qa__item summary::-webkit-details-marker {
  display: none;
}

.qa__item summary::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 1.85rem;
  height: 1.85rem;
  background-image: url(../images/content-q.png);
  background-size: contain;
  vertical-align: middle;
}

.qa__item summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transition: transform 0.5s;
  color: #fff;
}

.qa__item[open] summary::after {
  transform: rotate(225deg);
}

.qa__item p {
  max-width: 707px;
  width: 100%;
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1.5rem 5.25rem 1.5rem 1.3rem;
  font-size: 1.25rem;
  color: #030303;
  transition: transform 0.5s, opacity 0.5s;
  background-color: #f1eceb;
}

.qa__item .w--592 {
  padding: 1.5rem 4.25rem 1.5rem 1.3rem;
}

.qa__item .w--579 {
  padding: 1.5rem 5.05rem 1.5rem 1.3rem;
}

.qa__item .w--663 {
  padding: 1.5rem 0 1.5rem 1.3rem;
}

.qa__item .w--600 {
  padding: 1.5rem 5rem 1.5rem 1.3rem;
}

.qa__item .w--594 {
  padding: 1.5rem 4.1rem 1.5rem 1.3rem;
}

.in__text {
  background-color: #f1eceb;
}

.in__text p {
  padding: 1.5rem 4rem 1.5rem 1.3rem;
}

.in__text p:nth-child(2) {
  padding: 1.5rem 5rem 1.5rem 1.3rem;
}

.caffeImage {
  width: 29.4rem;
  height: auto;
  margin-top: 1.5rem;
}

.qa__item[open] p {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  opacity: 1;
  line-height: 1.6;
  letter-spacing: 0px;
}

.link__faq {
  border-bottom: 1px solid #030303;
}

@media (min-width: 751px) {
  .faq {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #f1eceb;
    padding: 40px 0 105px;
  }
  .faq__title {
    width: 301px;
    height: 97px;
    display: block;
    margin: 0 auto 66px;
  }
  .qa__item {
    width: 707px;
    margin: 0 auto;
    margin-bottom: 44px;
  }
  .qa__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 50px 20px 70px;
    font-size: 33.4px;
  }
  .qa__item summary::before {
    position: absolute;
    left: 20px;
    width: 37px;
    height: 37px;
  }
  .qa__item p {
    padding: 30px 105px 30px 26px;
    font-size: 25px;
  }
  .qa__item .w--592 {
    padding: 30px 85px 30px 26px;
  }
  .qa__item .w--579 {
    padding: 30px 101px 30px 26px;
  }
  .qa__item .w--663 {
    padding: 30px 0 30px 26px;
  }
  .qa__item .w--600 {
    padding: 30px 100px 30px 26px;
  }
  .qa__item .w--594 {
    padding: 30px 82px 30px 26px;
  }
  .in__text p {
    padding: 30px 80px 30px 26px;
  }
  .in__text p:nth-child(2) {
    padding: 30px 100px 30px 26px;
  }
  .caffeImage {
    width: 588px;
    height: auto;
    margin-top: 30px;
  }
  .qa__item[open] p {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1;
    line-height: 1.6;
  }
  .qa__item[open] .spacing-0 {
    letter-spacing: 0;
  }
}
/* ===== セクション（斜め背景＋見出し） ===== */
.solutions {
  margin-top: -8.5rem;
  position: relative;
  z-index: -1;
  padding: 11rem 0 0;
  background: #f1eceb;
  background-image: url(../images/bg__solution.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.solutions__title {
  margin: 0 0 2rem;
}
.solutions__title img {
  display: block;
  margin: 0 auto;
}

.solutions__list {
  list-style: none;
  margin: 0;
  padding-top: 1rem;
}

.solutions__item {
  counter-increment: sol;
  position: relative;
}

/* ===== バッジ画像 ===== */
.solution__bage {
  position: absolute;
  right: 3.6rem;
  top: 2.5rem;
  width: 4.7rem;
}

/* ===== 画像 ===== */
.solutions__media {
  position: relative;
  margin: 0;
}
.solutions__media img {
  display: block;
  width: 76%;
  height: auto;
  box-shadow: 5px 13px 18px 0px rgba(0, 0, 0, 0.16);
}

/* 画像上の緑リボン */
.solutions__ribbon {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  /* 行間の隙間 */
  position: absolute;
  right: 5%;
  bottom: 4%;
}

.solutions__ribbon span {
  display: inline-block;
  background: #627962;
  color: #f1eceb;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding: 6px 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  width: -moz-fit-content;
  width: fit-content;
}

/* ===== 本文カード ===== */
.solutions__body {
  padding: 1.8rem 1rem 5rem;
  color: #363427;
  font-size: 1.45rem;
  line-height: 1.9;
}
.solutions__body p {
  margin: 0 0 10px;
}
.solutions__body p:last-child {
  margin-bottom: 0;
}

.solutions__item:nth-child(even) {
  margin: 0;
  /* ===== バッジ画像 ===== */
}
.solutions__item:nth-child(even) .solution__bage {
  position: absolute;
  left: 3.6rem;
  top: 4.5rem;
}
.solutions__item:nth-child(even) .solutions__media {
  position: relative;
  margin: 0;
}
.solutions__item:nth-child(even) .solutions__media img {
  display: block;
  margin-left: auto;
  width: 76%;
  height: auto;
  box-shadow: 5px 13px 18px 0px rgba(0, 0, 0, 0.16);
}
.solutions__item:nth-child(even) .solutions__ribbon {
  left: 6%;
  bottom: 13%;
  text-align: start;
}

.solutions__item:nth-child(5n) {
  margin-top: -1rem;
  /* ===== バッジ画像 ===== */
}
.solutions__item:nth-child(5n) .solution__bage {
  position: absolute;
  right: 3rem;
  top: -0.5rem;
}
.solutions__item:nth-child(5n) .solutions__ribbon {
  right: 6%;
  bottom: 41%;
}
.solutions__item:nth-child(5n) .solution__addMedia {
  position: absolute;
  width: 18.1rem;
  top: 30%;
  right: 4rem;
}
.solutions__item:nth-child(5n) .solutions__body {
  padding-top: 7rem;
}

.solutions__item:nth-child(6n) {
  margin-top: -2rem;
}
.solutions__item:nth-child(6n) .solution__addMedia {
  position: absolute;
  width: 18.1rem;
  top: 20%;
  left: 1rem;
}
.solutions__item:nth-child(6n) .solutions__body {
  padding: 4rem 1rem 2.5rem;
}

@media (min-width: 751px) {
  .solutions {
    margin-top: -170px;
    padding: 220px 0 0;
  }
  .solutions__title {
    margin: 0 0 40px;
  }
  .solutions__list {
    padding-top: 20px;
  }
  /* ===== バッジ画像 ===== */
  .solution__bage {
    position: absolute;
    right: 72px;
    top: 50px;
    width: 94px;
  }
  /* ===== 画像 ===== */
  .solutions__media {
    position: relative;
    margin: 0;
  }
  /* 画像上の緑リボン */
  .solutions__ribbon {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    /* 行間の隙間 */
    position: absolute;
    right: 5%;
    bottom: 4%;
  }
  .solutions__ribbon span {
    display: inline-block;
    background: #627962;
    color: #f1eceb;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.6;
    padding: 6px 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    width: -moz-fit-content;
    width: fit-content;
  }
  /* ===== 本文カード ===== */
  .solutions__body {
    padding: 36px 20px 100px;
    color: #363427;
    font-size: 29px;
    line-height: 1.9;
  }
  .solutions__item:nth-child(even) {
    margin: 0;
    /* ===== バッジ画像 ===== */
  }
  .solutions__item:nth-child(even) .solution__bage {
    position: absolute;
    left: 72px;
    top: 90px;
  }
  .solutions__item:nth-child(even) .solutions__media {
    position: relative;
    margin: 0;
  }
  .solutions__item:nth-child(even) .solutions__media img {
    display: block;
    margin-left: auto;
    width: 76%;
    height: auto;
    box-shadow: 5px 13px 18px 0px rgba(0, 0, 0, 0.16);
  }
  .solutions__item:nth-child(even) .solutions__ribbon {
    left: 6%;
    bottom: 13%;
    text-align: start;
  }
  .solutions__item:nth-child(5n) {
    margin-top: -20px;
    /* ===== バッジ画像 ===== */
  }
  .solutions__item:nth-child(5n) .solution__bage {
    position: absolute;
    right: 60px;
    top: -10px;
  }
  .solutions__item:nth-child(5n) .solutions__ribbon {
    right: 6%;
    bottom: 41%;
  }
  .solutions__item:nth-child(5n) .solution__addMedia {
    position: absolute;
    width: 362px;
    top: 30%;
    right: 80px;
  }
  .solutions__item:nth-child(5n) .solutions__body {
    padding-top: 140px;
  }
  .solutions__item:nth-child(6n) {
    margin-top: -40px;
  }
  .solutions__item:nth-child(6n) .solution__addMedia {
    position: absolute;
    width: 362px;
    top: 20%;
    left: 20px;
  }
  .solutions__item:nth-child(6n) .solutions__body {
    padding: 80px 20px 50px;
  }
}
@media (max-width: 400px) {
  /* ===== バッジ画像 ===== */
  .solution__bage {
    position: absolute;
    right: 3.6rem;
    top: 1.5rem;
    width: 4.7rem;
  }
  .solutions__item:nth-child(even) {
    margin: 0;
    /* ===== バッジ画像 ===== */
  }
  .solutions__item:nth-child(even) .solution__bage {
    position: absolute;
    left: 3.6rem;
    top: 3.5rem;
  }
  .solutions__item:nth-child(5n) {
    margin-top: -1rem;
    /* ===== バッジ画像 ===== */
  }
  .solutions__item:nth-child(5n) .solution__bage {
    position: absolute;
    right: 3rem;
    top: -1.5rem;
  }
}
/* --- concept ---  */
.concept {
  width: 100%;
  background-color: #627962;
  padding: 1.5rem 1rem 3.5rem;
}

.profile__card {
  background-color: #f1eceb;
  border-radius: 2.5rem;
  padding: 1.9rem 1.5rem 3rem;
}

.profile__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.profile__avatar {
  width: 12rem;
  height: auto;
}

.profile__namewrap {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.2;
}

.profile__en {
  font-size: 2.4rem;
  color: rgba(98, 121, 98, 0.4);
  font-family: "EB Garamond", sans-serif;
}

.profile__jp {
  font-size: 3.4rem;
  color: #627962;
  font-weight: 600;
}

.profile__role {
  font-size: 1.8rem;
  color: #627962;
}

.profile__body {
  margin-top: 2.6rem;
}

.profile__block-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.profile__timeline {
  margin: 0 0 2em;
}

.profile__row {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  /* 年の幅 */
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
}

.profile__row dt {
  font-weight: 400;
}

.profile__row dd {
  margin: 0;
  color: #363427;
  line-height: 1.2;
}

.profile__block {
  margin-bottom: 2em;
  padding-left: 1.1em;
  color: #363427;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
}
.profile__block li + li {
  margin-top: 2px;
}
.profile__block:last-child {
  margin-bottom: 0;
}

.profile__paper-title {
  font-size: 0.95rem;
  letter-spacing: -0.04em;
  line-height: 1.5;
}

.concept__title {
  padding: 3.4rem 0 0;
  text-align: center;
  color: #fff;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.3;
  font-size: 2.6rem;
  font-weight: 600;
}
.concept__title .concept__subtitle {
  display: block;
  font-family: "EB Garamond", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}

.more__item {
  margin: 3.35rem auto 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

.more__item summary {
  max-width: 580px;
  width: 81.4%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #f1eceb;
  padding: 1.3rem 3.3rem 1.25rem 10.45rem;
  font-size: 1.45em;
  color: #363427;
  cursor: pointer;
  list-style: none;
}

.more__item summary::-webkit-details-marker {
  display: none;
}

.more__item summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 7rem;
  border-bottom: 0.2rem solid #363427;
  border-right: 0.2rem solid #363427;
  content: "";
  transition: transform 0.5s;
  color: #fff;
}

.more__item[open] summary::after {
  transform: rotate(225deg);
}

.more__item div {
  margin-top: 2.2rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.more__item p {
  max-width: 718px;
  width: 100%;
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  color: #fff;
  transition: transform 0.5s, opacity 0.5s;
}

.more__item span {
  font-size: 1.8rem;
  font-weight: 600;
}

.more__item[open] p {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  opacity: 1;
  line-height: 1.6;
  letter-spacing: 0px;
}

.more__item[open] span {
  transform: none;
  opacity: 1;
  line-height: 1.6;
  letter-spacing: 0;
}

/* --- レスポンシブ ---  */
@media (min-width: 751px) {
  .concept {
    width: 100%;
    padding: 30px 20px 70px;
  }
  .profile__card {
    border-radius: 50px;
    padding: 38px 30px 60px;
  }
  .profile__head {
    gap: 40px;
  }
  .profile__avatar {
    width: 240px;
    height: auto;
  }
  .profile__en {
    font-size: 48px;
  }
  .profile__jp {
    font-size: 68px;
  }
  .profile__role {
    font-size: 36px;
  }
  .profile__body {
    margin-top: 52px;
  }
  .profile__block-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .profile__timeline {
    margin: 0 0 40px;
  }
  .profile__row {
    display: grid;
    grid-template-columns: 56px 1fr;
    /* 年の幅 */
    gap: 10px;
    padding: 6px 0;
    font-size: 19px;
  }
  .profile__block {
    margin-bottom: 40px;
    padding-left: 22px;
  }
  .profile__paper-title {
    font-size: 19px;
    letter-spacing: -0.04em;
    line-height: 1.5;
  }
  .concept__title {
    padding: 68px 0 0;
    font-size: 52px;
    font-weight: 600;
  }
  .concept__title .concept__subtitle {
    font-size: 30px;
  }
  .more__item {
    margin: 67px auto 0;
  }
  .more__item summary {
    padding: 26px 66px 25px 209px;
    font-size: 29px;
  }
  .more__item summary::after {
    width: 15px;
    height: 15px;
    margin-left: 14px;
    border-bottom: 4px solid #363427;
    border-right: 4px solid #363427;
  }
  .more__item div {
    margin-top: 44px;
    margin-left: 20px;
    gap: 70px;
  }
  .more__item p {
    font-size: 28px;
  }
  .more__item span {
    font-size: 36px;
  }
}
.plan {
  padding: 2rem 0;
  background: #f1eceb;
  text-align: center;
}

/* タイトル */
.plans__title {
  text-align: center;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.6rem;
  margin: 0 0 8px;
  line-height: 1.5;
}
.plans__title span {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #363427;
}

.plans__catch {
  font-size: 2.75rem;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  color: #627962;
  margin: 3.1rem 0 2.5rem;
}

/* 帯 */
.plans__band {
  background: #627962;
  color: #fff;
  padding: 2.4rem 0;
  margin: 2.5rem 0 0.9rem;
  text-align: center;
  font-size: 1.25rem;
}

/* --- 初回キャンペーン --- */
.plans__promo {
  margin: 0 1rem 1.2rem;
}
.plans__promo .plans__promo--card {
  background: #fff;
  border: 0.1rem solid #627962;
  padding: 0.8rem 16px;
  position: relative;
}
.plans__promo .promo__lead {
  font-weight: 500;
  font-size: 1.8rem;
  color: #627962;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 6px;
}
.plans__promo .promo__normal {
  font-size: 2.2rem;
  color: #627962;
  margin-bottom: 12px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  position: relative;
  display: inline-block;
}
.plans__promo .promo__normal .promo__normal-text {
  font-size: 3rem;
}
.plans__promo .promo__normal .promo__normal-price {
  font-family: "EB Garamond", sans-serif;
  color: #627962;
  font-size: 3.6rem;
  margin: 0 4px;
}
.plans__promo .promo__normal::before {
  content: "";
  position: absolute;
  top: 59%;
  left: -0.5rem;
  width: 106%;
  height: 0.1rem;
  background: currentColor;
  transform: rotate(-11deg);
  transform-origin: center;
}
.plans__promo .promo__tax {
  position: absolute;
  font-size: 0.6rem;
  color: #627962;
  top: 3.5rem;
  right: 9.5rem;
}

.promo__arrow {
  width: 0;
  height: 0;
  border-left: 1.925rem solid transparent;
  border-right: 1.925rem solid transparent;
  border-top: 1.3rem solid #627962;
  margin: 0.9rem auto 1rem;
}

.promo__choices {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: #f84004;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.promo__choices .choice {
  text-align: center;
}
.promo__choices .choice .choice__label {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.75rem;
  border-bottom: 0.08rem solid #f84004;
}
.promo__choices .choice .choice__label .font__en {
  font-style: italic;
  font-size: 1.7rem;
}
.promo__choices .choice .choice__label .font__smoll {
  font-size: 1.2rem;
}
.promo__choices .choice .choice__free {
  font-size: 4.8rem;
  font-weight: 700;
  color: #e8451b;
}
.promo__choices .promo__or {
  align-self: center;
  font-size: 2.4rem;
}

.promo__more {
  font-size: 12px;
  background-image: url(../images/plans__triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  padding: 0.75rem 3.5rem 1.5rem;
  margin: -0.8rem auto 1.2rem;
  position: relative;
}
.promo__more span {
  color: #fff;
  font-size: 1.1rem;
}

.promo__join {
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #627962;
}

.promo__joinline {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: #627962;
  font-size: 2.9rem;
  margin-bottom: 0.8rem;
  line-height: 1em;
}
.promo__joinline .font__en {
  font-family: "EB Garamond", sans-serif;
  font-size: 3.9rem;
  font-style: italic;
}
.promo__joinline .font__smoll {
  font-size: 2.3rem;
}

.promo__freebig {
  display: block;
  margin: 0 auto;
  padding-bottom: 0.7rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 6rem;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  color: #e8451b;
  border-bottom: 0.08rem solid #f84004;
}

/* --- プラン一覧 --- */
.plans__list {
  list-style: none;
  margin: 3.75rem 1.2rem 0;
  padding: 0;
  display: grid;
  gap: 3.35rem;
}
.plans__list .plan {
  background: #fff;
  border: 0.1rem solid #627962;
  padding: 1rem 0.8rem 1.8rem;
  text-align: left;
}
.plans__list .plan .plan__tag {
  background: #627962;
  color: #fff;
  display: block;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.35rem;
  margin: -2.5rem auto 1.1rem;
  padding: 0.7rem 1.2rem;
}
.plans__list .plan .plan__name {
  color: #627962;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}
.plans__list .plan .plan__inner {
  width: 87.1%;
  height: auto;
  margin: 0 auto;
}
.plans__list .plan .plan__price {
  margin: 0 0 0.8rem;
  display: grid;
  color: #627962;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.plans__list .plan .plan__price dt {
  font-size: 1.8rem;
  padding: 0.75rem 1.1rem;
}
.plans__list .plan .plan__price .plan__price--month {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.1rem;
}
.plans__list .plan .plan__price .plan__price--month dt {
  border: 0.05rem solid #627962;
}
.plans__list .plan .plan__price .plan__price--month .plan__price-month {
  font-family: "EB Garamond", sans-serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 1em;
  margin: 0;
}
.plans__list .plan .plan__price .plan__price--month .plan__price-month .font__smoll {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.75rem;
}
.plans__list .plan .plan__price .border__line {
  width: 29rem;
  margin: 0.65rem auto 0;
  border-bottom: 0.05rem solid #627962;
}
.plans__list .plan .plan__price .plan__price--onece {
  margin-top: 0.3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5rem;
}
.plans__list .plan .plan__price .plan__price--onece dt {
  display: inline-block;
  background: #627962;
  color: #fff;
  padding: 1.2rem 0 1.2rem 0.5rem;
  position: relative;
}
.plans__list .plan .plan__price .plan__price--onece dt::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.75rem;
  /* 矢印の横幅 */
  width: 0;
  height: 0;
  border-top: 2.1rem solid transparent;
  border-bottom: 2.1rem solid transparent;
  border-left: 1.8rem solid #627962;
}
.plans__list .plan .plan__price .plan__price--onece .plan__price-per {
  font-size: 5.65rem;
  font-weight: 700;
  color: #f84004;
  font-family: "EB Garamond", sans-serif;
  font-weight: 400;
  line-height: 1em;
}
.plans__list .plan .plan__price .plan__price--onece .plan__price-per .font__smoll {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 4.3rem;
}
.plans__list .plan .plan__features {
  margin: 0;
  padding: 0.8rem 0.8rem 1.1rem 1rem;
  background: #627962;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
}
.plans__list .plan .plan__features li + li {
  margin-top: 4px;
}

.plans__text {
  font-size: 2.7rem;
  color: #627962;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  line-height: 1.5em;
}

@media (min-width: 751px) {
  .plan {
    padding: 40px 0;
  }
  /* タイトル */
  .plans__title {
    font-size: 52px;
    margin: 0 0 8px;
    line-height: 1.5;
  }
  .plans__title span {
    display: block;
    font-size: 30px;
  }
  .plans__catch {
    font-size: 55px;
    margin: 62px 0 50px;
  }
  /* 帯 */
  .plans__band {
    padding: 48px 0;
    margin: 50px 0 18px;
    font-size: 25px;
  }
  /* --- 初回キャンペーン --- */
  .plans__promo {
    margin: 0 20px 24px;
  }
  .plans__promo .plans__promo--card {
    border: 2px solid #627962;
    padding: 16px 16px;
  }
  .plans__promo .promo__lead {
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 6px;
  }
  .plans__promo .promo__normal {
    font-size: 44px;
    margin-bottom: 12px;
  }
  .plans__promo .promo__normal .promo__normal-text {
    font-size: 60px;
  }
  .plans__promo .promo__normal .promo__normal-price {
    font-size: 72px;
    margin: 0 4px;
  }
  .plans__promo .promo__normal::before {
    content: "";
    position: absolute;
    top: 59%;
    left: -10px;
    width: 106%;
    height: 2px;
    background: currentColor;
    transform: rotate(-11deg);
    transform-origin: center;
  }
  .plans__promo .promo__tax {
    font-size: 12px;
    top: 70px;
    right: 190px;
  }
  .plans__promo .promo__arrow {
    width: 0;
    height: 0;
    border-left: 38.5px solid transparent;
    border-right: 38.5px solid transparent;
    border-top: 26px solid #627962;
    margin: 18px auto 20px;
  }
  .plans__promo .promo__choices {
    gap: 16px;
    margin-bottom: 20px;
  }
  .plans__promo .promo__choices .choice {
    text-align: center;
  }
  .plans__promo .promo__choices .choice .choice__label {
    font-size: 28px;
    letter-spacing: -0.04em;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 15px;
    border-bottom: 1.6px solid #f84004;
  }
  .plans__promo .promo__choices .choice .choice__label .font__en {
    font-style: italic;
    font-size: 34px;
  }
  .plans__promo .promo__choices .choice .choice__label .font__smoll {
    font-size: 24px;
  }
  .plans__promo .promo__choices .choice .choice__free {
    font-size: 96px;
  }
  .plans__promo .promo__choices .promo__or {
    align-self: center;
    font-size: 48px;
  }
  .plans__promo .promo__more {
    font-size: 12px;
    padding: 15px 70px 30px;
    margin: -16px auto 24px;
  }
  .plans__promo .promo__more span {
    font-size: 22px;
  }
  .plans__promo .promo__join {
    font-size: 37px;
    margin-bottom: 30px;
  }
  .plans__promo .promo__joinline {
    font-size: 38px;
    margin-bottom: 16px;
  }
  .plans__promo .promo__joinline .font__en {
    font-size: 78px;
  }
  .plans__promo .promo__joinline .font__smoll {
    font-size: 46px;
  }
  .plans__promo .promo__freebig {
    padding-bottom: 14px;
    font-size: 120px;
    border-bottom: 1.6px solid #f84004;
  }
  /* --- プラン一覧 --- */
  .plans__list {
    list-style: none;
    margin: 75px 24px 0;
    gap: 67px;
  }
  .plans__list .plan {
    border: 2px solid #627962;
    padding: 20px 16px 36px;
  }
  .plans__list .plan .plan__tag {
    font-size: 27px;
    margin: -35px auto 22px;
    padding: 4px 24px;
  }
  .plans__list .plan .plan__name {
    font-size: 36px;
    margin-bottom: 1.5rem;
  }
  .plans__list .plan .plan__price {
    margin: 0 0 16px;
  }
  .plans__list .plan .plan__price dt {
    font-size: 36px;
    padding: 15px 22px;
  }
  .plans__list .plan .plan__price .plan__price--month {
    gap: 42px;
  }
  .plans__list .plan .plan__price .plan__price--month dt {
    border: 1px solid #627962;
  }
  .plans__list .plan .plan__price .plan__price--month .plan__price-month {
    font-size: 92px;
  }
  .plans__list .plan .plan__price .plan__price--month .plan__price-month .font__smoll {
    font-size: 55px;
  }
  .plans__list .plan .plan__price .border__line {
    width: 580px;
    margin: 13px auto 0;
    border-bottom: 1px solid #627962;
  }
  .plans__list .plan .plan__price .plan__price--onece {
    margin-top: 6px;
    gap: 50px;
  }
  .plans__list .plan .plan__price .plan__price--onece dt {
    padding: 24px 0 24px 10px;
  }
  .plans__list .plan .plan__price .plan__price--onece dt::after {
    content: "";
    position: absolute;
    top: 0;
    right: -35px;
    /* 矢印の横幅 */
    width: 0;
    height: 0;
    border-top: 42px solid transparent;
    border-bottom: 42px solid transparent;
    border-left: 36px solid #627962;
  }
  .plans__list .plan .plan__price .plan__price--onece .plan__price-per {
    font-size: 113px;
  }
  .plans__list .plan .plan__price .plan__price--onece .plan__price-per .font__smoll {
    font-size: 86px;
  }
  .plans__list .plan .plan__features {
    margin: 0;
    padding: 16px 16px 22px 20px;
    font-size: 26px;
  }
  .plans__text {
    font-size: 54px;
  }
}
.trainer {
  background: #627962;
  padding: 1.4rem 1.2rem 1.8rem;
}

/* 見出し */
.trainer__title {
  text-align: center;
  color: #fff;
  margin: 0 0 18px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.3;
  font-size: 2.6rem;
  font-weight: 600;
}
.trainer__title .trainer__eyebrow {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
}

/* ── カード全体 ───────────────────────── */
.trainer__card {
  background: #f1eceb;
  border-radius: 2.5rem;
  padding: 2.9rem 1.3rem;
  max-width: 710px;
  margin: 0 auto 20px;
}

/* プロフィール行（写真＋名前） */
.trainer__profile--head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.trainer__profile--head:nth-child(2n) {
  margin-top: 3rem;
}
.trainer__profile--head .profile__namewrap {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.2;
}
.trainer__profile--head .trainer__profile--en {
  font-size: 2.4rem;
  color: rgba(98, 121, 98, 0.4);
  font-family: "EB Garamond", sans-serif;
  letter-spacing: -0.01em;
}
.trainer__profile--head .trainer__name {
  font-size: 3.4rem;
  color: #627962;
  font-weight: 600;
}

/* 自己紹介テキスト */
.trainer__bio {
  color: #363427;
  line-height: 1.9;
  margin-top: 1.9rem;
  font-size: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.trainer__bio p {
  margin: 0 0 1.5rem;
}

.trainer__bio.font-smoll {
  font-size: 1.2rem;
}

/* 資格ボックス */
.trainer__qualification {
  border: 0.1rem solid #363427;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 1rem 0 1.5rem 1rem;
}
.trainer__qualification .trainer__qualification-title {
  margin: 0 0 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #363427;
}
.trainer__qualification ul {
  margin: 0;
  padding-left: 1.1em;
  font-size: 1.25rem;
  color: #363427;
  line-height: 1.8;
  list-style: disc;
}

@media (min-width: 751px) {
  .trainer {
    padding: 28px 24px 36px;
  }
  /* 見出し */
  .trainer__title {
    margin: 0 0 18px;
    font-size: 52px;
  }
  .trainer__title .trainer__eyebrow {
    display: block;
    font-size: 30px;
  }
  /* ── カード全体 ───────────────────────── */
  .trainer__card {
    border-radius: 50px;
    padding: 58px 26px;
    max-width: 710px;
    margin: 0 auto 20px;
  }
  /* プロフィール行（写真＋名前） */
  .trainer__profile--head {
    gap: 30px;
  }
  .trainer__profile--head:nth-child(2n) {
    margin-top: 60px;
  }
  .trainer__profile--head .trainer__profile--en {
    font-size: 48px;
  }
  .trainer__profile--head .trainer__name {
    font-size: 68px;
  }
  /* 自己紹介テキスト */
  .trainer__bio {
    margin-top: 38px;
    font-size: 25px;
  }
  .trainer__bio p {
    margin: 0 0 30px;
  }
  .trainer__bio.font-smoll {
    font-size: 24px;
  }
  /* 資格ボックス */
  .trainer__qualification {
    border: 2px solid #363427;
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding: 20px 0 30px 20px;
  }
  .trainer__qualification .trainer__qualification-title {
    margin: 0 0 16px;
    font-size: 30px;
  }
  .trainer__qualification ul {
    margin: 0;
    padding-left: 22px;
    font-size: 25px;
  }
}
.freetrial {
  position: relative;
  padding: 1.8rem 1.25rem 2rem;
  background-image: url(../images/bg__freetrial.jpg);
  overflow: hidden;
  /* 中央の縦の破線 */
}
.freetrial::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 13rem;
  /* タイトル下から */
  bottom: 10.7rem;
  left: 50%;
  width: 0.15rem;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(to bottom, rgba(255, 240, 109, 0.9) 0 0.6rem, transparent 8px 18px);
  pointer-events: none;
}

/* 見出し */
.flow__title {
  text-align: center;
  color: #363427;
  margin: 0 0 18px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.3;
  font-size: 2.6rem;
  font-weight: 600;
}
.flow__title .flow__eyebrow {
  display: block;
  font-size: 1.5rem;
  color: #363427;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
}

/* リスト全体 */
.flow__list {
  counter-reset: step;
  /* 通し番号 */
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.9rem;
}

/* ====== 各ステップ ====== */
.flow__step {
  counter-increment: step;
  display: flex;
  background: #627962;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 8.9rem;
  z-index: 1;
  /* 白い丸い切り欠き（左上） */
  /* 通し番号（白い切り欠きの上に） */
  /* 左の緑帯 */
  /* 右の写真 */
}
.flow__step::before {
  content: "";
  background-image: url(../images/bg__freetrial--step.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -0.1rem;
  top: 0;
  width: 5.7rem;
  height: 5rem;
  /* 見切れを馴染ませる */
  z-index: 0;
}
.flow__step::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: "EB Garamond", sans-serif;
  font-size: 2.65rem;
  color: #627962;
  font-weight: 600;
  font-style: italic;
  z-index: 1;
}
.flow__step .flow__content {
  position: relative;
  color: #fff;
  padding: 0 0 0 5.5rem;
  /* 左は番号スペース分 */
}
.flow__step .flow__heading {
  margin: 0 0 6px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.65rem;
  line-height: 1.5;
}
.flow__step .flow__desc {
  margin: 0 0 0.3rem;
  line-height: 1.5;
  font-size: 0.9rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.flow__step .flow__btn {
  display: inline-block;
  background: #fff;
  color: #02b902;
  border: 0.1rem solid #02b902;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.5rem;
  padding: 0.3rem 0.6rem;
}
.flow__step .flow__media {
  margin: 0;
  overflow: hidden;
  width: 13.25rem;
  height: auto;
}
.flow__step .flow__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 751px) {
  .freetrial {
    position: relative;
    padding: 36px 25px 40px;
    /* 中央の縦の破線 */
  }
  .freetrial::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 260px;
    /* タイトル下から */
    bottom: 214px;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background-image: repeating-linear-gradient(to bottom, rgba(255, 240, 109, 0.9) 0 12px, transparent 8px 18px);
    pointer-events: none;
  }
  /* 見出し */
  .flow__title {
    margin: 0 0 18px;
    font-size: 52px;
  }
  .flow__title .flow__eyebrow {
    display: block;
    font-size: 30px;
  }
  /* リスト全体 */
  .flow__list {
    gap: 38px;
  }
  /* ====== 各ステップ ====== */
  .flow__step {
    gap: 10px;
    height: 178px;
    /* 白い丸い切り欠き（左上） */
    /* 通し番号（白い切り欠きの上に） */
    /* 左の緑帯 */
  }
  .flow__step::before {
    content: "";
    background-image: url(../images/bg__freetrial--step.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: -2px;
    top: 0;
    width: 114px;
    height: 100px;
    /* 見切れを馴染ませる */
    z-index: 0;
  }
  .flow__step::after {
    font-size: 53px;
  }
  .flow__step .flow__content {
    padding: 0 0 0 110px;
    /* 左は番号スペース分 */
  }
  .flow__step .flow__heading {
    margin: 0 0 6px;
    font-size: 33px;
  }
  .flow__step .flow__desc {
    margin: 0 0 6px;
    line-height: 1.5;
    font-size: 18px;
  }
  .flow__step .flow__btn {
    border: 2px solid #02b902;
    border-radius: 999px;
    font-size: 10px;
    padding: 6px 12px;
  }
  .flow__step .flow__media {
    width: 265px;
    height: auto;
  }
}
.access {
  background: #627962;
  padding: 2.3rem 1.25rem 3.5rem;
}

/* 見出し */
.access__title {
  text-align: center;
  color: #fff;
  margin: 0 0 18px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.3;
  font-size: 2.6rem;
  font-weight: 600;
}
.access__title .access__eyebrow {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  font-family: "EB Garamond", sans-serif;
}

.map {
  margin: 3.15rem auto 0;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯” */
  height: 0;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.addoress {
  margin-top: 1.3rem;
  color: #fffefe;
}
.addoress p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.54rem;
  line-height: 1.8;
}

@media (min-width: 751px) {
  .access {
    padding: 46px 25px 70px;
  }
  /* 見出し */
  .access__title {
    margin: 0 0 18px;
    font-size: 52px;
  }
  .access__title .access__eyebrow {
    font-size: 30px;
  }
  .map {
    margin: 63px auto 0;
  }
  .addoress {
    margin-top: 26px;
    color: #fffefe;
  }
  .addoress p {
    font-size: 30.8px;
    line-height: 1.8;
  }
}
.blog {
  padding-bottom: 2.35rem;
  max-width: 750px;
}
.blog__header {
  position: relative;
  margin-bottom: 2rem;
  padding: 12rem 2rem 0;
  background-image: url("../images/blog__mv.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.blog__header .blog__text {
  width: 3.25rem;
  height: auto;
  display: block;
  margin: 1.75rem auto 0;
}
.blog__title {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: #627962;
  font-size: 4rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0px 0px 16px rgb(255, 255, 255);
}
.blog__list {
  margin: 0 2.5rem 2rem;
}
.blog__item {
  border-bottom: 0.05rem solid #627962;
  padding: 1rem 0 1.5rem 0.5rem;
}
.blog__item:first-child {
  border-top: 0.05rem solid #627962;
}
.blog__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.blog__article {
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blog__article .blog__date {
  font-size: 0.9rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
.blog__article .blog__excerpt {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.blog .blog__arrow {
  width: 1.2rem;
  height: auto;
}
.blog .pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.blog .pagination ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog .pagination li a,
.blog .pagination li span {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #f0f0f0;
  text-align: center;
  line-height: 2rem;
  font-size: 1.3rem;
  font-family: "EB Garamond", sans-serif;
  color: #20223f;
  text-decoration: none;
}
.blog .pagination li.active a {
  background: #627962;
  color: #fff;
}
.pager__next .blog .pagination::after {
  content: "";
  background-image: url("../images/blog__next--arrow.png");
  top: 59%;
  left: -10px;
  width: 0.7rem;
  height: 0.7rem;
  background: currentColor;
  transform: rotate(-11deg);
  transform-origin: center;
}
.blog__back {
  width: 77.3%;
  display: block;
  margin: 2rem auto;
  text-align: center;
  background: #f1eceb;
}
.blog__back .back__btn {
  display: flex;
  gap: 8.7rem;
  justify-content: flex-end;
  padding: 1.25rem 3.6rem 1.5rem 0;
  font-size: 1.5rem;
  color: #363427;
  text-decoration: none;
  border-radius: 4px;
}
.blog__back .back__btn img {
  width: 0.7rem;
  height: auto;
}
.blog__back .back__btn:hover {
  background: #ecebea;
}

@media (min-width: 751px) {
  .blog {
    padding-bottom: 47px;
  }
  .blog__header {
    position: relative;
    margin-bottom: 40px;
    padding: 240px 40px 0;
  }
  .blog__header .blog__text {
    width: 65px;
    height: auto;
    display: block;
    margin: 35px auto 0;
  }
  .blog__title {
    font-size: 80px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0px 0px 16px rgb(255, 255, 255);
  }
  .blog__list {
    margin: 0 50px 40px;
  }
  .blog__item {
    border-bottom: 1px solid #627962;
    padding: 20px 0 30px 10px;
  }
  .blog__item:first-child {
    border-top: 1px solid #627962;
  }
  .blog__article {
    gap: 30px;
  }
  .blog__article .blog__date {
    font-size: 18px;
  }
  .blog__article .blog__excerpt {
    font-size: 30px;
  }
  .blog .blog__arrow {
    width: 24px;
    height: auto;
  }
  .blog .pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
  }
  .blog .pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .blog .pagination li a,
  .blog .pagination li span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    text-align: center;
    line-height: 2em;
    font-size: 26px;
  }
  .blog .pagination li.active a {
    background: #627962;
    color: #fff;
  }
  .pager__next .blog .pagination::after {
    left: -10px;
    width: 14px;
    height: 14px;
  }
  .blog__back {
    width: 77.3%;
    display: block;
    margin: 40px auto;
  }
  .blog__back .back__btn {
    display: flex;
    gap: 174px;
    justify-content: flex-end;
    padding: 25px 72px 30px 0;
    font-size: 30px;
    color: #363427;
    text-decoration: none;
    border-radius: 4px;
  }
  .blog__back .back__btn img {
    width: 14px;
    height: auto;
  }
  .blog__back .back__btn:hover {
    background: #ecebea;
  }
}
.single {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.single__header {
  margin-bottom: 2rem;
  text-align: center;
}
.single__header .single__thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.single__header .single__meta {
  margin-top: 1rem;
}
.single__header .single__meta .single__date {
  font-size: 0.875rem;
  color: #666;
  display: block;
  margin-bottom: 0.5rem;
}
.single__header .single__meta .single__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2f3e2f;
}
.single .blog__inner {
  margin: 0 2.5rem 2rem;
}
.single__content {
  margin-top: 1.8rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}
.single__content p {
  margin-bottom: 1.5rem;
}
.single__back {
  width: 77.3%;
  display: block;
  margin: 2rem auto;
  text-align: center;
  background: #f1eceb;
}
.single__back .back__btn {
  display: flex;
  gap: 4.4rem;
  justify-content: flex-end;
  padding: 1.25rem 3.6rem 1.5rem 0;
  font-size: 1.5rem;
  color: #363427;
  text-decoration: none;
  border-radius: 4px;
}
.single__back .back__btn img {
  width: 0.7rem;
  height: auto;
}
.single__back .back__btn:hover {
  background: #ecebea;
}

@media (min-width: 751px) {
  .single {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  .single .blog__inner {
    margin: 0 50px 40px;
  }
  .single__content {
    margin-top: 36px;
    font-size: 30px;
  }
  .single__content p {
    margin-bottom: 30px;
  }
  .single__back {
    width: 77.3%;
    display: block;
    margin: 40px auto;
    text-align: center;
    background: #f1eceb;
  }
  .single__back .back__btn {
    display: flex;
    gap: 88px;
    justify-content: flex-end;
    padding: 25px 78px 30px 0;
    font-size: 30px;
    color: #363427;
    text-decoration: none;
    border-radius: 4px;
  }
  .single__back .back__btn img {
    width: 14px;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */