@charset "UTF-8";
.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    padding-inline: 100px;
  }
}

.body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .body {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .body {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .body {
    font-size: 28px;
  }
}

body.no-scroll {
  overflow: hidden; /* スクロールを無効化 */
}

html {
  scroll-behavior: smooth; /* スムーズスクロールを有効化 */
}

.hidden-md {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}

.hidden-sm {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-sm {
    display: none;
  }
}

.hidden-lg {
  display: block;
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1200;
  background-color: #e9ffef;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 20px;
  }
}

.header__container {
  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;
}

.header__logo-link {
  display: block;
  height: 60px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.header__logo-link:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .header__logo-link {
    height: 80px;
  }
}

.header__logo {
  height: 60px;
}
.header__logo img {
  padding-block: 5px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    height: 80px;
  }
  .header__logo img {
    padding-block: 20px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}

.header__link {
  display: block;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  padding: 4px 6px;
  text-decoration: none;
  background-color: #FFEEAB;
  color: #333333;
  text-align: center;
  cursor: pointer;
  border-radius: 78px;
  -webkit-animation: btn_animation 1s 10;
          animation: btn_animation 1s 10; /* アニメーションを適用 */
  -webkit-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s; /* スムーズな色変化 */
}
.header__link:hover {
  color: #FFEEAB;
  background-color: #333333;
}

@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  20% {
    -webkit-transform: scale(0.8, 1.1);
            transform: scale(0.8, 1.1);
  }
  95% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
}

@keyframes btn_animation {
  0% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  20% {
    -webkit-transform: scale(0.8, 1.1);
            transform: scale(0.8, 1.1);
  }
  95% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
}
.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background: #333333;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}
.drawer-icon__bar.is-checked:nth-child(1), .drawer-icon__bar.is-checked:nth-child(3) {
  top: 9px;
}
.drawer-icon__bar.is-checked:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon__bar.is-checked:nth-child(2) {
  display: none;
}
.drawer-icon__bar.is-checked:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-content {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  width: 90%;
  height: calc(100vh - 60px);
  background-color: #e9ffef;
  z-index: 1001;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.drawer-content.is-checked {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /* 上揃え */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  padding: 53px 40px 100px;
}

.drawer-content__link {
  font-family: "Montserrat", sans-serif;
  -webkit-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
}
.drawer-content__link:hover {
  background-color: #333333;
  color: #e9ffef;
}

#btn_animation .drawer-content__link {
  display: block;
  padding: 4px 6px;
  line-height: 60px;
  font-size: 20px;
  text-decoration: none;
  background-color: #FFEEAB;
  color: #333333;
  text-align: center;
  cursor: pointer;
  border-radius: 78px;
  -webkit-animation: btn_animation 1s infinite;
          animation: btn_animation 1s infinite;
}
#btn_animation .drawer-content__link:hover {
  color: #FFEEAB;
  background-color: #333333;
}

@keyframes btn_animation {
  0% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  20% {
    -webkit-transform: scale(0.8, 1.1);
            transform: scale(0.8, 1.1);
  }
  95% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
}
.fv {
  position: relative;
  height: 100vh;
  background: url(../img/fv-sp.png) no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv {
    background: url(../img/fv-pc.png) no-repeat center left/cover;
  }
}

.fv__container {
  position: absolute;
  bottom: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  padding-left: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .fv__container {
    bottom: 35%;
  }
}
@media screen and (min-width: 900px) {
  .fv__container {
    bottom: 38%;
  }
}
@media screen and (min-width: 1200px) {
  .fv__container {
    bottom: 40%;
  }
}

.fv__title__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.fv__title-main {
  font-family: "Allura", sans-serif;
  font-size: 28px;
  width: auto;
  color: #e9ffef;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 768px) {
  .fv__title-main {
    font-size: 32px;
  }
}
@media screen and (min-width: 900px) {
  .fv__title-main {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-main {
    font-size: 38px;
  }
}

.fv__title__image img {
  width: 40px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .fv__title__image img {
    width: 60px;
  }
}

.fv__text {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  color: #e9ffef;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 32px;
  }
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 38px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__text {
    font-size: 48px;
  }
}

.fv__button__wrapper {
  position: absolute;
  bottom: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .fv__button__wrapper {
    bottom: 140px;
  }
}
@media screen and (min-width: 900px) {
  .fv__button__wrapper {
    bottom: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__button__wrapper {
    bottom: 180px;
  }
}

.fv__button, .about__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  background-color: #c90000;
  color: #FFFFFF; /* 初期状態の文字色 */
  text-align: center;
  border-radius: 50px;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease; /* アニメーションの設定 */
}
.fv__button:hover, .about__button:hover {
  color: #c90000;
  background-color: #eba3a3;
}

.block {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e9ffef;
  opacity: 0.5;
  -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.25);
}

.section {
  padding-block: 20px;
  background-color: #e9ffef;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 30px;
  }
}
@media screen and (min-width: 900px) {
  .section {
    padding-block: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .section {
    padding-block: 50px;
  }
}

.section__container {
  padding: 40px 15px;
  background-color: #FFFFFF;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .section__container {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 900px) {
  .section__container {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .section__container {
    padding-inline: 100px;
  }
}

.work__container {
  border-radius: 30px 0 30px 0;
}

.section__title, .contact__title {
  font-family: "Montserrat", sans-serif;
  display: inline;
  font-size: 32px;
  padding-bottom: 4px;
  padding-right: 4px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .section__title, .contact__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .section__title, .contact__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .section__title, .contact__title {
    font-size: 32px;
  }
}

.work__content {
  margin-top: 30px;
}

.work__text {
  text-align: center;
  font-weight: bold;
}

.work__text-basic {
  margin-top: 40px;
}

.text-bold {
  font-weight: bold;
}

.linear-gradient {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFEEAB), to(#FFFFFF));
  background: linear-gradient(90deg, #FFEEAB 50%, #FFFFFF 100%);
}

.swiper__container {
  margin-top: 38px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .swiper__container {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 900px) {
  .swiper__container {
    padding-inline: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper__container {
    padding-inline: 130px;
  }
}

.swiper-slide {
  position: relative;
}

/* 共通スタイル */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: #e9ffef; /* ボタンの背景色 */
  border-radius: 50%; /* 丸いボタン */
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* ボタンの影 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

/* ホバー時のスタイル */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1); /* 拡大 */
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease; /* アニメーションの設定 */
  background-color: #00D7C5; /* ホバー時の背景色 */
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #e9ffef; /* ホバー時のアイコンの色 */
}

/* 前ボタン */
.swiper-button-prev {
  left: 10px; /* 左側に配置 */
}
.swiper-button-prev::after {
  content: "\f060"; /* Font Awesomeのアイコン（左矢印） */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: #00D7C5; /* アイコンの色 */
  line-height: 50px;
  text-align: center;
  display: block;
}

/* 次ボタン */
.swiper-button-next {
  right: 10px; /* 右側に配置 */
}
.swiper-button-next::after {
  content: "\f061"; /* Font Awesomeのアイコン（右矢印） */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: #00D7C5; /* アイコンの色 */
  line-height: 50px;
  text-align: center;
  display: block;
}

.swiper-pagination {
  bottom: -60px !important;
}

.swiper-pagination-bullet {
  background: url(../img/negi.png) no-repeat center center/cover;
  border-radius: 0;
  width: 30px;
  height: 30px;
  margin: 0 !important;
}

.portfolio__table table {
  border-collapse: separate; /* セルの境界線を分離 */
  border-spacing: 0; /* セル間のスペースをゼロに設定 */
  margin-inline: auto;
  text-align: left;
  border-radius: 10px; /* テーブル全体の角丸 */
  overflow: hidden; /* 角丸からはみ出る部分を隠す */
  border: 1px solid rgb(255, 255, 255); /* 半透明の境界線 */
  background: linear-gradient(135deg, rgb(255, 255, 255), rgba(240, 240, 240, 0.8)); /* 背景にグラデーションを追加 */
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4); /* テーブルの影 */
}

.portfolio__table td,
.portfolio__table th {
  font-size: 12px;
  padding: 4px;
  border: 1px solid rgb(255, 255, 255); /* 半透明の境界線 */
  white-space: nowrap; /* テキストを折り返さない */
}
@media screen and (min-width: 768px) {
  .portfolio__table td,
  .portfolio__table th {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .portfolio__table td,
  .portfolio__table th {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .portfolio__table td,
  .portfolio__table th {
    font-size: 18px;
  }
}

.portfolio__table td:nth-of-type(1) {
  background: linear-gradient(135deg, rgb(144, 144, 144), rgba(240, 240, 240, 0.6));
}

.portfolio__table tr:last-child td {
  border-bottom: none; /* 最後の行のセルの下部境界線を削除 */
}

.portfolio__table li {
  list-style-type: disc;
  margin-left: 20px;
}

.portfolio__table {
  display: none; /* 初期状態で非表示 */
  position: absolute; /* 親要素内で絶対位置に配置 */
  width: 80%;
  z-index: 10; /* 他の要素より前面に表示 */
  opacity: 0.8; /* 初期状態で透明 */
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease; /* アニメーションを追加 */
}
@media screen and (min-width: 768px) {
  .portfolio__table {
    display: block;
    opacity: 0; /* 初期状態で透明 */
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
            transform: translate(-50%, -50%) scale(0.9); /* 初期位置を中央に設定 */
  }
}

.portfolio__table--visible {
  opacity: 0.8; /* 表示 */
}
@media screen and (min-width: 768px) {
  .portfolio__table--visible {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1); /* 拡大して中央に表示 */
  }
}

.service__container {
  border-radius: 0 30px 0 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .service__container {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 900px) {
  .service__container {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .service__container {
    padding-inline: 100px;
  }
}

.service__list {
  margin-top: 40px;
  list-style-type: disc; /* 黒丸を指定 */
  padding-left: 20px; /* 左側に余白を追加 */
}

.service__list-item {
  line-height: 1.7; /* 行間を調整 */
}

.service__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-inline: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .service__content {
    max-width: none;
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .service__content {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .service__content {
    gap: 60px;
  }
}

.service__item {
  padding: 18px 12px;
  background-color: #e9ffef;
  -webkit-box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  opacity: 0; /* 初期状態で非表示 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* 初期位置を少し下に設定 */
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease; /* アニメーションの設定 */
}
@media screen and (min-width: 768px) {
  .service__item {
    padding: 20px 15px;
  }
}
@media screen and (min-width: 900px) {
  .service__item {
    padding: 20px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .service__item {
    padding: 20px 25px;
  }
}

.service__item--visible {
  opacity: 1; /* 表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に移動 */
}

.service__image img {
  width: 100px;
  height: auto;
}

.service__name {
  font-weight: bold;
}

.service__text {
  margin-top: 20px;
  text-align: left;
}

.skill__container {
  border-radius: 30px 0 30px 0;
  position: relative; /* 子要素の位置を基準にする */
  overflow: hidden; /* 子要素がコンテナ外に出ないようにする */
}

.skill__table {
  position: relative;
  width: 100%; /* テーブルの幅を100%に設定 */
  border-collapse: collapse; /* セルの境界線を重ねる */
  margin-top: 40px; /* 上部に余白を追加 */
  text-align: center; /* テキストを中央揃え */
  background: #faf6ee;
  -webkit-box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  max-width: 800px;
  margin-inline: auto;
  opacity: 0; /* 初期状態で非表示 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* 初期位置を少し下に設定 */
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease; /* アニメーションの設定 */
}
@media screen and (min-width: 768px) {
  .skill__table {
    max-width: 800px;
    margin-inline: 0;
  }
}
.skill__table::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0%;
  width: 100%;
  height: 60%;
  background: #f2e9e4;
  -webkit-clip-path: polygon(0% 0%, 79% 43%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 79% 43%, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
  border-radius: 0 0 40px 40px;
}
.skill__table td {
  position: relative; /* 各セルを擬似要素より上に表示 */
  z-index: 1; /* 文字を擬似要素より前面に表示 */
  padding: 10px; /* セル内の余白を設定 */
}

.skill__table--visible {
  opacity: 1; /* 表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に移動 */
}

.bouncing-object {
  width: 100px;
  height: 100px;
  background-color: #e9ffef;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 20%;
  z-index: 10;
  opacity: 0.5;
  -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.25);
}

.promise__container {
  border-radius: 0 30px 0 30px;
}

.promise__content {
  margin-top: 40px;
  padding-inline: 10px;
}

.promise__card__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .promise__card__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.promise__lists {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列のグリッド */
  grid-template-rows: 1fr 1fr; /* 2行のグリッド */
  gap: 10px; /* 各要素間の余白 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向の中央揃え */
  width: 100%; /* 全体の幅を設定 */
  margin-inline: auto; /* 中央揃え */
  max-width: 280px;
}
@media screen and (min-width: 768px) {
  .promise__lists {
    margin-block: 70px;
  }
}
@media screen and (min-width: 900px) {
  .promise__lists {
    max-width: 400px;
  }
}

/* promise__listのアニメーション */
.promise__list {
  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; /* テキストを中央揃え */
  width: 120px; /* 各ボックスの幅 */
  height: 120px; /* 各ボックスの高さ */
  border-radius: 50%; /* 丸い形状にする */
  font-weight: bold; /* 太字 */
  text-align: center; /* テキストを中央揃え */
  font-size: 19px;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1); /* ボックスの影 */
  opacity: 0; /* 初期状態で非表示 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* 初期位置を少し下に設定 */
  -webkit-animation: slideUpFadeIn 1s ease forwards;
          animation: slideUpFadeIn 1s ease forwards; /* アニメーションを適用 */
}

/* アニメーションの遅延を設定 */
.promise__list:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; /* 1つ目のボックスの遅延 */
}

.promise__list:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; /* 2つ目のボックスの遅延 */
}

.promise__list:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; /* 3つ目のボックスの遅延 */
}

/* アニメーションの定義 */
@-webkit-keyframes slideUpFadeIn {
  0% {
    opacity: 0; /* 完全に透明 */
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 下に少し移動 */
  }
  100% {
    opacity: 1; /* 完全に表示 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に移動 */
  }
}
@keyframes slideUpFadeIn {
  0% {
    opacity: 0; /* 完全に透明 */
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 下に少し移動 */
  }
  100% {
    opacity: 1; /* 完全に表示 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に移動 */
  }
}
/* 三角形の配置 */
.promise__list:nth-child(1) {
  background-color: #FFCFCF;
  grid-column: 1/3; /* 1列目から2列目にまたがる */
  grid-row: 1; /* 1行目 */
  justify-self: center; /* 横方向の中央揃え */
  align-self: center; /* 縦方向の中央揃え */
}

.promise__list:nth-child(2) {
  background-color: #FFEEAB;
  grid-column: 1; /* 1列目 */
  grid-row: 2; /* 2行目 */
  justify-self: center; /* 横方向の中央揃え */
  align-self: center; /* 縦方向の中央揃え */
}

.promise__list:nth-child(3) {
  background-color: #CAF7FF;
  grid-column: 2; /* 2列目 */
  grid-row: 2; /* 2行目 */
  justify-self: center; /* 横方向の中央揃え */
  align-self: center; /* 縦方向の中央揃え */
}

.promise__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .promise__cards {
    gap: 20px;
    margin-top: 0;
    margin-inline: 0;
    gap: 20px;
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .promise__cards {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .promise__cards {
    gap: 40px;
  }
}

.promise__card {
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}
.promise__card:nth-of-type(1) {
  background-color: #FFCFCF;
}
.promise__card:nth-of-type(2) {
  background-color: #FFEEAB;
}
.promise__card:nth-of-type(3) {
  background-color: #CAF7FF;
}

.promise__card {
  opacity: 0; /* 初期状態で非表示 */
  -webkit-transform: translateX(0);
          transform: translateX(0); /* 初期位置を中央に設定 */
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease; /* アニメーションの設定 */
}

.promise__card--fade-in-right {
  opacity: 1; /* 表示 */
  -webkit-transform: translateX(20px);
          transform: translateX(20px); /* 右からフェードイン */
}

.promise__card--fade-in-left {
  opacity: 1; /* 表示 */
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px); /* 左からフェードイン */
}

.about__container {
  border-radius: 30px 0 30px 0;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.about__image {
  text-align: center;
}
.about__image img {
  margin-inline: auto;
  width: 100%;
  max-width: 300px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .about__image img {
    margin-top: 40px;
    max-width: none;
  }
}
@media screen and (min-width: 900px) {
  .about__image img {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .about__image img {
    margin-top: 80px;
  }
}

.about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background: url(../img/about-blue.png) no-repeat center 80px/contain;
  padding-block: 20px;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__text {
    gap: 20px;
    max-width: none;
    margin-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .about__text {
    background-position: center top;
  }
}

.about__text__name {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.about__text__sub {
  padding-left: 30px;
}

.about__text__description {
  position: relative;
  padding-left: 30px;
}
.about__text__description:nth-of-type(1) {
  margin-top: 4px;
}
.about__text__description::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: 30px;
  height: 30px;
  background: url(../img/about-check.png) no-repeat center center/cover;
  border-radius: 0 0 0 10px;
  opacity: 0.5;
}

.about__text__conclusion {
  margin-top: 10px;
  padding: 10px;
  border-radius: 30px 0 30px 0;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid #ededed;
  background-color: #FFFFFF;
}

.about__text__conclusion {
  opacity: 0; /* 初期状態で非表示 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* 初期位置を少し下に設定 */
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease; /* アニメーションの設定 */
}

.about__text__conclusion--visible {
  opacity: 1; /* 表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に移動 */
}

.about__button__wrapper {
  margin-top: 40px;
  text-align: center;
}

.contact__container {
  border-radius: 0 30px 0 30px;
}

.Form__container {
  max-width: 900px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .Form__container {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 900px) {
  .Form__container {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .Form__container {
    padding-inline: 50px;
  }
}

.Form {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .Form {
    gap: 15px;
  }
}

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

.wpcf7-form-control {
  width: 100%;
  border: none;
  border-radius: 4px;
  padding: 2px 8px;
  border: 1px solid gray;
}

.wpcf7-text {
  height: 30px;
}

.Form-Item-Label-Required {
  background-color: #00c1b1;
  padding: 2px 5px;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 12px;
  margin-right: 4px;
}

.wpcf7-tel {
  height: 30px;
}

.wpcf7-email {
  height: 30px;
}

.wpcf7-form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5); /* 薄いグレーに設定 */
}

.wpcf7-form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5); /* 薄いグレーに設定 */
}

.wpcf7-form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5); /* 薄いグレーに設定 */
}

.wpcf7-form-control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5); /* 薄いグレーに設定 */
}

.wpcf7-form-control::placeholder {
  color: rgba(0, 0, 0, 0.5); /* 薄いグレーに設定 */
}

.wpcf7-textarea {
  height: 120px;
}

.button-wrap {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .button-wrap {
    margin-top: 10px;
  }
}

.wpcf7-select {
  position: relative;
  background-color: #ffffff; /* 背景を白に設定 */
  height: 30px; /* 高さを設定 */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url(../img/select-button.png);
  background-repeat: no-repeat;
  background-size: 24px auto; /* 画像のサイズ（幅 高さ）*/
  background-position: right 20px center; /* 画像の位置 */
}

.wpcf7-select.no-arrow {
  background-image: none; /* 矢印を非表示にする */
}

.wpcf7-submit {
  width: auto;
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  background-color: #c90000;
  color: #FFFFFF; /* 初期状態の文字色 */
  text-align: center;
  border-radius: 50px;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease; /* アニメーションの設定 */
}
.wpcf7-submit:hover {
  color: #c90000;
  background-color: #eba3a3;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 101;
  width: 40px;
  height: 40px;
  background-color: #FFEEAB;
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.5s ease, color 0.5s ease, -webkit-transform 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease, color 0.5s ease, -webkit-transform 0.5s ease; /* アニメーションの設定 */
}
.pagetop::before {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
}
.pagetop:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3); /* ホバー時に拡大 */
  color: #FFEEAB; /* ホバー時の背景色 */
  background-color: #333333; /* ホバー時のアイコン色 */
}

.pagetop.is-animating {
  -webkit-animation: pagetop-animation 0.5s ease-out;
          animation: pagetop-animation 0.5s ease-out; /* アニメーションを適用 */
}

@-webkit-keyframes pagetop-animation {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); /* 初期状態 */
  }
  50% {
    -webkit-transform: scale(1.5) translateY(-20px);
            transform: scale(1.5) translateY(-20px); /* 拡大して少し上に移動 */
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); /* 元の状態に戻る */
  }
}

@keyframes pagetop-animation {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); /* 初期状態 */
  }
  50% {
    -webkit-transform: scale(1.5) translateY(-20px);
            transform: scale(1.5) translateY(-20px); /* 拡大して少し上に移動 */
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); /* 元の状態に戻る */
  }
}
.footer {
  background-color: #e9ffef;
  padding-block: 10px;
  text-align: center;
}