html {
  font-size: min(10px, 0.833333333vw);
}

body {
  background: #fff;
  color: #000;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-style: normal;
  font-weight: 400;
}

body.is-active {
  overflow: hidden;
}

a {
  display: block;
  transition: 0.2s;
}

a:hover {
  transition: 0.2s;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

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

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */

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

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*
 * l-footer
 * -------------------------------------------------------------
 */

.l-footer {
  overflow: hidden;
  padding-bottom: 10rem;
}

.l-footer__contact {
  background: #fff;
  border: 1px solid #707070;
  border-radius: 3.5rem;
  margin: 0 auto;
  max-width: 80.6rem;
  padding: 9rem 0 23.3rem;
}

.l-footer__ttl {
  font-size: 2.7rem;
  font-weight: 700;
  text-align: center;
}

.l-footer__items {
  grid-gap: 12rem 0;
  display: grid;
  gap: 12rem 0;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 16rem;
}

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

.l-footer__item.--line {
  gap: 15rem 0;
}

.l-footer__item.--tel {
  gap: 12rem 0;
}

.l-footer__item.--mail {
  gap: 8rem 0;
}

.l-footer__txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.l-footer__line {
  max-width: 17.5rem;
}

.l-footer__tel {
  font-size: 6rem;
  font-weight: 700;
}

.l-footer__mail {
  font-size: 4.4rem;
  font-weight: 700;
}

.l-footer__btn {
  display: flex;
  justify-content: center;
  margin-top: 20rem;
  width: 100%;
}

/*
 * l-header
 * -------------------------------------------------------------
 */

.l-header {
  background: #fbfbfb;
  height: 9.1rem;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.l-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 3.3rem;
}

.l-header__logo {
  max-width: 9rem;
  transition: all 0.2s;
}

.l-header__logo.is-active {
  opacity: 0;
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin: auto;
  max-width: 120rem;
  padding: 0 3.5rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  margin-top: 9.1rem;
  overflow: hidden;
}

/*
 * l-page-section
 * -------------------------------------------------------------
 */

.l-page-section {
  padding-top: 3rem;
}

/*
 * l-template
 * -------------------------------------------------------------
 */

.l-template {
  padding-bottom: 10rem;
}

.l-template__inner {
  display: flex;
  flex-direction: column;
  gap: 8rem 0;
  margin: 0 auto;
  max-width: 113rem;
  padding-top: 10rem;
}

.l-template__ttl {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.l-template__btn {
  margin: 0 auto;
  max-width: 34.4rem;
}

/*
 * c-about-header
 * -------------------------------------------------------------
 */

.c-about-header {
  text-align: center;
}

.c-about-header__ttl {
  color: #000;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1.47;
}

.c-about-header__ttleng {
  color: #d4ac05;
  display: block;
  font-family: "Lexend", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.5;
  margin-top: 1.1rem;
  text-transform: uppercase;
}

.c-about-header__ttleng.--mt20 {
  margin-top: 2rem;
}

/*
 * c-btn
 * -------------------------------------------------------------
 */

.c-btn {
  align-items: center;
  display: grid;
  font-size: 2.7rem;
  font-weight: 500;
  height: 10rem;
  justify-items: center;
  line-height: 1.48;
  max-width: 32.6rem;
  place-items: center;
  position: relative;
  width: 100%;
}

.c-btn::before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.2s;
  width: 100%;
}

.c-btn:hover::before {
  filter: brightness(120%);
  opacity: 1;
}

.c-btn--bl::before {
  background: url(./../images/common/btn_blue.webp) no-repeat center/100%;
}

.c-btn--yel::before {
  background: url(./../images/common/btn_yel.webp) no-repeat center/100%;
}

.c-btn--blk::before {
  background: url(./../images/common/btn_blk.webp) no-repeat center/100%;
}

/*
 * c-catch
 * -------------------------------------------------------------
 */

.c-catch__txt {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.52;
  text-align: center;
}

.c-catch__txt:nth-child(2) {
  margin-top: 5rem;
}

.c-catch__txt:nth-child(3) {
  margin-top: 6.2rem;
}

.c-catch__txt:nth-child(4) {
  margin-top: 4rem;
}

.c-catch__txt span {
  display: inline-block;
}

.c-catch__txt .org {
  color: #d5ac06;
}

.c-catch__txt .grn {
  color: #a3c650;
  position: relative;
  right: 0.5rem;
}

.c-catch__txt .blue {
  color: #0097b2;
}

#js-catch.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に戻して表示 */
}

/*
 * c-diary
 * -------------------------------------------------------------
 */

.c-diary {
  background: #93b24b;
  border-radius: 3.5rem;
  padding: 13rem 0 4.5rem;
}

.c-diary__items {
  display: flex;
  flex-direction: column;
  gap: 11.2rem 0;
  margin: 18rem auto 0;
  max-width: 46rem;
}

.c-diary__item {
  display: flex;
}

.c-diary__date {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.8;
  width: 23rem;
}

.c-diary__ttl {
  flex: 1;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.8;
}

.c-diary__btn {
  margin-top: 11.5rem;
}

/*
 * c-hamburger
 * -------------------------------------------------------------
 */

.c-hamburger {
  background: rgba(192, 166, 166, 0.19);
  border: 1px solid rgba(112, 112, 112, 0.19);
  border-radius: 1.3rem;
  height: 7rem;
  position: relative;
  width: 6.7rem;
  z-index: 100;
}

.c-hamburger.is-active {
  background: #fff;
}

.c-hamburger span {
  background: #707070;
  display: block;
  height: 1px;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.3s;
  width: 2.4rem;
}

.c-hamburger span:nth-child(1) {
  top: 32.14%;
}

.c-hamburger span:nth-child(2) {
  top: 43.57%;
}

.c-hamburger span:nth-child(3) {
  top: 55%;
}

.c-hamburger span:nth-child(4) {
  top: 66.43%;
}

.c-hamburger span.is-active:nth-child(1) {
  opacity: 0;
}

.c-hamburger span.is-active:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-40deg);
}

.c-hamburger span.is-active:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(40deg);
}

.c-hamburger span.is-active:nth-child(4) {
  opacity: 0;
}

/*
 * c-loading
 * -------------------------------------------------------------
 */

.c-loading {
  background: #fff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: top 0.8s ease-in-out;
  width: 100%;
  z-index: 998;
}

.c-loading__logo {
  display: none;
  left: 50%;
  max-width: 86rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 998;
}

/* c-loading--second */

.c-loading--second {
  background: url(./../images/top/loading_second.webp) no-repeat center/cover;
  height: 100%;
  left: 0;
  position: fixed;
  top: 100%;
  transition: top 0.8s ease-in-out;
  width: 100%;
  z-index: 999;
}

.c-loading__catch {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.l-header.loading,
.l-main.loading,
.l-footer {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

/*
 * c-nav
 * -------------------------------------------------------------
 */

.c-nav {
  background: #fff;
  height: 100%;
  opacity: 0;
  padding: 5.5rem 2rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.5s;
  visibility: hidden;
  width: 100%;
}

.c-nav::before {
  background: rgba(147, 178, 75, 0.66);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 0;
}

.c-nav.is-active {
  opacity: 1;
  overflow: auto;
  transition: all 0.5s;
  visibility: visible;
  z-index: 10;
}

.c-nav__logo {
  margin: 0 auto;
  max-width: 86rem;
  position: relative;
}

.c-nav__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8.4rem;
  justify-content: center;
  margin: 4.3rem auto 0;
  max-width: 63rem;
  position: relative;
}

.c-nav__item {
  margin-bottom: 11.5rem;
  max-width: 25.4rem;
  text-align: center;
  width: 100%;
}

.c-nav__item:nth-child(1) {
  margin-bottom: 6.2rem;
  max-width: 100%;
}

.c-nav__item:nth-child(n + 10):nth-child(-n + 11) {
  margin-bottom: 0;
}

.c-nav__item a {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-transform: capitalize;
  transition: all 0.2s;
}

.c-nav__item a:hover {
  color: #fff;
  opacity: 1;
}

/*
 * c-page-mv
 * -------------------------------------------------------------
 */

.c-page-mv {
  border-top: none;
  height: 27rem;
}

.c-page-mv__inner {
  padding-top: 2rem;
  text-align: center;
}

.c-page-mv__ttl {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: capitalize;
}

.c-page-mv__ttl.--wht {
  color: #fff;
}

.c-page-mv__subttl {
  display: block;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.66;
}

.c-page-mv.--review {
  background: #fef3c5;
}

.c-page-mv.--diary {
  background: #93b24b;
}

.c-page-mv.--contact {
  background: #dc970e;
}

.c-page-mv.--case {
  background: #fff;
}

/*
 * c-page-section-ttl
 * -------------------------------------------------------------
 */

.c-page-section-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.46;
  text-align: center;
}

.c-page-section-ttl.--review {
  letter-spacing: 0.2em;
}

/*
 * c-pagination
 * -------------------------------------------------------------
 */

.c-pagination {
  display: flex;
  gap: 0 5rem;
  width: 100%;
}

.c-pagination__page {
  align-items: center;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  display: grid;
  font-size: 1.8rem;
  font-weight: 500;
  height: 6rem;
  justify-items: center;
  place-items: center;
  width: 6rem;
}

.c-pagination__current {
  background: #93b24b;
  border: none;
  color: #fff;
}

.wp-pagenavi {
  display: flex;
  gap: 0 5rem;
  justify-content: center;
  width: 100%;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  align-items: center;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  display: grid;
  font-size: 1.8rem;
  font-weight: 500;
  height: 6rem;
  justify-items: center;
  place-items: center;
  width: 6rem;
}

/*
 * c-review
 * -------------------------------------------------------------
 */

.c-review {
  background: #faec93;
  border-radius: 3.5rem;
  padding: 10.3rem 0 13.7rem;
}

.c-review__btn {
  margin-top: 17.2rem;
}

/*
 * c-video
 * -------------------------------------------------------------
 */

.c-video__inner {
  background: #6dc1cb;
  border-radius: 3.5rem;
  margin: 0 auto;
  max-width: 113rem;
  padding: 4rem 3.5rem;
}

.c-video__ttl {
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1.43;
  text-align: center;
}

.c-video__items {
  margin-top: 1.5rem;
}

.c-video__item {
  aspect-ratio: 880/484;
  margin: 0 auto;
  max-width: 88rem;
}

.c-video__item:not(:nth-child(1)) {
  margin-top: 6rem;
}

/*
 * c-youtube
 * -------------------------------------------------------------
 */

.c-youtube {
  height: 100%;
  position: relative;
  width: 100%;
}

.c-youtube__thumbnail {
  cursor: pointer;
  left: 0;
  position: absolute;
  top: 0;
}

.c-youtube__iframe-wrap {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.c-youtube__video {
  height: 100%;
  width: 100%;
}

/*
 * u-desktop
 * -------------------------------------------------------------
 */

.u-desktop {
  display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: none;
}

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

.about-area {
  padding-top: 13.2rem;
}

.about-area__img {
  margin: 10.5rem auto 0;
  max-width: 98.7rem;
}

.about-area__list {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 4.9rem auto 0;
  max-width: 101rem;
}

.about-area__list dt:not(:nth-child(1)) {
  margin-top: 4.5rem;
}

.about-area__list dd {
  margin-top: 3.5rem;
}

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

.about-commit {
  padding-top: 7rem;
}

.about-commit__inner {
  max-width: 97rem;
}

.about-commit__items {
  margin-top: 12rem;
}

.about-commit__item {
  border-radius: 3.7rem;
  position: relative;
}

.about-commit__item:not(:nth-child(1)) {
  margin-top: 9.3rem;
}

.about-commit__ttl {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}

.about-commit__body {
  margin-top: 6.2rem;
}

.about-commit__body-ttl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.48;
}

.about-commit__body-ttl::before {
  content: "■";
  display: inline-block;
}

.about-commit__txt {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.48;
  margin-top: 0.5rem;
}

.about-commit__body-item ol li::before {
  content: "・";
  display: inline-block;
}

/* =============================
	BLUE
============================== */

.about-commit__item.--bl {
  background: #6dc1cb;
  padding: 2rem 3rem 8rem 7rem;
}

.about-commit__item.--bl::before {
  background: url(./../images/about/commit_img01.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 68.4rem;
  position: absolute;
  right: 3rem;
  top: 7.4rem;
  width: 35rem;
}

.about-commit__item.--bl .about-commit__body-item:not(:nth-child(1)) {
  margin-top: 7.8rem;
}

.about-commit__item.--bl .about-commit__body-item {
  max-width: 37.4rem;
}

/* =============================
	YELLOW
============================== */

.about-commit__item.--yel {
  background: #ffec6e;
  padding: 3.3rem 1.5rem 4rem 3rem;
}

.about-commit__item.--yel::before {
  background: url(./../images/about/commit_img02.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 66.2rem;
  position: absolute;
  right: 1.5rem;
  top: 15.5rem;
  width: 84.4rem;
}

.about-commit__item.--yel .about-commit__ttl {
  color: #26acbb;
}

.about-commit__item.--yel .about-commit__body-item:not(:nth-child(1)) {
  margin-top: 14.5rem;
}

.about-commit__item.--yel .about-commit__body-item:nth-child(1) {
  max-width: 53.6rem;
}

.about-commit__item.--yel .about-commit__body-item:nth-child(2) {
  margin-left: auto;
  max-width: 41.3rem;
}

.about-commit__item.--yel .about-commit__body-item:nth-child(3) {
  margin: 14.5rem auto 0;
  max-width: 64rem;
}

/* =============================
	GREEN
============================== */

.about-commit__item.--grn {
  background: #aec676;
  padding: 5.5rem 2rem 29.2rem 7rem;
}

.about-commit__item.--grn::before {
  background: url(./../images/about/commit_img03.webp) no-repeat center/100%;
  bottom: 1.6rem;
  content: "";
  display: block;
  height: 77.4rem;
  position: absolute;
  right: 2rem;
  width: 75.4rem;
}

.about-commit__item.--grn .about-commit__body-item:nth-child(1) {
  max-width: 56.6rem;
}

.about-commit__item.--grn .about-commit__body-item:nth-child(2) {
  max-width: 60.8rem;
}

.about-commit__item.--grn .about-commit__body-item:not(:nth-child(1)) {
  margin-top: 8.8rem;
}

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

.about-company {
  padding: 9.7rem 0 25rem;
}

.about-company__detail {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10rem;
  text-align: center;
}

.about-company__item:not(:nth-child(1)) {
  margin-top: 3rem;
}

.about-company__item .dot {
  display: inline-block;
}

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

.about-header {
  padding-top: 1.5rem;
  position: relative;
}

.about-header::before {
  background: url(./../images/about/mv_bg.webp) no-repeat center/100%;
  bottom: 0;
  content: "";
  display: block;
  height: 48.2rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 68rem;
  z-index: -1;
}

.about__header-inner {
  max-width: 113.3rem;
}

.about-header__img {
  margin: 0 auto;
  max-width: 50rem;
}

.about-header__ttl {
  text-align: center;
}

.about-header__ttlja {
  color: #000;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.47;
}

.about-header__ttleng {
  color: #d4ac05;
  font-family: "Lexend", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-header__lead {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.48;
  margin-top: 1rem;
  text-align: center;
}

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

.about-message {
  padding-top: 7.3rem;
}

.about-message__profile {
  background: #ffec6e;
  margin: 7.5rem calc(50% - 50vw) 0;
  padding: 4.4rem 0 2.53rem;
}

.about-message__profile-img {
  margin: 0 auto;
  max-width: 86rem;
  position: relative;
}

.about-message__profile-detail {
  color: #fff;
  font-weight: 700;
  line-height: 2.4;
  position: absolute;
  right: 3rem;
  top: 11.6rem;
}

.about-message__profile-txt {
  font-size: 2.5rem;
}

.about-message__profile-txt span {
  display: block;
}

.about-message__profile-name {
  font-size: 3.5rem;
  line-height: 1.7;
}

.about-message__body {
  margin: 0 auto;
  max-width: 108.3rem;
  padding: 7rem 0 9.5rem;
}

.about-message__txt {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 2.96;
}

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

.about-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 7.7rem;
}

.about-nav__items {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}

.about-nav__item a {
  align-items: center;
  display: flex;
  font-size: 2.7rem;
  font-weight: 700;
  gap: 0 7.5rem;
  line-height: 1.48;
}

.about-nav__item a::before {
  background: url(./../images/about/nav_btn.webp) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 3.5rem;
  width: 3.5rem;
}

.about-nav__items.--right {
  padding-right: 8rem;
}

.about-nav__items.--right .about-nav__item a {
  gap: 0 2.8rem;
}

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

.about-phil {
  padding-top: 3.5rem;
}

.about-phil__img {
  border-radius: 5.4rem;
  margin: 7.2rem auto 0;
  max-width: 91.1rem;
  overflow: hidden;
}

.about-phil__txtarea {
  padding-top: 2.5rem;
  position: relative;
}

.about-phil__txtarea::before {
  background: url(./../images/about/phil_object.webp) no-repeat center/100%;
  bottom: 8rem;
  content: "";
  display: block;
  height: 40.7rem;
  position: absolute;
  right: 0;
  width: 57.2rem;
}

.about-phil__lead {
  color: #debb46;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}

.about-phil__txt {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.85;
  margin: 8rem auto 0;
  max-width: 113.2rem;
}

.about-phil__items {
  margin: 11rem auto 0;
  max-width: 94.2rem;
}

.about-phil__item {
  background: #ffec6e;
  border-radius: 4.4rem;
  padding: 4rem 2rem 4rem;
}

.about-phil__item:not(:nth-child(1)) {
  margin-top: 7rem;
}

.about-phil__item-ttl {
  color: #dc970e;
  font-size: 3.8rem;
  letter-spacing: 0.3em;
  line-height: 1.68;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.about-phil__item-ttl::after {
  background: #e7b653;
  content: "";
  display: block;
  height: 4px;
  margin: 1rem auto 0;
  max-width: 36.1rem;
  width: 100%;
}

.about-phil__item-flex {
  align-items: center;
  display: flex;
  gap: 0 14rem;
  margin: 3.2rem auto 0;
  max-width: 75.3rem;
}

.about-phil__item-body {
  flex: 1;
}

.about-phil__item-txt {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.22;
}

.about-phil__item-img {
  aspect-ratio: 318/271;
  max-width: 31.8rem;
}

.about-phil__item-img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*
 * case
 * -------------------------------------------------------------
 */

.case {
  padding: 1rem 0 20rem;
}

.case__inner {
  display: flex;
  flex-direction: column;
  gap: 12.7rem 0;
  max-width: 116.8rem;
}

.case__items {
  grid-gap: 12.7rem 17.4rem;
  display: grid;
  gap: 12.7rem 17.4rem;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.case__ttl {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.case__img {
  aspect-ratio: 425/226;
  border: 1px solid #707070;
  border-radius: 2.2rem;
  margin-top: 2.3rem;
  max-width: 42.5rem;
  overflow: hidden;
}

.case__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.case__items::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.case__items.--yel::before {
  background: #f3e34f;
  height: 86.4rem;
  left: 0;
  max-width: 76.4rem;
  top: 10.5rem;
}

.case__items.--grn::before {
  background: #aec676;
  height: 46.2rem;
  max-width: 74.4rem;
  right: -2.7rem;
  top: 8rem;
}

.case__items.--bl::before {
  background: #26acbb;
  bottom: 0.5rem;
  height: 34rem;
  left: 6.6rem;
  max-width: 69.5rem;
}

.case__items.--crm::before {
  background: #f9e1a9;
  height: 38rem;
  left: 12.1rem;
  max-width: 58.5rem;
  top: -2.6rem;
}

.case__items.--rd::before {
  background: #ff5a5a;
  height: 35rem;
  max-width: 43.7rem;
  right: 12.1rem;
  top: -3.3rem;
}

.case__items.--crm {
  margin-top: 1.2rem;
}

.case__items.--rd {
  margin-top: 2.4rem;
}

/*
 * contact-form
 * -------------------------------------------------------------
 */

.contact-form {
  padding-top: 13.5rem;
}

.contact-form__ttl {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
}

.contact-form__form {
  border: 1px solid #707070;
  margin: 10rem auto 0;
  max-width: 106.2rem;
  padding: 0 0 4rem;
  position: relative;
}

/*
 * contact-tel
 * -------------------------------------------------------------
 */

.contact-tel {
  padding: 20rem 0 30rem;
  text-align: center;
}

.contact-tel__ttl {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.46;
}

.contact-tel__link {
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.46;
  margin-top: 13rem;
}

.contact-tel__txt {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.46;
  margin-top: 10rem;
}

/*
 * contact
 * -------------------------------------------------------------
 */

.contact__items {
  margin-top: 6rem;
  text-align: center;
}

.contact__item.--line {
  display: flex;
  flex-direction: column;
}

.contact__ttl {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
}

.contact__line {
  margin: 0 auto;
  margin-top: 17rem;
  max-width: 29.8rem;
}

.contact__lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact__item.--line .contact__lead {
  margin-top: 17rem;
}

.contact__txt {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-top: 6rem;
  text-align: center;
}

.contact__txt dt {
  font-weight: 400;
}

.contact__txt dd {
  margin-top: 4rem;
}

.contact__item.--mail {
  display: flex;
  flex-direction: column;
  margin-top: 18rem;
}

.contact__mail {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.47;
  margin-top: 7rem;
}

.contact__item.--mail .contact__lead {
  margin-top: 6em;
}

/*
 * diary-tab
 * -------------------------------------------------------------
 */

.diary-tab__items {
  display: flex;
  gap: 0 6rem;
  justify-content: center;
  margin-top: 3rem;
}

.diary-tab__item {
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.diary-tab__item.active {
  color: #93b24b;
}

/*
 * diary
 * -------------------------------------------------------------
 */

.diary {
  padding-bottom: 20rem;
}

.diary__items {
  display: flex;
  flex-direction: column;
  gap: 4rem 0;
  margin: 4rem auto 0;
  max-width: 33rem;
}

.diary__header {
  display: flex;
  font-size: 2rem;
  font-weight: 400;
  gap: 0 2rem;
  justify-content: center;
  line-height: 1.6;
}

.diary__date {
  width: 14rem;
}

.diary__ttl {
  flex: 1;
}

.diary__img {
  aspect-ratio: 140/97;
  margin: 2rem auto 0;
  max-width: 14rem;
  width: 100%;
}

.diary__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.diary__pagination {
  margin: 6rem auto 0;
  /* max-width: 65.5rem; */
  width: 100%;
}

/*
 * form
 * -------------------------------------------------------------
 */

.form {
  border: 1px solid #707070;
  margin-top: 10rem;
  padding: 1.5rem 0 4rem;
  position: relative;
}

.form__item {
  padding: 2.5rem 2.5rem 0;
}

.form__item:nth-child(1) {
  padding-top: 0;
}

.form__ttl,
.form__item dd,
.form__data-item {
  font-size: 2.1rem;
  font-weight: 500;
}

.form__item input {
  border-bottom: 1px solid #707070;
  padding: 2rem 0 1.3rem;
  width: 100%;
}

.form__item textarea {
  border: 1px solid #707070;
  height: 21.4rem;
  margin-top: 2.5rem;
  padding: 1.3rem 1rem;
  width: 100%;
}

.form__data-items {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.form__data-item {
  display: flex;
  justify-content: start;
}

.form__data input {
  cursor: pointer;
  padding-bottom: 2rem;
  width: -moz-fit-content;
  width: fit-content;
}

.form__data-reset {
  position: relative;
  top: 0.5rem;
  width: 3rem;
}

.form__data-reset span {
  background: #000;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
}

.form__data-reset span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.form__data-reset span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.form__btn {
  align-items: center;
  bottom: 4rem;
  display: grid;
  font-size: 2.5rem;
  font-weight: 500;
  justify-items: center;
  max-width: 33.1rem;
  place-items: center;
  position: absolute;
  right: 7.2rem;
  width: 100%;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-submit {
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 1.5rem;
  cursor: pointer;
  font-size: inherit;
  padding: 2.8rem 8rem;
  text-align: center;
  width: 100%;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  font-size: 2rem;
}

/*
 * reno-catch
 * -------------------------------------------------------------
 */

.reno-catch {
  background: #fff;
  padding-top: 14.5rem;
}

.reno-catch__txt {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.45em;
  line-height: 1.46;
  text-align: center;
}

.reno-catch__txt-lg {
  display: block;
  font-size: 5.6rem;
  letter-spacing: 0.45em;
  padding: 11.3rem 0 14rem;
  text-align: center;
}

.reno-catch__txt-lg span {
  display: block;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1.47;
  text-align: center;
}

/* ============================================
	reno02
============================================= */

.reno-catch.--reno02 .reno-catch__txt {
  margin: 0 calc(51% - 50vw);
}

/* ============================================
	reno03
============================================= */

.reno-catch.--reno03 .reno-catch__txt {
  line-height: 2.4;
}

.reno-catch.--reno03 .reno-catch__txt span {
  line-height: 1.8;
  padding: 8rem 0 4rem;
  padding-top: 8rem;
}

.reno-catch.--reno03 .reno-catch__txt-lg {
  padding: 8rem 0 0;
}

.reno-catch.--reno03 .reno-catch__txt-lg span:nth-child(2) {
  margin-top: 2rem;
}

/* ============================================
	reno04
============================================= */

.reno-catch.--reno04 .reno-catch__txt span {
  padding: 8rem 0;
}

/* ============================================
	reno05
============================================= */

.reno-catch.--reno05 .reno-catch__txt span {
  line-height: 2.1;
  padding: 3rem 0 4rem;
}

/*
 * reno-const
 * -------------------------------------------------------------
 */

.reno-const {
  padding-top: 20rem;
}

.reno-const__txt {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 7rem;
  text-align: center;
}

.reno-const__items {
  grid-gap: 4.2rem 7.7rem;
  display: grid;
  gap: 4.2rem 7.7rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 8rem auto 0;
  max-width: 101.1rem;
}

.reno-const__item {
  position: relative;
}

.reno-const__ttl {
  background: #ebc33e;
  border-radius: 2.3rem;
  bottom: 1.3rem;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.45em;
  line-height: 1.46;
  margin: 0 auto;
  max-width: 36rem;
  padding: 1.3rem 0 1.7rem 1.3rem;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
}

.reno-const__ttl.--sm {
  max-width: 29.7rem;
}

.reno-const__item img {
  -o-object-fit: cover;
  aspect-ratio: 486/353;
  border: 1px solid #707070;
  border-radius: 4.5rem;
  height: 100%;
  max-width: 48.6rem;
  object-fit: cover;
}

/*
 * reno-desc
 * -------------------------------------------------------------
 */

.reno-desc {
  padding-top: 10rem;
}

.reno-desc__items {
  display: flex;
  flex-direction: column;
  gap: 10rem 0;
  margin: 10rem auto 0;
  max-width: 101.3rem;
}

.reno-desc__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  line-height: 1.5;
}

.reno-desc__ttl.--bl {
  color: #22bbcc;
}

.reno-desc__ttl.--yel {
  color: #ebc62c;
}

.reno-desc__ttl.--grn {
  color: #a3c650;
}

.reno-desc__ttl.--rd {
  color: #eea792;
}

.reno-desc__ttl.--org {
  color: #edbf63;
}

.reno-desc__ttl.--aqua {
  color: #6dc1cb;
}

.reno-desc__ttl.--deeprd {
  color: #e10000;
}

.reno-desc__ttl.--org2 {
  color: #dc970e;
}

.reno-desc__txt {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  padding-top: 3.5rem;
}

.reno-desc__center-items {
  display: flex;
  flex-direction: column;
  gap: 10rem 0;
  margin: 18rem auto 0;
  max-width: 89.6rem;
  text-align: center;
}

.reno-desc__header {
  text-align: center;
}

.reno-desc__header-ttl {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.45em;
  line-height: 1.46;
}

.reno-desc__header-ttl::after {
  background: #707070;
  content: "";
  display: block;
  height: 3px;
  margin: 2.4rem auto 0;
  max-width: 54.6rem;
  max-width: 90rem;
  width: 100%;
}

.reno-desc__body {
  padding-top: 10rem;
}

.reno-desc__txt.--left {
  text-align: left;
}

.reno-desc__center-items.--reno05 {
  max-width: 101.3rem;
  padding: 0;
}

.reno-desc__center-items.--reno05 .reno-desc__ttl {
  font-size: 2.8rem;
  text-align: left;
}

.reno-desc__center-items.--reno05 .reno-desc__body {
  padding-top: 3.5rem;
}

.reno-desc__center-items.--reno05 .reno-desc__header-ttl::after {
  max-width: 100%;
}

.reno-desc__img {
  aspect-ratio: 520/390;
  margin: 6rem auto 0;
  max-width: 52rem;
}

.reno-desc__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*
 * reno-flow
 * -------------------------------------------------------------
 */

.reno-flow {
  padding-top: 10.6rem;
}

.reno-flow__items {
  display: flex;
  flex-wrap: wrap;
  gap: 11rem 23rem;
  justify-content: space-between;
  margin: 4.3rem auto 0;
  max-width: 103.7rem;
}

.reno-flow__item {
  max-width: 39.4rem;
  position: relative;
  width: 100%;
}

.reno-flow__img {
  max-width: 100%;
}

.reno-flow__body {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1.5;
  margin: 0 auto;
  position: relative;
  top: -2rem;
  width: -moz-fit-content;
  width: fit-content;
}

.reno-flow__body.--right {
  text-align: right;
}

.reno-flow__item:nth-child(1) {
  order: 1;
}

.reno-flow__item:nth-child(2) {
  order: 2;
}

.reno-flow__item:nth-child(3) {
  order: 4;
}

.reno-flow__item:nth-child(4) {
  order: 3;
}

.reno-flow__item:nth-child(5) {
  order: 5;
  position: relative;
  top: -10rem;
}

.reno-flow__item:nth-child(6) {
  order: 6;
  position: relative;
  top: -10rem;
}

.reno-flow__item:nth-child(2n-1)::after {
  background: url(./../images/reno01/reno01_arrow_lg.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 11.5rem;
  max-width: 18.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.reno-flow__item:nth-child(1)::after {
  right: -21rem;
}

.reno-flow__item:nth-child(2)::after,
.reno-flow__item:nth-child(4)::after {
  background: url(./../images/reno01/reno01_arrow_sm.webp) no-repeat center/100%;
  bottom: -12rem;
  content: "";
  display: block;
  height: 11.3rem;
  left: 50%;
  max-width: 7.2rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.reno-flow__item:nth-child(3)::after {
  left: -22rem;
  transform: translateY(-50%) rotate(180deg);
}

.reno-flow__item:nth-child(5)::after {
  right: -21rem;
}

/*
 * reno-flow02
 * -------------------------------------------------------------
 */

.reno-flow02 {
  padding-top: 23rem;
}

.reno-flow02__body {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 96rem;
}

.reno-flow02__ttl-wrap {
  padding-left: 8rem;
  width: -moz-fit-content;
  width: fit-content;
}

.reno-flow02__ttl {
  font-size: 6.4rem;
  font-weight: 700;
  letter-spacing: 0.7em;
  writing-mode: vertical-rl;
}

.reno-flow02__ttl.--grn {
  color: #b2d464;
}

.reno-flow02__ttl.--rd {
  color: #dc5757;
}

.reno-flow02__list {
  grid-gap: 17rem 14rem;
  align-items: center;
  display: grid;
  flex: 1;
  gap: 17rem 14rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 60.5rem;
  position: relative;
}

.reno-flow02__list::before {
  content: "";
  display: block;
  height: 123.5rem;
  left: 50%;
  position: absolute;
  top: -23.4rem;
  transform: translateX(-50%);
  width: 14rem;
}

.reno-flow02__item {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.reno-flow02__item:nth-child(2n-1) {
  text-align: right;
}

.reno-flow02__list.--reno02::before {
  background: url(./../images/reno02/arrow.webp) no-repeat center/100%;
}

/* ==================================================
	reno03
====================================================*/

.reno-flow02__body.--reverse {
  flex-direction: row-reverse;
}

.reno-flow02__body.--reverse .reno-flow02__ttl-wrap {
  padding-left: 0;
  padding-right: 8rem;
}

.reno-flow02__list.--reno03::before {
  background: url(./../images/reno03/arrow.webp) no-repeat center/100%;
}

/*
 * reno-lead
 * -------------------------------------------------------------
 */

.reno-lead {
  position: absolute;
  width: 100%;
}

/* ==========================================
	reno01
============================================*/

.reno-lead.--reno01-1 {
  max-width: 16.4rem;
  right: 0;
  top: 7.5rem;
}

.reno-lead.--reno01-2 {
  left: 0;
  max-width: 6.6rem;
  top: 101.8rem;
}

/* ==========================================
	reno02
============================================*/

.reno-lead.--reno02-1 {
  left: 0;
  max-width: 11rem;
  top: 14rem;
}

.reno-lead.--reno02-2 {
  max-width: 17.4rem;
  right: -2.2rem;
  top: 99rem;
}

/* ==========================================
	reno03
============================================*/

.reno-lead.--reno03-1 {
  left: -1rem;
  max-width: 11rem;
  top: 14rem;
}

.reno-lead.--reno03-2 {
  max-width: 18.43em;
  right: -2.2rem;
  top: 104.5rem;
}

/* ==========================================
	reno04
============================================*/

.reno-lead.--reno04-1 {
  max-width: 14.2rem;
  right: 0;
  top: 8rem;
}

.reno-lead.--reno04-2 {
  left: 0;
  max-width: 17.3em;
  top: 87.9rem;
}

/* ==========================================
	reno05
============================================*/

.reno-lead.--reno05-1 {
  left: -3rem;
  max-width: 20rem;
  top: 4rem;
}

.reno-lead.--reno05-2 {
  max-width: 19.1em;
  right: -2rem;
  top: 92rem;
}

/*
 * reno-message
 * -------------------------------------------------------------
 */

.reno-message {
  padding: 30rem 0;
}

.reno-message__txt {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  line-height: 2;
  text-align: center;
}

.reno-message.--reno02 .reno-message__txt {
  position: relative;
}

/*
 * reno-mv-sp
 * -------------------------------------------------------------
 */

.reno-mv-sp {
  background: #f6f4e6;
}

.reno-mv-sp__inner {
  padding: 12rem 1.5rem 2rem 3.9rem;
  position: relative;
}

.reno-mv-sp__subttl {
  color: #26acbb;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}

.reno-mv-sp__ttl {
  font-feature-settings: "palt";
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.reno-mv-sp__ttl.--top {
  line-height: 1.5;
  margin-top: 5rem;
  position: relative;
}

.reno-mv-sp__ttl::before {
  display: block;
  position: absolute;
}

.reno-mv-sp__img-wrap {
  margin: 6rem auto 0;
  max-width: 37.5rem;
  position: relative;
}

.reno-mv-sp__img-wrap::before {
  aspect-ratio: 352/264;
  border-radius: 6.1rem;
  content: "";
  display: block;
  max-width: 35.2rem;
  position: absolute;
  top: 5rem;
  width: 100%;
  z-index: 0;
}

.reno-mv-sp__img {
  aspect-ratio: 352/264;
  max-width: 35.2rem;
  position: relative;
  z-index: 1;
}

.reno-mv-sp__img img {
  -o-object-fit: cover;
  border-radius: 7.8rem;
  height: 100%;
  object-fit: cover;
}

.reno-mv-sp__img.--right {
  margin-left: auto;
}

.reno-mv-sp__ttl.--bottom {
  margin: 7rem auto 0;
}

.reno-mv-sp__txt {
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-top: 8rem;
}

.reno-mv-sp__lead {
  position: absolute;
  width: 100%;
}

/* ==========================================
	reno01
============================================*/

.reno-mv-sp.--reno01 {
  border-bottom: 5px solid #e9df49;
}

.reno-mv-sp.--reno01 .reno-mv-sp__img-wrap::before {
  background: #f3e34f;
  left: -1.2rem;
}

.reno-mv-sp.--reno01 .reno-mv-sp__ttl::before {
  color: #e9df49;
  display: block;
  opacity: 0.2;
  width: 100%;
}

.reno-mv-sp.--reno01 .reno-mv-sp__ttl.--top::before {
  content: "『お客様がデザイナー』";
  left: 1.5rem;
  top: 1.5rem;
}

.reno-mv-sp.--reno01 .reno-mv-sp__ttl.--bottom::before {
  content: "のリノベーション";
  left: 4rem;
  top: 2.4rem;
}

.reno-mv-sp__lead.--reno01 {
  left: 1rem;
  max-width: 5.5rem;
  top: 8.5rem;
}

/* ==========================================
	reno02
============================================*/

.reno-mv-sp.--reno02 {
  border-bottom: 5px solid #aec676;
}

.reno-mv-sp.--reno02 .reno-mv-sp__inner {
  padding: 12rem 3.9rem 2rem 1.5rem;
}

.reno-mv-sp.--reno02 .reno-mv-sp__top {
  text-align: right;
}

.reno-mv-sp.--reno02 .reno-mv-sp__ttl.--top {
  margin-left: auto;
}

.reno-mv-sp.--reno02 .reno-mv-sp__ttl::before {
  color: #aec676;
  display: block;
  opacity: 0.2;
  width: 100%;
}

.reno-mv-sp.--reno02 .reno-mv-sp__ttl.--top::before {
  content: "賃貸物件専門";
  left: -2.2rem;
  top: 1.2rem;
}

.reno-mv-sp.--reno02 .reno-mv-sp__ttl.--bottom::before {
  content: "整えるリノベーション";
  left: -2rem;
  top: 1.7rem;
}

.reno-mv-sp.--reno02 .reno-mv-sp__img-wrap::before {
  background: #aec676;
  right: -1.2rem;
}

.reno-mv-sp__lead.--reno02 {
  max-width: 9.5rem;
  right: 1rem;
  top: 9.5rem;
}

/* ==========================================
	reno03
============================================*/

.reno-mv-sp.--reno03 .reno-mv-sp__inner {
  padding: 12rem 3.9rem 2rem 1.5rem;
}

.reno-mv-sp.--reno03 .reno-mv-sp__img-wrap {
  margin-top: 4rem;
}

.reno-mv-sp.--reno03 .reno-mv-sp__img-wrap::before {
  background: #70cdd7;
  right: -1.2rem;
}

.reno-mv-sp.--reno03 .reno-mv-sp__top {
  text-align: right;
}

.reno-mv-sp.--reno03 .reno-mv-sp__ttl.--top {
  margin-left: auto;
  margin-top: 2.5rem;
}

.reno-mv-sp.--reno03 .reno-mv-sp__ttl.--bottom {
  margin: 7rem 0 0 auto;
  text-align: right;
}

.reno-mv-sp.--reno03 .reno-mv-sp__ttl::before {
  color: #06a4dd;
  display: block;
  opacity: 0.15;
  width: 100%;
}

.reno-mv-sp.--reno03 .reno-mv-sp__ttl.--top::before {
  content: "退去立ち合いからハウスクリーニング";
  left: -6rem;
  top: 1.5rem;
}

.reno-mv-sp.--reno03 .reno-mv-sp__ttl.--bottom::before {
  content: "『光る』原状回復工事";
  left: -3.8rem;
  top: 2.3rem;
}

.reno-mv-sp.--reno03 .reno-mv-sp__txt {
  text-align: right;
}

.reno-mv-sp__lead.--reno03 {
  max-width: 11.1rem;
  right: 1rem;
  top: 11.8rem;
}

/* ==========================================
	reno04
============================================*/

.reno-mv-sp.--reno04 .reno-mv-sp__img-wrap::before {
  background: #f6e2b5;
}

_::-webkit-full-page-media,
_:future,
:root .reno-mv-sp.--reno04 .reno-mv-sp__img-wrap::before {
  left: -1.2rem;
}

.reno-mv-sp.--reno04 .reno-mv-sp__ttl.--top::before {
  color: #707070;
  content: "店主の想いが";
  left: 3.6rem;
  opacity: 0.2;
  top: 1.1rem;
  width: 100%;
}

.reno-mv-sp.--reno04 .reno-mv-sp__ttl.--bottom {
  margin-left: 0;
}

.reno-mv-sp.--reno04 .reno-mv-sp__ttl.--bottom::before {
  color: #707070;
  content: "隅々まで届くお店に";
  left: 4.7rem;
  opacity: 0.15;
  top: 2.1rem;
  width: 100%;
}

.reno-mv-sp__lead.--reno04 {
  left: 1rem;
  max-width: 6.7rem;
  top: 11rem;
}

/* ==========================================
	reno05
============================================*/

.reno-mv-sp.--reno05 .reno-mv-sp__inner {
  padding: 12rem 3.9rem 2rem 2.4rem;
}

.reno-mv-sp.--reno05 .reno-mv-sp__img-wrap {
  position: relative;
  right: 0.5rem;
}

.reno-mv-sp.--reno05 .reno-mv-sp__img-wrap::before {
  background: #ff5a5a;
  left: 2rem;
}

.reno-mv-sp.--reno05 .reno-mv-sp__top {
  text-align: right;
}

.reno-mv-sp.--reno05 .reno-mv-sp__ttl.--top {
  margin-left: auto;
}

.reno-mv-sp.--reno05 .reno-mv-sp__ttl.--top::before {
  color: #ff5a5a;
  content: "もっと大好きになる";
  left: -1.6rem;
  opacity: 0.15;
  top: 1.6rem;
  width: 100%;
}

.reno-mv-sp.--reno05 .reno-mv-sp__ttl.--bottom {
  line-height: 1.6;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.reno-mv-sp.--reno05 .reno-mv-sp__ttl.--bottom::before {
  color: #ff5a5a;
  content: "自信を持たせる外壁塗装";
  left: -4.3rem;
  opacity: 0.15;
  top: 2rem;
  width: 100%;
}

.reno-mv-sp.--reno05 .reno-mv-sp__txt {
  text-align: right;
}

.reno-mv-sp__lead.--reno05 {
  max-width: 13rem;
  right: 1rem;
  top: 12rem;
}

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

.reno-mv {
  background: #f2efdf;
}

.reno-mv__inner {
  margin: 0 auto;
  max-width: 111rem;
  padding: 8rem 4.5rem 3.5rem;
  position: relative;
}

.reno-mv__img-wrap {
  margin: 0 auto;
  max-width: 81.7rem;
  position: relative;
}

.reno-mv__img-wrap::before {
  aspect-ratio: 686/515;
  border-radius: 7.8rem;
  content: "";
  display: block;
  height: 100%;
  max-width: 68.6rem;
  position: absolute;
  right: 4rem;
  top: 6.9rem;
  width: 100%;
  z-index: 0;
}

.reno-mv.--reno03 .reno-mv__img-wrap::before {
  background: #26acbb;
}

.reno-mv.--reno04 .reno-mv__img-wrap::before {
  background: #f6e2b5;
}

.reno-mv.--reno05 .reno-mv__img-wrap::before {
  background: #ff5a5a;
}

.reno-mv__img {
  aspect-ratio: 686/515;
  max-width: 68.6rem;
  position: relative;
  z-index: 1;
}

.reno-mv__img.--right {
  margin-left: auto;
}

.reno-mv__img img {
  -o-object-fit: cover;
  border-radius: 7.8rem;
  height: 100%;
  object-fit: cover;
}

.reno-mv__ttl-wrap {
  margin-top: 8.5rem;
  text-align: center;
}

.reno-mv__ttl {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 2.33;
  margin: 0 auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.reno-mv__ttl::before {
  display: block;
  position: absolute;
  z-index: -1;
}

.reno-mv__subttl {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  padding-top: 2rem;
}

/* ===========================================
	reno01
=========================================== */

.reno-mv.--reno01 .reno-mv__img-wrap {
  right: 4rem;
}

.reno-mv.--reno01 .reno-mv__img-wrap::before {
  background: #f3e34f;
  right: 13rem;
}

.reno-mv__ttl.--yel::before {
  color: #ffec6e;
  content: "『お客様がデザイナー』のリノベーション";
  left: -4.5rem;
  opacity: 0.3;
  top: 1.5rem;
}

/* ===========================================
	reno02
=========================================== */

.reno-mv.--reno02 .reno-mv__img-wrap::before {
  background: #aec676;
  right: 4rem;
}

.reno-mv__ttl.--grn {
  padding: 0 3rem;
}

.reno-mv__ttl.--grn::before {
  color: #aec676;
  content: "賃貸物件専門　整えるリノベーション";
  left: 5.9rem;
  opacity: 0.4;
  top: 2.2rem;
}

/* ===========================================
	reno03
=========================================== */

.reno-mv.--reno03 .reno-mv__img-wrap::before {
  background: #26acbb;
  right: 4rem;
}

.reno-mv__ttl.--bl span {
  display: block;
  padding: 0 2.5rem;
  position: relative;
}

.reno-mv__ttl.--bl span:nth-child(1)::before {
  color: #70cdd7;
  content: "退去立ち合いからハウスクリーニング";
  left: 4.9rem;
  opacity: 0.3;
  position: absolute;
  top: 1.5rem;
}

.reno-mv__ttl.--bl span:nth-child(2) {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.reno-mv__ttl.--bl span:nth-child(2)::before {
  color: #70cdd7;
  content: "『光る』原状回復工事";
  left: 4.9rem;
  opacity: 0.3;
  position: absolute;
  top: 1.5rem;
}

/* ===========================================
	reno04
=========================================== */

.reno-mv.--reno04 .reno-mv__img-wrap::before {
  background: #f6e2b5;
  right: 13rem;
}

.reno-mv__ttl.--gry {
  padding: 0 3rem;
}

.reno-mv__ttl.--gry::before {
  color: rgba(112, 112, 112, 0.39);
  content: "店主の想いが隅々まで届くお店に";
  left: -0.8rem;
  opacity: 0.4;
  top: 2.2rem;
}

/* ===========================================
	reno05
=========================================== */

.reno-mv.--reno05 .reno-mv__img-wrap::before {
  background: #ff5a5a;
  right: 0;
}

.reno-mv.--reno05 .reno-mv__img {
  margin: auto;
}

.reno-mv__ttl.--rd::before {
  color: #ff5a5a;
  content: "自信を持たせる外壁塗装";
  left: 2.8rem;
  opacity: 0.4;
  top: 1.3rem;
  width: 100%;
}

/*
 * reno-price
 * -------------------------------------------------------------
 */

.reno-price {
  padding-top: 12.2rem;
}

.reno-price__body {
  background: #f3e34f;
  border-radius: 6.9rem;
  margin: 0 auto;
  max-width: 96rem;
  padding: 3rem 3rem 12rem;
}

.reno-price__sec-ttl {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
}

.reno-price__sec-ttl span {
  display: inline-block;
  font-size: 1.8rem;
}

.reno-price__table-wrap {
  padding-top: 7rem;
}

.reno-price__table dt,
.reno-price__table dd {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.reno-price__table01 {
  display: flex;
  flex-direction: column;
  gap: 7rem 0;
  margin: 0 auto;
  max-width: 67.7rem;
  padding-top: 1.7rem;
}

.reno-price__table01-item {
  display: flex;
  gap: 0 16rem;
  justify-content: center;
}

.reno-price__table01-item dt {
  width: 18.5rem;
}

.reno-price__table01-item dd {
  flex: 1;
}

.reno-price__table-ttl {
  border-bottom: 2px solid #ff1111;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 auto 8rem;
  padding-bottom: 1.85rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.reno-price__table-ttl.--pd {
  padding: 0 1.8rem 1.85rem;
}

.reno-price__txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 9rem;
  text-align: center;
}

.reno-price__txt .space {
  margin-top: 1.5rem;
}

.reno-price__txt span {
  display: block;
}

.reno-price__table02 {
  display: flex;
  flex-direction: column;
  gap: 1.8rem 0;
  margin: 0 auto;
  max-width: 59rem;
}

.reno-price__table02-item {
  display: flex;
  gap: 0 25.8rem;
}

.reno-price__table02-item dt {
  width: 22.8rem;
}

.reno-price__table02-item dd {
  flex: 1;
}

/*
 * reno-sec-header
 * -------------------------------------------------------------
 */

.reno-sec-header {
  text-align: center;
}

.reno-sec-header.--left {
  text-align: left;
}

.reno-sec-header__ttl {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.45em;
  line-height: 1.46;
}

.reno-sec-header__ttl::after {
  background: #707070;
  content: "";
  display: block;
  height: 3px;
  margin: 3.6rem auto 0;
  max-width: 54.6rem;
  width: 100%;
}

.reno-sec-header__ttl.--center {
  text-align: center;
}

.reno-sec-header__ttl.--const::after {
  margin-top: 1.8rem;
  max-width: 45.7rem;
}

.reno-sec-header__ttl.--flow::after {
  margin-top: 2rem;
  max-width: 33.5rem;
}

/*
 * reno-strat01
 * -------------------------------------------------------------
 */

.reno-strat01 {
  background: #fff;
  padding: 6rem 0 5.5rem;
}

.reno-strat01__inner {
  position: relative;
}

.reno-strat01__txt {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.66;
  margin: 0 auto;
  max-width: 64.3rem;
  text-align: center;
}

.reno-strat01__img {
  aspect-ratio: 725/523;
  border: 1px solid #707070;
  margin: 5rem auto 0;
  max-width: 72.5rem;
}

.reno-strat01__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/* ============================================
	reno02
============================================= */

.reno-strat01.--reno02 .reno-strat01__txt {
  max-width: 85rem;
}

/* ============================================
	reno03
============================================= */

.reno-strat01.--reno03 .reno-strat01__txt {
  max-width: 90.2rem;
}

/* ============================================
	reno04
============================================= */

/* ============================================
	reno05
============================================= */

/*
 * reno-strat02
 * -------------------------------------------------------------
 */

.reno-strat02 {
  padding: 3.5rem 0 9rem;
}

.reno-strat02__txt {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.7;
  padding: 0 2.5rem;
  position: relative;
}

.reno-strat02__txt.--right {
  text-align: right;
}

/* ============================================
	reno01
============================================= */

.reno-strat02.--reno01 {
  background: url(./../images/reno01/bg_img.webp) no-repeat center/cover;
}

/* ============================================
	reno02
============================================= */

.reno-strat02.--reno02 {
  background: url(./../images/reno02/bg_img.webp) no-repeat center/cover;
}

/* ============================================
	reno03
============================================= */

.reno-strat02.--reno03 {
  background: url(./../images/reno03/bg_img.webp) no-repeat center/cover;
}

/* ============================================
	reno04
============================================= */

.reno-strat02.--reno04 {
  background: url(./../images/reno04/bg_img.webp) no-repeat center/cover;
  padding-top: 4rem;
  position: relative;
}

.reno-strat02.--reno04::before {
  background: rgba(255, 255, 255, 0.6);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* ============================================
	reno05
============================================= */

.reno-strat02.--reno05 {
  background: url(./../images/reno05/bg_img.webp) no-repeat center/cover;
  padding: 9rem 0 22.6rem;
}

/*
 * reno-works
 * -------------------------------------------------------------
 */

.reno-works {
  padding-top: 14rem;
}

.reno-works__body {
  margin: 0 auto;
  max-width: 90rem;
  padding: 13rem 9.5rem 8.6rem;
}

.reno-works__body.--yel {
  background: #f3e34f;
}

.reno-works__body.--grn {
  background: #aec676;
}

.reno-works__body.--bl {
  background: #6dc1cb;
}

.reno-works__body.--crm {
  background: #f9e1a9;
}

.reno-works__body.--rd {
  background: #ff5a5a;
}

.reno-works__header {
  text-align: center;
}

.reno-works__header-ttl {
  border-bottom: 3px solid #ff1111;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-bottom: 2.5rem;
}

.reno-works__header-ttl.--rd {
  border-color: #ff1111;
}

.reno-works__header-ttl.--org {
  border-color: #ffaa00;
}

.reno-works__header-ttl.--gry {
  border-color: #707070;
  color: #dc970e;
}

.reno-works__header-ttl.--offwht {
  border-color: #707070;
  color: #fff8e9;
}

.reno-works__header-txt {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.45;
  padding-top: 2.5rem;
}

.reno-works__items {
  display: flex;
  flex-direction: column;
  gap: 11.6rem 0;
  margin: 6.8rem auto 0;
  max-width: 70.7rem;
}

.reno-works__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
}

.reno-works__img {
  aspect-ratio: 707/445;
  border: 1px solid #707070;
  border-radius: 2.2rem;
  margin-top: 5rem;
  max-width: 100%;
  overflow: hidden;
}

.reno-works__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*
 * review
 * -------------------------------------------------------------
 */

.review {
  padding-bottom: 40rem;
}

.review__items {
  grid-gap: 22.6rem 26rem;
  display: grid;
  gap: 22.6rem 26rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 4rem auto 0;
  max-width: 76.7rem;
}

.lb-outerContainer {
  height: auto !important;
  max-width: 65rem !important;
  width: 100% !important;
}

.lightbox .lb-image {
  height: auto !important;
  width: 100% !important;
}

.lb-data .lb-number {
  display: none !important;
}

/*
 * single
 * -------------------------------------------------------------
 */

.single {
  padding: 8rem 0 30rem;
}

.single__inner {
  max-width: 76rem;
}

.single__ttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}

.single__img {
  aspect-ratio: 880/580;
  margin: 20rem auto 0;
  width: 100%;
}

.single__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.single__content {
  margin-top: 18rem;
}

.single__content h2 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.single__content p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 5rem;
}

.single__content p:first-of-type {
  margin-top: 8rem;
}

.wp-block-image {
  margin-top: 6em;
}

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

.top-about {
  background: #f3e34f;
  border-bottom: 1rem solid #ff0000;
  border-right: 1rem solid #ff0000;
  padding: 7rem 0 5rem;
}

.top-about__header-lead {
  font-size: 3.6rem;
  line-height: 1.77;
  text-align: center;
}

.top-about__header-lead span {
  font-weight: 900;
}

.top-about__header-lead strong {
  font-size: 5.2rem;
  font-weight: 900;
}

.top-about__desc {
  margin: 4.3rem auto 0;
  max-width: 115.4rem;
}

.top-about__desc-ttl {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.77;
  text-align: center;
}

.top-about__desc-txtarea {
  background: url(./../images/top/about_object.webp) no-repeat center/100%;
  margin-top: 2.7rem;
  padding: 3.6rem 5.6rem 7rem;
}

.top-about__txt {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.46;
}

.top-about__body {
  margin-top: 3rem;
}

.top-about__body-inner {
  margin: 0 auto;
  max-width: 102.2rem;
}

.top-about__body-ttl {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.26;
}

.top-about__body-img {
  margin-top: 3.4rem;
}

.top-about__body-txtarea {
  margin: 0 auto;
  max-width: 110.7rem;
}

.top-about__btn {
  display: flex;
  justify-content: flex-end;
  padding-right: 12rem;
}

/*
 * top-body
 * -------------------------------------------------------------
 */

/*
 * top-intro
 * -------------------------------------------------------------
 */

.top-intro__box {
  background: #fff;
  padding: 6rem 0;
}

.top-intro__banner {
  height: 42.1rem;
}

.top-intro__banner::before {
  background: #f2efdf;
  content: "";
  display: block;
  height: 3rem;
  width: 100%;
}

.top-intro__banner a {
  height: 100%;
}

.top-intro__banner a:hover {
  filter: brightness(1.2);
  opacity: 1;
}

.top-intro__banner img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

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

.top-mv {
  height: 80vh;
  margin-top: 4.2rem;
  position: relative;
}

.top-mv__inner {
  height: 100%;
  left: 50%;
  margin: 0 auto;
  max-width: 120rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.top-mv__logo {
  bottom: 12.8rem;
  left: 50%;
  max-width: 86rem;
  min-width: 700px;
  position: absolute;
  transform: translate(-50%);
  width: 100%;
  /* font-size: clamp(1.8rem, 4vw, 4rem); */
  font-size: max(30px, 3.4rem);
  color: #f6ce20;
  font-weight: bold;
  letter-spacing: 1em;
  text-align: center;
  line-height: 1.5;
}

span.sub-title {
  display: block;
  letter-spacing: 0.3em;
  /* font-size: clamp(1.8rem, 3vw, 4rem);/ */
  color: #fff;
}

.top-mv__catch {
  margin-top: 10rem;
}

.visually-hidden {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*
 * top-swiper
 * -------------------------------------------------------------
 */

.top-swiper {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.top-swiper__slide {
  height: 100%;
  height: 80vh;
  width: 100%;
}

.top-swiper__slide img {
  -o-object-fit: cover;
  -o-object-position: left;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.top-swiper__slide:nth-child(1) img {
  -o-object-position: center;
  object-position: center;
}

.top-swiper__slide:nth-child(3) img {
  -o-object-position: bottom;
  object-position: bottom;
}

/*
 * top-works
 * -------------------------------------------------------------
 */

.top-works {
  padding: 15rem 0 12rem;
  position: relative;
}

.top-works::before {
  background: #fff8e9;
  content: "";
  display: block;
  height: 66%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.top-works__header {
  border-bottom: 2px solid #707070;
  font-size: 4.8rem;
  font-weight: 700;
  left: 50%;
  line-height: 1.33;
  margin: 0 auto;
  padding: 0 1rem;
  position: absolute;
  text-align: center;
  top: 13rem;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.top-works__items {
  margin: 0 auto;
  max-width: 112.1rem;
}

.top-works__item {
  border: 1rem solid #000;
  border-top: none;
  padding: 1rem 4.5rem 22rem;
  position: relative;
}

.top-works__item:not(:nth-child(1)) {
  margin-top: -8.5rem;
}

.top-works__item:last-child {
  padding-bottom: 8rem;
}

.top-works__item::before {
  content: "";
  display: block;
  height: 10rem;
  left: 50%;
  position: absolute;
  top: -9rem;
  transform: translateX(-50%);
  width: 112rem;
  z-index: 1;
}

.top-works__ttl-wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 0 7rem;
  position: absolute;
  right: 16rem;
  top: 0;
  z-index: 1;
}

.top-works__ttl {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  line-height: 1.47;
  position: relative;
  writing-mode: vertical-rl;
}

.top-works__ttl span {
  display: inline-block;
  position: relative;
}

.top-works__ttl .hook:nth-child(1) {
  font-weight: 400;
  top: 3rem;
}

.top-works__ttl span.line {
  letter-spacing: 0;
  margin: -3rem 0 -1rem;
}

.top-works__ttl .hook:last-child {
  bottom: 1rem;
  font-weight: 400;
}

.top-works__img {
  aspect-ratio: 1010/765;
  border-radius: 5.4rem;
  margin: 0 auto;
  max-width: 101rem;
  overflow: hidden;
}

.top-works__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.top-works__body {
  padding: 7.7rem 3.5rem 0;
  position: relative;
}

.top-works__lead {
  color: #fffef5;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.47;
}

.top-works__txt {
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 2.25;
  margin-right: 8rem;
  margin-top: 6.5rem;
}

.top-works__btn {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

/* ====================================
	YELLOW
===================================== */

.top-works__item.--yel {
  background: #f3e34f;
  padding-top: 10.6rem;
}

.top-works__item.--yel::before {
  background: url(./../images/top/works_yel_top.webp) no-repeat top/100%;
  height: 10.6rem;
  left: 50.1%;
  top: -10rem;
  width: 112.2rem;
  z-index: 0;
}

.top-works__item.--yel .top-works__ttl-wrap {
  height: 100%;
  right: 16rem;
}

.top-works__item.--yel .top-works__ttl {
  font-size: 4.5rem;
}

.top-works__item.--yel .top-works__ttl:nth-child(1) {
  margin-top: 6rem;
}

.top-works__item.--yel .top-works__ttl:nth-child(2) {
  margin-top: 28rem;
}

/* ====================================
	GREEN
===================================== */

.top-works__item.--grn {
  background: #aec676;
}

.top-works__item.--grn::before {
  background: url(./../images/top/works_grn_top.webp) no-repeat top/100%;
}

.top-works__item.--grn .top-works__ttl-wrap {
  right: 12rem;
}

.top-works__item.--grn .top-works__ttl:nth-child(1) {
  margin-top: 3rem;
}

.top-works__item.--grn .top-works__ttl:nth-child(2) {
  margin-top: 18rem;
  position: relative;
  right: 6rem;
}

.top-works__item.--grn .top-works__btn {
  position: absolute;
  right: 3.5rem;
  top: 7.7rem;
  width: 100%;
}

/* ====================================
	BLUE
===================================== */

.top-works__item.--bl {
  background: #6dc1cb;
}

.top-works__item.--bl::before {
  background: url(./../images/top/works_blu_top.webp) no-repeat top/100%;
}

.top-works__item.--bl .top-works__ttl-wrap {
  align-items: flex-start;
  gap: 0 5.5rem;
  right: 9rem;
  top: 17rem;
}

.top-works__item.--bl .top-works__ttl:nth-child(3) {
  margin-top: -5rem;
}

.top-works__item.--bl .top-works__ttl:last-child {
  margin-top: 17rem;
}

/* ====================================
	CREAM
===================================== */

.top-works__item.--crm {
  background: #f9e1a9;
}

.top-works__item.--crm::before {
  background: url(./../images/top/works_crm_top.webp) no-repeat top/100%;
}

.top-works__item.--crm .top-works__ttl-wrap {
  gap: 0 5rem;
  margin-top: 16.7rem;
  right: 13.6rem;
}

.top-works__item.--crm .top-works__ttl:nth-child(2) {
  margin-top: 10rem;
}

.top-works__item.--crm .top-works__ttl:last-child {
  margin-top: 27.5rem;
}

/* ====================================
	RED
===================================== */

.top-works__item.--rd {
  background: #ff5a5a;
}

.top-works__item.--rd::before {
  background: url(./../images/top/works_red_top.webp) no-repeat top/100%;
  left: 49.9%;
  width: 111.6rem;
}

.top-works__item.--rd .top-works__ttl-wrap {
  align-items: flex-start;
  gap: 0 6rem;
  margin-top: 17.5rem;
  right: 13.6rem;
}

.top-works__item.--rd .top-works__ttl:nth-child(1) {
  margin-top: -1rem;
}

.top-works__item.--rd .top-works__ttl:nth-child(2) {
  margin-top: 1.5rem;
}

/*
 * top-youtube
 * -------------------------------------------------------------
 */

.top-youtube {
  background: #f2efdf;
  padding: 14rem 0;
}

.top-youtube__item {
  aspect-ratio: 932/524;
  background: #f2efdf;
  margin: 0 auto;
  max-width: 93.2rem;
  position: relative;
}

.top-youtube__item:not(:nth-child(1)) {
  margin-top: 14rem;
}

/*
 * works
 * -------------------------------------------------------------
 */

.works {
  padding-bottom: 18rem;
}

.works__inner {
  max-width: 103rem;
}

.works__header {
  padding: 18rem 0 32rem;
  text-align: center;
}

.works__header-ttleng {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.works__header-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-top: 5.5rem;
}

.works__main-img {
  aspect-ratio: 960/776;
  border-radius: 3.8rem;
  margin: 0 auto;
  max-width: 96rem;
  overflow: hidden;
}

.works__main-img.--vertical {
  transform: rotate(-90deg);
}

.works__body {
  padding-bottom: 16rem;
}

.works__body.--not-pb {
  padding-bottom: 0;
}

.works__lead {
  font-size: 3rem;
  font-weight: 500;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 3.66;
  padding: 25rem 0 18rem;
}

.works__txt {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.6;
}

.works__txt.--mt {
  margin-top: 6rem;
}

.works__ttl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 25rem 0 23rem;
}

.works__ttl.--yel {
  color: #ebc62c;
}

.works__ttl.--grn {
  color: #48b31a;
}

.works__ttl.--rd {
  color: #ff0000;
}

.works__ttl.--bl {
  color: #0031b8;
}

.works__ttl.--org {
  color: #dc970e;
}

.works__ttl.--aqua {
  color: #6dc1cb;
}

.works__ttl.--deepaqua {
  color: #26acbb;
}

.works__ttl.--lightrd {
  color: #ff5a5a;
}

.works__items {
  display: flex;
  flex-direction: column;
  gap: 10rem 0;
  margin: 0 auto;
  max-width: 90%;
}

.works__item {
  border: 1px solid #707070;
  border-radius: 4.2rem;
  overflow: hidden;
}

.works__single-wrap {
  padding: 12rem 0 10rem;
}

.works__single-wrap:last-of-type {
  padding-bottom: 0;
}

.works__single-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.works__single-img {
  border: 1px solid #707070;
  border-radius: 2.2rem;
  margin: 10rem auto 0;
  overflow: hidden;
}

.works__main-img img,
.works__item img,
.works__single-img img,
.works__grid-item img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.works__single-body {
  margin-top: 10rem;
}

.works__grid {
  grid-gap: 9rem 6rem;
  align-items: center;
  display: grid;
  gap: 9rem 6rem;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  margin: 10rem auto 0;
  max-width: 90%;
  place-items: center;
}

.works__grid-item {
  aspect-ratio: 398/336;
  border: 1px solid #707070;
  max-width: 40rem;
  width: 100%;
}

.works__grid-item:nth-child(odd):last-child {
  grid-column: span 2;
  justify-self: center;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .review__items {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 8rem;
    max-width: 60rem;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 2.325581395vw;
  }

  .l-footer {
    padding-bottom: 7.5rem;
  }

  .l-footer__contact {
    max-width: 36rem;
    padding: 4rem 0 10rem;
  }

  .l-footer__items {
    gap: 3.7rem 0;
    margin-top: 5rem;
  }

  .l-footer__item.--line {
    gap: 5.5rem 0;
  }

  .l-footer__item.--tel {
    gap: 3rem 0;
    margin-top: 2rem;
  }

  .l-footer__item.--mail {
    gap: 2rem 0;
  }

  .l-footer__line {
    max-width: 7.7rem;
  }

  .l-footer__tel {
    font-size: 2.7rem;
  }

  .l-footer__mail {
    font-size: 2rem;
  }

  .l-footer__btn {
    margin-top: 5.3rem;
  }

  .l-header {
    height: 6rem;
  }

  .l-header__inner {
    padding: 0 1.5rem;
  }

  .l-header__logo {
    max-width: 4rem;
  }

  .l-inner {
    padding: 0 3rem;
  }

  .l-main {
    margin-top: 6rem;
  }

  .l-template {
    padding-bottom: 8rem;
  }

  .l-template__inner {
    max-width: 36rem;
    padding-top: 3.5rem;
  }

  .l-template__ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .l-template__btn {
    max-width: 13.4rem;
  }

  .c-about-header__ttl {
    font-size: 2.6rem;
  }

  .c-about-header__ttleng {
    font-size: 1.8rem;
    letter-spacing: 0.23em;
    margin-top: 0;
  }

  .c-about-header__ttleng.--mt20 {
    margin-top: 1.5rem;
  }

  .c-btn {
    font-size: 1.5rem;
    height: 4.5rem;
    max-width: 13.5rem;
  }

  .c-btn::before {
    left: 0.6rem;
  }

  .c-btn--bl::before {
    background: url(./../images/common/btn_blue_sp.webp) no-repeat center/100%;
  }

  .c-btn--yel::before {
    background: url(./../images/common/btn_yel_sp.webp) no-repeat center/100%;
  }

  .c-btn--blk::before {
    background: url(./../images/common/btn_blk_sp.webp) no-repeat center/100%;
  }

  .c-catch__txt {
    font-size: 1.6rem;
    line-height: 2;
  }

  .c-catch__txt:nth-child(2) {
    margin-top: 3.4rem;
  }

  .c-catch__txt:nth-child(3) {
    margin-top: 3.4rem;
  }

  .c-catch__txt:nth-child(4) {
    margin-top: 3.4rem;
  }

  .c-catch__txt .grn {
    right: 0;
  }

  #js-catch {
    opacity: 0;
    position: relative;
    transform: translateY(-4.5rem);
    /* 初期位置を上にオフセットして隠す */
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    /* アニメーションの定義 */
  }

  .c-diary {
    padding: 3.8rem 0 6rem;
  }

  .c-diary__items {
    gap: 2.3rem 0;
    margin-top: 5rem;
    max-width: 19rem;
  }

  .c-diary__date {
    font-size: 1.2rem;
    width: 7.5rem;
  }

  .c-diary__ttl {
    font-size: 1.2rem;
  }

  .c-diary__btn {
    margin-top: 6rem;
  }

  .c-hamburger {
    height: 4.5rem;
    width: 4.8rem;
  }

  .c-hamburger span:nth-child(1) {
    top: 22.22%;
  }

  .c-hamburger span:nth-child(2) {
    top: 40%;
  }

  .c-hamburger span:nth-child(3) {
    top: 57.78%;
  }

  .c-hamburger span:nth-child(4) {
    top: 75.56%;
  }

  .c-loading__logo {
    top: 35%;
  }

  .l-header.loading,
  .l-main.loading,
  .l-footer {
    transition: opacity 0.3s ease-in-out;
  }

  .c-nav {
    padding: 5rem 0 9rem;
  }

  .c-nav__logo {
    max-width: 32.3rem;
  }

  .c-nav__items {
    gap: 0 5.6rem;
    margin-top: 8.3rem;
    max-width: 34.6rem;
  }

  .c-nav__item {
    margin-bottom: 12.6rem;
    max-width: 14.1rem;
  }

  .c-nav__item a {
    font-size: 1.2rem;
    line-height: 2.6;
  }

  .c-page-mv {
    height: 30.9rem;
  }

  .c-page-mv__inner {
    padding-top: 3.5rem;
    text-align: left;
  }

  .c-page-mv__ttl {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0;
  }

  .c-page-mv__subttl {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.46;
    margin-top: 3.4rem;
  }

  .c-page-mv.--case {
    height: 10.2rem;
  }

  .c-page-mv.--case .c-page-mv__inner {
    padding-top: 3rem;
    text-align: center;
  }

  .c-page-mv.--case .c-page-mv__subttl {
    margin-top: 0;
  }

  .c-page-mv.--case .c-page-mv__ttl {
    letter-spacing: 0.2em;
  }

  .c-page-section-ttl {
    font-size: 2.3rem;
    letter-spacing: 0;
  }

  .c-page-section-ttl.--review {
    letter-spacing: 0;
  }

  .wp-pagenavi {
    gap: 0 2rem;
    margin: 0 auto;
    max-width: 26.3rem;
  }

  .wp-pagenavi .page,
  .wp-pagenavi .current {
    font-size: 1.3rem;
    height: 4rem;
    width: 4rem;
  }

  .c-review {
    padding: 3.5rem 0 3rem;
  }

  .c-review__btn {
    margin-top: 3rem;
  }

  .c-video__inner {
    max-width: 36rem;
    padding: 3.5rem 0 13rem;
  }

  .c-video__ttl {
    font-size: 2.3rem;
  }

  .c-video__items {
    margin-top: 8rem;
  }

  .c-video__item {
    aspect-ratio: 261/147;
    max-width: 26.1rem;
  }

  .c-video__item:not(:nth-child(1)) {
    margin-top: 8.3rem;
  }

  .u-desktop {
    display: none;
  }

  .u-sp {
    display: block;
  }

  .about-area {
    padding-top: 5.3rem;
  }

  .about-area__img {
    margin: 1.7rem calc(50% - 50vw) 0;
    max-width: 100%;
    max-width: 43rem;
  }

  .about-area__list {
    font-size: 1.2rem;
    margin-top: 1rem;
  }

  .about-area__list dt {
    font-size: 1.5rem;
  }

  .about-area__list dt:not(:nth-child(1)) {
    margin-top: 2rem;
  }

  .about-area__list dd {
    margin-top: 2.3rem;
  }

  .about-commit {
    padding-top: 4rem;
  }

  .about-commit__inner {
    max-width: 43rem;
    padding: 0 2rem;
  }

  .about-commit__items {
    margin-top: 2.3rem;
  }

  .about-commit__item:not(:nth-child(1)) {
    margin-top: 3.8rem;
  }

  .about-commit__ttl {
    font-size: 2rem;
  }

  .about-commit__body {
    margin-top: 2.5rem;
  }

  .about-commit__body-ttl {
    font-size: 1.3rem;
  }

  .about-commit__txt {
    font-size: 1.3rem;
  }

  .about-commit__item.--bl {
    padding: 2rem 2rem 4.4rem 2.4rem;
  }

  .about-commit__item.--bl::before {
    background: url(./../images/about/commit_img01_sp.webp) no-repeat center/100%;
    height: 30.5rem;
    right: 0.5rem;
    top: 9rem;
    width: 13.5rem;
  }

  .about-commit__item.--bl .about-commit__body-item:not(:nth-child(1)) {
    margin-top: 4.3rem;
  }

  .about-commit__item.--bl .about-commit__body-item {
    max-width: 24.6rem;
  }

  .about-commit__item.--yel {
    padding: 2rem 0.8rem 2rem 2.4rem;
  }

  .about-commit__item.--yel::before {
    background: url(./../images/about/commit_img02_sp.webp) no-repeat center/100%;
    height: 27.8rem;
    right: 1rem;
    top: 8.5rem;
    width: 36.1rem;
  }

  .about-commit__item.--yel .about-commit__body-item:not(:nth-child(1)) {
    margin-top: 3.4rem;
  }

  .about-commit__item.--yel .about-commit__body-item:nth-child(1) {
    max-width: 24.6rem;
  }

  .about-commit__item.--yel .about-commit__body-item:nth-child(2) {
    max-width: 22rem;
  }

  .about-commit__item.--yel .about-commit__body-item:nth-child(3) {
    margin-top: 3.3rem;
    max-width: 30rem;
  }

  .about-commit__item.--grn {
    padding: 2rem 2rem 14.4rem 3rem;
  }

  .about-commit__item.--grn::before {
    background: url(./../images/about/commit_img03_sp.webp) no-repeat center/100%;
    bottom: 0.7rem;
    height: 44.4rem;
    right: 1rem;
    width: 32.8rem;
  }

  .about-commit__item.--grn .about-commit__body-item:nth-child(1) {
    max-width: 24.6rem;
  }

  .about-commit__item.--grn .about-commit__body-item:nth-child(2) {
    max-width: 27.3rem;
  }

  .about-commit__item.--grn .about-commit__body-item:not(:nth-child(1)) {
    margin-top: 1.8rem;
  }

  .about-company {
    padding: 3.2rem 0 10rem;
  }

  .about-company__detail {
    font-size: 1.2rem;
    margin-top: 4.8rem;
    text-align: left;
  }

  .about-company__item:not(:nth-child(1)) {
    margin-top: 1.1rem;
  }

  .about-company__item.--add {
    margin-right: calc(50% - 50vw);
  }

  .about-company__item .indent {
    display: inline-block;
    padding-left: 3em;
  }

  .about-company__item .dot::before {
    content: "・";
    display: inline-block;
  }

  .about-header {
    padding-top: 9.2rem;
  }

  .about-header::before {
    background: url(./../images/about/mv_bg_sp.webp) no-repeat center/100%;
    bottom: -1rem;
    height: 48.2rem;
    left: 46%;
    width: 30.7rem;
  }

  .about__header-inner {
    padding: 0 2rem;
  }

  .about-header__img {
    max-width: 27.3rem;
  }

  .about-header__ttl {
    margin-top: 4rem;
    text-align: left;
  }

  .about-header__ttlja {
    font-size: 3.5rem;
  }

  .about-header__ttleng {
    font-size: 2.3rem;
    letter-spacing: 0.23em;
  }

  .about-header__lead {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    text-align: left;
  }

  .about-message {
    padding-top: 4rem;
  }

  .about-message__profile {
    margin-top: 1.8rem;
    padding: 3rem 0;
  }

  .about-message__profile-img {
    max-width: 32.2rem;
  }

  .about-message__profile-detail {
    line-height: 1.76;
    right: 1.3rem;
    top: 11rem;
  }

  .about-message__profile-txt {
    font-size: 1.3rem;
  }

  .about-message__profile-txt span {
    display: inline-block;
    margin-left: 0.5em;
  }

  .about-message__profile-name {
    font-size: 1.6rem;
    line-height: 1.43;
  }

  .about-message__body {
    max-width: 31.3rem;
    padding: 4.8rem 0 0;
  }

  .about-message__txt {
    font-size: 1.5rem;
    line-height: 2.86;
  }

  .about-nav {
    flex-direction: column;
    gap: 2.2rem 0;
    margin-top: 2.6rem;
  }

  .about-nav__items {
    gap: 2.2rem 0;
    width: 100%;
  }

  .about-nav__item a {
    font-size: 1.7rem;
    gap: 0 1.2rem;
  }

  .about-nav__items.--right {
    padding-right: 0;
  }

  .about-nav__items.--right .about-nav__item a {
    gap: 0 1.2rem;
  }

  .about-phil {
    padding-top: 10.4rem;
  }

  .about-phil__inner {
    padding: 0 2rem;
  }

  .about-phil__img {
    margin-top: 2.5rem;
    max-width: 37.7rem;
  }

  .about-phil__txtarea::before {
    bottom: auto;
    height: 20.9rem;
    left: 50%;
    top: 18rem;
    transform: translateX(-50%);
    width: 29.4rem;
  }

  .about-phil__lead {
    font-size: 2.2rem;
  }

  .about-phil__txt {
    font-size: 1.5rem;
    margin-top: 2.4rem;
    max-width: 36.2rem;
  }

  .about-phil__items {
    margin-top: 4.4rem;
    max-width: 38.8rem;
  }

  .about-phil__item {
    padding: 1.5rem 2.5rem 3.2rem;
  }

  .about-phil__item:not(:nth-child(1)) {
    margin-top: 3.6rem;
  }

  .about-phil__item-ttl {
    font-size: 2rem;
  }

  .about-phil__item-ttl::after {
    height: 2px;
    max-width: 28.7rem;
  }

  .about-phil__item-flex {
    gap: 0;
    margin-top: 2.4rem;
  }

  .about-phil__item-body {
    width: 50%;
  }

  .about-phil__item-txt {
    font-size: 1.5rem;
    line-height: 2.2;
  }

  .about-phil__item-img {
    aspect-ratio: 167/101;
    max-width: 16.7rem;
    width: 50%;
  }

  .case {
    padding: 9.5rem 0 16.5rem;
  }

  .case__inner {
    gap: 3rem 0;
    max-width: 37.3rem;
  }

  .case__items {
    gap: 3rem 0;
    grid-template-columns: repeat(1, 1fr);
  }

  .case__img {
    aspect-ratio: 297/156;
    margin-top: 3.5rem;
    max-width: 29.7rem;
  }

  .case__items.--yel::before {
    height: 125rem;
    left: -2.3rem;
    max-width: 21.5rem;
    top: -2.8rem;
  }

  .case__items.--grn::before {
    height: 66.5rem;
    max-width: 15.1rem;
    right: -4.9rem;
    top: -21.5rem;
  }

  .case__items.--bl::before {
    bottom: auto;
    height: 122.8rem;
    left: 2rem;
    max-width: 9.1rem;
    top: -49.5rem;
  }

  .case__items.--crm::before {
    height: 41.3rem;
    left: auto;
    max-width: 21.6rem;
    right: -4rem;
    top: 23.1rem;
  }

  .case__items.--rd::before {
    bottom: -7.5rem;
    height: 29.5rem;
    left: -3.7rem;
    max-width: 24.9rem;
    top: auto;
  }

  .contact-form {
    padding-top: 6.5rem;
  }

  .contact-form__ttl {
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .contact-form__form {
    margin-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .contact-tel {
    padding: 4rem 0 3.5rem;
  }

  .contact-tel__ttl {
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .contact-tel__link {
    font-size: 2rem;
    letter-spacing: 0;
    margin-top: 1.5rem;
  }

  .contact-tel__txt {
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-top: 2rem;
  }

  .contact__items {
    margin-top: 3.5rem;
  }

  .contact__ttl {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.46;
  }

  .contact__line {
    margin-top: 6rem;
    max-width: 13.3rem;
  }

  .contact__lead {
    font-size: 1.3rem;
    font-weight: 400;
  }

  .contact__item.--line .contact__lead {
    margin-top: 6rem;
  }

  .contact__txt {
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-top: 2rem;
  }

  .contact__txt dd {
    margin-top: 2rem;
  }

  .contact__item.--mail {
    margin-top: 6rem;
  }

  .contact__mail {
    font-size: 2rem;
    margin-top: 1.5rem;
  }

  .contact__item.--mail .contact__lead {
    margin-top: 1.5rem;
  }

  .diary-tab__items {
    gap: 0;
    justify-content: space-between;
  }

  .diary-tab__item {
    font-size: 1.4rem;
  }

  .diary {
    padding-bottom: 10rem;
  }

  .diary__items {
    gap: 2rem 0;
    margin-top: 3rem;
    max-width: 24.8rem;
  }

  .diary__header {
    font-size: 1.2rem;
  }

  .diary__date {
    width: 7.5rem;
  }

  .diary__img {
    margin-top: 3rem;
  }

  .diary__pagination {
    max-width: 28.5rem;
  }

  .form {
    margin-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .form__item {
    padding: 3rem 1rem 0;
  }

  .form__ttl,
  .form__item dd,
  .form__data-item {
    font-size: 1.1rem;
  }

  .form__item input {
    padding-bottom: 1rem;
  }

  .form__item textarea {
    height: 7rem;
    margin-top: 1rem;
    padding: 1rem 0.6rem;
  }

  .form__item.--data {
    padding-top: 1.2rem;
  }

  .form__data-items {
    margin-top: 0;
  }

  .form__data-reset span {
    height: 1px;
    width: 1.1rem;
  }

  .form__btn {
    font-size: 1.5rem;
    margin: 3rem auto 0;
    max-width: 11.1rem;
    position: static;
  }

  .wpcf7-submit {
    padding: 0.5rem 3rem;
  }

  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 1.4rem;
  }

  .reno-catch {
    padding-top: 7rem;
  }

  .reno-catch__inner {
    padding: 0 1rem;
  }

  .reno-catch__txt {
    font-size: 2.4rem;
  }

  .reno-catch__txt-lg {
    font-size: 4.4rem;
    padding: 5.2rem 0 6.4rem;
  }

  .reno-catch__txt-lg span {
    font-size: 4.4rem;
  }

  .reno-catch.--reno02 .reno-catch__txt {
    font-size: 2.3rem;
  }

  .reno-catch.--reno03 .reno-catch__txt span {
    left: 1rem;
    line-height: 2.4;
    padding: 2rem 0 0;
    position: relative;
  }

  .reno-catch.--reno03 .reno-catch__txt-lg {
    left: 1.5rem;
    padding-top: 5.2rem;
    position: relative;
  }

  .reno-catch.--reno03 .reno-catch__txt-lg span:nth-child(2) {
    margin-top: 4rem;
  }

  .reno-catch.--reno04 .reno-catch__txt span {
    line-height: 2.1;
    padding: 2.5rem 0;
  }

  .reno-const {
    padding-top: 7rem;
  }

  .reno-const__txt {
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 1.7;
    margin-top: 3rem;
  }

  .reno-const__items {
    gap: 4rem 0;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 7rem;
    max-width: 32.5rem;
  }

  .reno-const__ttl {
    bottom: 0.8rem;
    font-size: 2rem;
    max-width: 25.7rem;
    padding: 0.8rem 0;
  }

  .reno-const__ttl.--sm {
    max-width: 20rem;
  }

  .reno-const__item img {
    aspect-ratio: 325/236;
    max-width: 32.5rem;
  }

  .reno-desc {
    padding-top: 8rem;
  }

  .reno-desc__items {
    gap: 4.4rem 0;
    margin-top: 2.15rem;
    max-width: 100%;
  }

  .reno-desc__ttl {
    font-size: 1.6rem;
  }

  .reno-desc__txt {
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 1.7;
    max-width: 25.5rem;
    padding-top: 2.2rem;
  }

  .reno-desc__center-items {
    gap: 3rem 0;
    margin-top: 9rem;
    max-width: 100%;
    padding: 0 2.5rem;
    text-align: left;
  }

  .reno-desc__header {
    text-align: left;
  }

  .reno-desc__header-ttl {
    font-size: 1.7rem;
    padding-left: 0.5rem;
  }

  .reno-desc__header-ttl::after {
    height: 1px;
    left: -0.5rem;
    margin: 0.85rem auto 0 0;
    max-width: 100%;
    position: relative;
  }

  .reno-desc__body {
    padding-top: 2.2rem;
  }

  .reno-desc__center-items .reno-desc__ttl {
    padding-left: 0.5rem;
  }

  .reno-desc__center-items .reno-desc__txt {
    max-width: 100%;
  }

  .reno-desc__center-items.--reno05 .reno-desc__ttl {
    font-size: 1.6rem;
  }

  .reno-desc__center-items.--reno05 .reno-desc__body {
    padding-top: 2.1rem;
  }

  .reno-desc__img {
    aspect-ratio: 218/164;
    max-width: 21.8rem;
  }

  .reno-flow {
    padding-top: 8.8rem;
  }

  .reno-flow__items {
    gap: 2rem 0;
  }

  .reno-flow__img {
    margin: 0 auto;
    max-width: 17.7rem;
  }

  .reno-flow__body {
    font-size: 1rem;
    line-height: 1.44;
    max-width: 31.7rem;
    top: auto;
  }

  .reno-flow__body.--right {
    text-align: left;
  }

  .reno-flow__item:nth-child(3) {
    order: 3;
  }

  .reno-flow__item:nth-child(4) {
    order: 4;
  }

  .reno-flow__item:nth-child(5) {
    top: auto;
  }

  .reno-flow__item:nth-child(6) {
    top: auto;
  }

  .reno-flow__item:nth-child(2n-1)::after {
    display: none;
  }

  .reno-flow__item:nth-child(2)::after,
  .reno-flow__item:nth-child(4)::after {
    display: none;
  }

  .reno-flow02 {
    padding-top: 10rem;
  }

  .reno-flow02__inner {
    padding: 0 2rem;
  }

  .reno-flow02__body {
    max-width: 36.5rem;
  }

  .reno-flow02__ttl-wrap {
    height: 69rem;
    padding-left: 1rem;
  }

  .reno-flow02__ttl {
    font-size: 4.6rem;
    letter-spacing: 0.5em;
  }

  .reno-flow02__list {
    gap: 8rem 6rem;
    max-width: 27.3rem;
  }

  .reno-flow02__list::before {
    height: 61rem;
    top: -12.2rem;
    width: 6.3rem;
  }

  .reno-flow02__item {
    font-size: 1.1rem;
  }

  .reno-flow02__list.--reno02::before {
    background: url(./../images/reno02/arrow.webp) no-repeat center/100% 61rem;
  }

  .reno-flow02__body.--reverse .reno-flow02__ttl-wrap {
    padding-right: 1rem;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .reno-flow02__body.--reverse .reno-flow02__ttl-wrap {
    position: relative;
    right: 5rem;
  }

  .reno-flow02__list.--reno03::before {
    background: url(./../images/reno03/arrow.webp) no-repeat center/100% 61rem;
  }

  .reno-message {
    padding: 18rem 0 14rem;
  }

  .reno-message__txt {
    font-size: 2.5rem;
    line-height: 4;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .reno-message__txt {
    left: 1.4rem;
    position: relative;
  }

  .reno-message.--reno05 {
    padding-top: 10rem;
  }

  .reno-message.--reno05 .l-inner {
    padding: 0 1rem;
  }

  .reno-message.--reno05 .reno-message__txt {
    letter-spacing: 0.35em;
    margin: 0 calc(50% - 50vw);
  }

  .reno-mv__inner {
    padding: 12rem 1.5rem 2rem;
  }

  .reno-price {
    padding-top: 6.4rem;
  }

  .reno-price__body {
    max-width: 36.5rem;
    padding: 2.3rem 0 4.7rem 2rem;
  }

  .reno-price__sec-ttl {
    font-size: 2rem;
  }

  .reno-price__sec-ttl span {
    font-size: 1rem;
  }

  .reno-price__table-wrap {
    padding-top: 4.5rem;
  }

  .reno-price__table dt,
  .reno-price__table dd {
    font-size: 1.1rem;
  }

  .reno-price__table01 {
    gap: 0.9rem 0;
    max-width: 33.6rem;
    padding-top: 0;
  }

  .reno-price__table01-item {
    gap: 0;
  }

  .reno-price__table01-item dt {
    width: 12rem;
  }

  .reno-price__table-ttl {
    border-width: 1px;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    padding-bottom: 0.6rem;
  }

  .reno-price__table-ttl.--pd {
    padding: 0 1rem 0.6rem;
  }

  .reno-price__txt {
    font-size: 1.1rem;
    margin-top: 3rem;
  }

  .reno-price__txt .space {
    margin-top: 1rem;
  }

  .reno-price__txt span {
    font-size: 1rem;
  }

  .reno-price__table02 {
    gap: 0.5rem 0;
    max-width: 29.5rem;
  }

  .reno-price__table02-item {
    gap: 0 8rem;
  }

  .reno-price__table02-item dt {
    width: 12rem;
  }

  .reno-sec-header {
    text-align: left;
  }

  .reno-sec-header__ttl {
    font-size: 2rem;
  }

  .reno-sec-header__ttl::after {
    height: 1px;
    margin: 0.85rem auto 0 0;
    max-width: 24.7rem;
  }

  .reno-sec-header__ttl.--const::after {
    margin: 0.85rem auto 0;
    max-width: 25.7rem;
  }

  .reno-sec-header__ttl.--flow::after {
    margin: 0.35rem auto 0;
    max-width: 24.4rem;
  }

  .reno-strat01 {
    padding: 6rem 0 7.5rem;
  }

  .reno-strat01__inner {
    padding: 0 2rem;
  }

  .reno-strat01__txt {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 2.1;
    margin: 0 0 0 auto;
    max-width: 33.3rem;
    text-align: right;
  }

  .reno-strat01__img {
    aspect-ratio: 272/182;
    margin: 9.4rem 0 0 auto;
    max-width: 27.2rem;
  }

  .reno-strat01.--reno02 .reno-strat01__txt {
    margin: 0 auto 0 0;
    max-width: 29.4rem;
    text-align: left;
  }

  .reno-strat01.--reno02 .reno-strat01__img {
    aspect-ratio: 259/165;
    margin: 7.6rem auto 0 0;
    max-width: 25.9rem;
  }

  .reno-strat01.--reno03 .reno-strat01__txt {
    margin: 0;
    max-width: 29.4rem;
    text-align: left;
  }

  .reno-strat01.--reno03 .reno-strat01__img {
    margin: 6.4rem 0 auto 0;
  }

  .reno-strat01.--reno04 .reno-strat01__img {
    margin-top: 6.3rem;
  }

  .reno-strat01.--reno05 .reno-strat01__inner {
    padding-left: 1rem;
  }

  .reno-strat01.--reno05 .reno-strat01__txt {
    margin: 0 auto 0 0;
    max-width: 27.2rem;
    text-align: left;
  }

  .reno-strat01.--reno05 .reno-strat01__img {
    margin-left: 0;
    margin-right: auto;
  }

  .reno-strat02 {
    padding: 1rem 0 9rem;
  }

  .reno-strat02__inner {
    padding: 0 2rem;
  }

  .reno-strat02__txt {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.93;
    padding: 0;
  }

  .reno-strat02.--reno01 {
    background: url(./../images/reno01/bg_img_sp.jpg) no-repeat center/cover;
  }

  .reno-strat02.--reno02 {
    background: url(./../images/reno02/bg_img_sp.jpg) no-repeat center/cover;
    padding: 3rem 0;
  }

  .reno-strat02.--reno03 {
    padding: 2rem 0;
  }

  .reno-strat02.--reno04 {
    background: none;
    padding: 2rem 0 5rem;
  }

  .reno-strat02.--reno04::before {
    background: url(./../images/reno04/bg_img_sp.webp) no-repeat center/cover;
    transform: rotate(-90deg);
  }

  .reno-strat02.--reno05 {
    padding: 5.7rem 0 12.4rem;
  }

  .reno-works {
    padding-top: 13rem;
  }

  .reno-works__body {
    border: 3px solid #000;
    max-width: 100%;
    padding: 3rem 2.5rem 5.8rem;
  }

  .reno-works__header-ttl {
    border-width: 1px;
    font-size: 2rem;
    letter-spacing: 0;
    padding-bottom: 0.75rem;
  }

  .reno-works__header-txt {
    font-size: 1.2rem;
    padding-top: 1.1rem;
  }

  .reno-works__items {
    gap: 3rem 0;
    margin-top: 5.4rem;
    max-width: 29.7rem;
  }

  .reno-works__ttl {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0;
  }

  .reno-works__img {
    aspect-ratio: 297/158;
    margin-top: 3rem;
  }

  .review {
    padding-bottom: 20rem;
  }

  .review__items {
    gap: 8rem 0;
    max-width: 25.3rem;
    max-width: 100%;
  }

  .lb-outerContainer {
    width: calc(100% - 4rem) !important;
  }

  .single {
    padding: 6rem 0 20rem;
  }

  .single__ttl {
    font-size: 2rem;
  }

  .single__img {
    aspect-ratio: 1/1;
    margin-top: 10rem;
    max-width: 35.3rem;
  }

  .single__content {
    margin-top: 6rem;
  }

  .single__content h2 {
    font-size: 1.6rem;
  }

  .single__content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-top: 4rem;
  }

  .single__content p:first-of-type {
    margin-top: 5rem;
  }

  .wp-block-image {
    margin-top: 4rem;
  }

  .top-about {
    border-width: 5px;
    padding: 2.4rem 0 3rem;
  }

  .top-about__header-lead {
    font-size: 2.3rem;
    line-height: 2.66;
  }

  .top-about__header-lead strong {
    display: inline-block;
    font-size: 4rem;
    margin-top: -2.5rem;
  }

  .top-about__desc {
    margin-top: 2rem;
    position: relative;
  }

  .top-about__desc::before {
    background: url(./../images/top/about_object_sp.webp) no-repeat center/100%;
    content: "";
    display: block;
    height: 51rem;
    margin: 0 calc(50% - 50vw);
    position: absolute;
    right: 0;
    top: -2.9rem;
    width: 55.9rem;
    z-index: 0;
  }

  .top-about__desc-ttl {
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    text-align: left;
  }

  .top-about__desc-txtarea {
    background: none;
    padding: 0;
    position: relative;
  }

  .top-about__txt {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .top-about__body {
    margin-top: 10.5rem;
    position: relative;
  }

  .top-about__body-inner {
    max-width: 35.2rem;
  }

  .top-about__body-ttl {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.66;
  }

  .top-about__body-img {
    margin-top: 1.6rem;
  }

  .top-about__body-txtarea {
    margin-top: 2.4rem;
    max-width: 100%;
  }

  .top-about__btn {
    justify-content: center;
    padding: 0;
  }

  .top-intro__box {
    padding: 0;
  }

  .top-intro__banner {
    height: 100%;
    margin-top: -0.2rem;
  }

  .top-intro__banner::before {
    display: none;
  }

  .top-mv {
    height: 100%;
    margin-top: 0;
  }

  .top-mv__inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: space-between;
    /* max-width: 33rem; */
    max-width: 100%;
    top: 11.6rem;
    transform: translateX(-50%);
  }

  .top-mv__logo {
    font-size: max(16px, 2rem);
    /* max-width: 32.5rem; */
    max-width: 100%;
    min-width: 100%;
    position: static;
    transform: none;
  }

  .top-swiper__slide {
    aspect-ratio: unset;
    aspect-ratio: 428/890;
    max-height: 100%;
  }

  .top-works {
    background: #fff8e9;
    padding: 7rem 0 8.8rem;
  }

  .top-works::before {
    display: none;
  }

  .top-works__header {
    font-size: 3.2rem;
    line-height: 1.5;
    padding: 0 2rem;
    top: 3.6rem;
  }

  .top-works__items {
    max-width: 35.1rem;
  }

  .top-works__item {
    border-width: 5px;
    padding: 2rem 2.5rem 8.5rem;
  }

  .top-works__item:not(:nth-child(1)) {
    margin-top: 0;
  }

  .top-works__item::before {
    height: 5rem;
    left: 50.2%;
    top: -4.9rem;
    width: 35.1rem;
  }

  .top-works__ttl-wrap {
    gap: 0 2.7rem;
  }

  .top-works__ttl {
    font-size: 2.1rem;
  }

  .top-works__ttl .hook:nth-child(1) {
    left: 0.5rem;
    top: 2rem;
  }

  .top-works__ttl span.line {
    margin: -1.4rem 0 0rem;
  }

  .top-works__ttl .hook:last-child {
    bottom: 1rem;
    right: 0.5rem;
  }

  .top-works__img {
    aspect-ratio: 298/226;
    max-width: 29.8rem;
  }

  .top-works__body {
    padding: 8rem 0 0;
  }

  .top-works__lead {
    font-size: 1.8rem;
  }

  .top-works__txt {
    font-size: 1.5rem;
    line-height: 1.46;
    margin: 2rem 0 0;
  }

  .top-works__btn {
    justify-content: center;
    margin-top: 3.5rem;
  }

  .top-works__item.--yel {
    padding-top: 5rem;
  }

  .top-works__item.--yel::before {
    background: url(./../images/top/works_yel_top_sp.webp) no-repeat top/100%;
    height: 5rem;
    left: 50.15%;
    top: -4.9rem;
    width: 35.1rem;
  }

  .top-works__item.--yel .top-works__ttl-wrap {
    gap: 0 2.2rem;
    height: 100%;
    right: 4.8rem;
  }

  .top-works__item.--yel .top-works__ttl {
    font-size: 2.1rem;
  }

  .top-works__item.--yel .top-works__ttl:nth-child(1) {
    margin-top: -4.4rem;
  }

  .top-works__item.--yel .top-works__ttl:nth-child(2) {
    margin-top: 7.7rem;
  }

  .top-works__item.--grn::before {
    background: url(./../images/top/works_grn_top_sp.webp) no-repeat top/100%;
  }

  .top-works__item.--grn .top-works__ttl-wrap {
    height: 100%;
    right: 4rem;
  }

  .top-works__item.--grn .top-works__ttl:nth-child(1) {
    margin-top: -2rem;
  }

  .top-works__item.--grn .top-works__ttl:nth-child(2) {
    margin-top: 1.5rem;
    right: -1.1rem;
  }

  .top-works__item.--grn .top-works__body {
    display: flex;
    flex-direction: column;
  }

  .top-works__item.--grn .top-works__lead {
    order: 1;
  }

  .top-works__item.--grn .top-works__txt {
    order: 2;
  }

  .top-works__item.--grn .top-works__btn {
    order: 3;
    position: static;
  }

  .top-works__item.--bl {
    padding-top: 5rem;
  }

  .top-works__item.--bl::before {
    background: url(./../images/top/works_blu_top_sp.webp) no-repeat top/100%;
  }

  .top-works__item.--bl .top-works__ttl-wrap {
    gap: 0 1.2rem;
    height: 100%;
    right: 3rem;
    top: 2.4rem;
  }

  .top-works__item.--bl .top-works__ttl:nth-child(2) {
    margin-top: 5rem;
  }

  .top-works__item.--bl .top-works__ttl:nth-child(3) {
    margin-top: -1rem;
  }

  .top-works__item.--bl .top-works__ttl:last-child {
    margin-top: 12.4rem;
  }

  .top-works__item.--bl .top-works__ttl:nth-child(3) .hook:first-child {
    top: 1rem;
  }

  .top-works__item.--bl .top-works__ttl:nth-child(3) .hook:last-child {
    bottom: 1rem;
  }

  .top-works__item.--bl .top-works__body {
    padding-top: 11rem;
  }

  .top-works__item.--crm {
    padding-top: 5rem;
  }

  .top-works__item.--crm::before {
    background: url(./../images/top/works_crm_top_sp.webp) no-repeat top/100%;
  }

  .top-works__item.--crm .top-works__ttl-wrap {
    gap: 0 2.1rem;
    margin-top: -2.2rem;
    right: 3.4rem;
  }

  .top-works__item.--crm .top-works__ttl:nth-child(2) {
    margin-top: 3rem;
  }

  .top-works__item.--crm .top-works__ttl:last-child {
    margin-top: 9.4rem;
  }

  .top-works__item.--rd {
    padding-top: 5rem;
  }

  .top-works__item.--rd::before {
    background: url(./../images/top/works_red_top_sp.webp) no-repeat top/100%;
    left: 50.2%;
    width: 35.1rem;
  }

  .top-works__item.--rd .top-works__ttl-wrap {
    gap: 0 2rem;
    height: 100%;
    margin-top: -0.5rem;
    right: 3rem;
  }

  .top-youtube {
    background: #fff;
    padding: 3rem 0 5rem;
  }

  .top-youtube__item:not(:nth-child(1)) {
    margin-top: 5.2rem;
  }

  .works {
    padding-bottom: 10rem;
  }

  .works__inner {
    max-width: 100%;
    padding: 0 2rem;
  }

  .works__header {
    padding: 7rem 0 22.7rem;
  }

  .works__header-ttleng {
    font-size: 1.2rem;
  }

  .works__header-ttl {
    font-size: 2rem;
    padding-top: 2.6rem;
  }

  .works__main-img {
    aspect-ratio: 402/325;
    margin: 0 calc(54% - 50vw);
    max-width: 40.2rem;
  }

  .works__body {
    padding-bottom: 8rem;
  }

  .works__lead {
    font-size: 1.8rem;
    padding: 22rem 0 10.2rem;
  }

  .works__txt {
    font-size: 1.4rem;
    line-height: 2.3;
  }

  .works__txt.--heightset01 {
    height: 25.1rem;
  }

  .works__txt.--heightset02 {
    height: 28.4rem;
  }

  .works__txt.--mt {
    margin-top: 4rem;
  }

  .works__ttl {
    font-size: 2rem;
    padding: 8.5rem 0 13rem;
  }

  .works__items {
    gap: 4rem 0;
    max-width: 34.6rem;
  }

  .works__item {
    aspect-ratio: 346/228;
    max-width: 100%;
  }

  .works__single-wrap {
    padding: 4rem 0 5rem;
  }

  .works__single-ttl {
    font-size: 1.6rem;
  }

  .works__single-img {
    aspect-ratio: 360/274;
    margin-top: 4.4rem;
    max-width: 36rem;
  }

  .works__single-body {
    margin-top: 4.4rem;
  }

  .works__grid {
    gap: 3rem 1.4rem;
    margin-top: 4.4rem;
    max-width: 35rem;
  }

  .works__grid-item {
    aspect-ratio: 168/142;
    max-width: 16.8rem;
  }
}

/*# sourceMappingURL=style.css.map */