@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  letter-spacing: 0;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ===============================================
# インナー幅
=============================================== */
/* ===============================================
# ブレークポイント
=============================================== */
/* ===============================================
# ベースカラー
=============================================== */
#works-archive {
  padding-block: 200px;
}
@media screen and (max-width: 767px) {
  #works-archive {
    padding-block: 140px;
  }
}

.works-archive__title {
  font-size: 54px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .works-archive__title {
    font-size: 40px;
    letter-spacing: 0.1em;
  }
}

.works-archive__sub-title {
  font-size: 20px;
  margin-top: 20px;
}

.service-tabs {
  padding-block: 120px;
}

.service-tabs__inner {
  width: min(1240px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .service-tabs__inner {
    padding-inline: 0px;
  }
}

.service-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .service-tabs__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    width: 60%;
    margin-inline: auto;
  }
}

.service-tabs__item {
  padding: 14px 27px;
  border-radius: 50px;
  background: #d9d9d9;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}
.service-tabs__item[aria-selected=true] {
  background: #000;
  color: #fff;
  pointer-events: none;
}
.service-tabs__item[aria-selected=false] {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .service-tabs__item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.service-tabs__contents {
  margin-top: 60px;
  width: 100%;
  margin-inline: auto;
}

.service-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}
@media (max-width: 1000px) {
  .service-tabs__content-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .service-tabs__content-wrap {
    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-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.service-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

.service-tabs__content {
  width: 100%;
  height: auto;
  background: #f1f1f1;
  padding: 12px;
  border-radius: 10px;
  display: block;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .service-tabs__content {
    padding: 0px;
  }
}
@media (any-hover: hover) {
  .service-tabs__content:hover.service-tabs__content img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.service-tabs__content p {
  color: #000;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
}

.service-tabs__content a img {
  width: 100%;
  height: auto;
  -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;
  border-radius: 12px 12px 0 0;
}

.service-tabs__content--body {
  min-height: 140px;
  padding: 20px;
}

.service-tabs__content--title {
  font-weight: 700;
  font-size: 20px;
}

.service-tabs__content--categorys {
  font-size: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.service-tabs__content--category {
  background: #ffde5a;
  border: 1px solid #333;
  padding: 6px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ===============================================
# area
=============================================== */
#area-main {
  background: -webkit-gradient(linear, left bottom, left top, from(#4e8dbd), to(#ffffff));
  background: linear-gradient(to top, #4e8dbd, #ffffff);
}

.area-sub {
  padding-block: 220px 80px;
}
@media screen and (max-width: 767px) {
  .area-sub {
    padding-block: 120px 40px;
  }
}

#area-main .section__head-main {
  font-size: clamp(1.75rem, -3.6293103448rem + 11.2068965517vw, 3.375rem);
}

.area__block {
  padding-bottom: 32px;
}

.area__title {
  font-size: clamp(1.25rem, -0.4051724138rem + 3.4482758621vw, 1.75rem);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.area__title svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.area__text {
  font-size: clamp(1rem, 0.1724137931rem + 1.724137931vw, 1.25rem);
  margin-top: 8px;
  padding-left: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
}

.area__lead {
  color: #555;
  margin-top: 24px;
}

.area__buttons {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 16px;
}

.area__btn {
  display: inline-block;
  background: #fff;
  color: #00bcd4;
  border: #00bcd4 solid 1px;
  padding: 8px 12px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .area__btn:hover {
    background: #00bcd4;
    color: #fff;
    border: #fff solid 1px;
  }
}

.area__small {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #777;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #263238;
  font-size: clamp(1rem, 0.1724137931rem + 1.724137931vw, 1.25rem);
  background: #fafafa;
  background-attachment: fixed;
  scroll-behavior: smooth; /* スムーズスクロールも同時に有効化 */
  cursor: none;
}
body .no-scroll {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width:768px) {
  .sp {
    display: none !important;
  }
}

#service,
#works-flow,
#about,
#faq,
#contact {
  scroll-margin-top: 101px; /* ヘッダーの高さ */
}
@media screen and (max-width: 767px) {
  #service,
  #works-flow,
  #about,
  #faq,
  #contact {
    scroll-margin-top: 79px;
  }
}

body.is-fixed {
  overflow: hidden;
  width: 100%;
}

.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  cursor: none;
}

.button__icon-path {
  fill: rgb(203, 112, 52);
}

.button__icon-path-contact {
  fill: rgb(203, 112, 52);
}

@media screen and (min-width:768px) {
  .button-bg:hover {
    opacity: 0.7;
  }
}

.button-border {
  border: 1px solid #fff;
}

.button__text {
  color: #333;
  font-size: 16px;
  margin-left: 8px;
  letter-spacing: 0.08em;
  color: #00bcd4;
}

.animation-fade {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
.animation-fade.is-show {
  opacity: 1;
}

.animation-left {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 1.8s ease;
  transition: clip-path 1.8s ease;
}
.animation-left.is-show {
  clip-path: inset(0 0 0 0);
}

/* ===============================================
# header
=============================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: auto;
  padding-inline: 40px;
  background: rgba(255, 255, 255, 0.8); /* ← 透明度80%の白 */
  -webkit-box-shadow: 0 3px 3px 0 rgba(78, 141, 189, 0.4);
          box-shadow: 0 3px 3px 0 rgba(78, 141, 189, 0.4);
}
@media (max-width: 1000px) {
  header {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding-inline: 20px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 17px;
}

.header__logo {
  width: 180px;
}
@media (max-width: 950px) {
  .header__logo {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 120px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media (any-hover: hover) {
  .header__nav-list:hover li a {
    opacity: 0.3;
  }
}
@media (any-hover: hover) and (any-hover: hover) {
  .header__nav-list:hover li:hover a {
    opacity: 1;
  }
}
.header__nav-list li a {
  font-size: 20px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 1100px) {
  .header__nav-list {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media (max-width: 1000px) {
  .header__nav-list {
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }
}

@media (max-width: 900px) {
  .header__nav-item {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-item {
    display: none;
  }
}

#page-top {
  height: 100%;
}

#page-top a {
  background-color: #fbde59;
  padding: 10px;
  color: #263238;
  text-decoration: none;
  border-radius: 50%;
  position: fixed;
  bottom: 80px;
  right: 10px;
  font-family: "Cherry-Bomb-One", sans-serif;
  text-align: center;
  z-index: 100;
  font-size: 12px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}
@media screen and (min-width:768px) {
  #page-top a {
    bottom: 20px;
    right: 90%;
    font-size: 20px;
  }
}

#page-top a:hover {
  color: #fbde59;
  background-color: #263238;
}

#js-mouse {
  pointer-events: none;
  cursor: none;
  position: fixed;
  z-index: 9999;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  background: rgb(251, 222, 89);
  border-radius: 50%;
  -webkit-transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
}
#js-mouse.js-hover {
  -webkit-transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: rgba(251, 222, 89, 0.8);
  cursor: none;
}

/* スマホ表示では非表示にする */
@media (hover: none) and (pointer: coarse) {
  #js-mouse {
    display: none !important;
  }
}
/* FAQアコーディオンの summary にホバーしたときも手のカーソルを消す */
.faq .js-summary {
  cursor: none;
}

a,
details summary,
.js-summary,
button,
input,
textarea {
  cursor: none !important;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 19px;
  right: 30px;
  width: 46px;
  height: 38px;
  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-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media (any-hover: hover) {
  .drawer__icon:hover {
    cursor: pointer;
  }
}
@media (min-width: 901px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 3px;
  background: #fbde59;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 90svh;
  overflow-y: scroll;
  background: rgba(255, 255, 255, 0.9); /* ← 透明度80%の白 */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.drawer.js-show {
  opacity: 1;
  visibility: visible;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.drawer__list {
  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;
  row-gap: 32px;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__list li {
  border-bottom: solid 1px #00bcd4;
}
.drawer__list li a {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 6px;
  border-radius: 20px;
}
@media screen and (min-width:768px) and (any-hover: hover) {
  .drawer__list li a:hover {
    background: -webkit-gradient(linear, right top, left top, from(#3bade3), color-stop(25%, #576fe6), color-stop(51%, #9844b7), to(#ff357f));
    background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
    color: #fafafa;
  }
}

.drawer__btn {
  display: inline-block;
  padding: 8px 30px;
  background: -webkit-gradient(linear, right top, left top, from(#3bade3), color-stop(25%, #576fe6), color-stop(51%, #9844b7), to(#ff357f));
  background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  border-radius: 100vmax;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

/* ===============================================
# fv
=============================================== */
.fv {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin-top: 70px;
}

.fv__inner {
  position: relative;
  height: 100vh;
}

.fv__contents {
  position: absolute;
  top: 30%;
  left: 34.7222222222vw;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 400px;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .fv__contents {
    left: 50%;
  }
}

.fv__contents--text {
  font-family: "Oooh Baby", cursive;
  font-size: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
  line-height: 1;
  font-weight: 700;
  overflow: hidden;
  visibility: hidden; /* 初期は非表示 */
  padding: 20px;
  text-align: center;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fv__contents--text .char {
  opacity: 0;
}

.fv__bottom-text {
  position: absolute;
  content: "";
  z-index: 1;
  right: 15%;
  bottom: 20%;
  font-size: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
  font-style: normal;
  font-weight: 700;
  color: #fbde59;
  -webkit-text-stroke: 1px #333; /* ベンダープレフィックス */
  -webkit-animation: textAnimation 1.5s forwards;
          animation: textAnimation 1.5s forwards;
  font-family: "Oooh Baby", cursive;
  overflow: hidden;
}
.fv__bottom-text span {
  display: inline-block;
  -webkit-animation: 0.5s 2.8s ease forwards slideUp;
          animation: 0.5s 2.8s ease forwards slideUp;
  translate: 0 100%;
}
@media screen and (max-width: 767px) {
  .fv__bottom-text {
    bottom: 25%;
    -webkit-text-stroke: 0.5px #333; /* ベンダープレフィックス */
    text-stroke: 0.5px #333;
  }
}
@-webkit-keyframes slideUp {
  0% {
    translate: 0 100%;
  }
  100% {
    translate: -2.8% 0;
  }
}
@keyframes slideUp {
  0% {
    translate: 0 100%;
  }
  100% {
    translate: -2.8% 0;
  }
}

.contact__caption {
  font-size: clamp(1.125rem, -0.1163793103rem + 2.5862068966vw, 1.5rem);
  font-weight: 500;
  color: #555;
  margin-top: 4px;
  text-align: center;
  letter-spacing: 0.3px;
  font-style: italic;
  opacity: 0.7;
  padding-inline: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__caption::before, .contact__caption::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #555;
  display: block;
}

/* アニメーション付きでふわっと表示したい場合 */
.contact__caption--animation {
  -webkit-animation: fadeIn 4s ease-in;
          animation: fadeIn 4s ease-in;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ===============================================
# section
=============================================== */
section {
  padding-block: 48px;
}
@media screen and (max-width: 767px) {
  section {
    padding-block: 24px;
  }
}

.section__contents {
  margin-top: 40px;
}

.section__inner {
  padding-inline: 16px;
}
@media screen and (min-width:768px) {
  .section__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}
@media screen and (min-width:768px) {
  .section__head {
    margin-bottom: 44px;
  }
}

.section__head-main {
  font-size: clamp(2.5rem, -0.3965517241rem + 6.0344827586vw, 3.375rem);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.section__head-sub {
  font-size: 20px;
}

.section__lead-text {
  font-size: clamp(1.25rem, 0.4224137931rem + 1.724137931vw, 1.5rem);
}

.works .section__lead-text {
  margin-bottom: 20px;
}

section {
  background: -webkit-gradient(linear, left bottom, left top, from(#4e8dbd), to(#ffffff));
  background: linear-gradient(to top, #4e8dbd, #ffffff);
  background-attachment: fixed;
}

/* ===============================================
# service
=============================================== */
.animated__clipView-l {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s ease;
  transition: clip-path 0.8s ease;
}
.animated__clipView-l.js-show {
  clip-path: inset(0 0 0 0);
}

.animated__clipView-r {
  clip-path: inset(0 0 0 100%);
  -webkit-transition: clip-path 0.8s ease;
  transition: clip-path 0.8s ease;
}
.animated__clipView-r.js-show {
  clip-path: inset(0 0 0 0);
}

.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1000px) {
  .service__list {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .service__list {
    grid-template-columns: 1fr;
  }
}

.service__item {
  background: rgba(255, 255, 255, 0.4);
  padding: 24px;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  .service__item {
    padding: 12px;
  }
}

.service__item-img {
  text-align: center;
}

.service__item-img img {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .service__item-img img {
    height: 80px;
  }
}

.service__item-name {
  font-size: clamp(1.5rem, 0.2586206897rem + 2.5862068966vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  text-decoration: underline;
}

.service__item-text {
  font-size: clamp(1rem, 0.5862068966rem + 0.8620689655vw, 1.125rem);
  line-height: 1.6;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .service__item-text {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .service__item-text {
    margin-top: 18px;
  }
}

/* ===============================================
# works
=============================================== */
.card__swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  width: 100%;
  height: auto;
  aspect-ratio: 400/600;
}
@media (max-width: 400px) {
  .card__swiper-slide {
    max-width: 100%;
  }
}

.top-works__item-body {
  background: #f3f3f3;
  padding: 8px;
  height: 200px;
  border-radius: 0 0 20px 20px;
}

.top-works__item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: auto;
}
.top-works__item:hover {
  margin-top: -24px;
}

.top-works__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
  min-height: 200px;
}

.top-works__item-name {
  font-weight: 700;
  margin-top: 6px;
  text-align: left;
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 100%;
}

.top-works__item-link {
  margin-top: 16px;
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* 画面幅が狭い時は折り返し */
  gap: 12px; /* 余白 */
}

.top-works__tool {
  background: #ffde5a;
  padding: 0.2em 0.6em;
  border-radius: 10px;
  font-size: 0.9em;
}

.swiper-container {
  position: relative;
  padding-bottom: 50px;
}

.swiper {
  position: relative;
  padding-top: 24px;
  margin-right: calc(50% - 50vw + 40px);
}
@media (max-width: 500px) {
  .swiper {
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper {
    margin-right: 0px;
  }
}

.swiper-wrapper {
  position: relative;
}

.card__swiper-container,
.card__swiper,
.card__swiper-wrapper,
.card__swiper-slide {
  position: relative;
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* =============================
   ナビゲーションボタン
============================= */
/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: ""; /* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  top: 90%;
  width: 40px;
  height: 40px;
}
@media (max-width: 500px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 92%;
  }
}
@media (max-width: 374px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 98%;
    width: 36px;
    height: 36px;
  }
}

.swiper-button-prev {
  right: 54px;
}

.swiper-button-next {
  right: 0;
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 90%;
  left: 0;
  text-align: left;
}
@media (max-width: 374px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 98%;
  }
}

/* それぞれのページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 40px;
  height: 5px;
  border-radius: 0;
  background: #d9d9d9;
  margin-inline: 5.5px;
}
@media (max-width: 500px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 30px;
  }
}
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet:first-of-type {
  margin-left: 0;
}

/* activeな部分 */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #000;
}

.top-works {
  margin-top: 100vh;
  border-radius: 40px 40px 0 0;
  -webkit-box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15); /* 上側に影を落とす */
}

/* ===============================================
# about
=============================================== */
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__img {
  text-align: center;
  width: 35%;
  margin-inline: auto;
  margin-block: auto;
}
@media screen and (max-width: 767px) {
  .about__img {
    width: 50%;
  }
}

.about__img img {
  margin-top: 60px;
  border-radius: 30px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 5px 15px 0 rgba(18, 51, 18, 0.6);
          box-shadow: 0 5px 15px 0 rgba(18, 51, 18, 0.6);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .about__img img {
    margin-top: 0px;
  }
}

.about__text--container {
  background: rgba(255, 255, 255, 0.4);
  padding: 24px;
  border-radius: 10px;
}

.about__text {
  font-size: 20px;
}
.about__text + .about__text {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 18px;
  }
}

/* ===============================================
# flow
=============================================== */
.flow__list {
  margin-top: 64px;
}
@media screen and (min-width:768px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media (max-width: 1200px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .flow__list {
    grid-template-columns: 1fr;
  }
}

.flow__item {
  position: relative;
  border: 3px dotted #333;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
@media screen and (min-width:768px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}
@media (max-width: px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}

.flow__item-num {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background: #ffde5a;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.flow__item-img {
  text-align: center;
  aspect-ratio: 1/1;
}

.flow__item-img img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .flow__item-img img {
    width: 80%;
  }
}

.flow__item-container {
  background: rgba(255, 255, 255, 0.4); /* Green background with 30% opacity */
  padding: 24px;
  border-radius: 10px;
}

.flow__item-name {
  font-size: clamp(1.375rem, 0.5474137931rem + 1.724137931vw, 1.625rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  text-wrap: nowrap;
}

.flow__item-text {
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.1px;
}

/* ===============================================
# plan
=============================================== */
.plan__cards--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  padding-top: 20px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .plan__cards--pc {
    gap: 16px;
  }
}

.plan__card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  -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;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .plan__card {
    max-width: 500px;
  }
}

.plan__card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.plan__name {
  font-size: clamp(1.375rem, 0.1336206897rem + 2.5862068966vw, 1.75rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.plan__price {
  font-size: clamp(2rem, 0.3448275862rem + 3.4482758621vw, 2.5rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.plan__list {
  margin: 0 0 20px 0;
  text-align: left;
}

.plan__list li {
  padding: 6px 0;
  border-bottom: 1px dotted #333;
  font-size: 16px;
}

.plan__recommend {
  font-weight: 700;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #b2dbfa), color-stop(30%, transparent));
  background: linear-gradient(to top, #b2dbfa 30%, transparent 30%);
}

.plan__card--recommend {
  border: 2px solid #0077cc;
  -webkit-box-shadow: 0 0 12px rgba(0, 119, 204, 0.1);
          box-shadow: 0 0 12px rgba(0, 119, 204, 0.1);
}

.plan__cards--sp-tabs {
  padding-block: 40px;
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #0077cc;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
  font-weight: 700;
}

.top-service-tabs {
  padding-block: 120px;
}

.top-service-tabs__inner {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.top-service-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  border-bottom: 1px solid #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-service-tabs__item {
  display: inline-block;
  padding: 8px;
  border-radius: 4px 4px 0px 0px;
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 400px) {
  .top-service-tabs__item {
    padding: 8px 16px;
  }
}
@media (max-width: 374px) {
  .top-service-tabs__item {
    padding: 6px;
    font-size: 16px;
  }
}
.top-service-tabs__item[aria-selected=true] {
  background: #00bcd4;
  color: #fff;
  pointer-events: none;
}
.top-service-tabs__item[aria-selected=false] {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .top-service-tabs__item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.top-service-tabs__contents {
  margin-top: 46.5px;
  width: min(800px, 100%);
  margin-inline: auto;
}

.top-service-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.top-service-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

/* ===============================================
# price
=============================================== */
@media screen and (min-width:768px) {
  .price__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
}

.price__img {
  margin-bottom: 32px;
}
.price__img img {
  -webkit-box-shadow: 0 5px 15px 0 rgba(18, 51, 18, 0.2);
          box-shadow: 0 5px 15px 0 rgba(18, 51, 18, 0.2);
}

table {
  width: 80%;
  max-width: 600px;
  margin-inline: auto;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  table {
    max-width: 300px;
    width: 100%;
  }
}

.table-head {
  text-align: center;
  font-size: clamp(1.125rem, -0.1163793103rem + 2.5862068966vw, 1.5rem);
}

th,
td {
  -webkit-border: 4px solid #dddddd;
  border: 4px solid #dddddd;
  text-align: left;
  vertical-align: middle;
  padding: 8px;
  width: 50%;
  border-style: solid;
}

.price__text {
  -webkit-margin-top: 20px;
  margin-top: 20px;
  width: 80%;
  max-width: 600px;
  margin-inline: auto;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .price__text {
    max-width: 300px;
    width: 100%;
  }
}

.price__text--br {
  margin-top: 4px;
  width: 80%;
  max-width: 600px;
  margin-inline: auto;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .price__text--br {
    max-width: 300px;
    width: 100%;
    margin-top: 8px;
  }
}

/* ===============================================
# faq
=============================================== */
.faq .js-details {
  cursor: none;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.faq__items {
  border-top: 1px solid #000;
}
@media screen and (min-width:768px) {
  .faq__items {
    margin-inline: 100px;
  }
}

.faq__item {
  border-bottom: 1px solid #000;
  font-size: 16px;
  line-height: normal;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .faq__item {
    padding-left: 10px;
  }
}

.faq__question {
  display: block;
  padding-block: 20px 24px;
  position: relative;
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #000;
}
.faq__question::before {
  right: 60px;
  width: 20px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .faq__question::before {
    right: 10px;
  }
}
.faq__question::after {
  right: 69px;
  width: 2px;
  height: 20px;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    right: 19px;
  }
}
@media (any-hover: hover) {
  .faq__question:hover {
    cursor: pointer;
  }
}

details[open] .faq__question::after {
  rotate: 90deg;
}

.faq__question-text {
  display: inline-block;
  list-style: none;
  position: relative;
  padding-inline: 47px 50px;
}
.faq__question-text::before {
  content: "Q";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  font-size: 32px;
  line-height: 24px;
  background: #ffde5a;
  padding: 6px;
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}

.faq__answer {
  padding-bottom: 20px;
  padding-block: 20px 24px;
}

.faq__answer-text {
  list-style: none;
  position: relative;
  padding-inline: 47px 20px;
}
.faq__answer-text::before {
  content: "A";
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 32px;
  line-height: 24px;
  background: #fff;
  padding: 6px;
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}

/* ===============================================
# contact
=============================================== */
form {
  padding: 40px;
  margin-inline: auto;
  max-width: 980px;
  width: 100%;
  margin-top: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3); /* ← 透明度80%の白 */
}
@media screen and (max-width: 767px) {
  form {
    padding-inline: 16px;
  }
}

.form__inner {
  width: 100%;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .form__inner {
    padding-inline: 0px;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 横並びにする */
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 上揃え */
  border-bottom: 1px solid #eee; /* 区切り線（任意） */
  padding-block: 24px;
}
@media (max-width: 900px) {
  .contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
  }
}

.contact__head {
  min-width: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦位置を揃える */
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px; /* テキストと必須の間隔 */
}
.contact__head.--required::after {
  content: "必須";
  color: #fff;
  background: #e74c3c; /* 赤背景でバッジ風 */
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  position: static; /* ← absolute をやめて通常フローに */
  -webkit-transform: none;
          transform: none; /* ← 中央寄せ解除 */
  text-wrap: nowrap;
}

.contact__data {
  font-size: 20px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #ffde5a;
}

.contact__term {
  font-size: 20px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
}

.required {
  color: red;
}

.placeholder {
  opacity: 0.2;
}

.contact__data::-webkit-input-placeholder, .contact__textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2); /* 薄いグレー */
}

.contact__data::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2); /* 薄いグレー */
}

.contact__data:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2); /* 薄いグレー */
}

.contact__data::-ms-input-placeholder, .contact__textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2); /* 薄いグレー */
}

.contact__data::placeholder,
.contact__textarea::placeholder {
  color: rgba(0, 0, 0, 0.2); /* 薄いグレー */
}

.contact__data-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__data-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  background: #ddd;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  vertical-align: text-bottom;
}

.wpcf7-list-item {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__data-checkbox input[type=checkbox]:checked {
  background: #fff;
  border: #000 1px solid;
}

.contact__data-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #263238;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.wpcf7-spinner {
  display: none !important;
}

.contact__row .contact__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__button {
  margin-inline: auto;
  width: 40%;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  /*ボタンの形状*/
  display: block;
  color: #fff;
  padding: 18px 60px;
  border-radius: 30px;
  text-decoration: none;
  outline: none;
  /*背景の色と形状*/
  background: #00bcd4;
  background-size: 200% auto;
  /*アニメーションの指定*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .contact__button {
    width: 100%;
    padding-inline: 20px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #ffde5a;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.contact__button:hover {
  color: #00bcd4;
  background: #fff;
  background-position: 99% 50%;
}

.top-fv-button {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .top-fv-button {
    margin-top: 40px;
  }
}

.fv-button {
  width: 20%;
  margin-block: 20px;
  margin-left: auto;
  min-width: 300px;
}
@media screen and (max-width: 767px) {
  .fv-button {
    width: 50%;
    min-width: 220px;
  }
}
@media (max-width: 374px) {
  .fv-button {
    margin-top: 36px;
  }
}

.contact__section--button {
  margin-top: 40px;
}

.contact__title {
  font-size: clamp(2rem, -1.3103448276rem + 6.8965517241vw, 3rem);
  text-align: center;
  font-weight: 500;
}

.contact__text {
  font-size: clamp(1.25rem, -0.4051724138rem + 3.4482758621vw, 1.75rem);
  margin-top: 24px;
  text-align: center;
}

/* 全体の余白やフォント */
.contact__list {
  margin: 0;
  padding: 0;
}

.contact__term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px; /* 固定幅（調整可） */
  font-weight: bold;
  color: #333;
}

.contact__required {
  color: #e74c3c; /* 必須マークの色 */
  margin-left: 0.25em;
  font-size: 0.9em;
}

.contact__definition {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 残り幅いっぱい */
  color: #555;
  word-break: break-word; /* 長い文字列も折り返す */
}

/* ボタン部分 */
.contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  margin-top: 2em;
}

.contact__back-button,
.contact__submit-input {
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.contact__back-button {
  background-color: #ccc;
  color: #333;
}

.contact__submit-input {
  background-color: #0073aa;
  color: #fff;
}

.contact__back-button:hover {
  background-color: #bbb;
}

.contact__submit-input:hover {
  background-color: #005f8d;
}

/* 個人情報に関する注意事項 */
.contact__privacy-note {
  margin-top: 32px; /* フォームとの余白 */
  padding: 40px;
  background: #f9f9f9; /* 薄いグレー背景 */
  border: 1px solid #ddd; /* 枠線で区切り */
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
@media screen and (max-width: 767px) {
  .contact__privacy-note {
    padding: 20px;
  }
}

.contact__privacy-note p {
  margin: 0 0 12px;
}

.contact__privacy-note strong {
  display: block;
  text-align: center;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.contact__privacy-note ul {
  margin: 0;
  padding-left: 20px; /* 箇条書きのインデント */
}

.contact__privacy-note li {
  margin-bottom: 6px;
  list-style: disc;
}

.form__submit-input {
  margin-top: 24px;
  margin-inline: auto;
  font-size: 18px;
}

/* ===============================================
# footer
=============================================== */
.footer {
  text-align: center;
  padding: 10px;
  color: #f2f2f2;
  background-color: #333;
}

.footer__copy {
  font-size: 11px;
}

.footer__area {
  text-align: center;
  margin-bottom: 12px;
}

.footer__area a {
  color: #c4c4c4; /* フッター背景が濃い色の場合 */
  font-size: 14px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer__area a:hover {
  opacity: 0.5;
}