/* BEM + ITCSS */

/* ============================================
   Settings: 変数やフォント設定
============================================ */

:root {
  --color-primary: #229973;
  --color-secondary: #e1f0ec;
  --color-tertiary: #f15a24;
  --color-quaternary: #ddd;
  --color-accent: #e8340c;
  --color-white: #fff;
  --color-black: #000;
  --color-font: #333;
  --width-max: 1200px;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  --weight-black: 900;
  --family-zen: "Zen Kaku Gothic New", serif;
  --family-noto: "Noto Sans JP", sans-serif;
  --anime-short: .3s;
  --opacity-hover: .7;
}


/* ============================================
   Generic: リセットやベーススタイル
============================================ */

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

body {
  font-family: var(--family-zen);
  font-weight: 400;
  font-style: normal;
  min-width: var(--width-max);
}


/* ============================================
   Objects: レイアウトやコンポーネント
============================================ */

.o-inner {
  max-width: var(--width-max);
  width: 1200px;
  margin: auto;
}
.o-content {
  padding: 50px 0 0;
}
.o-content-top {
  padding: 70px 0;
  background-color: #f7f7f7;
  border-bottom: 2px solid var(--color-font);
}
.o-content-column {
  display: grid;
  grid-template-columns: 890px 260px;
  gap: 50px;
}
.o-main {
  width: 890px;
}
.o-section + .o-section {
  margin-top: 100px;
}
.o-section-top {
  margin-top: 60px;
}
.o-grid {
  display: grid;
}
.o-grid-two {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.o-grid-two-large {
  grid-template-columns: 1fr 1fr;
  gap: 110px 40px;
}
.o-grid-three {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 23px;
}
.o-grid-five {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.o-post {
  width: 890px;
  padding: 60px 55px;
  border: 5px solid var(--color-primary);
  border-radius: 20px;
}

/* ============================================
   Components: BEMで管理するスタイル
============================================ */

/* c-header */
.c-header {
  border-bottom: 1px solid var(--color-primary);
}
.c-header__bg {
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
  padding: 7px 0;
  z-index: 100;
}
.c-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  min-height: 120px;
}
.c-header__cta {
  display: flex;
  align-items: center;
}

/* c-header-logo */
.c-header-logo {
  display: block;
  line-height: 0;
  transition: opacity var(--anime-short);
}
.c-header-logo:hover {
  opacity: var(--opacity-hover);
}
.c-header-logo__title {
  max-width: 512px;
}

/* c-header-tel */
.c-header-tel {
  text-decoration: none;
  color: var(--color-black);
  pointer-events: none;
}
.c-header-tel__box {
  display: flex;
  align-items: center;
}
.c-header-tel__icon {
  width: 52px;
}
.c-header-tel__text {
  display: block;
  font-size: 45px;
  font-weight: var(--weight-bold);
}

/* c-header-mail */
.c-header-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 230px;
  height: 70px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: var(--weight-bold);
  transition: opacity var(--anime-short);
}
.c-header-mail:hover {
  opacity: var(--opacity-hover);
}
.c-header-mail__icon {
  width: 28px;
}
/* c-sp-icon */
.c-sp-icon {
  display: none;
}
.c-sp-icon__list {
  display: flex;
  gap: 10px;
}
.c-sp-icon__item {
  list-style: none;
}
.c-sp-icon__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-tertiary);
  border-radius: 2px;
  width: 35px;
  height: 35px;
  padding: 8px;
  text-decoration: none;
}
.c-sp-icon__icon--tel {
  width: 19px;
  height: 12.5px;
}
.c-sp-icon__icon--mail {
  width: 16px;
  height: 12.5px;
}
.c-sp-icon__text {
  margin-top: auto;
  color: var(--color-white);
  font-size: 8px;
  font-weight: var(--weight-bold);
}
.c-sp-icon__link {
  color: var(--color-white);
  font-size: 8px;
  font-weight: var(--weight-bold);
}
.c-sp-icon__menu {
  width: 100%;
  cursor: pointer;
  z-index: 20;
  margin: 4px 0 6px;
  margin: 0;
}
.c-sp-icon__bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  /* margin: 8px 0; */
  margin: 3px 0;
  transition: var(--anime-short);
}
.c-sp-icon__bar:nth-child(1) {
  margin-top: 0;
}
.c-sp-icon__bar:nth-child(3) {
  margin-bottom: 0;
}
.c-sp-icon__menu.is-active .c-sp-icon__bar:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.c-sp-icon__menu.is-active .c-sp-icon__bar:nth-child(2) {
  opacity: 0;
}
.c-sp-icon__menu.is-active .c-sp-icon__bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* c-hero */
.c-hero {
  border-bottom: 1px solid var(--color-primary);
}
.c-hero__unit {
  margin-bottom: 60px;
}
.c-hero__link {
  display: flex;
  gap: 30px;
  color: var(--color-font);
  text-decoration: none;
  transition: opacity var(--anime-short);
}
.c-hero__link:hover {
  opacity: var(--opacity-hover);
}
.c-hero__main {
  position: relative;
  overflow: hidden;
  width: 600px;
  height: 390px;
}
.c-hero__detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 570px;
}
.c-hero__thumb {
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.c-hero__title {
  margin-top: 30px;
  font-size: 50px;
  font-weight: var(--weight-bold);
}
.c-hero__list {
  margin-top: 5px;
  margin-bottom: 25px;
}
.c-hero__item {
  display: inline;
  font-size: 13px;
  font-weight: var(--weight-bold);
  list-style: none;
}
.c-hero__item::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_pen.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: .4em;
  width: 12px;
  height: 11px;
}
.c-hero__item + .c-hero__item {
  margin-left: 1em;
}

/* c-post-list */
.c-post-list + .c-post-list {
  margin-top: 140px;
}
.c-post-list--top {
  margin-top: 60px;
}
.c-post-list__heading {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  font-size: 35px;
  font-weight: var(--weight-bold);
}
.c-post-list__heading::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_doc_g.svg);
  padding-right: .2em;
  width: 45px;
  height: 49px;
  background-repeat: no-repeat;
}
.c-post-list__heading--category::before {
  background-image: url(../img/icon_folder.svg);
  width: 45px;
  height: 34.6px;
}
.c-post-list__wrap {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}
.c-post-list__wrap--post {
  gap: 55px 65px;
}
.c-post-list__wrap--category {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.c-post-list__pager {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-post-list__pager .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-post-list__pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding: 10px;
  min-width: 40px;
  height: 40px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--weight-bold);
  border: 2px solid var(--color-primary);
  border-radius: 5px;
  transition: background-color var(--anime-short), color var(--anime-short);
}
.c-post-list__pager .page-numbers.current,
.c-post-list__pager .page-numbers:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.c-post-list__none {
  margin: 3em;
  font-size: 20px;
  text-align: center;
}

/* c-post-item */
.c-post-item {
  display: flex;
  gap: 10px;
  min-width: 425px;
  text-decoration: none;
  color: var(--color-font);
  transition: opacity var(--anime-short);
}
.c-post-item:hover {
  opacity: var(--opacity-hover);
}
.c-post-item__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-post-item__box--small {
  gap: 10px;
  max-width: 186px;
}
.c-post-item__wrap {
  position: relative;
  overflow: hidden;
  width: 248px;
  height: 160px;
  max-width: inherit;
  height: auto;
}
.c-post-item__thumb {
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.c-post-item__detail {
  flex: 1;
}
.c-post-item__title {
  margin: 15px auto;
  color: var(--color-font);
  font-size: 25px;
  font-weight: var(--weight-bold);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-post-item__title--small {
  font-size: 16px;
}

/* c-category-item */
.c-category-item {
  background-color: var(--color-secondary);
  font-size: 20px;
  font-weight: var(--weight-bold);
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  list-style: none;
}
.c-category-item__link {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
  min-height: 60px;
  width: 282px;
  padding: 15px 20px;
  transition: opacity var(--anime-short);
}
.c-category-item__link::before {
  content: "";
  background-image: url(../img/icon_folder.svg);
  margin-right: .5em;
  width: 26px;
  height: 20px;
  background-repeat: no-repeat;
}
.c-category-item__link:hover {
  opacity: var(--opacity-hover);
}

/* c-post-categories */
.c-post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-post-categories--small {
  gap: 5px;
}
.c-post-categories__item {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: var(--weight-bold);
  list-style: none;
  border-radius: 3px;
  transition: opacity var(--anime-short);
}
.c-post-categories__item--small {
  padding: 3px 6.5px;
  font-size: 10px;
}
.c-post-categories__item--link {
  padding: 0;
}
.c-post-categories__link {
  display: block;
  padding: 6px 12px;
  color: inherit;
  text-decoration: none;
}
.c-post-categories__link:hover {
  opacity: var(--opacity-hover);
}


/* c-post-time */
.c-post-time {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 13px;
  font-weight: var(--weight-bold);
}
.c-post-time::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_time.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: .4em;
  width: 12.75px;
  height: 12px;
}
.c-post-time--row {
  margin-top: 0;
  margin-left: 20px;
}

/* c-post-button */
.c-post-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  margin-top: 0;
  width: 248px;
  height: 34px;
  font-size: 15px;
  font-weight: var(--weight-bold);
  border-radius: 17px;
}
.c-post-button--small {
  width: 100%;
  height: 26px;
  font-size: 12px;
}

/* c-bg */
.c-bg {
  max-width: var(--width-max);
  margin: 30px auto 0;
  width: 100%;
  height: 50px;
}

/* c-side */
.c-side-unit {
  margin-top: 60px;
}
.c-side-unit__title {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 30px;
  font-weight: var(--weight-bold);
}

/* c-side-banner */
.c-side-banner {
  transition: opacity var(--anime-short);
}
.c-side-banner:hover {
  opacity: var(--opacity-hover);
}

/* c-side-form */
.c-side-form {
  display: flex;
  width: 100%;
  height: 60px;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
}
.c-side-form__input {
  width: calc(100% - 60px);
  border: none;
  height: 100%;
  padding: 15px;
  font-size: 18px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.c-side-form__submit {
  background-color: var(--color-primary);
  width: 60px;
  border: none;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  cursor: pointer;
  transition: opacity var(--anime-short);
}
.c-side-form__submit:hover {
  opacity: var(--opacity-hover);
}
.c-side-form__icon {
  width: 38px;
  height: 38px;
}

/* c-side-item */
.c-side-item {
  list-style: none;
}
.c-side-item + .c-side-item {
  margin-top: 20px;
}
.c-side-item__link {
  color: var(--color-font);
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  gap: 14px;
  transition: opacity var(--anime-short);
}
.c-side-item__link:hover {
  opacity: var(--opacity-hover);
}
.c-side-item__wrap {
  position: relative;
  overflow: hidden;
  width: 94px;
  height: 70px;
}
.c-side-item__thumb {
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  width: 100%;
  max-width: 94px;
}
.c-side-item__title {
  margin-top: -.25em;
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* c-side-category */
.c-side-category {
  display: block;
  padding: 15px 0;
  list-style: none;
  border-top: 2px solid var(--color-primary);
}
.c-side-category__item:last-of-type {
  border-bottom: 2px solid var(--color-primary);
}
.c-side-category__link {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: var(--weight-bold);
  text-decoration: none;
  transition: opacity var(--anime-short);
}
.c-side-category__link:hover {
  opacity: var(--opacity-hover);
}
.c-side-category__link::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_folder.svg);
  margin-right: .5em;
  width: 26px;
  height: 20px;
}

/* c-side-other */
.c-side-other {
  padding: 20px 15px;
  border: 3px solid #998675;
  border-radius: 20px;
}

.c-side-other__text {
  font-size: 13px;
}

/* c-side-contact */
.c-side-contact {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 20px;
  border-radius: 20px;
}
.c-side-contact__title {
  text-align: center;
  font-size: 15px;
  font-weight: var(--weight-bold);
}
.c-side-contact__free {
  width: 37px;
  height: 24px;
}
.c-side-contact__tel {
  color: var(--color-white);
  font-size: 30px;
  font-weight: var(--color-white);
  font-weight: var(--weight-bold);
  text-decoration: none;
  pointer-events: none;
}
.c-side-contact__text {
  font-size: 10px;
  text-align: center;
  font-weight: var(--weight-bold);
}
.c-side-contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  color: var(--color-tertiary);
  margin-top: 15px;
  padding: 5px;
  width: 100%;
  text-decoration: none;
  font-weight: var(--weight-bold);
  transition: opacity var(--anime-short);
}
.c-side-contact__button:hover {
  opacity: var(--opacity-hover);
}
.c-side-contact__mail {
  margin-right: .5em;
  width: 28px;
  height: 22px;
}
.cc-side-ontact__head {
  font-size: 10px;
}
.c-side-contact__link {
  font-size: 15px;
}

/* c-title */
.c-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-tertiary);
  padding: 25px 35px 20px;
  border: 5px solid var(--color-tertiary);
  border-radius: 20px;
}
.c-title::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 26px solid var(--color-tertiary);
}
.c-title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 23px solid transparent;
  border-right: 23px solid transparent;
  border-top: 23px solid #f7f7f7;
  z-index: 1;
}
.c-title__main {
  display: block;
  padding-bottom: 10px;
  font-size: 60px;
  font-weight: var(--weight-black);
  border-bottom: 3px solid var(--color-tertiary);
}
.c-title__sub {
  display: block;
  margin-top: 10px;
  font-size: 25px;
  font-weight: var(--weight-bold);
}

/* c-unit */
.c-unit {
  padding-top: 60px;
}
.c-unit__title {
  margin: 10px auto;
  color: var(--color-tertiary);
  font-size: 45px;
  font-weight: var(--weight-black);
}
.c-unit__image {
  display: block;
  margin: 30px auto;
  width: 100%;
}
.c-unit__image--radius {
  border-radius: 20px;
}
.c-unit__sub {
  margin: 10px auto;
  color: var(--color-tertiary);
  font-size: 30px;
  font-weight: var(--weight-bold);
}
.c-unit__text {
  color: var(--color-font);
  margin: 10px auto;
  font-size: 20px;
  line-height: 1.75;
}
.c-unit__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 60px auto 20px;
}

/* c-figure */
.c-figure__image{
  width: 100%;
}

/* c-rel-list */
.c-rel-list {
  margin-top: 30px;
}
.c-rel-list__heading {
  display: flex;
  align-items: center;
  color: var(--color-font);
  font-size: 20px;
  font-weight: var(--weight-bold);
}
.c-rel-list__heading::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_doc_k.svg);
  width: 25px;
  height: 27px;
}
.c-rel-list__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 20px;
}

/* c-rel-item */
.c-rel-item {
  display: flex;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--anime-short);
}
.c-rel-item:hover {
  opacity: var(--opacity-hover);
}
.c-rel-item__wrap {
  position: relative;
  overflow: hidden;
  width: 155px;
  height: 100px;
}
.c-rel-item__thumb {
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.c-rel-item__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.c-rel-item__title {
  color: var(--color-font);
  font-size: 16px;
  font-weight: var(--weight-black);
  line-height: 1.25;
}
.c-rel-item__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 34px;
  color: var(--color-font);
  font-size: 15px;
  font-weight: var(--weight-bold);
  border: 2px solid var(--color-tertiary);
  border-radius: 17px;
}

/* c-ex */
.c-ex {
  margin: 110px auto 0;
}
.c-ex__wrap {
  padding: 45px 45px 60px;
  border: 5px solid var(--color-primary);
  border-radius: 40px;
}
.c-ex__bottom {
  margin-top: 40px;
}

/* c-heading */
.c-heading__title {
  position: relative;
  margin: 0 auto 60px;
  font-weight: var(--weight-black);
  text-align: center;
}
.c-heading__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 190px;
}
.c-heading__sub {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 5px 38px;
  font-size: 34px;
  border-radius: 30px;
}
.c-heading__main {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
  margin-top: 50px;
  padding: 0 .5em;
  font-size: 54px;
  border-bottom: 3px solid var(--color-primary);
}
.c-heading__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 23px 23px 0 0;
  border-color: var(--color-primary) transparent transparent;
  translate: -50% 100%;
  transform: skew(-25deg);
  transform-origin: top;
}
.c-heading__main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.2px 15.2px 0 0;
  border-color: #fff transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
  transform: skew(-25deg);
  transform-origin: top;
  z-index: 1;
}
.c-heading__small {
  font-size: 38px;
}
.c-heading__text {
  font-size: 25px;
  text-align: center;
  font-weight: var(--weight-bold);
}

/* c-ex-box */
.c-ex-box + .c-ex-box {
  margin-top: 50px;
}
.c-ex-box__wrap {
  padding: 60px 45px 40px;
  border-radius: 40px;
}
.c-ex-box__wrap--org {
  background-color: var(--color-tertiary);
}
.c-ex-box__wrap--grn {
  background-color: var(--color-primary);
}
.c-ex-box__heading {
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-weight: var(--weight-bold);
  font-family: var(--family-noto);
}
.c-ex-box__title {
  font-size: 30px;
}
.c-ex-box__sub {
  font-size: 20px;
}
.c-ex-box__body {
  position: relative;
  margin-top: 20px;
}
.c-ex-box__add {
  position: absolute;
  left: 0;
  top: 40px;
  font-size: 20px;
  font-weight: var(--weight-bold);
}
.c-ex-box__min {
  font-size: 15px;
}
.c-ex-box__catch {
  position: relative;
  color: var(--color-white);
  font-size: 55px;
  font-weight: var(--weight-black);
  font-family: var(--family-noto);
  border-bottom: 3px solid;
}
.c-ex-box__strong {
  color: #ff0;
  font-size: 110px;
}
.c-ex-box__illust {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 205px;
  height: 230px;
}
.c-ex-box__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  font-weight: var(--weight-bold);
  font-family: var(--family-noto);
  font-feature-settings: "palt" 1;
}
.c-ex-box__set {
  display: flex;
  align-items: center;
}
.c-ex-box__label {
  background-color: var(--color-black);
  color: var(--color-white);
  margin-right: .25em;
  padding: 0 15px;
  font-size: 30px;
}
.c-ex-box__value {
  position: relative;
  font-size: 30px;
}
.c-ex-box__large {
  font-size: 50px;
}
.c-ex-box__small {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 100%;
  font-size: 16px;
  text-align: center;
  font-weight: var(--weight-regular);
}
.c-ex-box__icon {
  width: 30px;
  height: 30px;
}
.c-ex-box__point {
  position: relative;
  margin-top: 40px;
  height: 195px;
}
.c-ex-box__illust2 {
  display: block;
}
.c-ex-box__comment {
  margin-top: -135px;
  margin-left: auto;
  margin-right: 10px;
  padding-right: 30px;
  color: var(--color-font);
  width: 78%;
  font-size: 25px;
  font-weight: var(--weight-regular);
}
.c-ex-box__note {
  color: var(--color-white);
  margin-top: 20px;
  font-size: 13px;
  text-align: right;
  font-weight: var(--weight-regular);
}

/* c-cta */
.c-cta {
  margin: 95px auto 90px;
  max-width: 880px;
  width: 100%;
}
.c-cta__tel {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-top: 50px;
  pointer-events: none;
}
.c-cta__text {
  position: relative;
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  padding: 15px;
  font-size: 40px;
  line-height: 1.25;
  text-align: center;
  font-weight: var(--weight-bold);
  border-radius: 10px;
}
.c-cta__text::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid var(--color-primary);
}
.c-cta__free {
  width: 148px;
  height: 96px;
}
.c-cta__number {
  margin-top: -10px;
  margin-left: .15em;
  color: var(--color-tertiary);
  font-size: 128px;
  height: 106px;
  line-height: 96px;
  font-weight: var(--weight-bold);
  overflow: hidden;
}
.c-cta__time {
  display: block;
  color: var(--color-black);
  margin-top: 25px;
  padding-left: 170px;
  font-size: 30px;
  font-weight: var(--weight-bold);
}
.c-cta__column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.c-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: calc(430px - 16px);
  height: calc(140px - 16px);
  background-color: var(--color-tertiary);
  transition: .3s;
  filter: drop-shadow(0 10px 0 #000);
  text-decoration: none;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 0 8px var(--color-tertiary);
  user-select: none;
}
.c-cta__button:hover {
  transform: translateY(10px);
  filter: drop-shadow(0 0 0 #000);
}
.c-cta__icon--mail {
  width: 56px;
  height: 44px;
}
.c-cta__icon--calc {
  width: 75.5px;
  height: 69px;
}
.c-cta__link {
  color: var(--color-white);
  font-size: 30px;
  font-weight: var(--weight-bold);
}

/* c-price */
.c-price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 60px 40px;
  border-radius: 40px;
  text-align: center;
}
.c-price__title {
  padding-bottom: 5px;
  font-size: 50px;
  font-weight: var(--weight-bold);
  border-bottom: 3px solid;
}
.c-price__catch {
  font-size: 60px;
  font-family: var(--family-noto);
  font-weight: var(--weight-black);
}
.c-price__strong {
  position: relative;
  color: #000;
  padding: 0 .1em;
  font-size: 130px;
  -webkit-text-stroke: 10px #000;
  filter: drop-shadow(4px 4px 0 #000);
}
.c-price__strong::after {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ff0;
  font-size: 130px;
  z-index: 1;
  -webkit-text-stroke: 2px #ff0;
}
.c-price__row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  height: 168px;
}
.c-price__image--large {
  width: 192.4px;
  height: 168px;
}
.c-price__image--small {
  width: 51.2px;
  height: 93.6px;
}
.c-price__text {
  background-color: var(--color-white);
  color: var(--color-primary);
  width: 240px;
  height: 50px;
  font-size: 30px;
  font-weight: var(--weight-black);
  border-radius: 5px;
}
.c-price__icon {
  font-size: 30px;
  font-weight: var(--weight-black);
}
.c-price__link {
  display: inline-block;
  padding-bottom: 5px;
  color: #ff0;
  margin-top: auto;
  font-size: 32px;
  font-weight: var(--weight-black);
  text-decoration: none;
  border-bottom: 1px solid;
}

/* c-text-card */
.c-text-card {
  color: var(--color-font);
}
.c-text-card__thumb {
  width: 100%;
}
.c-text-card__title {
  margin-top: 10px;
  font-size: 30px;
  font-weight: var(--weight-bold);
}
.c-text-card__text {
  margin-top: 10px;
  font-size: 20px;
}

/* c-box-card */
.c-box-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 384px;
  height: 350px;
  padding: 20px;
  border-radius: 40px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.c-box-card__thumb {
  border-radius: 20px;
}
.c-box-card__title {
  color: var(--color-font);
  font-size: 35px;
  text-align: center;
  font-weight: var(--weight-bold);
}

/* c-add-text */
.c-add-text {
  margin-top: 40px;
  font-size: 25px;
  text-align: center;
  font-weight: var(--weight-bold);
}

/* c-flow-card */
.c-flow-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 19px;
  border: 5px solid var(--color-primary);
  border-radius: 5px;
}
.c-flow-card__thumb {
  width: 125px;
  height: 105px;
  margin: 0 auto;
}
.c-flow-card__title {
  color: var(--color-font);
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 35px;
  text-align: center;
  font-weight: var(--weight-bold);
}
.c-flow-card__text {
  background-color: var(--color-primary);
  color: var(--color-white);
  margin-top: auto;
  font-size: 20px;
  text-align: center;
}

/* c-add-arrow */
.c-add-arrow {
  position: relative;
  margin-top: 25px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 25px;
  text-align: center;
  font-weight: var(--weight-bold);
  border-radius: 5px;
  clip-path: polygon(0% 0%, 98% 0%, 100% 50%, 98% 100%, 0% 100%);
}

/* c-voice-card */
.c-voice-card__main {
  display: flex;
  align-items: flex-start;
}
.c-voice-card__thumb {
  border-radius: 10px;
  width: 100%;
  max-width: 330px;
}
.c-voice-card__box {
  background-color: #efefef;
  margin-top: 20px;
  padding: 15px;
  width: 250px;
  min-height: 210px;
}
.c-voice-card__count {
  display: inline-block;
  margin-top: -65px;
  font-size: 65px;
  line-height: 1;
  border-bottom: 2px solid;
}
.c-voice-card__heading {
  margin-top: 10px;
  font-size: 30px;
  font-weight: var(--weight-bold);
}
.c-voice-card__list {
  margin-top: 10px;
  margin-bottom: 30px;
}
.c-voice-card__unit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  border-top: 1px solid #666;
}
.c-voice-card__unit:last-of-type {
  border-bottom: 1px solid #666;
}
.c-voice-card__label {
  font-size: 14px;
  font-weight: var(--weight-bold);
}
.c-voice-card__value {
  font-size: 15px;
}
.c-voice-card__sub {
  display: flex;
  align-items: flex-start;
  margin-top: -25px;
}
.c-voice-card__detail {
  outline: 7px solid #e6e6e6;
  outline-offset: -7px;
  border-radius: 10px;
  width: 100%;
  max-width: 150px;
}
.c-voice-card__text {
  margin-top: 2em;
  margin-left: 1em;
  word-break: break-word;
  font-size: 16px;
  line-height: 1.875;
}

/* c-faq */
.c-faq {
  border: 4px solid var(--color-primary);
  counter-reset: q a 0;
  border-radius: 10px;
}
.c-faq + .c-faq {
  margin-top: 35px;
}
.c-faq__heading {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 8px 1em;
  font-size: 30px;
}
.c-faq__body {
  padding: 20px 26px 35px;
}
.c-faq__label {
  display: flex;
  align-items: flex-start;
  margin-top: 22px;
  padding-top: 22px;
  font-size: 25px;
  font-weight: var(--weight-bold);
  border-top: 1px solid var(--color-primary);
  cursor: pointer;
  transition: opacity var(--anime-short);
}
.c-faq__label::before {
  counter-increment: q 1;
  content: "Q" counter(q);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  color: var(--color-white);
  margin-right: .2em;
}
.c-faq__label:hover {
  opacity: var(--opacity-hover);
}
.c-faq__title {
  flex: 1;
  font-size: 30px;
  font-weight: var(--weight-bold);
}
.c-faq__icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-faq__icon::before,
.c-faq__icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  transition: transform 0.3s ease-in-out;
}
.c-faq__icon::before {
  width: 30px;
  height: 4px;
}
.c-faq__icon::after {
  width: 4px;
  height: 30px;
}
.c-faq__icon.is-active::after {
  transform: rotate(90deg);
}
.c-faq__value {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  display: flex;
  justify-content: flex-start;
}
.c-faq__value::before {
  counter-increment: a 1;
  content: "A" counter(a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  color: var(--color-white);
  margin-right: .2em;
  font-size: 30px;
  font-weight: var(--weight-bold);
}
.c-faq__content {
  flex: 1;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.75;
}

/* c-footer */
.c-footer {
  margin-bottom: 120px;
}
.c-footer__list {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}
.c-footer__item {
  padding: 0 .5em;
  list-style: none;
  border-left: 1px solid;
}
.c-footer__item:last-of-type {
  margin-right: .5em;
  border-right: 1px solid;
}
.c-footer__link {
  color: var(--color-font);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  transition: opacity var(--anime-short);
}
.c-footer__link:hover {
  opacity: var(--opacity-hover);
}

/* c-float */
.c-float {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: var(--color-white);
  width: 100%;
  box-shadow: 0 0 10px;
  z-index: 50;
}
.c-float__wrap {
  display: flex;
  align-items: center;
  max-width: 1100px;
  width: 1200px;
  margin: auto;
  padding: 10px;
}
.c-float__text {
  padding: 10px;
  font-size: 13px;
  border: 1px solid;
}
.c-float__tel {
  margin-left: 40px;
  color: var(--color-tertiary);
  text-decoration: none;
  pointer-events: none;
}
.c-float__box {
  line-height: 1;
}
.c-float__free {
  width: 52px;
  height: 34px;
}
.c-float__number {
  font-size: 45px;
  font-weight: var(--weight-bold);
}
.c-float__note {
  color: var(--color-black);
  font-size: 13px;
}
.c-float__list {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.c-float__sp-list {
  display: none;
}
.c-float__item {
  list-style: none;
}
.c-float__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  background-color: #f9a51a;
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--weight-bold);
  text-decoration: none;
  border-radius: 10px;
  text-shadow: 1px 1px 3px var(--color-black);
  box-shadow: 0px 2px 4px 0 var(--color-black);
  transition: box-shadow var(--anime-short), transform var(--anime-short);
}
.c-float__button:hover {
  box-shadow: none;
  transform: translate(2px, 4px);
}
.c-float__icon {
  margin-right: .75em;
}
.c-float__icon--mail {
  width: 28px;
  height: 22px;
}
.c-float__icon--calc {
  width: 38px;
  height: 35px;
}


/* ============================================
   Utilities: 汎用クラス
============================================ */

.u-text-bold {
  font-weight: var(--weight-bold);
}
.u-text-line {
  background:linear-gradient(transparent 50%, #fcee21 50%);
}
.u-pc-only {
  display: block;
}
.u-sp-only {
  display: none;
}

#toc_container {
  width: 100% !important;
  padding: 30px !important;
  border: none !important;
  border-radius: 15px;
}
#toc_container a {
  color: var(--color-font);
}
#toc_container p.toc_title {
  font-size: 30px;
  text-align: left !important;
}
#toc_container span.toc_toggle {
  margin: 0;
}
#toc_container span.toc_toggle a {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: var(--weight-bold);
}
#toc_container .toc_list ul a {
  font-size: 20px;
  font-weight: var(--weight-medium);
}
#toc_container .toc_list ul a::before {
  content: "»";
  color: #99ccbe;
  margin-right: .5em;
  font-size: .7em;
}
#toc_container .toc_list a {
  font-size: 25px;
  text-decoration: none !important;
  transition: opacity var(--anime-short);
}
#toc_container .toc_list a:hover {
  opacity: var(--opacity-hover);
}
#toc_container .toc_list a::before {
  content: "▶";
  color: #99ccbe;
  margin-right: .5em;
  font-size: .4em;
}
#toc_container .toc_list > li {
  margin-top: 1em;
} 
.c-404 {
  padding: 30px;
  text-align: center;
  color: var(--color-primary);
}
.c-404__title {
  font-size: 50px;
}
.c-404__code {
  font-size: 3.8em;
}

/* ============================================
   SPデザイン
============================================ */
@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }

  body {
    position: relative;
    min-width: 100%;
    overflow-x: hidden;
  }

  .u-sp-only {
    display: block;
  }
  .u-pc-only {
    display: none;
  }
  .is-fixed {
    position: fixed;
    width: 100%;
  }

  /* ============================================
   Objects: レイアウトやコンポーネント
  ============================================ */

  .o-inner {
    padding: 0 15px;
    width: 100%;
  }
  .o-main {
    width: 100%;
  }
  .o-side {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 40px 0;
    width: 100svw;
    height: 100svh;
    z-index: 60;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform var(--anime-short);
  }
  .o-side.is-active {
    transform: translateX(0);
  }
  .o-side__scroll {
    height: 100%;
    overflow-y: auto;
  }
  .o-content {
    padding: 15px 0 0;
  }
  .o-content-top {
    padding: 35px 0;
    border-bottom: none;
  }
  .o-content-column {
    display: block;
  }
  .o-grid-one-sp {
    grid-template-columns: 1fr;
  }
  .o-grid-two-sp {
    grid-template-columns: 1fr 1fr;
  }
  .o-section-scroll {
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
  }
  .o-section-scroll-inner {
    display: inline-block;
  }
  .c-add-arrow {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
  }
  .o-section + .o-section {
    margin-top: 50px;
  }
  .o-grid-five {
    gap: 7.5px;
  }
  .o-grid-two-large {
    gap: 15px 0;
  }
  .c-header {
    position: fixed;
    background-color: var(--color-white);
    border-bottom: none;
    width: 100%;
    z-index: 100;
  }
  .c-header__bg {
    padding: 4px 0;
  }
  .c-header__content {
    position: relative;
    min-height: 55px;
    background-color: var(--color-white);
    top: 0;
    z-index: 100;
  }
  .c-header__content.js-fixed {
    position: fixed;
  }
  .c-header-logo:hover {
    opacity: 1;
  }
  .c-header-logo__title {
    padding-right: .25em;
    width: calc(55vw - .25em);
    max-width: calc(270px - .25em);
  }
  .c-header__catch {
    font-size: 10px;
  }
  .c-header__cta {
    display: none;
  }
  .c-sp-icon {
    display: block;
  }
  .c-hero__unit {
    margin-bottom: 40px;
  }
  .c-hero__main {
    width: 100%;
    height: auto;
    aspect-ratio: 770 / 500;
  }
  .c-hero__detail {
    margin-top: 20px;
    width: 100%;
  }
  .c-hero__link {
    display: block;
  }
  .c-hero__list {
    margin-bottom: 0;
  }
  .c-post-categories__item {
    padding: 2px 4px;
    font-size: 10px;
    border-radius: 2px;
  }
  .c-post-categories__item--link {
    padding: 0;
  }
  .c-post-categories__link {
    padding: 2px 4px;
  }
  .c-hero__title {
    margin-top: 5px;
    font-size: 22.5px;
  }
  .c-post-time {
    font-size: 12px;
  }
  .c-post-time::before {
    width: 10px;
    height: 9.25px;
    margin-right: .2em;
  }
  .c-hero__item {
    font-size: 10px;
  }
  .c-hero__item::before {
    width: 9.25px;
    height: 8.45px;
    margin-right: .2em;
  }
  .c-post-button {
    display: none;
  }
  .c-post-list__heading {
    font-size: 17.5px;
  }
  .c-post-list__heading::before {
    width: 22.5px;
    height: 24.5px;
  }
  .c-post-list__wrap {
    display: block;
    margin-top: 15px;
  }
  .c-post-item {
    min-width: auto;
  }
  .c-post-item + .c-post-item {
    margin-top: 20px;
  }
  .c-post-item__wrap {
    max-width: 155px;
    width: 100%;
    height: auto;
    aspect-ratio: 310 / 200;
  }
  .c-post-item__thumb {
    border-radius: 5px;
  }
  .c-post-item__title {
    margin: 7.5px auto;
    font-size: 16px;
  }

  .c-bg {
    margin: 40px auto 0;
    height: 6vw;
    border-width: 1px;
  }
  .c-title {
    padding: 10px 16px;
    font-size: 26px;
    border-width: 2px;
  }
  .c-title::before {
    bottom: -10px;
    border-left: 11.5px solid transparent;
    border-right: 11.5px solid transparent;
    border-top: 11.5px solid #f7f7f7;
  }
  .c-title::after {
    bottom: -13px;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 13px solid var(--color-tertiary);
  }
  .c-title__main {
    padding-bottom: 5px;
    font-size: 24px;
    border-width: 2px;
  }
  .c-title__sub {
    margin-top: 5px;
    font-size: 11px;
  }
  .c-unit {
    padding-top: 30px;
  }
  .c-unit__title {
    font-size: 22px;
  }
  .c-unit__image {
    margin: 15px auto;
    width: 100%;
  }
  .c-unit__image--radius {
    border-radius: 10px;
  }
  .c-unit__sub {
    margin: 5px auto;
    font-size: 20px;
  }
  .c-unit__text {
    font-size: 14px;
  }
  .c-unit__columns {
    margin: 45px auto 10px;
    gap: 10px;
  }
  .c-figure__caption {
    font-size: 10px;
  }
  .c-figure__image{
    width: 100%;
  }
  .c-rel-list {
    margin-top: 50px;
  }
  .c-rel-list__heading {
    font-size: 15px;
  }
  .c-rel-list__heading::before {
    width: 19.35px;
    height: 21.1px;
  }
  .c-rel-list__wrap {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
  .c-rel-item__wrap {
    max-width: 155px;
    width: 100%;
    height: auto;
    aspect-ratio: 310 / 200;
  }
  .c-rel-item__thumb {
    border-radius: 5px;
  }
  .c-rel-item__button {
    display: none;
  }
  .c-ex {
    margin: 30px auto 0;
    padding: 0 15px;
  }
  .c-ex__wrap {
    padding: 23px 13px;
  }
  .c-heading__sub {
    padding: 3px 20px;
    font-size: 17px;
  }
  .c-heading__main {
    margin-top: 15px;
    padding: 0 .15em;
    font-size: 21px;
    border-width: 2px;
  }
  .c-heading__small {
    font-size: 17.5px;
  }
  .c-heading__main::before {
    border-width: 7.6px 7.6px 0 0;
  }
  .c-heading__main::after {
    border-width: 11.5px 11.5px 0 0;
  }
  .c-heading__title {
    margin: 0 0 25px;
  }
  .c-heading__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .c-ex-box + .c-ex-box {
    margin-top: 20px;
  }
  .c-ex-box__wrap {
    /* padding: 25px 20px 20px; */
    padding: 5.88vw 4vw 4.7vw;
    border-radius: 20px;
  }
  .c-ex-box__heading {
    display: block;
  }
  .c-ex-box__title {
    /* font-size: 20px; */
    font-size: 4.7vw;
  }
  .c-ex-box__sub {
    /* margin-top: 5px; */
    margin-top: 1.17vw;
    /* font-size: 14px; */
    font-size: 3.29vw;
  }
  .c-ex-box__catch {
    margin-top: 1.5em;
    /* font-size: 27.5px; */
    font-size: 6.47vw;
    text-align: center;
    border-width: 2px;
  }
  .c-ex-box__illust {
    /* width: 60px; */
    width: 14.11vw;
    /* height: 67.5px; */
    height: 15.88vw;
  }
  .c-ex-box__add {
    top: -1em;
    left: 50%;
    transform: translateX(-50%);
  }
  .c-ex-box__vertical {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-right: -.5em;
    margin-left: -1.5em;
    /* font-size: 21px; */
    font-size: 4.94vw;
  }
  .c-ex-box__strong {
    font-size: 53px;
    font-size: 12.47vw;
    line-height: 1.4;
  }
  .c-ex-box__label {
    /* padding: 0 7.5px; */
    padding: 0 1.76vw;
    /* font-size: 15px; */
    font-size: 3.52vw;
  }
  .c-ex-box__large {
    /* font-size: 30px; */
    font-size: 7vw;
  }
  .c-ex-box__small {
    /* bottom: -10px; */
    bottom: -2.35vw;
    /* font-size: 10px; */
    font-size: 2.35vw;
  }
  .c-ex-box__comment {
    margin-top: -21.5vw;
    margin-right: 0;
    margin-left: 2.5vw;
    padding-right: 0;
    width: 90%;
    font-size: 3.3vw;
  }
  .c-ex-box__detail {
    display: block;
  }
  .c-ex-box__value {
    width: 52%;
    /* font-size: 20px; */
    font-size: 4.5vw;
  }
  .c-ex-box__icon {
    display: block;
    /* margin: 15px auto 0; */
    margin: 3.529vw auto 0;
    /* width: 15px; */
    width: 3.529vw;
    /* height: 15px; */
    height: 3.529vw;
  }
  .c-ex-box__set {
    justify-content: flex-end;
  }
  .c-ex-box__point {
    height: auto;
    /* margin-top: -45px; */
    margin-top: -10.58vw;
    margin-bottom: 3vw;
  }
  .c-ex-box__note {
    /* font-size: 10px; */
    font-size: 2.35vw;
    text-align: left;
    margin-left: 1em;
    text-indent: -1em;
  }
  .c-ex__bottom {
    margin-top: 10px;
  }
  .c-cta {
    margin: 65px auto 40px;
    padding: 0 15px;
  }
  .c-cta__text {
    padding: 12px 6px;
    font-size: 17px;
  }
  .c-cta__text::after {
    bottom: -7px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 7px solid var(--color-primary);
  }
  .c-cta__tel {
    justify-content: center;
    margin-top: 25px;
    pointer-events: all;
  }
  .c-cta__free {
    width: 63px;
    height: 40px;
  }
  .c-cta__number {
    height: 40px;
    margin-top: 0;
    /* font-size: 54px; */
    font-size: 45px;
    line-height: 31px;
    white-space: nowrap
  }
  .c-cta__time {
    margin-top: 5px;
    padding-left: 0;
    font-size: 12px;
    text-align: center;
  }
  .c-cta__column {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
  }
  .c-cta__button {
    gap: .5em;
    width: calc(187px - 16px);
    height: calc(75px - 16px);
    border-width: 1px;
    border-radius: 5px;
    filter: drop-shadow(0 5px 0 #000);
    box-shadow: 0 0 0 4px var(--color-tertiary);
  }
  .c-cta__button:hover {
    transform: none;
    filter: drop-shadow(0 5px 0 #000);
  }
  .c-cta__button:active {
    transform: translateY(10px);
    filter: drop-shadow(0 0 0 #000);
  }
  .c-cta__link{
    font-size: 14px;
  }
  .c-cta__icon--mail {
    width: 28px;
    height: 22px;
  }
  .c-cta__icon--calc {
    width: 37.75px;
    height: 34.5px;
  }
  .c-heading__icon {
    margin-top: -10px;
    width: 80px;
    height: 80px;
  }
  .o-section-top {
    margin-top: 30px;
  }
  .o-grid-two {
    gap: 10px;
  }
  .c-price {
    padding: 20px 15px;
    border-radius: 20px;
  }
  .c-price__title {
    font-size: 16px;
  }
  .c-price__catch {
    font-size: 18px;
  }
  .c-price__row {
    height: auto;
    gap: 10px;
    margin-bottom: 10px;
  }
  .c-price__link {
    margin-top: 0;
  }
  .c-price__strong {
    font-size: 42px;
    -webkit-text-stroke: 5px #000;
    filter: drop-shadow(2px 2px 0 #000);
  }
  .c-price__strong::after {
    font-size: 42px;
    -webkit-text-stroke: 1px #ff0;
  }
  .c-price__image {
    width: 100%;
    height: auto;
  }
  .c-price__image--large {
    /* width: 62.2px;
    height: 54.5px; */
  }
  .c-price__image--small {
    /* width: 16.5px;
    height: 30px; */
  }
  .c-price__text {
    width: 77.5px;
    height: 16px;
    font-size: 10px;
    border-radius: 2.5px;
  }
  .c-price__icon {
    font-size: 10px;
  }
  .c-price__link {
    font-size: 10px;
  }
  .c-text-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .c-text-card__thumb {
    min-width: 192px;
    width: 100%;
  }
  .c-text-card__title {
    margin-top: 0;
    font-size: 16px;
  }
  .c-text-card__text {
    margin-top: 5px;
    font-size: 12px;
  }
  .c-box-card {
    width: 100%;
    /* min-width: 182.5px; */
    width: 43vw;
    min-height: 165px;
    height: auto;
    padding: 10px;
    border-radius: 20px;
  }
  .c-box-card__title {
    font-size: 16px;
  }
  .c-box-card__thumb {
    border-radius: 10px;
  }
  .c-add-text {
    font-size: 14px;
  }
  .c-flow-card {
    min-width: 114px;
    min-height: 160px;
    border-width: 2px;
    padding: 9px 8px;
  }
  .c-flow-card__title {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 18px;
  }
  .c-flow-card__text {
    font-size: 10px;
  }
  .c-flow-card__thumb {
    width: 62.5px;
    height: 52.5px;
  }
  .c-add-arrow {
    margin-top: 12.5px;
    font-size: 12.5px;
  }
  .c-voice-card__thumb {
    max-width: 220px;
    /* width: 51.7vw; */
    width: 47vw;
  }
  .c-voice-card__box {
    margin-top: 10px;
    padding: 13px;
    background: linear-gradient(to bottom, rgba(239, 239, 239, 0) 10px, #efefef 10px);
    min-width: 166px;
    min-height: 140px;
    width: 100%;
  }
  .c-voice-card__count {
    margin-top: -43px;
    font-size: 43px;
    border-width: 2px;
  }
  .c-voice-card__heading {
    font-size: 20px;
  }
  .c-voice-card__label {
    font-size: 10px;
  }
  .c-voice-card__value {
    font-size: 10px;
  }
  .c-voice-card__list {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .c-voice-card__text {
    margin-bottom: .25em;
    font-size: 11px;
  }
  .c-voice-card__detail {
    width: 100px;
    outline-width: 6px;
    outline-offset: -6px;
    border-radius: 5px;
  }
  .c-voice-card__sub {
    margin-top: -12.5px;
  }
  .c-faq__heading {
    padding: 5px 1em;
    font-size: 15px;
  }
  .c-faq__body {
    padding: 21px 17.5px;
  }
  .c-faq__list {
    margin-top: -14px;
  }
  .c-faq__label {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 15px;
  }
  .c-faq__label::before {
    width: 22px;
    height: 22px;
  }
  .c-faq__title {
    font-size: 14px;
  }
  .c-faq__value::before {
    margin-top: 16px;
    width: 22px;
    height: 22px;
    font-size: 15px;
  }
  .c-faq__content {
    margin-top: 11px;
    font-size: 14px;
  }
  .c-faq__icon {
    width: 15px;
    height: 15px;
  }
  .c-faq__icon::before {
    width: 15px;
    height: 2px;
  }
  .c-faq__icon::after {
    width: 2px;
    height: 15px;
  }
  .c-float__icon--mail {
    width: 14px;
    height: 11px;
  }
  .c-float__icon--calc {
    width: 16.75px;
    height: 15px;
  }
  .c-float__wrap {
    flex-wrap: wrap;
    max-width: 414px;
    width: 100%;
  }
  .c-float__list {
    display: none;
  }
  .c-float__sp-list {
    display: flex;
    gap: 5px;
    width: 100%;
    margin-right: auto;
    /* margin-top: 5px; */
  }
  .c-float__sp-item {
    display: block;
    width: calc((100% - 10px) / 3);
    list-style: none;
  }
  .c-float__sp-button {
    display: block;
    width: 100%;
    height: auto;
  }
  .c-float__text {
    display: none;
    width: 100%;
    padding: 2px;
    font-size: 10px;
    text-align: center;
  }
  .c-float__button {
    flex-direction: column;
    width: 100%;
    height: 50px;
    font-size: 8px;
    line-height: 1.2;
    text-align: center;
    text-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    gap: 5px;
  }
  .c-float__add {
    font-size: 6px;
  }
  .c-footer__list {
    margin-top: 15px;
  }
  .c-footer__item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-footer__link {
    font-size: 10px;
  }
  .c-post-list + .c-post-list {
    margin-top: 40px;
  }
  .c-post-list__wrap--category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .c-category-item {
    width: 100%;
    font-size: 13px;
  }
  .c-category-item__link {
    width: 100%;
    min-height: 35px;
    padding: 10px;
  }
  .c-category-item__link::before {
    width: 13px;
    height: 10px;
  }
  .c-side-unit {
    margin-top: 0;
  }
  .c-side-unit__title {
    display: none;
  }
  .c-side-form {
    margin-top: 40px;
    margin-bottom: 38px;
    height: 50px;
  }
  .c-side-form__input {
    padding: 10px;
    font-size: 16px;
  }
  .c-side-form__icon {
    width: 28.5px;
    height: 28.5px;
  }
  .o-post {
    width: 100%;
    border: none;
    padding: 0;
  }
  .c-post-list--top {
    margin-top: 40px;
  }
  #toc_container {
    padding: 20px !important;
    border-radius: 10px;
  }
  #toc_container p.toc_title {
    font-size: 20px;
  }
  #toc_container span.toc_toggle a {
    font-size: 14px;
  }
  #toc_container .toc_list a {
    font-size: 18px;
  }
  #toc_container .toc_list ul a {
    font-size: 14px;
  }
  .c-404 {
    padding: 20px;
  }
  .c-404__title {
    font-size: 40px;
  }
}

/* ============================================
   SPデザイン
============================================ */
@media screen and (max-width: 375px) {
  .c-title__main {
    font-size: 22px;
  }
  .c-title__sub {
    font-size: 10px;
  }
  .c-unit__title {
    font-size: 20px;
  }
  .c-unit__text {
    font-size: 13px;
  }
  .c-rel-item__title {
    font-size: 14px;
  }
  .c-cta__text {
    font-size: 15px;
  }
  .c-add-text {
    font-size: 12px;
  }
  .c-heading__main {
    font-size: 18px;
  }
  .c-flow-card__title {
    font-size: 16px;
  }
  .c-voice-card__heading {
    font-size: 18px;
  }
  .c-heading__text {
    font-size: 13px;
  }
  .c-cta__link {
    font-size: 12px;
  }
  .c-post-item__wrap {
    max-width: 130px;
  }
  .c-rel-item__wrap {
    max-width: 130px;
  }
  .c-text-card__thumb {
    min-width: 142px;
  }
  .c-faq__heading {
    font-size: 14px;
  }
  .c-faq__title {
    font-size: 13px;
  }
  .c-faq__content {
    font-size: 13px;
  }
  .c-side-category__link {
    font-size: 18px;
  }
  .c-post-heading__title {
    font-size: 23px;
  }
  .c-post-content * {
    font-size: 12px;
  }
  #toc_container .toc_list a {
    font-size: 16px;
  }
  #toc_container .toc_list ul a {
    font-size: 12px;
  }
  .c-post-content h2 {
    font-size: 20.5px;
  }
  .c-post-content h3 {
    font-size: 14px;
  }
  .c-post-cta__button {
    gap: .5em;
    font-size: 20.5px;
  }
  .o-inner {
    padding: 0 10px;
  }
  .c-ex__wrap {
    padding: 23px 13px;
  }
  
}