@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #555555;
}

body {
  font-family: "Noto serif JP";
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

html {
  overflow-x: clip;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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 {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
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;
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .inner {
    max-width: 1190px;
    padding-inline: 25px;
  }
}

@media (min-width: 780px) and (max-width: 1199px) {
  .sect-wrap,
  .services,
  .works,
  .flow,
  .faq,
  .about,
  .contact {
    width: 100%;
  }
  .about .about__body,
  .services__item,
  .form-items,
  .form-item,
  .price-table .price-table__list {
    max-width: none;
    width: 100%;
  }
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9998;
  background-color: #FFF;
}

.header__inner {
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 81.25rem;
}
@media screen and (min-width: 780px) {
  .header__inner {
    height: 6.875rem;
  }
}

.header__logo {
  z-index: 9999;
  display: block;
}
@media screen and (min-width: 780px) {
  .header__logo {
    color: #FFA1A2;
    font-size: 1.875rem;
  }
}

.header__logo a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #FFA1A2;
}

@media screen and (min-width: 780px) {
  .header__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
  }
}

.header__nav-link {
  font-family: "Noto serif JP";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: #555555;
}

@media screen and (min-width: 780px) {
  .header__drawer {
    display: none;
  }
}

/* スマホメニュー*/
.sp-nav {
  background-color: #FFA1A2;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
@media screen and (min-width: 780px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav__logo {
  padding-top: 1.375rem;
  padding-left: 1.25rem;
  display: block;
}

.sp-nav__logo img {
  width: 5.25rem;
  max-width: 100%;
}

.sp-nav__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 10.1875rem;
  text-align: center;
}

.sp-nav__link {
  font-size: 1.25rem;
  color: #FFF;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp-nav__btn {
  margin-top: 4.5rem;
}

.sp-nav.is-openSP {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/*ハンバーガーメニュー*/
.hamburger {
  z-index: 9999;
  width: 1.4375rem;
  padding: 0;
}

.hamburger span {
  background-color: #FFA1A2;
  display: block;
  height: 0.125rem;
  position: relative;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  width: 1.4375rem;
}

.hamburger span:nth-child(2) {
  margin-top: 0.5625rem;
  margin-bottom: 0.5625rem;
  color: #FFA1A2;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #FFF;
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
  background-color: #FFF;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.9375rem;
  background-color: #FFF;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*ファーストビュー*/
.fv {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-top: 5rem;
}
@media screen and (min-width: 780px) {
  .fv {
    margin-top: 6.875rem;
  }
}

.fv__image {
  aspect-ratio: 375/452;
}
@media screen and (min-width: 780px) {
  .fv__image {
    aspect-ratio: 1440/725;
  }
}

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

.fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #555555;
  min-width: 250px;
}
@media screen and (min-width: 780px) {
  .fv__content {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.fv__catch {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: "Noto serif JP";
}
@media screen and (min-width: 780px) {
  .fv__catch {
    font-size: 4rem;
  }
}

.fv__catch-sub {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.25rem;
  font-family: "Noto serif JP";
}
@media screen and (min-width: 780px) {
  .fv__catch-sub {
    font-size: 1.5rem;
  }
}

.fv__catch-text {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Noto serif JP";
  color: #555555;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .fv__catch-text {
    margin-top: 1.25rem;
    font-size: 3rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Noto serif JP";
  color: #555555;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .section-title {
    font-size: 4rem;
  }
}

.services {
  margin-inline: auto;
}

.services__container {
  margin-top: 2.5rem;
  display: -ms-grid;
  display: grid;
  row-gap: 5rem;
}
@media screen and (min-width: 780px) {
  .services__container {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 10.5rem 1fr;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 10.5rem;
    margin-top: 7.3125rem;
  }
  .services__container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .services__container > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .services__container > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
}

.services__item {
  display: subgrid;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .services__item {
    max-width: 24rem;
  }
}

.services__item-image {
  width: 100%;
}

.services__item-image img {
  width: 100%;
  height: 163px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

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

.services__item-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Noto serif JP";
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .services__item-title {
    font-size: 3rem;
  }
}

.services__item-text {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Noto serif JP";
  margin-top: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .services__item-text {
    font-size: 1.25rem;
  }
}

.flow {
  background-color: #FFF;
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .flow__list {
    gap: 8.75rem;
    margin-top: 5rem;
  }
}

.flow__item {
  background-color: #FFF8F8;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
}
@media screen and (min-width: 780px) {
  .flow__item {
    padding: 4.875rem 1.5rem;
  }
}

.flow__number {
  color: #FFA1A2;
  font-family: "Lato";
  font-size: 3rem;
  margin-top: -3.875rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .flow__number {
    font-size: 6rem;
    margin-top: -9.375rem;
  }
}

.flow__heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #555555;
}
@media screen and (min-width: 780px) {
  .flow__heading {
    font-size: 2.5rem;
  }
}

.flow__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .flow__text {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.faq {
  background-color: #FFF;
}

@media screen and (min-width: 780px) {
  .faq__list {
    margin-top: 5rem;
  }
}

.faq__item {
  border-bottom: 1px solid #555555;
  padding-block: 1.25rem;
}
@media screen and (min-width: 780px) {
  .faq__item {
    padding-block: 2.5rem;
  }
}

.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.5rem;
  width: 100%;
  padding-inline: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #555555;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
}
.faq__q {
  color: #FFA1A2;
  font-weight: 700;
  font-size: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__q {
    font-size: 1.875rem;
  }
}

.faq__q-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #555555;
}
@media screen and (min-width: 780px) {
  .faq__q-text {
    font-size: 1.875rem;
  }
}

.faq__answer {
  display: none;
  padding-inline: 1rem;
}

.faq__a {
  color: #0029A5;
  font-weight: 300;
  margin-right: 0.25rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__a {
    font-size: 1.875rem;
  }
}

.faq__a-text {
  display: inline;
  line-height: 1.8;
  font-size: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__a-text {
    font-size: 1.5rem;
  }
}

/* 表示状態（JSで付与） */
.faq__item.is-open .faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 4.0625rem;
}

.faq__question::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-top: 0.625rem solid #D9D9D9;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 780px) {
  .faq__question::after {
    border-left: 1.1875rem solid transparent;
    border-right: 1.1875rem solid transparent;
    border-top: 1.1875rem solid #D9D9D9;
  }
}

.about {
  background-color: #FFF;
  padding-bottom: 5rem;
}
.about .about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .about .about__content {
    margin-top: 5rem;
  }
}
.about .about__image {
  width: 12.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 780px) {
  .about .about__image {
    width: 30rem;
  }
}
.about .about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__body {
  text-align: center;
  color: #555555;
  max-width: 39rem;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}
.about .about__text {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 780px) {
  .about .about__text {
    font-size: 1.5rem;
  }
}
.about .about__info {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .about .about__info {
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
  }
}
.about .about__subtitle {
  color: #555555;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed #FFA1A2;
}
.about .about__list {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 2.25rem;
}
@media screen and (min-width: 780px) {
  .about .about__skills {
    max-width: 28.125rem;
  }
}
@media screen and (min-width: 780px) {
  .about .about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
    margin-top: 5rem;
  }
  .about .about__body {
    text-align: left;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about .about__list {
    font-size: 1.5rem;
  }
}

/* 設計意図：
スマホでは縦配置、PCでは画像＋テキストを左右配置。
柔らかい印象のため角丸・ピンクを強調。テキストは可読性重視の余白設計。 */
.footer {
  background-color: #FFA1A2;
  color: #FFF;
  padding-block: 5.5rem;
}
.footer .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer .footer__logo {
  font-size: 4rem;
  font-family: "Lato";
  font-weight: 700;
  padding-bottom: 5rem;
}
@media screen and (min-width: 780px) {
  .footer .footer__logo {
    padding-bottom: 15.625rem;
  }
}
.footer .footer__logo-link {
  color: #FFF;
}
.footer .footer__nav {
  width: 100%;
}
.footer .footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 780px) {
  .footer .footer__list {
    gap: 3.4375rem;
  }
}
.footer .footer__link {
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Lato";
  font-weight: 300;
}
.footer .footer__link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 780px) {
  .footer .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: left;
  }
  .footer .footer__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

/* 設計意図：
SPでは中央揃え、PCでは左右配置で全体バランスを整える。
ピンク背景と白文字で統一感を出し、hover時に透明度変化で視覚的アクセントを追加。*/
.sect-wrap {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .sect-wrap {
    margin-top: 5rem;
  }
}

.form-items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: 1.625rem;
  margin-inline: auto;
  overflow: hidden;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .form-items {
    gap: 1.125rem;
    width: 43.75rem;
  }
}

.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  font-family: "Noto serif JP";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .form-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 2.5rem;
    gap: 10.5625rem;
    width: 50rem;
  }
}

.form-item-label {
  color: #000;
  white-space: nowrap;
}
@media screen and (min-width: 780px) {
  .form-item-label {
    width: 8.125rem;
  }
}

.form-item input {
  color: #000;
  padding-block: 0.6875rem;
  padding-left: 1.5rem;
  border-radius: 0.3125rem;
  width: 100%;
  border: 1px solid #555555;
}
@media screen and (min-width: 780px) {
  .form-item input {
    min-width: 31.5625rem;
  }
}

.wpcf7-validates-as-required {
  padding-block: 0.6875rem;
  padding-left: 1.5rem;
  border-radius: 0.3125rem;
  width: 100%;
  border: 1px solid #555555;
}

.form-item input::-webkit-input-placeholder {
  color: #CACACA;
}

.form-item input::-moz-placeholder {
  color: #CACACA;
}

.form-item input:-ms-input-placeholder {
  color: #CACACA;
}

.form-item input::-ms-input-placeholder {
  color: #CACACA;
}

.form-item input::placeholder {
  color: #CACACA;
}

.form-item-label span {
  font-size: 0.625rem;
  color: #CB0000;
  vertical-align: top;
}

.form-item input,
textarea {
  background-color: #FFF;
  border-radius: 0.3125rem;
  padding-block: 0.6875rem;
  padding-left: 1.5rem;
}
@media screen and (min-width: 780px) {
  .form-item input,
  textarea {
    min-width: 31.5625rem;
  }
}

.form-item-input {
  width: 100%;
  height: 2.875rem;
}
@media screen and (min-width: 780px) {
  .form-item-input {
    max-width: 31.25rem;
  }
}

.form-item textarea {
  height: 13.5625rem;
  width: 100%;
  border: 1px solid #555555;
}
@media screen and (min-width: 780px) {
  .form-item textarea {
    max-width: 31.25rem;
    height: 18.75rem;
  }
}

.form-item.form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .form-item.form__radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.0625rem;
    margin-top: 0.625rem;
  }
}

div.wpcf7 .wpcf7-spinner {
  display: none;
}

.wpcf7-submit {
  color: #FFF;
  background-color: #FFA1A2;
  border-radius: 1.5625rem;
  padding: 0.6875rem 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  width: 11.25rem;
}

.wpcf7-submit:hover {
  color: #FFA1A2;
  background-color: #FFF;
  border: 1px solid #FFA1A2;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #FFA1A2;
  border-radius: 100%;
  /* ラジオボタンっぽく丸くする */
  margin-right: 8px;
  content: "";
  height: 0.875rem;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  /* 色をじんわり変化させる */
  width: 0.875rem;
}

/* チェック後のボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #FFA1A2;
  /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
  /* 中心の色のスタイル */
}

.contact__text {
  font-size: 1rem;
  font-weight: 300;
  font-family: "Noto serif JP";
  text-align: center;
  margin-top: 2.5rem;
}

.contact__btn {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: 2.5rem 6.125rem;
}

.under-fv__inner {
  position: relative;
  margin-top: 5rem;
}

.under-fv__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.under-fv__title {
  font-size: 6.125rem;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 9.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #555555;
}

.under-slider__slide-text {
  font-size: 6rem;
  font-weight: 700;
  font-family: "Noto serif JP";
  color: #FFA1A2;
  display: inline-block;
}

.under-slider__slide {
  display: inline-block;
}

.under-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.under-slider__slide {
  display: inline-block;
  -webkit-animation: slide-left 10s linear infinite;
          animation: slide-left 10s linear infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.under__inner {
  color: #555555;
  margin-inline: 9.375rem;
  text-align: center;
}

.under-contact__inner {
  padding-block: 3.75rem 7.5rem;
  border: 2px solid #FFA1A2;
  border-radius: 1.25rem;
  margin-block: 10.3125rem 7.5rem;
}

.under-contact__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Noto serif JP";
  text-align: center;
  color: #FFA1A2;
}

.under-contact__text {
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Noto serif JP";
  text-align: center;
  margin-top: 1.375rem;
}

.under-contact__btn {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.875rem;
}

.btn {
  background-color: #FFA1A2;
  color: #FFF;
  padding: 0.75rem 2.375rem;
  border-radius: 2.375rem;
  text-align: center;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.25rem;
  font-weight: 300;
  font-family: "Noto serif JP";
}
@media screen and (min-width: 780px) {
  .btn {
    font-size: 2.25rem;
    padding: 1.75rem 5.375rem;
    border-radius: 5.375rem;
  }
}

.works-detail__content {
  text-align: left;
  padding-left: 3.875rem;
  margin-top: 5rem;
}

.works-detail__thumb {
  width: 45rem;
  margin-inline: auto;
}

.works-detail__thumb img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.works-detail__title {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Noto serif JP";
  text-align: left;
}

.works-detail__sections {
  margin-top: 3.125rem;
  display: -ms-grid;
  display: grid;
}

.works-detail__item-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto serif JP";
  text-align: left;
}

.works-detail__item-text {
  font-size: 2rem;
  font-weight: 300;
  font-family: "Noto serif JP";
  text-align: left;
}

.works-detail__item-text a {
  color: #555555;
}

.column-page__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 780px) {
  .column-page__tab {
    gap: 1.5rem;
    margin-bottom: 3.75rem;
  }
}
.column-page__tab a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #FFF;
  border: 1px solid #555555;
  color: #555555;
  text-decoration: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 780px) {
  .column-page__tab a {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
.column-page__tab a:hover {
  background-color: #FFA1A2;
  color: #FFF;
  border-color: #FFA1A2;
}
.column-page__tab a.active {
  background-color: #FFA1A2;
  color: #FFF;
  border-color: #FFA1A2;
}

.loading {
  text-align: center;
  padding: 2.5rem;
  font-size: 1rem;
  color: #555555;
}

.error {
  text-align: center;
  padding: 2.5rem;
  font-size: 1rem;
  color: #CB0000;
}

.no-posts {
  text-align: center;
  padding: 2.5rem;
  font-size: 1rem;
  color: #555555;
}

.cards {
  display: -ms-grid;
  display: grid;
  justify-items: center;
}

.cards__item {
  width: 100%;
  margin-inline: auto;
  background-color: #FFF8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 1.875rem 1.25rem 2.5rem;
}
@media screen and (min-width: 780px) {
  .cards__item {
    margin-top: 0.9375rem;
    max-width: 31.25rem;
  }
}

.cards__item-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.375rem;
}
@media screen and (min-width: 780px) {
  .cards__item-category {
    margin-top: 1.3125rem;
  }
}

.cards__item-category p {
  color: #555555;
  text-decoration: none;
  border: 1px solid #555555;
  padding: 0.125rem 0.875rem;
  border-radius: 1.5625rem;
  font-size: 1rem;
}

.cards__item-image {
  aspect-ratio: 460/270;
  width: 100%;
  overflow: hidden;
  margin-inline: auto;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 780px) {
  .cards__item-image {
    max-width: 28.75rem;
  }
}

.cards__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.3125rem;
}

.cards__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 7.5rem;
  text-align: left;
  margin-top: 0.6875rem;
}

.cards__item-content a {
  color: #555555;
}

.cards__item-content h3 {
  font-family: "Noto serif JP";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.4375rem;
  text-align: left;
  color: #555555;
}

.cards__item-text, .cards__item-title {
  font-size: 1.5rem;
  font-weight: 300;
  text-align: left;
  color: #555555;
}

.cards__btn {
  margin-top: auto;
  padding-top: 1rem;
}
@media screen and (min-width: 780px) {
  .cards__btn {
    padding-top: 1.125rem;
  }
}

.cards__item-period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #555555;
}

.works {
  text-align: center;
}

.works__container {
  margin-top: 2.5rem;
  margin-inline: 0;
  padding-inline: 20px;
}
@media screen and (min-width: 780px) {
  .works__container {
    padding-inline: 0;
  }
}
.works__container .splide__track {
  overflow: hidden;
}
.works__container .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.works__item {
  background-color: #FFF8F8;
}

.works-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 780px) {
  .works-grid {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.works-card {
  background-color: #FFF;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.works-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.works-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works-card__thumb {
  position: relative;
  overflow: hidden;
}

.works-card__thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.works-card__link:hover .works-card__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.works-card__title {
  font-size: 1.125rem;
  font-weight: 300;
  margin: 1rem 1rem 0.5rem;
  color: #555555;
  line-height: 1.4;
}

.works-card__excerpt {
  font-size: 0.875rem;
  color: #555555;
  margin: 0 1rem 1rem;
  line-height: 1.5;
}

.works__btn {
  margin-top: 4.875rem;
}

.works-archive__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.works-archive__content {
  margin-top: 2.5rem;
}

.works-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  background-color: #FFF8F8;
  padding: 2rem 1rem;
}

.works-archive__category-title {
  font-size: 2.25rem;
  font-weight: 300;
  text-align: left;
  color: #FFA1A2;
}

.works-archive__tab a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #FFF;
  border: 1px solid #FFA1A2;
  color: #FFA1A2;
  text-decoration: none;
  border-radius: 1.5625rem;
  font-size: 0.875rem;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 780px) {
  .works-archive__tab a {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
.works-archive__tab a:hover {
  background-color: #FFA1A2;
  color: #FFF;
  border-color: #FFA1A2;
}
.works-archive__tab a.active {
  background-color: #FFA1A2;
  color: #FFF;
  border-color: #FFA1A2;
}

.cat-item {
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  color: #FFA1A2;
  background-color: #FFF;
  padding: 0.1875rem 1.25rem;
  border-radius: 1.5625rem;
  border: 1px solid #FFA1A2;
}

.cat-item a {
  color: #FFA1A2;
}

.works-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.375rem;
}

.works-card__period {
  font-size: 0.875rem;
  font-weight: 300;
  text-align: left;
  color: #555555;
}

/* Table */
.price-table {
  padding-block: 5rem;
}
.price-table .price-table__list {
  width: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
  border-collapse: collapse;
}
.price-table .price-table__list th,
.price-table .price-table__list td {
  font-size: 2.25rem;
  padding-block: 2.125rem 1.75rem;
  padding-inline: 3.5rem;
  text-align: left;
  border-bottom: 1px solid #FFA1A2;
}
.price-table .price-table__list td {
  text-align: right;
  font-weight: 600;
}
.price-table .price__note {
  font-size: 0.75rem;
  line-height: 1.8;
  margin-top: 1.5rem;
  text-align: left;
  color: #555555;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .price-table .price-table__list th {
    width: 65%;
  }
  .price-table .price-table__list td {
    width: 45%;
  }
}