@import url("https://fonts.googleapis.com/css2?family=Rockwell&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Corbel&display=swap");

.accordion {
  max-width: 900px;
  margin: 30px auto 60px auto;
  text-align: center;
}

/* コンテンツ幅の調整 */
.accordion-o {
  width: 700px; /* コンテンツ幅を700pxに設定 */
  margin: 0 auto; /* コンテンツを中央寄せ */
  text-align: center;
  margin-bottom: 30px;
}

.accordion-o-header {
  font-family: "Rockwell", serif;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #e67e22;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
}

.accordion-o-header span {
  max-width: 90%;
  flex: 1;
  text-align: left;
}

.accordion-o-header:hover {
  background-color: #d35400; /* ホバー時に少し暗いオレンジ色に */
}

.accordion-o-content {
  display: none;
  font-size: 25px;
  padding: 15px;
  background-color: #fff;
  border: 2px solid #e67e22;
  border-top: none; /* 上部の枠線を消す */
  border-radius: 0 0 10px 10px;
  margin-top: -10px; /* ヘッダーの枠線と高さを揃える */
  position: relative;
  z-index: 0;
}

.accordion-o-header {
  position: relative;
  z-index: 1; /* コンテンツの上に重なるようにする */
}

.accordion-o-content p {
  margin-top: 5px;
  margin-bottom: 0;
}

.accordion-o.open .accordion-o-content {
  display: block;
}

.arrow-icon-o {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff; /* 背景色を白に設定 */
  position: absolute;
  border-radius: 50%; /* 円形にする場合 */
  transition: transform 0.3s ease;
  right: 15px;
}

/* 下向きの矢印 */
.arrow-icon-o::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #e67e22; /* 矢印の色を#e67e22に設定 */
  border-bottom: 2px solid #e67e22; /* 矢印の色を#e67e22に設定 */
  transform: translate(-50%, -50%) rotate(45deg);
}

/* アコーディオンが開いた状態（上向きの矢印） */
.accordion-o.open .arrow-icon-o::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* FAQ間のデコレーション画像のスタイル調整 */
.faq-decoration {
  max-width: 1200px;
  margin: 60px auto;
}

.faq-decoration img {
  width: 60%;
  text-align: center;
}

/* グリーンのFAQエリアのスタイル調整　ここから */
/* コンテンツ幅の調整 */
.accordion-g {
  width: 700px; /* コンテンツ幅を700pxに設定 */
  margin: 0 auto; /* コンテンツを中央寄せ */
  text-align: center;
  margin-bottom: 30px;
}

.accordion-g-header {
  font-family: "Rockwell", serif;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #9cc53a;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
}

.accordion-g-header span {
  max-width: 90%;
  flex: 1;
  text-align: left;
}

.accordion-g-header:hover {
  background-color: #688426; /* ホバー時に少し暗いグリーンに */
}

.accordion-g-content {
  display: none;
  font-size: 25px;
  padding: 15px;
  background-color: #fff;
  border: 2px solid #9cc53a;
  border-top: none; /* 上部の枠線を消す */
  border-radius: 0 0 10px 10px;
  margin-top: -10px; /* ヘッダーの枠線と高さを揃える */
  position: relative;
  z-index: 0;
}

.accordion-g-header {
  position: relative;
  z-index: 1; /* コンテンツの上に重なるようにする */
}

.accordion-g-content p {
  margin-top: 5px;
  margin-bottom: 0;
}

.accordion-g.open .accordion-g-content {
  display: block;
}

.arrow-icon-g {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff; /* 背景色を白に設定 */
  position: absolute;
  border-radius: 50%; /* 円形にする場合 */
  transition: transform 0.3s ease;
  right: 15px;
}

/* 下向きの矢印 */
.arrow-icon-g::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #9cc53a; /* 矢印の色を#e67e22に設定 */
  border-bottom: 2px solid #9cc53a; /* 矢印の色を#e67e22に設定 */
  transform: translate(-50%, -50%) rotate(45deg);
}

/* アコーディオンが開いた状態（上向きの矢印） */
.accordion-g.open .arrow-icon-g::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
/* グリーンのFAQエリアのスタイル調整　ここまで */

/* ブルーのFAQエリアのスタイル調整　ここから */
/* コンテンツ幅の調整 */
.accordion-b {
  width: 700px; /* コンテンツ幅を700pxに設定 */
  margin: 0 auto; /* コンテンツを中央寄せ */
  text-align: center;
  margin-bottom: 30px;
}

.accordion-b-header {
  font-family: "Rockwell", serif;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #00ade1;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
}

.accordion-b-header span {
  max-width: 90%;
  flex: 1;
  text-align: left;
}

.accordion-b-header:hover {
  background-color: #007395; /* ホバー時に少し暗いグリーンに */
}

.accordion-b-content {
  display: none;
  font-size: 25px;
  padding: 15px;
  background-color: #fff;
  border: 2px solid #00ade1;
  border-top: none; /* 上部の枠線を消す */
  border-radius: 0 0 10px 10px;
  margin-top: -10px; /* ヘッダーの枠線と高さを揃える */
  position: relative;
  z-index: 0;
}

.accordion-b-header {
  position: relative;
  z-index: 1; /* コンテンツの上に重なるようにする */
}

.accordion-b-content p {
  margin-top: 5px;
  margin-bottom: 0;
}

.accordion-b.open .accordion-b-content {
  display: block;
}

.arrow-icon-b {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff; /* 背景色を白に設定 */
  position: absolute;
  border-radius: 50%; /* 円形にする場合 */
  transition: transform 0.3s ease;
  right: 15px;
}

/* 下向きの矢印 */
.arrow-icon-b::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #00ade1; /* 矢印の色を#e67e22に設定 */
  border-bottom: 2px solid #00ade1; /* 矢印の色を#e67e22に設定 */
  transform: translate(-50%, -50%) rotate(45deg);
}

/* アコーディオンが開いた状態（上向きの矢印） */
.accordion-b.open .arrow-icon-b::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
/* ブルーのFAQエリアのスタイル調整　ここまで */

/* 修正　ここから -------------------------------------------------------------------------------------------------------------*/
.hidden-tb {
  display: block;
}
.hidden-sp {
  display: none;
}

/* header ここから --------------------------------------------------------------------*/
.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 12px !important;
  padding-bottom: 5px !important;
  padding-left: 30px;
  padding-right: 24px;
}
@media screen and (min-width: 768px) {
  .header-content {
    height: 96px;
  }
}
.logo img {
  width: 140px;
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav ul {
    display: flex;
    flex-wrap: wrap; /* アイテムを折り返す */
    justify-content: flex-end; /* アイテムを右寄せにする */
    gap: 10px; /* アイテム間のスペース */
    list-style: none; /* リストマーカーを削除 */
    padding: 0; /* パディングをリセット */
    margin: 0; /* マージンをリセット */
  }
  .l-header__nav ul {
    display: flex;
    flex-wrap: wrap; /* アイテムを折り返す */
    justify-content: flex-end; /* アイテムを右寄せにする */
    gap: 10px; /* アイテム間のスペース */
    list-style: none; /* リストマーカーを消す */
    padding: 0; /* パディングをリセット */
    margin: 0; /* マージンをリセット */
  }
  .l-header__nav ul li {
    width: fit-content; /* li要素の幅を内容にフィットさせる */
  }
  .l-header__nav ul li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__nav ul {
    display: none;
  }
}
.l-header__nav--pc {
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-header__nav--pc {
    display: block;
  }
}
.l-header__right {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 121px;
  justify-content: space-between;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-header__right {
    display: none;
  }
}
.apply-cta {
  font-family: "Rockwell", serif;
  font-size: 14px;
}
.c-button-drawer {
  background: #e96d23;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  position: relative;
}
/* 吹き出し部分 */
.c-button-drawer::after {
  content: ""; /* 吹き出しの内容 */
  position: absolute; /* 絶対位置指定 */
  bottom: -8px; /* メニューの下に配置 */
  left: 50%; /* メニューの真ん中に配置 */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent; /* 吹き出しの左側の三角形 */
  border-right: 5px solid transparent; /* 吹き出しの右側の三角形 */
  border-bottom: 5px solid #e96d23; /* 吹き出しの底部 */
  opacity: 0; /* 初期状態で透明 */
  transition: opacity 0.3s ease; /* アニメーションの設定 */
  visibility: hidden; /* 初期状態で非表示 */
}
.c-button-drawer.show::after {
  opacity: 1; /* 表示状態で不透明 */
  visibility: visible; /* 表示状態で可視 */
}

.c-button-drawer.is-checked .c-button-drawer__line:nth-of-type(1) {
  background: #fff;
  left: 25%;
  top: 50%;
  transform: rotate(-45deg);
}
.c-button-drawer.is-checked .c-button-drawer__line:nth-of-type(2) {
  display: none;
}
.c-button-drawer.is-checked .c-button-drawer__line:nth-of-type(3) {
  background: #fff;
  left: 25%;
  top: 50%;
  transform: rotate(45deg);
}
.c-button-drawer__line {
  position: absolute;
  border-radius: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s linear, top 0.3s linear;
}
.c-button-drawer__line:nth-of-type(1) {
  left: 50%;
  transform: translateX(-50%);
  top: 7px;
}
.c-button-drawer__line:nth-of-type(2) {
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
}
.c-button-drawer__line:nth-of-type(3) {
  left: 50%;
  transform: translateX(-50%);
  top: 17px;
}
ul {
  display: block;
  list-style: none; /* リストスタイルを削除 */
  margin: 0; /* マージンをリセット */
  padding: 0; /* パディングをリセット */
  unicode-bidi: normal; /* バイディレクショナルの設定をリセット */
}
.c-drawer-menu {
  max-height: 0; /* 初期状態で高さを0に設定 */
  width: 150px;
  height: 120px; /* 高さの設定はアニメーションの最大値に合わせる */
  font-family: "Rockwell", serif;
  font-size: 18.67px;
  border-top: 10px solid #e96d23;
  border-right: 1px solid #e96d23;
  border-bottom: 1px solid #e96d23;
  border-left: 1px solid #e96d23;
  background: #fff;
  border-radius: 10px;
  margin-left: auto;
  margin-right: 20px;
  padding: 10px;
  position: absolute; /* ドロップダウンの位置を調整するために絶対位置指定 */
  top: 80%; /* ボタンの下に表示 */
  right: 0; /* ボタンの右側に合わせる */
  z-index: 2000; /* メニューが他の要素の上に表示されるようにする */
  overflow: hidden; /* 内容がはみ出さないようにする */
  transition: max-height 0.3s ease, opacity 0.3s ease; /* アニメーションの設定 */
  opacity: 0; /* 初期状態で透明 */
}
.c-drawer-menu.show {
  max-height: 120px; /* アニメーションの最大高さに合わせる */
  opacity: 1; /* アニメーションで透明度を上げる */
}
.c-drawer-menu ul {
  list-style: none; /* デフォルトのリストスタイルを無効にする */
  padding: 0;
  margin: 0;
}
.c-drawer-menu li {
  padding: 5px 0; /* アイテム間に5pxのスペースを追加 */
  position: relative; /* 擬似要素のために相対位置を設定 */
}
.c-drawer-menu li:not(:last-child)::after {
  content: ""; /* 擬似要素の内容 */
  display: block; /* ブロック要素として表示 */
  height: 1px; /* 線の高さ */
  width: 150px;
  background: #e96d23; /* 線の色 */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px; /* アイテムの下に線を配置 */
}
@media screen and (min-width: 768px) {
  .logo img {
    width: 140px;
  }
  .l-header__nav {
    display: block;
  }
}
/* header ここまで --------------------------------------------------------------------*/

/* accordion ここから -----------------------------------------------------------------*/
.l-accordion__inner {
  padding-left: 24px;
  padding-right: 24px;
}
.accordion-o,
.accordion-g,
.accordion-b {
  width: auto;
}

@media screen and (min-width: 768px) {
  .accordion {
    max-width: 900px;
    margin: 30px auto 60px auto;
    text-align: center;
  }

  /* コンテンツ幅の調整 */
  .accordion-o {
    width: 700px; /* コンテンツ幅を700pxに設定 */
    margin: 0 auto; /* コンテンツを中央寄せ */
    text-align: center;
    margin-bottom: 30px;
  }

  .accordion-o-header {
    font-family: "Rockwell", serif;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: #e67e22;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
  }

  .accordion-o-header span {
    max-width: 90%;
    flex: 1;
    text-align: left;
  }

  .accordion-o-header:hover {
    background-color: #d35400; /* ホバー時に少し暗いオレンジ色に */
  }

  .accordion-o-content {
    display: none;
    font-size: 25px;
    padding: 15px;
    background-color: #fff;
    border: 2px solid #e67e22;
    border-top: none; /* 上部の枠線を消す */
    border-radius: 0 0 10px 10px;
    margin-top: -10px; /* ヘッダーの枠線と高さを揃える */
    position: relative;
    z-index: 0;
  }

  .accordion-o-header {
    position: relative;
    z-index: 1; /* コンテンツの上に重なるようにする */
  }

  .accordion-o-content p {
    margin-top: 5px;
    margin-bottom: 0;
  }

  .accordion-o.open .accordion-o-content {
    display: block;
  }

  .arrow-icon-o {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff; /* 背景色を白に設定 */
    position: absolute;
    border-radius: 50%; /* 円形にする場合 */
    transition: transform 0.3s ease;
    right: 15px;
  }

  /* 下向きの矢印 */
  .arrow-icon-o::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #e67e22; /* 矢印の色を#e67e22に設定 */
    border-bottom: 2px solid #e67e22; /* 矢印の色を#e67e22に設定 */
    transform: translate(-50%, -50%) rotate(45deg);
  }

  /* アコーディオンが開いた状態（上向きの矢印） */
  .accordion-o.open .arrow-icon-o::before {
    transform: translate(-50%, -50%) rotate(-135deg);
  }

  /* FAQ間のデコレーション画像のスタイル調整 */
  .faq-decoration {
    max-width: 1200px;
    margin: 60px auto;
  }

  .faq-decoration img {
    width: 60%;
    text-align: center;
  }

  /* グリーンのFAQエリアのスタイル調整　ここから */
  /* コンテンツ幅の調整 */
  .accordion-g {
    width: 700px; /* コンテンツ幅を700pxに設定 */
    margin: 0 auto; /* コンテンツを中央寄せ */
    text-align: center;
    margin-bottom: 30px;
  }

  .accordion-g-header {
    font-family: "Rockwell", serif;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: #9cc53a;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
  }

  .accordion-g-header span {
    max-width: 90%;
    flex: 1;
    text-align: left;
  }

  .accordion-g-header:hover {
    background-color: #688426; /* ホバー時に少し暗いグリーンに */
  }

  .accordion-g-content {
    display: none;
    font-size: 25px;
    padding: 15px;
    background-color: #fff;
    border: 2px solid #9cc53a;
    border-top: none; /* 上部の枠線を消す */
    border-radius: 0 0 10px 10px;
    margin-top: -10px; /* ヘッダーの枠線と高さを揃える */
    position: relative;
    z-index: 0;
  }

  .accordion-g-header {
    position: relative;
    z-index: 1; /* コンテンツの上に重なるようにする */
  }

  .accordion-g-content p {
    margin-top: 5px;
    margin-bottom: 0;
  }

  .accordion-g.open .accordion-g-content {
    display: block;
  }

  .arrow-icon-g {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff; /* 背景色を白に設定 */
    position: absolute;
    border-radius: 50%; /* 円形にする場合 */
    transition: transform 0.3s ease;
    right: 15px;
  }

  /* 下向きの矢印 */
  .arrow-icon-g::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #9cc53a; /* 矢印の色を#e67e22に設定 */
    border-bottom: 2px solid #9cc53a; /* 矢印の色を#e67e22に設定 */
    transform: translate(-50%, -50%) rotate(45deg);
  }

  /* アコーディオンが開いた状態（上向きの矢印） */
  .accordion-g.open .arrow-icon-g::before {
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  /* グリーンのFAQエリアのスタイル調整　ここまで */

  /* ブルーのFAQエリアのスタイル調整　ここから */
  /* コンテンツ幅の調整 */
  .accordion-b {
    width: 700px; /* コンテンツ幅を700pxに設定 */
    margin: 0 auto; /* コンテンツを中央寄せ */
    text-align: center;
    margin-bottom: 30px;
  }

  .accordion-b-header {
    font-family: "Rockwell", serif;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: #00ade1;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
  }

  .accordion-b-header span {
    max-width: 90%;
    flex: 1;
    text-align: left;
  }

  .accordion-b-header:hover {
    background-color: #007395; /* ホバー時に少し暗いグリーンに */
  }

  .accordion-b-content {
    display: none;
    font-size: 25px;
    padding: 15px;
    background-color: #fff;
    border: 2px solid #00ade1;
    border-top: none; /* 上部の枠線を消す */
    border-radius: 0 0 10px 10px;
    margin-top: -10px; /* ヘッダーの枠線と高さを揃える */
    position: relative;
    z-index: 0;
  }

  .accordion-b-header {
    position: relative;
    z-index: 1; /* コンテンツの上に重なるようにする */
  }

  .accordion-b-content p {
    margin-top: 5px;
    margin-bottom: 0;
  }

  .accordion-b.open .accordion-g-content {
    display: block;
  }

  .arrow-icon-b {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff; /* 背景色を白に設定 */
    position: absolute;
    border-radius: 50%; /* 円形にする場合 */
    transition: transform 0.3s ease;
    right: 15px;
  }

  /* 下向きの矢印 */
  .arrow-icon-b::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #00ade1; /* 矢印の色を#e67e22に設定 */
    border-bottom: 2px solid #00ade1; /* 矢印の色を#e67e22に設定 */
    transform: translate(-50%, -50%) rotate(45deg);
  }

  /* アコーディオンが開いた状態（上向きの矢印） */
  .accordion-b.open .arrow-icon-b::before {
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  /* ブルーのFAQエリアのスタイル調整　ここまで */
}
/* accordion ここまで -----------------------------------------------------------------*/

/* form ここから ----------------------------------------------------------------------*/

/* リセット用CSS */
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: normal;
  box-sizing: border-box;
}

/* 特定の要素に追加のリセット */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="file"],
textarea {
  border-radius: 0; /* ボーダーの丸みをリセット */
  outline: none; /* フォーカス時のアウトラインをリセット */
  background-color: transparent; /* 背景色をリセット */
}

/* ボタン要素のリセット */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  cursor: pointer; /* カーソルをポインタに変更 */
  background: none; /* 背景色をリセット */
  border: 1px solid transparent; /* ボーダーをリセット */
  border-radius: 0; /* ボーダーの丸みをリセット */
}

/* フォーム要素のサイズ調整 */
input,
textarea,
select,
button {
  width: 100%;
  box-sizing: border-box;
}

/* プレースホルダーテキストのスタイルリセット */
input::placeholder,
textarea::placeholder {
  color: inherit;
  opacity: 1; /* プレースホルダーの透明度をリセット */
}

/* aタグのスタイルリセット */
a {
  text-decoration: none; /* 下線を削除 */
  color: inherit; /* 親要素の色を継承 */
}

/* contact!セクション全体のスタイル */
.contact {
  background-color: #fff;
  text-align: center;
}
.contact__inner {
  margin: 0 auto;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 0;
}
/* h2下の装飾画像のスタイル */
.h2-decoration img {
  width: 100%;
  margin-bottom: 20px;
}
.contact-info-note {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.43;
  letter-spacing: -0.01em;
}
.application-form {
  display: flex;
  flex-direction: column;
}
.form-group {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px; /* 各フォームグループの間隔 */
  justify-content: center;
}
.form-notice__mandatory {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .apply__heading {
    font-size: 50px;
    font-weight: normal;
    color: #333;
    margin-top: 90px;
    margin-bottom: 0;
    line-height: 80px;
  }
  .apply__inner {
    max-width: 900px;
  }
  .h2-decoration img {
    margin-bottom: 60px;
  }
  .form-group-container {
    display: flex;
  }
}

/* 残り全て ここから --------------------------------------------------------------------*/
.introduction.main-content {
  padding-bottom: 0;
  margin-bottom: -19px;
}

.h2-decoration img {
  margin-bottom: 0;
}
.faq-p {
  padding-inline: 0 !important;
  letter-spacing: -0.02em !important;
}
.accordion {
  margin-bottom: 0;
}
.l-accordion__inner {
  padding-inline: 32px;
}
.accordion-o-header,
.accordion-g-header,
.accordion-b-header {
  height: auto;
  font-size: 15px;
}
.accordion-o-content,
.accordion-g-content,
.accordion-b-content {
  font-size: 14px;
  line-height: 1.4;
  padding-top: 12px;
  padding-bottom: 6px;
  letter-spacing: -0.03em;
}
.accordion-o,
.accordion-g,
.accordion-b {
  margin-bottom: 16px;
}
.accordion-o-header span,
.accordion-g-header span,
.accordion-b-header span {
  max-width: none;
  padding-right: 40px;
}
.faq-decoration {
  margin-top: -10px;
  margin-bottom: -10px;
}
.application-form {
  margin-top: 16px;
}
.form-group {
  height: 23px;
  margin-bottom: 11px;
}
.form-group--inquiry {
  width: 100%;
}
.application-form {
  margin-top: 12px;
}
.form-field__label {
  font-size: 12.5px;
}
.application-form__submit {
  padding-top: 3px;
  padding-bottom: 0;
  padding-inline: 0;
  font-size: 14px;
  width: 80px;
}
.form-notice__mandatory {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 1.42;
  margin-top: 45px !important;
  margin-bottom: 30px;
}

/* footer ここまで --------------------------------------------------------------------*/
.footer-logo img {
  width: 180px;
  margin-bottom: 16px;
}
.footer-links {
  padding-top: 10px;
}

/* footer ここまで --------------------------------------------------------------------*/

/* TB ここかから --------------------------------------------------------------------*/

@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
  .hidden-tb {
    display: none;
  }
  .header-content {
    padding-right: 63px;
    height: 108px;
  }
  .logo img {
    width: 100%;
    padding-top: 0;
    padding-left: 10px;
  }
  .l-header__nav {
    display: block;
    padding-top: 0;
  }
  .l-header__nav ul li {
    letter-spacing: -0.04em;
  }
  .l-header__nav ul li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: right;
    padding-inline: 3px;
  }
  .introduction {
    padding-inline: 0 !important;
    padding-inline: 70px !important;
  }
  .h2-decoration img {
    width: 557px;
    margin-top: -7px;
  }
  .h3-decoration img {
    margin-top: 55px;
    width: 445px;
  }
  .h3-introduction {
    margin-bottom: 38px;
  }
  .h3-decoration {
    text-align: center;
  }
  .h3-decoration img {
    margin-top: 52px;
    width: 445px;
  }
  .faq-p {
    font-size: 20px !important;
    line-height: 1.32 !important;
    padding-top: 34px !important;
    margin-left: -6px;
    padding-inline: 36px !important;
    letter-spacing: 0em !important;
  }
  .accordion {
    margin-top: 70px;
  }
  .accordion-o,
  .accordion-g,
  .accordion-b {
    width: auto;
    margin-bottom: 18px;
  }
  .l-accordion__inner {
    padding-inline: 170px;
  }
  .accordion-o-header,
  .accordion-g-header,
  .accordion-b-header {
    height: auto;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 5px !important;
    padding-left: 20px;
  }
  .accordion-o-header-pl-20 {
    padding-block: 20px !important;
  }
  .accordion-o-content,
  .accordion-g-content,
  .accordion-b-content {
    font-size: 20px;
    line-height: 1.4;
    padding-top: 15px;
    padding-bottom: 6px;
    letter-spacing: -0.04em;
  }
  .faq-decoration {
    margin-top: 29px;
  }
  .section-accordion-g,
  .section-accordion-b {
    margin-top: 38px;
  }
  .accordion-o-header span {
    max-width: none;
    padding-right: 50px;
  }
  .accordion-g-header span,
  .accordion-b-header span {
    max-width: none;
    padding-right: 30px;
  }
  .contact-info-note {
    font-size: 20px !important;
    line-height: 1.32 !important;
    padding-top: 30px !important;
    margin-left: -6px;
    padding-inline: 36px !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 50px;
  }
  .contact__inner {
    padding-inline: 70px;
  }
  .application-form {
    padding-inline: 30px;
  }
  .form-group {
    height: 47px;
    margin-bottom: 20px;
  }

  .application-form__submit {
    width: 160px;
    height: 50px;
    font-size: 24px !important;
    padding-top: 8px;
    padding-bottom: 0;
    padding-inline: 20px;
    margin-inline: auto;
    text-align: center;
    align-items: center;
    border-radius: 25px;
    margin-top: 0;
  }
  .form-notice__mandatory {
    margin-top: 50px !important;
    font-size: 20px !important;
    line-height: 1.5 !important;
    padding-inline: 20px !important;
    letter-spacing: -0em !important;
  }
  .footer {
    padding-top: 32px;
  }
  .footer-logo img {
    width: 220px !important;
    margin-bottom: 50px;
  }
  .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between !important;
  }
  .footer-links a {
    padding-inline: 8px;
  }
  .hidden-sp {
    display: block;
  }
  .hidden-tb {
    display: none;
  }
}

/* header ここから --------------------------------------------------------------------*/

@media screen and (min-width: 1024px) {
  .l-header__nav {
    display: none;
  }
  .l-header__nav--pc {
    display: block;
  }
  .logo img {
    width: 100%;
    padding-top: 10px;
    padding-left: 15px;
  }
  nav ul li a {
    padding: 0 12px;
    font-size: 19px;
    letter-spacing: -0.01em;
  }
  .header-content {
    padding-top: 0 !important;
  }
  .introduction h2 {
    font-size: 50px !important;
    letter-spacing: -0.05em;
  }
  .main-content {
    padding-inline: 104px !important;
  }
  .h2-decoration img {
    width: 100%;
  }
  .introduction p {
    padding-top: 50px !important;
    letter-spacing: -0.02em !important;
  }
  .accordion {
    margin-top: 90px;
  }
  .l-accordion__inner {
    padding-inline: 65px !important;
  }
  .accordion-o-header,
  .accordion-g-header,
  .accordion-b-header {
    height: auto;
    font-size: 25px;
    padding-left: 23px;
  }
  .accordion-o-header-pl-20 {
    padding-block: 10px !important;
  }
  .accordion-o-content,
  .accordion-g-content,
  .accordion-b-content {
    font-size: 23px;
    line-height: 1.4;
    padding-top: 23px;
    padding-bottom: 23px;
    letter-spacing: -0.05em;
  }
  .accordion-o,
  .accordion-g,
  .accordion-b {
    width: auto;
    margin-bottom: 30px;
  }
  .accordion-o-header span,
  .accordion-g-header span,
  .accordion-b-header span {
    max-width: none;
    padding-right: 50px;
    padding-left: 23px;
  }
  .faq-decoration {
    margin-top: 67px;
    margin-bottom: -30px;
  }
  .contact__inner {
    padding-inline: 170px !important;
  }
  .application-form {
    padding-inline: 0;
  }
  .contact-info-note {
    font-size: 25px !important;
    line-height: 1.32 !important;
    padding-top: 50px !important;
    margin-left: -6px;
    padding-inline: 36px !important;
    letter-spacing: -0.07em !important;
    margin-bottom: 56px;
  }
  .form-group {
    margin-bottom: 54px;
  }

  .form-group--inquiry {
    /* margin-top: 10px; */
  }

  .form-notice__mandatory {
    margin-top: 55px !important;
    font-size: 25px !important;
    line-height: 1.4 !important;
    padding-inline: 20px !important;
    letter-spacing: -0.03em !important;
  }
  .hidden-tb {
  }
  .form-notice__email-link {
  }
  .arrow-icon-o,
  .arrow-icon-g,
  .arrow-icon-b {
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
  }
  .contact__inner {
    max-width: 900px;
    padding-left: 170px;
    padding-right: 170px;
    margin-inline: auto;
  }
}

/*--------------------------------------------
CF7
--------------------------------------------*/
.wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7-form-control-wrap[data-name="your-name"],
.wpcf7-form-control-wrap[data-name="your-email"] {
  border: 1px solid #e96d23;
  border-radius: 0 5px 5px 0;
}
.wpcf7-form-control-wrap[data-name="your-email"] {
  border: 1px solid #9cc53a;
}
.wpcf7-form-control-wrap:focus-within {
  border-color: #e59700; /* フォーカス時の親要素のボーダー色 */
}

/*--------------------------------------------
Inqury
--------------------------------------------*/
.form-group__label--inquiry {
  height: auto;
  font-family: "Rockwell", serif;
  background: #00ade1;
  color: #fff;
  border-radius: 5px 5px 0 0;
  text-align: left;
  padding-block: 0;
  padding-left: 10px;
}

.form-group--inquiry {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 15px;
}

.form-group__textarea--inquiry {
  border: 1px solid #00ade1;
  border-radius: 0 0 5px 5px !important;
  height: 76px;
  padding-block: 5px;
  padding-inline: 10px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .form-group__textarea--inquiry {
    font-size: 16px;
  }
}
.form-group__textarea--inquiry::placeholder {
  color: #71d1ee;
  font-size: 10px;
}

.form-group__textarea--inquiry {
  border: 2px solid #00ade1;
  height: 168px;
  padding-left: 20px;
  padding-top: 10px;
  border-radius: 0 0 10px 10px !important;
}
.form-group__label--inquiry {
  border: 2px solid #00ade1;
  font-size: 28px;
  padding-left: 20px;
  padding-top: 5px;
  border-radius: 10px 0 0 10px;
  border-radius: 10px 10px 0 0;
}
.form-group__textarea--inquiry::placeholder {
  font-size: 20px;
}
.form-group--inquiry {
  margin-bottom: 4px;
}

@media screen and (min-width: 1024px) {
  .form-group__label--inquiry {
    border: 3px solid #00ade1;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
  }
  .form-group__textarea--inquiry {
    border: 3px solid #00ade1;
    height: 260px;
    border-radius: 0 0 15px 15px !important;
    margin-bottom: 30px;
    cursor: pointer;
  }
}
@media screen and (max-width: 1024px) {
  .form-group__label--inquiry {
    font-size: 28px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .form-group__label--inquiry {
    font-size: 16px;
    padding-left: 8px;
  }
}

.form-group__label--name,
.form-group__label--email {
  display: inline-block; /* ラベルがブロックとして扱われる */
  width: 60px; /* ラベルの幅を設定 */
  line-height: 32px;
  padding-inline: 10px; /* ラベルの内側の左右の余白を設定 */
  box-sizing: border-box; /* パディングやボーダーを含めた幅の計算 */
  color: #fff;
  border-radius: 5px 0 0 5px;
  font-family: "Rockwell", serif;
}

/*--------------------------------------------
元のname email
--------------------------------------------*/
.form-group__label--name,
.form-group__label--email {
  border: none;
  cursor: pointer;
  display: block;
  height: 100%;
}
.form-group__label--name {
  background: #e96d23;
}
.form-group__label--email {
  background: #9cc53a;
}

.form-group__input--name,
.form-group__input--email {
  cursor: pointer;
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 0 5px 5px 0 !important;
  font-size: 28px;
}
@media screen and (max-width: 1024px) {
  .form-group__input--name,
  .form-group__input--email {
    font-size: 16px;
  }
}
.form-group__input--name {
  border: 1px solid #e96d23;
}
.form-group__input--email {
  border: 1px solid #9cc53a;
}
.application-form__submit[type="button"] {
  font-family: "Rockwell", serif;
  background: #9cc53a;
  color: #fff;
  text-align: center;
  align-items: center;
  border-radius: 20px;
  margin-top: 4px;
}

@media screen and (min-width: 768px) {
  .Form {
    width: 90%;
    display: inline-block;
    margin-inline: auto;
  }
  .wpcf7-form-control-wrap[data-name="your-name"],
  .wpcf7-form-control-wrap[data-name="your-email"] {
    border: 2px solid #e96d23;
    /* height: calc(55px - 4px); */
    border-radius: 0 10px 10px 0;
  }
  .wpcf7-form-control-wrap[data-name="your-email"] {
    border: 2px solid #9cc53a;
  }
  .form-group__label--name {
    border: 2px solid #e96d23;
    border-radius: 10px 0 0 10px;
    height: 100%;
  }
  .form-group__label--email {
    border: 2px solid #9cc53a;
    border-radius: 10px 0 0 10px;
    height: 100%;
  }
  .form-group__input--name {
  }
  .form-group__input--email {
  }
  .form-group__label--name,
  .form-group__label--email {
    display: inline-block;
    width: 160px;
    font-size: 30px;
    line-height: 55px;
    padding-inline: 10px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1024px) {
  .Form {
    width: 100%;
    display: inline-block;
    margin-inline: auto;
  }
  .wpcf7-form-control-wrap[data-name="your-name"],
  .wpcf7-form-control-wrap[data-name="your-email"] {
    border: 3px solid #e96d23;
    height: calc(70px - 6px);
    border-radius: 0 15px 15px 0;
  }
  .wpcf7-form-control-wrap[data-name="your-email"] {
    border: 3px solid #9cc53a;
  }

  .form-group__label--name {
    border: 3px solid #e96d23;
    height: 70px;
    border-radius: 15px 0 0 15px;
  }
  .form-group__label--email {
    border: 3px solid #9cc53a;
    height: 70px;
    border-radius: 15px 0 0 15px;
  }
  .form-group__label--name,
  .form-group__label--email {
    display: inline-block;
    width: 210px;
    font-size: 32px;
    line-height: 70px;
    padding-inline: 10px;
    box-sizing: border-box;
  }

  .application-form__submit[type="button"] {
    width: 160px;
    height: 50px;
    font-size: 24px !important;
    padding-top: 8px;
    padding-bottom: 0;
    padding-inline: 20px;
    margin-inline: auto;
    text-align: center;
    align-items: center;
    border-radius: 15px;
    background: #e96d23;
    color: #fff;
    border: 1px solid #e96d23;
    transition: background-color 0.3s, color 0.3s;
  }
  .application-form__submit[type="button"]:hover {
    background-color: white;
    color: #e67e22;
  }
}

/*--------------------------------------------
applyanow input
--------------------------------------------*/
.form-group__input--name,
.form-group__input--email {
  /* border: none; */
  cursor: pointer;
  display: block;
  height: 100%;
}
.form-group__input--name,
.form-group__input--email {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control-wrap[data-name="your-name"],
  .wpcf7-form-control-wrap[data-name="your-email"] {
    border: 2px solid #e96d23;
    /* height: calc(55px - 4px); */
    border-radius: 0 10px 10px 0;
  }
  .wpcf7-form-control-wrap[data-name="your-email"] {
    border: 2px solid #9cc53a;
  }
  .form-group__label--name {
    border: 2px solid #e96d23;
    height: 100%;
    border-radius: 10px 0 0 10px;
  }
  .form-group__input--name {
  }
  .form-group__label--email {
    border: 2px solid #9cc53a;
    /* height: 55px; */
    border-radius: 10px 0 0 10px;
  }
  .form-group__input--email {
  }
  .form-group__label--name,
  .form-group__label--email {
    display: inline-block;
    width: 160px;
    font-size: 30px;
    line-height: 55px;
    padding-inline: 10px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1024px) {
  .wpcf7-form-control-wrap[data-name="your-name"],
  .wpcf7-form-control-wrap[data-name="your-email"] {
    border: 3px solid #e96d23;
    height: calc(70px - 6px);
    border-radius: 0 15px 15px 0;
  }
  .wpcf7-form-control-wrap[data-name="your-email"] {
    border: 3px solid #9cc53a;
  }
  .form-group__label--name {
    border: 3px solid #e96d23;
    height: 70px;
    border-radius: 15px 0 0 15px;
  }
  .form-group__input--name {
  }
  .form-group__label--email {
    border: 3px solid #9cc53a;
    height: 70px;
    border-radius: 15px 0 0 15px;
  }
  .form-group__input--email {
  }
  .form-group__label--name,
  .form-group__label--email {
    display: inline-block;
    width: 210px;
    font-size: 32px;
    line-height: 70px;
    padding-inline: 10px;
    box-sizing: border-box;
  }
}
/*--------------------------------------------
applyanow button
--------------------------------------------*/
.application-form__submit[type="submit"] {
  font-family: "Rockwell", serif;
  background: #df6b28;
  color: #fff;
  width: 80px; /* widthを80pxに設定 */
  padding-block: 5px;
  padding-top: 3px; /* 追加 */
  padding-bottom: 0; /* 追加 */
  margin-inline: auto;
  text-align: center;
  align-items: center;
  border-radius: 20px;
  font-size: 14px; /* 追加 */
}
@media screen and (min-width: 768px) {
  .application-form__submit[type="submit"] {
    width: 100px;
    height: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .application-form__submit[type="submit"] {
    width: 160px;
    height: 50px;
    font-size: 24px !important;
    padding-top: 8px;
    padding-bottom: 0;
    margin-inline: auto;
    text-align: center;
    align-items: center;
    border-radius: 15px;
    background: #e96d23;
    color: #fff;
    border: 1px solid #e96d23;
    transition: background-color 0.3s, color 0.3s;
  }
  .application-form__submit:hover {
    background-color: white;
    color: #e67e22;
  }
}

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

[data-name="your-name"] .wpcf7-not-valid-tip,
[data-name="your-email"] .wpcf7-not-valid-tip {
  text-align: left;
  font-size: 12px !important;
}
@media screen and (min-width: 768px) {
  [data-name="your-name"] .wpcf7-not-valid-tip,
  [data-name="your-email"] .wpcf7-not-valid-tip {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 1024px) {
  [data-name="your-name"] .wpcf7-not-valid-tip,
  [data-name="your-email"] .wpcf7-not-valid-tip {
    font-size: 18px !important;
  }
}
.has-error-margin {
  margin-bottom: 22px !important;
}
@media screen and (min-width: 768px) {
  .has-error-margin {
    margin-bottom: 36px !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-error-margin {
    margin-bottom: 60px !important;
  }
}

[data-name="coverLetter"] .wpcf7-not-valid-tip,
[data-name="resume"] .wpcf7-not-valid-tip,
[data-name="photo"] .wpcf7-not-valid-tip,
[data-name="reference"] .wpcf7-not-valid-tip {
  text-align: center;
  font-size: 10px !important;
  position: absolute !important;
  bottom: -20px;
  left: 0px;
}
@media screen and (min-width: 768px) {
  [data-name="coverLetter"] .wpcf7-not-valid-tip,
  [data-name="resume"] .wpcf7-not-valid-tip,
  [data-name="photo"] .wpcf7-not-valid-tip,
  [data-name="reference"] .wpcf7-not-valid-tip {
    font-size: 16px !important;
    bottom: -50px;
  }
}

@media screen and (min-width: 1024px) {
  [data-name="coverLetter"] .wpcf7-not-valid-tip,
  [data-name="resume"] .wpcf7-not-valid-tip,
  [data-name="photo"] .wpcf7-not-valid-tip,
  [data-name="reference"] .wpcf7-not-valid-tip {
    font-size: 14px !important;
    bottom: -60px;
  }
}

/*--------------------------------------------
確認フォーム
--------------------------------------------*/
h2,
p {
  margin: 0;
}
/*---------------------------
ページ全体
----------------------------*/
.confirm__area {
  margin-top: 60px;
  width: 100%;
  /* max-width: 1200px; */
}
/*---------------------------
タイトル部分
----------------------------*/
/*タイトル部分*/
.confirm__header {
}
.confirm__header-title {
  font-size: 50px;
  font-family: "Rockwell";
  font-weight: 400;
}
.confirm__header-image {
  margin-top: 25px;
  width: 100%;
}
.confirm__header-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 50;
}
@media screen and (max-width: 768px) {
  .confirm__header-title {
    font-size: 30px;
  }
  .confirm__header-image {
    margin-top: 10px;
  }
}

/*---------------------------
フォーム部分
----------------------------*/
.application-form {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .application-form {
    margin-top: 20px;
  }
}
/*---------------------------
名前、メール部分
----------------------------*/
/*名前、メール*/
.confirm__group {
  display: flex;
  align-items: center;
  gap: 18px;
}
/*ヘッダー部分*/
.confirm__group-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  min-width: 96px;
  gap: 0px;
}
/*ラベル部分*/
.confirm__label {
  text-align: left;
  font-size: 30px;
}
.confirm__label-name {
  color: #df6b28;
}
.confirm__label-email {
  color: #97bd3f;
}
.confirm__label-inquiry {
  color: skyblue;
}
/*Edit部分*/
.confirm__edit-button {
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  min-width: 96px;
  padding: 4px 32px;
}
.confirm__edit-name {
  background-color: #df6b28;
}
.confirm__edit-email {
  background-color: #97bd3f;
}
/*textareaのEdit部分*/
.confirm__edit-query {
  background-color: skyblue;
  display: block;
  max-width: 100px;

}

/*input部分*/
.confirm__group-input {
  flex-grow: 1;
  width: 100%;
}
input[type="text"].confirm__input-back-your-name,
input[type="email"].confirm__input-back-your-email {
  display: none;
}
.confirm__input-back-your-name:focus,
.confirm__input-back-your-email:focus,
.confirm__input-front,
.confirm__input-back {
  display: block;
  text-align: left;
  padding-block: 17px;
  padding-inline: 39px;
  font-size: 30px;
  border-radius: 20px;
  background-color: #fff;
}
.confirm__input-back-your-name:focus,
.confirm__input-front-your-name,
.confirm__input-back-your-name {
  outline: 2px solid #df6b28;
}
.confirm__input-back-your-email:focus,
.confirm__input-front-your-email,
.confirm__input-back-your-email {
  outline: 2px solid #97bd3f;
}
@media screen and (max-width: 768px) {
  .confirm__group-head {
    min-width: 40px;
    gap: 0px;
  }
  .confirm__label {
    font-size: 16px;
  }
  .confirm__edit-button {
    min-width: 40px;
    padding: 4px 12px;
    font-size: 16px;
  }
  .confirm__input-back-your-name:focus,
  .confirm__input-back-your-email:focus,
  .confirm__input-front,
  .confirm__input-back {
    padding-block: 12px;
    padding-inline: 8px;
    font-size: 16px;
  }
}
/*textarea部分*/

/*---------------------------
Inquiry
----------------------------*/
.confirm__group-textarea {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .confirm__group-textarea {
    gap: 10px;
  }
}

.confirm__group-head {
}
.confirm__label {
}
.confirm__label-inquiry {
  
}


.confirm__group-textarea{
  width: 100%;
}
.confirm__edit-inquiry {
  display: block;
  max-width: 100px;
}
.confirm__textarea-front {
}
.confirm__textarea-front-inquiry {
  box-sizing: border-box;
  border: 2px solid #00ade1;
  font-size: 20px;
  padding-inline: 20px;
  padding-block: 5px;
  border-radius: 10px;
  text-align: left;
  min-height: 250px;
  width: 100%;
}


.confirm__textarea-back {
}
.confirm__textarea-back-inquiry {
  box-sizing: border-box;
  border: 2px solid #00ade1;
  font-size: 20px;
  padding-inline: 20px;
  padding-block: 5px;
  border-radius: 10px;
  text-align: left;
  min-height: 250px;
}



.confirm__edit-button {
}
.confirm__edit-inquiry {
}

/*---------------------------
文章
----------------------------*/
.confirm__sentences {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  font-size: 24px;
  font-family: "Corbel";
  letter-spacing: -1px;
}

.confirm__sentence01 {
}
.confirm__sentence02 {
}
@media screen and (max-width: 768px) {
  .confirm__sentences {
    margin-top: 20px;
    gap: 20px;
    font-size: 16px;
  }
}

/*---------------------------
ボタン
----------------------------*/
.confirm__button-wrap {
  margin-top: 34px;
  margin-bottom: 40px;
}
.wpcf7-spinner {
  display: none;
}
.back_button {
}

.wpcf7-form-control {
}

.wpcf7-submit {
}

.has-spinner {
}

/*--------------------------------------------
ボタンフォーム
--------------------------------------------*/
/*確認ボタン*/
.confirm_button[type="button"],
.confirm__button-submit[type="submit"] {
  margin-top: 34px;
  text-align: center;
  max-width: 170px;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 20px;
  font-size: 24px;
  background-color: #df6b28;
  opacity: 1;
  transition: opacity 0.3s;
}
.confirm_button[type="button"]:hover,
.confirm__button-submit[type="submit"]:hover {
  opacity: 0.6;
}
.confirm_button[type="button"].js-disabled,
.confirm__button-submit[type="submit"].js-disabled {
  pointer-events: none;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .confirm_button[type="button"],
  .confirm__button-submit[type="submit"] {
    margin-top: 20px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
  }
}
/*戻るボタン*/
/* .back_button[type="button"] {
  display: inline-block;
  width: 100px;
  height: 50px;
  color: #fff;
  border-radius: 10px;
  background-color: #7f8c94;
  opacity: 1;
} */

/*--------------------------------------------
テキスト
--------------------------------------------*/
.text__hidden-1400 {
  display: block;
}
@media screen and (max-width: 1400px) {
  .text__hidden-1400 {
    display: none;
  }
}

/*--------------------------------------------
テスト用
--------------------------------------------*/
.Form {
  /* display: none; */
}
.js-hidden-target{
  /* display: none; */
}

.js-hidden-page {
  display: none;
}

